blob: 3617aa5f0477e6b0030a8c7fda9c4dce08ba4257 [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,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900158 Opt_err,
159};
160
161static match_table_t f2fs_tokens = {
Namjae Jeon696c0182013-06-16 09:48:48 +0900162 {Opt_gc_background, "background_gc=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900163 {Opt_disable_roll_forward, "disable_roll_forward"},
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800164 {Opt_norecovery, "norecovery"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900165 {Opt_discard, "discard"},
Chao Yu64058be2016-07-03 22:05:14 +0800166 {Opt_nodiscard, "nodiscard"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900167 {Opt_noheap, "no_heap"},
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400168 {Opt_heap, "heap"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900169 {Opt_user_xattr, "user_xattr"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900170 {Opt_nouser_xattr, "nouser_xattr"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900171 {Opt_acl, "acl"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900172 {Opt_noacl, "noacl"},
173 {Opt_active_logs, "active_logs=%u"},
174 {Opt_disable_ext_identify, "disable_ext_identify"},
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900175 {Opt_inline_xattr, "inline_xattr"},
Chao Yu23cf7212017-02-15 10:34:45 +0800176 {Opt_noinline_xattr, "noinline_xattr"},
Chao Yu6afc6622017-09-06 21:59:50 +0800177 {Opt_inline_xattr_size, "inline_xattr_size=%u"},
Huajun Li8274de72013-11-10 23:13:17 +0800178 {Opt_inline_data, "inline_data"},
Chao Yu5efd3c62014-09-24 18:16:13 +0800179 {Opt_inline_dentry, "inline_dentry"},
Chao Yu97c17942016-05-09 19:56:34 +0800180 {Opt_noinline_dentry, "noinline_dentry"},
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900181 {Opt_flush_merge, "flush_merge"},
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700182 {Opt_noflush_merge, "noflush_merge"},
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700183 {Opt_nobarrier, "nobarrier"},
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700184 {Opt_fastboot, "fastboot"},
Chao Yu89672152015-02-05 17:55:51 +0800185 {Opt_extent_cache, "extent_cache"},
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700186 {Opt_noextent_cache, "noextent_cache"},
Wanpeng Li75342792015-03-24 10:20:27 +0800187 {Opt_noinline_data, "noinline_data"},
Chao Yu343f40f2015-12-16 13:12:16 +0800188 {Opt_data_flush, "data_flush"},
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800189 {Opt_reserve_root, "reserve_root=%u"},
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800190 {Opt_resgid, "resgid=%u"},
191 {Opt_resuid, "resuid=%u"},
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700192 {Opt_mode, "mode=%s"},
Jaegeuk Kimec915382016-12-21 17:09:19 -0800193 {Opt_io_size_bits, "io_bits=%u"},
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700194 {Opt_fault_injection, "fault_injection=%u"},
Chao Yud4945002018-08-08 17:36:41 +0800195 {Opt_fault_type, "fault_type=%u"},
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700196 {Opt_lazytime, "lazytime"},
197 {Opt_nolazytime, "nolazytime"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800198 {Opt_quota, "quota"},
199 {Opt_noquota, "noquota"},
Chao Yu0abd6752017-07-09 00:13:07 +0800200 {Opt_usrquota, "usrquota"},
201 {Opt_grpquota, "grpquota"},
Chao Yu5c571322017-07-26 00:01:41 +0800202 {Opt_prjquota, "prjquota"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800203 {Opt_usrjquota, "usrjquota=%s"},
204 {Opt_grpjquota, "grpjquota=%s"},
205 {Opt_prjjquota, "prjjquota=%s"},
206 {Opt_offusrjquota, "usrjquota="},
207 {Opt_offgrpjquota, "grpjquota="},
208 {Opt_offprjjquota, "prjjquota="},
209 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
210 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
211 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900212 {Opt_whint, "whint_mode=%s"},
Jaegeuk Kim07939622018-02-18 08:50:49 -0800213 {Opt_alloc, "alloc_mode=%s"},
Junling Zheng93cf93f2018-03-07 12:07:49 +0800214 {Opt_fsync, "fsync_mode=%s"},
Eric Biggersed318a62020-05-12 16:32:50 -0700215 {Opt_test_dummy_encryption, "test_dummy_encryption=%s"},
Sheng Yongff62af22018-03-15 18:51:42 +0800216 {Opt_test_dummy_encryption, "test_dummy_encryption"},
Satya Tangirala27aacd22020-07-02 01:56:06 +0000217 {Opt_inlinecrypt, "inlinecrypt"},
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700218 {Opt_checkpoint_disable, "checkpoint=disable"},
219 {Opt_checkpoint_disable_cap, "checkpoint=disable:%u"},
220 {Opt_checkpoint_disable_cap_perc, "checkpoint=disable:%u%%"},
221 {Opt_checkpoint_enable, "checkpoint=enable"},
Daeho Jeong261eeb92021-01-19 09:00:42 +0900222 {Opt_checkpoint_merge, "checkpoint_merge"},
223 {Opt_nocheckpoint_merge, "nocheckpoint_merge"},
Chao Yu4c8ff702019-11-01 18:07:14 +0800224 {Opt_compress_algorithm, "compress_algorithm=%s"},
225 {Opt_compress_log_size, "compress_log_size=%u"},
226 {Opt_compress_extension, "compress_extension=%s"},
Fengnan Chang151b1982021-06-08 19:15:08 +0800227 {Opt_nocompress_extension, "nocompress_extension=%s"},
Chao Yub28f0472020-11-26 18:32:09 +0800228 {Opt_compress_chksum, "compress_chksum"},
Daeho Jeong602a16d2020-12-01 13:08:02 +0900229 {Opt_compress_mode, "compress_mode=%s"},
Chao Yu6ce19af2021-05-20 19:51:50 +0800230 {Opt_compress_cache, "compress_cache"},
Chao Yu093749e2020-08-04 21:14:49 +0800231 {Opt_atgc, "atgc"},
Chao Yu5911d2d2021-03-27 17:57:06 +0800232 {Opt_gc_merge, "gc_merge"},
233 {Opt_nogc_merge, "nogc_merge"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900234 {Opt_err, NULL},
235};
236
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800237void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...)
Namjae Jeona07ef782012-12-30 14:52:05 +0900238{
239 struct va_format vaf;
240 va_list args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800241 int level;
Namjae Jeona07ef782012-12-30 14:52:05 +0900242
243 va_start(args, fmt);
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800244
245 level = printk_get_level(fmt);
246 vaf.fmt = printk_skip_level(fmt);
Namjae Jeona07ef782012-12-30 14:52:05 +0900247 vaf.va = &args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800248 printk("%c%cF2FS-fs (%s): %pV\n",
249 KERN_SOH_ASCII, level, sbi->sb->s_id, &vaf);
250
Namjae Jeona07ef782012-12-30 14:52:05 +0900251 va_end(args);
252}
253
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700254#ifdef CONFIG_UNICODE
255static const struct f2fs_sb_encodings {
256 __u16 magic;
257 char *name;
258 char *version;
259} f2fs_sb_encoding_map[] = {
260 {F2FS_ENC_UTF8_12_1, "utf8", "12.1.0"},
261};
262
263static int f2fs_sb_read_encoding(const struct f2fs_super_block *sb,
264 const struct f2fs_sb_encodings **encoding,
265 __u16 *flags)
266{
267 __u16 magic = le16_to_cpu(sb->s_encoding);
268 int i;
269
270 for (i = 0; i < ARRAY_SIZE(f2fs_sb_encoding_map); i++)
271 if (magic == f2fs_sb_encoding_map[i].magic)
272 break;
273
274 if (i >= ARRAY_SIZE(f2fs_sb_encoding_map))
275 return -EINVAL;
276
277 *encoding = &f2fs_sb_encoding_map[i];
278 *flags = le16_to_cpu(sb->s_encoding_flags);
279
280 return 0;
281}
Chao Yu4d9a2bb2021-06-11 07:46:30 +0800282
283struct kmem_cache *f2fs_cf_name_slab;
284static int __init f2fs_create_casefold_cache(void)
285{
286 f2fs_cf_name_slab = f2fs_kmem_cache_create("f2fs_casefolded_name",
287 F2FS_NAME_LEN);
288 if (!f2fs_cf_name_slab)
289 return -ENOMEM;
290 return 0;
291}
292
293static void f2fs_destroy_casefold_cache(void)
294{
295 kmem_cache_destroy(f2fs_cf_name_slab);
296}
297#else
298static int __init f2fs_create_casefold_cache(void) { return 0; }
299static void f2fs_destroy_casefold_cache(void) { }
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700300#endif
301
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800302static inline void limit_reserve_root(struct f2fs_sb_info *sbi)
303{
Daniel Rosenberg9a9aeca2019-05-29 17:49:04 -0700304 block_t limit = min((sbi->user_block_count << 1) / 1000,
305 sbi->user_block_count - sbi->reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800306
307 /* limit is 0.2% */
Chao Yu63189b72018-03-08 14:22:56 +0800308 if (test_opt(sbi, RESERVE_ROOT) &&
309 F2FS_OPTION(sbi).root_reserved_blocks > limit) {
310 F2FS_OPTION(sbi).root_reserved_blocks = limit;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800311 f2fs_info(sbi, "Reduce reserved blocks for root = %u",
312 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800313 }
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800314 if (!test_opt(sbi, RESERVE_ROOT) &&
Chao Yu63189b72018-03-08 14:22:56 +0800315 (!uid_eq(F2FS_OPTION(sbi).s_resuid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800316 make_kuid(&init_user_ns, F2FS_DEF_RESUID)) ||
Chao Yu63189b72018-03-08 14:22:56 +0800317 !gid_eq(F2FS_OPTION(sbi).s_resgid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800318 make_kgid(&init_user_ns, F2FS_DEF_RESGID))))
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800319 f2fs_info(sbi, "Ignore s_resuid=%u, s_resgid=%u w/o reserve_root",
320 from_kuid_munged(&init_user_ns,
321 F2FS_OPTION(sbi).s_resuid),
322 from_kgid_munged(&init_user_ns,
323 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800324}
325
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -0700326static inline void adjust_unusable_cap_perc(struct f2fs_sb_info *sbi)
327{
328 if (!F2FS_OPTION(sbi).unusable_cap_perc)
329 return;
330
331 if (F2FS_OPTION(sbi).unusable_cap_perc == 100)
332 F2FS_OPTION(sbi).unusable_cap = sbi->user_block_count;
333 else
334 F2FS_OPTION(sbi).unusable_cap = (sbi->user_block_count / 100) *
335 F2FS_OPTION(sbi).unusable_cap_perc;
336
337 f2fs_info(sbi, "Adjust unusable cap for checkpoint=disable = %u / %u%%",
338 F2FS_OPTION(sbi).unusable_cap,
339 F2FS_OPTION(sbi).unusable_cap_perc);
340}
341
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900342static void init_once(void *foo)
343{
344 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
345
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900346 inode_init_once(&fi->vfs_inode);
347}
348
Chao Yu4b2414d2017-08-08 10:54:31 +0800349#ifdef CONFIG_QUOTA
350static const char * const quotatypes[] = INITQFNAMES;
351#define QTYPE2NAME(t) (quotatypes[t])
352static int f2fs_set_qf_name(struct super_block *sb, int qtype,
353 substring_t *args)
354{
355 struct f2fs_sb_info *sbi = F2FS_SB(sb);
356 char *qname;
357 int ret = -EINVAL;
358
Chao Yu63189b72018-03-08 14:22:56 +0800359 if (sb_any_quota_loaded(sb) && !F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800360 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800361 return -EINVAL;
362 }
Chao Yu7beb01f2018-10-24 18:34:26 +0800363 if (f2fs_sb_has_quota_ino(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800364 f2fs_info(sbi, "QUOTA feature is enabled, so ignore qf_name");
Jaegeuk Kimea676732017-10-06 09:14:28 -0700365 return 0;
366 }
367
Chao Yu4b2414d2017-08-08 10:54:31 +0800368 qname = match_strdup(args);
369 if (!qname) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800370 f2fs_err(sbi, "Not enough memory for storing quotafile name");
Chengguang Xuf365c6c2019-01-01 21:33:11 +0800371 return -ENOMEM;
Chao Yu4b2414d2017-08-08 10:54:31 +0800372 }
Chao Yu63189b72018-03-08 14:22:56 +0800373 if (F2FS_OPTION(sbi).s_qf_names[qtype]) {
374 if (strcmp(F2FS_OPTION(sbi).s_qf_names[qtype], qname) == 0)
Chao Yu4b2414d2017-08-08 10:54:31 +0800375 ret = 0;
376 else
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800377 f2fs_err(sbi, "%s quota file already specified",
Chao Yu4b2414d2017-08-08 10:54:31 +0800378 QTYPE2NAME(qtype));
379 goto errout;
380 }
381 if (strchr(qname, '/')) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800382 f2fs_err(sbi, "quotafile must be on filesystem root");
Chao Yu4b2414d2017-08-08 10:54:31 +0800383 goto errout;
384 }
Chao Yu63189b72018-03-08 14:22:56 +0800385 F2FS_OPTION(sbi).s_qf_names[qtype] = qname;
Chao Yu4b2414d2017-08-08 10:54:31 +0800386 set_opt(sbi, QUOTA);
387 return 0;
388errout:
Wang Xiaojunba87a452020-06-17 20:30:12 +0800389 kfree(qname);
Chao Yu4b2414d2017-08-08 10:54:31 +0800390 return ret;
391}
392
393static int f2fs_clear_qf_name(struct super_block *sb, int qtype)
394{
395 struct f2fs_sb_info *sbi = F2FS_SB(sb);
396
Chao Yu63189b72018-03-08 14:22:56 +0800397 if (sb_any_quota_loaded(sb) && F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800398 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800399 return -EINVAL;
400 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800401 kfree(F2FS_OPTION(sbi).s_qf_names[qtype]);
Chao Yu63189b72018-03-08 14:22:56 +0800402 F2FS_OPTION(sbi).s_qf_names[qtype] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +0800403 return 0;
404}
405
406static int f2fs_check_quota_options(struct f2fs_sb_info *sbi)
407{
408 /*
409 * We do the test below only for project quotas. 'usrquota' and
410 * 'grpquota' mount options are allowed even without quota feature
411 * to support legacy quotas in quota files.
412 */
Chao Yu7beb01f2018-10-24 18:34:26 +0800413 if (test_opt(sbi, PRJQUOTA) && !f2fs_sb_has_project_quota(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800414 f2fs_err(sbi, "Project quota feature not enabled. Cannot enable project quota enforcement.");
Chao Yu4b2414d2017-08-08 10:54:31 +0800415 return -1;
416 }
Chao Yu63189b72018-03-08 14:22:56 +0800417 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
418 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
419 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]) {
420 if (test_opt(sbi, USRQUOTA) &&
421 F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800422 clear_opt(sbi, USRQUOTA);
423
Chao Yu63189b72018-03-08 14:22:56 +0800424 if (test_opt(sbi, GRPQUOTA) &&
425 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800426 clear_opt(sbi, GRPQUOTA);
427
Chao Yu63189b72018-03-08 14:22:56 +0800428 if (test_opt(sbi, PRJQUOTA) &&
429 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800430 clear_opt(sbi, PRJQUOTA);
431
432 if (test_opt(sbi, GRPQUOTA) || test_opt(sbi, USRQUOTA) ||
433 test_opt(sbi, PRJQUOTA)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800434 f2fs_err(sbi, "old and new quota format mixing");
Chao Yu4b2414d2017-08-08 10:54:31 +0800435 return -1;
436 }
437
Chao Yu63189b72018-03-08 14:22:56 +0800438 if (!F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800439 f2fs_err(sbi, "journaled quota format not specified");
Chao Yu4b2414d2017-08-08 10:54:31 +0800440 return -1;
441 }
442 }
Jaegeuk Kimea676732017-10-06 09:14:28 -0700443
Chao Yu7beb01f2018-10-24 18:34:26 +0800444 if (f2fs_sb_has_quota_ino(sbi) && F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800445 f2fs_info(sbi, "QUOTA feature is enabled, so ignore jquota_fmt");
Chao Yu63189b72018-03-08 14:22:56 +0800446 F2FS_OPTION(sbi).s_jquota_fmt = 0;
Jaegeuk Kimea676732017-10-06 09:14:28 -0700447 }
Chao Yu4b2414d2017-08-08 10:54:31 +0800448 return 0;
449}
450#endif
451
Eric Biggersed318a62020-05-12 16:32:50 -0700452static int f2fs_set_test_dummy_encryption(struct super_block *sb,
453 const char *opt,
454 const substring_t *arg,
455 bool is_remount)
456{
457 struct f2fs_sb_info *sbi = F2FS_SB(sb);
458#ifdef CONFIG_FS_ENCRYPTION
459 int err;
460
461 if (!f2fs_sb_has_encrypt(sbi)) {
462 f2fs_err(sbi, "Encrypt feature is off");
463 return -EINVAL;
464 }
465
466 /*
467 * This mount option is just for testing, and it's not worthwhile to
468 * implement the extra complexity (e.g. RCU protection) that would be
469 * needed to allow it to be set or changed during remount. We do allow
470 * it to be specified during remount, but only if there is no change.
471 */
Eric Biggersac4acb12020-09-16 21:11:35 -0700472 if (is_remount && !F2FS_OPTION(sbi).dummy_enc_policy.policy) {
Eric Biggersed318a62020-05-12 16:32:50 -0700473 f2fs_warn(sbi, "Can't set test_dummy_encryption on remount");
474 return -EINVAL;
475 }
476 err = fscrypt_set_test_dummy_encryption(
Eric Biggersc8c868a2020-09-16 21:11:36 -0700477 sb, arg->from, &F2FS_OPTION(sbi).dummy_enc_policy);
Eric Biggersed318a62020-05-12 16:32:50 -0700478 if (err) {
479 if (err == -EEXIST)
480 f2fs_warn(sbi,
481 "Can't change test_dummy_encryption on remount");
482 else if (err == -EINVAL)
483 f2fs_warn(sbi, "Value of option \"%s\" is unrecognized",
484 opt);
485 else
486 f2fs_warn(sbi, "Error processing option \"%s\" [%d]",
487 opt, err);
488 return -EINVAL;
489 }
490 f2fs_warn(sbi, "Test dummy encryption mode enabled");
491#else
492 f2fs_warn(sbi, "Test dummy encryption mount option ignored");
493#endif
494 return 0;
495}
496
Chao Yu3fde13f2021-01-22 17:46:43 +0800497#ifdef CONFIG_F2FS_FS_COMPRESSION
Fengnan Chang151b1982021-06-08 19:15:08 +0800498/*
499 * 1. The same extension name cannot not appear in both compress and non-compress extension
500 * at the same time.
501 * 2. If the compress extension specifies all files, the types specified by the non-compress
502 * extension will be treated as special cases and will not be compressed.
503 * 3. Don't allow the non-compress extension specifies all files.
504 */
505static int f2fs_test_compress_extension(struct f2fs_sb_info *sbi)
506{
507 unsigned char (*ext)[F2FS_EXTENSION_LEN];
508 unsigned char (*noext)[F2FS_EXTENSION_LEN];
509 int ext_cnt, noext_cnt, index = 0, no_index = 0;
510
511 ext = F2FS_OPTION(sbi).extensions;
512 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
513 noext = F2FS_OPTION(sbi).noextensions;
514 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
515
516 if (!noext_cnt)
517 return 0;
518
519 for (no_index = 0; no_index < noext_cnt; no_index++) {
520 if (!strcasecmp("*", noext[no_index])) {
521 f2fs_info(sbi, "Don't allow the nocompress extension specifies all files");
522 return -EINVAL;
523 }
524 for (index = 0; index < ext_cnt; index++) {
525 if (!strcasecmp(ext[index], noext[no_index])) {
526 f2fs_info(sbi, "Don't allow the same extension %s appear in both compress and nocompress extension",
527 ext[index]);
528 return -EINVAL;
529 }
530 }
531 }
532 return 0;
533}
534
Chao Yu3fde13f2021-01-22 17:46:43 +0800535#ifdef CONFIG_F2FS_FS_LZ4
536static int f2fs_set_lz4hc_level(struct f2fs_sb_info *sbi, const char *str)
537{
538#ifdef CONFIG_F2FS_FS_LZ4HC
539 unsigned int level;
540#endif
541
542 if (strlen(str) == 3) {
543 F2FS_OPTION(sbi).compress_level = 0;
544 return 0;
545 }
546
547#ifdef CONFIG_F2FS_FS_LZ4HC
548 str += 3;
549
550 if (str[0] != ':') {
551 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
552 return -EINVAL;
553 }
554 if (kstrtouint(str + 1, 10, &level))
555 return -EINVAL;
556
557 if (level < LZ4HC_MIN_CLEVEL || level > LZ4HC_MAX_CLEVEL) {
558 f2fs_info(sbi, "invalid lz4hc compress level: %d", level);
559 return -EINVAL;
560 }
561
562 F2FS_OPTION(sbi).compress_level = level;
563 return 0;
564#else
565 f2fs_info(sbi, "kernel doesn't support lz4hc compression");
566 return -EINVAL;
567#endif
568}
569#endif
570
571#ifdef CONFIG_F2FS_FS_ZSTD
572static int f2fs_set_zstd_level(struct f2fs_sb_info *sbi, const char *str)
573{
574 unsigned int level;
575 int len = 4;
576
577 if (strlen(str) == len) {
578 F2FS_OPTION(sbi).compress_level = 0;
579 return 0;
580 }
581
582 str += len;
583
584 if (str[0] != ':') {
585 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
586 return -EINVAL;
587 }
588 if (kstrtouint(str + 1, 10, &level))
589 return -EINVAL;
590
591 if (!level || level > ZSTD_maxCLevel()) {
592 f2fs_info(sbi, "invalid zstd compress level: %d", level);
593 return -EINVAL;
594 }
595
596 F2FS_OPTION(sbi).compress_level = level;
597 return 0;
598}
599#endif
600#endif
601
Eric Biggersed318a62020-05-12 16:32:50 -0700602static int parse_options(struct super_block *sb, char *options, bool is_remount)
Namjae Jeon696c0182013-06-16 09:48:48 +0900603{
604 struct f2fs_sb_info *sbi = F2FS_SB(sb);
605 substring_t args[MAX_OPT_ARGS];
Chao Yu1f0b0672020-07-29 21:21:36 +0800606#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +0800607 unsigned char (*ext)[F2FS_EXTENSION_LEN];
Fengnan Chang151b1982021-06-08 19:15:08 +0800608 unsigned char (*noext)[F2FS_EXTENSION_LEN];
609 int ext_cnt, noext_cnt;
Chao Yu1f0b0672020-07-29 21:21:36 +0800610#endif
Namjae Jeon696c0182013-06-16 09:48:48 +0900611 char *p, *name;
Chao Yu1f0b0672020-07-29 21:21:36 +0800612 int arg = 0;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800613 kuid_t uid;
614 kgid_t gid;
Chao Yu4b2414d2017-08-08 10:54:31 +0800615 int ret;
Namjae Jeon696c0182013-06-16 09:48:48 +0900616
617 if (!options)
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -0700618 goto default_check;
Namjae Jeon696c0182013-06-16 09:48:48 +0900619
620 while ((p = strsep(&options, ",")) != NULL) {
621 int token;
Yi Zhuang5f029c02021-04-06 09:47:35 +0800622
Namjae Jeon696c0182013-06-16 09:48:48 +0900623 if (!*p)
624 continue;
625 /*
626 * Initialize args struct so we know whether arg was
627 * found; some options take optional arguments.
628 */
629 args[0].to = args[0].from = NULL;
630 token = match_token(p, f2fs_tokens, args);
631
632 switch (token) {
633 case Opt_gc_background:
634 name = match_strdup(&args[0]);
635
636 if (!name)
637 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700638 if (!strcmp(name, "on")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800639 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Eric Biggers3c57f752020-05-01 16:35:23 -0700640 } else if (!strcmp(name, "off")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800641 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700642 } else if (!strcmp(name, "sync")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800643 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_SYNC;
Jaegeuk Kim6aefd932015-10-05 11:02:54 -0700644 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800645 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900646 return -EINVAL;
647 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800648 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900649 break;
650 case Opt_disable_roll_forward:
651 set_opt(sbi, DISABLE_ROLL_FORWARD);
652 break;
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800653 case Opt_norecovery:
654 /* this option mounts f2fs with ro */
Chao Yua9117ec2020-02-14 17:45:11 +0800655 set_opt(sbi, NORECOVERY);
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800656 if (!f2fs_readonly(sb))
657 return -EINVAL;
658 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900659 case Opt_discard:
Chao Yu7d20c8a2018-09-04 03:52:17 +0800660 set_opt(sbi, DISCARD);
Namjae Jeon696c0182013-06-16 09:48:48 +0900661 break;
Chao Yu64058be2016-07-03 22:05:14 +0800662 case Opt_nodiscard:
Chao Yu7beb01f2018-10-24 18:34:26 +0800663 if (f2fs_sb_has_blkzoned(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800664 f2fs_warn(sbi, "discard is required for zoned block devices");
Damien Le Moal96ba2de2016-10-28 17:45:03 +0900665 return -EINVAL;
666 }
Chao Yu64058be2016-07-03 22:05:14 +0800667 clear_opt(sbi, DISCARD);
Damien Le Moal487df612016-10-28 17:44:59 +0900668 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900669 case Opt_noheap:
670 set_opt(sbi, NOHEAP);
671 break;
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400672 case Opt_heap:
673 clear_opt(sbi, NOHEAP);
674 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900675#ifdef CONFIG_F2FS_FS_XATTR
Kelly Anderson4058c512013-10-07 11:36:20 +0900676 case Opt_user_xattr:
677 set_opt(sbi, XATTR_USER);
678 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900679 case Opt_nouser_xattr:
680 clear_opt(sbi, XATTR_USER);
681 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900682 case Opt_inline_xattr:
683 set_opt(sbi, INLINE_XATTR);
684 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800685 case Opt_noinline_xattr:
686 clear_opt(sbi, INLINE_XATTR);
687 break;
Chao Yu6afc6622017-09-06 21:59:50 +0800688 case Opt_inline_xattr_size:
689 if (args->from && match_int(args, &arg))
690 return -EINVAL;
691 set_opt(sbi, INLINE_XATTR_SIZE);
Chao Yu63189b72018-03-08 14:22:56 +0800692 F2FS_OPTION(sbi).inline_xattr_size = arg;
Chao Yu6afc6622017-09-06 21:59:50 +0800693 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900694#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900695 case Opt_user_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800696 f2fs_info(sbi, "user_xattr options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900697 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900698 case Opt_nouser_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800699 f2fs_info(sbi, "nouser_xattr options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900700 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900701 case Opt_inline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800702 f2fs_info(sbi, "inline_xattr options not supported");
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900703 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800704 case Opt_noinline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800705 f2fs_info(sbi, "noinline_xattr options not supported");
Chao Yu23cf7212017-02-15 10:34:45 +0800706 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900707#endif
708#ifdef CONFIG_F2FS_FS_POSIX_ACL
Kelly Anderson4058c512013-10-07 11:36:20 +0900709 case Opt_acl:
710 set_opt(sbi, POSIX_ACL);
711 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900712 case Opt_noacl:
713 clear_opt(sbi, POSIX_ACL);
714 break;
715#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900716 case Opt_acl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800717 f2fs_info(sbi, "acl options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900718 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900719 case Opt_noacl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800720 f2fs_info(sbi, "noacl options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900721 break;
722#endif
723 case Opt_active_logs:
724 if (args->from && match_int(args, &arg))
725 return -EINVAL;
Chao Yud0b9e422020-08-04 21:14:45 +0800726 if (arg != 2 && arg != 4 &&
727 arg != NR_CURSEG_PERSIST_TYPE)
Namjae Jeon696c0182013-06-16 09:48:48 +0900728 return -EINVAL;
Chao Yu63189b72018-03-08 14:22:56 +0800729 F2FS_OPTION(sbi).active_logs = arg;
Namjae Jeon696c0182013-06-16 09:48:48 +0900730 break;
731 case Opt_disable_ext_identify:
732 set_opt(sbi, DISABLE_EXT_IDENTIFY);
733 break;
Huajun Li8274de72013-11-10 23:13:17 +0800734 case Opt_inline_data:
735 set_opt(sbi, INLINE_DATA);
736 break;
Chao Yu5efd3c62014-09-24 18:16:13 +0800737 case Opt_inline_dentry:
738 set_opt(sbi, INLINE_DENTRY);
739 break;
Chao Yu97c17942016-05-09 19:56:34 +0800740 case Opt_noinline_dentry:
741 clear_opt(sbi, INLINE_DENTRY);
742 break;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900743 case Opt_flush_merge:
744 set_opt(sbi, FLUSH_MERGE);
745 break;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700746 case Opt_noflush_merge:
747 clear_opt(sbi, FLUSH_MERGE);
748 break;
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700749 case Opt_nobarrier:
750 set_opt(sbi, NOBARRIER);
751 break;
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700752 case Opt_fastboot:
753 set_opt(sbi, FASTBOOT);
754 break;
Chao Yu89672152015-02-05 17:55:51 +0800755 case Opt_extent_cache:
756 set_opt(sbi, EXTENT_CACHE);
757 break;
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700758 case Opt_noextent_cache:
759 clear_opt(sbi, EXTENT_CACHE);
760 break;
Wanpeng Li75342792015-03-24 10:20:27 +0800761 case Opt_noinline_data:
762 clear_opt(sbi, INLINE_DATA);
763 break;
Chao Yu343f40f2015-12-16 13:12:16 +0800764 case Opt_data_flush:
765 set_opt(sbi, DATA_FLUSH);
766 break;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800767 case Opt_reserve_root:
768 if (args->from && match_int(args, &arg))
769 return -EINVAL;
770 if (test_opt(sbi, RESERVE_ROOT)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800771 f2fs_info(sbi, "Preserve previous reserve_root=%u",
772 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800773 } else {
Chao Yu63189b72018-03-08 14:22:56 +0800774 F2FS_OPTION(sbi).root_reserved_blocks = arg;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800775 set_opt(sbi, RESERVE_ROOT);
776 }
777 break;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800778 case Opt_resuid:
779 if (args->from && match_int(args, &arg))
780 return -EINVAL;
781 uid = make_kuid(current_user_ns(), arg);
782 if (!uid_valid(uid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800783 f2fs_err(sbi, "Invalid uid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800784 return -EINVAL;
785 }
Chao Yu63189b72018-03-08 14:22:56 +0800786 F2FS_OPTION(sbi).s_resuid = uid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800787 break;
788 case Opt_resgid:
789 if (args->from && match_int(args, &arg))
790 return -EINVAL;
791 gid = make_kgid(current_user_ns(), arg);
792 if (!gid_valid(gid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800793 f2fs_err(sbi, "Invalid gid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800794 return -EINVAL;
795 }
Chao Yu63189b72018-03-08 14:22:56 +0800796 F2FS_OPTION(sbi).s_resgid = gid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800797 break;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700798 case Opt_mode:
799 name = match_strdup(&args[0]);
800
801 if (!name)
802 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700803 if (!strcmp(name, "adaptive")) {
Chao Yu7beb01f2018-10-24 18:34:26 +0800804 if (f2fs_sb_has_blkzoned(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800805 f2fs_warn(sbi, "adaptive mode is not allowed with zoned block device feature");
Wang Xiaojunba87a452020-06-17 20:30:12 +0800806 kfree(name);
Damien Le Moal3adc57e2016-10-28 17:45:04 +0900807 return -EINVAL;
808 }
Chao Yub0332a02020-02-14 17:44:12 +0800809 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Eric Biggers3c57f752020-05-01 16:35:23 -0700810 } else if (!strcmp(name, "lfs")) {
Chao Yub0332a02020-02-14 17:44:12 +0800811 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700812 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800813 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700814 return -EINVAL;
815 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800816 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700817 break;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800818 case Opt_io_size_bits:
819 if (args->from && match_int(args, &arg))
820 return -EINVAL;
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100821 if (arg <= 0 || arg > __ilog2_u32(BIO_MAX_VECS)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800822 f2fs_warn(sbi, "Not support %d, larger than %d",
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100823 1 << arg, BIO_MAX_VECS);
Jaegeuk Kimec915382016-12-21 17:09:19 -0800824 return -EINVAL;
825 }
Chao Yu63189b72018-03-08 14:22:56 +0800826 F2FS_OPTION(sbi).write_io_size_bits = arg;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800827 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800828#ifdef CONFIG_F2FS_FAULT_INJECTION
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700829 case Opt_fault_injection:
830 if (args->from && match_int(args, &arg))
831 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800832 f2fs_build_fault_attr(sbi, arg, F2FS_ALL_FAULT_TYPE);
833 set_opt(sbi, FAULT_INJECTION);
Chao Yud4945002018-08-08 17:36:41 +0800834 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800835
Chao Yud4945002018-08-08 17:36:41 +0800836 case Opt_fault_type:
837 if (args->from && match_int(args, &arg))
838 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800839 f2fs_build_fault_attr(sbi, 0, arg);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +0800840 set_opt(sbi, FAULT_INJECTION);
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700841 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800842#else
843 case Opt_fault_injection:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800844 f2fs_info(sbi, "fault_injection options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800845 break;
846
847 case Opt_fault_type:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800848 f2fs_info(sbi, "fault_type options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800849 break;
850#endif
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700851 case Opt_lazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800852 sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700853 break;
854 case Opt_nolazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800855 sb->s_flags &= ~SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700856 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800857#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +0800858 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800859 case Opt_usrquota:
860 set_opt(sbi, USRQUOTA);
861 break;
862 case Opt_grpquota:
863 set_opt(sbi, GRPQUOTA);
864 break;
Chao Yu5c571322017-07-26 00:01:41 +0800865 case Opt_prjquota:
866 set_opt(sbi, PRJQUOTA);
867 break;
Chao Yu4b2414d2017-08-08 10:54:31 +0800868 case Opt_usrjquota:
869 ret = f2fs_set_qf_name(sb, USRQUOTA, &args[0]);
870 if (ret)
871 return ret;
872 break;
873 case Opt_grpjquota:
874 ret = f2fs_set_qf_name(sb, GRPQUOTA, &args[0]);
875 if (ret)
876 return ret;
877 break;
878 case Opt_prjjquota:
879 ret = f2fs_set_qf_name(sb, PRJQUOTA, &args[0]);
880 if (ret)
881 return ret;
882 break;
883 case Opt_offusrjquota:
884 ret = f2fs_clear_qf_name(sb, USRQUOTA);
885 if (ret)
886 return ret;
887 break;
888 case Opt_offgrpjquota:
889 ret = f2fs_clear_qf_name(sb, GRPQUOTA);
890 if (ret)
891 return ret;
892 break;
893 case Opt_offprjjquota:
894 ret = f2fs_clear_qf_name(sb, PRJQUOTA);
895 if (ret)
896 return ret;
897 break;
898 case Opt_jqfmt_vfsold:
Chao Yu63189b72018-03-08 14:22:56 +0800899 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_OLD;
Chao Yu4b2414d2017-08-08 10:54:31 +0800900 break;
901 case Opt_jqfmt_vfsv0:
Chao Yu63189b72018-03-08 14:22:56 +0800902 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V0;
Chao Yu4b2414d2017-08-08 10:54:31 +0800903 break;
904 case Opt_jqfmt_vfsv1:
Chao Yu63189b72018-03-08 14:22:56 +0800905 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V1;
Chao Yu4b2414d2017-08-08 10:54:31 +0800906 break;
907 case Opt_noquota:
908 clear_opt(sbi, QUOTA);
909 clear_opt(sbi, USRQUOTA);
910 clear_opt(sbi, GRPQUOTA);
911 clear_opt(sbi, PRJQUOTA);
912 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800913#else
Chao Yu4b2414d2017-08-08 10:54:31 +0800914 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800915 case Opt_usrquota:
916 case Opt_grpquota:
Chao Yu5c571322017-07-26 00:01:41 +0800917 case Opt_prjquota:
Chao Yu4b2414d2017-08-08 10:54:31 +0800918 case Opt_usrjquota:
919 case Opt_grpjquota:
920 case Opt_prjjquota:
921 case Opt_offusrjquota:
922 case Opt_offgrpjquota:
923 case Opt_offprjjquota:
924 case Opt_jqfmt_vfsold:
925 case Opt_jqfmt_vfsv0:
926 case Opt_jqfmt_vfsv1:
927 case Opt_noquota:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800928 f2fs_info(sbi, "quota operations not supported");
Chao Yu0abd6752017-07-09 00:13:07 +0800929 break;
930#endif
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900931 case Opt_whint:
932 name = match_strdup(&args[0]);
933 if (!name)
934 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700935 if (!strcmp(name, "user-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800936 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_USER;
Eric Biggers3c57f752020-05-01 16:35:23 -0700937 } else if (!strcmp(name, "off")) {
Chao Yu63189b72018-03-08 14:22:56 +0800938 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700939 } else if (!strcmp(name, "fs-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800940 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_FS;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900941 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800942 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900943 return -EINVAL;
944 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800945 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900946 break;
Jaegeuk Kim07939622018-02-18 08:50:49 -0800947 case Opt_alloc:
948 name = match_strdup(&args[0]);
949 if (!name)
950 return -ENOMEM;
951
Eric Biggers3c57f752020-05-01 16:35:23 -0700952 if (!strcmp(name, "default")) {
Chao Yu63189b72018-03-08 14:22:56 +0800953 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
Eric Biggers3c57f752020-05-01 16:35:23 -0700954 } else if (!strcmp(name, "reuse")) {
Chao Yu63189b72018-03-08 14:22:56 +0800955 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Jaegeuk Kim07939622018-02-18 08:50:49 -0800956 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800957 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -0800958 return -EINVAL;
959 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800960 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -0800961 break;
Junling Zheng93cf93f2018-03-07 12:07:49 +0800962 case Opt_fsync:
963 name = match_strdup(&args[0]);
964 if (!name)
965 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700966 if (!strcmp(name, "posix")) {
Chao Yu63189b72018-03-08 14:22:56 +0800967 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Eric Biggers3c57f752020-05-01 16:35:23 -0700968 } else if (!strcmp(name, "strict")) {
Chao Yu63189b72018-03-08 14:22:56 +0800969 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_STRICT;
Eric Biggers3c57f752020-05-01 16:35:23 -0700970 } else if (!strcmp(name, "nobarrier")) {
Jaegeuk Kimd6290812018-05-25 18:02:58 -0700971 F2FS_OPTION(sbi).fsync_mode =
972 FSYNC_MODE_NOBARRIER;
Junling Zheng93cf93f2018-03-07 12:07:49 +0800973 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800974 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +0800975 return -EINVAL;
976 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800977 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +0800978 break;
Sheng Yongff62af22018-03-15 18:51:42 +0800979 case Opt_test_dummy_encryption:
Eric Biggersed318a62020-05-12 16:32:50 -0700980 ret = f2fs_set_test_dummy_encryption(sb, p, &args[0],
981 is_remount);
982 if (ret)
983 return ret;
Sheng Yongff62af22018-03-15 18:51:42 +0800984 break;
Satya Tangirala27aacd22020-07-02 01:56:06 +0000985 case Opt_inlinecrypt:
986#ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
987 sb->s_flags |= SB_INLINECRYPT;
988#else
989 f2fs_info(sbi, "inline encryption not supported");
990#endif
991 break;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700992 case Opt_checkpoint_disable_cap_perc:
993 if (args->from && match_int(args, &arg))
Daniel Rosenberg43549942018-08-20 19:21:43 -0700994 return -EINVAL;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700995 if (arg < 0 || arg > 100)
996 return -EINVAL;
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -0700997 F2FS_OPTION(sbi).unusable_cap_perc = arg;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700998 set_opt(sbi, DISABLE_CHECKPOINT);
999 break;
1000 case Opt_checkpoint_disable_cap:
1001 if (args->from && match_int(args, &arg))
1002 return -EINVAL;
1003 F2FS_OPTION(sbi).unusable_cap = arg;
1004 set_opt(sbi, DISABLE_CHECKPOINT);
1005 break;
1006 case Opt_checkpoint_disable:
1007 set_opt(sbi, DISABLE_CHECKPOINT);
1008 break;
1009 case Opt_checkpoint_enable:
1010 clear_opt(sbi, DISABLE_CHECKPOINT);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001011 break;
Daeho Jeong261eeb92021-01-19 09:00:42 +09001012 case Opt_checkpoint_merge:
1013 set_opt(sbi, MERGE_CHECKPOINT);
1014 break;
1015 case Opt_nocheckpoint_merge:
1016 clear_opt(sbi, MERGE_CHECKPOINT);
1017 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001018#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001019 case Opt_compress_algorithm:
1020 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001021 f2fs_info(sbi, "Image doesn't support compression");
1022 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001023 }
1024 name = match_strdup(&args[0]);
1025 if (!name)
1026 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -07001027 if (!strcmp(name, "lzo")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001028#ifdef CONFIG_F2FS_FS_LZO
Chao Yu3fde13f2021-01-22 17:46:43 +08001029 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu4c8ff702019-11-01 18:07:14 +08001030 F2FS_OPTION(sbi).compress_algorithm =
1031 COMPRESS_LZO;
Chao Yu32be0e92021-01-22 17:40:13 +08001032#else
1033 f2fs_info(sbi, "kernel doesn't support lzo compression");
1034#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001035 } else if (!strncmp(name, "lz4", 3)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001036#ifdef CONFIG_F2FS_FS_LZ4
Chao Yu3fde13f2021-01-22 17:46:43 +08001037 ret = f2fs_set_lz4hc_level(sbi, name);
1038 if (ret) {
1039 kfree(name);
1040 return -EINVAL;
1041 }
Chao Yu4c8ff702019-11-01 18:07:14 +08001042 F2FS_OPTION(sbi).compress_algorithm =
1043 COMPRESS_LZ4;
Chao Yu32be0e92021-01-22 17:40:13 +08001044#else
1045 f2fs_info(sbi, "kernel doesn't support lz4 compression");
1046#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001047 } else if (!strncmp(name, "zstd", 4)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001048#ifdef CONFIG_F2FS_FS_ZSTD
Chao Yu3fde13f2021-01-22 17:46:43 +08001049 ret = f2fs_set_zstd_level(sbi, name);
1050 if (ret) {
1051 kfree(name);
1052 return -EINVAL;
1053 }
Chao Yu50cfa662020-03-03 17:46:02 +08001054 F2FS_OPTION(sbi).compress_algorithm =
1055 COMPRESS_ZSTD;
Chao Yu32be0e92021-01-22 17:40:13 +08001056#else
1057 f2fs_info(sbi, "kernel doesn't support zstd compression");
1058#endif
Chao Yu6d92b202020-04-08 19:56:32 +08001059 } else if (!strcmp(name, "lzo-rle")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001060#ifdef CONFIG_F2FS_FS_LZORLE
Chao Yu3fde13f2021-01-22 17:46:43 +08001061 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu6d92b202020-04-08 19:56:32 +08001062 F2FS_OPTION(sbi).compress_algorithm =
1063 COMPRESS_LZORLE;
Chao Yu32be0e92021-01-22 17:40:13 +08001064#else
1065 f2fs_info(sbi, "kernel doesn't support lzorle compression");
1066#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001067 } else {
1068 kfree(name);
1069 return -EINVAL;
1070 }
1071 kfree(name);
1072 break;
1073 case Opt_compress_log_size:
1074 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001075 f2fs_info(sbi, "Image doesn't support compression");
1076 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001077 }
1078 if (args->from && match_int(args, &arg))
1079 return -EINVAL;
1080 if (arg < MIN_COMPRESS_LOG_SIZE ||
1081 arg > MAX_COMPRESS_LOG_SIZE) {
1082 f2fs_err(sbi,
1083 "Compress cluster log size is out of range");
1084 return -EINVAL;
1085 }
1086 F2FS_OPTION(sbi).compress_log_size = arg;
1087 break;
1088 case Opt_compress_extension:
1089 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001090 f2fs_info(sbi, "Image doesn't support compression");
1091 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001092 }
1093 name = match_strdup(&args[0]);
1094 if (!name)
1095 return -ENOMEM;
1096
1097 ext = F2FS_OPTION(sbi).extensions;
1098 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
1099
1100 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1101 ext_cnt >= COMPRESS_EXT_NUM) {
1102 f2fs_err(sbi,
1103 "invalid extension length/number");
1104 kfree(name);
1105 return -EINVAL;
1106 }
1107
1108 strcpy(ext[ext_cnt], name);
1109 F2FS_OPTION(sbi).compress_ext_cnt++;
1110 kfree(name);
1111 break;
Fengnan Chang151b1982021-06-08 19:15:08 +08001112 case Opt_nocompress_extension:
1113 if (!f2fs_sb_has_compression(sbi)) {
1114 f2fs_info(sbi, "Image doesn't support compression");
1115 break;
1116 }
1117 name = match_strdup(&args[0]);
1118 if (!name)
1119 return -ENOMEM;
1120
1121 noext = F2FS_OPTION(sbi).noextensions;
1122 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
1123
1124 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1125 noext_cnt >= COMPRESS_EXT_NUM) {
1126 f2fs_err(sbi,
1127 "invalid extension length/number");
1128 kfree(name);
1129 return -EINVAL;
1130 }
1131
1132 strcpy(noext[noext_cnt], name);
1133 F2FS_OPTION(sbi).nocompress_ext_cnt++;
1134 kfree(name);
1135 break;
Chao Yub28f0472020-11-26 18:32:09 +08001136 case Opt_compress_chksum:
1137 F2FS_OPTION(sbi).compress_chksum = true;
1138 break;
Daeho Jeong602a16d2020-12-01 13:08:02 +09001139 case Opt_compress_mode:
1140 name = match_strdup(&args[0]);
1141 if (!name)
1142 return -ENOMEM;
1143 if (!strcmp(name, "fs")) {
1144 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
1145 } else if (!strcmp(name, "user")) {
1146 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_USER;
1147 } else {
1148 kfree(name);
1149 return -EINVAL;
1150 }
1151 kfree(name);
1152 break;
Chao Yu6ce19af2021-05-20 19:51:50 +08001153 case Opt_compress_cache:
1154 set_opt(sbi, COMPRESS_CACHE);
1155 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001156#else
1157 case Opt_compress_algorithm:
1158 case Opt_compress_log_size:
1159 case Opt_compress_extension:
Fengnan Chang151b1982021-06-08 19:15:08 +08001160 case Opt_nocompress_extension:
Chao Yub28f0472020-11-26 18:32:09 +08001161 case Opt_compress_chksum:
Daeho Jeong602a16d2020-12-01 13:08:02 +09001162 case Opt_compress_mode:
Chao Yu6ce19af2021-05-20 19:51:50 +08001163 case Opt_compress_cache:
Chao Yu1f0b0672020-07-29 21:21:36 +08001164 f2fs_info(sbi, "compression options not supported");
1165 break;
1166#endif
Chao Yu093749e2020-08-04 21:14:49 +08001167 case Opt_atgc:
1168 set_opt(sbi, ATGC);
1169 break;
Chao Yu5911d2d2021-03-27 17:57:06 +08001170 case Opt_gc_merge:
1171 set_opt(sbi, GC_MERGE);
1172 break;
1173 case Opt_nogc_merge:
1174 clear_opt(sbi, GC_MERGE);
1175 break;
Namjae Jeon696c0182013-06-16 09:48:48 +09001176 default:
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001177 f2fs_err(sbi, "Unrecognized mount option \"%s\" or missing value",
1178 p);
Namjae Jeon696c0182013-06-16 09:48:48 +09001179 return -EINVAL;
1180 }
1181 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001182default_check:
Chao Yu4b2414d2017-08-08 10:54:31 +08001183#ifdef CONFIG_QUOTA
1184 if (f2fs_check_quota_options(sbi))
1185 return -EINVAL;
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001186#else
Chao Yu7beb01f2018-10-24 18:34:26 +08001187 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001188 f2fs_info(sbi, "Filesystem with quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001189 return -EINVAL;
1190 }
Chao Yu7beb01f2018-10-24 18:34:26 +08001191 if (f2fs_sb_has_project_quota(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001192 f2fs_err(sbi, "Filesystem with project quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Chao Yu4ddc1b22018-07-26 07:19:48 +08001193 return -EINVAL;
1194 }
Chao Yu4b2414d2017-08-08 10:54:31 +08001195#endif
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001196#ifndef CONFIG_UNICODE
1197 if (f2fs_sb_has_casefold(sbi)) {
1198 f2fs_err(sbi,
1199 "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
1200 return -EINVAL;
1201 }
1202#endif
Chao Yud0660122020-09-21 20:53:14 +08001203 /*
1204 * The BLKZONED feature indicates that the drive was formatted with
1205 * zone alignment optimization. This is optional for host-aware
1206 * devices, but mandatory for host-managed zoned block devices.
1207 */
1208#ifndef CONFIG_BLK_DEV_ZONED
1209 if (f2fs_sb_has_blkzoned(sbi)) {
1210 f2fs_err(sbi, "Zoned block device support is not enabled");
1211 return -EINVAL;
1212 }
1213#endif
Jaegeuk Kimec915382016-12-21 17:09:19 -08001214
Fengnan Chang151b1982021-06-08 19:15:08 +08001215#ifdef CONFIG_F2FS_FS_COMPRESSION
1216 if (f2fs_test_compress_extension(sbi)) {
1217 f2fs_err(sbi, "invalid compress or nocompress extension");
1218 return -EINVAL;
1219 }
1220#endif
1221
Chao Yub0332a02020-02-14 17:44:12 +08001222 if (F2FS_IO_SIZE_BITS(sbi) && !f2fs_lfs_mode(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001223 f2fs_err(sbi, "Should set mode=lfs with %uKB-sized IO",
1224 F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001225 return -EINVAL;
1226 }
Chao Yu6afc6622017-09-06 21:59:50 +08001227
1228 if (test_opt(sbi, INLINE_XATTR_SIZE)) {
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001229 int min_size, max_size;
1230
Chao Yu7beb01f2018-10-24 18:34:26 +08001231 if (!f2fs_sb_has_extra_attr(sbi) ||
1232 !f2fs_sb_has_flexible_inline_xattr(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001233 f2fs_err(sbi, "extra_attr or flexible_inline_xattr feature is off");
Chao Yu4d817ae2018-01-27 17:29:48 +08001234 return -EINVAL;
1235 }
Chao Yu6afc6622017-09-06 21:59:50 +08001236 if (!test_opt(sbi, INLINE_XATTR)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001237 f2fs_err(sbi, "inline_xattr_size option should be set with inline_xattr option");
Chao Yu6afc6622017-09-06 21:59:50 +08001238 return -EINVAL;
1239 }
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001240
1241 min_size = sizeof(struct f2fs_xattr_header) / sizeof(__le32);
Chao Yudd6c89b2019-03-04 17:19:04 +08001242 max_size = MAX_INLINE_XATTR_SIZE;
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001243
1244 if (F2FS_OPTION(sbi).inline_xattr_size < min_size ||
1245 F2FS_OPTION(sbi).inline_xattr_size > max_size) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001246 f2fs_err(sbi, "inline xattr size is out of range: %d ~ %d",
1247 min_size, max_size);
Chao Yu6afc6622017-09-06 21:59:50 +08001248 return -EINVAL;
1249 }
1250 }
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001251
Chao Yub0332a02020-02-14 17:44:12 +08001252 if (test_opt(sbi, DISABLE_CHECKPOINT) && f2fs_lfs_mode(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07001253 f2fs_err(sbi, "LFS not compatible with checkpoint=disable");
Daniel Rosenberg43549942018-08-20 19:21:43 -07001254 return -EINVAL;
1255 }
1256
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001257 /* Not pass down write hints if the number of active logs is lesser
Chao Yud0b9e422020-08-04 21:14:45 +08001258 * than NR_CURSEG_PERSIST_TYPE.
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001259 */
Chao Yu63189b72018-03-08 14:22:56 +08001260 if (F2FS_OPTION(sbi).active_logs != NR_CURSEG_TYPE)
1261 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001262
1263 if (f2fs_sb_has_readonly(sbi) && !f2fs_readonly(sbi->sb)) {
1264 f2fs_err(sbi, "Allow to mount readonly mode only");
1265 return -EROFS;
1266 }
Namjae Jeon696c0182013-06-16 09:48:48 +09001267 return 0;
1268}
1269
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001270static struct inode *f2fs_alloc_inode(struct super_block *sb)
1271{
1272 struct f2fs_inode_info *fi;
1273
Chao Yua0acdfe2013-12-05 09:54:00 +08001274 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001275 if (!fi)
1276 return NULL;
1277
1278 init_once((void *) fi);
1279
Masanari Iida434720f2013-03-19 08:03:35 +09001280 /* Initialize f2fs-specific inode info */
Jaegeuk Kim204706c2016-12-02 15:11:32 -08001281 atomic_set(&fi->dirty_pages, 0);
Daeho Jeongc2759eb2020-09-08 11:44:10 +09001282 atomic_set(&fi->i_compr_blocks, 0);
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +09001283 init_rwsem(&fi->i_sem);
Chao Yuc10c9822020-02-27 19:30:03 +08001284 spin_lock_init(&fi->i_size_lock);
Chao Yu2710fd72015-12-15 13:30:45 +08001285 INIT_LIST_HEAD(&fi->dirty_list);
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001286 INIT_LIST_HEAD(&fi->gdirty_list);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -07001287 INIT_LIST_HEAD(&fi->inmem_ilist);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001288 INIT_LIST_HEAD(&fi->inmem_pages);
1289 mutex_init(&fi->inmem_lock);
Chao Yub2532c62018-04-24 10:55:28 +08001290 init_rwsem(&fi->i_gc_rwsem[READ]);
1291 init_rwsem(&fi->i_gc_rwsem[WRITE]);
Qiuyang Sun5a3a2d82017-05-18 11:06:45 +08001292 init_rwsem(&fi->i_mmap_sem);
Yunlei He27161f12017-09-07 10:40:54 +08001293 init_rwsem(&fi->i_xattr_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001294
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09001295 /* Will be used by directory only */
1296 fi->i_dir_level = F2FS_SB(sb)->dir_level;
Chao Yuf2470372017-07-19 00:19:05 +08001297
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001298 return &fi->vfs_inode;
1299}
1300
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001301static int f2fs_drop_inode(struct inode *inode)
1302{
Chao Yua8933b62019-07-18 16:39:59 +08001303 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001304 int ret;
Chao Yua8933b62019-07-18 16:39:59 +08001305
1306 /*
1307 * during filesystem shutdown, if checkpoint is disabled,
1308 * drop useless meta/node dirty pages.
1309 */
1310 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1311 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1312 inode->i_ino == F2FS_META_INO(sbi)) {
1313 trace_f2fs_drop_inode(inode, 1);
1314 return 1;
1315 }
1316 }
1317
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001318 /*
1319 * This is to avoid a deadlock condition like below.
1320 * writeback_single_inode(inode)
1321 * - f2fs_write_data_page
1322 * - f2fs_gc -> iput -> evict
1323 * - inode_wait_for_writeback(inode)
1324 */
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001325 if ((!inode_unhashed(inode) && inode->i_state & I_SYNC)) {
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001326 if (!inode->i_nlink && !is_bad_inode(inode)) {
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001327 /* to avoid evict_inode call simultaneously */
1328 atomic_inc(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001329 spin_unlock(&inode->i_lock);
1330
1331 /* some remained atomic pages should discarded */
1332 if (f2fs_is_atomic_file(inode))
Chao Yu4d57b862018-05-30 00:20:41 +08001333 f2fs_drop_inmem_pages(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001334
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001335 /* should remain fi->extent_tree for writepage */
1336 f2fs_destroy_extent_node(inode);
1337
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001338 sb_start_intwrite(inode->i_sb);
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07001339 f2fs_i_size_write(inode, 0);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001340
zhenglianga0770e12019-03-04 09:32:25 +08001341 f2fs_submit_merged_write_cond(F2FS_I_SB(inode),
1342 inode, NULL, 0, DATA);
1343 truncate_inode_pages_final(inode->i_mapping);
1344
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001345 if (F2FS_HAS_BLOCKS(inode))
Jaegeuk Kim9a449e92016-06-02 13:49:38 -07001346 f2fs_truncate(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001347
1348 sb_end_intwrite(inode->i_sb);
1349
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001350 spin_lock(&inode->i_lock);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001351 atomic_dec(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001352 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001353 trace_f2fs_drop_inode(inode, 0);
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001354 return 0;
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001355 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001356 ret = generic_drop_inode(inode);
Eric Biggers8ce589c2019-08-04 19:35:48 -07001357 if (!ret)
1358 ret = fscrypt_drop_inode(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001359 trace_f2fs_drop_inode(inode, ret);
1360 return ret;
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001361}
1362
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001363int f2fs_inode_dirtied(struct inode *inode, bool sync)
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001364{
1365 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001366 int ret = 0;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001367
1368 spin_lock(&sbi->inode_lock[DIRTY_META]);
1369 if (is_inode_flag_set(inode, FI_DIRTY_INODE)) {
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001370 ret = 1;
1371 } else {
1372 set_inode_flag(inode, FI_DIRTY_INODE);
1373 stat_inc_dirty_inode(sbi, DIRTY_META);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001374 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001375 if (sync && list_empty(&F2FS_I(inode)->gdirty_list)) {
1376 list_add_tail(&F2FS_I(inode)->gdirty_list,
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001377 &sbi->inode_list[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001378 inc_page_count(sbi, F2FS_DIRTY_IMETA);
1379 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001380 spin_unlock(&sbi->inode_lock[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001381 return ret;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001382}
1383
1384void f2fs_inode_synced(struct inode *inode)
1385{
1386 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1387
1388 spin_lock(&sbi->inode_lock[DIRTY_META]);
1389 if (!is_inode_flag_set(inode, FI_DIRTY_INODE)) {
1390 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1391 return;
1392 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001393 if (!list_empty(&F2FS_I(inode)->gdirty_list)) {
1394 list_del_init(&F2FS_I(inode)->gdirty_list);
1395 dec_page_count(sbi, F2FS_DIRTY_IMETA);
1396 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001397 clear_inode_flag(inode, FI_DIRTY_INODE);
1398 clear_inode_flag(inode, FI_AUTO_RECOVER);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001399 stat_dec_dirty_inode(F2FS_I_SB(inode), DIRTY_META);
1400 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1401}
1402
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001403/*
1404 * f2fs_dirty_inode() is called from __mark_inode_dirty()
1405 *
1406 * We should call set_dirty_inode to write the dirty inode through write_inode.
1407 */
1408static void f2fs_dirty_inode(struct inode *inode, int flags)
1409{
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001410 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1411
1412 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1413 inode->i_ino == F2FS_META_INO(sbi))
1414 return;
1415
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07001416 if (is_inode_flag_set(inode, FI_AUTO_RECOVER))
1417 clear_inode_flag(inode, FI_AUTO_RECOVER);
1418
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001419 f2fs_inode_dirtied(inode, false);
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001420}
1421
Al Virod01718a2019-04-15 19:29:14 -04001422static void f2fs_free_inode(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001423{
Eric Biggers2c58d542019-04-10 13:21:15 -07001424 fscrypt_free_inode(inode);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001425 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
1426}
1427
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001428static void destroy_percpu_info(struct f2fs_sb_info *sbi)
1429{
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001430 percpu_counter_destroy(&sbi->alloc_valid_block_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07001431 percpu_counter_destroy(&sbi->total_valid_inode_count);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001432}
1433
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001434static void destroy_device_list(struct f2fs_sb_info *sbi)
1435{
1436 int i;
1437
1438 for (i = 0; i < sbi->s_ndevs; i++) {
1439 blkdev_put(FDEV(i).bdev, FMODE_EXCL);
1440#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal95175da2019-03-16 09:13:07 +09001441 kvfree(FDEV(i).blkz_seq);
Aravind Rameshde881df2020-07-16 18:26:56 +05301442 kfree(FDEV(i).zone_capacity_blocks);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001443#endif
1444 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08001445 kvfree(sbi->devs);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001446}
1447
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001448static void f2fs_put_super(struct super_block *sb)
1449{
1450 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yua3981012017-06-14 17:39:46 +08001451 int i;
Chao Yucf5c7592017-10-04 09:08:37 +08001452 bool dropped;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001453
Li Guifu99c787c2020-07-24 09:38:11 +08001454 /* unregister procfs/sysfs entries in advance to avoid race case */
1455 f2fs_unregister_sysfs(sbi);
1456
Chao Yu0abd6752017-07-09 00:13:07 +08001457 f2fs_quota_off_umount(sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001458
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001459 /* prevent remaining shrinker jobs */
1460 mutex_lock(&sbi->umount_mutex);
1461
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001462 /*
Daeho Jeong261eeb92021-01-19 09:00:42 +09001463 * flush all issued checkpoints and stop checkpoint issue thread.
1464 * after then, all checkpoints should be done by each process context.
1465 */
1466 f2fs_stop_ckpt_thread(sbi);
1467
1468 /*
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001469 * We don't need to do checkpoint when superblock is clean.
1470 * But, the previous checkpoint was not done by umount, it needs to do
1471 * clean checkpoint again.
1472 */
Daniel Rosenberg43549942018-08-20 19:21:43 -07001473 if ((is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
1474 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG))) {
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001475 struct cp_control cpc = {
1476 .reason = CP_UMOUNT,
1477 };
Chao Yu4d57b862018-05-30 00:20:41 +08001478 f2fs_write_checkpoint(sbi, &cpc);
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001479 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001480
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001481 /* be sure to wait for any on-going discard commands */
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001482 dropped = f2fs_issue_discard_timeout(sbi);
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001483
Chao Yu7d20c8a2018-09-04 03:52:17 +08001484 if ((f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi)) &&
1485 !sbi->discard_blks && !dropped) {
Chao Yu1f43e2a2017-04-28 13:56:08 +08001486 struct cp_control cpc = {
1487 .reason = CP_UMOUNT | CP_TRIMMED,
1488 };
Chao Yu4d57b862018-05-30 00:20:41 +08001489 f2fs_write_checkpoint(sbi, &cpc);
Chao Yu1f43e2a2017-04-28 13:56:08 +08001490 }
1491
Jaegeuk Kimcf779ca2014-08-11 18:37:46 -07001492 /*
1493 * normally superblock is clean, so we need to release this.
1494 * In addition, EIO will skip do checkpoint, we need this as well.
1495 */
Chao Yu4d57b862018-05-30 00:20:41 +08001496 f2fs_release_ino_entry(sbi, true);
Jaegeuk Kim6f12ac22014-08-19 09:48:22 -07001497
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001498 f2fs_leave_shrinker(sbi);
1499 mutex_unlock(&sbi->umount_mutex);
1500
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001501 /* our cp_error case, we can wait for any writeback page */
Jaegeuk Kimb9109b02017-05-10 11:28:38 -07001502 f2fs_flush_merged_writes(sbi);
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001503
Sahitya Tummalabf22c3c2020-02-18 09:19:07 +05301504 f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
Chao Yu50fa53e2018-08-02 23:03:19 +08001505
1506 f2fs_bug_on(sbi, sbi->fsync_node_num);
1507
Chao Yu6ce19af2021-05-20 19:51:50 +08001508 f2fs_destroy_compress_inode(sbi);
1509
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001510 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001511 sbi->node_inode = NULL;
1512
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001513 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001514 sbi->meta_inode = NULL;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001515
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05301516 /*
1517 * iput() can update stat information, if f2fs_write_checkpoint()
1518 * above failed with error.
1519 */
1520 f2fs_destroy_stats(sbi);
1521
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001522 /* destroy f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08001523 f2fs_destroy_node_manager(sbi);
1524 f2fs_destroy_segment_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001525
Chao Yu4c8ff702019-11-01 18:07:14 +08001526 f2fs_destroy_post_read_wq(sbi);
1527
Jaegeuk Kim52225952018-12-13 18:38:33 -08001528 kvfree(sbi->ckpt);
Chao Yua3981012017-06-14 17:39:46 +08001529
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001530 sb->s_fs_info = NULL;
Keith Mok43b65732016-03-02 12:04:24 -08001531 if (sbi->s_chksum_driver)
1532 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03001533 kfree(sbi->raw_super);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001534
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001535 destroy_device_list(sbi);
Chao Yu31083032020-09-14 17:05:13 +08001536 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08001537 f2fs_destroy_xattr_caches(sbi);
Chao Yub6895e82017-02-27 18:43:12 +08001538 mempool_destroy(sbi->write_io_dummy);
Chao Yu4b2414d2017-08-08 10:54:31 +08001539#ifdef CONFIG_QUOTA
1540 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08001541 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001542#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07001543 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001544 destroy_percpu_info(sbi);
Jaegeuk Kima912b542017-05-10 11:18:25 -07001545 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08001546 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001547#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07001548 utf8_unload(sb->s_encoding);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001549#endif
Denis Efremov742532d2020-06-10 01:14:46 +03001550 kfree(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001551}
1552
1553int f2fs_sync_fs(struct super_block *sb, int sync)
1554{
1555 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yuc34f42e2015-12-23 17:50:30 +08001556 int err = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001557
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001558 if (unlikely(f2fs_cp_error(sbi)))
1559 return 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07001560 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1561 return 0;
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001562
Namjae Jeona2a4a7e2013-04-20 01:28:40 +09001563 trace_f2fs_sync_fs(sb, sync);
1564
Chao Yu4b2414d2017-08-08 10:54:31 +08001565 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1566 return -EAGAIN;
1567
Daeho Jeong261eeb92021-01-19 09:00:42 +09001568 if (sync)
1569 err = f2fs_issue_checkpoint(sbi);
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001570
Chao Yuc34f42e2015-12-23 17:50:30 +08001571 return err;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001572}
1573
Changman Leed6212a52013-01-29 18:30:07 +09001574static int f2fs_freeze(struct super_block *sb)
1575{
Jaegeuk Kim77888c12013-05-20 20:28:47 +09001576 if (f2fs_readonly(sb))
Changman Leed6212a52013-01-29 18:30:07 +09001577 return 0;
1578
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001579 /* IO error happened before */
1580 if (unlikely(f2fs_cp_error(F2FS_SB(sb))))
1581 return -EIO;
1582
1583 /* must be clean, since sync_filesystem() was already called */
1584 if (is_sbi_flag_set(F2FS_SB(sb), SBI_IS_DIRTY))
1585 return -EINVAL;
Jaegeuk Kimd50dfc0c2021-02-08 13:42:21 -08001586
1587 /* ensure no checkpoint required */
1588 if (!llist_empty(&F2FS_SB(sb)->cprc_info.issue_list))
1589 return -EINVAL;
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001590 return 0;
Changman Leed6212a52013-01-29 18:30:07 +09001591}
1592
1593static int f2fs_unfreeze(struct super_block *sb)
1594{
1595 return 0;
1596}
1597
Chao Yuddc34e32017-07-29 00:32:53 +08001598#ifdef CONFIG_QUOTA
1599static int f2fs_statfs_project(struct super_block *sb,
1600 kprojid_t projid, struct kstatfs *buf)
1601{
1602 struct kqid qid;
1603 struct dquot *dquot;
1604 u64 limit;
1605 u64 curblock;
1606
1607 qid = make_kqid_projid(projid);
1608 dquot = dqget(sb, qid);
1609 if (IS_ERR(dquot))
1610 return PTR_ERR(dquot);
Sheng Yong955ac6e2018-07-24 20:17:53 +08001611 spin_lock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001612
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001613 limit = min_not_zero(dquot->dq_dqb.dqb_bsoftlimit,
1614 dquot->dq_dqb.dqb_bhardlimit);
Chengguang Xuacdf2172020-01-04 22:20:03 +08001615 if (limit)
1616 limit >>= sb->s_blocksize_bits;
Chengguang Xu909110c2019-11-25 11:20:36 +08001617
Chao Yuddc34e32017-07-29 00:32:53 +08001618 if (limit && buf->f_blocks > limit) {
Konstantin Khlebnikovbaaa7eb2020-05-11 09:15:18 +03001619 curblock = (dquot->dq_dqb.dqb_curspace +
1620 dquot->dq_dqb.dqb_rsvspace) >> sb->s_blocksize_bits;
Chao Yuddc34e32017-07-29 00:32:53 +08001621 buf->f_blocks = limit;
1622 buf->f_bfree = buf->f_bavail =
1623 (buf->f_blocks > curblock) ?
1624 (buf->f_blocks - curblock) : 0;
1625 }
1626
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001627 limit = min_not_zero(dquot->dq_dqb.dqb_isoftlimit,
1628 dquot->dq_dqb.dqb_ihardlimit);
Chengguang Xu909110c2019-11-25 11:20:36 +08001629
Chao Yuddc34e32017-07-29 00:32:53 +08001630 if (limit && buf->f_files > limit) {
1631 buf->f_files = limit;
1632 buf->f_ffree =
1633 (buf->f_files > dquot->dq_dqb.dqb_curinodes) ?
1634 (buf->f_files - dquot->dq_dqb.dqb_curinodes) : 0;
1635 }
1636
Sheng Yong955ac6e2018-07-24 20:17:53 +08001637 spin_unlock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001638 dqput(dquot);
1639 return 0;
1640}
1641#endif
1642
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001643static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
1644{
1645 struct super_block *sb = dentry->d_sb;
1646 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1647 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001648 block_t total_count, user_block_count, start_count;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001649 u64 avail_node_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001650
1651 total_count = le64_to_cpu(sbi->raw_super->block_count);
1652 user_block_count = sbi->user_block_count;
1653 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001654 buf->f_type = F2FS_SUPER_MAGIC;
1655 buf->f_bsize = sbi->blocksize;
1656
1657 buf->f_blocks = total_count - start_count;
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001658 buf->f_bfree = user_block_count - valid_user_blocks(sbi) -
Yunlong Song80d42142017-10-27 20:45:05 +08001659 sbi->current_reserved_blocks;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001660
1661 spin_lock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001662 if (unlikely(buf->f_bfree <= sbi->unusable_block_count))
1663 buf->f_bfree = 0;
1664 else
1665 buf->f_bfree -= sbi->unusable_block_count;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001666 spin_unlock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001667
Chao Yu63189b72018-03-08 14:22:56 +08001668 if (buf->f_bfree > F2FS_OPTION(sbi).root_reserved_blocks)
1669 buf->f_bavail = buf->f_bfree -
1670 F2FS_OPTION(sbi).root_reserved_blocks;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001671 else
1672 buf->f_bavail = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001673
Chao Yu27cae0b2019-08-05 18:27:25 +08001674 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001675
1676 if (avail_node_count > user_block_count) {
1677 buf->f_files = user_block_count;
1678 buf->f_ffree = buf->f_bavail;
1679 } else {
1680 buf->f_files = avail_node_count;
1681 buf->f_ffree = min(avail_node_count - valid_node_count(sbi),
1682 buf->f_bavail);
1683 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001684
Jaegeuk Kim5a20d332013-03-03 13:58:05 +09001685 buf->f_namelen = F2FS_NAME_LEN;
Al Viro6d1349c2020-09-18 16:45:50 -04001686 buf->f_fsid = u64_to_fsid(id);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001687
Chao Yuddc34e32017-07-29 00:32:53 +08001688#ifdef CONFIG_QUOTA
1689 if (is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) &&
1690 sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
1691 f2fs_statfs_project(sb, F2FS_I(dentry->d_inode)->i_projid, buf);
1692 }
1693#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001694 return 0;
1695}
1696
Chao Yu4b2414d2017-08-08 10:54:31 +08001697static inline void f2fs_show_quota_options(struct seq_file *seq,
1698 struct super_block *sb)
1699{
1700#ifdef CONFIG_QUOTA
1701 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1702
Chao Yu63189b72018-03-08 14:22:56 +08001703 if (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001704 char *fmtname = "";
1705
Chao Yu63189b72018-03-08 14:22:56 +08001706 switch (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001707 case QFMT_VFS_OLD:
1708 fmtname = "vfsold";
1709 break;
1710 case QFMT_VFS_V0:
1711 fmtname = "vfsv0";
1712 break;
1713 case QFMT_VFS_V1:
1714 fmtname = "vfsv1";
1715 break;
1716 }
1717 seq_printf(seq, ",jqfmt=%s", fmtname);
1718 }
1719
Chao Yu63189b72018-03-08 14:22:56 +08001720 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
1721 seq_show_option(seq, "usrjquota",
1722 F2FS_OPTION(sbi).s_qf_names[USRQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001723
Chao Yu63189b72018-03-08 14:22:56 +08001724 if (F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
1725 seq_show_option(seq, "grpjquota",
1726 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001727
Chao Yu63189b72018-03-08 14:22:56 +08001728 if (F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
1729 seq_show_option(seq, "prjjquota",
1730 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001731#endif
1732}
1733
Chao Yucd6ee732021-02-20 17:38:41 +08001734#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001735static inline void f2fs_show_compress_options(struct seq_file *seq,
1736 struct super_block *sb)
1737{
1738 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1739 char *algtype = "";
1740 int i;
1741
1742 if (!f2fs_sb_has_compression(sbi))
1743 return;
1744
1745 switch (F2FS_OPTION(sbi).compress_algorithm) {
1746 case COMPRESS_LZO:
1747 algtype = "lzo";
1748 break;
1749 case COMPRESS_LZ4:
1750 algtype = "lz4";
1751 break;
Chao Yu50cfa662020-03-03 17:46:02 +08001752 case COMPRESS_ZSTD:
1753 algtype = "zstd";
1754 break;
Chao Yu6d92b202020-04-08 19:56:32 +08001755 case COMPRESS_LZORLE:
1756 algtype = "lzo-rle";
1757 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001758 }
1759 seq_printf(seq, ",compress_algorithm=%s", algtype);
1760
Chao Yu3fde13f2021-01-22 17:46:43 +08001761 if (F2FS_OPTION(sbi).compress_level)
1762 seq_printf(seq, ":%d", F2FS_OPTION(sbi).compress_level);
1763
Chao Yu4c8ff702019-11-01 18:07:14 +08001764 seq_printf(seq, ",compress_log_size=%u",
1765 F2FS_OPTION(sbi).compress_log_size);
1766
1767 for (i = 0; i < F2FS_OPTION(sbi).compress_ext_cnt; i++) {
1768 seq_printf(seq, ",compress_extension=%s",
1769 F2FS_OPTION(sbi).extensions[i]);
1770 }
Chao Yub28f0472020-11-26 18:32:09 +08001771
Fengnan Chang151b1982021-06-08 19:15:08 +08001772 for (i = 0; i < F2FS_OPTION(sbi).nocompress_ext_cnt; i++) {
1773 seq_printf(seq, ",nocompress_extension=%s",
1774 F2FS_OPTION(sbi).noextensions[i]);
1775 }
1776
Chao Yub28f0472020-11-26 18:32:09 +08001777 if (F2FS_OPTION(sbi).compress_chksum)
1778 seq_puts(seq, ",compress_chksum");
Daeho Jeong602a16d2020-12-01 13:08:02 +09001779
1780 if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_FS)
1781 seq_printf(seq, ",compress_mode=%s", "fs");
1782 else if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_USER)
1783 seq_printf(seq, ",compress_mode=%s", "user");
Chao Yu6ce19af2021-05-20 19:51:50 +08001784
1785 if (test_opt(sbi, COMPRESS_CACHE))
1786 seq_puts(seq, ",compress_cache");
Chao Yu4c8ff702019-11-01 18:07:14 +08001787}
Chao Yucd6ee732021-02-20 17:38:41 +08001788#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001789
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001790static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
1791{
1792 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
1793
Chao Yubbbc34f2020-02-14 17:44:13 +08001794 if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC)
1795 seq_printf(seq, ",background_gc=%s", "sync");
1796 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_ON)
1797 seq_printf(seq, ",background_gc=%s", "on");
1798 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF)
Namjae Jeon696c0182013-06-16 09:48:48 +09001799 seq_printf(seq, ",background_gc=%s", "off");
Chao Yubbbc34f2020-02-14 17:44:13 +08001800
Chao Yu5911d2d2021-03-27 17:57:06 +08001801 if (test_opt(sbi, GC_MERGE))
1802 seq_puts(seq, ",gc_merge");
1803
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001804 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
1805 seq_puts(seq, ",disable_roll_forward");
Chao Yua9117ec2020-02-14 17:45:11 +08001806 if (test_opt(sbi, NORECOVERY))
1807 seq_puts(seq, ",norecovery");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001808 if (test_opt(sbi, DISCARD))
1809 seq_puts(seq, ",discard");
Sahitya Tummala81621f92019-05-24 14:38:39 +05301810 else
1811 seq_puts(seq, ",nodiscard");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001812 if (test_opt(sbi, NOHEAP))
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04001813 seq_puts(seq, ",no_heap");
1814 else
1815 seq_puts(seq, ",heap");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001816#ifdef CONFIG_F2FS_FS_XATTR
1817 if (test_opt(sbi, XATTR_USER))
1818 seq_puts(seq, ",user_xattr");
1819 else
1820 seq_puts(seq, ",nouser_xattr");
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001821 if (test_opt(sbi, INLINE_XATTR))
1822 seq_puts(seq, ",inline_xattr");
Chao Yu23cf7212017-02-15 10:34:45 +08001823 else
1824 seq_puts(seq, ",noinline_xattr");
Chao Yu6afc6622017-09-06 21:59:50 +08001825 if (test_opt(sbi, INLINE_XATTR_SIZE))
1826 seq_printf(seq, ",inline_xattr_size=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001827 F2FS_OPTION(sbi).inline_xattr_size);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001828#endif
1829#ifdef CONFIG_F2FS_FS_POSIX_ACL
1830 if (test_opt(sbi, POSIX_ACL))
1831 seq_puts(seq, ",acl");
1832 else
1833 seq_puts(seq, ",noacl");
1834#endif
1835 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
Alejandro Martinez Ruizaa435072013-01-25 19:08:59 +01001836 seq_puts(seq, ",disable_ext_identify");
Huajun Li8274de72013-11-10 23:13:17 +08001837 if (test_opt(sbi, INLINE_DATA))
1838 seq_puts(seq, ",inline_data");
Wanpeng Li75342792015-03-24 10:20:27 +08001839 else
1840 seq_puts(seq, ",noinline_data");
Chao Yu5efd3c62014-09-24 18:16:13 +08001841 if (test_opt(sbi, INLINE_DENTRY))
1842 seq_puts(seq, ",inline_dentry");
Chao Yu97c17942016-05-09 19:56:34 +08001843 else
1844 seq_puts(seq, ",noinline_dentry");
Gu Zhengb270ad62014-04-11 17:49:55 +08001845 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09001846 seq_puts(seq, ",flush_merge");
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -07001847 if (test_opt(sbi, NOBARRIER))
1848 seq_puts(seq, ",nobarrier");
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001849 if (test_opt(sbi, FASTBOOT))
1850 seq_puts(seq, ",fastboot");
Chao Yu89672152015-02-05 17:55:51 +08001851 if (test_opt(sbi, EXTENT_CACHE))
1852 seq_puts(seq, ",extent_cache");
Jaegeuk Kim7daaea22015-06-25 17:43:04 -07001853 else
1854 seq_puts(seq, ",noextent_cache");
Chao Yu343f40f2015-12-16 13:12:16 +08001855 if (test_opt(sbi, DATA_FLUSH))
1856 seq_puts(seq, ",data_flush");
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001857
1858 seq_puts(seq, ",mode=");
Chao Yub0332a02020-02-14 17:44:12 +08001859 if (F2FS_OPTION(sbi).fs_mode == FS_MODE_ADAPTIVE)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001860 seq_puts(seq, "adaptive");
Chao Yub0332a02020-02-14 17:44:12 +08001861 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001862 seq_puts(seq, "lfs");
Chao Yu63189b72018-03-08 14:22:56 +08001863 seq_printf(seq, ",active_logs=%u", F2FS_OPTION(sbi).active_logs);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001864 if (test_opt(sbi, RESERVE_ROOT))
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -08001865 seq_printf(seq, ",reserve_root=%u,resuid=%u,resgid=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001866 F2FS_OPTION(sbi).root_reserved_blocks,
1867 from_kuid_munged(&init_user_ns,
1868 F2FS_OPTION(sbi).s_resuid),
1869 from_kgid_munged(&init_user_ns,
1870 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001871 if (F2FS_IO_SIZE_BITS(sbi))
Chengguang Xuc6b18672018-09-22 22:43:09 +08001872 seq_printf(seq, ",io_bits=%u",
1873 F2FS_OPTION(sbi).write_io_size_bits);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001874#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yud4945002018-08-08 17:36:41 +08001875 if (test_opt(sbi, FAULT_INJECTION)) {
Chao Yu44529f82017-06-12 09:44:24 +08001876 seq_printf(seq, ",fault_injection=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001877 F2FS_OPTION(sbi).fault_info.inject_rate);
Chao Yud4945002018-08-08 17:36:41 +08001878 seq_printf(seq, ",fault_type=%u",
1879 F2FS_OPTION(sbi).fault_info.inject_type);
1880 }
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001881#endif
Chao Yu0abd6752017-07-09 00:13:07 +08001882#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08001883 if (test_opt(sbi, QUOTA))
1884 seq_puts(seq, ",quota");
Chao Yu0abd6752017-07-09 00:13:07 +08001885 if (test_opt(sbi, USRQUOTA))
1886 seq_puts(seq, ",usrquota");
1887 if (test_opt(sbi, GRPQUOTA))
1888 seq_puts(seq, ",grpquota");
Chao Yu5c571322017-07-26 00:01:41 +08001889 if (test_opt(sbi, PRJQUOTA))
1890 seq_puts(seq, ",prjquota");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001891#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08001892 f2fs_show_quota_options(seq, sbi->sb);
Chao Yu63189b72018-03-08 14:22:56 +08001893 if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_USER)
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001894 seq_printf(seq, ",whint_mode=%s", "user-based");
Chao Yu63189b72018-03-08 14:22:56 +08001895 else if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_FS)
Hyunchul Leef2e703f2018-01-31 11:36:58 +09001896 seq_printf(seq, ",whint_mode=%s", "fs-based");
Eric Biggersed318a62020-05-12 16:32:50 -07001897
1898 fscrypt_show_test_dummy_encryption(seq, ',', sbi->sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001899
Satya Tangirala27aacd22020-07-02 01:56:06 +00001900 if (sbi->sb->s_flags & SB_INLINECRYPT)
1901 seq_puts(seq, ",inlinecrypt");
1902
Chao Yu63189b72018-03-08 14:22:56 +08001903 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_DEFAULT)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001904 seq_printf(seq, ",alloc_mode=%s", "default");
Chao Yu63189b72018-03-08 14:22:56 +08001905 else if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001906 seq_printf(seq, ",alloc_mode=%s", "reuse");
Junling Zheng93cf93f2018-03-07 12:07:49 +08001907
Daniel Rosenberg43549942018-08-20 19:21:43 -07001908 if (test_opt(sbi, DISABLE_CHECKPOINT))
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001909 seq_printf(seq, ",checkpoint=disable:%u",
1910 F2FS_OPTION(sbi).unusable_cap);
Daeho Jeong261eeb92021-01-19 09:00:42 +09001911 if (test_opt(sbi, MERGE_CHECKPOINT))
1912 seq_puts(seq, ",checkpoint_merge");
1913 else
1914 seq_puts(seq, ",nocheckpoint_merge");
Chao Yu63189b72018-03-08 14:22:56 +08001915 if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_POSIX)
Junling Zheng93cf93f2018-03-07 12:07:49 +08001916 seq_printf(seq, ",fsync_mode=%s", "posix");
Chao Yu63189b72018-03-08 14:22:56 +08001917 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT)
Junling Zheng93cf93f2018-03-07 12:07:49 +08001918 seq_printf(seq, ",fsync_mode=%s", "strict");
Sahitya Tummaladc132802018-07-02 11:37:40 +05301919 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_NOBARRIER)
1920 seq_printf(seq, ",fsync_mode=%s", "nobarrier");
Chao Yu4c8ff702019-11-01 18:07:14 +08001921
Chao Yu1f0b0672020-07-29 21:21:36 +08001922#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001923 f2fs_show_compress_options(seq, sbi->sb);
Chao Yu1f0b0672020-07-29 21:21:36 +08001924#endif
Chao Yu093749e2020-08-04 21:14:49 +08001925
1926 if (test_opt(sbi, ATGC))
1927 seq_puts(seq, ",atgc");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001928 return 0;
1929}
1930
Yunlei He498c5e92015-05-07 18:11:37 +08001931static void default_options(struct f2fs_sb_info *sbi)
1932{
1933 /* init some FS parameters */
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001934 if (f2fs_sb_has_readonly(sbi))
1935 F2FS_OPTION(sbi).active_logs = NR_CURSEG_RO_TYPE;
1936 else
1937 F2FS_OPTION(sbi).active_logs = NR_CURSEG_PERSIST_TYPE;
1938
Chao Yu63189b72018-03-08 14:22:56 +08001939 F2FS_OPTION(sbi).inline_xattr_size = DEFAULT_INLINE_XATTR_ADDRS;
1940 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
1941 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
1942 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Chao Yu0aa7e0f2018-06-06 23:55:02 +08001943 F2FS_OPTION(sbi).s_resuid = make_kuid(&init_user_ns, F2FS_DEF_RESUID);
1944 F2FS_OPTION(sbi).s_resgid = make_kgid(&init_user_ns, F2FS_DEF_RESGID);
Chao Yu91faa532020-03-10 20:50:05 +08001945 F2FS_OPTION(sbi).compress_algorithm = COMPRESS_LZ4;
Chao Yu4c8ff702019-11-01 18:07:14 +08001946 F2FS_OPTION(sbi).compress_log_size = MIN_COMPRESS_LOG_SIZE;
1947 F2FS_OPTION(sbi).compress_ext_cnt = 0;
Daeho Jeong602a16d2020-12-01 13:08:02 +09001948 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
Chao Yubbbc34f2020-02-14 17:44:13 +08001949 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Yunlei He498c5e92015-05-07 18:11:37 +08001950
Satya Tangirala27aacd22020-07-02 01:56:06 +00001951 sbi->sb->s_flags &= ~SB_INLINECRYPT;
1952
Chao Yu39133a52017-02-08 17:39:44 +08001953 set_opt(sbi, INLINE_XATTR);
Yunlei He498c5e92015-05-07 18:11:37 +08001954 set_opt(sbi, INLINE_DATA);
Chao Yu97c17942016-05-09 19:56:34 +08001955 set_opt(sbi, INLINE_DENTRY);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001956 set_opt(sbi, EXTENT_CACHE);
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04001957 set_opt(sbi, NOHEAP);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001958 clear_opt(sbi, DISABLE_CHECKPOINT);
Jaegeuk Kimb5d15192021-04-01 17:25:20 -07001959 set_opt(sbi, MERGE_CHECKPOINT);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001960 F2FS_OPTION(sbi).unusable_cap = 0;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001961 sbi->sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -07001962 set_opt(sbi, FLUSH_MERGE);
Chao Yu7d20c8a2018-09-04 03:52:17 +08001963 set_opt(sbi, DISCARD);
Chao Yu7beb01f2018-10-24 18:34:26 +08001964 if (f2fs_sb_has_blkzoned(sbi))
Chao Yub0332a02020-02-14 17:44:12 +08001965 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Chao Yua39e53652018-07-05 14:24:11 +08001966 else
Chao Yub0332a02020-02-14 17:44:12 +08001967 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Yunlei He498c5e92015-05-07 18:11:37 +08001968
1969#ifdef CONFIG_F2FS_FS_XATTR
1970 set_opt(sbi, XATTR_USER);
1971#endif
1972#ifdef CONFIG_F2FS_FS_POSIX_ACL
1973 set_opt(sbi, POSIX_ACL);
1974#endif
Chao Yu36dbd322016-09-26 19:45:05 +08001975
Chao Yud4945002018-08-08 17:36:41 +08001976 f2fs_build_fault_attr(sbi, 0, 0);
Yunlei He498c5e92015-05-07 18:11:37 +08001977}
1978
Jaegeuk Kimea676732017-10-06 09:14:28 -07001979#ifdef CONFIG_QUOTA
1980static int f2fs_enable_quotas(struct super_block *sb);
1981#endif
Daniel Rosenberg43549942018-08-20 19:21:43 -07001982
1983static int f2fs_disable_checkpoint(struct f2fs_sb_info *sbi)
1984{
Jaegeuk Kim812a9592019-01-22 14:04:33 -08001985 unsigned int s_flags = sbi->sb->s_flags;
Daniel Rosenberg43549942018-08-20 19:21:43 -07001986 struct cp_control cpc;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08001987 int err = 0;
1988 int ret;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001989 block_t unusable;
Daniel Rosenberg43549942018-08-20 19:21:43 -07001990
Jaegeuk Kim812a9592019-01-22 14:04:33 -08001991 if (s_flags & SB_RDONLY) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001992 f2fs_err(sbi, "checkpoint=disable on readonly fs");
Jaegeuk Kim812a9592019-01-22 14:04:33 -08001993 return -EINVAL;
1994 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07001995 sbi->sb->s_flags |= SB_ACTIVE;
1996
Daniel Rosenberg43549942018-08-20 19:21:43 -07001997 f2fs_update_time(sbi, DISABLE_TIME);
1998
1999 while (!f2fs_time_over(sbi, DISABLE_TIME)) {
Chao Yufb24fea2020-01-14 19:36:50 +08002000 down_write(&sbi->gc_lock);
Chao Yu7dede8862021-02-20 17:35:40 +08002001 err = f2fs_gc(sbi, true, false, false, NULL_SEGNO);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002002 if (err == -ENODATA) {
2003 err = 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002004 break;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002005 }
Jaegeuk Kim8f31b462018-12-17 17:08:26 -08002006 if (err && err != -EAGAIN)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002007 break;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002008 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002009
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002010 ret = sync_filesystem(sbi->sb);
2011 if (ret || err) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08002012 err = ret ? ret : err;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002013 goto restore_flag;
2014 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002015
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002016 unusable = f2fs_get_unusable_blocks(sbi);
2017 if (f2fs_disable_cp_again(sbi, unusable)) {
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002018 err = -EAGAIN;
2019 goto restore_flag;
2020 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002021
Chao Yufb24fea2020-01-14 19:36:50 +08002022 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002023 cpc.reason = CP_PAUSE;
2024 set_sbi_flag(sbi, SBI_CP_DISABLED);
Chao Yu896285a2019-04-26 17:57:54 +08002025 err = f2fs_write_checkpoint(sbi, &cpc);
2026 if (err)
2027 goto out_unlock;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002028
Chao Yuc9c8ed52019-05-05 11:40:46 +08002029 spin_lock(&sbi->stat_lock);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002030 sbi->unusable_block_count = unusable;
Chao Yuc9c8ed52019-05-05 11:40:46 +08002031 spin_unlock(&sbi->stat_lock);
2032
Chao Yu896285a2019-04-26 17:57:54 +08002033out_unlock:
Chao Yufb24fea2020-01-14 19:36:50 +08002034 up_write(&sbi->gc_lock);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002035restore_flag:
Chao Yu7a88ddb2020-02-27 19:30:05 +08002036 sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002037 return err;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002038}
2039
2040static void f2fs_enable_checkpoint(struct f2fs_sb_info *sbi)
2041{
Jaegeuk Kimb0ff4fe2021-01-26 17:00:42 -08002042 /* we should flush all the data to keep data consistency */
2043 sync_inodes_sb(sbi->sb);
2044
Chao Yufb24fea2020-01-14 19:36:50 +08002045 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002046 f2fs_dirty_to_prefree(sbi);
2047
2048 clear_sbi_flag(sbi, SBI_CP_DISABLED);
2049 set_sbi_flag(sbi, SBI_IS_DIRTY);
Chao Yufb24fea2020-01-14 19:36:50 +08002050 up_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002051
2052 f2fs_sync_fs(sbi->sb, 1);
2053}
2054
Namjae Jeon696c0182013-06-16 09:48:48 +09002055static int f2fs_remount(struct super_block *sb, int *flags, char *data)
2056{
2057 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2058 struct f2fs_mount_info org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002059 unsigned long old_sb_flags;
Chao Yu63189b72018-03-08 14:22:56 +08002060 int err;
Chao Yu3fd97352021-03-17 17:56:04 +08002061 bool need_restart_gc = false, need_stop_gc = false;
2062 bool need_restart_ckpt = false, need_stop_ckpt = false;
2063 bool need_restart_flush = false, need_stop_flush = false;
Chao Yu9cd81ce2015-09-18 16:55:26 +08002064 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
Chao Yu277afbd2021-07-29 09:22:17 +08002065 bool enable_checkpoint = !test_opt(sbi, DISABLE_CHECKPOINT);
Chao Yu1f78adf2019-07-12 16:57:00 +08002066 bool no_io_align = !F2FS_IO_ALIGNED(sbi);
Chao Yu093749e2020-08-04 21:14:49 +08002067 bool no_atgc = !test_opt(sbi, ATGC);
Chao Yu6ce19af2021-05-20 19:51:50 +08002068 bool no_compress_cache = !test_opt(sbi, COMPRESS_CACHE);
Chao Yu4b2414d2017-08-08 10:54:31 +08002069#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08002070 int i, j;
2071#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002072
2073 /*
2074 * Save the old mount options in case we
2075 * need to restore them.
2076 */
2077 org_mount_opt = sbi->mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002078 old_sb_flags = sb->s_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002079
Chao Yu4b2414d2017-08-08 10:54:31 +08002080#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002081 org_mount_opt.s_jquota_fmt = F2FS_OPTION(sbi).s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002082 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002083 if (F2FS_OPTION(sbi).s_qf_names[i]) {
2084 org_mount_opt.s_qf_names[i] =
2085 kstrdup(F2FS_OPTION(sbi).s_qf_names[i],
2086 GFP_KERNEL);
2087 if (!org_mount_opt.s_qf_names[i]) {
Chao Yu4b2414d2017-08-08 10:54:31 +08002088 for (j = 0; j < i; j++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002089 kfree(org_mount_opt.s_qf_names[j]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002090 return -ENOMEM;
2091 }
2092 } else {
Chao Yu63189b72018-03-08 14:22:56 +08002093 org_mount_opt.s_qf_names[i] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +08002094 }
2095 }
2096#endif
2097
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002098 /* recover superblocks we couldn't write due to previous RO mount */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002099 if (!(*flags & SB_RDONLY) && is_sbi_flag_set(sbi, SBI_NEED_SB_WRITE)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002100 err = f2fs_commit_super(sbi, false);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002101 f2fs_info(sbi, "Try to recover all the superblocks, ret: %d",
2102 err);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002103 if (!err)
2104 clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
2105 }
2106
Yunlei He498c5e92015-05-07 18:11:37 +08002107 default_options(sbi);
Chao Yu26666c82014-09-15 18:04:44 +08002108
Namjae Jeon696c0182013-06-16 09:48:48 +09002109 /* parse mount options */
Eric Biggersed318a62020-05-12 16:32:50 -07002110 err = parse_options(sb, data, true);
Namjae Jeon696c0182013-06-16 09:48:48 +09002111 if (err)
2112 goto restore_opts;
2113
2114 /*
2115 * Previous and new state of filesystem is RO,
Gu Zheng876dc592014-04-11 17:50:00 +08002116 * so skip checking GC and FLUSH_MERGE conditions.
Namjae Jeon696c0182013-06-16 09:48:48 +09002117 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002118 if (f2fs_readonly(sb) && (*flags & SB_RDONLY))
Namjae Jeon696c0182013-06-16 09:48:48 +09002119 goto skip;
2120
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07002121 if (f2fs_sb_has_readonly(sbi) && !(*flags & SB_RDONLY)) {
2122 err = -EROFS;
2123 goto restore_opts;
2124 }
2125
Jaegeuk Kimea676732017-10-06 09:14:28 -07002126#ifdef CONFIG_QUOTA
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002127 if (!f2fs_readonly(sb) && (*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002128 err = dquot_suspend(sb, -1);
2129 if (err < 0)
2130 goto restore_opts;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002131 } else if (f2fs_readonly(sb) && !(*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002132 /* dquot_resume needs RW */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002133 sb->s_flags &= ~SB_RDONLY;
Jaegeuk Kimea676732017-10-06 09:14:28 -07002134 if (sb_any_quota_suspended(sb)) {
2135 dquot_resume(sb, -1);
Chao Yu7beb01f2018-10-24 18:34:26 +08002136 } else if (f2fs_sb_has_quota_ino(sbi)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002137 err = f2fs_enable_quotas(sb);
2138 if (err)
2139 goto restore_opts;
2140 }
Chao Yu0abd6752017-07-09 00:13:07 +08002141 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002142#endif
Chao Yu093749e2020-08-04 21:14:49 +08002143 /* disallow enable atgc dynamically */
2144 if (no_atgc == !!test_opt(sbi, ATGC)) {
2145 err = -EINVAL;
2146 f2fs_warn(sbi, "switch atgc option is not allowed");
2147 goto restore_opts;
2148 }
2149
Chao Yu9cd81ce2015-09-18 16:55:26 +08002150 /* disallow enable/disable extent_cache dynamically */
2151 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
2152 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002153 f2fs_warn(sbi, "switch extent_cache option is not allowed");
Chao Yu9cd81ce2015-09-18 16:55:26 +08002154 goto restore_opts;
2155 }
2156
Chao Yu1f78adf2019-07-12 16:57:00 +08002157 if (no_io_align == !!F2FS_IO_ALIGNED(sbi)) {
2158 err = -EINVAL;
2159 f2fs_warn(sbi, "switch io_bits option is not allowed");
2160 goto restore_opts;
2161 }
2162
Chao Yu6ce19af2021-05-20 19:51:50 +08002163 if (no_compress_cache == !!test_opt(sbi, COMPRESS_CACHE)) {
2164 err = -EINVAL;
2165 f2fs_warn(sbi, "switch compress_cache option is not allowed");
2166 goto restore_opts;
2167 }
2168
Daniel Rosenberg43549942018-08-20 19:21:43 -07002169 if ((*flags & SB_RDONLY) && test_opt(sbi, DISABLE_CHECKPOINT)) {
2170 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002171 f2fs_warn(sbi, "disabling checkpoint not compatible with read-only");
Daniel Rosenberg43549942018-08-20 19:21:43 -07002172 goto restore_opts;
2173 }
2174
Namjae Jeon696c0182013-06-16 09:48:48 +09002175 /*
2176 * We stop the GC thread if FS is mounted as RO
2177 * or if background_gc = off is passed in mount
2178 * option. Also sync the filesystem.
2179 */
Chao Yubbbc34f2020-02-14 17:44:13 +08002180 if ((*flags & SB_RDONLY) ||
Chao Yu5911d2d2021-03-27 17:57:06 +08002181 (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF &&
2182 !test_opt(sbi, GC_MERGE))) {
Namjae Jeon696c0182013-06-16 09:48:48 +09002183 if (sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002184 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002185 need_restart_gc = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002186 }
Chao Yuaba291b2014-11-18 11:17:20 +08002187 } else if (!sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002188 err = f2fs_start_gc_thread(sbi);
Namjae Jeon696c0182013-06-16 09:48:48 +09002189 if (err)
2190 goto restore_opts;
Gu Zheng876dc592014-04-11 17:50:00 +08002191 need_stop_gc = true;
2192 }
2193
Chao Yu63189b72018-03-08 14:22:56 +08002194 if (*flags & SB_RDONLY ||
2195 F2FS_OPTION(sbi).whint_mode != org_mount_opt.whint_mode) {
Jaegeuk Kimfaa0e552016-03-24 10:29:39 -07002196 sync_inodes_sb(sb);
2197
2198 set_sbi_flag(sbi, SBI_IS_DIRTY);
2199 set_sbi_flag(sbi, SBI_IS_CLOSE);
2200 f2fs_sync_fs(sb, 1);
2201 clear_sbi_flag(sbi, SBI_IS_CLOSE);
2202 }
2203
Chao Yu3f7070b2021-03-17 17:56:03 +08002204 if ((*flags & SB_RDONLY) || test_opt(sbi, DISABLE_CHECKPOINT) ||
2205 !test_opt(sbi, MERGE_CHECKPOINT)) {
2206 f2fs_stop_ckpt_thread(sbi);
Chao Yu3fd97352021-03-17 17:56:04 +08002207 need_restart_ckpt = true;
Chao Yu3f7070b2021-03-17 17:56:03 +08002208 } else {
Daeho Jeong261eeb92021-01-19 09:00:42 +09002209 err = f2fs_start_ckpt_thread(sbi);
2210 if (err) {
2211 f2fs_err(sbi,
2212 "Failed to start F2FS issue_checkpoint_thread (%d)",
2213 err);
2214 goto restore_gc;
2215 }
Chao Yu3fd97352021-03-17 17:56:04 +08002216 need_stop_ckpt = true;
Daeho Jeong261eeb92021-01-19 09:00:42 +09002217 }
2218
Gu Zheng876dc592014-04-11 17:50:00 +08002219 /*
2220 * We stop issue flush thread if FS is mounted as RO
2221 * or if flush_merge is not passed in mount option.
2222 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002223 if ((*flags & SB_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002224 clear_opt(sbi, FLUSH_MERGE);
Chao Yu4d57b862018-05-30 00:20:41 +08002225 f2fs_destroy_flush_cmd_control(sbi, false);
Chao Yu3fd97352021-03-17 17:56:04 +08002226 need_restart_flush = true;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002227 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08002228 err = f2fs_create_flush_cmd_control(sbi);
Gu Zheng2163d192014-04-27 14:21:33 +08002229 if (err)
Chao Yu3fd97352021-03-17 17:56:04 +08002230 goto restore_ckpt;
2231 need_stop_flush = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002232 }
Chao Yu3fd97352021-03-17 17:56:04 +08002233
Chao Yu277afbd2021-07-29 09:22:17 +08002234 if (enable_checkpoint == !!test_opt(sbi, DISABLE_CHECKPOINT)) {
Chao Yu3fd97352021-03-17 17:56:04 +08002235 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
2236 err = f2fs_disable_checkpoint(sbi);
2237 if (err)
2238 goto restore_flush;
2239 } else {
2240 f2fs_enable_checkpoint(sbi);
2241 }
2242 }
2243
Namjae Jeon696c0182013-06-16 09:48:48 +09002244skip:
Chao Yu4b2414d2017-08-08 10:54:31 +08002245#ifdef CONFIG_QUOTA
2246 /* Release old quota file names */
2247 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002248 kfree(org_mount_opt.s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002249#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002250 /* Update the POSIXACL Flag */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002251 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
2252 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002253
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08002254 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07002255 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim095680f2018-09-28 00:24:39 -07002256 *flags = (*flags & ~SB_LAZYTIME) | (sb->s_flags & SB_LAZYTIME);
Namjae Jeon696c0182013-06-16 09:48:48 +09002257 return 0;
Chao Yu3fd97352021-03-17 17:56:04 +08002258restore_flush:
2259 if (need_restart_flush) {
2260 if (f2fs_create_flush_cmd_control(sbi))
2261 f2fs_warn(sbi, "background flush thread has stopped");
2262 } else if (need_stop_flush) {
2263 clear_opt(sbi, FLUSH_MERGE);
2264 f2fs_destroy_flush_cmd_control(sbi, false);
2265 }
2266restore_ckpt:
2267 if (need_restart_ckpt) {
2268 if (f2fs_start_ckpt_thread(sbi))
2269 f2fs_warn(sbi, "background ckpt thread has stopped");
2270 } else if (need_stop_ckpt) {
2271 f2fs_stop_ckpt_thread(sbi);
2272 }
Gu Zheng876dc592014-04-11 17:50:00 +08002273restore_gc:
2274 if (need_restart_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002275 if (f2fs_start_gc_thread(sbi))
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002276 f2fs_warn(sbi, "background gc thread has stopped");
Gu Zheng876dc592014-04-11 17:50:00 +08002277 } else if (need_stop_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002278 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002279 }
Namjae Jeon696c0182013-06-16 09:48:48 +09002280restore_opts:
Chao Yu4b2414d2017-08-08 10:54:31 +08002281#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002282 F2FS_OPTION(sbi).s_jquota_fmt = org_mount_opt.s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002283 for (i = 0; i < MAXQUOTAS; i++) {
Wang Xiaojunba87a452020-06-17 20:30:12 +08002284 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu63189b72018-03-08 14:22:56 +08002285 F2FS_OPTION(sbi).s_qf_names[i] = org_mount_opt.s_qf_names[i];
Chao Yu4b2414d2017-08-08 10:54:31 +08002286 }
2287#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002288 sbi->mount_opt = org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002289 sb->s_flags = old_sb_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002290 return err;
2291}
2292
Chao Yu0abd6752017-07-09 00:13:07 +08002293#ifdef CONFIG_QUOTA
2294/* Read data from quotafile */
2295static ssize_t f2fs_quota_read(struct super_block *sb, int type, char *data,
2296 size_t len, loff_t off)
2297{
2298 struct inode *inode = sb_dqopt(sb)->files[type];
2299 struct address_space *mapping = inode->i_mapping;
2300 block_t blkidx = F2FS_BYTES_TO_BLK(off);
2301 int offset = off & (sb->s_blocksize - 1);
2302 int tocopy;
2303 size_t toread;
2304 loff_t i_size = i_size_read(inode);
2305 struct page *page;
2306 char *kaddr;
2307
2308 if (off > i_size)
2309 return 0;
2310
2311 if (off + len > i_size)
2312 len = i_size - off;
2313 toread = len;
2314 while (toread > 0) {
2315 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread);
2316repeat:
Ritesh Harjani02117b82018-03-16 18:53:53 +05302317 page = read_cache_page_gfp(mapping, blkidx, GFP_NOFS);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002318 if (IS_ERR(page)) {
2319 if (PTR_ERR(page) == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002320 congestion_wait(BLK_RW_ASYNC,
2321 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002322 goto repeat;
2323 }
Chao Yuaf033b22018-09-20 20:05:00 +08002324 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002325 return PTR_ERR(page);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002326 }
Chao Yu0abd6752017-07-09 00:13:07 +08002327
2328 lock_page(page);
2329
2330 if (unlikely(page->mapping != mapping)) {
2331 f2fs_put_page(page, 1);
2332 goto repeat;
2333 }
2334 if (unlikely(!PageUptodate(page))) {
2335 f2fs_put_page(page, 1);
Chao Yuaf033b22018-09-20 20:05:00 +08002336 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002337 return -EIO;
2338 }
2339
2340 kaddr = kmap_atomic(page);
2341 memcpy(data, kaddr + offset, tocopy);
2342 kunmap_atomic(kaddr);
2343 f2fs_put_page(page, 1);
2344
2345 offset = 0;
2346 toread -= tocopy;
2347 data += tocopy;
2348 blkidx++;
2349 }
2350 return len;
2351}
2352
2353/* Write to quotafile */
2354static ssize_t f2fs_quota_write(struct super_block *sb, int type,
2355 const char *data, size_t len, loff_t off)
2356{
2357 struct inode *inode = sb_dqopt(sb)->files[type];
2358 struct address_space *mapping = inode->i_mapping;
2359 const struct address_space_operations *a_ops = mapping->a_ops;
2360 int offset = off & (sb->s_blocksize - 1);
2361 size_t towrite = len;
2362 struct page *page;
Chao Yu62f63ee2020-03-19 19:58:00 +08002363 void *fsdata = NULL;
Chao Yu0abd6752017-07-09 00:13:07 +08002364 char *kaddr;
2365 int err = 0;
2366 int tocopy;
2367
2368 while (towrite > 0) {
2369 tocopy = min_t(unsigned long, sb->s_blocksize - offset,
2370 towrite);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002371retry:
Chao Yu0abd6752017-07-09 00:13:07 +08002372 err = a_ops->write_begin(NULL, mapping, off, tocopy, 0,
Chao Yu62f63ee2020-03-19 19:58:00 +08002373 &page, &fsdata);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002374 if (unlikely(err)) {
2375 if (err == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002376 congestion_wait(BLK_RW_ASYNC,
2377 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002378 goto retry;
2379 }
Chao Yuaf033b22018-09-20 20:05:00 +08002380 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002381 break;
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002382 }
Chao Yu0abd6752017-07-09 00:13:07 +08002383
2384 kaddr = kmap_atomic(page);
2385 memcpy(kaddr + offset, data, tocopy);
2386 kunmap_atomic(kaddr);
2387 flush_dcache_page(page);
2388
2389 a_ops->write_end(NULL, mapping, off, tocopy, tocopy,
Chao Yu62f63ee2020-03-19 19:58:00 +08002390 page, fsdata);
Chao Yu0abd6752017-07-09 00:13:07 +08002391 offset = 0;
2392 towrite -= tocopy;
2393 off += tocopy;
2394 data += tocopy;
2395 cond_resched();
2396 }
2397
2398 if (len == towrite)
Jaegeuk Kim6e5b5d42017-10-19 12:07:11 -07002399 return err;
Chao Yu0abd6752017-07-09 00:13:07 +08002400 inode->i_mtime = inode->i_ctime = current_time(inode);
2401 f2fs_mark_inode_dirty_sync(inode, false);
2402 return len - towrite;
2403}
2404
2405static struct dquot **f2fs_get_dquots(struct inode *inode)
2406{
2407 return F2FS_I(inode)->i_dquot;
2408}
2409
2410static qsize_t *f2fs_get_reserved_space(struct inode *inode)
2411{
2412 return &F2FS_I(inode)->i_reserved_quota;
2413}
2414
Chao Yu4b2414d2017-08-08 10:54:31 +08002415static int f2fs_quota_on_mount(struct f2fs_sb_info *sbi, int type)
2416{
Chao Yuaf033b22018-09-20 20:05:00 +08002417 if (is_set_ckpt_flags(sbi, CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002418 f2fs_err(sbi, "quota sysfile may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002419 return 0;
2420 }
2421
Chao Yu63189b72018-03-08 14:22:56 +08002422 return dquot_quota_on_mount(sbi->sb, F2FS_OPTION(sbi).s_qf_names[type],
2423 F2FS_OPTION(sbi).s_jquota_fmt, type);
Chao Yu4b2414d2017-08-08 10:54:31 +08002424}
2425
Jaegeuk Kimea676732017-10-06 09:14:28 -07002426int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly)
Chao Yu4b2414d2017-08-08 10:54:31 +08002427{
Jaegeuk Kimea676732017-10-06 09:14:28 -07002428 int enabled = 0;
2429 int i, err;
2430
Chao Yu7beb01f2018-10-24 18:34:26 +08002431 if (f2fs_sb_has_quota_ino(sbi) && rdonly) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002432 err = f2fs_enable_quotas(sbi->sb);
2433 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002434 f2fs_err(sbi, "Cannot turn on quota_ino: %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002435 return 0;
2436 }
2437 return 1;
2438 }
Chao Yu4b2414d2017-08-08 10:54:31 +08002439
2440 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002441 if (F2FS_OPTION(sbi).s_qf_names[i]) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002442 err = f2fs_quota_on_mount(sbi, i);
2443 if (!err) {
2444 enabled = 1;
2445 continue;
2446 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002447 f2fs_err(sbi, "Cannot turn on quotas: %d on %d",
2448 err, i);
Chao Yu4b2414d2017-08-08 10:54:31 +08002449 }
2450 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002451 return enabled;
2452}
2453
2454static int f2fs_quota_enable(struct super_block *sb, int type, int format_id,
2455 unsigned int flags)
2456{
2457 struct inode *qf_inode;
2458 unsigned long qf_inum;
2459 int err;
2460
Chao Yu7beb01f2018-10-24 18:34:26 +08002461 BUG_ON(!f2fs_sb_has_quota_ino(F2FS_SB(sb)));
Jaegeuk Kimea676732017-10-06 09:14:28 -07002462
2463 qf_inum = f2fs_qf_ino(sb, type);
2464 if (!qf_inum)
2465 return -EPERM;
2466
2467 qf_inode = f2fs_iget(sb, qf_inum);
2468 if (IS_ERR(qf_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002469 f2fs_err(F2FS_SB(sb), "Bad quota inode %u:%lu", type, qf_inum);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002470 return PTR_ERR(qf_inode);
2471 }
2472
2473 /* Don't account quota for quota files to avoid recursion */
2474 qf_inode->i_flags |= S_NOQUOTA;
Jan Kara7212b952019-11-01 18:55:38 +01002475 err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002476 iput(qf_inode);
2477 return err;
2478}
2479
2480static int f2fs_enable_quotas(struct super_block *sb)
2481{
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002482 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002483 int type, err = 0;
2484 unsigned long qf_inum;
2485 bool quota_mopt[MAXQUOTAS] = {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002486 test_opt(sbi, USRQUOTA),
2487 test_opt(sbi, GRPQUOTA),
2488 test_opt(sbi, PRJQUOTA),
Jaegeuk Kimea676732017-10-06 09:14:28 -07002489 };
2490
Chao Yuaf033b22018-09-20 20:05:00 +08002491 if (is_set_ckpt_flags(F2FS_SB(sb), CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002492 f2fs_err(sbi, "quota file may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002493 return 0;
2494 }
2495
2496 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE;
2497
Jaegeuk Kimea676732017-10-06 09:14:28 -07002498 for (type = 0; type < MAXQUOTAS; type++) {
2499 qf_inum = f2fs_qf_ino(sb, type);
2500 if (qf_inum) {
2501 err = f2fs_quota_enable(sb, type, QFMT_VFS_V1,
2502 DQUOT_USAGE_ENABLED |
2503 (quota_mopt[type] ? DQUOT_LIMITS_ENABLED : 0));
2504 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002505 f2fs_err(sbi, "Failed to enable quota tracking (type=%d, err=%d). Please run fsck to fix.",
2506 type, err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002507 for (type--; type >= 0; type--)
2508 dquot_quota_off(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002509 set_sbi_flag(F2FS_SB(sb),
2510 SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002511 return err;
2512 }
2513 }
2514 }
2515 return 0;
Chao Yu4b2414d2017-08-08 10:54:31 +08002516}
2517
Chao Yu9de71ed2021-07-19 16:46:47 +08002518static int f2fs_quota_sync_file(struct f2fs_sb_info *sbi, int type)
2519{
2520 struct quota_info *dqopt = sb_dqopt(sbi->sb);
2521 struct address_space *mapping = dqopt->files[type]->i_mapping;
2522 int ret = 0;
2523
2524 ret = dquot_writeback_dquots(sbi->sb, type);
2525 if (ret)
2526 goto out;
2527
2528 ret = filemap_fdatawrite(mapping);
2529 if (ret)
2530 goto out;
2531
2532 /* if we are using journalled quota */
2533 if (is_journalled_quota(sbi))
2534 goto out;
2535
2536 ret = filemap_fdatawait(mapping);
2537
2538 truncate_inode_pages(&dqopt->files[type]->i_data, 0);
2539out:
2540 if (ret)
2541 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2542 return ret;
2543}
2544
Chao Yuaf033b22018-09-20 20:05:00 +08002545int f2fs_quota_sync(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002546{
Chao Yuaf033b22018-09-20 20:05:00 +08002547 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002548 struct quota_info *dqopt = sb_dqopt(sb);
2549 int cnt;
2550 int ret;
2551
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002552 /*
Chao Yu0abd6752017-07-09 00:13:07 +08002553 * Now when everything is written we can discard the pagecache so
2554 * that userspace sees the changes.
2555 */
2556 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
Chao Yuaf033b22018-09-20 20:05:00 +08002557
Chao Yu0abd6752017-07-09 00:13:07 +08002558 if (type != -1 && cnt != type)
2559 continue;
Chao Yu0abd6752017-07-09 00:13:07 +08002560
Chao Yu9de71ed2021-07-19 16:46:47 +08002561 if (!sb_has_quota_active(sb, type))
2562 return 0;
Chao Yu0abd6752017-07-09 00:13:07 +08002563
2564 inode_lock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002565
2566 /*
2567 * do_quotactl
2568 * f2fs_quota_sync
2569 * down_read(quota_sem)
2570 * dquot_writeback_dquots()
2571 * f2fs_dquot_commit
2572 * block_operation
2573 * down_read(quota_sem)
2574 */
2575 f2fs_lock_op(sbi);
2576 down_read(&sbi->quota_sem);
2577
2578 ret = f2fs_quota_sync_file(sbi, cnt);
2579
2580 up_read(&sbi->quota_sem);
2581 f2fs_unlock_op(sbi);
2582
Chao Yu0abd6752017-07-09 00:13:07 +08002583 inode_unlock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002584
2585 if (ret)
2586 break;
Chao Yu0abd6752017-07-09 00:13:07 +08002587 }
Chao Yuaf033b22018-09-20 20:05:00 +08002588 return ret;
Chao Yu0abd6752017-07-09 00:13:07 +08002589}
2590
2591static int f2fs_quota_on(struct super_block *sb, int type, int format_id,
2592 const struct path *path)
2593{
2594 struct inode *inode;
2595 int err;
2596
Chao Yufe973b02019-07-25 17:33:37 +08002597 /* if quota sysfile exists, deny enabling quota with specific file */
2598 if (f2fs_sb_has_quota_ino(F2FS_SB(sb))) {
2599 f2fs_err(F2FS_SB(sb), "quota sysfile already exists");
2600 return -EBUSY;
2601 }
2602
Chao Yu9a20d392017-08-07 16:37:59 +08002603 err = f2fs_quota_sync(sb, type);
Chao Yu0abd6752017-07-09 00:13:07 +08002604 if (err)
2605 return err;
2606
2607 err = dquot_quota_on(sb, type, format_id, path);
2608 if (err)
2609 return err;
2610
2611 inode = d_inode(path->dentry);
2612
2613 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002614 F2FS_I(inode)->i_flags |= F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL;
Chao Yu9149a5e2018-10-07 19:06:15 +08002615 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002616 inode_unlock(inode);
2617 f2fs_mark_inode_dirty_sync(inode, false);
2618
2619 return 0;
2620}
2621
Chao Yufe973b02019-07-25 17:33:37 +08002622static int __f2fs_quota_off(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002623{
2624 struct inode *inode = sb_dqopt(sb)->files[type];
2625 int err;
2626
2627 if (!inode || !igrab(inode))
2628 return dquot_quota_off(sb, type);
2629
Yunlei Hecda9cc52018-06-26 13:12:43 +08002630 err = f2fs_quota_sync(sb, type);
2631 if (err)
2632 goto out_put;
Chao Yu0abd6752017-07-09 00:13:07 +08002633
2634 err = dquot_quota_off(sb, type);
Chao Yu7beb01f2018-10-24 18:34:26 +08002635 if (err || f2fs_sb_has_quota_ino(F2FS_SB(sb)))
Chao Yu0abd6752017-07-09 00:13:07 +08002636 goto out_put;
2637
2638 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002639 F2FS_I(inode)->i_flags &= ~(F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL);
Chao Yu9149a5e2018-10-07 19:06:15 +08002640 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002641 inode_unlock(inode);
2642 f2fs_mark_inode_dirty_sync(inode, false);
2643out_put:
2644 iput(inode);
2645 return err;
2646}
2647
Chao Yufe973b02019-07-25 17:33:37 +08002648static int f2fs_quota_off(struct super_block *sb, int type)
2649{
2650 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2651 int err;
2652
2653 err = __f2fs_quota_off(sb, type);
2654
2655 /*
2656 * quotactl can shutdown journalled quota, result in inconsistence
2657 * between quota record and fs data by following updates, tag the
2658 * flag to let fsck be aware of it.
2659 */
2660 if (is_journalled_quota(sbi))
2661 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2662 return err;
2663}
2664
Chao Yu4b2414d2017-08-08 10:54:31 +08002665void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002666{
2667 int type;
Yunlei Hecda9cc52018-06-26 13:12:43 +08002668 int err;
Chao Yu0abd6752017-07-09 00:13:07 +08002669
Yunlei Hecda9cc52018-06-26 13:12:43 +08002670 for (type = 0; type < MAXQUOTAS; type++) {
Chao Yufe973b02019-07-25 17:33:37 +08002671 err = __f2fs_quota_off(sb, type);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002672 if (err) {
2673 int ret = dquot_quota_off(sb, type);
2674
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002675 f2fs_err(F2FS_SB(sb), "Fail to turn off disk quota (type: %d, err: %d, ret:%d), Please run fsck to fix it.",
2676 type, err, ret);
Chao Yuaf033b22018-09-20 20:05:00 +08002677 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002678 }
2679 }
Jaegeuk Kim0e0667b2019-01-27 17:59:53 -08002680 /*
2681 * In case of checkpoint=disable, we must flush quota blocks.
2682 * This can cause NULL exception for node_inode in end_io, since
2683 * put_super already dropped it.
2684 */
2685 sync_filesystem(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002686}
2687
Sheng Yong26b5a072018-10-12 18:49:26 +08002688static void f2fs_truncate_quota_inode_pages(struct super_block *sb)
2689{
2690 struct quota_info *dqopt = sb_dqopt(sb);
2691 int type;
2692
2693 for (type = 0; type < MAXQUOTAS; type++) {
2694 if (!dqopt->files[type])
2695 continue;
2696 f2fs_inode_synced(dqopt->files[type]);
2697 }
2698}
2699
Chao Yuaf033b22018-09-20 20:05:00 +08002700static int f2fs_dquot_commit(struct dquot *dquot)
2701{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002702 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002703 int ret;
2704
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002705 down_read_nested(&sbi->quota_sem, SINGLE_DEPTH_NESTING);
Chao Yuaf033b22018-09-20 20:05:00 +08002706 ret = dquot_commit(dquot);
2707 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002708 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2709 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002710 return ret;
2711}
2712
2713static int f2fs_dquot_acquire(struct dquot *dquot)
2714{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002715 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002716 int ret;
2717
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002718 down_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002719 ret = dquot_acquire(dquot);
2720 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002721 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2722 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002723 return ret;
2724}
2725
2726static int f2fs_dquot_release(struct dquot *dquot)
2727{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002728 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002729 int ret = dquot_release(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002730
Chao Yuaf033b22018-09-20 20:05:00 +08002731 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002732 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002733 return ret;
2734}
2735
2736static int f2fs_dquot_mark_dquot_dirty(struct dquot *dquot)
2737{
2738 struct super_block *sb = dquot->dq_sb;
2739 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002740 int ret = dquot_mark_dquot_dirty(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002741
2742 /* if we are using journalled quota */
2743 if (is_journalled_quota(sbi))
2744 set_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
2745
2746 return ret;
2747}
2748
2749static int f2fs_dquot_commit_info(struct super_block *sb, int type)
2750{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002751 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002752 int ret = dquot_commit_info(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002753
Chao Yuaf033b22018-09-20 20:05:00 +08002754 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002755 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002756 return ret;
2757}
Sheng Yong26b5a072018-10-12 18:49:26 +08002758
Wei Yongjun94b1e102018-01-05 09:41:20 +00002759static int f2fs_get_projid(struct inode *inode, kprojid_t *projid)
Chao Yu5c571322017-07-26 00:01:41 +08002760{
2761 *projid = F2FS_I(inode)->i_projid;
2762 return 0;
2763}
2764
Chao Yu0abd6752017-07-09 00:13:07 +08002765static const struct dquot_operations f2fs_quota_operations = {
2766 .get_reserved_space = f2fs_get_reserved_space,
Chao Yuaf033b22018-09-20 20:05:00 +08002767 .write_dquot = f2fs_dquot_commit,
2768 .acquire_dquot = f2fs_dquot_acquire,
2769 .release_dquot = f2fs_dquot_release,
2770 .mark_dirty = f2fs_dquot_mark_dquot_dirty,
2771 .write_info = f2fs_dquot_commit_info,
Chao Yu0abd6752017-07-09 00:13:07 +08002772 .alloc_dquot = dquot_alloc,
2773 .destroy_dquot = dquot_destroy,
Chao Yu5c571322017-07-26 00:01:41 +08002774 .get_projid = f2fs_get_projid,
Chao Yu0abd6752017-07-09 00:13:07 +08002775 .get_next_id = dquot_get_next_id,
2776};
2777
2778static const struct quotactl_ops f2fs_quotactl_ops = {
2779 .quota_on = f2fs_quota_on,
2780 .quota_off = f2fs_quota_off,
2781 .quota_sync = f2fs_quota_sync,
2782 .get_state = dquot_get_state,
2783 .set_info = dquot_set_dqinfo,
2784 .get_dqblk = dquot_get_dqblk,
2785 .set_dqblk = dquot_set_dqblk,
2786 .get_nextdqblk = dquot_get_next_dqblk,
2787};
2788#else
Chao Yuaf033b22018-09-20 20:05:00 +08002789int f2fs_quota_sync(struct super_block *sb, int type)
2790{
2791 return 0;
2792}
2793
Chao Yu4b2414d2017-08-08 10:54:31 +08002794void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002795{
2796}
2797#endif
2798
Arvind Yadavf62fc9f2017-08-31 15:06:24 +05302799static const struct super_operations f2fs_sops = {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002800 .alloc_inode = f2fs_alloc_inode,
Al Virod01718a2019-04-15 19:29:14 -04002801 .free_inode = f2fs_free_inode,
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09002802 .drop_inode = f2fs_drop_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002803 .write_inode = f2fs_write_inode,
Jaegeuk Kimb3783872013-06-10 09:17:01 +09002804 .dirty_inode = f2fs_dirty_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002805 .show_options = f2fs_show_options,
Chao Yu0abd6752017-07-09 00:13:07 +08002806#ifdef CONFIG_QUOTA
2807 .quota_read = f2fs_quota_read,
2808 .quota_write = f2fs_quota_write,
2809 .get_dquots = f2fs_get_dquots,
2810#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002811 .evict_inode = f2fs_evict_inode,
2812 .put_super = f2fs_put_super,
2813 .sync_fs = f2fs_sync_fs,
Changman Leed6212a52013-01-29 18:30:07 +09002814 .freeze_fs = f2fs_freeze,
2815 .unfreeze_fs = f2fs_unfreeze,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002816 .statfs = f2fs_statfs,
Namjae Jeon696c0182013-06-16 09:48:48 +09002817 .remount_fs = f2fs_remount,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002818};
2819
Chandan Rajendra643fa962018-12-12 15:20:12 +05302820#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002821static int f2fs_get_context(struct inode *inode, void *ctx, size_t len)
2822{
2823 return f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2824 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2825 ctx, len, NULL);
2826}
2827
2828static int f2fs_set_context(struct inode *inode, const void *ctx, size_t len,
2829 void *fs_data)
2830{
Sheng Yongb7c409d2018-03-15 18:51:41 +08002831 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2832
2833 /*
2834 * Encrypting the root directory is not allowed because fsck
2835 * expects lost+found directory to exist and remain unencrypted
2836 * if LOST_FOUND feature is enabled.
2837 *
2838 */
Chao Yu7beb01f2018-10-24 18:34:26 +08002839 if (f2fs_sb_has_lost_found(sbi) &&
Sheng Yongb7c409d2018-03-15 18:51:41 +08002840 inode->i_ino == F2FS_ROOT_INO(sbi))
2841 return -EPERM;
2842
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002843 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2844 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2845 ctx, len, fs_data, XATTR_CREATE);
2846}
2847
Eric Biggersac4acb12020-09-16 21:11:35 -07002848static const union fscrypt_policy *f2fs_get_dummy_policy(struct super_block *sb)
Sheng Yongff62af22018-03-15 18:51:42 +08002849{
Eric Biggersac4acb12020-09-16 21:11:35 -07002850 return F2FS_OPTION(F2FS_SB(sb)).dummy_enc_policy.policy;
Sheng Yongff62af22018-03-15 18:51:42 +08002851}
2852
Eric Biggers0eee17e2019-10-24 14:54:38 -07002853static bool f2fs_has_stable_inodes(struct super_block *sb)
2854{
2855 return true;
2856}
2857
2858static void f2fs_get_ino_and_lblk_bits(struct super_block *sb,
2859 int *ino_bits_ret, int *lblk_bits_ret)
2860{
2861 *ino_bits_ret = 8 * sizeof(nid_t);
2862 *lblk_bits_ret = 8 * sizeof(block_t);
2863}
2864
Satya Tangirala27aacd22020-07-02 01:56:06 +00002865static int f2fs_get_num_devices(struct super_block *sb)
2866{
2867 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2868
2869 if (f2fs_is_multi_device(sbi))
2870 return sbi->s_ndevs;
2871 return 1;
2872}
2873
2874static void f2fs_get_devices(struct super_block *sb,
2875 struct request_queue **devs)
2876{
2877 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2878 int i;
2879
2880 for (i = 0; i < sbi->s_ndevs; i++)
2881 devs[i] = bdev_get_queue(FDEV(i).bdev);
2882}
2883
Eric Biggers6f69f0e2017-02-07 12:42:10 -08002884static const struct fscrypt_operations f2fs_cryptops = {
Eric Biggers0eee17e2019-10-24 14:54:38 -07002885 .key_prefix = "f2fs:",
2886 .get_context = f2fs_get_context,
2887 .set_context = f2fs_set_context,
Eric Biggersac4acb12020-09-16 21:11:35 -07002888 .get_dummy_policy = f2fs_get_dummy_policy,
Eric Biggers0eee17e2019-10-24 14:54:38 -07002889 .empty_dir = f2fs_empty_dir,
2890 .max_namelen = F2FS_NAME_LEN,
2891 .has_stable_inodes = f2fs_has_stable_inodes,
2892 .get_ino_and_lblk_bits = f2fs_get_ino_and_lblk_bits,
Satya Tangirala27aacd22020-07-02 01:56:06 +00002893 .get_num_devices = f2fs_get_num_devices,
2894 .get_devices = f2fs_get_devices,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002895};
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002896#endif
2897
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002898static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
2899 u64 ino, u32 generation)
2900{
2901 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2902 struct inode *inode;
2903
Chao Yu4d57b862018-05-30 00:20:41 +08002904 if (f2fs_check_nid_range(sbi, ino))
Chao Yu910bb122014-03-12 17:08:36 +08002905 return ERR_PTR(-ESTALE);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002906
2907 /*
2908 * f2fs_iget isn't quite right if the inode is currently unallocated!
2909 * However f2fs_iget currently does appropriate checks to handle stale
2910 * inodes so everything is OK.
2911 */
2912 inode = f2fs_iget(sb, ino);
2913 if (IS_ERR(inode))
2914 return ERR_CAST(inode);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09002915 if (unlikely(generation && inode->i_generation != generation)) {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002916 /* we didn't find the right inode.. */
2917 iput(inode);
2918 return ERR_PTR(-ESTALE);
2919 }
2920 return inode;
2921}
2922
2923static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
2924 int fh_len, int fh_type)
2925{
2926 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
2927 f2fs_nfs_get_inode);
2928}
2929
2930static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
2931 int fh_len, int fh_type)
2932{
2933 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
2934 f2fs_nfs_get_inode);
2935}
2936
2937static const struct export_operations f2fs_export_ops = {
2938 .fh_to_dentry = f2fs_fh_to_dentry,
2939 .fh_to_parent = f2fs_fh_to_parent,
2940 .get_parent = f2fs_get_parent,
2941};
2942
Chengguang Xu6d1451b2021-01-13 13:21:54 +08002943loff_t max_file_blocks(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002944{
Chao Yu7a2af762017-07-19 00:19:06 +08002945 loff_t result = 0;
Chengguang Xu6d1451b2021-01-13 13:21:54 +08002946 loff_t leaf_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002947
Chao Yu7a2af762017-07-19 00:19:06 +08002948 /*
2949 * note: previously, result is equal to (DEF_ADDRS_PER_INODE -
Chao Yu6afc6622017-09-06 21:59:50 +08002950 * DEFAULT_INLINE_XATTR_ADDRS), but now f2fs try to reserve more
Chao Yu7a2af762017-07-19 00:19:06 +08002951 * space in inode.i_addr, it will be more safe to reassign
2952 * result as zero.
2953 */
2954
Chengguang Xu6d1451b2021-01-13 13:21:54 +08002955 if (inode && f2fs_compressed_file(inode))
2956 leaf_count = ADDRS_PER_BLOCK(inode);
2957 else
2958 leaf_count = DEF_ADDRS_PER_BLOCK;
2959
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002960 /* two direct node blocks */
2961 result += (leaf_count * 2);
2962
2963 /* two indirect node blocks */
2964 leaf_count *= NIDS_PER_BLOCK;
2965 result += (leaf_count * 2);
2966
2967 /* one double indirect node block */
2968 leaf_count *= NIDS_PER_BLOCK;
2969 result += leaf_count;
2970
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002971 return result;
2972}
2973
Jaegeuk Kimfd694732016-03-20 15:33:20 -07002974static int __f2fs_commit_super(struct buffer_head *bh,
2975 struct f2fs_super_block *super)
Chao Yu9a59b622015-12-15 09:58:18 +08002976{
Jaegeuk Kimfd694732016-03-20 15:33:20 -07002977 lock_buffer(bh);
2978 if (super)
2979 memcpy(bh->b_data + F2FS_SUPER_OFFSET, super, sizeof(*super));
Jaegeuk Kimfd694732016-03-20 15:33:20 -07002980 set_buffer_dirty(bh);
2981 unlock_buffer(bh);
2982
2983 /* it's rare case, we can do fua all the time */
Jan Kara3adc5fcb2017-05-02 17:03:47 +02002984 return __sync_dirty_buffer(bh, REQ_SYNC | REQ_PREFLUSH | REQ_FUA);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07002985}
2986
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002987static inline bool sanity_check_area_boundary(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07002988 struct buffer_head *bh)
2989{
2990 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
2991 (bh->b_data + F2FS_SUPER_OFFSET);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002992 struct super_block *sb = sbi->sb;
Chao Yu9a59b622015-12-15 09:58:18 +08002993 u32 segment0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2994 u32 cp_blkaddr = le32_to_cpu(raw_super->cp_blkaddr);
2995 u32 sit_blkaddr = le32_to_cpu(raw_super->sit_blkaddr);
2996 u32 nat_blkaddr = le32_to_cpu(raw_super->nat_blkaddr);
2997 u32 ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
2998 u32 main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2999 u32 segment_count_ckpt = le32_to_cpu(raw_super->segment_count_ckpt);
3000 u32 segment_count_sit = le32_to_cpu(raw_super->segment_count_sit);
3001 u32 segment_count_nat = le32_to_cpu(raw_super->segment_count_nat);
3002 u32 segment_count_ssa = le32_to_cpu(raw_super->segment_count_ssa);
3003 u32 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
3004 u32 segment_count = le32_to_cpu(raw_super->segment_count);
3005 u32 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003006 u64 main_end_blkaddr = main_blkaddr +
3007 (segment_count_main << log_blocks_per_seg);
3008 u64 seg_end_blkaddr = segment0_blkaddr +
3009 (segment_count << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003010
3011 if (segment0_blkaddr != cp_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003012 f2fs_info(sbi, "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
3013 segment0_blkaddr, cp_blkaddr);
Chao Yu9a59b622015-12-15 09:58:18 +08003014 return true;
3015 }
3016
3017 if (cp_blkaddr + (segment_count_ckpt << log_blocks_per_seg) !=
3018 sit_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003019 f2fs_info(sbi, "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
3020 cp_blkaddr, sit_blkaddr,
3021 segment_count_ckpt << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003022 return true;
3023 }
3024
3025 if (sit_blkaddr + (segment_count_sit << log_blocks_per_seg) !=
3026 nat_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003027 f2fs_info(sbi, "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
3028 sit_blkaddr, nat_blkaddr,
3029 segment_count_sit << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003030 return true;
3031 }
3032
3033 if (nat_blkaddr + (segment_count_nat << log_blocks_per_seg) !=
3034 ssa_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003035 f2fs_info(sbi, "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
3036 nat_blkaddr, ssa_blkaddr,
3037 segment_count_nat << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003038 return true;
3039 }
3040
3041 if (ssa_blkaddr + (segment_count_ssa << log_blocks_per_seg) !=
3042 main_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003043 f2fs_info(sbi, "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
3044 ssa_blkaddr, main_blkaddr,
3045 segment_count_ssa << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003046 return true;
3047 }
3048
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003049 if (main_end_blkaddr > seg_end_blkaddr) {
Wang Xiaojund89f5892020-09-18 08:31:24 +08003050 f2fs_info(sbi, "Wrong MAIN_AREA boundary, start(%u) end(%llu) block(%u)",
3051 main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003052 segment_count_main << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003053 return true;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003054 } else if (main_end_blkaddr < seg_end_blkaddr) {
3055 int err = 0;
3056 char *res;
Chao Yu9a59b622015-12-15 09:58:18 +08003057
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003058 /* fix in-memory information all the time */
3059 raw_super->segment_count = cpu_to_le32((main_end_blkaddr -
3060 segment0_blkaddr) >> log_blocks_per_seg);
3061
3062 if (f2fs_readonly(sb) || bdev_read_only(sb->s_bdev)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003063 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003064 res = "internally";
3065 } else {
3066 err = __f2fs_commit_super(bh, NULL);
3067 res = err ? "failed" : "done";
3068 }
Wang Xiaojund89f5892020-09-18 08:31:24 +08003069 f2fs_info(sbi, "Fix alignment : %s, start(%u) end(%llu) block(%u)",
3070 res, main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003071 segment_count_main << log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003072 if (err)
3073 return true;
3074 }
Chao Yu9a59b622015-12-15 09:58:18 +08003075 return false;
3076}
3077
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003078static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003079 struct buffer_head *bh)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003080{
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003081 block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003082 block_t total_sections, blocks_per_seg;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003083 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3084 (bh->b_data + F2FS_SUPER_OFFSET);
Junling Zhengd440c522018-09-28 20:25:56 +08003085 size_t crc_offset = 0;
3086 __u32 crc = 0;
3087
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003088 if (le32_to_cpu(raw_super->magic) != F2FS_SUPER_MAGIC) {
3089 f2fs_info(sbi, "Magic Mismatch, valid(0x%x) - read(0x%x)",
3090 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
3091 return -EINVAL;
3092 }
3093
Junling Zhengd440c522018-09-28 20:25:56 +08003094 /* Check checksum_offset and crc in superblock */
Chao Yu7beb01f2018-10-24 18:34:26 +08003095 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_SB_CHKSUM)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003096 crc_offset = le32_to_cpu(raw_super->checksum_offset);
3097 if (crc_offset !=
3098 offsetof(struct f2fs_super_block, crc)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003099 f2fs_info(sbi, "Invalid SB checksum offset: %zu",
3100 crc_offset);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003101 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003102 }
3103 crc = le32_to_cpu(raw_super->crc);
3104 if (!f2fs_crc_valid(sbi, crc, raw_super, crc_offset)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003105 f2fs_info(sbi, "Invalid SB checksum value: %u", crc);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003106 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003107 }
3108 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003109
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003110 /* Currently, support only 4KB block size */
Chao Yue584bbe2020-12-09 16:49:36 +08003111 if (le32_to_cpu(raw_super->log_blocksize) != F2FS_BLKSIZE_BITS) {
3112 f2fs_info(sbi, "Invalid log_blocksize (%u), supports only %u",
3113 le32_to_cpu(raw_super->log_blocksize),
3114 F2FS_BLKSIZE_BITS);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003115 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003116 }
majianpeng5c9b4692013-02-01 19:07:57 +08003117
Chao Yu9a59b622015-12-15 09:58:18 +08003118 /* check log blocks per segment */
3119 if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003120 f2fs_info(sbi, "Invalid log blocks per segment (%u)",
3121 le32_to_cpu(raw_super->log_blocks_per_seg));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003122 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003123 }
3124
Chao Yu55cf9cb2014-09-15 18:01:10 +08003125 /* Currently, support 512/1024/2048/4096 bytes sector size */
3126 if (le32_to_cpu(raw_super->log_sectorsize) >
3127 F2FS_MAX_LOG_SECTOR_SIZE ||
3128 le32_to_cpu(raw_super->log_sectorsize) <
3129 F2FS_MIN_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003130 f2fs_info(sbi, "Invalid log sectorsize (%u)",
3131 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003132 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003133 }
Chao Yu55cf9cb2014-09-15 18:01:10 +08003134 if (le32_to_cpu(raw_super->log_sectors_per_block) +
3135 le32_to_cpu(raw_super->log_sectorsize) !=
3136 F2FS_MAX_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003137 f2fs_info(sbi, "Invalid log sectors per block(%u) log sectorsize(%u)",
3138 le32_to_cpu(raw_super->log_sectors_per_block),
3139 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003140 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003141 }
Chao Yu9a59b622015-12-15 09:58:18 +08003142
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003143 segment_count = le32_to_cpu(raw_super->segment_count);
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003144 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003145 segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3146 secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3147 total_sections = le32_to_cpu(raw_super->section_count);
3148
3149 /* blocks_per_seg should be 512, given the above check */
3150 blocks_per_seg = 1 << le32_to_cpu(raw_super->log_blocks_per_seg);
3151
3152 if (segment_count > F2FS_MAX_SEGMENT ||
3153 segment_count < F2FS_MIN_SEGMENTS) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003154 f2fs_info(sbi, "Invalid segment count (%u)", segment_count);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003155 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003156 }
3157
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003158 if (total_sections > segment_count_main || total_sections < 1 ||
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003159 segs_per_sec > segment_count || !segs_per_sec) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003160 f2fs_info(sbi, "Invalid segment/section count (%u, %u x %u)",
3161 segment_count, total_sections, segs_per_sec);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003162 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003163 }
3164
Chao Yu3a22e9a2020-09-29 09:23:34 +08003165 if (segment_count_main != total_sections * segs_per_sec) {
3166 f2fs_info(sbi, "Invalid segment/section count (%u != %u * %u)",
3167 segment_count_main, total_sections, segs_per_sec);
3168 return -EFSCORRUPTED;
3169 }
3170
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003171 if ((segment_count / segs_per_sec) < total_sections) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003172 f2fs_info(sbi, "Small segment_count (%u < %u * %u)",
3173 segment_count, segs_per_sec, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003174 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003175 }
3176
Martin Blumenstingl88960062018-12-22 11:22:26 +01003177 if (segment_count > (le64_to_cpu(raw_super->block_count) >> 9)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003178 f2fs_info(sbi, "Wrong segment_count / block_count (%u > %llu)",
3179 segment_count, le64_to_cpu(raw_super->block_count));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003180 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003181 }
3182
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003183 if (RDEV(0).path[0]) {
3184 block_t dev_seg_count = le32_to_cpu(RDEV(0).total_segments);
3185 int i = 1;
3186
3187 while (i < MAX_DEVICES && RDEV(i).path[0]) {
3188 dev_seg_count += le32_to_cpu(RDEV(i).total_segments);
3189 i++;
3190 }
3191 if (segment_count != dev_seg_count) {
3192 f2fs_info(sbi, "Segment count (%u) mismatch with total segments from devices (%u)",
3193 segment_count, dev_seg_count);
3194 return -EFSCORRUPTED;
3195 }
Chao Yu07eb1d62020-09-21 20:53:13 +08003196 } else {
3197 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_BLKZONED) &&
3198 !bdev_is_zoned(sbi->sb->s_bdev)) {
3199 f2fs_info(sbi, "Zoned block device path is missing");
3200 return -EFSCORRUPTED;
3201 }
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003202 }
3203
Chao Yu42bf5462018-06-23 00:12:36 +08003204 if (secs_per_zone > total_sections || !secs_per_zone) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003205 f2fs_info(sbi, "Wrong secs_per_zone / total_sections (%u, %u)",
3206 secs_per_zone, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003207 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003208 }
3209 if (le32_to_cpu(raw_super->extension_count) > F2FS_MAX_EXTENSION ||
3210 raw_super->hot_ext_count > F2FS_MAX_EXTENSION ||
3211 (le32_to_cpu(raw_super->extension_count) +
3212 raw_super->hot_ext_count) > F2FS_MAX_EXTENSION) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003213 f2fs_info(sbi, "Corrupted extension count (%u + %u > %u)",
3214 le32_to_cpu(raw_super->extension_count),
3215 raw_super->hot_ext_count,
3216 F2FS_MAX_EXTENSION);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003217 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003218 }
3219
3220 if (le32_to_cpu(raw_super->cp_payload) >
3221 (blocks_per_seg - F2FS_CP_PACKS)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003222 f2fs_info(sbi, "Insane cp_payload (%u > %u)",
3223 le32_to_cpu(raw_super->cp_payload),
3224 blocks_per_seg - F2FS_CP_PACKS);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003225 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003226 }
3227
Chao Yu9a59b622015-12-15 09:58:18 +08003228 /* check reserved ino info */
3229 if (le32_to_cpu(raw_super->node_ino) != 1 ||
3230 le32_to_cpu(raw_super->meta_ino) != 2 ||
3231 le32_to_cpu(raw_super->root_ino) != 3) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003232 f2fs_info(sbi, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
3233 le32_to_cpu(raw_super->node_ino),
3234 le32_to_cpu(raw_super->meta_ino),
3235 le32_to_cpu(raw_super->root_ino));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003236 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003237 }
3238
3239 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003240 if (sanity_check_area_boundary(sbi, bh))
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003241 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003242
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003243 return 0;
3244}
3245
Chao Yu4d57b862018-05-30 00:20:41 +08003246int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003247{
3248 unsigned int total, fsmeta;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003249 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
3250 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003251 unsigned int ovp_segments, reserved_segments;
Jin Qian15d30422017-05-15 10:45:08 -07003252 unsigned int main_segs, blocks_per_seg;
Chao Yuc77ec612018-06-23 11:25:19 +08003253 unsigned int sit_segs, nat_segs;
3254 unsigned int sit_bitmap_size, nat_bitmap_size;
3255 unsigned int log_blocks_per_seg;
Chao Yu9dc956b2018-06-27 18:05:54 +08003256 unsigned int segment_count_main;
Chao Yue494c2f2018-08-01 19:16:11 +08003257 unsigned int cp_pack_start_sum, cp_payload;
Chao Yu7b63f722019-04-15 15:30:50 +08003258 block_t user_block_count, valid_user_blocks;
3259 block_t avail_node_count, valid_node_count;
Chao Yu042be0f2018-09-06 20:34:12 +08003260 int i, j;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003261
3262 total = le32_to_cpu(raw_super->segment_count);
3263 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
Chao Yuc77ec612018-06-23 11:25:19 +08003264 sit_segs = le32_to_cpu(raw_super->segment_count_sit);
3265 fsmeta += sit_segs;
3266 nat_segs = le32_to_cpu(raw_super->segment_count_nat);
3267 fsmeta += nat_segs;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003268 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
3269 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
3270
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003271 if (unlikely(fsmeta >= total))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003272 return 1;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003273
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003274 ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
3275 reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
3276
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003277 if (!f2fs_sb_has_readonly(sbi) &&
3278 unlikely(fsmeta < F2FS_MIN_META_SEGMENTS ||
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003279 ovp_segments == 0 || reserved_segments == 0)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003280 f2fs_err(sbi, "Wrong layout: check mkfs.f2fs version");
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003281 return 1;
3282 }
Chao Yu9dc956b2018-06-27 18:05:54 +08003283 user_block_count = le64_to_cpu(ckpt->user_block_count);
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003284 segment_count_main = le32_to_cpu(raw_super->segment_count_main) +
3285 (f2fs_sb_has_readonly(sbi) ? 1 : 0);
Chao Yu9dc956b2018-06-27 18:05:54 +08003286 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3287 if (!user_block_count || user_block_count >=
3288 segment_count_main << log_blocks_per_seg) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003289 f2fs_err(sbi, "Wrong user_block_count: %u",
3290 user_block_count);
Chao Yu9dc956b2018-06-27 18:05:54 +08003291 return 1;
3292 }
3293
Chao Yu7b63f722019-04-15 15:30:50 +08003294 valid_user_blocks = le64_to_cpu(ckpt->valid_block_count);
3295 if (valid_user_blocks > user_block_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003296 f2fs_err(sbi, "Wrong valid_user_blocks: %u, user_block_count: %u",
3297 valid_user_blocks, user_block_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003298 return 1;
3299 }
3300
3301 valid_node_count = le32_to_cpu(ckpt->valid_node_count);
Chao Yu27cae0b2019-08-05 18:27:25 +08003302 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Chao Yu7b63f722019-04-15 15:30:50 +08003303 if (valid_node_count > avail_node_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003304 f2fs_err(sbi, "Wrong valid_node_count: %u, avail_node_count: %u",
3305 valid_node_count, avail_node_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003306 return 1;
3307 }
3308
Jin Qian15d30422017-05-15 10:45:08 -07003309 main_segs = le32_to_cpu(raw_super->segment_count_main);
3310 blocks_per_seg = sbi->blocks_per_seg;
3311
3312 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
3313 if (le32_to_cpu(ckpt->cur_node_segno[i]) >= main_segs ||
3314 le16_to_cpu(ckpt->cur_node_blkoff[i]) >= blocks_per_seg)
3315 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003316
3317 if (f2fs_sb_has_readonly(sbi))
3318 goto check_data;
3319
Chao Yu042be0f2018-09-06 20:34:12 +08003320 for (j = i + 1; j < NR_CURSEG_NODE_TYPE; j++) {
3321 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3322 le32_to_cpu(ckpt->cur_node_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003323 f2fs_err(sbi, "Node segment (%u, %u) has the same segno: %u",
3324 i, j,
3325 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003326 return 1;
3327 }
3328 }
Jin Qian15d30422017-05-15 10:45:08 -07003329 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003330check_data:
Jin Qian15d30422017-05-15 10:45:08 -07003331 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
3332 if (le32_to_cpu(ckpt->cur_data_segno[i]) >= main_segs ||
3333 le16_to_cpu(ckpt->cur_data_blkoff[i]) >= blocks_per_seg)
3334 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003335
3336 if (f2fs_sb_has_readonly(sbi))
3337 goto skip_cross;
3338
Chao Yu042be0f2018-09-06 20:34:12 +08003339 for (j = i + 1; j < NR_CURSEG_DATA_TYPE; j++) {
3340 if (le32_to_cpu(ckpt->cur_data_segno[i]) ==
3341 le32_to_cpu(ckpt->cur_data_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003342 f2fs_err(sbi, "Data segment (%u, %u) has the same segno: %u",
3343 i, j,
3344 le32_to_cpu(ckpt->cur_data_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003345 return 1;
3346 }
3347 }
3348 }
3349 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003350 for (j = 0; j < NR_CURSEG_DATA_TYPE; j++) {
Chao Yu042be0f2018-09-06 20:34:12 +08003351 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3352 le32_to_cpu(ckpt->cur_data_segno[j])) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003353 f2fs_err(sbi, "Node segment (%u) and Data segment (%u) has the same segno: %u",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003354 i, j,
3355 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003356 return 1;
3357 }
3358 }
Jin Qian15d30422017-05-15 10:45:08 -07003359 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003360skip_cross:
Chao Yuc77ec612018-06-23 11:25:19 +08003361 sit_bitmap_size = le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
3362 nat_bitmap_size = le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
Chao Yuc77ec612018-06-23 11:25:19 +08003363
3364 if (sit_bitmap_size != ((sit_segs / 2) << log_blocks_per_seg) / 8 ||
3365 nat_bitmap_size != ((nat_segs / 2) << log_blocks_per_seg) / 8) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003366 f2fs_err(sbi, "Wrong bitmap size: sit: %u, nat:%u",
3367 sit_bitmap_size, nat_bitmap_size);
Chao Yuc77ec612018-06-23 11:25:19 +08003368 return 1;
3369 }
3370
Chao Yue494c2f2018-08-01 19:16:11 +08003371 cp_pack_start_sum = __start_sum_addr(sbi);
3372 cp_payload = __cp_payload(sbi);
3373 if (cp_pack_start_sum < cp_payload + 1 ||
3374 cp_pack_start_sum > blocks_per_seg - 1 -
Chao Yud0b9e422020-08-04 21:14:45 +08003375 NR_CURSEG_PERSIST_TYPE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003376 f2fs_err(sbi, "Wrong cp_pack_start_sum: %u",
3377 cp_pack_start_sum);
Chao Yue494c2f2018-08-01 19:16:11 +08003378 return 1;
3379 }
3380
Chao Yu5dae2d32019-05-20 10:09:22 +08003381 if (__is_set_ckpt_flags(ckpt, CP_LARGE_NAT_BITMAP_FLAG) &&
3382 le32_to_cpu(ckpt->checksum_offset) != CP_MIN_CHKSUM_OFFSET) {
Chao Yu2d008832019-07-11 09:29:15 +08003383 f2fs_warn(sbi, "using deprecated layout of large_nat_bitmap, "
3384 "please run fsck v1.13.0 or higher to repair, chksum_offset: %u, "
3385 "fixed with patch: \"f2fs-tools: relocate chksum_offset for large_nat_bitmap feature\"",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003386 le32_to_cpu(ckpt->checksum_offset));
Chao Yu5dae2d32019-05-20 10:09:22 +08003387 return 1;
3388 }
3389
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07003390 if (unlikely(f2fs_cp_error(sbi))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003391 f2fs_err(sbi, "A bug case: need to run fsck");
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003392 return 1;
3393 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003394 return 0;
3395}
3396
3397static void init_sb_info(struct f2fs_sb_info *sbi)
3398{
3399 struct f2fs_super_block *raw_super = sbi->raw_super;
Yunlong Song089842d2018-10-24 16:09:42 +08003400 int i;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003401
3402 sbi->log_sectors_per_block =
3403 le32_to_cpu(raw_super->log_sectors_per_block);
3404 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
3405 sbi->blocksize = 1 << sbi->log_blocksize;
3406 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3407 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
3408 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3409 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3410 sbi->total_sections = le32_to_cpu(raw_super->section_count);
3411 sbi->total_node_count =
3412 (le32_to_cpu(raw_super->segment_count_nat) / 2)
3413 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
Yangtao Lib9ec1092020-12-07 18:59:33 +08003414 F2FS_ROOT_INO(sbi) = le32_to_cpu(raw_super->root_ino);
3415 F2FS_NODE_INO(sbi) = le32_to_cpu(raw_super->node_ino);
3416 F2FS_META_INO(sbi) = le32_to_cpu(raw_super->meta_ino);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09003417 sbi->cur_victim_sec = NULL_SECNO;
Chao Yue3080b02018-10-24 18:37:27 +08003418 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
3419 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +09003420 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
Chao Yue3080b02018-10-24 18:37:27 +08003421 sbi->migration_granularity = sbi->segs_per_sec;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003422
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09003423 sbi->dir_level = DEF_DIR_LEVEL;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08003424 sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08003425 sbi->interval_time[REQ_TIME] = DEF_IDLE_INTERVAL;
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +05303426 sbi->interval_time[DISCARD_TIME] = DEF_IDLE_INTERVAL;
3427 sbi->interval_time[GC_TIME] = DEF_IDLE_INTERVAL;
Daniel Rosenberg43549942018-08-20 19:21:43 -07003428 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_INTERVAL;
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08003429 sbi->interval_time[UMOUNT_DISCARD_TIMEOUT] =
3430 DEF_UMOUNT_DISCARD_TIMEOUT;
Chao Yucaf00472015-01-28 17:48:42 +08003431 clear_sbi_flag(sbi, SBI_NEED_FSCK);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003432
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003433 for (i = 0; i < NR_COUNT_TYPE; i++)
3434 atomic_set(&sbi->nr_pages[i], 0);
3435
Chao Yuc29fd0c2018-06-04 23:20:36 +08003436 for (i = 0; i < META; i++)
3437 atomic_set(&sbi->wb_sync_req[i], 0);
Jaegeuk Kim687de7f2017-03-28 18:07:38 -07003438
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003439 INIT_LIST_HEAD(&sbi->s_list);
3440 mutex_init(&sbi->umount_mutex);
Chao Yu107a8052018-05-26 09:00:13 +08003441 init_rwsem(&sbi->io_order_lock);
Chao Yuaaec2b12016-09-20 11:04:18 +08003442 spin_lock_init(&sbi->cp_lock);
Chao Yu1228b482017-09-29 13:59:39 +08003443
3444 sbi->dirty_device = 0;
3445 spin_lock_init(&sbi->dev_lock);
Chao Yud0d3f1b2018-02-11 22:53:20 +08003446
Chao Yu846ae672018-02-26 22:04:13 +08003447 init_rwsem(&sbi->sb_lock);
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07003448 init_rwsem(&sbi->pin_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003449}
3450
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003451static int init_percpu_info(struct f2fs_sb_info *sbi)
3452{
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003453 int err;
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003454
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07003455 err = percpu_counter_init(&sbi->alloc_valid_block_count, 0, GFP_KERNEL);
3456 if (err)
3457 return err;
3458
Chao Yu4a70e252018-09-05 14:54:02 +08003459 err = percpu_counter_init(&sbi->total_valid_inode_count, 0,
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003460 GFP_KERNEL);
Chao Yu4a70e252018-09-05 14:54:02 +08003461 if (err)
3462 percpu_counter_destroy(&sbi->alloc_valid_block_count);
3463
3464 return err;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003465}
3466
Damien Le Moal178053e2016-10-28 17:45:05 +09003467#ifdef CONFIG_BLK_DEV_ZONED
Christoph Hellwigd4100352019-11-11 11:39:30 +09003468
Aravind Rameshde881df2020-07-16 18:26:56 +05303469struct f2fs_report_zones_args {
3470 struct f2fs_dev_info *dev;
3471 bool zone_cap_mismatch;
3472};
3473
3474static int f2fs_report_zone_cb(struct blk_zone *zone, unsigned int idx,
3475 void *data)
3476{
3477 struct f2fs_report_zones_args *rz_args = data;
3478
3479 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
3480 return 0;
3481
3482 set_bit(idx, rz_args->dev->blkz_seq);
3483 rz_args->dev->zone_capacity_blocks[idx] = zone->capacity >>
3484 F2FS_LOG_SECTORS_PER_BLOCK;
3485 if (zone->len != zone->capacity && !rz_args->zone_cap_mismatch)
3486 rz_args->zone_cap_mismatch = true;
3487
Christoph Hellwigd4100352019-11-11 11:39:30 +09003488 return 0;
3489}
3490
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003491static int init_blkz_info(struct f2fs_sb_info *sbi, int devi)
Damien Le Moal178053e2016-10-28 17:45:05 +09003492{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003493 struct block_device *bdev = FDEV(devi).bdev;
Christoph Hellwiga7824832020-11-26 18:43:37 +01003494 sector_t nr_sectors = bdev_nr_sectors(bdev);
Aravind Rameshde881df2020-07-16 18:26:56 +05303495 struct f2fs_report_zones_args rep_zone_arg;
Christoph Hellwigd4100352019-11-11 11:39:30 +09003496 int ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003497
Chao Yu7beb01f2018-10-24 18:34:26 +08003498 if (!f2fs_sb_has_blkzoned(sbi))
Damien Le Moal178053e2016-10-28 17:45:05 +09003499 return 0;
3500
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003501 if (sbi->blocks_per_blkz && sbi->blocks_per_blkz !=
Damien Le Moalf99e8642017-01-12 07:58:32 -07003502 SECTOR_TO_BLOCK(bdev_zone_sectors(bdev)))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003503 return -EINVAL;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003504 sbi->blocks_per_blkz = SECTOR_TO_BLOCK(bdev_zone_sectors(bdev));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003505 if (sbi->log_blocks_per_blkz && sbi->log_blocks_per_blkz !=
3506 __ilog2_u32(sbi->blocks_per_blkz))
3507 return -EINVAL;
Damien Le Moal178053e2016-10-28 17:45:05 +09003508 sbi->log_blocks_per_blkz = __ilog2_u32(sbi->blocks_per_blkz);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003509 FDEV(devi).nr_blkz = SECTOR_TO_BLOCK(nr_sectors) >>
3510 sbi->log_blocks_per_blkz;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003511 if (nr_sectors & (bdev_zone_sectors(bdev) - 1))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003512 FDEV(devi).nr_blkz++;
Damien Le Moal178053e2016-10-28 17:45:05 +09003513
Eric Biggers0b6d4ca2020-06-04 21:57:48 -07003514 FDEV(devi).blkz_seq = f2fs_kvzalloc(sbi,
Damien Le Moal95175da2019-03-16 09:13:07 +09003515 BITS_TO_LONGS(FDEV(devi).nr_blkz)
3516 * sizeof(unsigned long),
3517 GFP_KERNEL);
3518 if (!FDEV(devi).blkz_seq)
Damien Le Moal178053e2016-10-28 17:45:05 +09003519 return -ENOMEM;
3520
Aravind Rameshde881df2020-07-16 18:26:56 +05303521 /* Get block zones type and zone-capacity */
3522 FDEV(devi).zone_capacity_blocks = f2fs_kzalloc(sbi,
3523 FDEV(devi).nr_blkz * sizeof(block_t),
3524 GFP_KERNEL);
3525 if (!FDEV(devi).zone_capacity_blocks)
3526 return -ENOMEM;
3527
3528 rep_zone_arg.dev = &FDEV(devi);
3529 rep_zone_arg.zone_cap_mismatch = false;
3530
Christoph Hellwigd4100352019-11-11 11:39:30 +09003531 ret = blkdev_report_zones(bdev, 0, BLK_ALL_ZONES, f2fs_report_zone_cb,
Aravind Rameshde881df2020-07-16 18:26:56 +05303532 &rep_zone_arg);
Christoph Hellwigd4100352019-11-11 11:39:30 +09003533 if (ret < 0)
3534 return ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003535
Aravind Rameshde881df2020-07-16 18:26:56 +05303536 if (!rep_zone_arg.zone_cap_mismatch) {
3537 kfree(FDEV(devi).zone_capacity_blocks);
3538 FDEV(devi).zone_capacity_blocks = NULL;
3539 }
3540
Christoph Hellwigd4100352019-11-11 11:39:30 +09003541 return 0;
Damien Le Moal178053e2016-10-28 17:45:05 +09003542}
3543#endif
3544
Gu Zheng9076a752013-10-14 18:47:11 +08003545/*
3546 * Read f2fs raw super block.
Shawn Lin2b39e902016-02-17 08:59:01 +08003547 * Because we have two copies of super block, so read both of them
3548 * to get the first valid one. If any one of them is broken, we pass
3549 * them recovery flag back to the caller.
Gu Zheng9076a752013-10-14 18:47:11 +08003550 */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003551static int read_raw_super_block(struct f2fs_sb_info *sbi,
Gu Zheng9076a752013-10-14 18:47:11 +08003552 struct f2fs_super_block **raw_super,
Chao Yue8240f62015-12-15 17:19:26 +08003553 int *valid_super_block, int *recovery)
majianpeng14d7e9d2013-02-01 19:07:03 +08003554{
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003555 struct super_block *sb = sbi->sb;
Shawn Lin2b39e902016-02-17 08:59:01 +08003556 int block;
Chao Yue8240f62015-12-15 17:19:26 +08003557 struct buffer_head *bh;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003558 struct f2fs_super_block *super;
hujianyangda554e42015-05-21 14:42:53 +08003559 int err = 0;
majianpeng14d7e9d2013-02-01 19:07:03 +08003560
Yunlei Heb39f0de2015-12-15 17:17:20 +08003561 super = kzalloc(sizeof(struct f2fs_super_block), GFP_KERNEL);
3562 if (!super)
3563 return -ENOMEM;
Shawn Lin2b39e902016-02-17 08:59:01 +08003564
3565 for (block = 0; block < 2; block++) {
3566 bh = sb_bread(sb, block);
3567 if (!bh) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003568 f2fs_err(sbi, "Unable to read %dth superblock",
3569 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003570 err = -EIO;
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003571 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003572 continue;
3573 }
majianpeng14d7e9d2013-02-01 19:07:03 +08003574
Shawn Lin2b39e902016-02-17 08:59:01 +08003575 /* sanity checking of raw super */
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003576 err = sanity_check_raw_super(sbi, bh);
3577 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003578 f2fs_err(sbi, "Can't find valid F2FS filesystem in %dth superblock",
3579 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003580 brelse(bh);
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003581 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003582 continue;
3583 }
3584
3585 if (!*raw_super) {
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003586 memcpy(super, bh->b_data + F2FS_SUPER_OFFSET,
3587 sizeof(*super));
Shawn Lin2b39e902016-02-17 08:59:01 +08003588 *valid_super_block = block;
3589 *raw_super = super;
3590 }
Chao Yue8240f62015-12-15 17:19:26 +08003591 brelse(bh);
Shawn Lin2b39e902016-02-17 08:59:01 +08003592 }
3593
hujianyangda554e42015-05-21 14:42:53 +08003594 /* No valid superblock */
Shawn Lin2b39e902016-02-17 08:59:01 +08003595 if (!*raw_super)
Denis Efremov742532d2020-06-10 01:14:46 +03003596 kfree(super);
Shawn Lin2b39e902016-02-17 08:59:01 +08003597 else
3598 err = 0;
hujianyangda554e42015-05-21 14:42:53 +08003599
Shawn Lin2b39e902016-02-17 08:59:01 +08003600 return err;
majianpeng14d7e9d2013-02-01 19:07:03 +08003601}
3602
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003603int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003604{
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003605 struct buffer_head *bh;
Junling Zhengd440c522018-09-28 20:25:56 +08003606 __u32 crc = 0;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003607 int err;
3608
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003609 if ((recover && f2fs_readonly(sbi->sb)) ||
3610 bdev_read_only(sbi->sb->s_bdev)) {
3611 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003612 return -EROFS;
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003613 }
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003614
Junling Zhengd440c522018-09-28 20:25:56 +08003615 /* we should update superblock crc here */
Chao Yu7beb01f2018-10-24 18:34:26 +08003616 if (!recover && f2fs_sb_has_sb_chksum(sbi)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003617 crc = f2fs_crc32(sbi, F2FS_RAW_SUPER(sbi),
3618 offsetof(struct f2fs_super_block, crc));
3619 F2FS_RAW_SUPER(sbi)->crc = cpu_to_le32(crc);
3620 }
3621
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003622 /* write back-up superblock first */
Sheng Yong0964fc12018-01-29 19:13:15 +08003623 bh = sb_bread(sbi->sb, sbi->valid_super_block ? 0 : 1);
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003624 if (!bh)
3625 return -EIO;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003626 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003627 brelse(bh);
Chao Yuc5bda1c2015-06-08 13:28:03 +08003628
3629 /* if we are in recovery path, skip writing valid superblock */
3630 if (recover || err)
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003631 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003632
Chao Yue8240f62015-12-15 17:19:26 +08003633 /* write current valid superblock */
Sheng Yong0964fc12018-01-29 19:13:15 +08003634 bh = sb_bread(sbi->sb, sbi->valid_super_block);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003635 if (!bh)
3636 return -EIO;
3637 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
3638 brelse(bh);
3639 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003640}
3641
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003642static int f2fs_scan_devices(struct f2fs_sb_info *sbi)
3643{
3644 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003645 unsigned int max_devices = MAX_DEVICES;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003646 int i;
3647
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003648 /* Initialize single device information */
3649 if (!RDEV(0).path[0]) {
3650 if (!bdev_is_zoned(sbi->sb->s_bdev))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003651 return 0;
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003652 max_devices = 1;
3653 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003654
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003655 /*
3656 * Initialize multiple devices information, or single
3657 * zoned block device information.
3658 */
Kees Cook026f0502018-06-12 14:28:23 -07003659 sbi->devs = f2fs_kzalloc(sbi,
3660 array_size(max_devices,
3661 sizeof(struct f2fs_dev_info)),
3662 GFP_KERNEL);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003663 if (!sbi->devs)
3664 return -ENOMEM;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003665
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003666 for (i = 0; i < max_devices; i++) {
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003667
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003668 if (i > 0 && !RDEV(i).path[0])
3669 break;
3670
3671 if (max_devices == 1) {
3672 /* Single zoned block device mount */
3673 FDEV(0).bdev =
3674 blkdev_get_by_dev(sbi->sb->s_bdev->bd_dev,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003675 sbi->sb->s_mode, sbi->sb->s_type);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003676 } else {
3677 /* Multi-device mount */
3678 memcpy(FDEV(i).path, RDEV(i).path, MAX_PATH_LEN);
3679 FDEV(i).total_segments =
3680 le32_to_cpu(RDEV(i).total_segments);
3681 if (i == 0) {
3682 FDEV(i).start_blk = 0;
3683 FDEV(i).end_blk = FDEV(i).start_blk +
3684 (FDEV(i).total_segments <<
3685 sbi->log_blocks_per_seg) - 1 +
3686 le32_to_cpu(raw_super->segment0_blkaddr);
3687 } else {
3688 FDEV(i).start_blk = FDEV(i - 1).end_blk + 1;
3689 FDEV(i).end_blk = FDEV(i).start_blk +
3690 (FDEV(i).total_segments <<
3691 sbi->log_blocks_per_seg) - 1;
3692 }
3693 FDEV(i).bdev = blkdev_get_by_path(FDEV(i).path,
3694 sbi->sb->s_mode, sbi->sb->s_type);
3695 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003696 if (IS_ERR(FDEV(i).bdev))
3697 return PTR_ERR(FDEV(i).bdev);
3698
3699 /* to release errored devices */
3700 sbi->s_ndevs = i + 1;
3701
3702#ifdef CONFIG_BLK_DEV_ZONED
3703 if (bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HM &&
Chao Yu7beb01f2018-10-24 18:34:26 +08003704 !f2fs_sb_has_blkzoned(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07003705 f2fs_err(sbi, "Zoned block device feature not enabled");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003706 return -EINVAL;
3707 }
3708 if (bdev_zoned_model(FDEV(i).bdev) != BLK_ZONED_NONE) {
3709 if (init_blkz_info(sbi, i)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003710 f2fs_err(sbi, "Failed to initialize F2FS blkzone information");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003711 return -EINVAL;
3712 }
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003713 if (max_devices == 1)
3714 break;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003715 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x (zone: %s)",
3716 i, FDEV(i).path,
3717 FDEV(i).total_segments,
3718 FDEV(i).start_blk, FDEV(i).end_blk,
3719 bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HA ?
3720 "Host-aware" : "Host-managed");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003721 continue;
3722 }
3723#endif
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003724 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x",
3725 i, FDEV(i).path,
3726 FDEV(i).total_segments,
3727 FDEV(i).start_blk, FDEV(i).end_blk);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003728 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003729 f2fs_info(sbi,
3730 "IO Block Size: %8d KB", F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003731 return 0;
3732}
3733
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003734static int f2fs_setup_casefold(struct f2fs_sb_info *sbi)
3735{
3736#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003737 if (f2fs_sb_has_casefold(sbi) && !sbi->sb->s_encoding) {
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003738 const struct f2fs_sb_encodings *encoding_info;
3739 struct unicode_map *encoding;
3740 __u16 encoding_flags;
3741
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003742 if (f2fs_sb_read_encoding(sbi->raw_super, &encoding_info,
3743 &encoding_flags)) {
3744 f2fs_err(sbi,
3745 "Encoding requested by superblock is unknown");
3746 return -EINVAL;
3747 }
3748
3749 encoding = utf8_load(encoding_info->version);
3750 if (IS_ERR(encoding)) {
3751 f2fs_err(sbi,
3752 "can't mount with superblock charset: %s-%s "
3753 "not supported by the kernel. flags: 0x%x.",
3754 encoding_info->name, encoding_info->version,
3755 encoding_flags);
3756 return PTR_ERR(encoding);
3757 }
3758 f2fs_info(sbi, "Using encoding defined by superblock: "
3759 "%s-%s with flags 0x%hx", encoding_info->name,
3760 encoding_info->version?:"\b", encoding_flags);
3761
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003762 sbi->sb->s_encoding = encoding;
3763 sbi->sb->s_encoding_flags = encoding_flags;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003764 }
3765#else
3766 if (f2fs_sb_has_casefold(sbi)) {
3767 f2fs_err(sbi, "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
3768 return -EINVAL;
3769 }
3770#endif
3771 return 0;
3772}
3773
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003774static void f2fs_tuning_parameters(struct f2fs_sb_info *sbi)
3775{
3776 struct f2fs_sm_info *sm_i = SM_I(sbi);
3777
3778 /* adjust parameters according to the volume size */
3779 if (sm_i->main_segments <= SMALL_VOLUME_SEGMENTS) {
Chao Yu63189b72018-03-08 14:22:56 +08003780 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003781 sm_i->dcc_info->discard_granularity = 1;
3782 sm_i->ipu_policy = 1 << F2FS_IPU_FORCE;
3783 }
Chao Yu4cac90d2018-06-11 18:02:01 +08003784
3785 sbi->readdir_ra = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003786}
3787
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003788static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
3789{
3790 struct f2fs_sb_info *sbi;
hujianyangda554e42015-05-21 14:42:53 +08003791 struct f2fs_super_block *raw_super;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003792 struct inode *root;
Sheng Yong99e3e852016-05-11 17:08:14 +08003793 int err;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003794 bool skip_recovery = false, need_fsck = false;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003795 char *options = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003796 int recovery, i, valid_super_block;
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08003797 struct curseg_info *seg_i;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003798 int retry_cnt = 1;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003799
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07003800try_onemore:
hujianyangda554e42015-05-21 14:42:53 +08003801 err = -EINVAL;
3802 raw_super = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003803 valid_super_block = -1;
hujianyangda554e42015-05-21 14:42:53 +08003804 recovery = 0;
3805
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003806 /* allocate memory for f2fs-specific super block info */
3807 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
3808 if (!sbi)
3809 return -ENOMEM;
3810
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003811 sbi->sb = sb;
3812
Keith Mok43b65732016-03-02 12:04:24 -08003813 /* Load the checksum driver */
3814 sbi->s_chksum_driver = crypto_alloc_shash("crc32", 0, 0);
3815 if (IS_ERR(sbi->s_chksum_driver)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003816 f2fs_err(sbi, "Cannot load crc32 driver.");
Keith Mok43b65732016-03-02 12:04:24 -08003817 err = PTR_ERR(sbi->s_chksum_driver);
3818 sbi->s_chksum_driver = NULL;
3819 goto free_sbi;
3820 }
3821
Namjae Jeonff9234a2013-01-12 14:41:13 +09003822 /* set a block size */
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003823 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003824 f2fs_err(sbi, "unable to set blocksize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003825 goto free_sbi;
Namjae Jeona07ef782012-12-30 14:52:05 +09003826 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003827
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003828 err = read_raw_super_block(sbi, &raw_super, &valid_super_block,
Chao Yue8240f62015-12-15 17:19:26 +08003829 &recovery);
Gu Zheng9076a752013-10-14 18:47:11 +08003830 if (err)
3831 goto free_sbi;
3832
Gu Zheng5fb08372013-06-07 14:16:53 +08003833 sb->s_fs_info = sbi;
Jaegeuk Kim52763a42016-06-13 09:47:48 -07003834 sbi->raw_super = raw_super;
3835
Chao Yu704956e2017-07-31 20:19:09 +08003836 /* precompute checksum seed for metadata */
Chao Yu7beb01f2018-10-24 18:34:26 +08003837 if (f2fs_sb_has_inode_chksum(sbi))
Chao Yu704956e2017-07-31 20:19:09 +08003838 sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
3839 sizeof(raw_super->uuid));
3840
Yunlei He498c5e92015-05-07 18:11:37 +08003841 default_options(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003842 /* parse mount options */
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003843 options = kstrdup((const char *)data, GFP_KERNEL);
3844 if (data && !options) {
3845 err = -ENOMEM;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003846 goto free_sb_buf;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003847 }
3848
Eric Biggersed318a62020-05-12 16:32:50 -07003849 err = parse_options(sb, options, false);
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003850 if (err)
3851 goto free_options;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003852
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003853 sb->s_maxbytes = max_file_blocks(NULL) <<
Chao Yue0afc4d2015-12-31 14:35:37 +08003854 le32_to_cpu(raw_super->log_blocksize);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003855 sb->s_max_links = F2FS_LINK_MAX;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003856
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003857 err = f2fs_setup_casefold(sbi);
3858 if (err)
3859 goto free_options;
3860
Chao Yu0abd6752017-07-09 00:13:07 +08003861#ifdef CONFIG_QUOTA
3862 sb->dq_op = &f2fs_quota_operations;
Jaegeuk Kimbc88ac92019-05-20 16:17:56 -07003863 sb->s_qcop = &f2fs_quotactl_ops;
Chao Yu5c571322017-07-26 00:01:41 +08003864 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Chao Yu292c196a2017-11-16 16:59:14 +08003865
Chao Yu7beb01f2018-10-24 18:34:26 +08003866 if (f2fs_sb_has_quota_ino(sbi)) {
Chao Yu292c196a2017-11-16 16:59:14 +08003867 for (i = 0; i < MAXQUOTAS; i++) {
3868 if (f2fs_qf_ino(sbi->sb, i))
3869 sbi->nquota_files++;
3870 }
3871 }
Chao Yu0abd6752017-07-09 00:13:07 +08003872#endif
3873
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003874 sb->s_op = &f2fs_sops;
Chandan Rajendra643fa962018-12-12 15:20:12 +05303875#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003876 sb->s_cop = &f2fs_cryptops;
Eric Biggersffcc41822017-10-09 12:15:38 -07003877#endif
Eric Biggers95ae2512019-07-22 09:26:24 -07003878#ifdef CONFIG_FS_VERITY
3879 sb->s_vop = &f2fs_verityops;
3880#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003881 sb->s_xattr = f2fs_xattr_handlers;
3882 sb->s_export_op = &f2fs_export_ops;
3883 sb->s_magic = F2FS_SUPER_MAGIC;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003884 sb->s_time_gran = 1;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08003885 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
3886 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Christoph Hellwig85787092017-05-10 15:06:33 +02003887 memcpy(&sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
Yufen Yu578c6472018-01-09 19:33:39 +08003888 sb->s_iflags |= SB_I_CGROUPWB;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003889
3890 /* init f2fs-specific super block info */
Chao Yue8240f62015-12-15 17:19:26 +08003891 sbi->valid_super_block = valid_super_block;
Chao Yufb24fea2020-01-14 19:36:50 +08003892 init_rwsem(&sbi->gc_lock);
Jaegeuk Kim853137c2018-08-09 17:53:34 -07003893 mutex_init(&sbi->writepages);
Sahitya Tummala87699182020-11-23 10:58:32 +05303894 init_rwsem(&sbi->cp_global_sem);
Chao Yub3582c62014-07-03 18:58:39 +08003895 init_rwsem(&sbi->node_write);
Yunlei He59c90812017-03-13 20:22:18 +08003896 init_rwsem(&sbi->node_change);
Jaegeuk Kim315df832015-08-11 12:45:39 -07003897
3898 /* disallow all the data/node/meta page writes */
3899 set_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003900 spin_lock_init(&sbi->stat_lock);
Jaegeuk Kim971767c2013-11-18 17:16:17 +09003901
Chao Yub0af6d42017-08-02 23:21:48 +08003902 /* init iostat info */
3903 spin_lock_init(&sbi->iostat_lock);
3904 sbi->iostat_enable = false;
Daeho Jeong2bc4bea2020-03-30 03:30:59 +00003905 sbi->iostat_period_ms = DEFAULT_IOSTAT_PERIOD_MS;
Chao Yub0af6d42017-08-02 23:21:48 +08003906
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003907 for (i = 0; i < NR_PAGE_TYPE; i++) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08003908 int n = (i == META) ? 1 : NR_TEMP_TYPE;
Jaegeuk Kima912b542017-05-10 11:18:25 -07003909 int j;
3910
Kees Cookc8606592018-06-12 14:28:16 -07003911 sbi->write_io[i] =
3912 f2fs_kmalloc(sbi,
3913 array_size(n,
3914 sizeof(struct f2fs_bio_info)),
3915 GFP_KERNEL);
Christophe JAILLETb63def92017-06-11 09:21:11 +02003916 if (!sbi->write_io[i]) {
3917 err = -ENOMEM;
Chao Yu0b2103e82018-09-05 14:54:01 +08003918 goto free_bio_info;
Christophe JAILLETb63def92017-06-11 09:21:11 +02003919 }
Jaegeuk Kima912b542017-05-10 11:18:25 -07003920
3921 for (j = HOT; j < n; j++) {
3922 init_rwsem(&sbi->write_io[i][j].io_rwsem);
3923 sbi->write_io[i][j].sbi = sbi;
3924 sbi->write_io[i][j].bio = NULL;
Chao Yufb830fc2017-05-19 23:37:01 +08003925 spin_lock_init(&sbi->write_io[i][j].io_lock);
3926 INIT_LIST_HEAD(&sbi->write_io[i][j].io_list);
Chao Yu0b20fce2019-09-30 18:53:25 +08003927 INIT_LIST_HEAD(&sbi->write_io[i][j].bio_list);
3928 init_rwsem(&sbi->write_io[i][j].bio_list_lock);
Jaegeuk Kima912b542017-05-10 11:18:25 -07003929 }
Jaegeuk Kim458e6192013-12-11 13:54:01 +09003930 }
Jaegeuk Kim971767c2013-11-18 17:16:17 +09003931
Jaegeuk Kimb873b792016-08-04 11:38:25 -07003932 init_rwsem(&sbi->cp_rwsem);
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07003933 init_rwsem(&sbi->quota_sem);
Changman Leefb51b5e2013-11-07 12:48:25 +09003934 init_waitqueue_head(&sbi->cp_wait);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003935 init_sb_info(sbi);
3936
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003937 err = init_percpu_info(sbi);
3938 if (err)
Chao Yud7997e62018-01-17 16:31:35 +08003939 goto free_bio_info;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003940
Chao Yuc72db712019-07-12 16:55:42 +08003941 if (F2FS_IO_ALIGNED(sbi)) {
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08003942 sbi->write_io_dummy =
Chao Yua3ebfe42017-02-27 18:43:13 +08003943 mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi) - 1), 0);
Chao Yu1727f312017-06-12 09:44:27 +08003944 if (!sbi->write_io_dummy) {
3945 err = -ENOMEM;
Chao Yud7997e62018-01-17 16:31:35 +08003946 goto free_percpu;
Chao Yu1727f312017-06-12 09:44:27 +08003947 }
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08003948 }
3949
Chao Yua9991502020-02-25 18:17:10 +08003950 /* init per sbi slab cache */
3951 err = f2fs_init_xattr_caches(sbi);
3952 if (err)
3953 goto free_io_dummy;
Chao Yu31083032020-09-14 17:05:13 +08003954 err = f2fs_init_page_array_cache(sbi);
3955 if (err)
3956 goto free_xattr_cache;
Chao Yua9991502020-02-25 18:17:10 +08003957
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003958 /* get an inode for meta space */
3959 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
3960 if (IS_ERR(sbi->meta_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003961 f2fs_err(sbi, "Failed to read F2FS meta data inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003962 err = PTR_ERR(sbi->meta_inode);
Chao Yu31083032020-09-14 17:05:13 +08003963 goto free_page_array_cache;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003964 }
3965
Chao Yu4d57b862018-05-30 00:20:41 +08003966 err = f2fs_get_valid_checkpoint(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09003967 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003968 f2fs_err(sbi, "Failed to get valid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003969 goto free_meta_inode;
Namjae Jeona07ef782012-12-30 14:52:05 +09003970 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003971
Chao Yuaf033b22018-09-20 20:05:00 +08003972 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_QUOTA_NEED_FSCK_FLAG))
3973 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08003974 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_DISABLED_QUICK_FLAG)) {
3975 set_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
3976 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_QUICK_INTERVAL;
3977 }
Chao Yuaf033b22018-09-20 20:05:00 +08003978
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08003979 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FSCK_FLAG))
3980 set_sbi_flag(sbi, SBI_NEED_FSCK);
3981
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003982 /* Initialize device list */
3983 err = f2fs_scan_devices(sbi);
3984 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003985 f2fs_err(sbi, "Failed to find devices");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003986 goto free_devices;
3987 }
3988
Chao Yu4c8ff702019-11-01 18:07:14 +08003989 err = f2fs_init_post_read_wq(sbi);
3990 if (err) {
3991 f2fs_err(sbi, "Failed to initialize post read workqueue");
3992 goto free_devices;
3993 }
3994
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003995 sbi->total_valid_node_count =
3996 le32_to_cpu(sbi->ckpt->valid_node_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07003997 percpu_counter_set(&sbi->total_valid_inode_count,
3998 le32_to_cpu(sbi->ckpt->valid_inode_count));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003999 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
4000 sbi->total_valid_block_count =
4001 le64_to_cpu(sbi->ckpt->valid_block_count);
4002 sbi->last_valid_block_count = sbi->total_valid_block_count;
Chao Yudaeb4332017-06-26 16:24:41 +08004003 sbi->reserved_blocks = 0;
Yunlong Song80d42142017-10-27 20:45:05 +08004004 sbi->current_reserved_blocks = 0;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08004005 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07004006 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07004007
Chao Yuc227f912015-12-16 13:09:20 +08004008 for (i = 0; i < NR_INODE_TYPE; i++) {
4009 INIT_LIST_HEAD(&sbi->inode_list[i]);
4010 spin_lock_init(&sbi->inode_lock[i]);
4011 }
Chao Yu040d2bb2019-05-20 17:36:59 +08004012 mutex_init(&sbi->flush_lock);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004013
Chao Yu4d57b862018-05-30 00:20:41 +08004014 f2fs_init_extent_cache_info(sbi);
Chao Yu1dcc3362015-02-05 17:57:31 +08004015
Chao Yu4d57b862018-05-30 00:20:41 +08004016 f2fs_init_ino_entry_info(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004017
Chao Yu50fa53e2018-08-02 23:03:19 +08004018 f2fs_init_fsync_node_info(sbi);
4019
Daeho Jeong261eeb92021-01-19 09:00:42 +09004020 /* setup checkpoint request control and start checkpoint issue thread */
4021 f2fs_init_ckpt_req_control(sbi);
Chao Yu3f7070b2021-03-17 17:56:03 +08004022 if (!f2fs_readonly(sb) && !test_opt(sbi, DISABLE_CHECKPOINT) &&
Daeho Jeong261eeb92021-01-19 09:00:42 +09004023 test_opt(sbi, MERGE_CHECKPOINT)) {
4024 err = f2fs_start_ckpt_thread(sbi);
4025 if (err) {
4026 f2fs_err(sbi,
4027 "Failed to start F2FS issue_checkpoint_thread (%d)",
4028 err);
4029 goto stop_ckpt_thread;
4030 }
4031 }
4032
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004033 /* setup f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08004034 err = f2fs_build_segment_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004035 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004036 f2fs_err(sbi, "Failed to initialize F2FS segment manager (%d)",
4037 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004038 goto free_sm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004039 }
Chao Yu4d57b862018-05-30 00:20:41 +08004040 err = f2fs_build_node_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004041 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004042 f2fs_err(sbi, "Failed to initialize F2FS node manager (%d)",
4043 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004044 goto free_nm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004045 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004046
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004047 /* For write statistics */
Chao Yu3a0a9cb2020-11-27 21:20:06 +08004048 sbi->sectors_written_start = f2fs_get_sectors_written(sbi);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004049
4050 /* Read accumulated write IO statistics if exists */
4051 seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
4052 if (__exist_node_summaries(sbi))
4053 sbi->kbytes_written =
Shuoran Liub2dde6f2016-03-29 18:00:15 +08004054 le64_to_cpu(seg_i->journal->info.kbytes_written);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004055
Chao Yu4d57b862018-05-30 00:20:41 +08004056 f2fs_build_gc_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004057
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304058 err = f2fs_build_stats(sbi);
4059 if (err)
4060 goto free_nm;
4061
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004062 /* get an inode for node space */
4063 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
4064 if (IS_ERR(sbi->node_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004065 f2fs_err(sbi, "Failed to read node inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004066 err = PTR_ERR(sbi->node_inode);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304067 goto free_stats;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004068 }
4069
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004070 /* read root inode and dentry */
4071 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
4072 if (IS_ERR(root)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004073 f2fs_err(sbi, "Failed to read root inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004074 err = PTR_ERR(root);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304075 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004076 }
Chao Yubcbfbd62018-06-29 00:19:25 +08004077 if (!S_ISDIR(root->i_mode) || !root->i_blocks ||
4078 !root->i_size || !root->i_nlink) {
Chao Yu9d847952014-07-25 12:55:09 +08004079 iput(root);
Chao Yu8f99a942013-11-28 15:43:43 +08004080 err = -EINVAL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304081 goto free_node_inode;
Chao Yu8f99a942013-11-28 15:43:43 +08004082 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004083
4084 sb->s_root = d_make_root(root); /* allocate root dentry */
4085 if (!sb->s_root) {
4086 err = -ENOMEM;
Chengguang Xu025cdb162019-01-23 15:49:44 +08004087 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004088 }
4089
Chao Yu6ce19af2021-05-20 19:51:50 +08004090 err = f2fs_init_compress_inode(sbi);
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004091 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004092 goto free_root_inode;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004093
Chao Yu6ce19af2021-05-20 19:51:50 +08004094 err = f2fs_register_sysfs(sbi);
4095 if (err)
4096 goto free_compress_inode;
4097
Jaegeuk Kimea676732017-10-06 09:14:28 -07004098#ifdef CONFIG_QUOTA
Sheng Yong76cf05d2018-07-26 19:24:25 +08004099 /* Enable quota usage during mount */
Chao Yu7beb01f2018-10-24 18:34:26 +08004100 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07004101 err = f2fs_enable_quotas(sb);
Jaegeuk Kim730746c2018-10-02 17:20:58 -07004102 if (err)
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004103 f2fs_err(sbi, "Cannot turn on quotas: error %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07004104 }
4105#endif
Chao Yu7a88ddb2020-02-27 19:30:05 +08004106 /* if there are any orphan inodes, free them */
Chao Yu4d57b862018-05-30 00:20:41 +08004107 err = f2fs_recover_orphan_inodes(sbi);
Chao Yu4b2414d2017-08-08 10:54:31 +08004108 if (err)
Jaegeuk Kimea676732017-10-06 09:14:28 -07004109 goto free_meta;
Chao Yu4b2414d2017-08-08 10:54:31 +08004110
Daniel Rosenberg43549942018-08-20 19:21:43 -07004111 if (unlikely(is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)))
Chao Yuaa2c8c42019-02-19 16:23:53 +08004112 goto reset_checkpoint;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004113
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004114 /* recover fsynced data */
Chao Yua9117ec2020-02-14 17:45:11 +08004115 if (!test_opt(sbi, DISABLE_ROLL_FORWARD) &&
4116 !test_opt(sbi, NORECOVERY)) {
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004117 /*
4118 * mount should be failed, when device has readonly mode, and
4119 * previous checkpoint was not done by clean system shutdown.
4120 */
Chao Yub61af312019-04-22 20:22:37 +08004121 if (f2fs_hw_is_readonly(sbi)) {
Chao Yu23738e72021-03-31 11:16:32 +08004122 if (!is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4123 err = f2fs_recover_fsync_data(sbi, true);
4124 if (err > 0) {
4125 err = -EROFS;
4126 f2fs_err(sbi, "Need to recover fsync data, but "
4127 "write access unavailable, please try "
4128 "mount w/ disable_roll_forward or norecovery");
4129 }
4130 if (err < 0)
4131 goto free_meta;
4132 }
4133 f2fs_info(sbi, "write access unavailable, skipping recovery");
Chao Yub61af312019-04-22 20:22:37 +08004134 goto reset_checkpoint;
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004135 }
Chao Yu2adc3502015-03-16 21:08:44 +08004136
4137 if (need_fsck)
4138 set_sbi_flag(sbi, SBI_NEED_FSCK);
4139
Chao Yuaa2c8c42019-02-19 16:23:53 +08004140 if (skip_recovery)
4141 goto reset_checkpoint;
Jaegeuk Kima468f0e2016-09-19 17:55:10 -07004142
Chao Yu4d57b862018-05-30 00:20:41 +08004143 err = f2fs_recover_fsync_data(sbi, false);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004144 if (err < 0) {
Chao Yuaa2c8c42019-02-19 16:23:53 +08004145 if (err != -ENOMEM)
4146 skip_recovery = true;
Chao Yu2adc3502015-03-16 21:08:44 +08004147 need_fsck = true;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004148 f2fs_err(sbi, "Cannot recover all fsync data errno=%d",
4149 err);
Chao Yu4b2414d2017-08-08 10:54:31 +08004150 goto free_meta;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004151 }
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004152 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08004153 err = f2fs_recover_fsync_data(sbi, true);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004154
4155 if (!f2fs_readonly(sb) && err > 0) {
4156 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004157 f2fs_err(sbi, "Need to recover fsync data");
Jaegeuk Kimea676732017-10-06 09:14:28 -07004158 goto free_meta;
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004159 }
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004160 }
Shin'ichiro Kawasakid508c942019-12-09 19:44:45 +09004161
4162 /*
4163 * If the f2fs is not readonly and fsync data recovery succeeds,
4164 * check zoned block devices' write pointer consistency.
4165 */
4166 if (!err && !f2fs_readonly(sb) && f2fs_sb_has_blkzoned(sbi)) {
4167 err = f2fs_check_write_pointer(sbi);
4168 if (err)
4169 goto free_meta;
4170 }
4171
Chao Yuaa2c8c42019-02-19 16:23:53 +08004172reset_checkpoint:
Chao Yu093749e2020-08-04 21:14:49 +08004173 f2fs_init_inmem_curseg(sbi);
4174
Chao Yu4d57b862018-05-30 00:20:41 +08004175 /* f2fs_recover_fsync_data() cleared this already */
Jaegeuk Kim315df832015-08-11 12:45:39 -07004176 clear_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004177
Daniel Rosenberg43549942018-08-20 19:21:43 -07004178 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
4179 err = f2fs_disable_checkpoint(sbi);
4180 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004181 goto sync_free_meta;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004182 } else if (is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)) {
4183 f2fs_enable_checkpoint(sbi);
4184 }
4185
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004186 /*
4187 * If filesystem is not mounted as read-only then
4188 * do start the gc_thread.
4189 */
Chao Yu5911d2d2021-03-27 17:57:06 +08004190 if ((F2FS_OPTION(sbi).bggc_mode != BGGC_MODE_OFF ||
4191 test_opt(sbi, GC_MERGE)) && !f2fs_readonly(sb)) {
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004192 /* After POR, we can run background GC thread.*/
Chao Yu4d57b862018-05-30 00:20:41 +08004193 err = f2fs_start_gc_thread(sbi);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004194 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004195 goto sync_free_meta;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004196 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08004197 kvfree(options);
hujianyangda554e42015-05-21 14:42:53 +08004198
4199 /* recover broken superblock */
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07004200 if (recovery) {
Chao Yu41214b32016-02-22 18:33:20 +08004201 err = f2fs_commit_super(sbi, true);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004202 f2fs_info(sbi, "Try to recover %dth superblock, ret: %d",
4203 sbi->valid_super_block ? 1 : 2, err);
hujianyangda554e42015-05-21 14:42:53 +08004204 }
4205
Chao Yubae01ed2017-11-30 19:28:20 +08004206 f2fs_join_shrinker(sbi);
4207
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08004208 f2fs_tuning_parameters(sbi);
4209
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004210 f2fs_notice(sbi, "Mounted with checkpoint version = %llx",
4211 cur_cp_version(F2FS_CKPT(sbi)));
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08004212 f2fs_update_time(sbi, CP_TIME);
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08004213 f2fs_update_time(sbi, REQ_TIME);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004214 clear_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004215 return 0;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004216
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004217sync_free_meta:
4218 /* safe to flush all the data */
4219 sync_filesystem(sbi->sb);
Chao Yuaa2c8c42019-02-19 16:23:53 +08004220 retry_cnt = 0;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004221
Chao Yu4b2414d2017-08-08 10:54:31 +08004222free_meta:
Jaegeuk Kimea676732017-10-06 09:14:28 -07004223#ifdef CONFIG_QUOTA
Sheng Yong26b5a072018-10-12 18:49:26 +08004224 f2fs_truncate_quota_inode_pages(sb);
Chao Yu7beb01f2018-10-24 18:34:26 +08004225 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb))
Jaegeuk Kimea676732017-10-06 09:14:28 -07004226 f2fs_quota_off_umount(sbi->sb);
4227#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08004228 /*
Chao Yu4d57b862018-05-30 00:20:41 +08004229 * Some dirty meta pages can be produced by f2fs_recover_orphan_inodes()
Chao Yu4b2414d2017-08-08 10:54:31 +08004230 * failed by EIO. Then, iput(node_inode) can trigger balance_fs_bg()
Chao Yu4d57b862018-05-30 00:20:41 +08004231 * followed by f2fs_write_checkpoint() through f2fs_write_node_pages(), which
4232 * falls into an infinite loop in f2fs_sync_meta_pages().
Chao Yu4b2414d2017-08-08 10:54:31 +08004233 */
4234 truncate_inode_pages_final(META_MAPPING(sbi));
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004235 /* evict some inodes being cached by GC */
4236 evict_inodes(sb);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004237 f2fs_unregister_sysfs(sbi);
Chao Yu6ce19af2021-05-20 19:51:50 +08004238free_compress_inode:
4239 f2fs_destroy_compress_inode(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004240free_root_inode:
4241 dput(sb->s_root);
4242 sb->s_root = NULL;
Chao Yubae01ed2017-11-30 19:28:20 +08004243free_node_inode:
Chao Yu4d57b862018-05-30 00:20:41 +08004244 f2fs_release_ino_entry(sbi, true);
Chao Yubae01ed2017-11-30 19:28:20 +08004245 truncate_inode_pages_final(NODE_MAPPING(sbi));
4246 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004247 sbi->node_inode = NULL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304248free_stats:
4249 f2fs_destroy_stats(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004250free_nm:
Chao Yu4d57b862018-05-30 00:20:41 +08004251 f2fs_destroy_node_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004252free_sm:
Chao Yu4d57b862018-05-30 00:20:41 +08004253 f2fs_destroy_segment_manager(sbi);
Chao Yu4c8ff702019-11-01 18:07:14 +08004254 f2fs_destroy_post_read_wq(sbi);
Daeho Jeong261eeb92021-01-19 09:00:42 +09004255stop_ckpt_thread:
4256 f2fs_stop_ckpt_thread(sbi);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004257free_devices:
4258 destroy_device_list(sbi);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004259 kvfree(sbi->ckpt);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004260free_meta_inode:
4261 make_bad_inode(sbi->meta_inode);
4262 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004263 sbi->meta_inode = NULL;
Chao Yu31083032020-09-14 17:05:13 +08004264free_page_array_cache:
4265 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08004266free_xattr_cache:
4267 f2fs_destroy_xattr_caches(sbi);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004268free_io_dummy:
4269 mempool_destroy(sbi->write_io_dummy);
Chao Yud7997e62018-01-17 16:31:35 +08004270free_percpu:
4271 destroy_percpu_info(sbi);
4272free_bio_info:
Jaegeuk Kima912b542017-05-10 11:18:25 -07004273 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08004274 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004275
4276#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07004277 utf8_unload(sb->s_encoding);
Hyeongseok Kim89ff6002020-11-12 18:14:54 +09004278 sb->s_encoding = NULL;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004279#endif
Chao Yud7997e62018-01-17 16:31:35 +08004280free_options:
Chao Yu4b2414d2017-08-08 10:54:31 +08004281#ifdef CONFIG_QUOTA
4282 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08004283 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08004284#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07004285 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004286 kvfree(options);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004287free_sb_buf:
Denis Efremov742532d2020-06-10 01:14:46 +03004288 kfree(raw_super);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004289free_sbi:
Keith Mok43b65732016-03-02 12:04:24 -08004290 if (sbi->s_chksum_driver)
4291 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03004292 kfree(sbi);
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004293
4294 /* give only one another chance */
Chao Yuaa2c8c42019-02-19 16:23:53 +08004295 if (retry_cnt > 0 && skip_recovery) {
4296 retry_cnt--;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004297 shrink_dcache_sb(sb);
4298 goto try_onemore;
4299 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004300 return err;
4301}
4302
4303static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
4304 const char *dev_name, void *data)
4305{
4306 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
4307}
4308
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004309static void kill_f2fs_super(struct super_block *sb)
4310{
Chao Yucce13252017-06-29 23:17:45 +08004311 if (sb->s_root) {
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004312 struct f2fs_sb_info *sbi = F2FS_SB(sb);
4313
4314 set_sbi_flag(sbi, SBI_IS_CLOSE);
4315 f2fs_stop_gc_thread(sbi);
4316 f2fs_stop_discard_thread(sbi);
4317
Chao Yu6ce19af2021-05-20 19:51:50 +08004318#ifdef CONFIG_F2FS_FS_COMPRESSION
4319 /*
4320 * latter evict_inode() can bypass checking and invalidating
4321 * compress inode cache.
4322 */
4323 if (test_opt(sbi, COMPRESS_CACHE))
4324 truncate_inode_pages_final(COMPRESS_MAPPING(sbi));
4325#endif
4326
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004327 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
4328 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4329 struct cp_control cpc = {
4330 .reason = CP_UMOUNT,
4331 };
4332 f2fs_write_checkpoint(sbi, &cpc);
4333 }
Chao Yu13787522018-08-22 17:11:05 +08004334
4335 if (is_sbi_flag_set(sbi, SBI_IS_RECOVERED) && f2fs_readonly(sb))
4336 sb->s_flags &= ~SB_RDONLY;
Chao Yucce13252017-06-29 23:17:45 +08004337 }
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004338 kill_block_super(sb);
4339}
4340
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004341static struct file_system_type f2fs_fs_type = {
4342 .owner = THIS_MODULE,
4343 .name = "f2fs",
4344 .mount = f2fs_mount,
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004345 .kill_sb = kill_f2fs_super,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004346 .fs_flags = FS_REQUIRES_DEV,
4347};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08004348MODULE_ALIAS_FS("f2fs");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004349
Namjae Jeon6e6093a2013-01-17 00:08:30 +09004350static int __init init_inodecache(void)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004351{
Vladimir Davydov5d097052016-01-14 15:18:21 -08004352 f2fs_inode_cachep = kmem_cache_create("f2fs_inode_cache",
4353 sizeof(struct f2fs_inode_info), 0,
4354 SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT, NULL);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09004355 if (!f2fs_inode_cachep)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004356 return -ENOMEM;
4357 return 0;
4358}
4359
4360static void destroy_inodecache(void)
4361{
4362 /*
4363 * Make sure all delayed rcu free inodes are flushed before we
4364 * destroy cache.
4365 */
4366 rcu_barrier();
4367 kmem_cache_destroy(f2fs_inode_cachep);
4368}
4369
4370static int __init init_f2fs_fs(void)
4371{
4372 int err;
4373
Anatoly Pugachev4071e672018-05-28 02:06:37 +03004374 if (PAGE_SIZE != F2FS_BLKSIZE) {
4375 printk("F2FS not supported on PAGE_SIZE(%lu) != %d\n",
4376 PAGE_SIZE, F2FS_BLKSIZE);
4377 return -EINVAL;
4378 }
4379
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004380 err = init_inodecache();
4381 if (err)
4382 goto fail;
Chao Yu4d57b862018-05-30 00:20:41 +08004383 err = f2fs_create_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004384 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004385 goto free_inodecache;
Chao Yu4d57b862018-05-30 00:20:41 +08004386 err = f2fs_create_segment_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004387 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004388 goto free_node_manager_caches;
Chao Yu4d57b862018-05-30 00:20:41 +08004389 err = f2fs_create_checkpoint_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004390 if (err)
Chao Yu06292072014-12-29 15:56:18 +08004391 goto free_segment_manager_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004392 err = f2fs_create_recovery_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004393 if (err)
4394 goto free_checkpoint_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004395 err = f2fs_create_extent_cache();
4396 if (err)
4397 goto free_recovery_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004398 err = f2fs_create_garbage_collection_cache();
Chao Yua3981012017-06-14 17:39:46 +08004399 if (err)
Chao Yu1dcc3362015-02-05 17:57:31 +08004400 goto free_extent_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004401 err = f2fs_init_sysfs();
4402 if (err)
4403 goto free_garbage_collection_cache;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004404 err = register_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimcfc4d972015-05-15 15:37:24 -07004405 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004406 goto free_sysfs;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004407 err = register_filesystem(&f2fs_fs_type);
4408 if (err)
4409 goto free_shrinker;
Greg Kroah-Hartman21acc072019-01-04 14:26:18 +01004410 f2fs_create_root_stats();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004411 err = f2fs_init_post_read_processing();
4412 if (err)
4413 goto free_root_stats;
Chao Yu0b20fce2019-09-30 18:53:25 +08004414 err = f2fs_init_bio_entry_cache();
4415 if (err)
4416 goto free_post_read;
Chao Yuf5438052019-12-04 09:52:58 +08004417 err = f2fs_init_bioset();
4418 if (err)
4419 goto free_bio_enrty_cache;
Chao Yu5e6bbde2020-04-08 19:56:05 +08004420 err = f2fs_init_compress_mempool();
4421 if (err)
4422 goto free_bioset;
Chao Yuc68d6c82020-09-14 17:05:14 +08004423 err = f2fs_init_compress_cache();
4424 if (err)
4425 goto free_compress_mempool;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004426 err = f2fs_create_casefold_cache();
4427 if (err)
4428 goto free_compress_cache;
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004429 return 0;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004430free_compress_cache:
4431 f2fs_destroy_compress_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004432free_compress_mempool:
4433 f2fs_destroy_compress_mempool();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004434free_bioset:
4435 f2fs_destroy_bioset();
Chao Yuf5438052019-12-04 09:52:58 +08004436free_bio_enrty_cache:
4437 f2fs_destroy_bio_entry_cache();
Chao Yu0b20fce2019-09-30 18:53:25 +08004438free_post_read:
4439 f2fs_destroy_post_read_processing();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004440free_root_stats:
4441 f2fs_destroy_root_stats();
Chao Yu787c7b8c2015-10-29 09:13:04 +08004442 unregister_filesystem(&f2fs_fs_type);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004443free_shrinker:
4444 unregister_shrinker(&f2fs_shrinker_info);
Chao Yua3981012017-06-14 17:39:46 +08004445free_sysfs:
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004446 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004447free_garbage_collection_cache:
4448 f2fs_destroy_garbage_collection_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004449free_extent_cache:
Chao Yu4d57b862018-05-30 00:20:41 +08004450 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004451free_recovery_cache:
4452 f2fs_destroy_recovery_cache();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004453free_checkpoint_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004454 f2fs_destroy_checkpoint_caches();
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004455free_segment_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004456 f2fs_destroy_segment_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004457free_node_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004458 f2fs_destroy_node_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004459free_inodecache:
4460 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004461fail:
4462 return err;
4463}
4464
4465static void __exit exit_f2fs_fs(void)
4466{
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004467 f2fs_destroy_casefold_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004468 f2fs_destroy_compress_cache();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004469 f2fs_destroy_compress_mempool();
Chao Yuf5438052019-12-04 09:52:58 +08004470 f2fs_destroy_bioset();
Chao Yu0b20fce2019-09-30 18:53:25 +08004471 f2fs_destroy_bio_entry_cache();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004472 f2fs_destroy_post_read_processing();
Namjae Jeon4589d252013-01-15 19:58:47 +09004473 f2fs_destroy_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004474 unregister_filesystem(&f2fs_fs_type);
Tiezhu Yangb8bef792016-05-18 08:02:25 +08004475 unregister_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004476 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004477 f2fs_destroy_garbage_collection_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004478 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004479 f2fs_destroy_recovery_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004480 f2fs_destroy_checkpoint_caches();
4481 f2fs_destroy_segment_manager_caches();
4482 f2fs_destroy_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004483 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004484}
4485
4486module_init(init_f2fs_fs)
4487module_exit(exit_f2fs_fs)
4488
4489MODULE_AUTHOR("Samsung Electronics's Praesto Team");
4490MODULE_DESCRIPTION("Flash Friendly File System");
4491MODULE_LICENSE("GPL");
Chao Yu0dd57172021-05-18 09:57:54 +08004492MODULE_SOFTDEP("pre: crc32");
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07004493