blob: a4fed184b811b262273dc6aefae1325ec84058d4 [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"
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090036
Namjae Jeona2a4a7e2013-04-20 01:28:40 +090037#define CREATE_TRACE_POINTS
38#include <trace/events/f2fs.h>
39
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090040static struct kmem_cache *f2fs_inode_cachep;
41
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -070042#ifdef CONFIG_F2FS_FAULT_INJECTION
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070043
Alexey Dobriyan19880e62018-11-24 12:06:42 +030044const char *f2fs_fault_name[FAULT_MAX] = {
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070045 [FAULT_KMALLOC] = "kmalloc",
Chao Yu628b3d12017-11-30 19:28:18 +080046 [FAULT_KVMALLOC] = "kvmalloc",
Jaegeuk Kimc41f3cc32016-04-29 16:17:09 -070047 [FAULT_PAGE_ALLOC] = "page alloc",
Chao Yu01eccef2017-10-28 16:52:30 +080048 [FAULT_PAGE_GET] = "page get",
Jaegeuk Kimcb789422016-04-29 16:29:22 -070049 [FAULT_ALLOC_NID] = "alloc nid",
50 [FAULT_ORPHAN] = "orphan",
51 [FAULT_BLOCK] = "no more block",
52 [FAULT_DIR_DEPTH] = "too big dir depth",
Jaegeuk Kim53aa6bb2016-05-25 15:24:18 -070053 [FAULT_EVICT_INODE] = "evict_inode fail",
Jaegeuk Kim14b44d22017-03-09 15:24:24 -080054 [FAULT_TRUNCATE] = "truncate fail",
Chao Yu6f5c2ed2018-09-12 09:22:29 +080055 [FAULT_READ_IO] = "read IO error",
Chao Yu0f348022016-09-26 19:45:55 +080056 [FAULT_CHECKPOINT] = "checkpoint error",
Chao Yub83dcfe2018-08-06 20:30:18 +080057 [FAULT_DISCARD] = "discard error",
Chao Yu6f5c2ed2018-09-12 09:22:29 +080058 [FAULT_WRITE_IO] = "write IO error",
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070059};
Sheng Yong08796892016-05-16 12:38:50 +080060
Chao Yud4945002018-08-08 17:36:41 +080061void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
62 unsigned int type)
Sheng Yong08796892016-05-16 12:38:50 +080063{
Chao Yu63189b72018-03-08 14:22:56 +080064 struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
Chao Yu1ecc0c52016-09-23 21:30:09 +080065
Sheng Yong08796892016-05-16 12:38:50 +080066 if (rate) {
Chao Yu1ecc0c52016-09-23 21:30:09 +080067 atomic_set(&ffi->inject_ops, 0);
68 ffi->inject_rate = rate;
Sheng Yong08796892016-05-16 12:38:50 +080069 }
Chao Yud4945002018-08-08 17:36:41 +080070
71 if (type)
72 ffi->inject_type = type;
73
74 if (!rate && !type)
75 memset(ffi, 0, sizeof(struct f2fs_fault_info));
Sheng Yong08796892016-05-16 12:38:50 +080076}
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -070077#endif
78
Jaegeuk Kim2658e502015-06-19 12:01:21 -070079/* f2fs-wide shrinker description */
80static struct shrinker f2fs_shrinker_info = {
81 .scan_objects = f2fs_shrink_scan,
82 .count_objects = f2fs_shrink_count,
83 .seeks = DEFAULT_SEEKS,
84};
85
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090086enum {
Namjae Jeon696c0182013-06-16 09:48:48 +090087 Opt_gc_background,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090088 Opt_disable_roll_forward,
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -080089 Opt_norecovery,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090090 Opt_discard,
Chao Yu64058be2016-07-03 22:05:14 +080091 Opt_nodiscard,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090092 Opt_noheap,
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -040093 Opt_heap,
Kelly Anderson4058c512013-10-07 11:36:20 +090094 Opt_user_xattr,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090095 Opt_nouser_xattr,
Kelly Anderson4058c512013-10-07 11:36:20 +090096 Opt_acl,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090097 Opt_noacl,
98 Opt_active_logs,
99 Opt_disable_ext_identify,
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900100 Opt_inline_xattr,
Chao Yu23cf7212017-02-15 10:34:45 +0800101 Opt_noinline_xattr,
Chao Yu6afc6622017-09-06 21:59:50 +0800102 Opt_inline_xattr_size,
Huajun Li8274de72013-11-10 23:13:17 +0800103 Opt_inline_data,
Chao Yu5efd3c62014-09-24 18:16:13 +0800104 Opt_inline_dentry,
Chao Yu97c17942016-05-09 19:56:34 +0800105 Opt_noinline_dentry,
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900106 Opt_flush_merge,
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700107 Opt_noflush_merge,
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700108 Opt_nobarrier,
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700109 Opt_fastboot,
Chao Yu89672152015-02-05 17:55:51 +0800110 Opt_extent_cache,
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700111 Opt_noextent_cache,
Wanpeng Li75342792015-03-24 10:20:27 +0800112 Opt_noinline_data,
Chao Yu343f40f2015-12-16 13:12:16 +0800113 Opt_data_flush,
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800114 Opt_reserve_root,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800115 Opt_resgid,
116 Opt_resuid,
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700117 Opt_mode,
Jaegeuk Kimec915382016-12-21 17:09:19 -0800118 Opt_io_size_bits,
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700119 Opt_fault_injection,
Chao Yud4945002018-08-08 17:36:41 +0800120 Opt_fault_type,
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700121 Opt_lazytime,
122 Opt_nolazytime,
Chao Yu4b2414d2017-08-08 10:54:31 +0800123 Opt_quota,
124 Opt_noquota,
Chao Yu0abd6752017-07-09 00:13:07 +0800125 Opt_usrquota,
126 Opt_grpquota,
Chao Yu5c571322017-07-26 00:01:41 +0800127 Opt_prjquota,
Chao Yu4b2414d2017-08-08 10:54:31 +0800128 Opt_usrjquota,
129 Opt_grpjquota,
130 Opt_prjjquota,
131 Opt_offusrjquota,
132 Opt_offgrpjquota,
133 Opt_offprjjquota,
134 Opt_jqfmt_vfsold,
135 Opt_jqfmt_vfsv0,
136 Opt_jqfmt_vfsv1,
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900137 Opt_whint,
Jaegeuk Kim07939622018-02-18 08:50:49 -0800138 Opt_alloc,
Junling Zheng93cf93f2018-03-07 12:07:49 +0800139 Opt_fsync,
Sheng Yongff62af22018-03-15 18:51:42 +0800140 Opt_test_dummy_encryption,
Satya Tangirala27aacd22020-07-02 01:56:06 +0000141 Opt_inlinecrypt,
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700142 Opt_checkpoint_disable,
143 Opt_checkpoint_disable_cap,
144 Opt_checkpoint_disable_cap_perc,
145 Opt_checkpoint_enable,
Daeho Jeong261eeb92021-01-19 09:00:42 +0900146 Opt_checkpoint_merge,
147 Opt_nocheckpoint_merge,
Chao Yu4c8ff702019-11-01 18:07:14 +0800148 Opt_compress_algorithm,
149 Opt_compress_log_size,
150 Opt_compress_extension,
Fengnan Chang151b1982021-06-08 19:15:08 +0800151 Opt_nocompress_extension,
Chao Yub28f0472020-11-26 18:32:09 +0800152 Opt_compress_chksum,
Daeho Jeong602a16d2020-12-01 13:08:02 +0900153 Opt_compress_mode,
Chao Yu6ce19af2021-05-20 19:51:50 +0800154 Opt_compress_cache,
Chao Yu093749e2020-08-04 21:14:49 +0800155 Opt_atgc,
Chao Yu5911d2d2021-03-27 17:57:06 +0800156 Opt_gc_merge,
157 Opt_nogc_merge,
Chao Yu4f993262021-08-03 08:15:43 +0800158 Opt_discard_unit,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900159 Opt_err,
160};
161
162static match_table_t f2fs_tokens = {
Namjae Jeon696c0182013-06-16 09:48:48 +0900163 {Opt_gc_background, "background_gc=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900164 {Opt_disable_roll_forward, "disable_roll_forward"},
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800165 {Opt_norecovery, "norecovery"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900166 {Opt_discard, "discard"},
Chao Yu64058be2016-07-03 22:05:14 +0800167 {Opt_nodiscard, "nodiscard"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900168 {Opt_noheap, "no_heap"},
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400169 {Opt_heap, "heap"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900170 {Opt_user_xattr, "user_xattr"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900171 {Opt_nouser_xattr, "nouser_xattr"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900172 {Opt_acl, "acl"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900173 {Opt_noacl, "noacl"},
174 {Opt_active_logs, "active_logs=%u"},
175 {Opt_disable_ext_identify, "disable_ext_identify"},
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900176 {Opt_inline_xattr, "inline_xattr"},
Chao Yu23cf7212017-02-15 10:34:45 +0800177 {Opt_noinline_xattr, "noinline_xattr"},
Chao Yu6afc6622017-09-06 21:59:50 +0800178 {Opt_inline_xattr_size, "inline_xattr_size=%u"},
Huajun Li8274de72013-11-10 23:13:17 +0800179 {Opt_inline_data, "inline_data"},
Chao Yu5efd3c62014-09-24 18:16:13 +0800180 {Opt_inline_dentry, "inline_dentry"},
Chao Yu97c17942016-05-09 19:56:34 +0800181 {Opt_noinline_dentry, "noinline_dentry"},
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900182 {Opt_flush_merge, "flush_merge"},
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700183 {Opt_noflush_merge, "noflush_merge"},
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700184 {Opt_nobarrier, "nobarrier"},
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700185 {Opt_fastboot, "fastboot"},
Chao Yu89672152015-02-05 17:55:51 +0800186 {Opt_extent_cache, "extent_cache"},
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700187 {Opt_noextent_cache, "noextent_cache"},
Wanpeng Li75342792015-03-24 10:20:27 +0800188 {Opt_noinline_data, "noinline_data"},
Chao Yu343f40f2015-12-16 13:12:16 +0800189 {Opt_data_flush, "data_flush"},
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800190 {Opt_reserve_root, "reserve_root=%u"},
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800191 {Opt_resgid, "resgid=%u"},
192 {Opt_resuid, "resuid=%u"},
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700193 {Opt_mode, "mode=%s"},
Jaegeuk Kimec915382016-12-21 17:09:19 -0800194 {Opt_io_size_bits, "io_bits=%u"},
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700195 {Opt_fault_injection, "fault_injection=%u"},
Chao Yud4945002018-08-08 17:36:41 +0800196 {Opt_fault_type, "fault_type=%u"},
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700197 {Opt_lazytime, "lazytime"},
198 {Opt_nolazytime, "nolazytime"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800199 {Opt_quota, "quota"},
200 {Opt_noquota, "noquota"},
Chao Yu0abd6752017-07-09 00:13:07 +0800201 {Opt_usrquota, "usrquota"},
202 {Opt_grpquota, "grpquota"},
Chao Yu5c571322017-07-26 00:01:41 +0800203 {Opt_prjquota, "prjquota"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800204 {Opt_usrjquota, "usrjquota=%s"},
205 {Opt_grpjquota, "grpjquota=%s"},
206 {Opt_prjjquota, "prjjquota=%s"},
207 {Opt_offusrjquota, "usrjquota="},
208 {Opt_offgrpjquota, "grpjquota="},
209 {Opt_offprjjquota, "prjjquota="},
210 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
211 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
212 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900213 {Opt_whint, "whint_mode=%s"},
Jaegeuk Kim07939622018-02-18 08:50:49 -0800214 {Opt_alloc, "alloc_mode=%s"},
Junling Zheng93cf93f2018-03-07 12:07:49 +0800215 {Opt_fsync, "fsync_mode=%s"},
Eric Biggersed318a62020-05-12 16:32:50 -0700216 {Opt_test_dummy_encryption, "test_dummy_encryption=%s"},
Sheng Yongff62af22018-03-15 18:51:42 +0800217 {Opt_test_dummy_encryption, "test_dummy_encryption"},
Satya Tangirala27aacd22020-07-02 01:56:06 +0000218 {Opt_inlinecrypt, "inlinecrypt"},
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700219 {Opt_checkpoint_disable, "checkpoint=disable"},
220 {Opt_checkpoint_disable_cap, "checkpoint=disable:%u"},
221 {Opt_checkpoint_disable_cap_perc, "checkpoint=disable:%u%%"},
222 {Opt_checkpoint_enable, "checkpoint=enable"},
Daeho Jeong261eeb92021-01-19 09:00:42 +0900223 {Opt_checkpoint_merge, "checkpoint_merge"},
224 {Opt_nocheckpoint_merge, "nocheckpoint_merge"},
Chao Yu4c8ff702019-11-01 18:07:14 +0800225 {Opt_compress_algorithm, "compress_algorithm=%s"},
226 {Opt_compress_log_size, "compress_log_size=%u"},
227 {Opt_compress_extension, "compress_extension=%s"},
Fengnan Chang151b1982021-06-08 19:15:08 +0800228 {Opt_nocompress_extension, "nocompress_extension=%s"},
Chao Yub28f0472020-11-26 18:32:09 +0800229 {Opt_compress_chksum, "compress_chksum"},
Daeho Jeong602a16d2020-12-01 13:08:02 +0900230 {Opt_compress_mode, "compress_mode=%s"},
Chao Yu6ce19af2021-05-20 19:51:50 +0800231 {Opt_compress_cache, "compress_cache"},
Chao Yu093749e2020-08-04 21:14:49 +0800232 {Opt_atgc, "atgc"},
Chao Yu5911d2d2021-03-27 17:57:06 +0800233 {Opt_gc_merge, "gc_merge"},
234 {Opt_nogc_merge, "nogc_merge"},
Chao Yu4f993262021-08-03 08:15:43 +0800235 {Opt_discard_unit, "discard_unit=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900236 {Opt_err, NULL},
237};
238
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800239void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...)
Namjae Jeona07ef782012-12-30 14:52:05 +0900240{
241 struct va_format vaf;
242 va_list args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800243 int level;
Namjae Jeona07ef782012-12-30 14:52:05 +0900244
245 va_start(args, fmt);
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800246
247 level = printk_get_level(fmt);
248 vaf.fmt = printk_skip_level(fmt);
Namjae Jeona07ef782012-12-30 14:52:05 +0900249 vaf.va = &args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800250 printk("%c%cF2FS-fs (%s): %pV\n",
251 KERN_SOH_ASCII, level, sbi->sb->s_id, &vaf);
252
Namjae Jeona07ef782012-12-30 14:52:05 +0900253 va_end(args);
254}
255
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700256#ifdef CONFIG_UNICODE
257static const struct f2fs_sb_encodings {
258 __u16 magic;
259 char *name;
260 char *version;
261} f2fs_sb_encoding_map[] = {
262 {F2FS_ENC_UTF8_12_1, "utf8", "12.1.0"},
263};
264
265static int f2fs_sb_read_encoding(const struct f2fs_super_block *sb,
266 const struct f2fs_sb_encodings **encoding,
267 __u16 *flags)
268{
269 __u16 magic = le16_to_cpu(sb->s_encoding);
270 int i;
271
272 for (i = 0; i < ARRAY_SIZE(f2fs_sb_encoding_map); i++)
273 if (magic == f2fs_sb_encoding_map[i].magic)
274 break;
275
276 if (i >= ARRAY_SIZE(f2fs_sb_encoding_map))
277 return -EINVAL;
278
279 *encoding = &f2fs_sb_encoding_map[i];
280 *flags = le16_to_cpu(sb->s_encoding_flags);
281
282 return 0;
283}
Chao Yu4d9a2bb2021-06-11 07:46:30 +0800284
285struct kmem_cache *f2fs_cf_name_slab;
286static int __init f2fs_create_casefold_cache(void)
287{
288 f2fs_cf_name_slab = f2fs_kmem_cache_create("f2fs_casefolded_name",
289 F2FS_NAME_LEN);
290 if (!f2fs_cf_name_slab)
291 return -ENOMEM;
292 return 0;
293}
294
295static void f2fs_destroy_casefold_cache(void)
296{
297 kmem_cache_destroy(f2fs_cf_name_slab);
298}
299#else
300static int __init f2fs_create_casefold_cache(void) { return 0; }
301static void f2fs_destroy_casefold_cache(void) { }
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700302#endif
303
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800304static inline void limit_reserve_root(struct f2fs_sb_info *sbi)
305{
Daniel Rosenberg9a9aeca2019-05-29 17:49:04 -0700306 block_t limit = min((sbi->user_block_count << 1) / 1000,
307 sbi->user_block_count - sbi->reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800308
309 /* limit is 0.2% */
Chao Yu63189b72018-03-08 14:22:56 +0800310 if (test_opt(sbi, RESERVE_ROOT) &&
311 F2FS_OPTION(sbi).root_reserved_blocks > limit) {
312 F2FS_OPTION(sbi).root_reserved_blocks = limit;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800313 f2fs_info(sbi, "Reduce reserved blocks for root = %u",
314 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800315 }
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800316 if (!test_opt(sbi, RESERVE_ROOT) &&
Chao Yu63189b72018-03-08 14:22:56 +0800317 (!uid_eq(F2FS_OPTION(sbi).s_resuid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800318 make_kuid(&init_user_ns, F2FS_DEF_RESUID)) ||
Chao Yu63189b72018-03-08 14:22:56 +0800319 !gid_eq(F2FS_OPTION(sbi).s_resgid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800320 make_kgid(&init_user_ns, F2FS_DEF_RESGID))))
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800321 f2fs_info(sbi, "Ignore s_resuid=%u, s_resgid=%u w/o reserve_root",
322 from_kuid_munged(&init_user_ns,
323 F2FS_OPTION(sbi).s_resuid),
324 from_kgid_munged(&init_user_ns,
325 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800326}
327
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -0700328static inline void adjust_unusable_cap_perc(struct f2fs_sb_info *sbi)
329{
330 if (!F2FS_OPTION(sbi).unusable_cap_perc)
331 return;
332
333 if (F2FS_OPTION(sbi).unusable_cap_perc == 100)
334 F2FS_OPTION(sbi).unusable_cap = sbi->user_block_count;
335 else
336 F2FS_OPTION(sbi).unusable_cap = (sbi->user_block_count / 100) *
337 F2FS_OPTION(sbi).unusable_cap_perc;
338
339 f2fs_info(sbi, "Adjust unusable cap for checkpoint=disable = %u / %u%%",
340 F2FS_OPTION(sbi).unusable_cap,
341 F2FS_OPTION(sbi).unusable_cap_perc);
342}
343
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900344static void init_once(void *foo)
345{
346 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
347
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900348 inode_init_once(&fi->vfs_inode);
349}
350
Chao Yu4b2414d2017-08-08 10:54:31 +0800351#ifdef CONFIG_QUOTA
352static const char * const quotatypes[] = INITQFNAMES;
353#define QTYPE2NAME(t) (quotatypes[t])
354static int f2fs_set_qf_name(struct super_block *sb, int qtype,
355 substring_t *args)
356{
357 struct f2fs_sb_info *sbi = F2FS_SB(sb);
358 char *qname;
359 int ret = -EINVAL;
360
Chao Yu63189b72018-03-08 14:22:56 +0800361 if (sb_any_quota_loaded(sb) && !F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800362 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800363 return -EINVAL;
364 }
Chao Yu7beb01f2018-10-24 18:34:26 +0800365 if (f2fs_sb_has_quota_ino(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800366 f2fs_info(sbi, "QUOTA feature is enabled, so ignore qf_name");
Jaegeuk Kimea676732017-10-06 09:14:28 -0700367 return 0;
368 }
369
Chao Yu4b2414d2017-08-08 10:54:31 +0800370 qname = match_strdup(args);
371 if (!qname) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800372 f2fs_err(sbi, "Not enough memory for storing quotafile name");
Chengguang Xuf365c6c2019-01-01 21:33:11 +0800373 return -ENOMEM;
Chao Yu4b2414d2017-08-08 10:54:31 +0800374 }
Chao Yu63189b72018-03-08 14:22:56 +0800375 if (F2FS_OPTION(sbi).s_qf_names[qtype]) {
376 if (strcmp(F2FS_OPTION(sbi).s_qf_names[qtype], qname) == 0)
Chao Yu4b2414d2017-08-08 10:54:31 +0800377 ret = 0;
378 else
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800379 f2fs_err(sbi, "%s quota file already specified",
Chao Yu4b2414d2017-08-08 10:54:31 +0800380 QTYPE2NAME(qtype));
381 goto errout;
382 }
383 if (strchr(qname, '/')) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800384 f2fs_err(sbi, "quotafile must be on filesystem root");
Chao Yu4b2414d2017-08-08 10:54:31 +0800385 goto errout;
386 }
Chao Yu63189b72018-03-08 14:22:56 +0800387 F2FS_OPTION(sbi).s_qf_names[qtype] = qname;
Chao Yu4b2414d2017-08-08 10:54:31 +0800388 set_opt(sbi, QUOTA);
389 return 0;
390errout:
Wang Xiaojunba87a452020-06-17 20:30:12 +0800391 kfree(qname);
Chao Yu4b2414d2017-08-08 10:54:31 +0800392 return ret;
393}
394
395static int f2fs_clear_qf_name(struct super_block *sb, int qtype)
396{
397 struct f2fs_sb_info *sbi = F2FS_SB(sb);
398
Chao Yu63189b72018-03-08 14:22:56 +0800399 if (sb_any_quota_loaded(sb) && F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800400 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800401 return -EINVAL;
402 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800403 kfree(F2FS_OPTION(sbi).s_qf_names[qtype]);
Chao Yu63189b72018-03-08 14:22:56 +0800404 F2FS_OPTION(sbi).s_qf_names[qtype] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +0800405 return 0;
406}
407
408static int f2fs_check_quota_options(struct f2fs_sb_info *sbi)
409{
410 /*
411 * We do the test below only for project quotas. 'usrquota' and
412 * 'grpquota' mount options are allowed even without quota feature
413 * to support legacy quotas in quota files.
414 */
Chao Yu7beb01f2018-10-24 18:34:26 +0800415 if (test_opt(sbi, PRJQUOTA) && !f2fs_sb_has_project_quota(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800416 f2fs_err(sbi, "Project quota feature not enabled. Cannot enable project quota enforcement.");
Chao Yu4b2414d2017-08-08 10:54:31 +0800417 return -1;
418 }
Chao Yu63189b72018-03-08 14:22:56 +0800419 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
420 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
421 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]) {
422 if (test_opt(sbi, USRQUOTA) &&
423 F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800424 clear_opt(sbi, USRQUOTA);
425
Chao Yu63189b72018-03-08 14:22:56 +0800426 if (test_opt(sbi, GRPQUOTA) &&
427 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800428 clear_opt(sbi, GRPQUOTA);
429
Chao Yu63189b72018-03-08 14:22:56 +0800430 if (test_opt(sbi, PRJQUOTA) &&
431 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800432 clear_opt(sbi, PRJQUOTA);
433
434 if (test_opt(sbi, GRPQUOTA) || test_opt(sbi, USRQUOTA) ||
435 test_opt(sbi, PRJQUOTA)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800436 f2fs_err(sbi, "old and new quota format mixing");
Chao Yu4b2414d2017-08-08 10:54:31 +0800437 return -1;
438 }
439
Chao Yu63189b72018-03-08 14:22:56 +0800440 if (!F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800441 f2fs_err(sbi, "journaled quota format not specified");
Chao Yu4b2414d2017-08-08 10:54:31 +0800442 return -1;
443 }
444 }
Jaegeuk Kimea676732017-10-06 09:14:28 -0700445
Chao Yu7beb01f2018-10-24 18:34:26 +0800446 if (f2fs_sb_has_quota_ino(sbi) && F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800447 f2fs_info(sbi, "QUOTA feature is enabled, so ignore jquota_fmt");
Chao Yu63189b72018-03-08 14:22:56 +0800448 F2FS_OPTION(sbi).s_jquota_fmt = 0;
Jaegeuk Kimea676732017-10-06 09:14:28 -0700449 }
Chao Yu4b2414d2017-08-08 10:54:31 +0800450 return 0;
451}
452#endif
453
Eric Biggersed318a62020-05-12 16:32:50 -0700454static int f2fs_set_test_dummy_encryption(struct super_block *sb,
455 const char *opt,
456 const substring_t *arg,
457 bool is_remount)
458{
459 struct f2fs_sb_info *sbi = F2FS_SB(sb);
460#ifdef CONFIG_FS_ENCRYPTION
461 int err;
462
463 if (!f2fs_sb_has_encrypt(sbi)) {
464 f2fs_err(sbi, "Encrypt feature is off");
465 return -EINVAL;
466 }
467
468 /*
469 * This mount option is just for testing, and it's not worthwhile to
470 * implement the extra complexity (e.g. RCU protection) that would be
471 * needed to allow it to be set or changed during remount. We do allow
472 * it to be specified during remount, but only if there is no change.
473 */
Eric Biggersac4acb12020-09-16 21:11:35 -0700474 if (is_remount && !F2FS_OPTION(sbi).dummy_enc_policy.policy) {
Eric Biggersed318a62020-05-12 16:32:50 -0700475 f2fs_warn(sbi, "Can't set test_dummy_encryption on remount");
476 return -EINVAL;
477 }
478 err = fscrypt_set_test_dummy_encryption(
Eric Biggersc8c868a2020-09-16 21:11:36 -0700479 sb, arg->from, &F2FS_OPTION(sbi).dummy_enc_policy);
Eric Biggersed318a62020-05-12 16:32:50 -0700480 if (err) {
481 if (err == -EEXIST)
482 f2fs_warn(sbi,
483 "Can't change test_dummy_encryption on remount");
484 else if (err == -EINVAL)
485 f2fs_warn(sbi, "Value of option \"%s\" is unrecognized",
486 opt);
487 else
488 f2fs_warn(sbi, "Error processing option \"%s\" [%d]",
489 opt, err);
490 return -EINVAL;
491 }
492 f2fs_warn(sbi, "Test dummy encryption mode enabled");
493#else
494 f2fs_warn(sbi, "Test dummy encryption mount option ignored");
495#endif
496 return 0;
497}
498
Chao Yu3fde13f2021-01-22 17:46:43 +0800499#ifdef CONFIG_F2FS_FS_COMPRESSION
Fengnan Chang151b1982021-06-08 19:15:08 +0800500/*
501 * 1. The same extension name cannot not appear in both compress and non-compress extension
502 * at the same time.
503 * 2. If the compress extension specifies all files, the types specified by the non-compress
504 * extension will be treated as special cases and will not be compressed.
505 * 3. Don't allow the non-compress extension specifies all files.
506 */
507static int f2fs_test_compress_extension(struct f2fs_sb_info *sbi)
508{
509 unsigned char (*ext)[F2FS_EXTENSION_LEN];
510 unsigned char (*noext)[F2FS_EXTENSION_LEN];
511 int ext_cnt, noext_cnt, index = 0, no_index = 0;
512
513 ext = F2FS_OPTION(sbi).extensions;
514 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
515 noext = F2FS_OPTION(sbi).noextensions;
516 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
517
518 if (!noext_cnt)
519 return 0;
520
521 for (no_index = 0; no_index < noext_cnt; no_index++) {
522 if (!strcasecmp("*", noext[no_index])) {
523 f2fs_info(sbi, "Don't allow the nocompress extension specifies all files");
524 return -EINVAL;
525 }
526 for (index = 0; index < ext_cnt; index++) {
527 if (!strcasecmp(ext[index], noext[no_index])) {
528 f2fs_info(sbi, "Don't allow the same extension %s appear in both compress and nocompress extension",
529 ext[index]);
530 return -EINVAL;
531 }
532 }
533 }
534 return 0;
535}
536
Chao Yu3fde13f2021-01-22 17:46:43 +0800537#ifdef CONFIG_F2FS_FS_LZ4
538static int f2fs_set_lz4hc_level(struct f2fs_sb_info *sbi, const char *str)
539{
540#ifdef CONFIG_F2FS_FS_LZ4HC
541 unsigned int level;
542#endif
543
544 if (strlen(str) == 3) {
545 F2FS_OPTION(sbi).compress_level = 0;
546 return 0;
547 }
548
549#ifdef CONFIG_F2FS_FS_LZ4HC
550 str += 3;
551
552 if (str[0] != ':') {
553 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
554 return -EINVAL;
555 }
556 if (kstrtouint(str + 1, 10, &level))
557 return -EINVAL;
558
559 if (level < LZ4HC_MIN_CLEVEL || level > LZ4HC_MAX_CLEVEL) {
560 f2fs_info(sbi, "invalid lz4hc compress level: %d", level);
561 return -EINVAL;
562 }
563
564 F2FS_OPTION(sbi).compress_level = level;
565 return 0;
566#else
567 f2fs_info(sbi, "kernel doesn't support lz4hc compression");
568 return -EINVAL;
569#endif
570}
571#endif
572
573#ifdef CONFIG_F2FS_FS_ZSTD
574static int f2fs_set_zstd_level(struct f2fs_sb_info *sbi, const char *str)
575{
576 unsigned int level;
577 int len = 4;
578
579 if (strlen(str) == len) {
580 F2FS_OPTION(sbi).compress_level = 0;
581 return 0;
582 }
583
584 str += len;
585
586 if (str[0] != ':') {
587 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
588 return -EINVAL;
589 }
590 if (kstrtouint(str + 1, 10, &level))
591 return -EINVAL;
592
593 if (!level || level > ZSTD_maxCLevel()) {
594 f2fs_info(sbi, "invalid zstd compress level: %d", level);
595 return -EINVAL;
596 }
597
598 F2FS_OPTION(sbi).compress_level = level;
599 return 0;
600}
601#endif
602#endif
603
Eric Biggersed318a62020-05-12 16:32:50 -0700604static int parse_options(struct super_block *sb, char *options, bool is_remount)
Namjae Jeon696c0182013-06-16 09:48:48 +0900605{
606 struct f2fs_sb_info *sbi = F2FS_SB(sb);
607 substring_t args[MAX_OPT_ARGS];
Chao Yu1f0b0672020-07-29 21:21:36 +0800608#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +0800609 unsigned char (*ext)[F2FS_EXTENSION_LEN];
Fengnan Chang151b1982021-06-08 19:15:08 +0800610 unsigned char (*noext)[F2FS_EXTENSION_LEN];
611 int ext_cnt, noext_cnt;
Chao Yu1f0b0672020-07-29 21:21:36 +0800612#endif
Namjae Jeon696c0182013-06-16 09:48:48 +0900613 char *p, *name;
Chao Yu1f0b0672020-07-29 21:21:36 +0800614 int arg = 0;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800615 kuid_t uid;
616 kgid_t gid;
Chao Yu4b2414d2017-08-08 10:54:31 +0800617 int ret;
Namjae Jeon696c0182013-06-16 09:48:48 +0900618
619 if (!options)
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -0700620 goto default_check;
Namjae Jeon696c0182013-06-16 09:48:48 +0900621
622 while ((p = strsep(&options, ",")) != NULL) {
623 int token;
Yi Zhuang5f029c02021-04-06 09:47:35 +0800624
Namjae Jeon696c0182013-06-16 09:48:48 +0900625 if (!*p)
626 continue;
627 /*
628 * Initialize args struct so we know whether arg was
629 * found; some options take optional arguments.
630 */
631 args[0].to = args[0].from = NULL;
632 token = match_token(p, f2fs_tokens, args);
633
634 switch (token) {
635 case Opt_gc_background:
636 name = match_strdup(&args[0]);
637
638 if (!name)
639 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700640 if (!strcmp(name, "on")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800641 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Eric Biggers3c57f752020-05-01 16:35:23 -0700642 } else if (!strcmp(name, "off")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800643 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700644 } else if (!strcmp(name, "sync")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800645 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_SYNC;
Jaegeuk Kim6aefd932015-10-05 11:02:54 -0700646 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800647 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900648 return -EINVAL;
649 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800650 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900651 break;
652 case Opt_disable_roll_forward:
653 set_opt(sbi, DISABLE_ROLL_FORWARD);
654 break;
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800655 case Opt_norecovery:
656 /* this option mounts f2fs with ro */
Chao Yua9117ec2020-02-14 17:45:11 +0800657 set_opt(sbi, NORECOVERY);
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800658 if (!f2fs_readonly(sb))
659 return -EINVAL;
660 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900661 case Opt_discard:
Chao Yu7d20c8a2018-09-04 03:52:17 +0800662 set_opt(sbi, DISCARD);
Namjae Jeon696c0182013-06-16 09:48:48 +0900663 break;
Chao Yu64058be2016-07-03 22:05:14 +0800664 case Opt_nodiscard:
Chao Yu7beb01f2018-10-24 18:34:26 +0800665 if (f2fs_sb_has_blkzoned(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800666 f2fs_warn(sbi, "discard is required for zoned block devices");
Damien Le Moal96ba2de2016-10-28 17:45:03 +0900667 return -EINVAL;
668 }
Chao Yu64058be2016-07-03 22:05:14 +0800669 clear_opt(sbi, DISCARD);
Damien Le Moal487df612016-10-28 17:44:59 +0900670 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900671 case Opt_noheap:
672 set_opt(sbi, NOHEAP);
673 break;
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400674 case Opt_heap:
675 clear_opt(sbi, NOHEAP);
676 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900677#ifdef CONFIG_F2FS_FS_XATTR
Kelly Anderson4058c512013-10-07 11:36:20 +0900678 case Opt_user_xattr:
679 set_opt(sbi, XATTR_USER);
680 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900681 case Opt_nouser_xattr:
682 clear_opt(sbi, XATTR_USER);
683 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900684 case Opt_inline_xattr:
685 set_opt(sbi, INLINE_XATTR);
686 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800687 case Opt_noinline_xattr:
688 clear_opt(sbi, INLINE_XATTR);
689 break;
Chao Yu6afc6622017-09-06 21:59:50 +0800690 case Opt_inline_xattr_size:
691 if (args->from && match_int(args, &arg))
692 return -EINVAL;
693 set_opt(sbi, INLINE_XATTR_SIZE);
Chao Yu63189b72018-03-08 14:22:56 +0800694 F2FS_OPTION(sbi).inline_xattr_size = arg;
Chao Yu6afc6622017-09-06 21:59:50 +0800695 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900696#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900697 case Opt_user_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800698 f2fs_info(sbi, "user_xattr options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900699 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900700 case Opt_nouser_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800701 f2fs_info(sbi, "nouser_xattr options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900702 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900703 case Opt_inline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800704 f2fs_info(sbi, "inline_xattr options not supported");
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900705 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800706 case Opt_noinline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800707 f2fs_info(sbi, "noinline_xattr options not supported");
Chao Yu23cf7212017-02-15 10:34:45 +0800708 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900709#endif
710#ifdef CONFIG_F2FS_FS_POSIX_ACL
Kelly Anderson4058c512013-10-07 11:36:20 +0900711 case Opt_acl:
712 set_opt(sbi, POSIX_ACL);
713 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900714 case Opt_noacl:
715 clear_opt(sbi, POSIX_ACL);
716 break;
717#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900718 case Opt_acl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800719 f2fs_info(sbi, "acl options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900720 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900721 case Opt_noacl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800722 f2fs_info(sbi, "noacl options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900723 break;
724#endif
725 case Opt_active_logs:
726 if (args->from && match_int(args, &arg))
727 return -EINVAL;
Chao Yud0b9e422020-08-04 21:14:45 +0800728 if (arg != 2 && arg != 4 &&
729 arg != NR_CURSEG_PERSIST_TYPE)
Namjae Jeon696c0182013-06-16 09:48:48 +0900730 return -EINVAL;
Chao Yu63189b72018-03-08 14:22:56 +0800731 F2FS_OPTION(sbi).active_logs = arg;
Namjae Jeon696c0182013-06-16 09:48:48 +0900732 break;
733 case Opt_disable_ext_identify:
734 set_opt(sbi, DISABLE_EXT_IDENTIFY);
735 break;
Huajun Li8274de72013-11-10 23:13:17 +0800736 case Opt_inline_data:
737 set_opt(sbi, INLINE_DATA);
738 break;
Chao Yu5efd3c62014-09-24 18:16:13 +0800739 case Opt_inline_dentry:
740 set_opt(sbi, INLINE_DENTRY);
741 break;
Chao Yu97c17942016-05-09 19:56:34 +0800742 case Opt_noinline_dentry:
743 clear_opt(sbi, INLINE_DENTRY);
744 break;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900745 case Opt_flush_merge:
746 set_opt(sbi, FLUSH_MERGE);
747 break;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700748 case Opt_noflush_merge:
749 clear_opt(sbi, FLUSH_MERGE);
750 break;
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700751 case Opt_nobarrier:
752 set_opt(sbi, NOBARRIER);
753 break;
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700754 case Opt_fastboot:
755 set_opt(sbi, FASTBOOT);
756 break;
Chao Yu89672152015-02-05 17:55:51 +0800757 case Opt_extent_cache:
758 set_opt(sbi, EXTENT_CACHE);
759 break;
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700760 case Opt_noextent_cache:
761 clear_opt(sbi, EXTENT_CACHE);
762 break;
Wanpeng Li75342792015-03-24 10:20:27 +0800763 case Opt_noinline_data:
764 clear_opt(sbi, INLINE_DATA);
765 break;
Chao Yu343f40f2015-12-16 13:12:16 +0800766 case Opt_data_flush:
767 set_opt(sbi, DATA_FLUSH);
768 break;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800769 case Opt_reserve_root:
770 if (args->from && match_int(args, &arg))
771 return -EINVAL;
772 if (test_opt(sbi, RESERVE_ROOT)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800773 f2fs_info(sbi, "Preserve previous reserve_root=%u",
774 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800775 } else {
Chao Yu63189b72018-03-08 14:22:56 +0800776 F2FS_OPTION(sbi).root_reserved_blocks = arg;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800777 set_opt(sbi, RESERVE_ROOT);
778 }
779 break;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800780 case Opt_resuid:
781 if (args->from && match_int(args, &arg))
782 return -EINVAL;
783 uid = make_kuid(current_user_ns(), arg);
784 if (!uid_valid(uid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800785 f2fs_err(sbi, "Invalid uid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800786 return -EINVAL;
787 }
Chao Yu63189b72018-03-08 14:22:56 +0800788 F2FS_OPTION(sbi).s_resuid = uid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800789 break;
790 case Opt_resgid:
791 if (args->from && match_int(args, &arg))
792 return -EINVAL;
793 gid = make_kgid(current_user_ns(), arg);
794 if (!gid_valid(gid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800795 f2fs_err(sbi, "Invalid gid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800796 return -EINVAL;
797 }
Chao Yu63189b72018-03-08 14:22:56 +0800798 F2FS_OPTION(sbi).s_resgid = gid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800799 break;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700800 case Opt_mode:
801 name = match_strdup(&args[0]);
802
803 if (!name)
804 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700805 if (!strcmp(name, "adaptive")) {
Chao Yu7beb01f2018-10-24 18:34:26 +0800806 if (f2fs_sb_has_blkzoned(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800807 f2fs_warn(sbi, "adaptive mode is not allowed with zoned block device feature");
Wang Xiaojunba87a452020-06-17 20:30:12 +0800808 kfree(name);
Damien Le Moal3adc57e2016-10-28 17:45:04 +0900809 return -EINVAL;
810 }
Chao Yub0332a02020-02-14 17:44:12 +0800811 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Eric Biggers3c57f752020-05-01 16:35:23 -0700812 } else if (!strcmp(name, "lfs")) {
Chao Yub0332a02020-02-14 17:44:12 +0800813 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700814 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800815 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700816 return -EINVAL;
817 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800818 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700819 break;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800820 case Opt_io_size_bits:
821 if (args->from && match_int(args, &arg))
822 return -EINVAL;
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100823 if (arg <= 0 || arg > __ilog2_u32(BIO_MAX_VECS)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800824 f2fs_warn(sbi, "Not support %d, larger than %d",
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100825 1 << arg, BIO_MAX_VECS);
Jaegeuk Kimec915382016-12-21 17:09:19 -0800826 return -EINVAL;
827 }
Chao Yu63189b72018-03-08 14:22:56 +0800828 F2FS_OPTION(sbi).write_io_size_bits = arg;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800829 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800830#ifdef CONFIG_F2FS_FAULT_INJECTION
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700831 case Opt_fault_injection:
832 if (args->from && match_int(args, &arg))
833 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800834 f2fs_build_fault_attr(sbi, arg, F2FS_ALL_FAULT_TYPE);
835 set_opt(sbi, FAULT_INJECTION);
Chao Yud4945002018-08-08 17:36:41 +0800836 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800837
Chao Yud4945002018-08-08 17:36:41 +0800838 case Opt_fault_type:
839 if (args->from && match_int(args, &arg))
840 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800841 f2fs_build_fault_attr(sbi, 0, arg);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +0800842 set_opt(sbi, FAULT_INJECTION);
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700843 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800844#else
845 case Opt_fault_injection:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800846 f2fs_info(sbi, "fault_injection options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800847 break;
848
849 case Opt_fault_type:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800850 f2fs_info(sbi, "fault_type options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800851 break;
852#endif
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700853 case Opt_lazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800854 sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700855 break;
856 case Opt_nolazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800857 sb->s_flags &= ~SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700858 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800859#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +0800860 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800861 case Opt_usrquota:
862 set_opt(sbi, USRQUOTA);
863 break;
864 case Opt_grpquota:
865 set_opt(sbi, GRPQUOTA);
866 break;
Chao Yu5c571322017-07-26 00:01:41 +0800867 case Opt_prjquota:
868 set_opt(sbi, PRJQUOTA);
869 break;
Chao Yu4b2414d2017-08-08 10:54:31 +0800870 case Opt_usrjquota:
871 ret = f2fs_set_qf_name(sb, USRQUOTA, &args[0]);
872 if (ret)
873 return ret;
874 break;
875 case Opt_grpjquota:
876 ret = f2fs_set_qf_name(sb, GRPQUOTA, &args[0]);
877 if (ret)
878 return ret;
879 break;
880 case Opt_prjjquota:
881 ret = f2fs_set_qf_name(sb, PRJQUOTA, &args[0]);
882 if (ret)
883 return ret;
884 break;
885 case Opt_offusrjquota:
886 ret = f2fs_clear_qf_name(sb, USRQUOTA);
887 if (ret)
888 return ret;
889 break;
890 case Opt_offgrpjquota:
891 ret = f2fs_clear_qf_name(sb, GRPQUOTA);
892 if (ret)
893 return ret;
894 break;
895 case Opt_offprjjquota:
896 ret = f2fs_clear_qf_name(sb, PRJQUOTA);
897 if (ret)
898 return ret;
899 break;
900 case Opt_jqfmt_vfsold:
Chao Yu63189b72018-03-08 14:22:56 +0800901 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_OLD;
Chao Yu4b2414d2017-08-08 10:54:31 +0800902 break;
903 case Opt_jqfmt_vfsv0:
Chao Yu63189b72018-03-08 14:22:56 +0800904 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V0;
Chao Yu4b2414d2017-08-08 10:54:31 +0800905 break;
906 case Opt_jqfmt_vfsv1:
Chao Yu63189b72018-03-08 14:22:56 +0800907 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V1;
Chao Yu4b2414d2017-08-08 10:54:31 +0800908 break;
909 case Opt_noquota:
910 clear_opt(sbi, QUOTA);
911 clear_opt(sbi, USRQUOTA);
912 clear_opt(sbi, GRPQUOTA);
913 clear_opt(sbi, PRJQUOTA);
914 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800915#else
Chao Yu4b2414d2017-08-08 10:54:31 +0800916 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800917 case Opt_usrquota:
918 case Opt_grpquota:
Chao Yu5c571322017-07-26 00:01:41 +0800919 case Opt_prjquota:
Chao Yu4b2414d2017-08-08 10:54:31 +0800920 case Opt_usrjquota:
921 case Opt_grpjquota:
922 case Opt_prjjquota:
923 case Opt_offusrjquota:
924 case Opt_offgrpjquota:
925 case Opt_offprjjquota:
926 case Opt_jqfmt_vfsold:
927 case Opt_jqfmt_vfsv0:
928 case Opt_jqfmt_vfsv1:
929 case Opt_noquota:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800930 f2fs_info(sbi, "quota operations not supported");
Chao Yu0abd6752017-07-09 00:13:07 +0800931 break;
932#endif
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900933 case Opt_whint:
934 name = match_strdup(&args[0]);
935 if (!name)
936 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700937 if (!strcmp(name, "user-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800938 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_USER;
Eric Biggers3c57f752020-05-01 16:35:23 -0700939 } else if (!strcmp(name, "off")) {
Chao Yu63189b72018-03-08 14:22:56 +0800940 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700941 } else if (!strcmp(name, "fs-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800942 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_FS;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900943 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800944 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900945 return -EINVAL;
946 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800947 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900948 break;
Jaegeuk Kim07939622018-02-18 08:50:49 -0800949 case Opt_alloc:
950 name = match_strdup(&args[0]);
951 if (!name)
952 return -ENOMEM;
953
Eric Biggers3c57f752020-05-01 16:35:23 -0700954 if (!strcmp(name, "default")) {
Chao Yu63189b72018-03-08 14:22:56 +0800955 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
Eric Biggers3c57f752020-05-01 16:35:23 -0700956 } else if (!strcmp(name, "reuse")) {
Chao Yu63189b72018-03-08 14:22:56 +0800957 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Jaegeuk Kim07939622018-02-18 08:50:49 -0800958 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800959 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -0800960 return -EINVAL;
961 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800962 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -0800963 break;
Junling Zheng93cf93f2018-03-07 12:07:49 +0800964 case Opt_fsync:
965 name = match_strdup(&args[0]);
966 if (!name)
967 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700968 if (!strcmp(name, "posix")) {
Chao Yu63189b72018-03-08 14:22:56 +0800969 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Eric Biggers3c57f752020-05-01 16:35:23 -0700970 } else if (!strcmp(name, "strict")) {
Chao Yu63189b72018-03-08 14:22:56 +0800971 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_STRICT;
Eric Biggers3c57f752020-05-01 16:35:23 -0700972 } else if (!strcmp(name, "nobarrier")) {
Jaegeuk Kimd6290812018-05-25 18:02:58 -0700973 F2FS_OPTION(sbi).fsync_mode =
974 FSYNC_MODE_NOBARRIER;
Junling Zheng93cf93f2018-03-07 12:07:49 +0800975 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800976 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +0800977 return -EINVAL;
978 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800979 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +0800980 break;
Sheng Yongff62af22018-03-15 18:51:42 +0800981 case Opt_test_dummy_encryption:
Eric Biggersed318a62020-05-12 16:32:50 -0700982 ret = f2fs_set_test_dummy_encryption(sb, p, &args[0],
983 is_remount);
984 if (ret)
985 return ret;
Sheng Yongff62af22018-03-15 18:51:42 +0800986 break;
Satya Tangirala27aacd22020-07-02 01:56:06 +0000987 case Opt_inlinecrypt:
988#ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
989 sb->s_flags |= SB_INLINECRYPT;
990#else
991 f2fs_info(sbi, "inline encryption not supported");
992#endif
993 break;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700994 case Opt_checkpoint_disable_cap_perc:
995 if (args->from && match_int(args, &arg))
Daniel Rosenberg43549942018-08-20 19:21:43 -0700996 return -EINVAL;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700997 if (arg < 0 || arg > 100)
998 return -EINVAL;
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -0700999 F2FS_OPTION(sbi).unusable_cap_perc = arg;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001000 set_opt(sbi, DISABLE_CHECKPOINT);
1001 break;
1002 case Opt_checkpoint_disable_cap:
1003 if (args->from && match_int(args, &arg))
1004 return -EINVAL;
1005 F2FS_OPTION(sbi).unusable_cap = arg;
1006 set_opt(sbi, DISABLE_CHECKPOINT);
1007 break;
1008 case Opt_checkpoint_disable:
1009 set_opt(sbi, DISABLE_CHECKPOINT);
1010 break;
1011 case Opt_checkpoint_enable:
1012 clear_opt(sbi, DISABLE_CHECKPOINT);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001013 break;
Daeho Jeong261eeb92021-01-19 09:00:42 +09001014 case Opt_checkpoint_merge:
1015 set_opt(sbi, MERGE_CHECKPOINT);
1016 break;
1017 case Opt_nocheckpoint_merge:
1018 clear_opt(sbi, MERGE_CHECKPOINT);
1019 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001020#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001021 case Opt_compress_algorithm:
1022 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001023 f2fs_info(sbi, "Image doesn't support compression");
1024 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001025 }
1026 name = match_strdup(&args[0]);
1027 if (!name)
1028 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -07001029 if (!strcmp(name, "lzo")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001030#ifdef CONFIG_F2FS_FS_LZO
Chao Yu3fde13f2021-01-22 17:46:43 +08001031 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu4c8ff702019-11-01 18:07:14 +08001032 F2FS_OPTION(sbi).compress_algorithm =
1033 COMPRESS_LZO;
Chao Yu32be0e92021-01-22 17:40:13 +08001034#else
1035 f2fs_info(sbi, "kernel doesn't support lzo compression");
1036#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001037 } else if (!strncmp(name, "lz4", 3)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001038#ifdef CONFIG_F2FS_FS_LZ4
Chao Yu3fde13f2021-01-22 17:46:43 +08001039 ret = f2fs_set_lz4hc_level(sbi, name);
1040 if (ret) {
1041 kfree(name);
1042 return -EINVAL;
1043 }
Chao Yu4c8ff702019-11-01 18:07:14 +08001044 F2FS_OPTION(sbi).compress_algorithm =
1045 COMPRESS_LZ4;
Chao Yu32be0e92021-01-22 17:40:13 +08001046#else
1047 f2fs_info(sbi, "kernel doesn't support lz4 compression");
1048#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001049 } else if (!strncmp(name, "zstd", 4)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001050#ifdef CONFIG_F2FS_FS_ZSTD
Chao Yu3fde13f2021-01-22 17:46:43 +08001051 ret = f2fs_set_zstd_level(sbi, name);
1052 if (ret) {
1053 kfree(name);
1054 return -EINVAL;
1055 }
Chao Yu50cfa662020-03-03 17:46:02 +08001056 F2FS_OPTION(sbi).compress_algorithm =
1057 COMPRESS_ZSTD;
Chao Yu32be0e92021-01-22 17:40:13 +08001058#else
1059 f2fs_info(sbi, "kernel doesn't support zstd compression");
1060#endif
Chao Yu6d92b202020-04-08 19:56:32 +08001061 } else if (!strcmp(name, "lzo-rle")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001062#ifdef CONFIG_F2FS_FS_LZORLE
Chao Yu3fde13f2021-01-22 17:46:43 +08001063 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu6d92b202020-04-08 19:56:32 +08001064 F2FS_OPTION(sbi).compress_algorithm =
1065 COMPRESS_LZORLE;
Chao Yu32be0e92021-01-22 17:40:13 +08001066#else
1067 f2fs_info(sbi, "kernel doesn't support lzorle compression");
1068#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001069 } else {
1070 kfree(name);
1071 return -EINVAL;
1072 }
1073 kfree(name);
1074 break;
1075 case Opt_compress_log_size:
1076 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001077 f2fs_info(sbi, "Image doesn't support compression");
1078 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001079 }
1080 if (args->from && match_int(args, &arg))
1081 return -EINVAL;
1082 if (arg < MIN_COMPRESS_LOG_SIZE ||
1083 arg > MAX_COMPRESS_LOG_SIZE) {
1084 f2fs_err(sbi,
1085 "Compress cluster log size is out of range");
1086 return -EINVAL;
1087 }
1088 F2FS_OPTION(sbi).compress_log_size = arg;
1089 break;
1090 case Opt_compress_extension:
1091 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001092 f2fs_info(sbi, "Image doesn't support compression");
1093 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001094 }
1095 name = match_strdup(&args[0]);
1096 if (!name)
1097 return -ENOMEM;
1098
1099 ext = F2FS_OPTION(sbi).extensions;
1100 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
1101
1102 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1103 ext_cnt >= COMPRESS_EXT_NUM) {
1104 f2fs_err(sbi,
1105 "invalid extension length/number");
1106 kfree(name);
1107 return -EINVAL;
1108 }
1109
1110 strcpy(ext[ext_cnt], name);
1111 F2FS_OPTION(sbi).compress_ext_cnt++;
1112 kfree(name);
1113 break;
Fengnan Chang151b1982021-06-08 19:15:08 +08001114 case Opt_nocompress_extension:
1115 if (!f2fs_sb_has_compression(sbi)) {
1116 f2fs_info(sbi, "Image doesn't support compression");
1117 break;
1118 }
1119 name = match_strdup(&args[0]);
1120 if (!name)
1121 return -ENOMEM;
1122
1123 noext = F2FS_OPTION(sbi).noextensions;
1124 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
1125
1126 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1127 noext_cnt >= COMPRESS_EXT_NUM) {
1128 f2fs_err(sbi,
1129 "invalid extension length/number");
1130 kfree(name);
1131 return -EINVAL;
1132 }
1133
1134 strcpy(noext[noext_cnt], name);
1135 F2FS_OPTION(sbi).nocompress_ext_cnt++;
1136 kfree(name);
1137 break;
Chao Yub28f0472020-11-26 18:32:09 +08001138 case Opt_compress_chksum:
1139 F2FS_OPTION(sbi).compress_chksum = true;
1140 break;
Daeho Jeong602a16d2020-12-01 13:08:02 +09001141 case Opt_compress_mode:
1142 name = match_strdup(&args[0]);
1143 if (!name)
1144 return -ENOMEM;
1145 if (!strcmp(name, "fs")) {
1146 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
1147 } else if (!strcmp(name, "user")) {
1148 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_USER;
1149 } else {
1150 kfree(name);
1151 return -EINVAL;
1152 }
1153 kfree(name);
1154 break;
Chao Yu6ce19af2021-05-20 19:51:50 +08001155 case Opt_compress_cache:
1156 set_opt(sbi, COMPRESS_CACHE);
1157 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001158#else
1159 case Opt_compress_algorithm:
1160 case Opt_compress_log_size:
1161 case Opt_compress_extension:
Fengnan Chang151b1982021-06-08 19:15:08 +08001162 case Opt_nocompress_extension:
Chao Yub28f0472020-11-26 18:32:09 +08001163 case Opt_compress_chksum:
Daeho Jeong602a16d2020-12-01 13:08:02 +09001164 case Opt_compress_mode:
Chao Yu6ce19af2021-05-20 19:51:50 +08001165 case Opt_compress_cache:
Chao Yu1f0b0672020-07-29 21:21:36 +08001166 f2fs_info(sbi, "compression options not supported");
1167 break;
1168#endif
Chao Yu093749e2020-08-04 21:14:49 +08001169 case Opt_atgc:
1170 set_opt(sbi, ATGC);
1171 break;
Chao Yu5911d2d2021-03-27 17:57:06 +08001172 case Opt_gc_merge:
1173 set_opt(sbi, GC_MERGE);
1174 break;
1175 case Opt_nogc_merge:
1176 clear_opt(sbi, GC_MERGE);
1177 break;
Chao Yu4f993262021-08-03 08:15:43 +08001178 case Opt_discard_unit:
1179 name = match_strdup(&args[0]);
1180 if (!name)
1181 return -ENOMEM;
1182 if (!strcmp(name, "block")) {
1183 F2FS_OPTION(sbi).discard_unit =
1184 DISCARD_UNIT_BLOCK;
1185 } else if (!strcmp(name, "segment")) {
1186 F2FS_OPTION(sbi).discard_unit =
1187 DISCARD_UNIT_SEGMENT;
1188 } else if (!strcmp(name, "section")) {
1189 F2FS_OPTION(sbi).discard_unit =
1190 DISCARD_UNIT_SECTION;
1191 } else {
1192 kfree(name);
1193 return -EINVAL;
1194 }
1195 kfree(name);
1196 break;
Namjae Jeon696c0182013-06-16 09:48:48 +09001197 default:
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001198 f2fs_err(sbi, "Unrecognized mount option \"%s\" or missing value",
1199 p);
Namjae Jeon696c0182013-06-16 09:48:48 +09001200 return -EINVAL;
1201 }
1202 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001203default_check:
Chao Yu4b2414d2017-08-08 10:54:31 +08001204#ifdef CONFIG_QUOTA
1205 if (f2fs_check_quota_options(sbi))
1206 return -EINVAL;
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001207#else
Chao Yu7beb01f2018-10-24 18:34:26 +08001208 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001209 f2fs_info(sbi, "Filesystem with quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001210 return -EINVAL;
1211 }
Chao Yu7beb01f2018-10-24 18:34:26 +08001212 if (f2fs_sb_has_project_quota(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001213 f2fs_err(sbi, "Filesystem with project quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Chao Yu4ddc1b22018-07-26 07:19:48 +08001214 return -EINVAL;
1215 }
Chao Yu4b2414d2017-08-08 10:54:31 +08001216#endif
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001217#ifndef CONFIG_UNICODE
1218 if (f2fs_sb_has_casefold(sbi)) {
1219 f2fs_err(sbi,
1220 "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
1221 return -EINVAL;
1222 }
1223#endif
Chao Yud0660122020-09-21 20:53:14 +08001224 /*
1225 * The BLKZONED feature indicates that the drive was formatted with
1226 * zone alignment optimization. This is optional for host-aware
1227 * devices, but mandatory for host-managed zoned block devices.
1228 */
1229#ifndef CONFIG_BLK_DEV_ZONED
1230 if (f2fs_sb_has_blkzoned(sbi)) {
1231 f2fs_err(sbi, "Zoned block device support is not enabled");
1232 return -EINVAL;
1233 }
1234#endif
Chao Yu4f993262021-08-03 08:15:43 +08001235 if (f2fs_sb_has_blkzoned(sbi)) {
1236 if (F2FS_OPTION(sbi).discard_unit !=
1237 DISCARD_UNIT_SECTION) {
1238 f2fs_info(sbi, "Zoned block device doesn't need small discard, set discard_unit=section by default");
1239 F2FS_OPTION(sbi).discard_unit =
1240 DISCARD_UNIT_SECTION;
1241 }
1242 }
Jaegeuk Kimec915382016-12-21 17:09:19 -08001243
Fengnan Chang151b1982021-06-08 19:15:08 +08001244#ifdef CONFIG_F2FS_FS_COMPRESSION
1245 if (f2fs_test_compress_extension(sbi)) {
1246 f2fs_err(sbi, "invalid compress or nocompress extension");
1247 return -EINVAL;
1248 }
1249#endif
1250
Chao Yub0332a02020-02-14 17:44:12 +08001251 if (F2FS_IO_SIZE_BITS(sbi) && !f2fs_lfs_mode(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001252 f2fs_err(sbi, "Should set mode=lfs with %uKB-sized IO",
1253 F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001254 return -EINVAL;
1255 }
Chao Yu6afc6622017-09-06 21:59:50 +08001256
1257 if (test_opt(sbi, INLINE_XATTR_SIZE)) {
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001258 int min_size, max_size;
1259
Chao Yu7beb01f2018-10-24 18:34:26 +08001260 if (!f2fs_sb_has_extra_attr(sbi) ||
1261 !f2fs_sb_has_flexible_inline_xattr(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001262 f2fs_err(sbi, "extra_attr or flexible_inline_xattr feature is off");
Chao Yu4d817ae2018-01-27 17:29:48 +08001263 return -EINVAL;
1264 }
Chao Yu6afc6622017-09-06 21:59:50 +08001265 if (!test_opt(sbi, INLINE_XATTR)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001266 f2fs_err(sbi, "inline_xattr_size option should be set with inline_xattr option");
Chao Yu6afc6622017-09-06 21:59:50 +08001267 return -EINVAL;
1268 }
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001269
1270 min_size = sizeof(struct f2fs_xattr_header) / sizeof(__le32);
Chao Yudd6c89b2019-03-04 17:19:04 +08001271 max_size = MAX_INLINE_XATTR_SIZE;
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001272
1273 if (F2FS_OPTION(sbi).inline_xattr_size < min_size ||
1274 F2FS_OPTION(sbi).inline_xattr_size > max_size) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001275 f2fs_err(sbi, "inline xattr size is out of range: %d ~ %d",
1276 min_size, max_size);
Chao Yu6afc6622017-09-06 21:59:50 +08001277 return -EINVAL;
1278 }
1279 }
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001280
Chao Yub0332a02020-02-14 17:44:12 +08001281 if (test_opt(sbi, DISABLE_CHECKPOINT) && f2fs_lfs_mode(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07001282 f2fs_err(sbi, "LFS not compatible with checkpoint=disable");
Daniel Rosenberg43549942018-08-20 19:21:43 -07001283 return -EINVAL;
1284 }
1285
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001286 /* Not pass down write hints if the number of active logs is lesser
Chao Yud0b9e422020-08-04 21:14:45 +08001287 * than NR_CURSEG_PERSIST_TYPE.
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001288 */
Chao Yu63189b72018-03-08 14:22:56 +08001289 if (F2FS_OPTION(sbi).active_logs != NR_CURSEG_TYPE)
1290 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001291
1292 if (f2fs_sb_has_readonly(sbi) && !f2fs_readonly(sbi->sb)) {
1293 f2fs_err(sbi, "Allow to mount readonly mode only");
1294 return -EROFS;
1295 }
Namjae Jeon696c0182013-06-16 09:48:48 +09001296 return 0;
1297}
1298
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001299static struct inode *f2fs_alloc_inode(struct super_block *sb)
1300{
1301 struct f2fs_inode_info *fi;
1302
Chao Yua0acdfe2013-12-05 09:54:00 +08001303 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001304 if (!fi)
1305 return NULL;
1306
1307 init_once((void *) fi);
1308
Masanari Iida434720f2013-03-19 08:03:35 +09001309 /* Initialize f2fs-specific inode info */
Jaegeuk Kim204706c2016-12-02 15:11:32 -08001310 atomic_set(&fi->dirty_pages, 0);
Daeho Jeongc2759eb2020-09-08 11:44:10 +09001311 atomic_set(&fi->i_compr_blocks, 0);
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +09001312 init_rwsem(&fi->i_sem);
Chao Yuc10c9822020-02-27 19:30:03 +08001313 spin_lock_init(&fi->i_size_lock);
Chao Yu2710fd72015-12-15 13:30:45 +08001314 INIT_LIST_HEAD(&fi->dirty_list);
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001315 INIT_LIST_HEAD(&fi->gdirty_list);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -07001316 INIT_LIST_HEAD(&fi->inmem_ilist);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001317 INIT_LIST_HEAD(&fi->inmem_pages);
1318 mutex_init(&fi->inmem_lock);
Chao Yub2532c62018-04-24 10:55:28 +08001319 init_rwsem(&fi->i_gc_rwsem[READ]);
1320 init_rwsem(&fi->i_gc_rwsem[WRITE]);
Qiuyang Sun5a3a2d82017-05-18 11:06:45 +08001321 init_rwsem(&fi->i_mmap_sem);
Yunlei He27161f12017-09-07 10:40:54 +08001322 init_rwsem(&fi->i_xattr_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001323
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09001324 /* Will be used by directory only */
1325 fi->i_dir_level = F2FS_SB(sb)->dir_level;
Chao Yuf2470372017-07-19 00:19:05 +08001326
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001327 return &fi->vfs_inode;
1328}
1329
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001330static int f2fs_drop_inode(struct inode *inode)
1331{
Chao Yua8933b62019-07-18 16:39:59 +08001332 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001333 int ret;
Chao Yua8933b62019-07-18 16:39:59 +08001334
1335 /*
1336 * during filesystem shutdown, if checkpoint is disabled,
1337 * drop useless meta/node dirty pages.
1338 */
1339 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1340 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1341 inode->i_ino == F2FS_META_INO(sbi)) {
1342 trace_f2fs_drop_inode(inode, 1);
1343 return 1;
1344 }
1345 }
1346
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001347 /*
1348 * This is to avoid a deadlock condition like below.
1349 * writeback_single_inode(inode)
1350 * - f2fs_write_data_page
1351 * - f2fs_gc -> iput -> evict
1352 * - inode_wait_for_writeback(inode)
1353 */
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001354 if ((!inode_unhashed(inode) && inode->i_state & I_SYNC)) {
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001355 if (!inode->i_nlink && !is_bad_inode(inode)) {
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001356 /* to avoid evict_inode call simultaneously */
1357 atomic_inc(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001358 spin_unlock(&inode->i_lock);
1359
1360 /* some remained atomic pages should discarded */
1361 if (f2fs_is_atomic_file(inode))
Chao Yu4d57b862018-05-30 00:20:41 +08001362 f2fs_drop_inmem_pages(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001363
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001364 /* should remain fi->extent_tree for writepage */
1365 f2fs_destroy_extent_node(inode);
1366
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001367 sb_start_intwrite(inode->i_sb);
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07001368 f2fs_i_size_write(inode, 0);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001369
zhenglianga0770e12019-03-04 09:32:25 +08001370 f2fs_submit_merged_write_cond(F2FS_I_SB(inode),
1371 inode, NULL, 0, DATA);
1372 truncate_inode_pages_final(inode->i_mapping);
1373
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001374 if (F2FS_HAS_BLOCKS(inode))
Jaegeuk Kim9a449e92016-06-02 13:49:38 -07001375 f2fs_truncate(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001376
1377 sb_end_intwrite(inode->i_sb);
1378
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001379 spin_lock(&inode->i_lock);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001380 atomic_dec(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001381 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001382 trace_f2fs_drop_inode(inode, 0);
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001383 return 0;
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001384 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001385 ret = generic_drop_inode(inode);
Eric Biggers8ce589c2019-08-04 19:35:48 -07001386 if (!ret)
1387 ret = fscrypt_drop_inode(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001388 trace_f2fs_drop_inode(inode, ret);
1389 return ret;
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001390}
1391
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001392int f2fs_inode_dirtied(struct inode *inode, bool sync)
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001393{
1394 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001395 int ret = 0;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001396
1397 spin_lock(&sbi->inode_lock[DIRTY_META]);
1398 if (is_inode_flag_set(inode, FI_DIRTY_INODE)) {
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001399 ret = 1;
1400 } else {
1401 set_inode_flag(inode, FI_DIRTY_INODE);
1402 stat_inc_dirty_inode(sbi, DIRTY_META);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001403 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001404 if (sync && list_empty(&F2FS_I(inode)->gdirty_list)) {
1405 list_add_tail(&F2FS_I(inode)->gdirty_list,
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001406 &sbi->inode_list[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001407 inc_page_count(sbi, F2FS_DIRTY_IMETA);
1408 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001409 spin_unlock(&sbi->inode_lock[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001410 return ret;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001411}
1412
1413void f2fs_inode_synced(struct inode *inode)
1414{
1415 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1416
1417 spin_lock(&sbi->inode_lock[DIRTY_META]);
1418 if (!is_inode_flag_set(inode, FI_DIRTY_INODE)) {
1419 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1420 return;
1421 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001422 if (!list_empty(&F2FS_I(inode)->gdirty_list)) {
1423 list_del_init(&F2FS_I(inode)->gdirty_list);
1424 dec_page_count(sbi, F2FS_DIRTY_IMETA);
1425 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001426 clear_inode_flag(inode, FI_DIRTY_INODE);
1427 clear_inode_flag(inode, FI_AUTO_RECOVER);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001428 stat_dec_dirty_inode(F2FS_I_SB(inode), DIRTY_META);
1429 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1430}
1431
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001432/*
1433 * f2fs_dirty_inode() is called from __mark_inode_dirty()
1434 *
1435 * We should call set_dirty_inode to write the dirty inode through write_inode.
1436 */
1437static void f2fs_dirty_inode(struct inode *inode, int flags)
1438{
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001439 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1440
1441 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1442 inode->i_ino == F2FS_META_INO(sbi))
1443 return;
1444
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07001445 if (is_inode_flag_set(inode, FI_AUTO_RECOVER))
1446 clear_inode_flag(inode, FI_AUTO_RECOVER);
1447
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001448 f2fs_inode_dirtied(inode, false);
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001449}
1450
Al Virod01718a2019-04-15 19:29:14 -04001451static void f2fs_free_inode(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001452{
Eric Biggers2c58d542019-04-10 13:21:15 -07001453 fscrypt_free_inode(inode);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001454 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
1455}
1456
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001457static void destroy_percpu_info(struct f2fs_sb_info *sbi)
1458{
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001459 percpu_counter_destroy(&sbi->alloc_valid_block_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07001460 percpu_counter_destroy(&sbi->total_valid_inode_count);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001461}
1462
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001463static void destroy_device_list(struct f2fs_sb_info *sbi)
1464{
1465 int i;
1466
1467 for (i = 0; i < sbi->s_ndevs; i++) {
1468 blkdev_put(FDEV(i).bdev, FMODE_EXCL);
1469#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal95175da2019-03-16 09:13:07 +09001470 kvfree(FDEV(i).blkz_seq);
Aravind Rameshde881df2020-07-16 18:26:56 +05301471 kfree(FDEV(i).zone_capacity_blocks);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001472#endif
1473 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08001474 kvfree(sbi->devs);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001475}
1476
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001477static void f2fs_put_super(struct super_block *sb)
1478{
1479 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yua3981012017-06-14 17:39:46 +08001480 int i;
Chao Yucf5c7592017-10-04 09:08:37 +08001481 bool dropped;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001482
Li Guifu99c787c2020-07-24 09:38:11 +08001483 /* unregister procfs/sysfs entries in advance to avoid race case */
1484 f2fs_unregister_sysfs(sbi);
1485
Chao Yu0abd6752017-07-09 00:13:07 +08001486 f2fs_quota_off_umount(sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001487
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001488 /* prevent remaining shrinker jobs */
1489 mutex_lock(&sbi->umount_mutex);
1490
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001491 /*
Daeho Jeong261eeb92021-01-19 09:00:42 +09001492 * flush all issued checkpoints and stop checkpoint issue thread.
1493 * after then, all checkpoints should be done by each process context.
1494 */
1495 f2fs_stop_ckpt_thread(sbi);
1496
1497 /*
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001498 * We don't need to do checkpoint when superblock is clean.
1499 * But, the previous checkpoint was not done by umount, it needs to do
1500 * clean checkpoint again.
1501 */
Daniel Rosenberg43549942018-08-20 19:21:43 -07001502 if ((is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
1503 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG))) {
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001504 struct cp_control cpc = {
1505 .reason = CP_UMOUNT,
1506 };
Chao Yu4d57b862018-05-30 00:20:41 +08001507 f2fs_write_checkpoint(sbi, &cpc);
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001508 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001509
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001510 /* be sure to wait for any on-going discard commands */
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001511 dropped = f2fs_issue_discard_timeout(sbi);
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001512
Chao Yu7d20c8a2018-09-04 03:52:17 +08001513 if ((f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi)) &&
1514 !sbi->discard_blks && !dropped) {
Chao Yu1f43e2a2017-04-28 13:56:08 +08001515 struct cp_control cpc = {
1516 .reason = CP_UMOUNT | CP_TRIMMED,
1517 };
Chao Yu4d57b862018-05-30 00:20:41 +08001518 f2fs_write_checkpoint(sbi, &cpc);
Chao Yu1f43e2a2017-04-28 13:56:08 +08001519 }
1520
Jaegeuk Kimcf779ca2014-08-11 18:37:46 -07001521 /*
1522 * normally superblock is clean, so we need to release this.
1523 * In addition, EIO will skip do checkpoint, we need this as well.
1524 */
Chao Yu4d57b862018-05-30 00:20:41 +08001525 f2fs_release_ino_entry(sbi, true);
Jaegeuk Kim6f12ac22014-08-19 09:48:22 -07001526
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001527 f2fs_leave_shrinker(sbi);
1528 mutex_unlock(&sbi->umount_mutex);
1529
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001530 /* our cp_error case, we can wait for any writeback page */
Jaegeuk Kimb9109b02017-05-10 11:28:38 -07001531 f2fs_flush_merged_writes(sbi);
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001532
Sahitya Tummalabf22c3c2020-02-18 09:19:07 +05301533 f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
Chao Yu50fa53e2018-08-02 23:03:19 +08001534
1535 f2fs_bug_on(sbi, sbi->fsync_node_num);
1536
Chao Yu6ce19af2021-05-20 19:51:50 +08001537 f2fs_destroy_compress_inode(sbi);
1538
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001539 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001540 sbi->node_inode = NULL;
1541
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001542 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001543 sbi->meta_inode = NULL;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001544
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05301545 /*
1546 * iput() can update stat information, if f2fs_write_checkpoint()
1547 * above failed with error.
1548 */
1549 f2fs_destroy_stats(sbi);
1550
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001551 /* destroy f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08001552 f2fs_destroy_node_manager(sbi);
1553 f2fs_destroy_segment_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001554
Chao Yu4c8ff702019-11-01 18:07:14 +08001555 f2fs_destroy_post_read_wq(sbi);
1556
Jaegeuk Kim52225952018-12-13 18:38:33 -08001557 kvfree(sbi->ckpt);
Chao Yua3981012017-06-14 17:39:46 +08001558
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001559 sb->s_fs_info = NULL;
Keith Mok43b65732016-03-02 12:04:24 -08001560 if (sbi->s_chksum_driver)
1561 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03001562 kfree(sbi->raw_super);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001563
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001564 destroy_device_list(sbi);
Chao Yu31083032020-09-14 17:05:13 +08001565 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08001566 f2fs_destroy_xattr_caches(sbi);
Chao Yub6895e82017-02-27 18:43:12 +08001567 mempool_destroy(sbi->write_io_dummy);
Chao Yu4b2414d2017-08-08 10:54:31 +08001568#ifdef CONFIG_QUOTA
1569 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08001570 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001571#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07001572 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001573 destroy_percpu_info(sbi);
Jaegeuk Kima912b542017-05-10 11:18:25 -07001574 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08001575 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001576#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07001577 utf8_unload(sb->s_encoding);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001578#endif
Denis Efremov742532d2020-06-10 01:14:46 +03001579 kfree(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001580}
1581
1582int f2fs_sync_fs(struct super_block *sb, int sync)
1583{
1584 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yuc34f42e2015-12-23 17:50:30 +08001585 int err = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001586
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001587 if (unlikely(f2fs_cp_error(sbi)))
1588 return 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07001589 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1590 return 0;
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001591
Namjae Jeona2a4a7e2013-04-20 01:28:40 +09001592 trace_f2fs_sync_fs(sb, sync);
1593
Chao Yu4b2414d2017-08-08 10:54:31 +08001594 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1595 return -EAGAIN;
1596
Daeho Jeong261eeb92021-01-19 09:00:42 +09001597 if (sync)
1598 err = f2fs_issue_checkpoint(sbi);
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001599
Chao Yuc34f42e2015-12-23 17:50:30 +08001600 return err;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001601}
1602
Changman Leed6212a52013-01-29 18:30:07 +09001603static int f2fs_freeze(struct super_block *sb)
1604{
Jaegeuk Kim77888c12013-05-20 20:28:47 +09001605 if (f2fs_readonly(sb))
Changman Leed6212a52013-01-29 18:30:07 +09001606 return 0;
1607
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001608 /* IO error happened before */
1609 if (unlikely(f2fs_cp_error(F2FS_SB(sb))))
1610 return -EIO;
1611
1612 /* must be clean, since sync_filesystem() was already called */
1613 if (is_sbi_flag_set(F2FS_SB(sb), SBI_IS_DIRTY))
1614 return -EINVAL;
Jaegeuk Kimd50dfc0c2021-02-08 13:42:21 -08001615
1616 /* ensure no checkpoint required */
1617 if (!llist_empty(&F2FS_SB(sb)->cprc_info.issue_list))
1618 return -EINVAL;
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001619 return 0;
Changman Leed6212a52013-01-29 18:30:07 +09001620}
1621
1622static int f2fs_unfreeze(struct super_block *sb)
1623{
1624 return 0;
1625}
1626
Chao Yuddc34e32017-07-29 00:32:53 +08001627#ifdef CONFIG_QUOTA
1628static int f2fs_statfs_project(struct super_block *sb,
1629 kprojid_t projid, struct kstatfs *buf)
1630{
1631 struct kqid qid;
1632 struct dquot *dquot;
1633 u64 limit;
1634 u64 curblock;
1635
1636 qid = make_kqid_projid(projid);
1637 dquot = dqget(sb, qid);
1638 if (IS_ERR(dquot))
1639 return PTR_ERR(dquot);
Sheng Yong955ac6e2018-07-24 20:17:53 +08001640 spin_lock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001641
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001642 limit = min_not_zero(dquot->dq_dqb.dqb_bsoftlimit,
1643 dquot->dq_dqb.dqb_bhardlimit);
Chengguang Xuacdf2172020-01-04 22:20:03 +08001644 if (limit)
1645 limit >>= sb->s_blocksize_bits;
Chengguang Xu909110c2019-11-25 11:20:36 +08001646
Chao Yuddc34e32017-07-29 00:32:53 +08001647 if (limit && buf->f_blocks > limit) {
Konstantin Khlebnikovbaaa7eb2020-05-11 09:15:18 +03001648 curblock = (dquot->dq_dqb.dqb_curspace +
1649 dquot->dq_dqb.dqb_rsvspace) >> sb->s_blocksize_bits;
Chao Yuddc34e32017-07-29 00:32:53 +08001650 buf->f_blocks = limit;
1651 buf->f_bfree = buf->f_bavail =
1652 (buf->f_blocks > curblock) ?
1653 (buf->f_blocks - curblock) : 0;
1654 }
1655
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001656 limit = min_not_zero(dquot->dq_dqb.dqb_isoftlimit,
1657 dquot->dq_dqb.dqb_ihardlimit);
Chengguang Xu909110c2019-11-25 11:20:36 +08001658
Chao Yuddc34e32017-07-29 00:32:53 +08001659 if (limit && buf->f_files > limit) {
1660 buf->f_files = limit;
1661 buf->f_ffree =
1662 (buf->f_files > dquot->dq_dqb.dqb_curinodes) ?
1663 (buf->f_files - dquot->dq_dqb.dqb_curinodes) : 0;
1664 }
1665
Sheng Yong955ac6e2018-07-24 20:17:53 +08001666 spin_unlock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001667 dqput(dquot);
1668 return 0;
1669}
1670#endif
1671
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001672static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
1673{
1674 struct super_block *sb = dentry->d_sb;
1675 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1676 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001677 block_t total_count, user_block_count, start_count;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001678 u64 avail_node_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001679
1680 total_count = le64_to_cpu(sbi->raw_super->block_count);
1681 user_block_count = sbi->user_block_count;
1682 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001683 buf->f_type = F2FS_SUPER_MAGIC;
1684 buf->f_bsize = sbi->blocksize;
1685
1686 buf->f_blocks = total_count - start_count;
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001687 buf->f_bfree = user_block_count - valid_user_blocks(sbi) -
Yunlong Song80d42142017-10-27 20:45:05 +08001688 sbi->current_reserved_blocks;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001689
1690 spin_lock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001691 if (unlikely(buf->f_bfree <= sbi->unusable_block_count))
1692 buf->f_bfree = 0;
1693 else
1694 buf->f_bfree -= sbi->unusable_block_count;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001695 spin_unlock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001696
Chao Yu63189b72018-03-08 14:22:56 +08001697 if (buf->f_bfree > F2FS_OPTION(sbi).root_reserved_blocks)
1698 buf->f_bavail = buf->f_bfree -
1699 F2FS_OPTION(sbi).root_reserved_blocks;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001700 else
1701 buf->f_bavail = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001702
Chao Yu27cae0b2019-08-05 18:27:25 +08001703 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001704
1705 if (avail_node_count > user_block_count) {
1706 buf->f_files = user_block_count;
1707 buf->f_ffree = buf->f_bavail;
1708 } else {
1709 buf->f_files = avail_node_count;
1710 buf->f_ffree = min(avail_node_count - valid_node_count(sbi),
1711 buf->f_bavail);
1712 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001713
Jaegeuk Kim5a20d332013-03-03 13:58:05 +09001714 buf->f_namelen = F2FS_NAME_LEN;
Al Viro6d1349c2020-09-18 16:45:50 -04001715 buf->f_fsid = u64_to_fsid(id);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001716
Chao Yuddc34e32017-07-29 00:32:53 +08001717#ifdef CONFIG_QUOTA
1718 if (is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) &&
1719 sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
1720 f2fs_statfs_project(sb, F2FS_I(dentry->d_inode)->i_projid, buf);
1721 }
1722#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001723 return 0;
1724}
1725
Chao Yu4b2414d2017-08-08 10:54:31 +08001726static inline void f2fs_show_quota_options(struct seq_file *seq,
1727 struct super_block *sb)
1728{
1729#ifdef CONFIG_QUOTA
1730 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1731
Chao Yu63189b72018-03-08 14:22:56 +08001732 if (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001733 char *fmtname = "";
1734
Chao Yu63189b72018-03-08 14:22:56 +08001735 switch (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001736 case QFMT_VFS_OLD:
1737 fmtname = "vfsold";
1738 break;
1739 case QFMT_VFS_V0:
1740 fmtname = "vfsv0";
1741 break;
1742 case QFMT_VFS_V1:
1743 fmtname = "vfsv1";
1744 break;
1745 }
1746 seq_printf(seq, ",jqfmt=%s", fmtname);
1747 }
1748
Chao Yu63189b72018-03-08 14:22:56 +08001749 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
1750 seq_show_option(seq, "usrjquota",
1751 F2FS_OPTION(sbi).s_qf_names[USRQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001752
Chao Yu63189b72018-03-08 14:22:56 +08001753 if (F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
1754 seq_show_option(seq, "grpjquota",
1755 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001756
Chao Yu63189b72018-03-08 14:22:56 +08001757 if (F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
1758 seq_show_option(seq, "prjjquota",
1759 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001760#endif
1761}
1762
Chao Yucd6ee732021-02-20 17:38:41 +08001763#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001764static inline void f2fs_show_compress_options(struct seq_file *seq,
1765 struct super_block *sb)
1766{
1767 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1768 char *algtype = "";
1769 int i;
1770
1771 if (!f2fs_sb_has_compression(sbi))
1772 return;
1773
1774 switch (F2FS_OPTION(sbi).compress_algorithm) {
1775 case COMPRESS_LZO:
1776 algtype = "lzo";
1777 break;
1778 case COMPRESS_LZ4:
1779 algtype = "lz4";
1780 break;
Chao Yu50cfa662020-03-03 17:46:02 +08001781 case COMPRESS_ZSTD:
1782 algtype = "zstd";
1783 break;
Chao Yu6d92b202020-04-08 19:56:32 +08001784 case COMPRESS_LZORLE:
1785 algtype = "lzo-rle";
1786 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001787 }
1788 seq_printf(seq, ",compress_algorithm=%s", algtype);
1789
Chao Yu3fde13f2021-01-22 17:46:43 +08001790 if (F2FS_OPTION(sbi).compress_level)
1791 seq_printf(seq, ":%d", F2FS_OPTION(sbi).compress_level);
1792
Chao Yu4c8ff702019-11-01 18:07:14 +08001793 seq_printf(seq, ",compress_log_size=%u",
1794 F2FS_OPTION(sbi).compress_log_size);
1795
1796 for (i = 0; i < F2FS_OPTION(sbi).compress_ext_cnt; i++) {
1797 seq_printf(seq, ",compress_extension=%s",
1798 F2FS_OPTION(sbi).extensions[i]);
1799 }
Chao Yub28f0472020-11-26 18:32:09 +08001800
Fengnan Chang151b1982021-06-08 19:15:08 +08001801 for (i = 0; i < F2FS_OPTION(sbi).nocompress_ext_cnt; i++) {
1802 seq_printf(seq, ",nocompress_extension=%s",
1803 F2FS_OPTION(sbi).noextensions[i]);
1804 }
1805
Chao Yub28f0472020-11-26 18:32:09 +08001806 if (F2FS_OPTION(sbi).compress_chksum)
1807 seq_puts(seq, ",compress_chksum");
Daeho Jeong602a16d2020-12-01 13:08:02 +09001808
1809 if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_FS)
1810 seq_printf(seq, ",compress_mode=%s", "fs");
1811 else if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_USER)
1812 seq_printf(seq, ",compress_mode=%s", "user");
Chao Yu6ce19af2021-05-20 19:51:50 +08001813
1814 if (test_opt(sbi, COMPRESS_CACHE))
1815 seq_puts(seq, ",compress_cache");
Chao Yu4c8ff702019-11-01 18:07:14 +08001816}
Chao Yucd6ee732021-02-20 17:38:41 +08001817#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001818
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001819static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
1820{
1821 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
1822
Chao Yubbbc34f2020-02-14 17:44:13 +08001823 if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC)
1824 seq_printf(seq, ",background_gc=%s", "sync");
1825 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_ON)
1826 seq_printf(seq, ",background_gc=%s", "on");
1827 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF)
Namjae Jeon696c0182013-06-16 09:48:48 +09001828 seq_printf(seq, ",background_gc=%s", "off");
Chao Yubbbc34f2020-02-14 17:44:13 +08001829
Chao Yu5911d2d2021-03-27 17:57:06 +08001830 if (test_opt(sbi, GC_MERGE))
1831 seq_puts(seq, ",gc_merge");
1832
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001833 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
1834 seq_puts(seq, ",disable_roll_forward");
Chao Yua9117ec2020-02-14 17:45:11 +08001835 if (test_opt(sbi, NORECOVERY))
1836 seq_puts(seq, ",norecovery");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001837 if (test_opt(sbi, DISCARD))
1838 seq_puts(seq, ",discard");
Sahitya Tummala81621f92019-05-24 14:38:39 +05301839 else
1840 seq_puts(seq, ",nodiscard");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001841 if (test_opt(sbi, NOHEAP))
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04001842 seq_puts(seq, ",no_heap");
1843 else
1844 seq_puts(seq, ",heap");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001845#ifdef CONFIG_F2FS_FS_XATTR
1846 if (test_opt(sbi, XATTR_USER))
1847 seq_puts(seq, ",user_xattr");
1848 else
1849 seq_puts(seq, ",nouser_xattr");
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001850 if (test_opt(sbi, INLINE_XATTR))
1851 seq_puts(seq, ",inline_xattr");
Chao Yu23cf7212017-02-15 10:34:45 +08001852 else
1853 seq_puts(seq, ",noinline_xattr");
Chao Yu6afc6622017-09-06 21:59:50 +08001854 if (test_opt(sbi, INLINE_XATTR_SIZE))
1855 seq_printf(seq, ",inline_xattr_size=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001856 F2FS_OPTION(sbi).inline_xattr_size);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001857#endif
1858#ifdef CONFIG_F2FS_FS_POSIX_ACL
1859 if (test_opt(sbi, POSIX_ACL))
1860 seq_puts(seq, ",acl");
1861 else
1862 seq_puts(seq, ",noacl");
1863#endif
1864 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
Alejandro Martinez Ruizaa435072013-01-25 19:08:59 +01001865 seq_puts(seq, ",disable_ext_identify");
Huajun Li8274de72013-11-10 23:13:17 +08001866 if (test_opt(sbi, INLINE_DATA))
1867 seq_puts(seq, ",inline_data");
Wanpeng Li75342792015-03-24 10:20:27 +08001868 else
1869 seq_puts(seq, ",noinline_data");
Chao Yu5efd3c62014-09-24 18:16:13 +08001870 if (test_opt(sbi, INLINE_DENTRY))
1871 seq_puts(seq, ",inline_dentry");
Chao Yu97c17942016-05-09 19:56:34 +08001872 else
1873 seq_puts(seq, ",noinline_dentry");
Gu Zhengb270ad62014-04-11 17:49:55 +08001874 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09001875 seq_puts(seq, ",flush_merge");
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -07001876 if (test_opt(sbi, NOBARRIER))
1877 seq_puts(seq, ",nobarrier");
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001878 if (test_opt(sbi, FASTBOOT))
1879 seq_puts(seq, ",fastboot");
Chao Yu89672152015-02-05 17:55:51 +08001880 if (test_opt(sbi, EXTENT_CACHE))
1881 seq_puts(seq, ",extent_cache");
Jaegeuk Kim7daaea22015-06-25 17:43:04 -07001882 else
1883 seq_puts(seq, ",noextent_cache");
Chao Yu343f40f2015-12-16 13:12:16 +08001884 if (test_opt(sbi, DATA_FLUSH))
1885 seq_puts(seq, ",data_flush");
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001886
1887 seq_puts(seq, ",mode=");
Chao Yub0332a02020-02-14 17:44:12 +08001888 if (F2FS_OPTION(sbi).fs_mode == FS_MODE_ADAPTIVE)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001889 seq_puts(seq, "adaptive");
Chao Yub0332a02020-02-14 17:44:12 +08001890 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001891 seq_puts(seq, "lfs");
Chao Yu63189b72018-03-08 14:22:56 +08001892 seq_printf(seq, ",active_logs=%u", F2FS_OPTION(sbi).active_logs);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001893 if (test_opt(sbi, RESERVE_ROOT))
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -08001894 seq_printf(seq, ",reserve_root=%u,resuid=%u,resgid=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001895 F2FS_OPTION(sbi).root_reserved_blocks,
1896 from_kuid_munged(&init_user_ns,
1897 F2FS_OPTION(sbi).s_resuid),
1898 from_kgid_munged(&init_user_ns,
1899 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001900 if (F2FS_IO_SIZE_BITS(sbi))
Chengguang Xuc6b18672018-09-22 22:43:09 +08001901 seq_printf(seq, ",io_bits=%u",
1902 F2FS_OPTION(sbi).write_io_size_bits);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001903#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yud4945002018-08-08 17:36:41 +08001904 if (test_opt(sbi, FAULT_INJECTION)) {
Chao Yu44529f82017-06-12 09:44:24 +08001905 seq_printf(seq, ",fault_injection=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001906 F2FS_OPTION(sbi).fault_info.inject_rate);
Chao Yud4945002018-08-08 17:36:41 +08001907 seq_printf(seq, ",fault_type=%u",
1908 F2FS_OPTION(sbi).fault_info.inject_type);
1909 }
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001910#endif
Chao Yu0abd6752017-07-09 00:13:07 +08001911#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08001912 if (test_opt(sbi, QUOTA))
1913 seq_puts(seq, ",quota");
Chao Yu0abd6752017-07-09 00:13:07 +08001914 if (test_opt(sbi, USRQUOTA))
1915 seq_puts(seq, ",usrquota");
1916 if (test_opt(sbi, GRPQUOTA))
1917 seq_puts(seq, ",grpquota");
Chao Yu5c571322017-07-26 00:01:41 +08001918 if (test_opt(sbi, PRJQUOTA))
1919 seq_puts(seq, ",prjquota");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001920#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08001921 f2fs_show_quota_options(seq, sbi->sb);
Chao Yu63189b72018-03-08 14:22:56 +08001922 if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_USER)
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001923 seq_printf(seq, ",whint_mode=%s", "user-based");
Chao Yu63189b72018-03-08 14:22:56 +08001924 else if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_FS)
Hyunchul Leef2e703f2018-01-31 11:36:58 +09001925 seq_printf(seq, ",whint_mode=%s", "fs-based");
Eric Biggersed318a62020-05-12 16:32:50 -07001926
1927 fscrypt_show_test_dummy_encryption(seq, ',', sbi->sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001928
Satya Tangirala27aacd22020-07-02 01:56:06 +00001929 if (sbi->sb->s_flags & SB_INLINECRYPT)
1930 seq_puts(seq, ",inlinecrypt");
1931
Chao Yu63189b72018-03-08 14:22:56 +08001932 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_DEFAULT)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001933 seq_printf(seq, ",alloc_mode=%s", "default");
Chao Yu63189b72018-03-08 14:22:56 +08001934 else if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001935 seq_printf(seq, ",alloc_mode=%s", "reuse");
Junling Zheng93cf93f2018-03-07 12:07:49 +08001936
Daniel Rosenberg43549942018-08-20 19:21:43 -07001937 if (test_opt(sbi, DISABLE_CHECKPOINT))
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001938 seq_printf(seq, ",checkpoint=disable:%u",
1939 F2FS_OPTION(sbi).unusable_cap);
Daeho Jeong261eeb92021-01-19 09:00:42 +09001940 if (test_opt(sbi, MERGE_CHECKPOINT))
1941 seq_puts(seq, ",checkpoint_merge");
1942 else
1943 seq_puts(seq, ",nocheckpoint_merge");
Chao Yu63189b72018-03-08 14:22:56 +08001944 if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_POSIX)
Junling Zheng93cf93f2018-03-07 12:07:49 +08001945 seq_printf(seq, ",fsync_mode=%s", "posix");
Chao Yu63189b72018-03-08 14:22:56 +08001946 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT)
Junling Zheng93cf93f2018-03-07 12:07:49 +08001947 seq_printf(seq, ",fsync_mode=%s", "strict");
Sahitya Tummaladc132802018-07-02 11:37:40 +05301948 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_NOBARRIER)
1949 seq_printf(seq, ",fsync_mode=%s", "nobarrier");
Chao Yu4c8ff702019-11-01 18:07:14 +08001950
Chao Yu1f0b0672020-07-29 21:21:36 +08001951#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001952 f2fs_show_compress_options(seq, sbi->sb);
Chao Yu1f0b0672020-07-29 21:21:36 +08001953#endif
Chao Yu093749e2020-08-04 21:14:49 +08001954
1955 if (test_opt(sbi, ATGC))
1956 seq_puts(seq, ",atgc");
Chao Yu4f993262021-08-03 08:15:43 +08001957
1958 if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_BLOCK)
1959 seq_printf(seq, ",discard_unit=%s", "block");
1960 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SEGMENT)
1961 seq_printf(seq, ",discard_unit=%s", "segment");
1962 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SECTION)
1963 seq_printf(seq, ",discard_unit=%s", "section");
1964
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001965 return 0;
1966}
1967
Yunlei He498c5e92015-05-07 18:11:37 +08001968static void default_options(struct f2fs_sb_info *sbi)
1969{
1970 /* init some FS parameters */
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001971 if (f2fs_sb_has_readonly(sbi))
1972 F2FS_OPTION(sbi).active_logs = NR_CURSEG_RO_TYPE;
1973 else
1974 F2FS_OPTION(sbi).active_logs = NR_CURSEG_PERSIST_TYPE;
1975
Chao Yu63189b72018-03-08 14:22:56 +08001976 F2FS_OPTION(sbi).inline_xattr_size = DEFAULT_INLINE_XATTR_ADDRS;
1977 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
1978 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
1979 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Chao Yu0aa7e0f2018-06-06 23:55:02 +08001980 F2FS_OPTION(sbi).s_resuid = make_kuid(&init_user_ns, F2FS_DEF_RESUID);
1981 F2FS_OPTION(sbi).s_resgid = make_kgid(&init_user_ns, F2FS_DEF_RESGID);
Chao Yu91faa532020-03-10 20:50:05 +08001982 F2FS_OPTION(sbi).compress_algorithm = COMPRESS_LZ4;
Chao Yu4c8ff702019-11-01 18:07:14 +08001983 F2FS_OPTION(sbi).compress_log_size = MIN_COMPRESS_LOG_SIZE;
1984 F2FS_OPTION(sbi).compress_ext_cnt = 0;
Daeho Jeong602a16d2020-12-01 13:08:02 +09001985 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
Chao Yubbbc34f2020-02-14 17:44:13 +08001986 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Yunlei He498c5e92015-05-07 18:11:37 +08001987
Satya Tangirala27aacd22020-07-02 01:56:06 +00001988 sbi->sb->s_flags &= ~SB_INLINECRYPT;
1989
Chao Yu39133a52017-02-08 17:39:44 +08001990 set_opt(sbi, INLINE_XATTR);
Yunlei He498c5e92015-05-07 18:11:37 +08001991 set_opt(sbi, INLINE_DATA);
Chao Yu97c17942016-05-09 19:56:34 +08001992 set_opt(sbi, INLINE_DENTRY);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001993 set_opt(sbi, EXTENT_CACHE);
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04001994 set_opt(sbi, NOHEAP);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001995 clear_opt(sbi, DISABLE_CHECKPOINT);
Jaegeuk Kimb5d15192021-04-01 17:25:20 -07001996 set_opt(sbi, MERGE_CHECKPOINT);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001997 F2FS_OPTION(sbi).unusable_cap = 0;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001998 sbi->sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -07001999 set_opt(sbi, FLUSH_MERGE);
Chao Yu7d20c8a2018-09-04 03:52:17 +08002000 set_opt(sbi, DISCARD);
Chao Yu4f993262021-08-03 08:15:43 +08002001 if (f2fs_sb_has_blkzoned(sbi)) {
Chao Yub0332a02020-02-14 17:44:12 +08002002 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Chao Yu4f993262021-08-03 08:15:43 +08002003 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_SECTION;
2004 } else {
Chao Yub0332a02020-02-14 17:44:12 +08002005 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Chao Yu4f993262021-08-03 08:15:43 +08002006 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_BLOCK;
2007 }
Yunlei He498c5e92015-05-07 18:11:37 +08002008
2009#ifdef CONFIG_F2FS_FS_XATTR
2010 set_opt(sbi, XATTR_USER);
2011#endif
2012#ifdef CONFIG_F2FS_FS_POSIX_ACL
2013 set_opt(sbi, POSIX_ACL);
2014#endif
Chao Yu36dbd322016-09-26 19:45:05 +08002015
Chao Yud4945002018-08-08 17:36:41 +08002016 f2fs_build_fault_attr(sbi, 0, 0);
Yunlei He498c5e92015-05-07 18:11:37 +08002017}
2018
Jaegeuk Kimea676732017-10-06 09:14:28 -07002019#ifdef CONFIG_QUOTA
2020static int f2fs_enable_quotas(struct super_block *sb);
2021#endif
Daniel Rosenberg43549942018-08-20 19:21:43 -07002022
2023static int f2fs_disable_checkpoint(struct f2fs_sb_info *sbi)
2024{
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002025 unsigned int s_flags = sbi->sb->s_flags;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002026 struct cp_control cpc;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002027 int err = 0;
2028 int ret;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002029 block_t unusable;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002030
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002031 if (s_flags & SB_RDONLY) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002032 f2fs_err(sbi, "checkpoint=disable on readonly fs");
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002033 return -EINVAL;
2034 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002035 sbi->sb->s_flags |= SB_ACTIVE;
2036
Daniel Rosenberg43549942018-08-20 19:21:43 -07002037 f2fs_update_time(sbi, DISABLE_TIME);
2038
2039 while (!f2fs_time_over(sbi, DISABLE_TIME)) {
Chao Yufb24fea2020-01-14 19:36:50 +08002040 down_write(&sbi->gc_lock);
Chao Yu7dede8862021-02-20 17:35:40 +08002041 err = f2fs_gc(sbi, true, false, false, NULL_SEGNO);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002042 if (err == -ENODATA) {
2043 err = 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002044 break;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002045 }
Jaegeuk Kim8f31b462018-12-17 17:08:26 -08002046 if (err && err != -EAGAIN)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002047 break;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002048 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002049
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002050 ret = sync_filesystem(sbi->sb);
2051 if (ret || err) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08002052 err = ret ? ret : err;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002053 goto restore_flag;
2054 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002055
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002056 unusable = f2fs_get_unusable_blocks(sbi);
2057 if (f2fs_disable_cp_again(sbi, unusable)) {
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002058 err = -EAGAIN;
2059 goto restore_flag;
2060 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002061
Chao Yufb24fea2020-01-14 19:36:50 +08002062 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002063 cpc.reason = CP_PAUSE;
2064 set_sbi_flag(sbi, SBI_CP_DISABLED);
Chao Yu896285a2019-04-26 17:57:54 +08002065 err = f2fs_write_checkpoint(sbi, &cpc);
2066 if (err)
2067 goto out_unlock;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002068
Chao Yuc9c8ed52019-05-05 11:40:46 +08002069 spin_lock(&sbi->stat_lock);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002070 sbi->unusable_block_count = unusable;
Chao Yuc9c8ed52019-05-05 11:40:46 +08002071 spin_unlock(&sbi->stat_lock);
2072
Chao Yu896285a2019-04-26 17:57:54 +08002073out_unlock:
Chao Yufb24fea2020-01-14 19:36:50 +08002074 up_write(&sbi->gc_lock);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002075restore_flag:
Chao Yu7a88ddb2020-02-27 19:30:05 +08002076 sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002077 return err;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002078}
2079
2080static void f2fs_enable_checkpoint(struct f2fs_sb_info *sbi)
2081{
Jaegeuk Kimb0ff4fe2021-01-26 17:00:42 -08002082 /* we should flush all the data to keep data consistency */
2083 sync_inodes_sb(sbi->sb);
2084
Chao Yufb24fea2020-01-14 19:36:50 +08002085 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002086 f2fs_dirty_to_prefree(sbi);
2087
2088 clear_sbi_flag(sbi, SBI_CP_DISABLED);
2089 set_sbi_flag(sbi, SBI_IS_DIRTY);
Chao Yufb24fea2020-01-14 19:36:50 +08002090 up_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002091
2092 f2fs_sync_fs(sbi->sb, 1);
2093}
2094
Namjae Jeon696c0182013-06-16 09:48:48 +09002095static int f2fs_remount(struct super_block *sb, int *flags, char *data)
2096{
2097 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2098 struct f2fs_mount_info org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002099 unsigned long old_sb_flags;
Chao Yu63189b72018-03-08 14:22:56 +08002100 int err;
Chao Yu3fd97352021-03-17 17:56:04 +08002101 bool need_restart_gc = false, need_stop_gc = false;
2102 bool need_restart_ckpt = false, need_stop_ckpt = false;
2103 bool need_restart_flush = false, need_stop_flush = false;
Chao Yu9cd81ce2015-09-18 16:55:26 +08002104 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
Chao Yu277afbd2021-07-29 09:22:17 +08002105 bool enable_checkpoint = !test_opt(sbi, DISABLE_CHECKPOINT);
Chao Yu1f78adf2019-07-12 16:57:00 +08002106 bool no_io_align = !F2FS_IO_ALIGNED(sbi);
Chao Yu093749e2020-08-04 21:14:49 +08002107 bool no_atgc = !test_opt(sbi, ATGC);
Chao Yu6ce19af2021-05-20 19:51:50 +08002108 bool no_compress_cache = !test_opt(sbi, COMPRESS_CACHE);
Chao Yu4f993262021-08-03 08:15:43 +08002109 bool block_unit_discard = f2fs_block_unit_discard(sbi);
Chao Yu4b2414d2017-08-08 10:54:31 +08002110#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08002111 int i, j;
2112#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002113
2114 /*
2115 * Save the old mount options in case we
2116 * need to restore them.
2117 */
2118 org_mount_opt = sbi->mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002119 old_sb_flags = sb->s_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002120
Chao Yu4b2414d2017-08-08 10:54:31 +08002121#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002122 org_mount_opt.s_jquota_fmt = F2FS_OPTION(sbi).s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002123 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002124 if (F2FS_OPTION(sbi).s_qf_names[i]) {
2125 org_mount_opt.s_qf_names[i] =
2126 kstrdup(F2FS_OPTION(sbi).s_qf_names[i],
2127 GFP_KERNEL);
2128 if (!org_mount_opt.s_qf_names[i]) {
Chao Yu4b2414d2017-08-08 10:54:31 +08002129 for (j = 0; j < i; j++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002130 kfree(org_mount_opt.s_qf_names[j]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002131 return -ENOMEM;
2132 }
2133 } else {
Chao Yu63189b72018-03-08 14:22:56 +08002134 org_mount_opt.s_qf_names[i] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +08002135 }
2136 }
2137#endif
2138
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002139 /* recover superblocks we couldn't write due to previous RO mount */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002140 if (!(*flags & SB_RDONLY) && is_sbi_flag_set(sbi, SBI_NEED_SB_WRITE)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002141 err = f2fs_commit_super(sbi, false);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002142 f2fs_info(sbi, "Try to recover all the superblocks, ret: %d",
2143 err);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002144 if (!err)
2145 clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
2146 }
2147
Yunlei He498c5e92015-05-07 18:11:37 +08002148 default_options(sbi);
Chao Yu26666c82014-09-15 18:04:44 +08002149
Namjae Jeon696c0182013-06-16 09:48:48 +09002150 /* parse mount options */
Eric Biggersed318a62020-05-12 16:32:50 -07002151 err = parse_options(sb, data, true);
Namjae Jeon696c0182013-06-16 09:48:48 +09002152 if (err)
2153 goto restore_opts;
2154
2155 /*
2156 * Previous and new state of filesystem is RO,
Gu Zheng876dc592014-04-11 17:50:00 +08002157 * so skip checking GC and FLUSH_MERGE conditions.
Namjae Jeon696c0182013-06-16 09:48:48 +09002158 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002159 if (f2fs_readonly(sb) && (*flags & SB_RDONLY))
Namjae Jeon696c0182013-06-16 09:48:48 +09002160 goto skip;
2161
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07002162 if (f2fs_sb_has_readonly(sbi) && !(*flags & SB_RDONLY)) {
2163 err = -EROFS;
2164 goto restore_opts;
2165 }
2166
Jaegeuk Kimea676732017-10-06 09:14:28 -07002167#ifdef CONFIG_QUOTA
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002168 if (!f2fs_readonly(sb) && (*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002169 err = dquot_suspend(sb, -1);
2170 if (err < 0)
2171 goto restore_opts;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002172 } else if (f2fs_readonly(sb) && !(*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002173 /* dquot_resume needs RW */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002174 sb->s_flags &= ~SB_RDONLY;
Jaegeuk Kimea676732017-10-06 09:14:28 -07002175 if (sb_any_quota_suspended(sb)) {
2176 dquot_resume(sb, -1);
Chao Yu7beb01f2018-10-24 18:34:26 +08002177 } else if (f2fs_sb_has_quota_ino(sbi)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002178 err = f2fs_enable_quotas(sb);
2179 if (err)
2180 goto restore_opts;
2181 }
Chao Yu0abd6752017-07-09 00:13:07 +08002182 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002183#endif
Chao Yu093749e2020-08-04 21:14:49 +08002184 /* disallow enable atgc dynamically */
2185 if (no_atgc == !!test_opt(sbi, ATGC)) {
2186 err = -EINVAL;
2187 f2fs_warn(sbi, "switch atgc option is not allowed");
2188 goto restore_opts;
2189 }
2190
Chao Yu9cd81ce2015-09-18 16:55:26 +08002191 /* disallow enable/disable extent_cache dynamically */
2192 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
2193 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002194 f2fs_warn(sbi, "switch extent_cache option is not allowed");
Chao Yu9cd81ce2015-09-18 16:55:26 +08002195 goto restore_opts;
2196 }
2197
Chao Yu1f78adf2019-07-12 16:57:00 +08002198 if (no_io_align == !!F2FS_IO_ALIGNED(sbi)) {
2199 err = -EINVAL;
2200 f2fs_warn(sbi, "switch io_bits option is not allowed");
2201 goto restore_opts;
2202 }
2203
Chao Yu6ce19af2021-05-20 19:51:50 +08002204 if (no_compress_cache == !!test_opt(sbi, COMPRESS_CACHE)) {
2205 err = -EINVAL;
2206 f2fs_warn(sbi, "switch compress_cache option is not allowed");
2207 goto restore_opts;
2208 }
2209
Chao Yu4f993262021-08-03 08:15:43 +08002210 if (block_unit_discard != f2fs_block_unit_discard(sbi)) {
2211 err = -EINVAL;
2212 f2fs_warn(sbi, "switch discard_unit option is not allowed");
2213 goto restore_opts;
2214 }
2215
Daniel Rosenberg43549942018-08-20 19:21:43 -07002216 if ((*flags & SB_RDONLY) && test_opt(sbi, DISABLE_CHECKPOINT)) {
2217 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002218 f2fs_warn(sbi, "disabling checkpoint not compatible with read-only");
Daniel Rosenberg43549942018-08-20 19:21:43 -07002219 goto restore_opts;
2220 }
2221
Namjae Jeon696c0182013-06-16 09:48:48 +09002222 /*
2223 * We stop the GC thread if FS is mounted as RO
2224 * or if background_gc = off is passed in mount
2225 * option. Also sync the filesystem.
2226 */
Chao Yubbbc34f2020-02-14 17:44:13 +08002227 if ((*flags & SB_RDONLY) ||
Chao Yu5911d2d2021-03-27 17:57:06 +08002228 (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF &&
2229 !test_opt(sbi, GC_MERGE))) {
Namjae Jeon696c0182013-06-16 09:48:48 +09002230 if (sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002231 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002232 need_restart_gc = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002233 }
Chao Yuaba291b2014-11-18 11:17:20 +08002234 } else if (!sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002235 err = f2fs_start_gc_thread(sbi);
Namjae Jeon696c0182013-06-16 09:48:48 +09002236 if (err)
2237 goto restore_opts;
Gu Zheng876dc592014-04-11 17:50:00 +08002238 need_stop_gc = true;
2239 }
2240
Chao Yu63189b72018-03-08 14:22:56 +08002241 if (*flags & SB_RDONLY ||
2242 F2FS_OPTION(sbi).whint_mode != org_mount_opt.whint_mode) {
Jaegeuk Kimfaa0e552016-03-24 10:29:39 -07002243 sync_inodes_sb(sb);
2244
2245 set_sbi_flag(sbi, SBI_IS_DIRTY);
2246 set_sbi_flag(sbi, SBI_IS_CLOSE);
2247 f2fs_sync_fs(sb, 1);
2248 clear_sbi_flag(sbi, SBI_IS_CLOSE);
2249 }
2250
Chao Yu3f7070b2021-03-17 17:56:03 +08002251 if ((*flags & SB_RDONLY) || test_opt(sbi, DISABLE_CHECKPOINT) ||
2252 !test_opt(sbi, MERGE_CHECKPOINT)) {
2253 f2fs_stop_ckpt_thread(sbi);
Chao Yu3fd97352021-03-17 17:56:04 +08002254 need_restart_ckpt = true;
Chao Yu3f7070b2021-03-17 17:56:03 +08002255 } else {
Daeho Jeong261eeb92021-01-19 09:00:42 +09002256 err = f2fs_start_ckpt_thread(sbi);
2257 if (err) {
2258 f2fs_err(sbi,
2259 "Failed to start F2FS issue_checkpoint_thread (%d)",
2260 err);
2261 goto restore_gc;
2262 }
Chao Yu3fd97352021-03-17 17:56:04 +08002263 need_stop_ckpt = true;
Daeho Jeong261eeb92021-01-19 09:00:42 +09002264 }
2265
Gu Zheng876dc592014-04-11 17:50:00 +08002266 /*
2267 * We stop issue flush thread if FS is mounted as RO
2268 * or if flush_merge is not passed in mount option.
2269 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002270 if ((*flags & SB_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002271 clear_opt(sbi, FLUSH_MERGE);
Chao Yu4d57b862018-05-30 00:20:41 +08002272 f2fs_destroy_flush_cmd_control(sbi, false);
Chao Yu3fd97352021-03-17 17:56:04 +08002273 need_restart_flush = true;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002274 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08002275 err = f2fs_create_flush_cmd_control(sbi);
Gu Zheng2163d192014-04-27 14:21:33 +08002276 if (err)
Chao Yu3fd97352021-03-17 17:56:04 +08002277 goto restore_ckpt;
2278 need_stop_flush = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002279 }
Chao Yu3fd97352021-03-17 17:56:04 +08002280
Chao Yu277afbd2021-07-29 09:22:17 +08002281 if (enable_checkpoint == !!test_opt(sbi, DISABLE_CHECKPOINT)) {
Chao Yu3fd97352021-03-17 17:56:04 +08002282 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
2283 err = f2fs_disable_checkpoint(sbi);
2284 if (err)
2285 goto restore_flush;
2286 } else {
2287 f2fs_enable_checkpoint(sbi);
2288 }
2289 }
2290
Namjae Jeon696c0182013-06-16 09:48:48 +09002291skip:
Chao Yu4b2414d2017-08-08 10:54:31 +08002292#ifdef CONFIG_QUOTA
2293 /* Release old quota file names */
2294 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002295 kfree(org_mount_opt.s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002296#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002297 /* Update the POSIXACL Flag */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002298 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
2299 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002300
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08002301 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07002302 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim095680f2018-09-28 00:24:39 -07002303 *flags = (*flags & ~SB_LAZYTIME) | (sb->s_flags & SB_LAZYTIME);
Namjae Jeon696c0182013-06-16 09:48:48 +09002304 return 0;
Chao Yu3fd97352021-03-17 17:56:04 +08002305restore_flush:
2306 if (need_restart_flush) {
2307 if (f2fs_create_flush_cmd_control(sbi))
2308 f2fs_warn(sbi, "background flush thread has stopped");
2309 } else if (need_stop_flush) {
2310 clear_opt(sbi, FLUSH_MERGE);
2311 f2fs_destroy_flush_cmd_control(sbi, false);
2312 }
2313restore_ckpt:
2314 if (need_restart_ckpt) {
2315 if (f2fs_start_ckpt_thread(sbi))
2316 f2fs_warn(sbi, "background ckpt thread has stopped");
2317 } else if (need_stop_ckpt) {
2318 f2fs_stop_ckpt_thread(sbi);
2319 }
Gu Zheng876dc592014-04-11 17:50:00 +08002320restore_gc:
2321 if (need_restart_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002322 if (f2fs_start_gc_thread(sbi))
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002323 f2fs_warn(sbi, "background gc thread has stopped");
Gu Zheng876dc592014-04-11 17:50:00 +08002324 } else if (need_stop_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002325 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002326 }
Namjae Jeon696c0182013-06-16 09:48:48 +09002327restore_opts:
Chao Yu4b2414d2017-08-08 10:54:31 +08002328#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002329 F2FS_OPTION(sbi).s_jquota_fmt = org_mount_opt.s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002330 for (i = 0; i < MAXQUOTAS; i++) {
Wang Xiaojunba87a452020-06-17 20:30:12 +08002331 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu63189b72018-03-08 14:22:56 +08002332 F2FS_OPTION(sbi).s_qf_names[i] = org_mount_opt.s_qf_names[i];
Chao Yu4b2414d2017-08-08 10:54:31 +08002333 }
2334#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002335 sbi->mount_opt = org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002336 sb->s_flags = old_sb_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002337 return err;
2338}
2339
Chao Yu0abd6752017-07-09 00:13:07 +08002340#ifdef CONFIG_QUOTA
2341/* Read data from quotafile */
2342static ssize_t f2fs_quota_read(struct super_block *sb, int type, char *data,
2343 size_t len, loff_t off)
2344{
2345 struct inode *inode = sb_dqopt(sb)->files[type];
2346 struct address_space *mapping = inode->i_mapping;
2347 block_t blkidx = F2FS_BYTES_TO_BLK(off);
2348 int offset = off & (sb->s_blocksize - 1);
2349 int tocopy;
2350 size_t toread;
2351 loff_t i_size = i_size_read(inode);
2352 struct page *page;
2353 char *kaddr;
2354
2355 if (off > i_size)
2356 return 0;
2357
2358 if (off + len > i_size)
2359 len = i_size - off;
2360 toread = len;
2361 while (toread > 0) {
2362 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread);
2363repeat:
Ritesh Harjani02117b82018-03-16 18:53:53 +05302364 page = read_cache_page_gfp(mapping, blkidx, GFP_NOFS);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002365 if (IS_ERR(page)) {
2366 if (PTR_ERR(page) == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002367 congestion_wait(BLK_RW_ASYNC,
2368 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002369 goto repeat;
2370 }
Chao Yuaf033b22018-09-20 20:05:00 +08002371 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002372 return PTR_ERR(page);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002373 }
Chao Yu0abd6752017-07-09 00:13:07 +08002374
2375 lock_page(page);
2376
2377 if (unlikely(page->mapping != mapping)) {
2378 f2fs_put_page(page, 1);
2379 goto repeat;
2380 }
2381 if (unlikely(!PageUptodate(page))) {
2382 f2fs_put_page(page, 1);
Chao Yuaf033b22018-09-20 20:05:00 +08002383 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002384 return -EIO;
2385 }
2386
2387 kaddr = kmap_atomic(page);
2388 memcpy(data, kaddr + offset, tocopy);
2389 kunmap_atomic(kaddr);
2390 f2fs_put_page(page, 1);
2391
2392 offset = 0;
2393 toread -= tocopy;
2394 data += tocopy;
2395 blkidx++;
2396 }
2397 return len;
2398}
2399
2400/* Write to quotafile */
2401static ssize_t f2fs_quota_write(struct super_block *sb, int type,
2402 const char *data, size_t len, loff_t off)
2403{
2404 struct inode *inode = sb_dqopt(sb)->files[type];
2405 struct address_space *mapping = inode->i_mapping;
2406 const struct address_space_operations *a_ops = mapping->a_ops;
2407 int offset = off & (sb->s_blocksize - 1);
2408 size_t towrite = len;
2409 struct page *page;
Chao Yu62f63ee2020-03-19 19:58:00 +08002410 void *fsdata = NULL;
Chao Yu0abd6752017-07-09 00:13:07 +08002411 char *kaddr;
2412 int err = 0;
2413 int tocopy;
2414
2415 while (towrite > 0) {
2416 tocopy = min_t(unsigned long, sb->s_blocksize - offset,
2417 towrite);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002418retry:
Chao Yu0abd6752017-07-09 00:13:07 +08002419 err = a_ops->write_begin(NULL, mapping, off, tocopy, 0,
Chao Yu62f63ee2020-03-19 19:58:00 +08002420 &page, &fsdata);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002421 if (unlikely(err)) {
2422 if (err == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002423 congestion_wait(BLK_RW_ASYNC,
2424 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002425 goto retry;
2426 }
Chao Yuaf033b22018-09-20 20:05:00 +08002427 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002428 break;
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002429 }
Chao Yu0abd6752017-07-09 00:13:07 +08002430
2431 kaddr = kmap_atomic(page);
2432 memcpy(kaddr + offset, data, tocopy);
2433 kunmap_atomic(kaddr);
2434 flush_dcache_page(page);
2435
2436 a_ops->write_end(NULL, mapping, off, tocopy, tocopy,
Chao Yu62f63ee2020-03-19 19:58:00 +08002437 page, fsdata);
Chao Yu0abd6752017-07-09 00:13:07 +08002438 offset = 0;
2439 towrite -= tocopy;
2440 off += tocopy;
2441 data += tocopy;
2442 cond_resched();
2443 }
2444
2445 if (len == towrite)
Jaegeuk Kim6e5b5d42017-10-19 12:07:11 -07002446 return err;
Chao Yu0abd6752017-07-09 00:13:07 +08002447 inode->i_mtime = inode->i_ctime = current_time(inode);
2448 f2fs_mark_inode_dirty_sync(inode, false);
2449 return len - towrite;
2450}
2451
2452static struct dquot **f2fs_get_dquots(struct inode *inode)
2453{
2454 return F2FS_I(inode)->i_dquot;
2455}
2456
2457static qsize_t *f2fs_get_reserved_space(struct inode *inode)
2458{
2459 return &F2FS_I(inode)->i_reserved_quota;
2460}
2461
Chao Yu4b2414d2017-08-08 10:54:31 +08002462static int f2fs_quota_on_mount(struct f2fs_sb_info *sbi, int type)
2463{
Chao Yuaf033b22018-09-20 20:05:00 +08002464 if (is_set_ckpt_flags(sbi, CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002465 f2fs_err(sbi, "quota sysfile may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002466 return 0;
2467 }
2468
Chao Yu63189b72018-03-08 14:22:56 +08002469 return dquot_quota_on_mount(sbi->sb, F2FS_OPTION(sbi).s_qf_names[type],
2470 F2FS_OPTION(sbi).s_jquota_fmt, type);
Chao Yu4b2414d2017-08-08 10:54:31 +08002471}
2472
Jaegeuk Kimea676732017-10-06 09:14:28 -07002473int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly)
Chao Yu4b2414d2017-08-08 10:54:31 +08002474{
Jaegeuk Kimea676732017-10-06 09:14:28 -07002475 int enabled = 0;
2476 int i, err;
2477
Chao Yu7beb01f2018-10-24 18:34:26 +08002478 if (f2fs_sb_has_quota_ino(sbi) && rdonly) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002479 err = f2fs_enable_quotas(sbi->sb);
2480 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002481 f2fs_err(sbi, "Cannot turn on quota_ino: %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002482 return 0;
2483 }
2484 return 1;
2485 }
Chao Yu4b2414d2017-08-08 10:54:31 +08002486
2487 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002488 if (F2FS_OPTION(sbi).s_qf_names[i]) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002489 err = f2fs_quota_on_mount(sbi, i);
2490 if (!err) {
2491 enabled = 1;
2492 continue;
2493 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002494 f2fs_err(sbi, "Cannot turn on quotas: %d on %d",
2495 err, i);
Chao Yu4b2414d2017-08-08 10:54:31 +08002496 }
2497 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002498 return enabled;
2499}
2500
2501static int f2fs_quota_enable(struct super_block *sb, int type, int format_id,
2502 unsigned int flags)
2503{
2504 struct inode *qf_inode;
2505 unsigned long qf_inum;
2506 int err;
2507
Chao Yu7beb01f2018-10-24 18:34:26 +08002508 BUG_ON(!f2fs_sb_has_quota_ino(F2FS_SB(sb)));
Jaegeuk Kimea676732017-10-06 09:14:28 -07002509
2510 qf_inum = f2fs_qf_ino(sb, type);
2511 if (!qf_inum)
2512 return -EPERM;
2513
2514 qf_inode = f2fs_iget(sb, qf_inum);
2515 if (IS_ERR(qf_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002516 f2fs_err(F2FS_SB(sb), "Bad quota inode %u:%lu", type, qf_inum);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002517 return PTR_ERR(qf_inode);
2518 }
2519
2520 /* Don't account quota for quota files to avoid recursion */
2521 qf_inode->i_flags |= S_NOQUOTA;
Jan Kara7212b952019-11-01 18:55:38 +01002522 err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002523 iput(qf_inode);
2524 return err;
2525}
2526
2527static int f2fs_enable_quotas(struct super_block *sb)
2528{
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002529 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002530 int type, err = 0;
2531 unsigned long qf_inum;
2532 bool quota_mopt[MAXQUOTAS] = {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002533 test_opt(sbi, USRQUOTA),
2534 test_opt(sbi, GRPQUOTA),
2535 test_opt(sbi, PRJQUOTA),
Jaegeuk Kimea676732017-10-06 09:14:28 -07002536 };
2537
Chao Yuaf033b22018-09-20 20:05:00 +08002538 if (is_set_ckpt_flags(F2FS_SB(sb), CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002539 f2fs_err(sbi, "quota file may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002540 return 0;
2541 }
2542
2543 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE;
2544
Jaegeuk Kimea676732017-10-06 09:14:28 -07002545 for (type = 0; type < MAXQUOTAS; type++) {
2546 qf_inum = f2fs_qf_ino(sb, type);
2547 if (qf_inum) {
2548 err = f2fs_quota_enable(sb, type, QFMT_VFS_V1,
2549 DQUOT_USAGE_ENABLED |
2550 (quota_mopt[type] ? DQUOT_LIMITS_ENABLED : 0));
2551 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002552 f2fs_err(sbi, "Failed to enable quota tracking (type=%d, err=%d). Please run fsck to fix.",
2553 type, err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002554 for (type--; type >= 0; type--)
2555 dquot_quota_off(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002556 set_sbi_flag(F2FS_SB(sb),
2557 SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002558 return err;
2559 }
2560 }
2561 }
2562 return 0;
Chao Yu4b2414d2017-08-08 10:54:31 +08002563}
2564
Chao Yu9de71ed2021-07-19 16:46:47 +08002565static int f2fs_quota_sync_file(struct f2fs_sb_info *sbi, int type)
2566{
2567 struct quota_info *dqopt = sb_dqopt(sbi->sb);
2568 struct address_space *mapping = dqopt->files[type]->i_mapping;
2569 int ret = 0;
2570
2571 ret = dquot_writeback_dquots(sbi->sb, type);
2572 if (ret)
2573 goto out;
2574
2575 ret = filemap_fdatawrite(mapping);
2576 if (ret)
2577 goto out;
2578
2579 /* if we are using journalled quota */
2580 if (is_journalled_quota(sbi))
2581 goto out;
2582
2583 ret = filemap_fdatawait(mapping);
2584
2585 truncate_inode_pages(&dqopt->files[type]->i_data, 0);
2586out:
2587 if (ret)
2588 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2589 return ret;
2590}
2591
Chao Yuaf033b22018-09-20 20:05:00 +08002592int f2fs_quota_sync(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002593{
Chao Yuaf033b22018-09-20 20:05:00 +08002594 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002595 struct quota_info *dqopt = sb_dqopt(sb);
2596 int cnt;
2597 int ret;
2598
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002599 /*
Chao Yu0abd6752017-07-09 00:13:07 +08002600 * Now when everything is written we can discard the pagecache so
2601 * that userspace sees the changes.
2602 */
2603 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
Chao Yuaf033b22018-09-20 20:05:00 +08002604
Chao Yu0abd6752017-07-09 00:13:07 +08002605 if (type != -1 && cnt != type)
2606 continue;
Chao Yu0abd6752017-07-09 00:13:07 +08002607
Chao Yu9de71ed2021-07-19 16:46:47 +08002608 if (!sb_has_quota_active(sb, type))
2609 return 0;
Chao Yu0abd6752017-07-09 00:13:07 +08002610
2611 inode_lock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002612
2613 /*
2614 * do_quotactl
2615 * f2fs_quota_sync
2616 * down_read(quota_sem)
2617 * dquot_writeback_dquots()
2618 * f2fs_dquot_commit
2619 * block_operation
2620 * down_read(quota_sem)
2621 */
2622 f2fs_lock_op(sbi);
2623 down_read(&sbi->quota_sem);
2624
2625 ret = f2fs_quota_sync_file(sbi, cnt);
2626
2627 up_read(&sbi->quota_sem);
2628 f2fs_unlock_op(sbi);
2629
Chao Yu0abd6752017-07-09 00:13:07 +08002630 inode_unlock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002631
2632 if (ret)
2633 break;
Chao Yu0abd6752017-07-09 00:13:07 +08002634 }
Chao Yuaf033b22018-09-20 20:05:00 +08002635 return ret;
Chao Yu0abd6752017-07-09 00:13:07 +08002636}
2637
2638static int f2fs_quota_on(struct super_block *sb, int type, int format_id,
2639 const struct path *path)
2640{
2641 struct inode *inode;
2642 int err;
2643
Chao Yufe973b02019-07-25 17:33:37 +08002644 /* if quota sysfile exists, deny enabling quota with specific file */
2645 if (f2fs_sb_has_quota_ino(F2FS_SB(sb))) {
2646 f2fs_err(F2FS_SB(sb), "quota sysfile already exists");
2647 return -EBUSY;
2648 }
2649
Chao Yu9a20d392017-08-07 16:37:59 +08002650 err = f2fs_quota_sync(sb, type);
Chao Yu0abd6752017-07-09 00:13:07 +08002651 if (err)
2652 return err;
2653
2654 err = dquot_quota_on(sb, type, format_id, path);
2655 if (err)
2656 return err;
2657
2658 inode = d_inode(path->dentry);
2659
2660 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002661 F2FS_I(inode)->i_flags |= F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL;
Chao Yu9149a5e2018-10-07 19:06:15 +08002662 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002663 inode_unlock(inode);
2664 f2fs_mark_inode_dirty_sync(inode, false);
2665
2666 return 0;
2667}
2668
Chao Yufe973b02019-07-25 17:33:37 +08002669static int __f2fs_quota_off(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002670{
2671 struct inode *inode = sb_dqopt(sb)->files[type];
2672 int err;
2673
2674 if (!inode || !igrab(inode))
2675 return dquot_quota_off(sb, type);
2676
Yunlei Hecda9cc52018-06-26 13:12:43 +08002677 err = f2fs_quota_sync(sb, type);
2678 if (err)
2679 goto out_put;
Chao Yu0abd6752017-07-09 00:13:07 +08002680
2681 err = dquot_quota_off(sb, type);
Chao Yu7beb01f2018-10-24 18:34:26 +08002682 if (err || f2fs_sb_has_quota_ino(F2FS_SB(sb)))
Chao Yu0abd6752017-07-09 00:13:07 +08002683 goto out_put;
2684
2685 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002686 F2FS_I(inode)->i_flags &= ~(F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL);
Chao Yu9149a5e2018-10-07 19:06:15 +08002687 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002688 inode_unlock(inode);
2689 f2fs_mark_inode_dirty_sync(inode, false);
2690out_put:
2691 iput(inode);
2692 return err;
2693}
2694
Chao Yufe973b02019-07-25 17:33:37 +08002695static int f2fs_quota_off(struct super_block *sb, int type)
2696{
2697 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2698 int err;
2699
2700 err = __f2fs_quota_off(sb, type);
2701
2702 /*
2703 * quotactl can shutdown journalled quota, result in inconsistence
2704 * between quota record and fs data by following updates, tag the
2705 * flag to let fsck be aware of it.
2706 */
2707 if (is_journalled_quota(sbi))
2708 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2709 return err;
2710}
2711
Chao Yu4b2414d2017-08-08 10:54:31 +08002712void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002713{
2714 int type;
Yunlei Hecda9cc52018-06-26 13:12:43 +08002715 int err;
Chao Yu0abd6752017-07-09 00:13:07 +08002716
Yunlei Hecda9cc52018-06-26 13:12:43 +08002717 for (type = 0; type < MAXQUOTAS; type++) {
Chao Yufe973b02019-07-25 17:33:37 +08002718 err = __f2fs_quota_off(sb, type);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002719 if (err) {
2720 int ret = dquot_quota_off(sb, type);
2721
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002722 f2fs_err(F2FS_SB(sb), "Fail to turn off disk quota (type: %d, err: %d, ret:%d), Please run fsck to fix it.",
2723 type, err, ret);
Chao Yuaf033b22018-09-20 20:05:00 +08002724 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002725 }
2726 }
Jaegeuk Kim0e0667b2019-01-27 17:59:53 -08002727 /*
2728 * In case of checkpoint=disable, we must flush quota blocks.
2729 * This can cause NULL exception for node_inode in end_io, since
2730 * put_super already dropped it.
2731 */
2732 sync_filesystem(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002733}
2734
Sheng Yong26b5a072018-10-12 18:49:26 +08002735static void f2fs_truncate_quota_inode_pages(struct super_block *sb)
2736{
2737 struct quota_info *dqopt = sb_dqopt(sb);
2738 int type;
2739
2740 for (type = 0; type < MAXQUOTAS; type++) {
2741 if (!dqopt->files[type])
2742 continue;
2743 f2fs_inode_synced(dqopt->files[type]);
2744 }
2745}
2746
Chao Yuaf033b22018-09-20 20:05:00 +08002747static int f2fs_dquot_commit(struct dquot *dquot)
2748{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002749 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002750 int ret;
2751
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002752 down_read_nested(&sbi->quota_sem, SINGLE_DEPTH_NESTING);
Chao Yuaf033b22018-09-20 20:05:00 +08002753 ret = dquot_commit(dquot);
2754 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002755 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2756 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002757 return ret;
2758}
2759
2760static int f2fs_dquot_acquire(struct dquot *dquot)
2761{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002762 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002763 int ret;
2764
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002765 down_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002766 ret = dquot_acquire(dquot);
2767 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002768 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2769 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002770 return ret;
2771}
2772
2773static int f2fs_dquot_release(struct dquot *dquot)
2774{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002775 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002776 int ret = dquot_release(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002777
Chao Yuaf033b22018-09-20 20:05:00 +08002778 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002779 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002780 return ret;
2781}
2782
2783static int f2fs_dquot_mark_dquot_dirty(struct dquot *dquot)
2784{
2785 struct super_block *sb = dquot->dq_sb;
2786 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002787 int ret = dquot_mark_dquot_dirty(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002788
2789 /* if we are using journalled quota */
2790 if (is_journalled_quota(sbi))
2791 set_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
2792
2793 return ret;
2794}
2795
2796static int f2fs_dquot_commit_info(struct super_block *sb, int type)
2797{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002798 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002799 int ret = dquot_commit_info(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002800
Chao Yuaf033b22018-09-20 20:05:00 +08002801 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002802 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002803 return ret;
2804}
Sheng Yong26b5a072018-10-12 18:49:26 +08002805
Wei Yongjun94b1e102018-01-05 09:41:20 +00002806static int f2fs_get_projid(struct inode *inode, kprojid_t *projid)
Chao Yu5c571322017-07-26 00:01:41 +08002807{
2808 *projid = F2FS_I(inode)->i_projid;
2809 return 0;
2810}
2811
Chao Yu0abd6752017-07-09 00:13:07 +08002812static const struct dquot_operations f2fs_quota_operations = {
2813 .get_reserved_space = f2fs_get_reserved_space,
Chao Yuaf033b22018-09-20 20:05:00 +08002814 .write_dquot = f2fs_dquot_commit,
2815 .acquire_dquot = f2fs_dquot_acquire,
2816 .release_dquot = f2fs_dquot_release,
2817 .mark_dirty = f2fs_dquot_mark_dquot_dirty,
2818 .write_info = f2fs_dquot_commit_info,
Chao Yu0abd6752017-07-09 00:13:07 +08002819 .alloc_dquot = dquot_alloc,
2820 .destroy_dquot = dquot_destroy,
Chao Yu5c571322017-07-26 00:01:41 +08002821 .get_projid = f2fs_get_projid,
Chao Yu0abd6752017-07-09 00:13:07 +08002822 .get_next_id = dquot_get_next_id,
2823};
2824
2825static const struct quotactl_ops f2fs_quotactl_ops = {
2826 .quota_on = f2fs_quota_on,
2827 .quota_off = f2fs_quota_off,
2828 .quota_sync = f2fs_quota_sync,
2829 .get_state = dquot_get_state,
2830 .set_info = dquot_set_dqinfo,
2831 .get_dqblk = dquot_get_dqblk,
2832 .set_dqblk = dquot_set_dqblk,
2833 .get_nextdqblk = dquot_get_next_dqblk,
2834};
2835#else
Chao Yuaf033b22018-09-20 20:05:00 +08002836int f2fs_quota_sync(struct super_block *sb, int type)
2837{
2838 return 0;
2839}
2840
Chao Yu4b2414d2017-08-08 10:54:31 +08002841void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002842{
2843}
2844#endif
2845
Arvind Yadavf62fc9f2017-08-31 15:06:24 +05302846static const struct super_operations f2fs_sops = {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002847 .alloc_inode = f2fs_alloc_inode,
Al Virod01718a2019-04-15 19:29:14 -04002848 .free_inode = f2fs_free_inode,
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09002849 .drop_inode = f2fs_drop_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002850 .write_inode = f2fs_write_inode,
Jaegeuk Kimb3783872013-06-10 09:17:01 +09002851 .dirty_inode = f2fs_dirty_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002852 .show_options = f2fs_show_options,
Chao Yu0abd6752017-07-09 00:13:07 +08002853#ifdef CONFIG_QUOTA
2854 .quota_read = f2fs_quota_read,
2855 .quota_write = f2fs_quota_write,
2856 .get_dquots = f2fs_get_dquots,
2857#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002858 .evict_inode = f2fs_evict_inode,
2859 .put_super = f2fs_put_super,
2860 .sync_fs = f2fs_sync_fs,
Changman Leed6212a52013-01-29 18:30:07 +09002861 .freeze_fs = f2fs_freeze,
2862 .unfreeze_fs = f2fs_unfreeze,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002863 .statfs = f2fs_statfs,
Namjae Jeon696c0182013-06-16 09:48:48 +09002864 .remount_fs = f2fs_remount,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002865};
2866
Chandan Rajendra643fa962018-12-12 15:20:12 +05302867#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002868static int f2fs_get_context(struct inode *inode, void *ctx, size_t len)
2869{
2870 return f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2871 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2872 ctx, len, NULL);
2873}
2874
2875static int f2fs_set_context(struct inode *inode, const void *ctx, size_t len,
2876 void *fs_data)
2877{
Sheng Yongb7c409d2018-03-15 18:51:41 +08002878 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2879
2880 /*
2881 * Encrypting the root directory is not allowed because fsck
2882 * expects lost+found directory to exist and remain unencrypted
2883 * if LOST_FOUND feature is enabled.
2884 *
2885 */
Chao Yu7beb01f2018-10-24 18:34:26 +08002886 if (f2fs_sb_has_lost_found(sbi) &&
Sheng Yongb7c409d2018-03-15 18:51:41 +08002887 inode->i_ino == F2FS_ROOT_INO(sbi))
2888 return -EPERM;
2889
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002890 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2891 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2892 ctx, len, fs_data, XATTR_CREATE);
2893}
2894
Eric Biggersac4acb12020-09-16 21:11:35 -07002895static const union fscrypt_policy *f2fs_get_dummy_policy(struct super_block *sb)
Sheng Yongff62af22018-03-15 18:51:42 +08002896{
Eric Biggersac4acb12020-09-16 21:11:35 -07002897 return F2FS_OPTION(F2FS_SB(sb)).dummy_enc_policy.policy;
Sheng Yongff62af22018-03-15 18:51:42 +08002898}
2899
Eric Biggers0eee17e2019-10-24 14:54:38 -07002900static bool f2fs_has_stable_inodes(struct super_block *sb)
2901{
2902 return true;
2903}
2904
2905static void f2fs_get_ino_and_lblk_bits(struct super_block *sb,
2906 int *ino_bits_ret, int *lblk_bits_ret)
2907{
2908 *ino_bits_ret = 8 * sizeof(nid_t);
2909 *lblk_bits_ret = 8 * sizeof(block_t);
2910}
2911
Satya Tangirala27aacd22020-07-02 01:56:06 +00002912static int f2fs_get_num_devices(struct super_block *sb)
2913{
2914 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2915
2916 if (f2fs_is_multi_device(sbi))
2917 return sbi->s_ndevs;
2918 return 1;
2919}
2920
2921static void f2fs_get_devices(struct super_block *sb,
2922 struct request_queue **devs)
2923{
2924 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2925 int i;
2926
2927 for (i = 0; i < sbi->s_ndevs; i++)
2928 devs[i] = bdev_get_queue(FDEV(i).bdev);
2929}
2930
Eric Biggers6f69f0e2017-02-07 12:42:10 -08002931static const struct fscrypt_operations f2fs_cryptops = {
Eric Biggers0eee17e2019-10-24 14:54:38 -07002932 .key_prefix = "f2fs:",
2933 .get_context = f2fs_get_context,
2934 .set_context = f2fs_set_context,
Eric Biggersac4acb12020-09-16 21:11:35 -07002935 .get_dummy_policy = f2fs_get_dummy_policy,
Eric Biggers0eee17e2019-10-24 14:54:38 -07002936 .empty_dir = f2fs_empty_dir,
2937 .max_namelen = F2FS_NAME_LEN,
2938 .has_stable_inodes = f2fs_has_stable_inodes,
2939 .get_ino_and_lblk_bits = f2fs_get_ino_and_lblk_bits,
Satya Tangirala27aacd22020-07-02 01:56:06 +00002940 .get_num_devices = f2fs_get_num_devices,
2941 .get_devices = f2fs_get_devices,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002942};
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002943#endif
2944
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002945static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
2946 u64 ino, u32 generation)
2947{
2948 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2949 struct inode *inode;
2950
Chao Yu4d57b862018-05-30 00:20:41 +08002951 if (f2fs_check_nid_range(sbi, ino))
Chao Yu910bb122014-03-12 17:08:36 +08002952 return ERR_PTR(-ESTALE);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002953
2954 /*
2955 * f2fs_iget isn't quite right if the inode is currently unallocated!
2956 * However f2fs_iget currently does appropriate checks to handle stale
2957 * inodes so everything is OK.
2958 */
2959 inode = f2fs_iget(sb, ino);
2960 if (IS_ERR(inode))
2961 return ERR_CAST(inode);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09002962 if (unlikely(generation && inode->i_generation != generation)) {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002963 /* we didn't find the right inode.. */
2964 iput(inode);
2965 return ERR_PTR(-ESTALE);
2966 }
2967 return inode;
2968}
2969
2970static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
2971 int fh_len, int fh_type)
2972{
2973 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
2974 f2fs_nfs_get_inode);
2975}
2976
2977static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
2978 int fh_len, int fh_type)
2979{
2980 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
2981 f2fs_nfs_get_inode);
2982}
2983
2984static const struct export_operations f2fs_export_ops = {
2985 .fh_to_dentry = f2fs_fh_to_dentry,
2986 .fh_to_parent = f2fs_fh_to_parent,
2987 .get_parent = f2fs_get_parent,
2988};
2989
Chengguang Xu6d1451b2021-01-13 13:21:54 +08002990loff_t max_file_blocks(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002991{
Chao Yu7a2af762017-07-19 00:19:06 +08002992 loff_t result = 0;
Chengguang Xu6d1451b2021-01-13 13:21:54 +08002993 loff_t leaf_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002994
Chao Yu7a2af762017-07-19 00:19:06 +08002995 /*
2996 * note: previously, result is equal to (DEF_ADDRS_PER_INODE -
Chao Yu6afc6622017-09-06 21:59:50 +08002997 * DEFAULT_INLINE_XATTR_ADDRS), but now f2fs try to reserve more
Chao Yu7a2af762017-07-19 00:19:06 +08002998 * space in inode.i_addr, it will be more safe to reassign
2999 * result as zero.
3000 */
3001
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003002 if (inode && f2fs_compressed_file(inode))
3003 leaf_count = ADDRS_PER_BLOCK(inode);
3004 else
3005 leaf_count = DEF_ADDRS_PER_BLOCK;
3006
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003007 /* two direct node blocks */
3008 result += (leaf_count * 2);
3009
3010 /* two indirect node blocks */
3011 leaf_count *= NIDS_PER_BLOCK;
3012 result += (leaf_count * 2);
3013
3014 /* one double indirect node block */
3015 leaf_count *= NIDS_PER_BLOCK;
3016 result += leaf_count;
3017
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003018 return result;
3019}
3020
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003021static int __f2fs_commit_super(struct buffer_head *bh,
3022 struct f2fs_super_block *super)
Chao Yu9a59b622015-12-15 09:58:18 +08003023{
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003024 lock_buffer(bh);
3025 if (super)
3026 memcpy(bh->b_data + F2FS_SUPER_OFFSET, super, sizeof(*super));
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003027 set_buffer_dirty(bh);
3028 unlock_buffer(bh);
3029
3030 /* it's rare case, we can do fua all the time */
Jan Kara3adc5fcb2017-05-02 17:03:47 +02003031 return __sync_dirty_buffer(bh, REQ_SYNC | REQ_PREFLUSH | REQ_FUA);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003032}
3033
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003034static inline bool sanity_check_area_boundary(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003035 struct buffer_head *bh)
3036{
3037 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3038 (bh->b_data + F2FS_SUPER_OFFSET);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003039 struct super_block *sb = sbi->sb;
Chao Yu9a59b622015-12-15 09:58:18 +08003040 u32 segment0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
3041 u32 cp_blkaddr = le32_to_cpu(raw_super->cp_blkaddr);
3042 u32 sit_blkaddr = le32_to_cpu(raw_super->sit_blkaddr);
3043 u32 nat_blkaddr = le32_to_cpu(raw_super->nat_blkaddr);
3044 u32 ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
3045 u32 main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
3046 u32 segment_count_ckpt = le32_to_cpu(raw_super->segment_count_ckpt);
3047 u32 segment_count_sit = le32_to_cpu(raw_super->segment_count_sit);
3048 u32 segment_count_nat = le32_to_cpu(raw_super->segment_count_nat);
3049 u32 segment_count_ssa = le32_to_cpu(raw_super->segment_count_ssa);
3050 u32 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
3051 u32 segment_count = le32_to_cpu(raw_super->segment_count);
3052 u32 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003053 u64 main_end_blkaddr = main_blkaddr +
3054 (segment_count_main << log_blocks_per_seg);
3055 u64 seg_end_blkaddr = segment0_blkaddr +
3056 (segment_count << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003057
3058 if (segment0_blkaddr != cp_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003059 f2fs_info(sbi, "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
3060 segment0_blkaddr, cp_blkaddr);
Chao Yu9a59b622015-12-15 09:58:18 +08003061 return true;
3062 }
3063
3064 if (cp_blkaddr + (segment_count_ckpt << log_blocks_per_seg) !=
3065 sit_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003066 f2fs_info(sbi, "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
3067 cp_blkaddr, sit_blkaddr,
3068 segment_count_ckpt << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003069 return true;
3070 }
3071
3072 if (sit_blkaddr + (segment_count_sit << log_blocks_per_seg) !=
3073 nat_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003074 f2fs_info(sbi, "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
3075 sit_blkaddr, nat_blkaddr,
3076 segment_count_sit << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003077 return true;
3078 }
3079
3080 if (nat_blkaddr + (segment_count_nat << log_blocks_per_seg) !=
3081 ssa_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003082 f2fs_info(sbi, "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
3083 nat_blkaddr, ssa_blkaddr,
3084 segment_count_nat << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003085 return true;
3086 }
3087
3088 if (ssa_blkaddr + (segment_count_ssa << log_blocks_per_seg) !=
3089 main_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003090 f2fs_info(sbi, "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
3091 ssa_blkaddr, main_blkaddr,
3092 segment_count_ssa << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003093 return true;
3094 }
3095
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003096 if (main_end_blkaddr > seg_end_blkaddr) {
Wang Xiaojund89f5892020-09-18 08:31:24 +08003097 f2fs_info(sbi, "Wrong MAIN_AREA boundary, start(%u) end(%llu) block(%u)",
3098 main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003099 segment_count_main << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003100 return true;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003101 } else if (main_end_blkaddr < seg_end_blkaddr) {
3102 int err = 0;
3103 char *res;
Chao Yu9a59b622015-12-15 09:58:18 +08003104
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003105 /* fix in-memory information all the time */
3106 raw_super->segment_count = cpu_to_le32((main_end_blkaddr -
3107 segment0_blkaddr) >> log_blocks_per_seg);
3108
3109 if (f2fs_readonly(sb) || bdev_read_only(sb->s_bdev)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003110 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003111 res = "internally";
3112 } else {
3113 err = __f2fs_commit_super(bh, NULL);
3114 res = err ? "failed" : "done";
3115 }
Wang Xiaojund89f5892020-09-18 08:31:24 +08003116 f2fs_info(sbi, "Fix alignment : %s, start(%u) end(%llu) block(%u)",
3117 res, main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003118 segment_count_main << log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003119 if (err)
3120 return true;
3121 }
Chao Yu9a59b622015-12-15 09:58:18 +08003122 return false;
3123}
3124
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003125static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003126 struct buffer_head *bh)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003127{
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003128 block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003129 block_t total_sections, blocks_per_seg;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003130 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3131 (bh->b_data + F2FS_SUPER_OFFSET);
Junling Zhengd440c522018-09-28 20:25:56 +08003132 size_t crc_offset = 0;
3133 __u32 crc = 0;
3134
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003135 if (le32_to_cpu(raw_super->magic) != F2FS_SUPER_MAGIC) {
3136 f2fs_info(sbi, "Magic Mismatch, valid(0x%x) - read(0x%x)",
3137 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
3138 return -EINVAL;
3139 }
3140
Junling Zhengd440c522018-09-28 20:25:56 +08003141 /* Check checksum_offset and crc in superblock */
Chao Yu7beb01f2018-10-24 18:34:26 +08003142 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_SB_CHKSUM)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003143 crc_offset = le32_to_cpu(raw_super->checksum_offset);
3144 if (crc_offset !=
3145 offsetof(struct f2fs_super_block, crc)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003146 f2fs_info(sbi, "Invalid SB checksum offset: %zu",
3147 crc_offset);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003148 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003149 }
3150 crc = le32_to_cpu(raw_super->crc);
3151 if (!f2fs_crc_valid(sbi, crc, raw_super, crc_offset)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003152 f2fs_info(sbi, "Invalid SB checksum value: %u", crc);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003153 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003154 }
3155 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003156
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003157 /* Currently, support only 4KB block size */
Chao Yue584bbe2020-12-09 16:49:36 +08003158 if (le32_to_cpu(raw_super->log_blocksize) != F2FS_BLKSIZE_BITS) {
3159 f2fs_info(sbi, "Invalid log_blocksize (%u), supports only %u",
3160 le32_to_cpu(raw_super->log_blocksize),
3161 F2FS_BLKSIZE_BITS);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003162 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003163 }
majianpeng5c9b4692013-02-01 19:07:57 +08003164
Chao Yu9a59b622015-12-15 09:58:18 +08003165 /* check log blocks per segment */
3166 if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003167 f2fs_info(sbi, "Invalid log blocks per segment (%u)",
3168 le32_to_cpu(raw_super->log_blocks_per_seg));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003169 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003170 }
3171
Chao Yu55cf9cb2014-09-15 18:01:10 +08003172 /* Currently, support 512/1024/2048/4096 bytes sector size */
3173 if (le32_to_cpu(raw_super->log_sectorsize) >
3174 F2FS_MAX_LOG_SECTOR_SIZE ||
3175 le32_to_cpu(raw_super->log_sectorsize) <
3176 F2FS_MIN_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003177 f2fs_info(sbi, "Invalid log sectorsize (%u)",
3178 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003179 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003180 }
Chao Yu55cf9cb2014-09-15 18:01:10 +08003181 if (le32_to_cpu(raw_super->log_sectors_per_block) +
3182 le32_to_cpu(raw_super->log_sectorsize) !=
3183 F2FS_MAX_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003184 f2fs_info(sbi, "Invalid log sectors per block(%u) log sectorsize(%u)",
3185 le32_to_cpu(raw_super->log_sectors_per_block),
3186 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003187 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003188 }
Chao Yu9a59b622015-12-15 09:58:18 +08003189
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003190 segment_count = le32_to_cpu(raw_super->segment_count);
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003191 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003192 segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3193 secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3194 total_sections = le32_to_cpu(raw_super->section_count);
3195
3196 /* blocks_per_seg should be 512, given the above check */
3197 blocks_per_seg = 1 << le32_to_cpu(raw_super->log_blocks_per_seg);
3198
3199 if (segment_count > F2FS_MAX_SEGMENT ||
3200 segment_count < F2FS_MIN_SEGMENTS) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003201 f2fs_info(sbi, "Invalid segment count (%u)", segment_count);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003202 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003203 }
3204
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003205 if (total_sections > segment_count_main || total_sections < 1 ||
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003206 segs_per_sec > segment_count || !segs_per_sec) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003207 f2fs_info(sbi, "Invalid segment/section count (%u, %u x %u)",
3208 segment_count, total_sections, segs_per_sec);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003209 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003210 }
3211
Chao Yu3a22e9a2020-09-29 09:23:34 +08003212 if (segment_count_main != total_sections * segs_per_sec) {
3213 f2fs_info(sbi, "Invalid segment/section count (%u != %u * %u)",
3214 segment_count_main, total_sections, segs_per_sec);
3215 return -EFSCORRUPTED;
3216 }
3217
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003218 if ((segment_count / segs_per_sec) < total_sections) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003219 f2fs_info(sbi, "Small segment_count (%u < %u * %u)",
3220 segment_count, segs_per_sec, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003221 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003222 }
3223
Martin Blumenstingl88960062018-12-22 11:22:26 +01003224 if (segment_count > (le64_to_cpu(raw_super->block_count) >> 9)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003225 f2fs_info(sbi, "Wrong segment_count / block_count (%u > %llu)",
3226 segment_count, le64_to_cpu(raw_super->block_count));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003227 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003228 }
3229
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003230 if (RDEV(0).path[0]) {
3231 block_t dev_seg_count = le32_to_cpu(RDEV(0).total_segments);
3232 int i = 1;
3233
3234 while (i < MAX_DEVICES && RDEV(i).path[0]) {
3235 dev_seg_count += le32_to_cpu(RDEV(i).total_segments);
3236 i++;
3237 }
3238 if (segment_count != dev_seg_count) {
3239 f2fs_info(sbi, "Segment count (%u) mismatch with total segments from devices (%u)",
3240 segment_count, dev_seg_count);
3241 return -EFSCORRUPTED;
3242 }
Chao Yu07eb1d62020-09-21 20:53:13 +08003243 } else {
3244 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_BLKZONED) &&
3245 !bdev_is_zoned(sbi->sb->s_bdev)) {
3246 f2fs_info(sbi, "Zoned block device path is missing");
3247 return -EFSCORRUPTED;
3248 }
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003249 }
3250
Chao Yu42bf5462018-06-23 00:12:36 +08003251 if (secs_per_zone > total_sections || !secs_per_zone) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003252 f2fs_info(sbi, "Wrong secs_per_zone / total_sections (%u, %u)",
3253 secs_per_zone, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003254 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003255 }
3256 if (le32_to_cpu(raw_super->extension_count) > F2FS_MAX_EXTENSION ||
3257 raw_super->hot_ext_count > F2FS_MAX_EXTENSION ||
3258 (le32_to_cpu(raw_super->extension_count) +
3259 raw_super->hot_ext_count) > F2FS_MAX_EXTENSION) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003260 f2fs_info(sbi, "Corrupted extension count (%u + %u > %u)",
3261 le32_to_cpu(raw_super->extension_count),
3262 raw_super->hot_ext_count,
3263 F2FS_MAX_EXTENSION);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003264 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003265 }
3266
3267 if (le32_to_cpu(raw_super->cp_payload) >
3268 (blocks_per_seg - F2FS_CP_PACKS)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003269 f2fs_info(sbi, "Insane cp_payload (%u > %u)",
3270 le32_to_cpu(raw_super->cp_payload),
3271 blocks_per_seg - F2FS_CP_PACKS);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003272 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003273 }
3274
Chao Yu9a59b622015-12-15 09:58:18 +08003275 /* check reserved ino info */
3276 if (le32_to_cpu(raw_super->node_ino) != 1 ||
3277 le32_to_cpu(raw_super->meta_ino) != 2 ||
3278 le32_to_cpu(raw_super->root_ino) != 3) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003279 f2fs_info(sbi, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
3280 le32_to_cpu(raw_super->node_ino),
3281 le32_to_cpu(raw_super->meta_ino),
3282 le32_to_cpu(raw_super->root_ino));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003283 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003284 }
3285
3286 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003287 if (sanity_check_area_boundary(sbi, bh))
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003288 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003289
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003290 return 0;
3291}
3292
Chao Yu4d57b862018-05-30 00:20:41 +08003293int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003294{
3295 unsigned int total, fsmeta;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003296 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
3297 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003298 unsigned int ovp_segments, reserved_segments;
Jin Qian15d30422017-05-15 10:45:08 -07003299 unsigned int main_segs, blocks_per_seg;
Chao Yuc77ec612018-06-23 11:25:19 +08003300 unsigned int sit_segs, nat_segs;
3301 unsigned int sit_bitmap_size, nat_bitmap_size;
3302 unsigned int log_blocks_per_seg;
Chao Yu9dc956b2018-06-27 18:05:54 +08003303 unsigned int segment_count_main;
Chao Yue494c2f2018-08-01 19:16:11 +08003304 unsigned int cp_pack_start_sum, cp_payload;
Chao Yu7b63f722019-04-15 15:30:50 +08003305 block_t user_block_count, valid_user_blocks;
3306 block_t avail_node_count, valid_node_count;
Chao Yu042be0f2018-09-06 20:34:12 +08003307 int i, j;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003308
3309 total = le32_to_cpu(raw_super->segment_count);
3310 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
Chao Yuc77ec612018-06-23 11:25:19 +08003311 sit_segs = le32_to_cpu(raw_super->segment_count_sit);
3312 fsmeta += sit_segs;
3313 nat_segs = le32_to_cpu(raw_super->segment_count_nat);
3314 fsmeta += nat_segs;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003315 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
3316 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
3317
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003318 if (unlikely(fsmeta >= total))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003319 return 1;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003320
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003321 ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
3322 reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
3323
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003324 if (!f2fs_sb_has_readonly(sbi) &&
3325 unlikely(fsmeta < F2FS_MIN_META_SEGMENTS ||
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003326 ovp_segments == 0 || reserved_segments == 0)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003327 f2fs_err(sbi, "Wrong layout: check mkfs.f2fs version");
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003328 return 1;
3329 }
Chao Yu9dc956b2018-06-27 18:05:54 +08003330 user_block_count = le64_to_cpu(ckpt->user_block_count);
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003331 segment_count_main = le32_to_cpu(raw_super->segment_count_main) +
3332 (f2fs_sb_has_readonly(sbi) ? 1 : 0);
Chao Yu9dc956b2018-06-27 18:05:54 +08003333 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3334 if (!user_block_count || user_block_count >=
3335 segment_count_main << log_blocks_per_seg) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003336 f2fs_err(sbi, "Wrong user_block_count: %u",
3337 user_block_count);
Chao Yu9dc956b2018-06-27 18:05:54 +08003338 return 1;
3339 }
3340
Chao Yu7b63f722019-04-15 15:30:50 +08003341 valid_user_blocks = le64_to_cpu(ckpt->valid_block_count);
3342 if (valid_user_blocks > user_block_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003343 f2fs_err(sbi, "Wrong valid_user_blocks: %u, user_block_count: %u",
3344 valid_user_blocks, user_block_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003345 return 1;
3346 }
3347
3348 valid_node_count = le32_to_cpu(ckpt->valid_node_count);
Chao Yu27cae0b2019-08-05 18:27:25 +08003349 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Chao Yu7b63f722019-04-15 15:30:50 +08003350 if (valid_node_count > avail_node_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003351 f2fs_err(sbi, "Wrong valid_node_count: %u, avail_node_count: %u",
3352 valid_node_count, avail_node_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003353 return 1;
3354 }
3355
Jin Qian15d30422017-05-15 10:45:08 -07003356 main_segs = le32_to_cpu(raw_super->segment_count_main);
3357 blocks_per_seg = sbi->blocks_per_seg;
3358
3359 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
3360 if (le32_to_cpu(ckpt->cur_node_segno[i]) >= main_segs ||
3361 le16_to_cpu(ckpt->cur_node_blkoff[i]) >= blocks_per_seg)
3362 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003363
3364 if (f2fs_sb_has_readonly(sbi))
3365 goto check_data;
3366
Chao Yu042be0f2018-09-06 20:34:12 +08003367 for (j = i + 1; j < NR_CURSEG_NODE_TYPE; j++) {
3368 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3369 le32_to_cpu(ckpt->cur_node_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003370 f2fs_err(sbi, "Node segment (%u, %u) has the same segno: %u",
3371 i, j,
3372 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003373 return 1;
3374 }
3375 }
Jin Qian15d30422017-05-15 10:45:08 -07003376 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003377check_data:
Jin Qian15d30422017-05-15 10:45:08 -07003378 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
3379 if (le32_to_cpu(ckpt->cur_data_segno[i]) >= main_segs ||
3380 le16_to_cpu(ckpt->cur_data_blkoff[i]) >= blocks_per_seg)
3381 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003382
3383 if (f2fs_sb_has_readonly(sbi))
3384 goto skip_cross;
3385
Chao Yu042be0f2018-09-06 20:34:12 +08003386 for (j = i + 1; j < NR_CURSEG_DATA_TYPE; j++) {
3387 if (le32_to_cpu(ckpt->cur_data_segno[i]) ==
3388 le32_to_cpu(ckpt->cur_data_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003389 f2fs_err(sbi, "Data segment (%u, %u) has the same segno: %u",
3390 i, j,
3391 le32_to_cpu(ckpt->cur_data_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003392 return 1;
3393 }
3394 }
3395 }
3396 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003397 for (j = 0; j < NR_CURSEG_DATA_TYPE; j++) {
Chao Yu042be0f2018-09-06 20:34:12 +08003398 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3399 le32_to_cpu(ckpt->cur_data_segno[j])) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003400 f2fs_err(sbi, "Node segment (%u) and Data segment (%u) has the same segno: %u",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003401 i, j,
3402 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003403 return 1;
3404 }
3405 }
Jin Qian15d30422017-05-15 10:45:08 -07003406 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003407skip_cross:
Chao Yuc77ec612018-06-23 11:25:19 +08003408 sit_bitmap_size = le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
3409 nat_bitmap_size = le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
Chao Yuc77ec612018-06-23 11:25:19 +08003410
3411 if (sit_bitmap_size != ((sit_segs / 2) << log_blocks_per_seg) / 8 ||
3412 nat_bitmap_size != ((nat_segs / 2) << log_blocks_per_seg) / 8) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003413 f2fs_err(sbi, "Wrong bitmap size: sit: %u, nat:%u",
3414 sit_bitmap_size, nat_bitmap_size);
Chao Yuc77ec612018-06-23 11:25:19 +08003415 return 1;
3416 }
3417
Chao Yue494c2f2018-08-01 19:16:11 +08003418 cp_pack_start_sum = __start_sum_addr(sbi);
3419 cp_payload = __cp_payload(sbi);
3420 if (cp_pack_start_sum < cp_payload + 1 ||
3421 cp_pack_start_sum > blocks_per_seg - 1 -
Chao Yud0b9e422020-08-04 21:14:45 +08003422 NR_CURSEG_PERSIST_TYPE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003423 f2fs_err(sbi, "Wrong cp_pack_start_sum: %u",
3424 cp_pack_start_sum);
Chao Yue494c2f2018-08-01 19:16:11 +08003425 return 1;
3426 }
3427
Chao Yu5dae2d32019-05-20 10:09:22 +08003428 if (__is_set_ckpt_flags(ckpt, CP_LARGE_NAT_BITMAP_FLAG) &&
3429 le32_to_cpu(ckpt->checksum_offset) != CP_MIN_CHKSUM_OFFSET) {
Chao Yu2d008832019-07-11 09:29:15 +08003430 f2fs_warn(sbi, "using deprecated layout of large_nat_bitmap, "
3431 "please run fsck v1.13.0 or higher to repair, chksum_offset: %u, "
3432 "fixed with patch: \"f2fs-tools: relocate chksum_offset for large_nat_bitmap feature\"",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003433 le32_to_cpu(ckpt->checksum_offset));
Chao Yu5dae2d32019-05-20 10:09:22 +08003434 return 1;
3435 }
3436
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07003437 if (unlikely(f2fs_cp_error(sbi))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003438 f2fs_err(sbi, "A bug case: need to run fsck");
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003439 return 1;
3440 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003441 return 0;
3442}
3443
3444static void init_sb_info(struct f2fs_sb_info *sbi)
3445{
3446 struct f2fs_super_block *raw_super = sbi->raw_super;
Yunlong Song089842d2018-10-24 16:09:42 +08003447 int i;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003448
3449 sbi->log_sectors_per_block =
3450 le32_to_cpu(raw_super->log_sectors_per_block);
3451 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
3452 sbi->blocksize = 1 << sbi->log_blocksize;
3453 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3454 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
3455 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3456 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3457 sbi->total_sections = le32_to_cpu(raw_super->section_count);
3458 sbi->total_node_count =
3459 (le32_to_cpu(raw_super->segment_count_nat) / 2)
3460 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
Yangtao Lib9ec1092020-12-07 18:59:33 +08003461 F2FS_ROOT_INO(sbi) = le32_to_cpu(raw_super->root_ino);
3462 F2FS_NODE_INO(sbi) = le32_to_cpu(raw_super->node_ino);
3463 F2FS_META_INO(sbi) = le32_to_cpu(raw_super->meta_ino);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09003464 sbi->cur_victim_sec = NULL_SECNO;
Chao Yue3080b02018-10-24 18:37:27 +08003465 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
3466 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +09003467 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
Chao Yue3080b02018-10-24 18:37:27 +08003468 sbi->migration_granularity = sbi->segs_per_sec;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003469
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09003470 sbi->dir_level = DEF_DIR_LEVEL;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08003471 sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08003472 sbi->interval_time[REQ_TIME] = DEF_IDLE_INTERVAL;
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +05303473 sbi->interval_time[DISCARD_TIME] = DEF_IDLE_INTERVAL;
3474 sbi->interval_time[GC_TIME] = DEF_IDLE_INTERVAL;
Daniel Rosenberg43549942018-08-20 19:21:43 -07003475 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_INTERVAL;
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08003476 sbi->interval_time[UMOUNT_DISCARD_TIMEOUT] =
3477 DEF_UMOUNT_DISCARD_TIMEOUT;
Chao Yucaf00472015-01-28 17:48:42 +08003478 clear_sbi_flag(sbi, SBI_NEED_FSCK);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003479
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003480 for (i = 0; i < NR_COUNT_TYPE; i++)
3481 atomic_set(&sbi->nr_pages[i], 0);
3482
Chao Yuc29fd0c2018-06-04 23:20:36 +08003483 for (i = 0; i < META; i++)
3484 atomic_set(&sbi->wb_sync_req[i], 0);
Jaegeuk Kim687de7f2017-03-28 18:07:38 -07003485
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003486 INIT_LIST_HEAD(&sbi->s_list);
3487 mutex_init(&sbi->umount_mutex);
Chao Yu107a8052018-05-26 09:00:13 +08003488 init_rwsem(&sbi->io_order_lock);
Chao Yuaaec2b12016-09-20 11:04:18 +08003489 spin_lock_init(&sbi->cp_lock);
Chao Yu1228b482017-09-29 13:59:39 +08003490
3491 sbi->dirty_device = 0;
3492 spin_lock_init(&sbi->dev_lock);
Chao Yud0d3f1b2018-02-11 22:53:20 +08003493
Chao Yu846ae672018-02-26 22:04:13 +08003494 init_rwsem(&sbi->sb_lock);
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07003495 init_rwsem(&sbi->pin_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003496}
3497
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003498static int init_percpu_info(struct f2fs_sb_info *sbi)
3499{
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003500 int err;
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003501
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07003502 err = percpu_counter_init(&sbi->alloc_valid_block_count, 0, GFP_KERNEL);
3503 if (err)
3504 return err;
3505
Chao Yu4a70e252018-09-05 14:54:02 +08003506 err = percpu_counter_init(&sbi->total_valid_inode_count, 0,
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003507 GFP_KERNEL);
Chao Yu4a70e252018-09-05 14:54:02 +08003508 if (err)
3509 percpu_counter_destroy(&sbi->alloc_valid_block_count);
3510
3511 return err;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003512}
3513
Damien Le Moal178053e2016-10-28 17:45:05 +09003514#ifdef CONFIG_BLK_DEV_ZONED
Christoph Hellwigd4100352019-11-11 11:39:30 +09003515
Aravind Rameshde881df2020-07-16 18:26:56 +05303516struct f2fs_report_zones_args {
3517 struct f2fs_dev_info *dev;
3518 bool zone_cap_mismatch;
3519};
3520
3521static int f2fs_report_zone_cb(struct blk_zone *zone, unsigned int idx,
3522 void *data)
3523{
3524 struct f2fs_report_zones_args *rz_args = data;
3525
3526 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
3527 return 0;
3528
3529 set_bit(idx, rz_args->dev->blkz_seq);
3530 rz_args->dev->zone_capacity_blocks[idx] = zone->capacity >>
3531 F2FS_LOG_SECTORS_PER_BLOCK;
3532 if (zone->len != zone->capacity && !rz_args->zone_cap_mismatch)
3533 rz_args->zone_cap_mismatch = true;
3534
Christoph Hellwigd4100352019-11-11 11:39:30 +09003535 return 0;
3536}
3537
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003538static int init_blkz_info(struct f2fs_sb_info *sbi, int devi)
Damien Le Moal178053e2016-10-28 17:45:05 +09003539{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003540 struct block_device *bdev = FDEV(devi).bdev;
Christoph Hellwiga7824832020-11-26 18:43:37 +01003541 sector_t nr_sectors = bdev_nr_sectors(bdev);
Aravind Rameshde881df2020-07-16 18:26:56 +05303542 struct f2fs_report_zones_args rep_zone_arg;
Christoph Hellwigd4100352019-11-11 11:39:30 +09003543 int ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003544
Chao Yu7beb01f2018-10-24 18:34:26 +08003545 if (!f2fs_sb_has_blkzoned(sbi))
Damien Le Moal178053e2016-10-28 17:45:05 +09003546 return 0;
3547
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003548 if (sbi->blocks_per_blkz && sbi->blocks_per_blkz !=
Damien Le Moalf99e8642017-01-12 07:58:32 -07003549 SECTOR_TO_BLOCK(bdev_zone_sectors(bdev)))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003550 return -EINVAL;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003551 sbi->blocks_per_blkz = SECTOR_TO_BLOCK(bdev_zone_sectors(bdev));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003552 if (sbi->log_blocks_per_blkz && sbi->log_blocks_per_blkz !=
3553 __ilog2_u32(sbi->blocks_per_blkz))
3554 return -EINVAL;
Damien Le Moal178053e2016-10-28 17:45:05 +09003555 sbi->log_blocks_per_blkz = __ilog2_u32(sbi->blocks_per_blkz);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003556 FDEV(devi).nr_blkz = SECTOR_TO_BLOCK(nr_sectors) >>
3557 sbi->log_blocks_per_blkz;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003558 if (nr_sectors & (bdev_zone_sectors(bdev) - 1))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003559 FDEV(devi).nr_blkz++;
Damien Le Moal178053e2016-10-28 17:45:05 +09003560
Eric Biggers0b6d4ca2020-06-04 21:57:48 -07003561 FDEV(devi).blkz_seq = f2fs_kvzalloc(sbi,
Damien Le Moal95175da2019-03-16 09:13:07 +09003562 BITS_TO_LONGS(FDEV(devi).nr_blkz)
3563 * sizeof(unsigned long),
3564 GFP_KERNEL);
3565 if (!FDEV(devi).blkz_seq)
Damien Le Moal178053e2016-10-28 17:45:05 +09003566 return -ENOMEM;
3567
Aravind Rameshde881df2020-07-16 18:26:56 +05303568 /* Get block zones type and zone-capacity */
3569 FDEV(devi).zone_capacity_blocks = f2fs_kzalloc(sbi,
3570 FDEV(devi).nr_blkz * sizeof(block_t),
3571 GFP_KERNEL);
3572 if (!FDEV(devi).zone_capacity_blocks)
3573 return -ENOMEM;
3574
3575 rep_zone_arg.dev = &FDEV(devi);
3576 rep_zone_arg.zone_cap_mismatch = false;
3577
Christoph Hellwigd4100352019-11-11 11:39:30 +09003578 ret = blkdev_report_zones(bdev, 0, BLK_ALL_ZONES, f2fs_report_zone_cb,
Aravind Rameshde881df2020-07-16 18:26:56 +05303579 &rep_zone_arg);
Christoph Hellwigd4100352019-11-11 11:39:30 +09003580 if (ret < 0)
3581 return ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003582
Aravind Rameshde881df2020-07-16 18:26:56 +05303583 if (!rep_zone_arg.zone_cap_mismatch) {
3584 kfree(FDEV(devi).zone_capacity_blocks);
3585 FDEV(devi).zone_capacity_blocks = NULL;
3586 }
3587
Christoph Hellwigd4100352019-11-11 11:39:30 +09003588 return 0;
Damien Le Moal178053e2016-10-28 17:45:05 +09003589}
3590#endif
3591
Gu Zheng9076a752013-10-14 18:47:11 +08003592/*
3593 * Read f2fs raw super block.
Shawn Lin2b39e902016-02-17 08:59:01 +08003594 * Because we have two copies of super block, so read both of them
3595 * to get the first valid one. If any one of them is broken, we pass
3596 * them recovery flag back to the caller.
Gu Zheng9076a752013-10-14 18:47:11 +08003597 */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003598static int read_raw_super_block(struct f2fs_sb_info *sbi,
Gu Zheng9076a752013-10-14 18:47:11 +08003599 struct f2fs_super_block **raw_super,
Chao Yue8240f62015-12-15 17:19:26 +08003600 int *valid_super_block, int *recovery)
majianpeng14d7e9d2013-02-01 19:07:03 +08003601{
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003602 struct super_block *sb = sbi->sb;
Shawn Lin2b39e902016-02-17 08:59:01 +08003603 int block;
Chao Yue8240f62015-12-15 17:19:26 +08003604 struct buffer_head *bh;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003605 struct f2fs_super_block *super;
hujianyangda554e42015-05-21 14:42:53 +08003606 int err = 0;
majianpeng14d7e9d2013-02-01 19:07:03 +08003607
Yunlei Heb39f0de2015-12-15 17:17:20 +08003608 super = kzalloc(sizeof(struct f2fs_super_block), GFP_KERNEL);
3609 if (!super)
3610 return -ENOMEM;
Shawn Lin2b39e902016-02-17 08:59:01 +08003611
3612 for (block = 0; block < 2; block++) {
3613 bh = sb_bread(sb, block);
3614 if (!bh) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003615 f2fs_err(sbi, "Unable to read %dth superblock",
3616 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003617 err = -EIO;
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003618 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003619 continue;
3620 }
majianpeng14d7e9d2013-02-01 19:07:03 +08003621
Shawn Lin2b39e902016-02-17 08:59:01 +08003622 /* sanity checking of raw super */
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003623 err = sanity_check_raw_super(sbi, bh);
3624 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003625 f2fs_err(sbi, "Can't find valid F2FS filesystem in %dth superblock",
3626 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003627 brelse(bh);
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003628 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003629 continue;
3630 }
3631
3632 if (!*raw_super) {
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003633 memcpy(super, bh->b_data + F2FS_SUPER_OFFSET,
3634 sizeof(*super));
Shawn Lin2b39e902016-02-17 08:59:01 +08003635 *valid_super_block = block;
3636 *raw_super = super;
3637 }
Chao Yue8240f62015-12-15 17:19:26 +08003638 brelse(bh);
Shawn Lin2b39e902016-02-17 08:59:01 +08003639 }
3640
hujianyangda554e42015-05-21 14:42:53 +08003641 /* No valid superblock */
Shawn Lin2b39e902016-02-17 08:59:01 +08003642 if (!*raw_super)
Denis Efremov742532d2020-06-10 01:14:46 +03003643 kfree(super);
Shawn Lin2b39e902016-02-17 08:59:01 +08003644 else
3645 err = 0;
hujianyangda554e42015-05-21 14:42:53 +08003646
Shawn Lin2b39e902016-02-17 08:59:01 +08003647 return err;
majianpeng14d7e9d2013-02-01 19:07:03 +08003648}
3649
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003650int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003651{
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003652 struct buffer_head *bh;
Junling Zhengd440c522018-09-28 20:25:56 +08003653 __u32 crc = 0;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003654 int err;
3655
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003656 if ((recover && f2fs_readonly(sbi->sb)) ||
3657 bdev_read_only(sbi->sb->s_bdev)) {
3658 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003659 return -EROFS;
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003660 }
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003661
Junling Zhengd440c522018-09-28 20:25:56 +08003662 /* we should update superblock crc here */
Chao Yu7beb01f2018-10-24 18:34:26 +08003663 if (!recover && f2fs_sb_has_sb_chksum(sbi)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003664 crc = f2fs_crc32(sbi, F2FS_RAW_SUPER(sbi),
3665 offsetof(struct f2fs_super_block, crc));
3666 F2FS_RAW_SUPER(sbi)->crc = cpu_to_le32(crc);
3667 }
3668
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003669 /* write back-up superblock first */
Sheng Yong0964fc12018-01-29 19:13:15 +08003670 bh = sb_bread(sbi->sb, sbi->valid_super_block ? 0 : 1);
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003671 if (!bh)
3672 return -EIO;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003673 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003674 brelse(bh);
Chao Yuc5bda1c2015-06-08 13:28:03 +08003675
3676 /* if we are in recovery path, skip writing valid superblock */
3677 if (recover || err)
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003678 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003679
Chao Yue8240f62015-12-15 17:19:26 +08003680 /* write current valid superblock */
Sheng Yong0964fc12018-01-29 19:13:15 +08003681 bh = sb_bread(sbi->sb, sbi->valid_super_block);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003682 if (!bh)
3683 return -EIO;
3684 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
3685 brelse(bh);
3686 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003687}
3688
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003689static int f2fs_scan_devices(struct f2fs_sb_info *sbi)
3690{
3691 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003692 unsigned int max_devices = MAX_DEVICES;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003693 int i;
3694
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003695 /* Initialize single device information */
3696 if (!RDEV(0).path[0]) {
3697 if (!bdev_is_zoned(sbi->sb->s_bdev))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003698 return 0;
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003699 max_devices = 1;
3700 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003701
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003702 /*
3703 * Initialize multiple devices information, or single
3704 * zoned block device information.
3705 */
Kees Cook026f0502018-06-12 14:28:23 -07003706 sbi->devs = f2fs_kzalloc(sbi,
3707 array_size(max_devices,
3708 sizeof(struct f2fs_dev_info)),
3709 GFP_KERNEL);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003710 if (!sbi->devs)
3711 return -ENOMEM;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003712
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003713 for (i = 0; i < max_devices; i++) {
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003714
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003715 if (i > 0 && !RDEV(i).path[0])
3716 break;
3717
3718 if (max_devices == 1) {
3719 /* Single zoned block device mount */
3720 FDEV(0).bdev =
3721 blkdev_get_by_dev(sbi->sb->s_bdev->bd_dev,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003722 sbi->sb->s_mode, sbi->sb->s_type);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003723 } else {
3724 /* Multi-device mount */
3725 memcpy(FDEV(i).path, RDEV(i).path, MAX_PATH_LEN);
3726 FDEV(i).total_segments =
3727 le32_to_cpu(RDEV(i).total_segments);
3728 if (i == 0) {
3729 FDEV(i).start_blk = 0;
3730 FDEV(i).end_blk = FDEV(i).start_blk +
3731 (FDEV(i).total_segments <<
3732 sbi->log_blocks_per_seg) - 1 +
3733 le32_to_cpu(raw_super->segment0_blkaddr);
3734 } else {
3735 FDEV(i).start_blk = FDEV(i - 1).end_blk + 1;
3736 FDEV(i).end_blk = FDEV(i).start_blk +
3737 (FDEV(i).total_segments <<
3738 sbi->log_blocks_per_seg) - 1;
3739 }
3740 FDEV(i).bdev = blkdev_get_by_path(FDEV(i).path,
3741 sbi->sb->s_mode, sbi->sb->s_type);
3742 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003743 if (IS_ERR(FDEV(i).bdev))
3744 return PTR_ERR(FDEV(i).bdev);
3745
3746 /* to release errored devices */
3747 sbi->s_ndevs = i + 1;
3748
3749#ifdef CONFIG_BLK_DEV_ZONED
3750 if (bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HM &&
Chao Yu7beb01f2018-10-24 18:34:26 +08003751 !f2fs_sb_has_blkzoned(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07003752 f2fs_err(sbi, "Zoned block device feature not enabled");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003753 return -EINVAL;
3754 }
3755 if (bdev_zoned_model(FDEV(i).bdev) != BLK_ZONED_NONE) {
3756 if (init_blkz_info(sbi, i)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003757 f2fs_err(sbi, "Failed to initialize F2FS blkzone information");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003758 return -EINVAL;
3759 }
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003760 if (max_devices == 1)
3761 break;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003762 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x (zone: %s)",
3763 i, FDEV(i).path,
3764 FDEV(i).total_segments,
3765 FDEV(i).start_blk, FDEV(i).end_blk,
3766 bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HA ?
3767 "Host-aware" : "Host-managed");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003768 continue;
3769 }
3770#endif
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003771 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x",
3772 i, FDEV(i).path,
3773 FDEV(i).total_segments,
3774 FDEV(i).start_blk, FDEV(i).end_blk);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003775 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003776 f2fs_info(sbi,
3777 "IO Block Size: %8d KB", F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003778 return 0;
3779}
3780
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003781static int f2fs_setup_casefold(struct f2fs_sb_info *sbi)
3782{
3783#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003784 if (f2fs_sb_has_casefold(sbi) && !sbi->sb->s_encoding) {
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003785 const struct f2fs_sb_encodings *encoding_info;
3786 struct unicode_map *encoding;
3787 __u16 encoding_flags;
3788
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003789 if (f2fs_sb_read_encoding(sbi->raw_super, &encoding_info,
3790 &encoding_flags)) {
3791 f2fs_err(sbi,
3792 "Encoding requested by superblock is unknown");
3793 return -EINVAL;
3794 }
3795
3796 encoding = utf8_load(encoding_info->version);
3797 if (IS_ERR(encoding)) {
3798 f2fs_err(sbi,
3799 "can't mount with superblock charset: %s-%s "
3800 "not supported by the kernel. flags: 0x%x.",
3801 encoding_info->name, encoding_info->version,
3802 encoding_flags);
3803 return PTR_ERR(encoding);
3804 }
3805 f2fs_info(sbi, "Using encoding defined by superblock: "
3806 "%s-%s with flags 0x%hx", encoding_info->name,
3807 encoding_info->version?:"\b", encoding_flags);
3808
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003809 sbi->sb->s_encoding = encoding;
3810 sbi->sb->s_encoding_flags = encoding_flags;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003811 }
3812#else
3813 if (f2fs_sb_has_casefold(sbi)) {
3814 f2fs_err(sbi, "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
3815 return -EINVAL;
3816 }
3817#endif
3818 return 0;
3819}
3820
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003821static void f2fs_tuning_parameters(struct f2fs_sb_info *sbi)
3822{
3823 struct f2fs_sm_info *sm_i = SM_I(sbi);
3824
3825 /* adjust parameters according to the volume size */
3826 if (sm_i->main_segments <= SMALL_VOLUME_SEGMENTS) {
Chao Yu63189b72018-03-08 14:22:56 +08003827 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Chao Yu4f993262021-08-03 08:15:43 +08003828 if (f2fs_block_unit_discard(sbi))
3829 sm_i->dcc_info->discard_granularity = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003830 sm_i->ipu_policy = 1 << F2FS_IPU_FORCE;
3831 }
Chao Yu4cac90d2018-06-11 18:02:01 +08003832
3833 sbi->readdir_ra = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003834}
3835
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003836static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
3837{
3838 struct f2fs_sb_info *sbi;
hujianyangda554e42015-05-21 14:42:53 +08003839 struct f2fs_super_block *raw_super;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003840 struct inode *root;
Sheng Yong99e3e852016-05-11 17:08:14 +08003841 int err;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003842 bool skip_recovery = false, need_fsck = false;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003843 char *options = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003844 int recovery, i, valid_super_block;
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08003845 struct curseg_info *seg_i;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003846 int retry_cnt = 1;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003847
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07003848try_onemore:
hujianyangda554e42015-05-21 14:42:53 +08003849 err = -EINVAL;
3850 raw_super = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003851 valid_super_block = -1;
hujianyangda554e42015-05-21 14:42:53 +08003852 recovery = 0;
3853
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003854 /* allocate memory for f2fs-specific super block info */
3855 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
3856 if (!sbi)
3857 return -ENOMEM;
3858
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003859 sbi->sb = sb;
3860
Keith Mok43b65732016-03-02 12:04:24 -08003861 /* Load the checksum driver */
3862 sbi->s_chksum_driver = crypto_alloc_shash("crc32", 0, 0);
3863 if (IS_ERR(sbi->s_chksum_driver)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003864 f2fs_err(sbi, "Cannot load crc32 driver.");
Keith Mok43b65732016-03-02 12:04:24 -08003865 err = PTR_ERR(sbi->s_chksum_driver);
3866 sbi->s_chksum_driver = NULL;
3867 goto free_sbi;
3868 }
3869
Namjae Jeonff9234a2013-01-12 14:41:13 +09003870 /* set a block size */
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003871 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003872 f2fs_err(sbi, "unable to set blocksize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003873 goto free_sbi;
Namjae Jeona07ef782012-12-30 14:52:05 +09003874 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003875
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003876 err = read_raw_super_block(sbi, &raw_super, &valid_super_block,
Chao Yue8240f62015-12-15 17:19:26 +08003877 &recovery);
Gu Zheng9076a752013-10-14 18:47:11 +08003878 if (err)
3879 goto free_sbi;
3880
Gu Zheng5fb08372013-06-07 14:16:53 +08003881 sb->s_fs_info = sbi;
Jaegeuk Kim52763a42016-06-13 09:47:48 -07003882 sbi->raw_super = raw_super;
3883
Chao Yu704956e2017-07-31 20:19:09 +08003884 /* precompute checksum seed for metadata */
Chao Yu7beb01f2018-10-24 18:34:26 +08003885 if (f2fs_sb_has_inode_chksum(sbi))
Chao Yu704956e2017-07-31 20:19:09 +08003886 sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
3887 sizeof(raw_super->uuid));
3888
Yunlei He498c5e92015-05-07 18:11:37 +08003889 default_options(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003890 /* parse mount options */
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003891 options = kstrdup((const char *)data, GFP_KERNEL);
3892 if (data && !options) {
3893 err = -ENOMEM;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003894 goto free_sb_buf;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003895 }
3896
Eric Biggersed318a62020-05-12 16:32:50 -07003897 err = parse_options(sb, options, false);
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003898 if (err)
3899 goto free_options;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003900
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003901 sb->s_maxbytes = max_file_blocks(NULL) <<
Chao Yue0afc4d2015-12-31 14:35:37 +08003902 le32_to_cpu(raw_super->log_blocksize);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003903 sb->s_max_links = F2FS_LINK_MAX;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003904
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003905 err = f2fs_setup_casefold(sbi);
3906 if (err)
3907 goto free_options;
3908
Chao Yu0abd6752017-07-09 00:13:07 +08003909#ifdef CONFIG_QUOTA
3910 sb->dq_op = &f2fs_quota_operations;
Jaegeuk Kimbc88ac92019-05-20 16:17:56 -07003911 sb->s_qcop = &f2fs_quotactl_ops;
Chao Yu5c571322017-07-26 00:01:41 +08003912 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Chao Yu292c196a2017-11-16 16:59:14 +08003913
Chao Yu7beb01f2018-10-24 18:34:26 +08003914 if (f2fs_sb_has_quota_ino(sbi)) {
Chao Yu292c196a2017-11-16 16:59:14 +08003915 for (i = 0; i < MAXQUOTAS; i++) {
3916 if (f2fs_qf_ino(sbi->sb, i))
3917 sbi->nquota_files++;
3918 }
3919 }
Chao Yu0abd6752017-07-09 00:13:07 +08003920#endif
3921
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003922 sb->s_op = &f2fs_sops;
Chandan Rajendra643fa962018-12-12 15:20:12 +05303923#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003924 sb->s_cop = &f2fs_cryptops;
Eric Biggersffcc41822017-10-09 12:15:38 -07003925#endif
Eric Biggers95ae2512019-07-22 09:26:24 -07003926#ifdef CONFIG_FS_VERITY
3927 sb->s_vop = &f2fs_verityops;
3928#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003929 sb->s_xattr = f2fs_xattr_handlers;
3930 sb->s_export_op = &f2fs_export_ops;
3931 sb->s_magic = F2FS_SUPER_MAGIC;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003932 sb->s_time_gran = 1;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08003933 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
3934 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Christoph Hellwig85787092017-05-10 15:06:33 +02003935 memcpy(&sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
Yufen Yu578c6472018-01-09 19:33:39 +08003936 sb->s_iflags |= SB_I_CGROUPWB;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003937
3938 /* init f2fs-specific super block info */
Chao Yue8240f62015-12-15 17:19:26 +08003939 sbi->valid_super_block = valid_super_block;
Chao Yufb24fea2020-01-14 19:36:50 +08003940 init_rwsem(&sbi->gc_lock);
Jaegeuk Kim853137c2018-08-09 17:53:34 -07003941 mutex_init(&sbi->writepages);
Sahitya Tummala87699182020-11-23 10:58:32 +05303942 init_rwsem(&sbi->cp_global_sem);
Chao Yub3582c62014-07-03 18:58:39 +08003943 init_rwsem(&sbi->node_write);
Yunlei He59c90812017-03-13 20:22:18 +08003944 init_rwsem(&sbi->node_change);
Jaegeuk Kim315df832015-08-11 12:45:39 -07003945
3946 /* disallow all the data/node/meta page writes */
3947 set_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003948 spin_lock_init(&sbi->stat_lock);
Jaegeuk Kim971767c2013-11-18 17:16:17 +09003949
Chao Yub0af6d42017-08-02 23:21:48 +08003950 /* init iostat info */
3951 spin_lock_init(&sbi->iostat_lock);
3952 sbi->iostat_enable = false;
Daeho Jeong2bc4bea2020-03-30 03:30:59 +00003953 sbi->iostat_period_ms = DEFAULT_IOSTAT_PERIOD_MS;
Chao Yub0af6d42017-08-02 23:21:48 +08003954
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003955 for (i = 0; i < NR_PAGE_TYPE; i++) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08003956 int n = (i == META) ? 1 : NR_TEMP_TYPE;
Jaegeuk Kima912b542017-05-10 11:18:25 -07003957 int j;
3958
Kees Cookc8606592018-06-12 14:28:16 -07003959 sbi->write_io[i] =
3960 f2fs_kmalloc(sbi,
3961 array_size(n,
3962 sizeof(struct f2fs_bio_info)),
3963 GFP_KERNEL);
Christophe JAILLETb63def92017-06-11 09:21:11 +02003964 if (!sbi->write_io[i]) {
3965 err = -ENOMEM;
Chao Yu0b2103e82018-09-05 14:54:01 +08003966 goto free_bio_info;
Christophe JAILLETb63def92017-06-11 09:21:11 +02003967 }
Jaegeuk Kima912b542017-05-10 11:18:25 -07003968
3969 for (j = HOT; j < n; j++) {
3970 init_rwsem(&sbi->write_io[i][j].io_rwsem);
3971 sbi->write_io[i][j].sbi = sbi;
3972 sbi->write_io[i][j].bio = NULL;
Chao Yufb830fc2017-05-19 23:37:01 +08003973 spin_lock_init(&sbi->write_io[i][j].io_lock);
3974 INIT_LIST_HEAD(&sbi->write_io[i][j].io_list);
Chao Yu0b20fce2019-09-30 18:53:25 +08003975 INIT_LIST_HEAD(&sbi->write_io[i][j].bio_list);
3976 init_rwsem(&sbi->write_io[i][j].bio_list_lock);
Jaegeuk Kima912b542017-05-10 11:18:25 -07003977 }
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003978 }
Jaegeuk Kim971767c2013-11-18 17:16:17 +09003979
Jaegeuk Kimb873b792016-08-04 11:38:25 -07003980 init_rwsem(&sbi->cp_rwsem);
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07003981 init_rwsem(&sbi->quota_sem);
Changman Leefb51b5e2013-11-07 12:48:25 +09003982 init_waitqueue_head(&sbi->cp_wait);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003983 init_sb_info(sbi);
3984
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003985 err = init_percpu_info(sbi);
3986 if (err)
Chao Yud7997e62018-01-17 16:31:35 +08003987 goto free_bio_info;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003988
Chao Yuc72db712019-07-12 16:55:42 +08003989 if (F2FS_IO_ALIGNED(sbi)) {
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08003990 sbi->write_io_dummy =
Chao Yua3ebfe42017-02-27 18:43:13 +08003991 mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi) - 1), 0);
Chao Yu1727f312017-06-12 09:44:27 +08003992 if (!sbi->write_io_dummy) {
3993 err = -ENOMEM;
Chao Yud7997e62018-01-17 16:31:35 +08003994 goto free_percpu;
Chao Yu1727f312017-06-12 09:44:27 +08003995 }
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08003996 }
3997
Chao Yua9991502020-02-25 18:17:10 +08003998 /* init per sbi slab cache */
3999 err = f2fs_init_xattr_caches(sbi);
4000 if (err)
4001 goto free_io_dummy;
Chao Yu31083032020-09-14 17:05:13 +08004002 err = f2fs_init_page_array_cache(sbi);
4003 if (err)
4004 goto free_xattr_cache;
Chao Yua9991502020-02-25 18:17:10 +08004005
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004006 /* get an inode for meta space */
4007 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
4008 if (IS_ERR(sbi->meta_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004009 f2fs_err(sbi, "Failed to read F2FS meta data inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004010 err = PTR_ERR(sbi->meta_inode);
Chao Yu31083032020-09-14 17:05:13 +08004011 goto free_page_array_cache;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004012 }
4013
Chao Yu4d57b862018-05-30 00:20:41 +08004014 err = f2fs_get_valid_checkpoint(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004015 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004016 f2fs_err(sbi, "Failed to get valid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004017 goto free_meta_inode;
Namjae Jeona07ef782012-12-30 14:52:05 +09004018 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004019
Chao Yuaf033b22018-09-20 20:05:00 +08004020 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_QUOTA_NEED_FSCK_FLAG))
4021 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004022 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_DISABLED_QUICK_FLAG)) {
4023 set_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
4024 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_QUICK_INTERVAL;
4025 }
Chao Yuaf033b22018-09-20 20:05:00 +08004026
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08004027 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FSCK_FLAG))
4028 set_sbi_flag(sbi, SBI_NEED_FSCK);
4029
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004030 /* Initialize device list */
4031 err = f2fs_scan_devices(sbi);
4032 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004033 f2fs_err(sbi, "Failed to find devices");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004034 goto free_devices;
4035 }
4036
Chao Yu4c8ff702019-11-01 18:07:14 +08004037 err = f2fs_init_post_read_wq(sbi);
4038 if (err) {
4039 f2fs_err(sbi, "Failed to initialize post read workqueue");
4040 goto free_devices;
4041 }
4042
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004043 sbi->total_valid_node_count =
4044 le32_to_cpu(sbi->ckpt->valid_node_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07004045 percpu_counter_set(&sbi->total_valid_inode_count,
4046 le32_to_cpu(sbi->ckpt->valid_inode_count));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004047 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
4048 sbi->total_valid_block_count =
4049 le64_to_cpu(sbi->ckpt->valid_block_count);
4050 sbi->last_valid_block_count = sbi->total_valid_block_count;
Chao Yudaeb4332017-06-26 16:24:41 +08004051 sbi->reserved_blocks = 0;
Yunlong Song80d42142017-10-27 20:45:05 +08004052 sbi->current_reserved_blocks = 0;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08004053 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07004054 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07004055
Chao Yuc227f912015-12-16 13:09:20 +08004056 for (i = 0; i < NR_INODE_TYPE; i++) {
4057 INIT_LIST_HEAD(&sbi->inode_list[i]);
4058 spin_lock_init(&sbi->inode_lock[i]);
4059 }
Chao Yu040d2bb2019-05-20 17:36:59 +08004060 mutex_init(&sbi->flush_lock);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004061
Chao Yu4d57b862018-05-30 00:20:41 +08004062 f2fs_init_extent_cache_info(sbi);
Chao Yu1dcc3362015-02-05 17:57:31 +08004063
Chao Yu4d57b862018-05-30 00:20:41 +08004064 f2fs_init_ino_entry_info(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004065
Chao Yu50fa53e2018-08-02 23:03:19 +08004066 f2fs_init_fsync_node_info(sbi);
4067
Daeho Jeong261eeb92021-01-19 09:00:42 +09004068 /* setup checkpoint request control and start checkpoint issue thread */
4069 f2fs_init_ckpt_req_control(sbi);
Chao Yu3f7070b2021-03-17 17:56:03 +08004070 if (!f2fs_readonly(sb) && !test_opt(sbi, DISABLE_CHECKPOINT) &&
Daeho Jeong261eeb92021-01-19 09:00:42 +09004071 test_opt(sbi, MERGE_CHECKPOINT)) {
4072 err = f2fs_start_ckpt_thread(sbi);
4073 if (err) {
4074 f2fs_err(sbi,
4075 "Failed to start F2FS issue_checkpoint_thread (%d)",
4076 err);
4077 goto stop_ckpt_thread;
4078 }
4079 }
4080
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004081 /* setup f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08004082 err = f2fs_build_segment_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004083 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004084 f2fs_err(sbi, "Failed to initialize F2FS segment manager (%d)",
4085 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004086 goto free_sm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004087 }
Chao Yu4d57b862018-05-30 00:20:41 +08004088 err = f2fs_build_node_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004089 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004090 f2fs_err(sbi, "Failed to initialize F2FS node manager (%d)",
4091 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004092 goto free_nm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004093 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004094
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004095 /* For write statistics */
Chao Yu3a0a9cb2020-11-27 21:20:06 +08004096 sbi->sectors_written_start = f2fs_get_sectors_written(sbi);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004097
4098 /* Read accumulated write IO statistics if exists */
4099 seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
4100 if (__exist_node_summaries(sbi))
4101 sbi->kbytes_written =
Shuoran Liub2dde6f2016-03-29 18:00:15 +08004102 le64_to_cpu(seg_i->journal->info.kbytes_written);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004103
Chao Yu4d57b862018-05-30 00:20:41 +08004104 f2fs_build_gc_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004105
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304106 err = f2fs_build_stats(sbi);
4107 if (err)
4108 goto free_nm;
4109
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004110 /* get an inode for node space */
4111 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
4112 if (IS_ERR(sbi->node_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004113 f2fs_err(sbi, "Failed to read node inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004114 err = PTR_ERR(sbi->node_inode);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304115 goto free_stats;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004116 }
4117
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004118 /* read root inode and dentry */
4119 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
4120 if (IS_ERR(root)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004121 f2fs_err(sbi, "Failed to read root inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004122 err = PTR_ERR(root);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304123 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004124 }
Chao Yubcbfbd62018-06-29 00:19:25 +08004125 if (!S_ISDIR(root->i_mode) || !root->i_blocks ||
4126 !root->i_size || !root->i_nlink) {
Chao Yu9d847952014-07-25 12:55:09 +08004127 iput(root);
Chao Yu8f99a942013-11-28 15:43:43 +08004128 err = -EINVAL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304129 goto free_node_inode;
Chao Yu8f99a942013-11-28 15:43:43 +08004130 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004131
4132 sb->s_root = d_make_root(root); /* allocate root dentry */
4133 if (!sb->s_root) {
4134 err = -ENOMEM;
Chengguang Xu025cdb162019-01-23 15:49:44 +08004135 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004136 }
4137
Chao Yu6ce19af2021-05-20 19:51:50 +08004138 err = f2fs_init_compress_inode(sbi);
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004139 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004140 goto free_root_inode;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004141
Chao Yu6ce19af2021-05-20 19:51:50 +08004142 err = f2fs_register_sysfs(sbi);
4143 if (err)
4144 goto free_compress_inode;
4145
Jaegeuk Kimea676732017-10-06 09:14:28 -07004146#ifdef CONFIG_QUOTA
Sheng Yong76cf05d2018-07-26 19:24:25 +08004147 /* Enable quota usage during mount */
Chao Yu7beb01f2018-10-24 18:34:26 +08004148 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07004149 err = f2fs_enable_quotas(sb);
Jaegeuk Kim730746c2018-10-02 17:20:58 -07004150 if (err)
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004151 f2fs_err(sbi, "Cannot turn on quotas: error %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07004152 }
4153#endif
Chao Yu7a88ddb2020-02-27 19:30:05 +08004154 /* if there are any orphan inodes, free them */
Chao Yu4d57b862018-05-30 00:20:41 +08004155 err = f2fs_recover_orphan_inodes(sbi);
Chao Yu4b2414d2017-08-08 10:54:31 +08004156 if (err)
Jaegeuk Kimea676732017-10-06 09:14:28 -07004157 goto free_meta;
Chao Yu4b2414d2017-08-08 10:54:31 +08004158
Daniel Rosenberg43549942018-08-20 19:21:43 -07004159 if (unlikely(is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)))
Chao Yuaa2c8c42019-02-19 16:23:53 +08004160 goto reset_checkpoint;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004161
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004162 /* recover fsynced data */
Chao Yua9117ec2020-02-14 17:45:11 +08004163 if (!test_opt(sbi, DISABLE_ROLL_FORWARD) &&
4164 !test_opt(sbi, NORECOVERY)) {
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004165 /*
4166 * mount should be failed, when device has readonly mode, and
4167 * previous checkpoint was not done by clean system shutdown.
4168 */
Chao Yub61af312019-04-22 20:22:37 +08004169 if (f2fs_hw_is_readonly(sbi)) {
Chao Yu23738e72021-03-31 11:16:32 +08004170 if (!is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4171 err = f2fs_recover_fsync_data(sbi, true);
4172 if (err > 0) {
4173 err = -EROFS;
4174 f2fs_err(sbi, "Need to recover fsync data, but "
4175 "write access unavailable, please try "
4176 "mount w/ disable_roll_forward or norecovery");
4177 }
4178 if (err < 0)
4179 goto free_meta;
4180 }
4181 f2fs_info(sbi, "write access unavailable, skipping recovery");
Chao Yub61af312019-04-22 20:22:37 +08004182 goto reset_checkpoint;
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004183 }
Chao Yu2adc3502015-03-16 21:08:44 +08004184
4185 if (need_fsck)
4186 set_sbi_flag(sbi, SBI_NEED_FSCK);
4187
Chao Yuaa2c8c42019-02-19 16:23:53 +08004188 if (skip_recovery)
4189 goto reset_checkpoint;
Jaegeuk Kima468f0e2016-09-19 17:55:10 -07004190
Chao Yu4d57b862018-05-30 00:20:41 +08004191 err = f2fs_recover_fsync_data(sbi, false);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004192 if (err < 0) {
Chao Yuaa2c8c42019-02-19 16:23:53 +08004193 if (err != -ENOMEM)
4194 skip_recovery = true;
Chao Yu2adc3502015-03-16 21:08:44 +08004195 need_fsck = true;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004196 f2fs_err(sbi, "Cannot recover all fsync data errno=%d",
4197 err);
Chao Yu4b2414d2017-08-08 10:54:31 +08004198 goto free_meta;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004199 }
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004200 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08004201 err = f2fs_recover_fsync_data(sbi, true);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004202
4203 if (!f2fs_readonly(sb) && err > 0) {
4204 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004205 f2fs_err(sbi, "Need to recover fsync data");
Jaegeuk Kimea676732017-10-06 09:14:28 -07004206 goto free_meta;
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004207 }
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004208 }
Shin'ichiro Kawasakid508c942019-12-09 19:44:45 +09004209
4210 /*
4211 * If the f2fs is not readonly and fsync data recovery succeeds,
4212 * check zoned block devices' write pointer consistency.
4213 */
4214 if (!err && !f2fs_readonly(sb) && f2fs_sb_has_blkzoned(sbi)) {
4215 err = f2fs_check_write_pointer(sbi);
4216 if (err)
4217 goto free_meta;
4218 }
4219
Chao Yuaa2c8c42019-02-19 16:23:53 +08004220reset_checkpoint:
Chao Yu093749e2020-08-04 21:14:49 +08004221 f2fs_init_inmem_curseg(sbi);
4222
Chao Yu4d57b862018-05-30 00:20:41 +08004223 /* f2fs_recover_fsync_data() cleared this already */
Jaegeuk Kim315df832015-08-11 12:45:39 -07004224 clear_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004225
Daniel Rosenberg43549942018-08-20 19:21:43 -07004226 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
4227 err = f2fs_disable_checkpoint(sbi);
4228 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004229 goto sync_free_meta;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004230 } else if (is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)) {
4231 f2fs_enable_checkpoint(sbi);
4232 }
4233
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004234 /*
4235 * If filesystem is not mounted as read-only then
4236 * do start the gc_thread.
4237 */
Chao Yu5911d2d2021-03-27 17:57:06 +08004238 if ((F2FS_OPTION(sbi).bggc_mode != BGGC_MODE_OFF ||
4239 test_opt(sbi, GC_MERGE)) && !f2fs_readonly(sb)) {
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004240 /* After POR, we can run background GC thread.*/
Chao Yu4d57b862018-05-30 00:20:41 +08004241 err = f2fs_start_gc_thread(sbi);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004242 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004243 goto sync_free_meta;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004244 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08004245 kvfree(options);
hujianyangda554e42015-05-21 14:42:53 +08004246
4247 /* recover broken superblock */
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07004248 if (recovery) {
Chao Yu41214b32016-02-22 18:33:20 +08004249 err = f2fs_commit_super(sbi, true);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004250 f2fs_info(sbi, "Try to recover %dth superblock, ret: %d",
4251 sbi->valid_super_block ? 1 : 2, err);
hujianyangda554e42015-05-21 14:42:53 +08004252 }
4253
Chao Yubae01ed2017-11-30 19:28:20 +08004254 f2fs_join_shrinker(sbi);
4255
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08004256 f2fs_tuning_parameters(sbi);
4257
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004258 f2fs_notice(sbi, "Mounted with checkpoint version = %llx",
4259 cur_cp_version(F2FS_CKPT(sbi)));
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08004260 f2fs_update_time(sbi, CP_TIME);
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08004261 f2fs_update_time(sbi, REQ_TIME);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004262 clear_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004263 return 0;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004264
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004265sync_free_meta:
4266 /* safe to flush all the data */
4267 sync_filesystem(sbi->sb);
Chao Yuaa2c8c42019-02-19 16:23:53 +08004268 retry_cnt = 0;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004269
Chao Yu4b2414d2017-08-08 10:54:31 +08004270free_meta:
Jaegeuk Kimea676732017-10-06 09:14:28 -07004271#ifdef CONFIG_QUOTA
Sheng Yong26b5a072018-10-12 18:49:26 +08004272 f2fs_truncate_quota_inode_pages(sb);
Chao Yu7beb01f2018-10-24 18:34:26 +08004273 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb))
Jaegeuk Kimea676732017-10-06 09:14:28 -07004274 f2fs_quota_off_umount(sbi->sb);
4275#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08004276 /*
Chao Yu4d57b862018-05-30 00:20:41 +08004277 * Some dirty meta pages can be produced by f2fs_recover_orphan_inodes()
Chao Yu4b2414d2017-08-08 10:54:31 +08004278 * failed by EIO. Then, iput(node_inode) can trigger balance_fs_bg()
Chao Yu4d57b862018-05-30 00:20:41 +08004279 * followed by f2fs_write_checkpoint() through f2fs_write_node_pages(), which
4280 * falls into an infinite loop in f2fs_sync_meta_pages().
Chao Yu4b2414d2017-08-08 10:54:31 +08004281 */
4282 truncate_inode_pages_final(META_MAPPING(sbi));
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004283 /* evict some inodes being cached by GC */
4284 evict_inodes(sb);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004285 f2fs_unregister_sysfs(sbi);
Chao Yu6ce19af2021-05-20 19:51:50 +08004286free_compress_inode:
4287 f2fs_destroy_compress_inode(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004288free_root_inode:
4289 dput(sb->s_root);
4290 sb->s_root = NULL;
Chao Yubae01ed2017-11-30 19:28:20 +08004291free_node_inode:
Chao Yu4d57b862018-05-30 00:20:41 +08004292 f2fs_release_ino_entry(sbi, true);
Chao Yubae01ed2017-11-30 19:28:20 +08004293 truncate_inode_pages_final(NODE_MAPPING(sbi));
4294 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004295 sbi->node_inode = NULL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304296free_stats:
4297 f2fs_destroy_stats(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004298free_nm:
Chao Yu4d57b862018-05-30 00:20:41 +08004299 f2fs_destroy_node_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004300free_sm:
Chao Yu4d57b862018-05-30 00:20:41 +08004301 f2fs_destroy_segment_manager(sbi);
Chao Yu4c8ff702019-11-01 18:07:14 +08004302 f2fs_destroy_post_read_wq(sbi);
Daeho Jeong261eeb92021-01-19 09:00:42 +09004303stop_ckpt_thread:
4304 f2fs_stop_ckpt_thread(sbi);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004305free_devices:
4306 destroy_device_list(sbi);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004307 kvfree(sbi->ckpt);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004308free_meta_inode:
4309 make_bad_inode(sbi->meta_inode);
4310 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004311 sbi->meta_inode = NULL;
Chao Yu31083032020-09-14 17:05:13 +08004312free_page_array_cache:
4313 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08004314free_xattr_cache:
4315 f2fs_destroy_xattr_caches(sbi);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004316free_io_dummy:
4317 mempool_destroy(sbi->write_io_dummy);
Chao Yud7997e62018-01-17 16:31:35 +08004318free_percpu:
4319 destroy_percpu_info(sbi);
4320free_bio_info:
Jaegeuk Kima912b542017-05-10 11:18:25 -07004321 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08004322 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004323
4324#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07004325 utf8_unload(sb->s_encoding);
Hyeongseok Kim89ff6002020-11-12 18:14:54 +09004326 sb->s_encoding = NULL;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004327#endif
Chao Yud7997e62018-01-17 16:31:35 +08004328free_options:
Chao Yu4b2414d2017-08-08 10:54:31 +08004329#ifdef CONFIG_QUOTA
4330 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08004331 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08004332#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07004333 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004334 kvfree(options);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004335free_sb_buf:
Denis Efremov742532d2020-06-10 01:14:46 +03004336 kfree(raw_super);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004337free_sbi:
Keith Mok43b65732016-03-02 12:04:24 -08004338 if (sbi->s_chksum_driver)
4339 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03004340 kfree(sbi);
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004341
4342 /* give only one another chance */
Chao Yuaa2c8c42019-02-19 16:23:53 +08004343 if (retry_cnt > 0 && skip_recovery) {
4344 retry_cnt--;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004345 shrink_dcache_sb(sb);
4346 goto try_onemore;
4347 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004348 return err;
4349}
4350
4351static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
4352 const char *dev_name, void *data)
4353{
4354 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
4355}
4356
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004357static void kill_f2fs_super(struct super_block *sb)
4358{
Chao Yucce13252017-06-29 23:17:45 +08004359 if (sb->s_root) {
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004360 struct f2fs_sb_info *sbi = F2FS_SB(sb);
4361
4362 set_sbi_flag(sbi, SBI_IS_CLOSE);
4363 f2fs_stop_gc_thread(sbi);
4364 f2fs_stop_discard_thread(sbi);
4365
Chao Yu6ce19af2021-05-20 19:51:50 +08004366#ifdef CONFIG_F2FS_FS_COMPRESSION
4367 /*
4368 * latter evict_inode() can bypass checking and invalidating
4369 * compress inode cache.
4370 */
4371 if (test_opt(sbi, COMPRESS_CACHE))
4372 truncate_inode_pages_final(COMPRESS_MAPPING(sbi));
4373#endif
4374
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004375 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
4376 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4377 struct cp_control cpc = {
4378 .reason = CP_UMOUNT,
4379 };
4380 f2fs_write_checkpoint(sbi, &cpc);
4381 }
Chao Yu13787522018-08-22 17:11:05 +08004382
4383 if (is_sbi_flag_set(sbi, SBI_IS_RECOVERED) && f2fs_readonly(sb))
4384 sb->s_flags &= ~SB_RDONLY;
Chao Yucce13252017-06-29 23:17:45 +08004385 }
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004386 kill_block_super(sb);
4387}
4388
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004389static struct file_system_type f2fs_fs_type = {
4390 .owner = THIS_MODULE,
4391 .name = "f2fs",
4392 .mount = f2fs_mount,
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004393 .kill_sb = kill_f2fs_super,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004394 .fs_flags = FS_REQUIRES_DEV,
4395};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08004396MODULE_ALIAS_FS("f2fs");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004397
Namjae Jeon6e6093a2013-01-17 00:08:30 +09004398static int __init init_inodecache(void)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004399{
Vladimir Davydov5d097052016-01-14 15:18:21 -08004400 f2fs_inode_cachep = kmem_cache_create("f2fs_inode_cache",
4401 sizeof(struct f2fs_inode_info), 0,
4402 SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT, NULL);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09004403 if (!f2fs_inode_cachep)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004404 return -ENOMEM;
4405 return 0;
4406}
4407
4408static void destroy_inodecache(void)
4409{
4410 /*
4411 * Make sure all delayed rcu free inodes are flushed before we
4412 * destroy cache.
4413 */
4414 rcu_barrier();
4415 kmem_cache_destroy(f2fs_inode_cachep);
4416}
4417
4418static int __init init_f2fs_fs(void)
4419{
4420 int err;
4421
Anatoly Pugachev4071e672018-05-28 02:06:37 +03004422 if (PAGE_SIZE != F2FS_BLKSIZE) {
4423 printk("F2FS not supported on PAGE_SIZE(%lu) != %d\n",
4424 PAGE_SIZE, F2FS_BLKSIZE);
4425 return -EINVAL;
4426 }
4427
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004428 err = init_inodecache();
4429 if (err)
4430 goto fail;
Chao Yu4d57b862018-05-30 00:20:41 +08004431 err = f2fs_create_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004432 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004433 goto free_inodecache;
Chao Yu4d57b862018-05-30 00:20:41 +08004434 err = f2fs_create_segment_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004435 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004436 goto free_node_manager_caches;
Chao Yu4d57b862018-05-30 00:20:41 +08004437 err = f2fs_create_checkpoint_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004438 if (err)
Chao Yu06292072014-12-29 15:56:18 +08004439 goto free_segment_manager_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004440 err = f2fs_create_recovery_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004441 if (err)
4442 goto free_checkpoint_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004443 err = f2fs_create_extent_cache();
4444 if (err)
4445 goto free_recovery_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004446 err = f2fs_create_garbage_collection_cache();
Chao Yua3981012017-06-14 17:39:46 +08004447 if (err)
Chao Yu1dcc3362015-02-05 17:57:31 +08004448 goto free_extent_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004449 err = f2fs_init_sysfs();
4450 if (err)
4451 goto free_garbage_collection_cache;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004452 err = register_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimcfc4d972015-05-15 15:37:24 -07004453 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004454 goto free_sysfs;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004455 err = register_filesystem(&f2fs_fs_type);
4456 if (err)
4457 goto free_shrinker;
Greg Kroah-Hartman21acc072019-01-04 14:26:18 +01004458 f2fs_create_root_stats();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004459 err = f2fs_init_post_read_processing();
4460 if (err)
4461 goto free_root_stats;
Chao Yu0b20fce2019-09-30 18:53:25 +08004462 err = f2fs_init_bio_entry_cache();
4463 if (err)
4464 goto free_post_read;
Chao Yuf5438052019-12-04 09:52:58 +08004465 err = f2fs_init_bioset();
4466 if (err)
4467 goto free_bio_enrty_cache;
Chao Yu5e6bbde2020-04-08 19:56:05 +08004468 err = f2fs_init_compress_mempool();
4469 if (err)
4470 goto free_bioset;
Chao Yuc68d6c82020-09-14 17:05:14 +08004471 err = f2fs_init_compress_cache();
4472 if (err)
4473 goto free_compress_mempool;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004474 err = f2fs_create_casefold_cache();
4475 if (err)
4476 goto free_compress_cache;
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004477 return 0;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004478free_compress_cache:
4479 f2fs_destroy_compress_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004480free_compress_mempool:
4481 f2fs_destroy_compress_mempool();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004482free_bioset:
4483 f2fs_destroy_bioset();
Chao Yuf5438052019-12-04 09:52:58 +08004484free_bio_enrty_cache:
4485 f2fs_destroy_bio_entry_cache();
Chao Yu0b20fce2019-09-30 18:53:25 +08004486free_post_read:
4487 f2fs_destroy_post_read_processing();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004488free_root_stats:
4489 f2fs_destroy_root_stats();
Chao Yu787c7b8c2015-10-29 09:13:04 +08004490 unregister_filesystem(&f2fs_fs_type);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004491free_shrinker:
4492 unregister_shrinker(&f2fs_shrinker_info);
Chao Yua3981012017-06-14 17:39:46 +08004493free_sysfs:
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004494 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004495free_garbage_collection_cache:
4496 f2fs_destroy_garbage_collection_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004497free_extent_cache:
Chao Yu4d57b862018-05-30 00:20:41 +08004498 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004499free_recovery_cache:
4500 f2fs_destroy_recovery_cache();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004501free_checkpoint_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004502 f2fs_destroy_checkpoint_caches();
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004503free_segment_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004504 f2fs_destroy_segment_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004505free_node_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004506 f2fs_destroy_node_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004507free_inodecache:
4508 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004509fail:
4510 return err;
4511}
4512
4513static void __exit exit_f2fs_fs(void)
4514{
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004515 f2fs_destroy_casefold_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004516 f2fs_destroy_compress_cache();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004517 f2fs_destroy_compress_mempool();
Chao Yuf5438052019-12-04 09:52:58 +08004518 f2fs_destroy_bioset();
Chao Yu0b20fce2019-09-30 18:53:25 +08004519 f2fs_destroy_bio_entry_cache();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004520 f2fs_destroy_post_read_processing();
Namjae Jeon4589d252013-01-15 19:58:47 +09004521 f2fs_destroy_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004522 unregister_filesystem(&f2fs_fs_type);
Tiezhu Yangb8bef792016-05-18 08:02:25 +08004523 unregister_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004524 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004525 f2fs_destroy_garbage_collection_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004526 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004527 f2fs_destroy_recovery_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004528 f2fs_destroy_checkpoint_caches();
4529 f2fs_destroy_segment_manager_caches();
4530 f2fs_destroy_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004531 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004532}
4533
4534module_init(init_f2fs_fs)
4535module_exit(exit_f2fs_fs)
4536
4537MODULE_AUTHOR("Samsung Electronics's Praesto Team");
4538MODULE_DESCRIPTION("Flash Friendly File System");
4539MODULE_LICENSE("GPL");
Chao Yu0dd57172021-05-18 09:57:54 +08004540MODULE_SOFTDEP("pre: crc32");
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07004541