blob: 053b508d1e4fe22070e4ffa221b2c7f9830a6213 [file] [log] [blame]
Chao Yu7c1a0002018-09-12 09:16:07 +08001// SPDX-License-Identifier: GPL-2.0
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002/*
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003 * fs/f2fs/super.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09007 */
8#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/fs.h>
11#include <linux/statfs.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090012#include <linux/buffer_head.h>
13#include <linux/backing-dev.h>
14#include <linux/kthread.h>
15#include <linux/parser.h>
16#include <linux/mount.h>
17#include <linux/seq_file.h>
Jaegeuk Kim5e176d52013-06-28 12:47:01 +090018#include <linux/proc_fs.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090019#include <linux/random.h>
20#include <linux/exportfs.h>
Namjae Jeond3ee4562013-03-17 17:26:14 +090021#include <linux/blkdev.h>
Chao Yu0abd6752017-07-09 00:13:07 +080022#include <linux/quotaops.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090023#include <linux/f2fs_fs.h>
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090024#include <linux/sysfs.h>
Chao Yu4b2414d2017-08-08 10:54:31 +080025#include <linux/quota.h>
Daniel Rosenberg5aba5432019-07-23 16:05:28 -070026#include <linux/unicode.h>
Christoph Hellwigc6a564ff2020-03-25 16:48:42 +010027#include <linux/part_stat.h>
Chao Yu3fde13f2021-01-22 17:46:43 +080028#include <linux/zstd.h>
29#include <linux/lz4.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090030
31#include "f2fs.h"
32#include "node.h"
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +090033#include "segment.h"
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090034#include "xattr.h"
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090035#include "gc.h"
Daeho Jeong52118742021-08-19 20:52:28 -070036#include "iostat.h"
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090037
Namjae Jeona2a4a7e2013-04-20 01:28:40 +090038#define CREATE_TRACE_POINTS
39#include <trace/events/f2fs.h>
40
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090041static struct kmem_cache *f2fs_inode_cachep;
42
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -070043#ifdef CONFIG_F2FS_FAULT_INJECTION
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070044
Alexey Dobriyan19880e62018-11-24 12:06:42 +030045const char *f2fs_fault_name[FAULT_MAX] = {
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070046 [FAULT_KMALLOC] = "kmalloc",
Chao Yu628b3d12017-11-30 19:28:18 +080047 [FAULT_KVMALLOC] = "kvmalloc",
Jaegeuk Kimc41f3cc32016-04-29 16:17:09 -070048 [FAULT_PAGE_ALLOC] = "page alloc",
Chao Yu01eccef2017-10-28 16:52:30 +080049 [FAULT_PAGE_GET] = "page get",
Jaegeuk Kimcb789422016-04-29 16:29:22 -070050 [FAULT_ALLOC_NID] = "alloc nid",
51 [FAULT_ORPHAN] = "orphan",
52 [FAULT_BLOCK] = "no more block",
53 [FAULT_DIR_DEPTH] = "too big dir depth",
Jaegeuk Kim53aa6bb2016-05-25 15:24:18 -070054 [FAULT_EVICT_INODE] = "evict_inode fail",
Jaegeuk Kim14b44d22017-03-09 15:24:24 -080055 [FAULT_TRUNCATE] = "truncate fail",
Chao Yu6f5c2ed2018-09-12 09:22:29 +080056 [FAULT_READ_IO] = "read IO error",
Chao Yu0f348022016-09-26 19:45:55 +080057 [FAULT_CHECKPOINT] = "checkpoint error",
Chao Yub83dcfe2018-08-06 20:30:18 +080058 [FAULT_DISCARD] = "discard error",
Chao Yu6f5c2ed2018-09-12 09:22:29 +080059 [FAULT_WRITE_IO] = "write IO error",
Chao Yu32410572021-08-09 08:24:48 +080060 [FAULT_SLAB_ALLOC] = "slab alloc",
Chao Yu10a26872021-10-28 21:03:05 +080061 [FAULT_DQUOT_INIT] = "dquot initialize",
Chao Yu3e020382021-12-12 17:17:51 +080062 [FAULT_LOCK_OP] = "lock_op",
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070063};
Sheng Yong08796892016-05-16 12:38:50 +080064
Chao Yud4945002018-08-08 17:36:41 +080065void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
66 unsigned int type)
Sheng Yong08796892016-05-16 12:38:50 +080067{
Chao Yu63189b72018-03-08 14:22:56 +080068 struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
Chao Yu1ecc0c52016-09-23 21:30:09 +080069
Sheng Yong08796892016-05-16 12:38:50 +080070 if (rate) {
Chao Yu1ecc0c52016-09-23 21:30:09 +080071 atomic_set(&ffi->inject_ops, 0);
72 ffi->inject_rate = rate;
Sheng Yong08796892016-05-16 12:38:50 +080073 }
Chao Yud4945002018-08-08 17:36:41 +080074
75 if (type)
76 ffi->inject_type = type;
77
78 if (!rate && !type)
79 memset(ffi, 0, sizeof(struct f2fs_fault_info));
Sheng Yong08796892016-05-16 12:38:50 +080080}
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -070081#endif
82
Jaegeuk Kim2658e502015-06-19 12:01:21 -070083/* f2fs-wide shrinker description */
84static struct shrinker f2fs_shrinker_info = {
85 .scan_objects = f2fs_shrink_scan,
86 .count_objects = f2fs_shrink_count,
87 .seeks = DEFAULT_SEEKS,
88};
89
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090090enum {
Namjae Jeon696c0182013-06-16 09:48:48 +090091 Opt_gc_background,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090092 Opt_disable_roll_forward,
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -080093 Opt_norecovery,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090094 Opt_discard,
Chao Yu64058be2016-07-03 22:05:14 +080095 Opt_nodiscard,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090096 Opt_noheap,
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -040097 Opt_heap,
Kelly Anderson4058c512013-10-07 11:36:20 +090098 Opt_user_xattr,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090099 Opt_nouser_xattr,
Kelly Anderson4058c512013-10-07 11:36:20 +0900100 Opt_acl,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900101 Opt_noacl,
102 Opt_active_logs,
103 Opt_disable_ext_identify,
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900104 Opt_inline_xattr,
Chao Yu23cf7212017-02-15 10:34:45 +0800105 Opt_noinline_xattr,
Chao Yu6afc6622017-09-06 21:59:50 +0800106 Opt_inline_xattr_size,
Huajun Li8274de72013-11-10 23:13:17 +0800107 Opt_inline_data,
Chao Yu5efd3c62014-09-24 18:16:13 +0800108 Opt_inline_dentry,
Chao Yu97c17942016-05-09 19:56:34 +0800109 Opt_noinline_dentry,
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900110 Opt_flush_merge,
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700111 Opt_noflush_merge,
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700112 Opt_nobarrier,
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700113 Opt_fastboot,
Chao Yu89672152015-02-05 17:55:51 +0800114 Opt_extent_cache,
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700115 Opt_noextent_cache,
Wanpeng Li75342792015-03-24 10:20:27 +0800116 Opt_noinline_data,
Chao Yu343f40f2015-12-16 13:12:16 +0800117 Opt_data_flush,
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800118 Opt_reserve_root,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800119 Opt_resgid,
120 Opt_resuid,
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700121 Opt_mode,
Jaegeuk Kimec915382016-12-21 17:09:19 -0800122 Opt_io_size_bits,
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700123 Opt_fault_injection,
Chao Yud4945002018-08-08 17:36:41 +0800124 Opt_fault_type,
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700125 Opt_lazytime,
126 Opt_nolazytime,
Chao Yu4b2414d2017-08-08 10:54:31 +0800127 Opt_quota,
128 Opt_noquota,
Chao Yu0abd6752017-07-09 00:13:07 +0800129 Opt_usrquota,
130 Opt_grpquota,
Chao Yu5c571322017-07-26 00:01:41 +0800131 Opt_prjquota,
Chao Yu4b2414d2017-08-08 10:54:31 +0800132 Opt_usrjquota,
133 Opt_grpjquota,
134 Opt_prjjquota,
135 Opt_offusrjquota,
136 Opt_offgrpjquota,
137 Opt_offprjjquota,
138 Opt_jqfmt_vfsold,
139 Opt_jqfmt_vfsv0,
140 Opt_jqfmt_vfsv1,
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900141 Opt_whint,
Jaegeuk Kim07939622018-02-18 08:50:49 -0800142 Opt_alloc,
Junling Zheng93cf93f2018-03-07 12:07:49 +0800143 Opt_fsync,
Sheng Yongff62af22018-03-15 18:51:42 +0800144 Opt_test_dummy_encryption,
Satya Tangirala27aacd22020-07-02 01:56:06 +0000145 Opt_inlinecrypt,
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700146 Opt_checkpoint_disable,
147 Opt_checkpoint_disable_cap,
148 Opt_checkpoint_disable_cap_perc,
149 Opt_checkpoint_enable,
Daeho Jeong261eeb92021-01-19 09:00:42 +0900150 Opt_checkpoint_merge,
151 Opt_nocheckpoint_merge,
Chao Yu4c8ff702019-11-01 18:07:14 +0800152 Opt_compress_algorithm,
153 Opt_compress_log_size,
154 Opt_compress_extension,
Fengnan Chang151b1982021-06-08 19:15:08 +0800155 Opt_nocompress_extension,
Chao Yub28f0472020-11-26 18:32:09 +0800156 Opt_compress_chksum,
Daeho Jeong602a16d2020-12-01 13:08:02 +0900157 Opt_compress_mode,
Chao Yu6ce19af2021-05-20 19:51:50 +0800158 Opt_compress_cache,
Chao Yu093749e2020-08-04 21:14:49 +0800159 Opt_atgc,
Chao Yu5911d2d2021-03-27 17:57:06 +0800160 Opt_gc_merge,
161 Opt_nogc_merge,
Chao Yu4f993262021-08-03 08:15:43 +0800162 Opt_discard_unit,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900163 Opt_err,
164};
165
166static match_table_t f2fs_tokens = {
Namjae Jeon696c0182013-06-16 09:48:48 +0900167 {Opt_gc_background, "background_gc=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900168 {Opt_disable_roll_forward, "disable_roll_forward"},
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800169 {Opt_norecovery, "norecovery"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900170 {Opt_discard, "discard"},
Chao Yu64058be2016-07-03 22:05:14 +0800171 {Opt_nodiscard, "nodiscard"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900172 {Opt_noheap, "no_heap"},
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400173 {Opt_heap, "heap"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900174 {Opt_user_xattr, "user_xattr"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900175 {Opt_nouser_xattr, "nouser_xattr"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900176 {Opt_acl, "acl"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900177 {Opt_noacl, "noacl"},
178 {Opt_active_logs, "active_logs=%u"},
179 {Opt_disable_ext_identify, "disable_ext_identify"},
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900180 {Opt_inline_xattr, "inline_xattr"},
Chao Yu23cf7212017-02-15 10:34:45 +0800181 {Opt_noinline_xattr, "noinline_xattr"},
Chao Yu6afc6622017-09-06 21:59:50 +0800182 {Opt_inline_xattr_size, "inline_xattr_size=%u"},
Huajun Li8274de72013-11-10 23:13:17 +0800183 {Opt_inline_data, "inline_data"},
Chao Yu5efd3c62014-09-24 18:16:13 +0800184 {Opt_inline_dentry, "inline_dentry"},
Chao Yu97c17942016-05-09 19:56:34 +0800185 {Opt_noinline_dentry, "noinline_dentry"},
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900186 {Opt_flush_merge, "flush_merge"},
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700187 {Opt_noflush_merge, "noflush_merge"},
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700188 {Opt_nobarrier, "nobarrier"},
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700189 {Opt_fastboot, "fastboot"},
Chao Yu89672152015-02-05 17:55:51 +0800190 {Opt_extent_cache, "extent_cache"},
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700191 {Opt_noextent_cache, "noextent_cache"},
Wanpeng Li75342792015-03-24 10:20:27 +0800192 {Opt_noinline_data, "noinline_data"},
Chao Yu343f40f2015-12-16 13:12:16 +0800193 {Opt_data_flush, "data_flush"},
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800194 {Opt_reserve_root, "reserve_root=%u"},
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800195 {Opt_resgid, "resgid=%u"},
196 {Opt_resuid, "resuid=%u"},
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700197 {Opt_mode, "mode=%s"},
Jaegeuk Kimec915382016-12-21 17:09:19 -0800198 {Opt_io_size_bits, "io_bits=%u"},
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700199 {Opt_fault_injection, "fault_injection=%u"},
Chao Yud4945002018-08-08 17:36:41 +0800200 {Opt_fault_type, "fault_type=%u"},
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700201 {Opt_lazytime, "lazytime"},
202 {Opt_nolazytime, "nolazytime"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800203 {Opt_quota, "quota"},
204 {Opt_noquota, "noquota"},
Chao Yu0abd6752017-07-09 00:13:07 +0800205 {Opt_usrquota, "usrquota"},
206 {Opt_grpquota, "grpquota"},
Chao Yu5c571322017-07-26 00:01:41 +0800207 {Opt_prjquota, "prjquota"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800208 {Opt_usrjquota, "usrjquota=%s"},
209 {Opt_grpjquota, "grpjquota=%s"},
210 {Opt_prjjquota, "prjjquota=%s"},
211 {Opt_offusrjquota, "usrjquota="},
212 {Opt_offgrpjquota, "grpjquota="},
213 {Opt_offprjjquota, "prjjquota="},
214 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
215 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
216 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900217 {Opt_whint, "whint_mode=%s"},
Jaegeuk Kim07939622018-02-18 08:50:49 -0800218 {Opt_alloc, "alloc_mode=%s"},
Junling Zheng93cf93f2018-03-07 12:07:49 +0800219 {Opt_fsync, "fsync_mode=%s"},
Eric Biggersed318a62020-05-12 16:32:50 -0700220 {Opt_test_dummy_encryption, "test_dummy_encryption=%s"},
Sheng Yongff62af22018-03-15 18:51:42 +0800221 {Opt_test_dummy_encryption, "test_dummy_encryption"},
Satya Tangirala27aacd22020-07-02 01:56:06 +0000222 {Opt_inlinecrypt, "inlinecrypt"},
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700223 {Opt_checkpoint_disable, "checkpoint=disable"},
224 {Opt_checkpoint_disable_cap, "checkpoint=disable:%u"},
225 {Opt_checkpoint_disable_cap_perc, "checkpoint=disable:%u%%"},
226 {Opt_checkpoint_enable, "checkpoint=enable"},
Daeho Jeong261eeb92021-01-19 09:00:42 +0900227 {Opt_checkpoint_merge, "checkpoint_merge"},
228 {Opt_nocheckpoint_merge, "nocheckpoint_merge"},
Chao Yu4c8ff702019-11-01 18:07:14 +0800229 {Opt_compress_algorithm, "compress_algorithm=%s"},
230 {Opt_compress_log_size, "compress_log_size=%u"},
231 {Opt_compress_extension, "compress_extension=%s"},
Fengnan Chang151b1982021-06-08 19:15:08 +0800232 {Opt_nocompress_extension, "nocompress_extension=%s"},
Chao Yub28f0472020-11-26 18:32:09 +0800233 {Opt_compress_chksum, "compress_chksum"},
Daeho Jeong602a16d2020-12-01 13:08:02 +0900234 {Opt_compress_mode, "compress_mode=%s"},
Chao Yu6ce19af2021-05-20 19:51:50 +0800235 {Opt_compress_cache, "compress_cache"},
Chao Yu093749e2020-08-04 21:14:49 +0800236 {Opt_atgc, "atgc"},
Chao Yu5911d2d2021-03-27 17:57:06 +0800237 {Opt_gc_merge, "gc_merge"},
238 {Opt_nogc_merge, "nogc_merge"},
Chao Yu4f993262021-08-03 08:15:43 +0800239 {Opt_discard_unit, "discard_unit=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900240 {Opt_err, NULL},
241};
242
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800243void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...)
Namjae Jeona07ef782012-12-30 14:52:05 +0900244{
245 struct va_format vaf;
246 va_list args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800247 int level;
Namjae Jeona07ef782012-12-30 14:52:05 +0900248
249 va_start(args, fmt);
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800250
251 level = printk_get_level(fmt);
252 vaf.fmt = printk_skip_level(fmt);
Namjae Jeona07ef782012-12-30 14:52:05 +0900253 vaf.va = &args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800254 printk("%c%cF2FS-fs (%s): %pV\n",
255 KERN_SOH_ASCII, level, sbi->sb->s_id, &vaf);
256
Namjae Jeona07ef782012-12-30 14:52:05 +0900257 va_end(args);
258}
259
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700260#ifdef CONFIG_UNICODE
261static const struct f2fs_sb_encodings {
262 __u16 magic;
263 char *name;
264 char *version;
265} f2fs_sb_encoding_map[] = {
266 {F2FS_ENC_UTF8_12_1, "utf8", "12.1.0"},
267};
268
269static int f2fs_sb_read_encoding(const struct f2fs_super_block *sb,
270 const struct f2fs_sb_encodings **encoding,
271 __u16 *flags)
272{
273 __u16 magic = le16_to_cpu(sb->s_encoding);
274 int i;
275
276 for (i = 0; i < ARRAY_SIZE(f2fs_sb_encoding_map); i++)
277 if (magic == f2fs_sb_encoding_map[i].magic)
278 break;
279
280 if (i >= ARRAY_SIZE(f2fs_sb_encoding_map))
281 return -EINVAL;
282
283 *encoding = &f2fs_sb_encoding_map[i];
284 *flags = le16_to_cpu(sb->s_encoding_flags);
285
286 return 0;
287}
Chao Yu4d9a2bb2021-06-11 07:46:30 +0800288
289struct kmem_cache *f2fs_cf_name_slab;
290static int __init f2fs_create_casefold_cache(void)
291{
292 f2fs_cf_name_slab = f2fs_kmem_cache_create("f2fs_casefolded_name",
293 F2FS_NAME_LEN);
294 if (!f2fs_cf_name_slab)
295 return -ENOMEM;
296 return 0;
297}
298
299static void f2fs_destroy_casefold_cache(void)
300{
301 kmem_cache_destroy(f2fs_cf_name_slab);
302}
303#else
304static int __init f2fs_create_casefold_cache(void) { return 0; }
305static void f2fs_destroy_casefold_cache(void) { }
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700306#endif
307
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800308static inline void limit_reserve_root(struct f2fs_sb_info *sbi)
309{
Daniel Rosenberg9a9aeca2019-05-29 17:49:04 -0700310 block_t limit = min((sbi->user_block_count << 1) / 1000,
311 sbi->user_block_count - sbi->reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800312
313 /* limit is 0.2% */
Chao Yu63189b72018-03-08 14:22:56 +0800314 if (test_opt(sbi, RESERVE_ROOT) &&
315 F2FS_OPTION(sbi).root_reserved_blocks > limit) {
316 F2FS_OPTION(sbi).root_reserved_blocks = limit;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800317 f2fs_info(sbi, "Reduce reserved blocks for root = %u",
318 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800319 }
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800320 if (!test_opt(sbi, RESERVE_ROOT) &&
Chao Yu63189b72018-03-08 14:22:56 +0800321 (!uid_eq(F2FS_OPTION(sbi).s_resuid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800322 make_kuid(&init_user_ns, F2FS_DEF_RESUID)) ||
Chao Yu63189b72018-03-08 14:22:56 +0800323 !gid_eq(F2FS_OPTION(sbi).s_resgid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800324 make_kgid(&init_user_ns, F2FS_DEF_RESGID))))
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800325 f2fs_info(sbi, "Ignore s_resuid=%u, s_resgid=%u w/o reserve_root",
326 from_kuid_munged(&init_user_ns,
327 F2FS_OPTION(sbi).s_resuid),
328 from_kgid_munged(&init_user_ns,
329 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800330}
331
Chao Yu300a84292021-12-11 21:27:36 +0800332static inline int adjust_reserved_segment(struct f2fs_sb_info *sbi)
333{
334 unsigned int sec_blks = sbi->blocks_per_seg * sbi->segs_per_sec;
335 unsigned int avg_vblocks;
336 unsigned int wanted_reserved_segments;
337 block_t avail_user_block_count;
338
339 if (!F2FS_IO_ALIGNED(sbi))
340 return 0;
341
342 /* average valid block count in section in worst case */
343 avg_vblocks = sec_blks / F2FS_IO_SIZE(sbi);
344
345 /*
346 * we need enough free space when migrating one section in worst case
347 */
348 wanted_reserved_segments = (F2FS_IO_SIZE(sbi) / avg_vblocks) *
349 reserved_segments(sbi);
350 wanted_reserved_segments -= reserved_segments(sbi);
351
352 avail_user_block_count = sbi->user_block_count -
353 sbi->current_reserved_blocks -
354 F2FS_OPTION(sbi).root_reserved_blocks;
355
356 if (wanted_reserved_segments * sbi->blocks_per_seg >
357 avail_user_block_count) {
358 f2fs_err(sbi, "IO align feature can't grab additional reserved segment: %u, available segments: %u",
359 wanted_reserved_segments,
360 avail_user_block_count >> sbi->log_blocks_per_seg);
361 return -ENOSPC;
362 }
363
364 SM_I(sbi)->additional_reserved_segments = wanted_reserved_segments;
365
366 f2fs_info(sbi, "IO align feature needs additional reserved segment: %u",
367 wanted_reserved_segments);
368
369 return 0;
370}
371
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -0700372static inline void adjust_unusable_cap_perc(struct f2fs_sb_info *sbi)
373{
374 if (!F2FS_OPTION(sbi).unusable_cap_perc)
375 return;
376
377 if (F2FS_OPTION(sbi).unusable_cap_perc == 100)
378 F2FS_OPTION(sbi).unusable_cap = sbi->user_block_count;
379 else
380 F2FS_OPTION(sbi).unusable_cap = (sbi->user_block_count / 100) *
381 F2FS_OPTION(sbi).unusable_cap_perc;
382
383 f2fs_info(sbi, "Adjust unusable cap for checkpoint=disable = %u / %u%%",
384 F2FS_OPTION(sbi).unusable_cap,
385 F2FS_OPTION(sbi).unusable_cap_perc);
386}
387
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900388static void init_once(void *foo)
389{
390 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
391
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900392 inode_init_once(&fi->vfs_inode);
393}
394
Chao Yu4b2414d2017-08-08 10:54:31 +0800395#ifdef CONFIG_QUOTA
396static const char * const quotatypes[] = INITQFNAMES;
397#define QTYPE2NAME(t) (quotatypes[t])
398static int f2fs_set_qf_name(struct super_block *sb, int qtype,
399 substring_t *args)
400{
401 struct f2fs_sb_info *sbi = F2FS_SB(sb);
402 char *qname;
403 int ret = -EINVAL;
404
Chao Yu63189b72018-03-08 14:22:56 +0800405 if (sb_any_quota_loaded(sb) && !F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800406 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800407 return -EINVAL;
408 }
Chao Yu7beb01f2018-10-24 18:34:26 +0800409 if (f2fs_sb_has_quota_ino(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800410 f2fs_info(sbi, "QUOTA feature is enabled, so ignore qf_name");
Jaegeuk Kimea676732017-10-06 09:14:28 -0700411 return 0;
412 }
413
Chao Yu4b2414d2017-08-08 10:54:31 +0800414 qname = match_strdup(args);
415 if (!qname) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800416 f2fs_err(sbi, "Not enough memory for storing quotafile name");
Chengguang Xuf365c6c2019-01-01 21:33:11 +0800417 return -ENOMEM;
Chao Yu4b2414d2017-08-08 10:54:31 +0800418 }
Chao Yu63189b72018-03-08 14:22:56 +0800419 if (F2FS_OPTION(sbi).s_qf_names[qtype]) {
420 if (strcmp(F2FS_OPTION(sbi).s_qf_names[qtype], qname) == 0)
Chao Yu4b2414d2017-08-08 10:54:31 +0800421 ret = 0;
422 else
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800423 f2fs_err(sbi, "%s quota file already specified",
Chao Yu4b2414d2017-08-08 10:54:31 +0800424 QTYPE2NAME(qtype));
425 goto errout;
426 }
427 if (strchr(qname, '/')) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800428 f2fs_err(sbi, "quotafile must be on filesystem root");
Chao Yu4b2414d2017-08-08 10:54:31 +0800429 goto errout;
430 }
Chao Yu63189b72018-03-08 14:22:56 +0800431 F2FS_OPTION(sbi).s_qf_names[qtype] = qname;
Chao Yu4b2414d2017-08-08 10:54:31 +0800432 set_opt(sbi, QUOTA);
433 return 0;
434errout:
Wang Xiaojunba87a452020-06-17 20:30:12 +0800435 kfree(qname);
Chao Yu4b2414d2017-08-08 10:54:31 +0800436 return ret;
437}
438
439static int f2fs_clear_qf_name(struct super_block *sb, int qtype)
440{
441 struct f2fs_sb_info *sbi = F2FS_SB(sb);
442
Chao Yu63189b72018-03-08 14:22:56 +0800443 if (sb_any_quota_loaded(sb) && F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800444 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800445 return -EINVAL;
446 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800447 kfree(F2FS_OPTION(sbi).s_qf_names[qtype]);
Chao Yu63189b72018-03-08 14:22:56 +0800448 F2FS_OPTION(sbi).s_qf_names[qtype] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +0800449 return 0;
450}
451
452static int f2fs_check_quota_options(struct f2fs_sb_info *sbi)
453{
454 /*
455 * We do the test below only for project quotas. 'usrquota' and
456 * 'grpquota' mount options are allowed even without quota feature
457 * to support legacy quotas in quota files.
458 */
Chao Yu7beb01f2018-10-24 18:34:26 +0800459 if (test_opt(sbi, PRJQUOTA) && !f2fs_sb_has_project_quota(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800460 f2fs_err(sbi, "Project quota feature not enabled. Cannot enable project quota enforcement.");
Chao Yu4b2414d2017-08-08 10:54:31 +0800461 return -1;
462 }
Chao Yu63189b72018-03-08 14:22:56 +0800463 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
464 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
465 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]) {
466 if (test_opt(sbi, USRQUOTA) &&
467 F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800468 clear_opt(sbi, USRQUOTA);
469
Chao Yu63189b72018-03-08 14:22:56 +0800470 if (test_opt(sbi, GRPQUOTA) &&
471 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800472 clear_opt(sbi, GRPQUOTA);
473
Chao Yu63189b72018-03-08 14:22:56 +0800474 if (test_opt(sbi, PRJQUOTA) &&
475 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800476 clear_opt(sbi, PRJQUOTA);
477
478 if (test_opt(sbi, GRPQUOTA) || test_opt(sbi, USRQUOTA) ||
479 test_opt(sbi, PRJQUOTA)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800480 f2fs_err(sbi, "old and new quota format mixing");
Chao Yu4b2414d2017-08-08 10:54:31 +0800481 return -1;
482 }
483
Chao Yu63189b72018-03-08 14:22:56 +0800484 if (!F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800485 f2fs_err(sbi, "journaled quota format not specified");
Chao Yu4b2414d2017-08-08 10:54:31 +0800486 return -1;
487 }
488 }
Jaegeuk Kimea676732017-10-06 09:14:28 -0700489
Chao Yu7beb01f2018-10-24 18:34:26 +0800490 if (f2fs_sb_has_quota_ino(sbi) && F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800491 f2fs_info(sbi, "QUOTA feature is enabled, so ignore jquota_fmt");
Chao Yu63189b72018-03-08 14:22:56 +0800492 F2FS_OPTION(sbi).s_jquota_fmt = 0;
Jaegeuk Kimea676732017-10-06 09:14:28 -0700493 }
Chao Yu4b2414d2017-08-08 10:54:31 +0800494 return 0;
495}
496#endif
497
Eric Biggersed318a62020-05-12 16:32:50 -0700498static int f2fs_set_test_dummy_encryption(struct super_block *sb,
499 const char *opt,
500 const substring_t *arg,
501 bool is_remount)
502{
503 struct f2fs_sb_info *sbi = F2FS_SB(sb);
504#ifdef CONFIG_FS_ENCRYPTION
505 int err;
506
507 if (!f2fs_sb_has_encrypt(sbi)) {
508 f2fs_err(sbi, "Encrypt feature is off");
509 return -EINVAL;
510 }
511
512 /*
513 * This mount option is just for testing, and it's not worthwhile to
514 * implement the extra complexity (e.g. RCU protection) that would be
515 * needed to allow it to be set or changed during remount. We do allow
516 * it to be specified during remount, but only if there is no change.
517 */
Eric Biggersac4acb12020-09-16 21:11:35 -0700518 if (is_remount && !F2FS_OPTION(sbi).dummy_enc_policy.policy) {
Eric Biggersed318a62020-05-12 16:32:50 -0700519 f2fs_warn(sbi, "Can't set test_dummy_encryption on remount");
520 return -EINVAL;
521 }
522 err = fscrypt_set_test_dummy_encryption(
Eric Biggersc8c868a2020-09-16 21:11:36 -0700523 sb, arg->from, &F2FS_OPTION(sbi).dummy_enc_policy);
Eric Biggersed318a62020-05-12 16:32:50 -0700524 if (err) {
525 if (err == -EEXIST)
526 f2fs_warn(sbi,
527 "Can't change test_dummy_encryption on remount");
528 else if (err == -EINVAL)
529 f2fs_warn(sbi, "Value of option \"%s\" is unrecognized",
530 opt);
531 else
532 f2fs_warn(sbi, "Error processing option \"%s\" [%d]",
533 opt, err);
534 return -EINVAL;
535 }
536 f2fs_warn(sbi, "Test dummy encryption mode enabled");
537#else
538 f2fs_warn(sbi, "Test dummy encryption mount option ignored");
539#endif
540 return 0;
541}
542
Chao Yu3fde13f2021-01-22 17:46:43 +0800543#ifdef CONFIG_F2FS_FS_COMPRESSION
Fengnan Chang151b1982021-06-08 19:15:08 +0800544/*
545 * 1. The same extension name cannot not appear in both compress and non-compress extension
546 * at the same time.
547 * 2. If the compress extension specifies all files, the types specified by the non-compress
548 * extension will be treated as special cases and will not be compressed.
549 * 3. Don't allow the non-compress extension specifies all files.
550 */
551static int f2fs_test_compress_extension(struct f2fs_sb_info *sbi)
552{
553 unsigned char (*ext)[F2FS_EXTENSION_LEN];
554 unsigned char (*noext)[F2FS_EXTENSION_LEN];
555 int ext_cnt, noext_cnt, index = 0, no_index = 0;
556
557 ext = F2FS_OPTION(sbi).extensions;
558 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
559 noext = F2FS_OPTION(sbi).noextensions;
560 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
561
562 if (!noext_cnt)
563 return 0;
564
565 for (no_index = 0; no_index < noext_cnt; no_index++) {
566 if (!strcasecmp("*", noext[no_index])) {
567 f2fs_info(sbi, "Don't allow the nocompress extension specifies all files");
568 return -EINVAL;
569 }
570 for (index = 0; index < ext_cnt; index++) {
571 if (!strcasecmp(ext[index], noext[no_index])) {
572 f2fs_info(sbi, "Don't allow the same extension %s appear in both compress and nocompress extension",
573 ext[index]);
574 return -EINVAL;
575 }
576 }
577 }
578 return 0;
579}
580
Chao Yu3fde13f2021-01-22 17:46:43 +0800581#ifdef CONFIG_F2FS_FS_LZ4
582static int f2fs_set_lz4hc_level(struct f2fs_sb_info *sbi, const char *str)
583{
584#ifdef CONFIG_F2FS_FS_LZ4HC
585 unsigned int level;
586#endif
587
588 if (strlen(str) == 3) {
589 F2FS_OPTION(sbi).compress_level = 0;
590 return 0;
591 }
592
593#ifdef CONFIG_F2FS_FS_LZ4HC
594 str += 3;
595
596 if (str[0] != ':') {
597 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
598 return -EINVAL;
599 }
600 if (kstrtouint(str + 1, 10, &level))
601 return -EINVAL;
602
603 if (level < LZ4HC_MIN_CLEVEL || level > LZ4HC_MAX_CLEVEL) {
604 f2fs_info(sbi, "invalid lz4hc compress level: %d", level);
605 return -EINVAL;
606 }
607
608 F2FS_OPTION(sbi).compress_level = level;
609 return 0;
610#else
611 f2fs_info(sbi, "kernel doesn't support lz4hc compression");
612 return -EINVAL;
613#endif
614}
615#endif
616
617#ifdef CONFIG_F2FS_FS_ZSTD
618static int f2fs_set_zstd_level(struct f2fs_sb_info *sbi, const char *str)
619{
620 unsigned int level;
621 int len = 4;
622
623 if (strlen(str) == len) {
624 F2FS_OPTION(sbi).compress_level = 0;
625 return 0;
626 }
627
628 str += len;
629
630 if (str[0] != ':') {
631 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
632 return -EINVAL;
633 }
634 if (kstrtouint(str + 1, 10, &level))
635 return -EINVAL;
636
Nick Terrellcf30f6a2020-09-11 16:49:00 -0700637 if (!level || level > zstd_max_clevel()) {
Chao Yu3fde13f2021-01-22 17:46:43 +0800638 f2fs_info(sbi, "invalid zstd compress level: %d", level);
639 return -EINVAL;
640 }
641
642 F2FS_OPTION(sbi).compress_level = level;
643 return 0;
644}
645#endif
646#endif
647
Eric Biggersed318a62020-05-12 16:32:50 -0700648static int parse_options(struct super_block *sb, char *options, bool is_remount)
Namjae Jeon696c0182013-06-16 09:48:48 +0900649{
650 struct f2fs_sb_info *sbi = F2FS_SB(sb);
651 substring_t args[MAX_OPT_ARGS];
Chao Yu1f0b0672020-07-29 21:21:36 +0800652#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +0800653 unsigned char (*ext)[F2FS_EXTENSION_LEN];
Fengnan Chang151b1982021-06-08 19:15:08 +0800654 unsigned char (*noext)[F2FS_EXTENSION_LEN];
655 int ext_cnt, noext_cnt;
Chao Yu1f0b0672020-07-29 21:21:36 +0800656#endif
Namjae Jeon696c0182013-06-16 09:48:48 +0900657 char *p, *name;
Chao Yu1f0b0672020-07-29 21:21:36 +0800658 int arg = 0;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800659 kuid_t uid;
660 kgid_t gid;
Chao Yu4b2414d2017-08-08 10:54:31 +0800661 int ret;
Namjae Jeon696c0182013-06-16 09:48:48 +0900662
663 if (!options)
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -0700664 goto default_check;
Namjae Jeon696c0182013-06-16 09:48:48 +0900665
666 while ((p = strsep(&options, ",")) != NULL) {
667 int token;
Yi Zhuang5f029c02021-04-06 09:47:35 +0800668
Namjae Jeon696c0182013-06-16 09:48:48 +0900669 if (!*p)
670 continue;
671 /*
672 * Initialize args struct so we know whether arg was
673 * found; some options take optional arguments.
674 */
675 args[0].to = args[0].from = NULL;
676 token = match_token(p, f2fs_tokens, args);
677
678 switch (token) {
679 case Opt_gc_background:
680 name = match_strdup(&args[0]);
681
682 if (!name)
683 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700684 if (!strcmp(name, "on")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800685 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Eric Biggers3c57f752020-05-01 16:35:23 -0700686 } else if (!strcmp(name, "off")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800687 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700688 } else if (!strcmp(name, "sync")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800689 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_SYNC;
Jaegeuk Kim6aefd932015-10-05 11:02:54 -0700690 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800691 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900692 return -EINVAL;
693 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800694 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900695 break;
696 case Opt_disable_roll_forward:
697 set_opt(sbi, DISABLE_ROLL_FORWARD);
698 break;
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800699 case Opt_norecovery:
700 /* this option mounts f2fs with ro */
Chao Yua9117ec2020-02-14 17:45:11 +0800701 set_opt(sbi, NORECOVERY);
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800702 if (!f2fs_readonly(sb))
703 return -EINVAL;
704 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900705 case Opt_discard:
Chao Yuf7db8dd2021-08-30 08:35:33 +0800706 if (!f2fs_hw_support_discard(sbi)) {
707 f2fs_warn(sbi, "device does not support discard");
708 break;
709 }
Chao Yu7d20c8a2018-09-04 03:52:17 +0800710 set_opt(sbi, DISCARD);
Namjae Jeon696c0182013-06-16 09:48:48 +0900711 break;
Chao Yu64058be2016-07-03 22:05:14 +0800712 case Opt_nodiscard:
Chao Yuf7db8dd2021-08-30 08:35:33 +0800713 if (f2fs_hw_should_discard(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800714 f2fs_warn(sbi, "discard is required for zoned block devices");
Damien Le Moal96ba2de2016-10-28 17:45:03 +0900715 return -EINVAL;
716 }
Chao Yu64058be2016-07-03 22:05:14 +0800717 clear_opt(sbi, DISCARD);
Damien Le Moal487df612016-10-28 17:44:59 +0900718 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900719 case Opt_noheap:
720 set_opt(sbi, NOHEAP);
721 break;
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400722 case Opt_heap:
723 clear_opt(sbi, NOHEAP);
724 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900725#ifdef CONFIG_F2FS_FS_XATTR
Kelly Anderson4058c512013-10-07 11:36:20 +0900726 case Opt_user_xattr:
727 set_opt(sbi, XATTR_USER);
728 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900729 case Opt_nouser_xattr:
730 clear_opt(sbi, XATTR_USER);
731 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900732 case Opt_inline_xattr:
733 set_opt(sbi, INLINE_XATTR);
734 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800735 case Opt_noinline_xattr:
736 clear_opt(sbi, INLINE_XATTR);
737 break;
Chao Yu6afc6622017-09-06 21:59:50 +0800738 case Opt_inline_xattr_size:
739 if (args->from && match_int(args, &arg))
740 return -EINVAL;
741 set_opt(sbi, INLINE_XATTR_SIZE);
Chao Yu63189b72018-03-08 14:22:56 +0800742 F2FS_OPTION(sbi).inline_xattr_size = arg;
Chao Yu6afc6622017-09-06 21:59:50 +0800743 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900744#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900745 case Opt_user_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800746 f2fs_info(sbi, "user_xattr options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900747 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900748 case Opt_nouser_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800749 f2fs_info(sbi, "nouser_xattr options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900750 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900751 case Opt_inline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800752 f2fs_info(sbi, "inline_xattr options not supported");
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900753 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800754 case Opt_noinline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800755 f2fs_info(sbi, "noinline_xattr options not supported");
Chao Yu23cf7212017-02-15 10:34:45 +0800756 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900757#endif
758#ifdef CONFIG_F2FS_FS_POSIX_ACL
Kelly Anderson4058c512013-10-07 11:36:20 +0900759 case Opt_acl:
760 set_opt(sbi, POSIX_ACL);
761 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900762 case Opt_noacl:
763 clear_opt(sbi, POSIX_ACL);
764 break;
765#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900766 case Opt_acl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800767 f2fs_info(sbi, "acl options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900768 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900769 case Opt_noacl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800770 f2fs_info(sbi, "noacl options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900771 break;
772#endif
773 case Opt_active_logs:
774 if (args->from && match_int(args, &arg))
775 return -EINVAL;
Chao Yud0b9e422020-08-04 21:14:45 +0800776 if (arg != 2 && arg != 4 &&
777 arg != NR_CURSEG_PERSIST_TYPE)
Namjae Jeon696c0182013-06-16 09:48:48 +0900778 return -EINVAL;
Chao Yu63189b72018-03-08 14:22:56 +0800779 F2FS_OPTION(sbi).active_logs = arg;
Namjae Jeon696c0182013-06-16 09:48:48 +0900780 break;
781 case Opt_disable_ext_identify:
782 set_opt(sbi, DISABLE_EXT_IDENTIFY);
783 break;
Huajun Li8274de72013-11-10 23:13:17 +0800784 case Opt_inline_data:
785 set_opt(sbi, INLINE_DATA);
786 break;
Chao Yu5efd3c62014-09-24 18:16:13 +0800787 case Opt_inline_dentry:
788 set_opt(sbi, INLINE_DENTRY);
789 break;
Chao Yu97c17942016-05-09 19:56:34 +0800790 case Opt_noinline_dentry:
791 clear_opt(sbi, INLINE_DENTRY);
792 break;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900793 case Opt_flush_merge:
794 set_opt(sbi, FLUSH_MERGE);
795 break;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700796 case Opt_noflush_merge:
797 clear_opt(sbi, FLUSH_MERGE);
798 break;
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700799 case Opt_nobarrier:
800 set_opt(sbi, NOBARRIER);
801 break;
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700802 case Opt_fastboot:
803 set_opt(sbi, FASTBOOT);
804 break;
Chao Yu89672152015-02-05 17:55:51 +0800805 case Opt_extent_cache:
806 set_opt(sbi, EXTENT_CACHE);
807 break;
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700808 case Opt_noextent_cache:
809 clear_opt(sbi, EXTENT_CACHE);
810 break;
Wanpeng Li75342792015-03-24 10:20:27 +0800811 case Opt_noinline_data:
812 clear_opt(sbi, INLINE_DATA);
813 break;
Chao Yu343f40f2015-12-16 13:12:16 +0800814 case Opt_data_flush:
815 set_opt(sbi, DATA_FLUSH);
816 break;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800817 case Opt_reserve_root:
818 if (args->from && match_int(args, &arg))
819 return -EINVAL;
820 if (test_opt(sbi, RESERVE_ROOT)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800821 f2fs_info(sbi, "Preserve previous reserve_root=%u",
822 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800823 } else {
Chao Yu63189b72018-03-08 14:22:56 +0800824 F2FS_OPTION(sbi).root_reserved_blocks = arg;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800825 set_opt(sbi, RESERVE_ROOT);
826 }
827 break;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800828 case Opt_resuid:
829 if (args->from && match_int(args, &arg))
830 return -EINVAL;
831 uid = make_kuid(current_user_ns(), arg);
832 if (!uid_valid(uid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800833 f2fs_err(sbi, "Invalid uid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800834 return -EINVAL;
835 }
Chao Yu63189b72018-03-08 14:22:56 +0800836 F2FS_OPTION(sbi).s_resuid = uid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800837 break;
838 case Opt_resgid:
839 if (args->from && match_int(args, &arg))
840 return -EINVAL;
841 gid = make_kgid(current_user_ns(), arg);
842 if (!gid_valid(gid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800843 f2fs_err(sbi, "Invalid gid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800844 return -EINVAL;
845 }
Chao Yu63189b72018-03-08 14:22:56 +0800846 F2FS_OPTION(sbi).s_resgid = gid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800847 break;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700848 case Opt_mode:
849 name = match_strdup(&args[0]);
850
851 if (!name)
852 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700853 if (!strcmp(name, "adaptive")) {
Chao Yu7beb01f2018-10-24 18:34:26 +0800854 if (f2fs_sb_has_blkzoned(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800855 f2fs_warn(sbi, "adaptive mode is not allowed with zoned block device feature");
Wang Xiaojunba87a452020-06-17 20:30:12 +0800856 kfree(name);
Damien Le Moal3adc57e2016-10-28 17:45:04 +0900857 return -EINVAL;
858 }
Chao Yub0332a02020-02-14 17:44:12 +0800859 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Eric Biggers3c57f752020-05-01 16:35:23 -0700860 } else if (!strcmp(name, "lfs")) {
Chao Yub0332a02020-02-14 17:44:12 +0800861 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Daeho Jeong6691d942021-09-29 11:12:03 -0700862 } else if (!strcmp(name, "fragment:segment")) {
863 F2FS_OPTION(sbi).fs_mode = FS_MODE_FRAGMENT_SEG;
864 } else if (!strcmp(name, "fragment:block")) {
865 F2FS_OPTION(sbi).fs_mode = FS_MODE_FRAGMENT_BLK;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700866 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800867 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700868 return -EINVAL;
869 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800870 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700871 break;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800872 case Opt_io_size_bits:
873 if (args->from && match_int(args, &arg))
874 return -EINVAL;
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100875 if (arg <= 0 || arg > __ilog2_u32(BIO_MAX_VECS)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800876 f2fs_warn(sbi, "Not support %d, larger than %d",
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100877 1 << arg, BIO_MAX_VECS);
Jaegeuk Kimec915382016-12-21 17:09:19 -0800878 return -EINVAL;
879 }
Chao Yu63189b72018-03-08 14:22:56 +0800880 F2FS_OPTION(sbi).write_io_size_bits = arg;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800881 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800882#ifdef CONFIG_F2FS_FAULT_INJECTION
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700883 case Opt_fault_injection:
884 if (args->from && match_int(args, &arg))
885 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800886 f2fs_build_fault_attr(sbi, arg, F2FS_ALL_FAULT_TYPE);
887 set_opt(sbi, FAULT_INJECTION);
Chao Yud4945002018-08-08 17:36:41 +0800888 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800889
Chao Yud4945002018-08-08 17:36:41 +0800890 case Opt_fault_type:
891 if (args->from && match_int(args, &arg))
892 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800893 f2fs_build_fault_attr(sbi, 0, arg);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +0800894 set_opt(sbi, FAULT_INJECTION);
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700895 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800896#else
897 case Opt_fault_injection:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800898 f2fs_info(sbi, "fault_injection options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800899 break;
900
901 case Opt_fault_type:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800902 f2fs_info(sbi, "fault_type options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800903 break;
904#endif
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700905 case Opt_lazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800906 sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700907 break;
908 case Opt_nolazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800909 sb->s_flags &= ~SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700910 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800911#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +0800912 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800913 case Opt_usrquota:
914 set_opt(sbi, USRQUOTA);
915 break;
916 case Opt_grpquota:
917 set_opt(sbi, GRPQUOTA);
918 break;
Chao Yu5c571322017-07-26 00:01:41 +0800919 case Opt_prjquota:
920 set_opt(sbi, PRJQUOTA);
921 break;
Chao Yu4b2414d2017-08-08 10:54:31 +0800922 case Opt_usrjquota:
923 ret = f2fs_set_qf_name(sb, USRQUOTA, &args[0]);
924 if (ret)
925 return ret;
926 break;
927 case Opt_grpjquota:
928 ret = f2fs_set_qf_name(sb, GRPQUOTA, &args[0]);
929 if (ret)
930 return ret;
931 break;
932 case Opt_prjjquota:
933 ret = f2fs_set_qf_name(sb, PRJQUOTA, &args[0]);
934 if (ret)
935 return ret;
936 break;
937 case Opt_offusrjquota:
938 ret = f2fs_clear_qf_name(sb, USRQUOTA);
939 if (ret)
940 return ret;
941 break;
942 case Opt_offgrpjquota:
943 ret = f2fs_clear_qf_name(sb, GRPQUOTA);
944 if (ret)
945 return ret;
946 break;
947 case Opt_offprjjquota:
948 ret = f2fs_clear_qf_name(sb, PRJQUOTA);
949 if (ret)
950 return ret;
951 break;
952 case Opt_jqfmt_vfsold:
Chao Yu63189b72018-03-08 14:22:56 +0800953 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_OLD;
Chao Yu4b2414d2017-08-08 10:54:31 +0800954 break;
955 case Opt_jqfmt_vfsv0:
Chao Yu63189b72018-03-08 14:22:56 +0800956 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V0;
Chao Yu4b2414d2017-08-08 10:54:31 +0800957 break;
958 case Opt_jqfmt_vfsv1:
Chao Yu63189b72018-03-08 14:22:56 +0800959 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V1;
Chao Yu4b2414d2017-08-08 10:54:31 +0800960 break;
961 case Opt_noquota:
962 clear_opt(sbi, QUOTA);
963 clear_opt(sbi, USRQUOTA);
964 clear_opt(sbi, GRPQUOTA);
965 clear_opt(sbi, PRJQUOTA);
966 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800967#else
Chao Yu4b2414d2017-08-08 10:54:31 +0800968 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800969 case Opt_usrquota:
970 case Opt_grpquota:
Chao Yu5c571322017-07-26 00:01:41 +0800971 case Opt_prjquota:
Chao Yu4b2414d2017-08-08 10:54:31 +0800972 case Opt_usrjquota:
973 case Opt_grpjquota:
974 case Opt_prjjquota:
975 case Opt_offusrjquota:
976 case Opt_offgrpjquota:
977 case Opt_offprjjquota:
978 case Opt_jqfmt_vfsold:
979 case Opt_jqfmt_vfsv0:
980 case Opt_jqfmt_vfsv1:
981 case Opt_noquota:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800982 f2fs_info(sbi, "quota operations not supported");
Chao Yu0abd6752017-07-09 00:13:07 +0800983 break;
984#endif
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900985 case Opt_whint:
986 name = match_strdup(&args[0]);
987 if (!name)
988 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700989 if (!strcmp(name, "user-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800990 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_USER;
Eric Biggers3c57f752020-05-01 16:35:23 -0700991 } else if (!strcmp(name, "off")) {
Chao Yu63189b72018-03-08 14:22:56 +0800992 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700993 } else if (!strcmp(name, "fs-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800994 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_FS;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900995 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800996 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900997 return -EINVAL;
998 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800999 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001000 break;
Jaegeuk Kim07939622018-02-18 08:50:49 -08001001 case Opt_alloc:
1002 name = match_strdup(&args[0]);
1003 if (!name)
1004 return -ENOMEM;
1005
Eric Biggers3c57f752020-05-01 16:35:23 -07001006 if (!strcmp(name, "default")) {
Chao Yu63189b72018-03-08 14:22:56 +08001007 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
Eric Biggers3c57f752020-05-01 16:35:23 -07001008 } else if (!strcmp(name, "reuse")) {
Chao Yu63189b72018-03-08 14:22:56 +08001009 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Jaegeuk Kim07939622018-02-18 08:50:49 -08001010 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +08001011 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -08001012 return -EINVAL;
1013 }
Wang Xiaojunba87a452020-06-17 20:30:12 +08001014 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -08001015 break;
Junling Zheng93cf93f2018-03-07 12:07:49 +08001016 case Opt_fsync:
1017 name = match_strdup(&args[0]);
1018 if (!name)
1019 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -07001020 if (!strcmp(name, "posix")) {
Chao Yu63189b72018-03-08 14:22:56 +08001021 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Eric Biggers3c57f752020-05-01 16:35:23 -07001022 } else if (!strcmp(name, "strict")) {
Chao Yu63189b72018-03-08 14:22:56 +08001023 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_STRICT;
Eric Biggers3c57f752020-05-01 16:35:23 -07001024 } else if (!strcmp(name, "nobarrier")) {
Jaegeuk Kimd6290812018-05-25 18:02:58 -07001025 F2FS_OPTION(sbi).fsync_mode =
1026 FSYNC_MODE_NOBARRIER;
Junling Zheng93cf93f2018-03-07 12:07:49 +08001027 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +08001028 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +08001029 return -EINVAL;
1030 }
Wang Xiaojunba87a452020-06-17 20:30:12 +08001031 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +08001032 break;
Sheng Yongff62af22018-03-15 18:51:42 +08001033 case Opt_test_dummy_encryption:
Eric Biggersed318a62020-05-12 16:32:50 -07001034 ret = f2fs_set_test_dummy_encryption(sb, p, &args[0],
1035 is_remount);
1036 if (ret)
1037 return ret;
Sheng Yongff62af22018-03-15 18:51:42 +08001038 break;
Satya Tangirala27aacd22020-07-02 01:56:06 +00001039 case Opt_inlinecrypt:
1040#ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
1041 sb->s_flags |= SB_INLINECRYPT;
1042#else
1043 f2fs_info(sbi, "inline encryption not supported");
1044#endif
1045 break;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001046 case Opt_checkpoint_disable_cap_perc:
1047 if (args->from && match_int(args, &arg))
Daniel Rosenberg43549942018-08-20 19:21:43 -07001048 return -EINVAL;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001049 if (arg < 0 || arg > 100)
1050 return -EINVAL;
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07001051 F2FS_OPTION(sbi).unusable_cap_perc = arg;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001052 set_opt(sbi, DISABLE_CHECKPOINT);
1053 break;
1054 case Opt_checkpoint_disable_cap:
1055 if (args->from && match_int(args, &arg))
1056 return -EINVAL;
1057 F2FS_OPTION(sbi).unusable_cap = arg;
1058 set_opt(sbi, DISABLE_CHECKPOINT);
1059 break;
1060 case Opt_checkpoint_disable:
1061 set_opt(sbi, DISABLE_CHECKPOINT);
1062 break;
1063 case Opt_checkpoint_enable:
1064 clear_opt(sbi, DISABLE_CHECKPOINT);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001065 break;
Daeho Jeong261eeb92021-01-19 09:00:42 +09001066 case Opt_checkpoint_merge:
1067 set_opt(sbi, MERGE_CHECKPOINT);
1068 break;
1069 case Opt_nocheckpoint_merge:
1070 clear_opt(sbi, MERGE_CHECKPOINT);
1071 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001072#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001073 case Opt_compress_algorithm:
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 name = match_strdup(&args[0]);
1079 if (!name)
1080 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -07001081 if (!strcmp(name, "lzo")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001082#ifdef CONFIG_F2FS_FS_LZO
Chao Yu3fde13f2021-01-22 17:46:43 +08001083 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu4c8ff702019-11-01 18:07:14 +08001084 F2FS_OPTION(sbi).compress_algorithm =
1085 COMPRESS_LZO;
Chao Yu32be0e92021-01-22 17:40:13 +08001086#else
1087 f2fs_info(sbi, "kernel doesn't support lzo compression");
1088#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001089 } else if (!strncmp(name, "lz4", 3)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001090#ifdef CONFIG_F2FS_FS_LZ4
Chao Yu3fde13f2021-01-22 17:46:43 +08001091 ret = f2fs_set_lz4hc_level(sbi, name);
1092 if (ret) {
1093 kfree(name);
1094 return -EINVAL;
1095 }
Chao Yu4c8ff702019-11-01 18:07:14 +08001096 F2FS_OPTION(sbi).compress_algorithm =
1097 COMPRESS_LZ4;
Chao Yu32be0e92021-01-22 17:40:13 +08001098#else
1099 f2fs_info(sbi, "kernel doesn't support lz4 compression");
1100#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001101 } else if (!strncmp(name, "zstd", 4)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001102#ifdef CONFIG_F2FS_FS_ZSTD
Chao Yu3fde13f2021-01-22 17:46:43 +08001103 ret = f2fs_set_zstd_level(sbi, name);
1104 if (ret) {
1105 kfree(name);
1106 return -EINVAL;
1107 }
Chao Yu50cfa662020-03-03 17:46:02 +08001108 F2FS_OPTION(sbi).compress_algorithm =
1109 COMPRESS_ZSTD;
Chao Yu32be0e92021-01-22 17:40:13 +08001110#else
1111 f2fs_info(sbi, "kernel doesn't support zstd compression");
1112#endif
Chao Yu6d92b202020-04-08 19:56:32 +08001113 } else if (!strcmp(name, "lzo-rle")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001114#ifdef CONFIG_F2FS_FS_LZORLE
Chao Yu3fde13f2021-01-22 17:46:43 +08001115 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu6d92b202020-04-08 19:56:32 +08001116 F2FS_OPTION(sbi).compress_algorithm =
1117 COMPRESS_LZORLE;
Chao Yu32be0e92021-01-22 17:40:13 +08001118#else
1119 f2fs_info(sbi, "kernel doesn't support lzorle compression");
1120#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001121 } else {
1122 kfree(name);
1123 return -EINVAL;
1124 }
1125 kfree(name);
1126 break;
1127 case Opt_compress_log_size:
1128 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001129 f2fs_info(sbi, "Image doesn't support compression");
1130 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001131 }
1132 if (args->from && match_int(args, &arg))
1133 return -EINVAL;
1134 if (arg < MIN_COMPRESS_LOG_SIZE ||
1135 arg > MAX_COMPRESS_LOG_SIZE) {
1136 f2fs_err(sbi,
1137 "Compress cluster log size is out of range");
1138 return -EINVAL;
1139 }
1140 F2FS_OPTION(sbi).compress_log_size = arg;
1141 break;
1142 case Opt_compress_extension:
1143 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001144 f2fs_info(sbi, "Image doesn't support compression");
1145 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001146 }
1147 name = match_strdup(&args[0]);
1148 if (!name)
1149 return -ENOMEM;
1150
1151 ext = F2FS_OPTION(sbi).extensions;
1152 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
1153
1154 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1155 ext_cnt >= COMPRESS_EXT_NUM) {
1156 f2fs_err(sbi,
1157 "invalid extension length/number");
1158 kfree(name);
1159 return -EINVAL;
1160 }
1161
1162 strcpy(ext[ext_cnt], name);
1163 F2FS_OPTION(sbi).compress_ext_cnt++;
1164 kfree(name);
1165 break;
Fengnan Chang151b1982021-06-08 19:15:08 +08001166 case Opt_nocompress_extension:
1167 if (!f2fs_sb_has_compression(sbi)) {
1168 f2fs_info(sbi, "Image doesn't support compression");
1169 break;
1170 }
1171 name = match_strdup(&args[0]);
1172 if (!name)
1173 return -ENOMEM;
1174
1175 noext = F2FS_OPTION(sbi).noextensions;
1176 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
1177
1178 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1179 noext_cnt >= COMPRESS_EXT_NUM) {
1180 f2fs_err(sbi,
1181 "invalid extension length/number");
1182 kfree(name);
1183 return -EINVAL;
1184 }
1185
1186 strcpy(noext[noext_cnt], name);
1187 F2FS_OPTION(sbi).nocompress_ext_cnt++;
1188 kfree(name);
1189 break;
Chao Yub28f0472020-11-26 18:32:09 +08001190 case Opt_compress_chksum:
1191 F2FS_OPTION(sbi).compress_chksum = true;
1192 break;
Daeho Jeong602a16d2020-12-01 13:08:02 +09001193 case Opt_compress_mode:
1194 name = match_strdup(&args[0]);
1195 if (!name)
1196 return -ENOMEM;
1197 if (!strcmp(name, "fs")) {
1198 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
1199 } else if (!strcmp(name, "user")) {
1200 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_USER;
1201 } else {
1202 kfree(name);
1203 return -EINVAL;
1204 }
1205 kfree(name);
1206 break;
Chao Yu6ce19af2021-05-20 19:51:50 +08001207 case Opt_compress_cache:
1208 set_opt(sbi, COMPRESS_CACHE);
1209 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001210#else
1211 case Opt_compress_algorithm:
1212 case Opt_compress_log_size:
1213 case Opt_compress_extension:
Fengnan Chang151b1982021-06-08 19:15:08 +08001214 case Opt_nocompress_extension:
Chao Yub28f0472020-11-26 18:32:09 +08001215 case Opt_compress_chksum:
Daeho Jeong602a16d2020-12-01 13:08:02 +09001216 case Opt_compress_mode:
Chao Yu6ce19af2021-05-20 19:51:50 +08001217 case Opt_compress_cache:
Chao Yu1f0b0672020-07-29 21:21:36 +08001218 f2fs_info(sbi, "compression options not supported");
1219 break;
1220#endif
Chao Yu093749e2020-08-04 21:14:49 +08001221 case Opt_atgc:
1222 set_opt(sbi, ATGC);
1223 break;
Chao Yu5911d2d2021-03-27 17:57:06 +08001224 case Opt_gc_merge:
1225 set_opt(sbi, GC_MERGE);
1226 break;
1227 case Opt_nogc_merge:
1228 clear_opt(sbi, GC_MERGE);
1229 break;
Chao Yu4f993262021-08-03 08:15:43 +08001230 case Opt_discard_unit:
1231 name = match_strdup(&args[0]);
1232 if (!name)
1233 return -ENOMEM;
1234 if (!strcmp(name, "block")) {
1235 F2FS_OPTION(sbi).discard_unit =
1236 DISCARD_UNIT_BLOCK;
1237 } else if (!strcmp(name, "segment")) {
1238 F2FS_OPTION(sbi).discard_unit =
1239 DISCARD_UNIT_SEGMENT;
1240 } else if (!strcmp(name, "section")) {
1241 F2FS_OPTION(sbi).discard_unit =
1242 DISCARD_UNIT_SECTION;
1243 } else {
1244 kfree(name);
1245 return -EINVAL;
1246 }
1247 kfree(name);
1248 break;
Namjae Jeon696c0182013-06-16 09:48:48 +09001249 default:
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001250 f2fs_err(sbi, "Unrecognized mount option \"%s\" or missing value",
1251 p);
Namjae Jeon696c0182013-06-16 09:48:48 +09001252 return -EINVAL;
1253 }
1254 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001255default_check:
Chao Yu4b2414d2017-08-08 10:54:31 +08001256#ifdef CONFIG_QUOTA
1257 if (f2fs_check_quota_options(sbi))
1258 return -EINVAL;
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001259#else
Chao Yu7beb01f2018-10-24 18:34:26 +08001260 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001261 f2fs_info(sbi, "Filesystem with quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001262 return -EINVAL;
1263 }
Chao Yu7beb01f2018-10-24 18:34:26 +08001264 if (f2fs_sb_has_project_quota(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001265 f2fs_err(sbi, "Filesystem with project quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Chao Yu4ddc1b22018-07-26 07:19:48 +08001266 return -EINVAL;
1267 }
Chao Yu4b2414d2017-08-08 10:54:31 +08001268#endif
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001269#ifndef CONFIG_UNICODE
1270 if (f2fs_sb_has_casefold(sbi)) {
1271 f2fs_err(sbi,
1272 "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
1273 return -EINVAL;
1274 }
1275#endif
Chao Yud0660122020-09-21 20:53:14 +08001276 /*
1277 * The BLKZONED feature indicates that the drive was formatted with
1278 * zone alignment optimization. This is optional for host-aware
1279 * devices, but mandatory for host-managed zoned block devices.
1280 */
1281#ifndef CONFIG_BLK_DEV_ZONED
1282 if (f2fs_sb_has_blkzoned(sbi)) {
1283 f2fs_err(sbi, "Zoned block device support is not enabled");
1284 return -EINVAL;
1285 }
1286#endif
Chao Yu4f993262021-08-03 08:15:43 +08001287 if (f2fs_sb_has_blkzoned(sbi)) {
1288 if (F2FS_OPTION(sbi).discard_unit !=
1289 DISCARD_UNIT_SECTION) {
1290 f2fs_info(sbi, "Zoned block device doesn't need small discard, set discard_unit=section by default");
1291 F2FS_OPTION(sbi).discard_unit =
1292 DISCARD_UNIT_SECTION;
1293 }
1294 }
Jaegeuk Kimec915382016-12-21 17:09:19 -08001295
Fengnan Chang151b1982021-06-08 19:15:08 +08001296#ifdef CONFIG_F2FS_FS_COMPRESSION
1297 if (f2fs_test_compress_extension(sbi)) {
1298 f2fs_err(sbi, "invalid compress or nocompress extension");
1299 return -EINVAL;
1300 }
1301#endif
1302
Chao Yub0332a02020-02-14 17:44:12 +08001303 if (F2FS_IO_SIZE_BITS(sbi) && !f2fs_lfs_mode(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001304 f2fs_err(sbi, "Should set mode=lfs with %uKB-sized IO",
1305 F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001306 return -EINVAL;
1307 }
Chao Yu6afc6622017-09-06 21:59:50 +08001308
1309 if (test_opt(sbi, INLINE_XATTR_SIZE)) {
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001310 int min_size, max_size;
1311
Chao Yu7beb01f2018-10-24 18:34:26 +08001312 if (!f2fs_sb_has_extra_attr(sbi) ||
1313 !f2fs_sb_has_flexible_inline_xattr(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001314 f2fs_err(sbi, "extra_attr or flexible_inline_xattr feature is off");
Chao Yu4d817ae2018-01-27 17:29:48 +08001315 return -EINVAL;
1316 }
Chao Yu6afc6622017-09-06 21:59:50 +08001317 if (!test_opt(sbi, INLINE_XATTR)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001318 f2fs_err(sbi, "inline_xattr_size option should be set with inline_xattr option");
Chao Yu6afc6622017-09-06 21:59:50 +08001319 return -EINVAL;
1320 }
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001321
1322 min_size = sizeof(struct f2fs_xattr_header) / sizeof(__le32);
Chao Yudd6c89b2019-03-04 17:19:04 +08001323 max_size = MAX_INLINE_XATTR_SIZE;
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001324
1325 if (F2FS_OPTION(sbi).inline_xattr_size < min_size ||
1326 F2FS_OPTION(sbi).inline_xattr_size > max_size) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001327 f2fs_err(sbi, "inline xattr size is out of range: %d ~ %d",
1328 min_size, max_size);
Chao Yu6afc6622017-09-06 21:59:50 +08001329 return -EINVAL;
1330 }
1331 }
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001332
Chao Yub0332a02020-02-14 17:44:12 +08001333 if (test_opt(sbi, DISABLE_CHECKPOINT) && f2fs_lfs_mode(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07001334 f2fs_err(sbi, "LFS not compatible with checkpoint=disable");
Daniel Rosenberg43549942018-08-20 19:21:43 -07001335 return -EINVAL;
1336 }
1337
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001338 /* Not pass down write hints if the number of active logs is lesser
Chao Yud0b9e422020-08-04 21:14:45 +08001339 * than NR_CURSEG_PERSIST_TYPE.
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001340 */
Keoseong Park011e0862021-09-27 15:06:48 +09001341 if (F2FS_OPTION(sbi).active_logs != NR_CURSEG_PERSIST_TYPE)
Chao Yu63189b72018-03-08 14:22:56 +08001342 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001343
1344 if (f2fs_sb_has_readonly(sbi) && !f2fs_readonly(sbi->sb)) {
1345 f2fs_err(sbi, "Allow to mount readonly mode only");
1346 return -EROFS;
1347 }
Namjae Jeon696c0182013-06-16 09:48:48 +09001348 return 0;
1349}
1350
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001351static struct inode *f2fs_alloc_inode(struct super_block *sb)
1352{
1353 struct f2fs_inode_info *fi;
1354
Chao Yu32410572021-08-09 08:24:48 +08001355 fi = f2fs_kmem_cache_alloc(f2fs_inode_cachep,
1356 GFP_F2FS_ZERO, false, F2FS_SB(sb));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001357 if (!fi)
1358 return NULL;
1359
1360 init_once((void *) fi);
1361
Masanari Iida434720f2013-03-19 08:03:35 +09001362 /* Initialize f2fs-specific inode info */
Jaegeuk Kim204706c2016-12-02 15:11:32 -08001363 atomic_set(&fi->dirty_pages, 0);
Daeho Jeongc2759eb2020-09-08 11:44:10 +09001364 atomic_set(&fi->i_compr_blocks, 0);
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +09001365 init_rwsem(&fi->i_sem);
Chao Yuc10c9822020-02-27 19:30:03 +08001366 spin_lock_init(&fi->i_size_lock);
Chao Yu2710fd72015-12-15 13:30:45 +08001367 INIT_LIST_HEAD(&fi->dirty_list);
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001368 INIT_LIST_HEAD(&fi->gdirty_list);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -07001369 INIT_LIST_HEAD(&fi->inmem_ilist);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001370 INIT_LIST_HEAD(&fi->inmem_pages);
1371 mutex_init(&fi->inmem_lock);
Chao Yub2532c62018-04-24 10:55:28 +08001372 init_rwsem(&fi->i_gc_rwsem[READ]);
1373 init_rwsem(&fi->i_gc_rwsem[WRITE]);
Yunlei He27161f12017-09-07 10:40:54 +08001374 init_rwsem(&fi->i_xattr_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001375
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09001376 /* Will be used by directory only */
1377 fi->i_dir_level = F2FS_SB(sb)->dir_level;
Chao Yuf2470372017-07-19 00:19:05 +08001378
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001379 return &fi->vfs_inode;
1380}
1381
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001382static int f2fs_drop_inode(struct inode *inode)
1383{
Chao Yua8933b62019-07-18 16:39:59 +08001384 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001385 int ret;
Chao Yua8933b62019-07-18 16:39:59 +08001386
1387 /*
1388 * during filesystem shutdown, if checkpoint is disabled,
1389 * drop useless meta/node dirty pages.
1390 */
1391 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1392 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1393 inode->i_ino == F2FS_META_INO(sbi)) {
1394 trace_f2fs_drop_inode(inode, 1);
1395 return 1;
1396 }
1397 }
1398
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001399 /*
1400 * This is to avoid a deadlock condition like below.
1401 * writeback_single_inode(inode)
1402 * - f2fs_write_data_page
1403 * - f2fs_gc -> iput -> evict
1404 * - inode_wait_for_writeback(inode)
1405 */
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001406 if ((!inode_unhashed(inode) && inode->i_state & I_SYNC)) {
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001407 if (!inode->i_nlink && !is_bad_inode(inode)) {
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001408 /* to avoid evict_inode call simultaneously */
1409 atomic_inc(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001410 spin_unlock(&inode->i_lock);
1411
1412 /* some remained atomic pages should discarded */
1413 if (f2fs_is_atomic_file(inode))
Chao Yu4d57b862018-05-30 00:20:41 +08001414 f2fs_drop_inmem_pages(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001415
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001416 /* should remain fi->extent_tree for writepage */
1417 f2fs_destroy_extent_node(inode);
1418
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001419 sb_start_intwrite(inode->i_sb);
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07001420 f2fs_i_size_write(inode, 0);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001421
zhenglianga0770e12019-03-04 09:32:25 +08001422 f2fs_submit_merged_write_cond(F2FS_I_SB(inode),
1423 inode, NULL, 0, DATA);
1424 truncate_inode_pages_final(inode->i_mapping);
1425
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001426 if (F2FS_HAS_BLOCKS(inode))
Jaegeuk Kim9a449e92016-06-02 13:49:38 -07001427 f2fs_truncate(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001428
1429 sb_end_intwrite(inode->i_sb);
1430
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001431 spin_lock(&inode->i_lock);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001432 atomic_dec(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001433 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001434 trace_f2fs_drop_inode(inode, 0);
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001435 return 0;
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001436 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001437 ret = generic_drop_inode(inode);
Eric Biggers8ce589c2019-08-04 19:35:48 -07001438 if (!ret)
1439 ret = fscrypt_drop_inode(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001440 trace_f2fs_drop_inode(inode, ret);
1441 return ret;
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001442}
1443
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001444int f2fs_inode_dirtied(struct inode *inode, bool sync)
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001445{
1446 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001447 int ret = 0;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001448
1449 spin_lock(&sbi->inode_lock[DIRTY_META]);
1450 if (is_inode_flag_set(inode, FI_DIRTY_INODE)) {
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001451 ret = 1;
1452 } else {
1453 set_inode_flag(inode, FI_DIRTY_INODE);
1454 stat_inc_dirty_inode(sbi, DIRTY_META);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001455 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001456 if (sync && list_empty(&F2FS_I(inode)->gdirty_list)) {
1457 list_add_tail(&F2FS_I(inode)->gdirty_list,
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001458 &sbi->inode_list[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001459 inc_page_count(sbi, F2FS_DIRTY_IMETA);
1460 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001461 spin_unlock(&sbi->inode_lock[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001462 return ret;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001463}
1464
1465void f2fs_inode_synced(struct inode *inode)
1466{
1467 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1468
1469 spin_lock(&sbi->inode_lock[DIRTY_META]);
1470 if (!is_inode_flag_set(inode, FI_DIRTY_INODE)) {
1471 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1472 return;
1473 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001474 if (!list_empty(&F2FS_I(inode)->gdirty_list)) {
1475 list_del_init(&F2FS_I(inode)->gdirty_list);
1476 dec_page_count(sbi, F2FS_DIRTY_IMETA);
1477 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001478 clear_inode_flag(inode, FI_DIRTY_INODE);
1479 clear_inode_flag(inode, FI_AUTO_RECOVER);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001480 stat_dec_dirty_inode(F2FS_I_SB(inode), DIRTY_META);
1481 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1482}
1483
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001484/*
1485 * f2fs_dirty_inode() is called from __mark_inode_dirty()
1486 *
1487 * We should call set_dirty_inode to write the dirty inode through write_inode.
1488 */
1489static void f2fs_dirty_inode(struct inode *inode, int flags)
1490{
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001491 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1492
1493 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1494 inode->i_ino == F2FS_META_INO(sbi))
1495 return;
1496
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07001497 if (is_inode_flag_set(inode, FI_AUTO_RECOVER))
1498 clear_inode_flag(inode, FI_AUTO_RECOVER);
1499
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001500 f2fs_inode_dirtied(inode, false);
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001501}
1502
Al Virod01718a2019-04-15 19:29:14 -04001503static void f2fs_free_inode(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001504{
Eric Biggers2c58d542019-04-10 13:21:15 -07001505 fscrypt_free_inode(inode);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001506 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
1507}
1508
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001509static void destroy_percpu_info(struct f2fs_sb_info *sbi)
1510{
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001511 percpu_counter_destroy(&sbi->alloc_valid_block_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07001512 percpu_counter_destroy(&sbi->total_valid_inode_count);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001513}
1514
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001515static void destroy_device_list(struct f2fs_sb_info *sbi)
1516{
1517 int i;
1518
1519 for (i = 0; i < sbi->s_ndevs; i++) {
1520 blkdev_put(FDEV(i).bdev, FMODE_EXCL);
1521#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal95175da2019-03-16 09:13:07 +09001522 kvfree(FDEV(i).blkz_seq);
Aravind Rameshde881df2020-07-16 18:26:56 +05301523 kfree(FDEV(i).zone_capacity_blocks);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001524#endif
1525 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08001526 kvfree(sbi->devs);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001527}
1528
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001529static void f2fs_put_super(struct super_block *sb)
1530{
1531 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yua3981012017-06-14 17:39:46 +08001532 int i;
Chao Yucf5c7592017-10-04 09:08:37 +08001533 bool dropped;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001534
Li Guifu99c787c2020-07-24 09:38:11 +08001535 /* unregister procfs/sysfs entries in advance to avoid race case */
1536 f2fs_unregister_sysfs(sbi);
1537
Chao Yu0abd6752017-07-09 00:13:07 +08001538 f2fs_quota_off_umount(sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001539
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001540 /* prevent remaining shrinker jobs */
1541 mutex_lock(&sbi->umount_mutex);
1542
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001543 /*
Daeho Jeong261eeb92021-01-19 09:00:42 +09001544 * flush all issued checkpoints and stop checkpoint issue thread.
1545 * after then, all checkpoints should be done by each process context.
1546 */
1547 f2fs_stop_ckpt_thread(sbi);
1548
1549 /*
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001550 * We don't need to do checkpoint when superblock is clean.
1551 * But, the previous checkpoint was not done by umount, it needs to do
1552 * clean checkpoint again.
1553 */
Daniel Rosenberg43549942018-08-20 19:21:43 -07001554 if ((is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
1555 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG))) {
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001556 struct cp_control cpc = {
1557 .reason = CP_UMOUNT,
1558 };
Chao Yu4d57b862018-05-30 00:20:41 +08001559 f2fs_write_checkpoint(sbi, &cpc);
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001560 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001561
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001562 /* be sure to wait for any on-going discard commands */
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001563 dropped = f2fs_issue_discard_timeout(sbi);
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001564
Chao Yu7d20c8a2018-09-04 03:52:17 +08001565 if ((f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi)) &&
1566 !sbi->discard_blks && !dropped) {
Chao Yu1f43e2a2017-04-28 13:56:08 +08001567 struct cp_control cpc = {
1568 .reason = CP_UMOUNT | CP_TRIMMED,
1569 };
Chao Yu4d57b862018-05-30 00:20:41 +08001570 f2fs_write_checkpoint(sbi, &cpc);
Chao Yu1f43e2a2017-04-28 13:56:08 +08001571 }
1572
Jaegeuk Kimcf779ca2014-08-11 18:37:46 -07001573 /*
1574 * normally superblock is clean, so we need to release this.
1575 * In addition, EIO will skip do checkpoint, we need this as well.
1576 */
Chao Yu4d57b862018-05-30 00:20:41 +08001577 f2fs_release_ino_entry(sbi, true);
Jaegeuk Kim6f12ac22014-08-19 09:48:22 -07001578
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001579 f2fs_leave_shrinker(sbi);
1580 mutex_unlock(&sbi->umount_mutex);
1581
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001582 /* our cp_error case, we can wait for any writeback page */
Jaegeuk Kimb9109b02017-05-10 11:28:38 -07001583 f2fs_flush_merged_writes(sbi);
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001584
Sahitya Tummalabf22c3c2020-02-18 09:19:07 +05301585 f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
Chao Yu50fa53e2018-08-02 23:03:19 +08001586
1587 f2fs_bug_on(sbi, sbi->fsync_node_num);
1588
Chao Yu6ce19af2021-05-20 19:51:50 +08001589 f2fs_destroy_compress_inode(sbi);
1590
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001591 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001592 sbi->node_inode = NULL;
1593
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001594 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001595 sbi->meta_inode = NULL;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001596
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05301597 /*
1598 * iput() can update stat information, if f2fs_write_checkpoint()
1599 * above failed with error.
1600 */
1601 f2fs_destroy_stats(sbi);
1602
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001603 /* destroy f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08001604 f2fs_destroy_node_manager(sbi);
1605 f2fs_destroy_segment_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001606
Chao Yu4c8ff702019-11-01 18:07:14 +08001607 f2fs_destroy_post_read_wq(sbi);
1608
Jaegeuk Kim52225952018-12-13 18:38:33 -08001609 kvfree(sbi->ckpt);
Chao Yua3981012017-06-14 17:39:46 +08001610
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001611 sb->s_fs_info = NULL;
Keith Mok43b65732016-03-02 12:04:24 -08001612 if (sbi->s_chksum_driver)
1613 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03001614 kfree(sbi->raw_super);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001615
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001616 destroy_device_list(sbi);
Chao Yu31083032020-09-14 17:05:13 +08001617 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08001618 f2fs_destroy_xattr_caches(sbi);
Chao Yub6895e82017-02-27 18:43:12 +08001619 mempool_destroy(sbi->write_io_dummy);
Chao Yu4b2414d2017-08-08 10:54:31 +08001620#ifdef CONFIG_QUOTA
1621 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08001622 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001623#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07001624 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001625 destroy_percpu_info(sbi);
Daeho Jeonga4b68172021-08-20 15:29:09 -07001626 f2fs_destroy_iostat(sbi);
Jaegeuk Kima912b542017-05-10 11:18:25 -07001627 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08001628 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001629#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07001630 utf8_unload(sb->s_encoding);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001631#endif
Denis Efremov742532d2020-06-10 01:14:46 +03001632 kfree(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001633}
1634
1635int f2fs_sync_fs(struct super_block *sb, int sync)
1636{
1637 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yuc34f42e2015-12-23 17:50:30 +08001638 int err = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001639
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001640 if (unlikely(f2fs_cp_error(sbi)))
1641 return 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07001642 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1643 return 0;
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001644
Namjae Jeona2a4a7e2013-04-20 01:28:40 +09001645 trace_f2fs_sync_fs(sb, sync);
1646
Chao Yu4b2414d2017-08-08 10:54:31 +08001647 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1648 return -EAGAIN;
1649
Daeho Jeong261eeb92021-01-19 09:00:42 +09001650 if (sync)
1651 err = f2fs_issue_checkpoint(sbi);
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001652
Chao Yuc34f42e2015-12-23 17:50:30 +08001653 return err;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001654}
1655
Changman Leed6212a52013-01-29 18:30:07 +09001656static int f2fs_freeze(struct super_block *sb)
1657{
Jaegeuk Kim77888c12013-05-20 20:28:47 +09001658 if (f2fs_readonly(sb))
Changman Leed6212a52013-01-29 18:30:07 +09001659 return 0;
1660
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001661 /* IO error happened before */
1662 if (unlikely(f2fs_cp_error(F2FS_SB(sb))))
1663 return -EIO;
1664
1665 /* must be clean, since sync_filesystem() was already called */
1666 if (is_sbi_flag_set(F2FS_SB(sb), SBI_IS_DIRTY))
1667 return -EINVAL;
Jaegeuk Kimd50dfc0c2021-02-08 13:42:21 -08001668
1669 /* ensure no checkpoint required */
1670 if (!llist_empty(&F2FS_SB(sb)->cprc_info.issue_list))
1671 return -EINVAL;
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001672 return 0;
Changman Leed6212a52013-01-29 18:30:07 +09001673}
1674
1675static int f2fs_unfreeze(struct super_block *sb)
1676{
1677 return 0;
1678}
1679
Chao Yuddc34e32017-07-29 00:32:53 +08001680#ifdef CONFIG_QUOTA
1681static int f2fs_statfs_project(struct super_block *sb,
1682 kprojid_t projid, struct kstatfs *buf)
1683{
1684 struct kqid qid;
1685 struct dquot *dquot;
1686 u64 limit;
1687 u64 curblock;
1688
1689 qid = make_kqid_projid(projid);
1690 dquot = dqget(sb, qid);
1691 if (IS_ERR(dquot))
1692 return PTR_ERR(dquot);
Sheng Yong955ac6e2018-07-24 20:17:53 +08001693 spin_lock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001694
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001695 limit = min_not_zero(dquot->dq_dqb.dqb_bsoftlimit,
1696 dquot->dq_dqb.dqb_bhardlimit);
Chengguang Xuacdf2172020-01-04 22:20:03 +08001697 if (limit)
1698 limit >>= sb->s_blocksize_bits;
Chengguang Xu909110c2019-11-25 11:20:36 +08001699
Chao Yuddc34e32017-07-29 00:32:53 +08001700 if (limit && buf->f_blocks > limit) {
Konstantin Khlebnikovbaaa7eb2020-05-11 09:15:18 +03001701 curblock = (dquot->dq_dqb.dqb_curspace +
1702 dquot->dq_dqb.dqb_rsvspace) >> sb->s_blocksize_bits;
Chao Yuddc34e32017-07-29 00:32:53 +08001703 buf->f_blocks = limit;
1704 buf->f_bfree = buf->f_bavail =
1705 (buf->f_blocks > curblock) ?
1706 (buf->f_blocks - curblock) : 0;
1707 }
1708
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001709 limit = min_not_zero(dquot->dq_dqb.dqb_isoftlimit,
1710 dquot->dq_dqb.dqb_ihardlimit);
Chengguang Xu909110c2019-11-25 11:20:36 +08001711
Chao Yuddc34e32017-07-29 00:32:53 +08001712 if (limit && buf->f_files > limit) {
1713 buf->f_files = limit;
1714 buf->f_ffree =
1715 (buf->f_files > dquot->dq_dqb.dqb_curinodes) ?
1716 (buf->f_files - dquot->dq_dqb.dqb_curinodes) : 0;
1717 }
1718
Sheng Yong955ac6e2018-07-24 20:17:53 +08001719 spin_unlock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001720 dqput(dquot);
1721 return 0;
1722}
1723#endif
1724
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001725static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
1726{
1727 struct super_block *sb = dentry->d_sb;
1728 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1729 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001730 block_t total_count, user_block_count, start_count;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001731 u64 avail_node_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001732
1733 total_count = le64_to_cpu(sbi->raw_super->block_count);
1734 user_block_count = sbi->user_block_count;
1735 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001736 buf->f_type = F2FS_SUPER_MAGIC;
1737 buf->f_bsize = sbi->blocksize;
1738
1739 buf->f_blocks = total_count - start_count;
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001740 buf->f_bfree = user_block_count - valid_user_blocks(sbi) -
Yunlong Song80d42142017-10-27 20:45:05 +08001741 sbi->current_reserved_blocks;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001742
1743 spin_lock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001744 if (unlikely(buf->f_bfree <= sbi->unusable_block_count))
1745 buf->f_bfree = 0;
1746 else
1747 buf->f_bfree -= sbi->unusable_block_count;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001748 spin_unlock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001749
Chao Yu63189b72018-03-08 14:22:56 +08001750 if (buf->f_bfree > F2FS_OPTION(sbi).root_reserved_blocks)
1751 buf->f_bavail = buf->f_bfree -
1752 F2FS_OPTION(sbi).root_reserved_blocks;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001753 else
1754 buf->f_bavail = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001755
Chao Yu27cae0b2019-08-05 18:27:25 +08001756 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001757
1758 if (avail_node_count > user_block_count) {
1759 buf->f_files = user_block_count;
1760 buf->f_ffree = buf->f_bavail;
1761 } else {
1762 buf->f_files = avail_node_count;
1763 buf->f_ffree = min(avail_node_count - valid_node_count(sbi),
1764 buf->f_bavail);
1765 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001766
Jaegeuk Kim5a20d332013-03-03 13:58:05 +09001767 buf->f_namelen = F2FS_NAME_LEN;
Al Viro6d1349c2020-09-18 16:45:50 -04001768 buf->f_fsid = u64_to_fsid(id);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001769
Chao Yuddc34e32017-07-29 00:32:53 +08001770#ifdef CONFIG_QUOTA
1771 if (is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) &&
1772 sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
1773 f2fs_statfs_project(sb, F2FS_I(dentry->d_inode)->i_projid, buf);
1774 }
1775#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001776 return 0;
1777}
1778
Chao Yu4b2414d2017-08-08 10:54:31 +08001779static inline void f2fs_show_quota_options(struct seq_file *seq,
1780 struct super_block *sb)
1781{
1782#ifdef CONFIG_QUOTA
1783 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1784
Chao Yu63189b72018-03-08 14:22:56 +08001785 if (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001786 char *fmtname = "";
1787
Chao Yu63189b72018-03-08 14:22:56 +08001788 switch (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001789 case QFMT_VFS_OLD:
1790 fmtname = "vfsold";
1791 break;
1792 case QFMT_VFS_V0:
1793 fmtname = "vfsv0";
1794 break;
1795 case QFMT_VFS_V1:
1796 fmtname = "vfsv1";
1797 break;
1798 }
1799 seq_printf(seq, ",jqfmt=%s", fmtname);
1800 }
1801
Chao Yu63189b72018-03-08 14:22:56 +08001802 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
1803 seq_show_option(seq, "usrjquota",
1804 F2FS_OPTION(sbi).s_qf_names[USRQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001805
Chao Yu63189b72018-03-08 14:22:56 +08001806 if (F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
1807 seq_show_option(seq, "grpjquota",
1808 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001809
Chao Yu63189b72018-03-08 14:22:56 +08001810 if (F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
1811 seq_show_option(seq, "prjjquota",
1812 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001813#endif
1814}
1815
Chao Yucd6ee732021-02-20 17:38:41 +08001816#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001817static inline void f2fs_show_compress_options(struct seq_file *seq,
1818 struct super_block *sb)
1819{
1820 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1821 char *algtype = "";
1822 int i;
1823
1824 if (!f2fs_sb_has_compression(sbi))
1825 return;
1826
1827 switch (F2FS_OPTION(sbi).compress_algorithm) {
1828 case COMPRESS_LZO:
1829 algtype = "lzo";
1830 break;
1831 case COMPRESS_LZ4:
1832 algtype = "lz4";
1833 break;
Chao Yu50cfa662020-03-03 17:46:02 +08001834 case COMPRESS_ZSTD:
1835 algtype = "zstd";
1836 break;
Chao Yu6d92b202020-04-08 19:56:32 +08001837 case COMPRESS_LZORLE:
1838 algtype = "lzo-rle";
1839 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001840 }
1841 seq_printf(seq, ",compress_algorithm=%s", algtype);
1842
Chao Yu3fde13f2021-01-22 17:46:43 +08001843 if (F2FS_OPTION(sbi).compress_level)
1844 seq_printf(seq, ":%d", F2FS_OPTION(sbi).compress_level);
1845
Chao Yu4c8ff702019-11-01 18:07:14 +08001846 seq_printf(seq, ",compress_log_size=%u",
1847 F2FS_OPTION(sbi).compress_log_size);
1848
1849 for (i = 0; i < F2FS_OPTION(sbi).compress_ext_cnt; i++) {
1850 seq_printf(seq, ",compress_extension=%s",
1851 F2FS_OPTION(sbi).extensions[i]);
1852 }
Chao Yub28f0472020-11-26 18:32:09 +08001853
Fengnan Chang151b1982021-06-08 19:15:08 +08001854 for (i = 0; i < F2FS_OPTION(sbi).nocompress_ext_cnt; i++) {
1855 seq_printf(seq, ",nocompress_extension=%s",
1856 F2FS_OPTION(sbi).noextensions[i]);
1857 }
1858
Chao Yub28f0472020-11-26 18:32:09 +08001859 if (F2FS_OPTION(sbi).compress_chksum)
1860 seq_puts(seq, ",compress_chksum");
Daeho Jeong602a16d2020-12-01 13:08:02 +09001861
1862 if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_FS)
1863 seq_printf(seq, ",compress_mode=%s", "fs");
1864 else if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_USER)
1865 seq_printf(seq, ",compress_mode=%s", "user");
Chao Yu6ce19af2021-05-20 19:51:50 +08001866
1867 if (test_opt(sbi, COMPRESS_CACHE))
1868 seq_puts(seq, ",compress_cache");
Chao Yu4c8ff702019-11-01 18:07:14 +08001869}
Chao Yucd6ee732021-02-20 17:38:41 +08001870#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001871
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001872static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
1873{
1874 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
1875
Chao Yubbbc34f2020-02-14 17:44:13 +08001876 if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC)
1877 seq_printf(seq, ",background_gc=%s", "sync");
1878 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_ON)
1879 seq_printf(seq, ",background_gc=%s", "on");
1880 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF)
Namjae Jeon696c0182013-06-16 09:48:48 +09001881 seq_printf(seq, ",background_gc=%s", "off");
Chao Yubbbc34f2020-02-14 17:44:13 +08001882
Chao Yu5911d2d2021-03-27 17:57:06 +08001883 if (test_opt(sbi, GC_MERGE))
1884 seq_puts(seq, ",gc_merge");
1885
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001886 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
1887 seq_puts(seq, ",disable_roll_forward");
Chao Yua9117ec2020-02-14 17:45:11 +08001888 if (test_opt(sbi, NORECOVERY))
1889 seq_puts(seq, ",norecovery");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001890 if (test_opt(sbi, DISCARD))
1891 seq_puts(seq, ",discard");
Sahitya Tummala81621f92019-05-24 14:38:39 +05301892 else
1893 seq_puts(seq, ",nodiscard");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001894 if (test_opt(sbi, NOHEAP))
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04001895 seq_puts(seq, ",no_heap");
1896 else
1897 seq_puts(seq, ",heap");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001898#ifdef CONFIG_F2FS_FS_XATTR
1899 if (test_opt(sbi, XATTR_USER))
1900 seq_puts(seq, ",user_xattr");
1901 else
1902 seq_puts(seq, ",nouser_xattr");
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001903 if (test_opt(sbi, INLINE_XATTR))
1904 seq_puts(seq, ",inline_xattr");
Chao Yu23cf7212017-02-15 10:34:45 +08001905 else
1906 seq_puts(seq, ",noinline_xattr");
Chao Yu6afc6622017-09-06 21:59:50 +08001907 if (test_opt(sbi, INLINE_XATTR_SIZE))
1908 seq_printf(seq, ",inline_xattr_size=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001909 F2FS_OPTION(sbi).inline_xattr_size);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001910#endif
1911#ifdef CONFIG_F2FS_FS_POSIX_ACL
1912 if (test_opt(sbi, POSIX_ACL))
1913 seq_puts(seq, ",acl");
1914 else
1915 seq_puts(seq, ",noacl");
1916#endif
1917 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
Alejandro Martinez Ruizaa435072013-01-25 19:08:59 +01001918 seq_puts(seq, ",disable_ext_identify");
Huajun Li8274de72013-11-10 23:13:17 +08001919 if (test_opt(sbi, INLINE_DATA))
1920 seq_puts(seq, ",inline_data");
Wanpeng Li75342792015-03-24 10:20:27 +08001921 else
1922 seq_puts(seq, ",noinline_data");
Chao Yu5efd3c62014-09-24 18:16:13 +08001923 if (test_opt(sbi, INLINE_DENTRY))
1924 seq_puts(seq, ",inline_dentry");
Chao Yu97c17942016-05-09 19:56:34 +08001925 else
1926 seq_puts(seq, ",noinline_dentry");
Gu Zhengb270ad62014-04-11 17:49:55 +08001927 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09001928 seq_puts(seq, ",flush_merge");
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -07001929 if (test_opt(sbi, NOBARRIER))
1930 seq_puts(seq, ",nobarrier");
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001931 if (test_opt(sbi, FASTBOOT))
1932 seq_puts(seq, ",fastboot");
Chao Yu89672152015-02-05 17:55:51 +08001933 if (test_opt(sbi, EXTENT_CACHE))
1934 seq_puts(seq, ",extent_cache");
Jaegeuk Kim7daaea22015-06-25 17:43:04 -07001935 else
1936 seq_puts(seq, ",noextent_cache");
Chao Yu343f40f2015-12-16 13:12:16 +08001937 if (test_opt(sbi, DATA_FLUSH))
1938 seq_puts(seq, ",data_flush");
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001939
1940 seq_puts(seq, ",mode=");
Chao Yub0332a02020-02-14 17:44:12 +08001941 if (F2FS_OPTION(sbi).fs_mode == FS_MODE_ADAPTIVE)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001942 seq_puts(seq, "adaptive");
Chao Yub0332a02020-02-14 17:44:12 +08001943 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001944 seq_puts(seq, "lfs");
Daeho Jeong6691d942021-09-29 11:12:03 -07001945 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_FRAGMENT_SEG)
1946 seq_puts(seq, "fragment:segment");
1947 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_FRAGMENT_BLK)
1948 seq_puts(seq, "fragment:block");
Chao Yu63189b72018-03-08 14:22:56 +08001949 seq_printf(seq, ",active_logs=%u", F2FS_OPTION(sbi).active_logs);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001950 if (test_opt(sbi, RESERVE_ROOT))
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -08001951 seq_printf(seq, ",reserve_root=%u,resuid=%u,resgid=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001952 F2FS_OPTION(sbi).root_reserved_blocks,
1953 from_kuid_munged(&init_user_ns,
1954 F2FS_OPTION(sbi).s_resuid),
1955 from_kgid_munged(&init_user_ns,
1956 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001957 if (F2FS_IO_SIZE_BITS(sbi))
Chengguang Xuc6b18672018-09-22 22:43:09 +08001958 seq_printf(seq, ",io_bits=%u",
1959 F2FS_OPTION(sbi).write_io_size_bits);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001960#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yud4945002018-08-08 17:36:41 +08001961 if (test_opt(sbi, FAULT_INJECTION)) {
Chao Yu44529f82017-06-12 09:44:24 +08001962 seq_printf(seq, ",fault_injection=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001963 F2FS_OPTION(sbi).fault_info.inject_rate);
Chao Yud4945002018-08-08 17:36:41 +08001964 seq_printf(seq, ",fault_type=%u",
1965 F2FS_OPTION(sbi).fault_info.inject_type);
1966 }
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001967#endif
Chao Yu0abd6752017-07-09 00:13:07 +08001968#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08001969 if (test_opt(sbi, QUOTA))
1970 seq_puts(seq, ",quota");
Chao Yu0abd6752017-07-09 00:13:07 +08001971 if (test_opt(sbi, USRQUOTA))
1972 seq_puts(seq, ",usrquota");
1973 if (test_opt(sbi, GRPQUOTA))
1974 seq_puts(seq, ",grpquota");
Chao Yu5c571322017-07-26 00:01:41 +08001975 if (test_opt(sbi, PRJQUOTA))
1976 seq_puts(seq, ",prjquota");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001977#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08001978 f2fs_show_quota_options(seq, sbi->sb);
Chao Yu63189b72018-03-08 14:22:56 +08001979 if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_USER)
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001980 seq_printf(seq, ",whint_mode=%s", "user-based");
Chao Yu63189b72018-03-08 14:22:56 +08001981 else if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_FS)
Hyunchul Leef2e703f2018-01-31 11:36:58 +09001982 seq_printf(seq, ",whint_mode=%s", "fs-based");
Eric Biggersed318a62020-05-12 16:32:50 -07001983
1984 fscrypt_show_test_dummy_encryption(seq, ',', sbi->sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001985
Satya Tangirala27aacd22020-07-02 01:56:06 +00001986 if (sbi->sb->s_flags & SB_INLINECRYPT)
1987 seq_puts(seq, ",inlinecrypt");
1988
Chao Yu63189b72018-03-08 14:22:56 +08001989 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_DEFAULT)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001990 seq_printf(seq, ",alloc_mode=%s", "default");
Chao Yu63189b72018-03-08 14:22:56 +08001991 else if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001992 seq_printf(seq, ",alloc_mode=%s", "reuse");
Junling Zheng93cf93f2018-03-07 12:07:49 +08001993
Daniel Rosenberg43549942018-08-20 19:21:43 -07001994 if (test_opt(sbi, DISABLE_CHECKPOINT))
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001995 seq_printf(seq, ",checkpoint=disable:%u",
1996 F2FS_OPTION(sbi).unusable_cap);
Daeho Jeong261eeb92021-01-19 09:00:42 +09001997 if (test_opt(sbi, MERGE_CHECKPOINT))
1998 seq_puts(seq, ",checkpoint_merge");
1999 else
2000 seq_puts(seq, ",nocheckpoint_merge");
Chao Yu63189b72018-03-08 14:22:56 +08002001 if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_POSIX)
Junling Zheng93cf93f2018-03-07 12:07:49 +08002002 seq_printf(seq, ",fsync_mode=%s", "posix");
Chao Yu63189b72018-03-08 14:22:56 +08002003 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT)
Junling Zheng93cf93f2018-03-07 12:07:49 +08002004 seq_printf(seq, ",fsync_mode=%s", "strict");
Sahitya Tummaladc132802018-07-02 11:37:40 +05302005 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_NOBARRIER)
2006 seq_printf(seq, ",fsync_mode=%s", "nobarrier");
Chao Yu4c8ff702019-11-01 18:07:14 +08002007
Chao Yu1f0b0672020-07-29 21:21:36 +08002008#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08002009 f2fs_show_compress_options(seq, sbi->sb);
Chao Yu1f0b0672020-07-29 21:21:36 +08002010#endif
Chao Yu093749e2020-08-04 21:14:49 +08002011
2012 if (test_opt(sbi, ATGC))
2013 seq_puts(seq, ",atgc");
Chao Yu4f993262021-08-03 08:15:43 +08002014
2015 if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_BLOCK)
2016 seq_printf(seq, ",discard_unit=%s", "block");
2017 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SEGMENT)
2018 seq_printf(seq, ",discard_unit=%s", "segment");
2019 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SECTION)
2020 seq_printf(seq, ",discard_unit=%s", "section");
2021
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002022 return 0;
2023}
2024
Yunlei He498c5e92015-05-07 18:11:37 +08002025static void default_options(struct f2fs_sb_info *sbi)
2026{
2027 /* init some FS parameters */
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07002028 if (f2fs_sb_has_readonly(sbi))
2029 F2FS_OPTION(sbi).active_logs = NR_CURSEG_RO_TYPE;
2030 else
2031 F2FS_OPTION(sbi).active_logs = NR_CURSEG_PERSIST_TYPE;
2032
Chao Yu63189b72018-03-08 14:22:56 +08002033 F2FS_OPTION(sbi).inline_xattr_size = DEFAULT_INLINE_XATTR_ADDRS;
2034 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
2035 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
2036 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Chao Yu0aa7e0f2018-06-06 23:55:02 +08002037 F2FS_OPTION(sbi).s_resuid = make_kuid(&init_user_ns, F2FS_DEF_RESUID);
2038 F2FS_OPTION(sbi).s_resgid = make_kgid(&init_user_ns, F2FS_DEF_RESGID);
Chao Yu91faa532020-03-10 20:50:05 +08002039 F2FS_OPTION(sbi).compress_algorithm = COMPRESS_LZ4;
Chao Yu4c8ff702019-11-01 18:07:14 +08002040 F2FS_OPTION(sbi).compress_log_size = MIN_COMPRESS_LOG_SIZE;
2041 F2FS_OPTION(sbi).compress_ext_cnt = 0;
Daeho Jeong602a16d2020-12-01 13:08:02 +09002042 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
Chao Yubbbc34f2020-02-14 17:44:13 +08002043 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Yunlei He498c5e92015-05-07 18:11:37 +08002044
Satya Tangirala27aacd22020-07-02 01:56:06 +00002045 sbi->sb->s_flags &= ~SB_INLINECRYPT;
2046
Chao Yu39133a52017-02-08 17:39:44 +08002047 set_opt(sbi, INLINE_XATTR);
Yunlei He498c5e92015-05-07 18:11:37 +08002048 set_opt(sbi, INLINE_DATA);
Chao Yu97c17942016-05-09 19:56:34 +08002049 set_opt(sbi, INLINE_DENTRY);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002050 set_opt(sbi, EXTENT_CACHE);
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002051 set_opt(sbi, NOHEAP);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002052 clear_opt(sbi, DISABLE_CHECKPOINT);
Jaegeuk Kimb5d15192021-04-01 17:25:20 -07002053 set_opt(sbi, MERGE_CHECKPOINT);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002054 F2FS_OPTION(sbi).unusable_cap = 0;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002055 sbi->sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -07002056 set_opt(sbi, FLUSH_MERGE);
Chao Yuf7db8dd2021-08-30 08:35:33 +08002057 if (f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi))
2058 set_opt(sbi, DISCARD);
Chao Yu4f993262021-08-03 08:15:43 +08002059 if (f2fs_sb_has_blkzoned(sbi)) {
Chao Yub0332a02020-02-14 17:44:12 +08002060 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Chao Yu4f993262021-08-03 08:15:43 +08002061 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_SECTION;
2062 } else {
Chao Yub0332a02020-02-14 17:44:12 +08002063 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Chao Yu4f993262021-08-03 08:15:43 +08002064 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_BLOCK;
2065 }
Yunlei He498c5e92015-05-07 18:11:37 +08002066
2067#ifdef CONFIG_F2FS_FS_XATTR
2068 set_opt(sbi, XATTR_USER);
2069#endif
2070#ifdef CONFIG_F2FS_FS_POSIX_ACL
2071 set_opt(sbi, POSIX_ACL);
2072#endif
Chao Yu36dbd322016-09-26 19:45:05 +08002073
Chao Yud4945002018-08-08 17:36:41 +08002074 f2fs_build_fault_attr(sbi, 0, 0);
Yunlei He498c5e92015-05-07 18:11:37 +08002075}
2076
Jaegeuk Kimea676732017-10-06 09:14:28 -07002077#ifdef CONFIG_QUOTA
2078static int f2fs_enable_quotas(struct super_block *sb);
2079#endif
Daniel Rosenberg43549942018-08-20 19:21:43 -07002080
2081static int f2fs_disable_checkpoint(struct f2fs_sb_info *sbi)
2082{
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002083 unsigned int s_flags = sbi->sb->s_flags;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002084 struct cp_control cpc;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002085 int err = 0;
2086 int ret;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002087 block_t unusable;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002088
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002089 if (s_flags & SB_RDONLY) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002090 f2fs_err(sbi, "checkpoint=disable on readonly fs");
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002091 return -EINVAL;
2092 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002093 sbi->sb->s_flags |= SB_ACTIVE;
2094
Daniel Rosenberg43549942018-08-20 19:21:43 -07002095 f2fs_update_time(sbi, DISABLE_TIME);
2096
2097 while (!f2fs_time_over(sbi, DISABLE_TIME)) {
Chao Yufb24fea2020-01-14 19:36:50 +08002098 down_write(&sbi->gc_lock);
Chao Yu7dede8862021-02-20 17:35:40 +08002099 err = f2fs_gc(sbi, true, false, false, NULL_SEGNO);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002100 if (err == -ENODATA) {
2101 err = 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002102 break;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002103 }
Jaegeuk Kim8f31b462018-12-17 17:08:26 -08002104 if (err && err != -EAGAIN)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002105 break;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002106 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002107
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002108 ret = sync_filesystem(sbi->sb);
2109 if (ret || err) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08002110 err = ret ? ret : err;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002111 goto restore_flag;
2112 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002113
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002114 unusable = f2fs_get_unusable_blocks(sbi);
2115 if (f2fs_disable_cp_again(sbi, unusable)) {
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002116 err = -EAGAIN;
2117 goto restore_flag;
2118 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002119
Chao Yufb24fea2020-01-14 19:36:50 +08002120 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002121 cpc.reason = CP_PAUSE;
2122 set_sbi_flag(sbi, SBI_CP_DISABLED);
Chao Yu896285a2019-04-26 17:57:54 +08002123 err = f2fs_write_checkpoint(sbi, &cpc);
2124 if (err)
2125 goto out_unlock;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002126
Chao Yuc9c8ed52019-05-05 11:40:46 +08002127 spin_lock(&sbi->stat_lock);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002128 sbi->unusable_block_count = unusable;
Chao Yuc9c8ed52019-05-05 11:40:46 +08002129 spin_unlock(&sbi->stat_lock);
2130
Chao Yu896285a2019-04-26 17:57:54 +08002131out_unlock:
Chao Yufb24fea2020-01-14 19:36:50 +08002132 up_write(&sbi->gc_lock);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002133restore_flag:
Chao Yu7a88ddb2020-02-27 19:30:05 +08002134 sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002135 return err;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002136}
2137
2138static void f2fs_enable_checkpoint(struct f2fs_sb_info *sbi)
2139{
Jaegeuk Kimdddd3d62021-08-19 14:00:57 -07002140 int retry = DEFAULT_RETRY_IO_COUNT;
2141
Jaegeuk Kimb0ff4fe2021-01-26 17:00:42 -08002142 /* we should flush all the data to keep data consistency */
Jaegeuk Kimdddd3d62021-08-19 14:00:57 -07002143 do {
2144 sync_inodes_sb(sbi->sb);
2145 cond_resched();
2146 congestion_wait(BLK_RW_ASYNC, DEFAULT_IO_TIMEOUT);
2147 } while (get_pages(sbi, F2FS_DIRTY_DATA) && retry--);
2148
2149 if (unlikely(retry < 0))
2150 f2fs_warn(sbi, "checkpoint=enable has some unwritten data.");
Jaegeuk Kimb0ff4fe2021-01-26 17:00:42 -08002151
Chao Yufb24fea2020-01-14 19:36:50 +08002152 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002153 f2fs_dirty_to_prefree(sbi);
2154
2155 clear_sbi_flag(sbi, SBI_CP_DISABLED);
2156 set_sbi_flag(sbi, SBI_IS_DIRTY);
Chao Yufb24fea2020-01-14 19:36:50 +08002157 up_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002158
2159 f2fs_sync_fs(sbi->sb, 1);
2160}
2161
Namjae Jeon696c0182013-06-16 09:48:48 +09002162static int f2fs_remount(struct super_block *sb, int *flags, char *data)
2163{
2164 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2165 struct f2fs_mount_info org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002166 unsigned long old_sb_flags;
Chao Yu63189b72018-03-08 14:22:56 +08002167 int err;
Chao Yu3fd97352021-03-17 17:56:04 +08002168 bool need_restart_gc = false, need_stop_gc = false;
2169 bool need_restart_ckpt = false, need_stop_ckpt = false;
2170 bool need_restart_flush = false, need_stop_flush = false;
Fengnan Chang4d674902021-08-19 16:02:37 +08002171 bool need_restart_discard = false, need_stop_discard = false;
Chao Yu9cd81ce2015-09-18 16:55:26 +08002172 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
Chao Yu277afbd2021-07-29 09:22:17 +08002173 bool enable_checkpoint = !test_opt(sbi, DISABLE_CHECKPOINT);
Chao Yu1f78adf2019-07-12 16:57:00 +08002174 bool no_io_align = !F2FS_IO_ALIGNED(sbi);
Chao Yu093749e2020-08-04 21:14:49 +08002175 bool no_atgc = !test_opt(sbi, ATGC);
Fengnan Chang4d674902021-08-19 16:02:37 +08002176 bool no_discard = !test_opt(sbi, DISCARD);
Chao Yu6ce19af2021-05-20 19:51:50 +08002177 bool no_compress_cache = !test_opt(sbi, COMPRESS_CACHE);
Chao Yu4f993262021-08-03 08:15:43 +08002178 bool block_unit_discard = f2fs_block_unit_discard(sbi);
Fengnan Chang4d674902021-08-19 16:02:37 +08002179 struct discard_cmd_control *dcc;
Chao Yu4b2414d2017-08-08 10:54:31 +08002180#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08002181 int i, j;
2182#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002183
2184 /*
2185 * Save the old mount options in case we
2186 * need to restore them.
2187 */
2188 org_mount_opt = sbi->mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002189 old_sb_flags = sb->s_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002190
Chao Yu4b2414d2017-08-08 10:54:31 +08002191#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002192 org_mount_opt.s_jquota_fmt = F2FS_OPTION(sbi).s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002193 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002194 if (F2FS_OPTION(sbi).s_qf_names[i]) {
2195 org_mount_opt.s_qf_names[i] =
2196 kstrdup(F2FS_OPTION(sbi).s_qf_names[i],
2197 GFP_KERNEL);
2198 if (!org_mount_opt.s_qf_names[i]) {
Chao Yu4b2414d2017-08-08 10:54:31 +08002199 for (j = 0; j < i; j++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002200 kfree(org_mount_opt.s_qf_names[j]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002201 return -ENOMEM;
2202 }
2203 } else {
Chao Yu63189b72018-03-08 14:22:56 +08002204 org_mount_opt.s_qf_names[i] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +08002205 }
2206 }
2207#endif
2208
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002209 /* recover superblocks we couldn't write due to previous RO mount */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002210 if (!(*flags & SB_RDONLY) && is_sbi_flag_set(sbi, SBI_NEED_SB_WRITE)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002211 err = f2fs_commit_super(sbi, false);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002212 f2fs_info(sbi, "Try to recover all the superblocks, ret: %d",
2213 err);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002214 if (!err)
2215 clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
2216 }
2217
Yunlei He498c5e92015-05-07 18:11:37 +08002218 default_options(sbi);
Chao Yu26666c82014-09-15 18:04:44 +08002219
Namjae Jeon696c0182013-06-16 09:48:48 +09002220 /* parse mount options */
Eric Biggersed318a62020-05-12 16:32:50 -07002221 err = parse_options(sb, data, true);
Namjae Jeon696c0182013-06-16 09:48:48 +09002222 if (err)
2223 goto restore_opts;
2224
2225 /*
2226 * Previous and new state of filesystem is RO,
Gu Zheng876dc592014-04-11 17:50:00 +08002227 * so skip checking GC and FLUSH_MERGE conditions.
Namjae Jeon696c0182013-06-16 09:48:48 +09002228 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002229 if (f2fs_readonly(sb) && (*flags & SB_RDONLY))
Namjae Jeon696c0182013-06-16 09:48:48 +09002230 goto skip;
2231
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07002232 if (f2fs_sb_has_readonly(sbi) && !(*flags & SB_RDONLY)) {
2233 err = -EROFS;
2234 goto restore_opts;
2235 }
2236
Jaegeuk Kimea676732017-10-06 09:14:28 -07002237#ifdef CONFIG_QUOTA
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002238 if (!f2fs_readonly(sb) && (*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002239 err = dquot_suspend(sb, -1);
2240 if (err < 0)
2241 goto restore_opts;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002242 } else if (f2fs_readonly(sb) && !(*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002243 /* dquot_resume needs RW */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002244 sb->s_flags &= ~SB_RDONLY;
Jaegeuk Kimea676732017-10-06 09:14:28 -07002245 if (sb_any_quota_suspended(sb)) {
2246 dquot_resume(sb, -1);
Chao Yu7beb01f2018-10-24 18:34:26 +08002247 } else if (f2fs_sb_has_quota_ino(sbi)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002248 err = f2fs_enable_quotas(sb);
2249 if (err)
2250 goto restore_opts;
2251 }
Chao Yu0abd6752017-07-09 00:13:07 +08002252 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002253#endif
Chao Yu093749e2020-08-04 21:14:49 +08002254 /* disallow enable atgc dynamically */
2255 if (no_atgc == !!test_opt(sbi, ATGC)) {
2256 err = -EINVAL;
2257 f2fs_warn(sbi, "switch atgc option is not allowed");
2258 goto restore_opts;
2259 }
2260
Chao Yu9cd81ce2015-09-18 16:55:26 +08002261 /* disallow enable/disable extent_cache dynamically */
2262 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
2263 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002264 f2fs_warn(sbi, "switch extent_cache option is not allowed");
Chao Yu9cd81ce2015-09-18 16:55:26 +08002265 goto restore_opts;
2266 }
2267
Chao Yu1f78adf2019-07-12 16:57:00 +08002268 if (no_io_align == !!F2FS_IO_ALIGNED(sbi)) {
2269 err = -EINVAL;
2270 f2fs_warn(sbi, "switch io_bits option is not allowed");
2271 goto restore_opts;
2272 }
2273
Chao Yu6ce19af2021-05-20 19:51:50 +08002274 if (no_compress_cache == !!test_opt(sbi, COMPRESS_CACHE)) {
2275 err = -EINVAL;
2276 f2fs_warn(sbi, "switch compress_cache option is not allowed");
2277 goto restore_opts;
2278 }
2279
Chao Yu4f993262021-08-03 08:15:43 +08002280 if (block_unit_discard != f2fs_block_unit_discard(sbi)) {
2281 err = -EINVAL;
2282 f2fs_warn(sbi, "switch discard_unit option is not allowed");
2283 goto restore_opts;
2284 }
2285
Daniel Rosenberg43549942018-08-20 19:21:43 -07002286 if ((*flags & SB_RDONLY) && test_opt(sbi, DISABLE_CHECKPOINT)) {
2287 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002288 f2fs_warn(sbi, "disabling checkpoint not compatible with read-only");
Daniel Rosenberg43549942018-08-20 19:21:43 -07002289 goto restore_opts;
2290 }
2291
Namjae Jeon696c0182013-06-16 09:48:48 +09002292 /*
2293 * We stop the GC thread if FS is mounted as RO
2294 * or if background_gc = off is passed in mount
2295 * option. Also sync the filesystem.
2296 */
Chao Yubbbc34f2020-02-14 17:44:13 +08002297 if ((*flags & SB_RDONLY) ||
Chao Yu5911d2d2021-03-27 17:57:06 +08002298 (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF &&
2299 !test_opt(sbi, GC_MERGE))) {
Namjae Jeon696c0182013-06-16 09:48:48 +09002300 if (sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002301 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002302 need_restart_gc = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002303 }
Chao Yuaba291b2014-11-18 11:17:20 +08002304 } else if (!sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002305 err = f2fs_start_gc_thread(sbi);
Namjae Jeon696c0182013-06-16 09:48:48 +09002306 if (err)
2307 goto restore_opts;
Gu Zheng876dc592014-04-11 17:50:00 +08002308 need_stop_gc = true;
2309 }
2310
Chao Yu63189b72018-03-08 14:22:56 +08002311 if (*flags & SB_RDONLY ||
2312 F2FS_OPTION(sbi).whint_mode != org_mount_opt.whint_mode) {
Jaegeuk Kimfaa0e552016-03-24 10:29:39 -07002313 sync_inodes_sb(sb);
2314
2315 set_sbi_flag(sbi, SBI_IS_DIRTY);
2316 set_sbi_flag(sbi, SBI_IS_CLOSE);
2317 f2fs_sync_fs(sb, 1);
2318 clear_sbi_flag(sbi, SBI_IS_CLOSE);
2319 }
2320
Chao Yu3f7070b2021-03-17 17:56:03 +08002321 if ((*flags & SB_RDONLY) || test_opt(sbi, DISABLE_CHECKPOINT) ||
2322 !test_opt(sbi, MERGE_CHECKPOINT)) {
2323 f2fs_stop_ckpt_thread(sbi);
Chao Yu3fd97352021-03-17 17:56:04 +08002324 need_restart_ckpt = true;
Chao Yu3f7070b2021-03-17 17:56:03 +08002325 } else {
Daeho Jeong261eeb92021-01-19 09:00:42 +09002326 err = f2fs_start_ckpt_thread(sbi);
2327 if (err) {
2328 f2fs_err(sbi,
2329 "Failed to start F2FS issue_checkpoint_thread (%d)",
2330 err);
2331 goto restore_gc;
2332 }
Chao Yu3fd97352021-03-17 17:56:04 +08002333 need_stop_ckpt = true;
Daeho Jeong261eeb92021-01-19 09:00:42 +09002334 }
2335
Gu Zheng876dc592014-04-11 17:50:00 +08002336 /*
2337 * We stop issue flush thread if FS is mounted as RO
2338 * or if flush_merge is not passed in mount option.
2339 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002340 if ((*flags & SB_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002341 clear_opt(sbi, FLUSH_MERGE);
Chao Yu4d57b862018-05-30 00:20:41 +08002342 f2fs_destroy_flush_cmd_control(sbi, false);
Chao Yu3fd97352021-03-17 17:56:04 +08002343 need_restart_flush = true;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002344 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08002345 err = f2fs_create_flush_cmd_control(sbi);
Gu Zheng2163d192014-04-27 14:21:33 +08002346 if (err)
Chao Yu3fd97352021-03-17 17:56:04 +08002347 goto restore_ckpt;
2348 need_stop_flush = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002349 }
Chao Yu3fd97352021-03-17 17:56:04 +08002350
Fengnan Chang4d674902021-08-19 16:02:37 +08002351 if (no_discard == !!test_opt(sbi, DISCARD)) {
2352 if (test_opt(sbi, DISCARD)) {
2353 err = f2fs_start_discard_thread(sbi);
2354 if (err)
2355 goto restore_flush;
2356 need_stop_discard = true;
2357 } else {
2358 dcc = SM_I(sbi)->dcc_info;
2359 f2fs_stop_discard_thread(sbi);
2360 if (atomic_read(&dcc->discard_cmd_cnt))
2361 f2fs_issue_discard_timeout(sbi);
2362 need_restart_discard = true;
2363 }
2364 }
2365
Chao Yu277afbd2021-07-29 09:22:17 +08002366 if (enable_checkpoint == !!test_opt(sbi, DISABLE_CHECKPOINT)) {
Chao Yu3fd97352021-03-17 17:56:04 +08002367 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
2368 err = f2fs_disable_checkpoint(sbi);
2369 if (err)
Fengnan Chang4d674902021-08-19 16:02:37 +08002370 goto restore_discard;
Chao Yu3fd97352021-03-17 17:56:04 +08002371 } else {
2372 f2fs_enable_checkpoint(sbi);
2373 }
2374 }
2375
Namjae Jeon696c0182013-06-16 09:48:48 +09002376skip:
Chao Yu4b2414d2017-08-08 10:54:31 +08002377#ifdef CONFIG_QUOTA
2378 /* Release old quota file names */
2379 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002380 kfree(org_mount_opt.s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002381#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002382 /* Update the POSIXACL Flag */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002383 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
2384 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002385
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08002386 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07002387 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim095680f2018-09-28 00:24:39 -07002388 *flags = (*flags & ~SB_LAZYTIME) | (sb->s_flags & SB_LAZYTIME);
Namjae Jeon696c0182013-06-16 09:48:48 +09002389 return 0;
Fengnan Chang4d674902021-08-19 16:02:37 +08002390restore_discard:
2391 if (need_restart_discard) {
2392 if (f2fs_start_discard_thread(sbi))
2393 f2fs_warn(sbi, "discard has been stopped");
2394 } else if (need_stop_discard) {
2395 f2fs_stop_discard_thread(sbi);
2396 }
Chao Yu3fd97352021-03-17 17:56:04 +08002397restore_flush:
2398 if (need_restart_flush) {
2399 if (f2fs_create_flush_cmd_control(sbi))
2400 f2fs_warn(sbi, "background flush thread has stopped");
2401 } else if (need_stop_flush) {
2402 clear_opt(sbi, FLUSH_MERGE);
2403 f2fs_destroy_flush_cmd_control(sbi, false);
2404 }
2405restore_ckpt:
2406 if (need_restart_ckpt) {
2407 if (f2fs_start_ckpt_thread(sbi))
2408 f2fs_warn(sbi, "background ckpt thread has stopped");
2409 } else if (need_stop_ckpt) {
2410 f2fs_stop_ckpt_thread(sbi);
2411 }
Gu Zheng876dc592014-04-11 17:50:00 +08002412restore_gc:
2413 if (need_restart_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002414 if (f2fs_start_gc_thread(sbi))
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002415 f2fs_warn(sbi, "background gc thread has stopped");
Gu Zheng876dc592014-04-11 17:50:00 +08002416 } else if (need_stop_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002417 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002418 }
Namjae Jeon696c0182013-06-16 09:48:48 +09002419restore_opts:
Chao Yu4b2414d2017-08-08 10:54:31 +08002420#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002421 F2FS_OPTION(sbi).s_jquota_fmt = org_mount_opt.s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002422 for (i = 0; i < MAXQUOTAS; i++) {
Wang Xiaojunba87a452020-06-17 20:30:12 +08002423 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu63189b72018-03-08 14:22:56 +08002424 F2FS_OPTION(sbi).s_qf_names[i] = org_mount_opt.s_qf_names[i];
Chao Yu4b2414d2017-08-08 10:54:31 +08002425 }
2426#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002427 sbi->mount_opt = org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002428 sb->s_flags = old_sb_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002429 return err;
2430}
2431
Chao Yu0abd6752017-07-09 00:13:07 +08002432#ifdef CONFIG_QUOTA
2433/* Read data from quotafile */
2434static ssize_t f2fs_quota_read(struct super_block *sb, int type, char *data,
2435 size_t len, loff_t off)
2436{
2437 struct inode *inode = sb_dqopt(sb)->files[type];
2438 struct address_space *mapping = inode->i_mapping;
2439 block_t blkidx = F2FS_BYTES_TO_BLK(off);
2440 int offset = off & (sb->s_blocksize - 1);
2441 int tocopy;
2442 size_t toread;
2443 loff_t i_size = i_size_read(inode);
2444 struct page *page;
2445 char *kaddr;
2446
2447 if (off > i_size)
2448 return 0;
2449
2450 if (off + len > i_size)
2451 len = i_size - off;
2452 toread = len;
2453 while (toread > 0) {
2454 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread);
2455repeat:
Ritesh Harjani02117b82018-03-16 18:53:53 +05302456 page = read_cache_page_gfp(mapping, blkidx, GFP_NOFS);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002457 if (IS_ERR(page)) {
2458 if (PTR_ERR(page) == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002459 congestion_wait(BLK_RW_ASYNC,
2460 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002461 goto repeat;
2462 }
Chao Yuaf033b22018-09-20 20:05:00 +08002463 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002464 return PTR_ERR(page);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002465 }
Chao Yu0abd6752017-07-09 00:13:07 +08002466
2467 lock_page(page);
2468
2469 if (unlikely(page->mapping != mapping)) {
2470 f2fs_put_page(page, 1);
2471 goto repeat;
2472 }
2473 if (unlikely(!PageUptodate(page))) {
2474 f2fs_put_page(page, 1);
Chao Yuaf033b22018-09-20 20:05:00 +08002475 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002476 return -EIO;
2477 }
2478
2479 kaddr = kmap_atomic(page);
2480 memcpy(data, kaddr + offset, tocopy);
2481 kunmap_atomic(kaddr);
2482 f2fs_put_page(page, 1);
2483
2484 offset = 0;
2485 toread -= tocopy;
2486 data += tocopy;
2487 blkidx++;
2488 }
2489 return len;
2490}
2491
2492/* Write to quotafile */
2493static ssize_t f2fs_quota_write(struct super_block *sb, int type,
2494 const char *data, size_t len, loff_t off)
2495{
2496 struct inode *inode = sb_dqopt(sb)->files[type];
2497 struct address_space *mapping = inode->i_mapping;
2498 const struct address_space_operations *a_ops = mapping->a_ops;
2499 int offset = off & (sb->s_blocksize - 1);
2500 size_t towrite = len;
2501 struct page *page;
Chao Yu62f63ee2020-03-19 19:58:00 +08002502 void *fsdata = NULL;
Chao Yu0abd6752017-07-09 00:13:07 +08002503 char *kaddr;
2504 int err = 0;
2505 int tocopy;
2506
2507 while (towrite > 0) {
2508 tocopy = min_t(unsigned long, sb->s_blocksize - offset,
2509 towrite);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002510retry:
Chao Yu0abd6752017-07-09 00:13:07 +08002511 err = a_ops->write_begin(NULL, mapping, off, tocopy, 0,
Chao Yu62f63ee2020-03-19 19:58:00 +08002512 &page, &fsdata);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002513 if (unlikely(err)) {
2514 if (err == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002515 congestion_wait(BLK_RW_ASYNC,
2516 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002517 goto retry;
2518 }
Chao Yuaf033b22018-09-20 20:05:00 +08002519 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002520 break;
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002521 }
Chao Yu0abd6752017-07-09 00:13:07 +08002522
2523 kaddr = kmap_atomic(page);
2524 memcpy(kaddr + offset, data, tocopy);
2525 kunmap_atomic(kaddr);
2526 flush_dcache_page(page);
2527
2528 a_ops->write_end(NULL, mapping, off, tocopy, tocopy,
Chao Yu62f63ee2020-03-19 19:58:00 +08002529 page, fsdata);
Chao Yu0abd6752017-07-09 00:13:07 +08002530 offset = 0;
2531 towrite -= tocopy;
2532 off += tocopy;
2533 data += tocopy;
2534 cond_resched();
2535 }
2536
2537 if (len == towrite)
Jaegeuk Kim6e5b5d42017-10-19 12:07:11 -07002538 return err;
Chao Yu0abd6752017-07-09 00:13:07 +08002539 inode->i_mtime = inode->i_ctime = current_time(inode);
2540 f2fs_mark_inode_dirty_sync(inode, false);
2541 return len - towrite;
2542}
2543
Chao Yu10a26872021-10-28 21:03:05 +08002544int f2fs_dquot_initialize(struct inode *inode)
2545{
2546 if (time_to_inject(F2FS_I_SB(inode), FAULT_DQUOT_INIT)) {
2547 f2fs_show_injection_info(F2FS_I_SB(inode), FAULT_DQUOT_INIT);
2548 return -ESRCH;
2549 }
2550
2551 return dquot_initialize(inode);
2552}
2553
Chao Yu0abd6752017-07-09 00:13:07 +08002554static struct dquot **f2fs_get_dquots(struct inode *inode)
2555{
2556 return F2FS_I(inode)->i_dquot;
2557}
2558
2559static qsize_t *f2fs_get_reserved_space(struct inode *inode)
2560{
2561 return &F2FS_I(inode)->i_reserved_quota;
2562}
2563
Chao Yu4b2414d2017-08-08 10:54:31 +08002564static int f2fs_quota_on_mount(struct f2fs_sb_info *sbi, int type)
2565{
Chao Yuaf033b22018-09-20 20:05:00 +08002566 if (is_set_ckpt_flags(sbi, CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002567 f2fs_err(sbi, "quota sysfile may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002568 return 0;
2569 }
2570
Chao Yu63189b72018-03-08 14:22:56 +08002571 return dquot_quota_on_mount(sbi->sb, F2FS_OPTION(sbi).s_qf_names[type],
2572 F2FS_OPTION(sbi).s_jquota_fmt, type);
Chao Yu4b2414d2017-08-08 10:54:31 +08002573}
2574
Jaegeuk Kimea676732017-10-06 09:14:28 -07002575int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly)
Chao Yu4b2414d2017-08-08 10:54:31 +08002576{
Jaegeuk Kimea676732017-10-06 09:14:28 -07002577 int enabled = 0;
2578 int i, err;
2579
Chao Yu7beb01f2018-10-24 18:34:26 +08002580 if (f2fs_sb_has_quota_ino(sbi) && rdonly) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002581 err = f2fs_enable_quotas(sbi->sb);
2582 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002583 f2fs_err(sbi, "Cannot turn on quota_ino: %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002584 return 0;
2585 }
2586 return 1;
2587 }
Chao Yu4b2414d2017-08-08 10:54:31 +08002588
2589 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002590 if (F2FS_OPTION(sbi).s_qf_names[i]) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002591 err = f2fs_quota_on_mount(sbi, i);
2592 if (!err) {
2593 enabled = 1;
2594 continue;
2595 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002596 f2fs_err(sbi, "Cannot turn on quotas: %d on %d",
2597 err, i);
Chao Yu4b2414d2017-08-08 10:54:31 +08002598 }
2599 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002600 return enabled;
2601}
2602
2603static int f2fs_quota_enable(struct super_block *sb, int type, int format_id,
2604 unsigned int flags)
2605{
2606 struct inode *qf_inode;
2607 unsigned long qf_inum;
2608 int err;
2609
Chao Yu7beb01f2018-10-24 18:34:26 +08002610 BUG_ON(!f2fs_sb_has_quota_ino(F2FS_SB(sb)));
Jaegeuk Kimea676732017-10-06 09:14:28 -07002611
2612 qf_inum = f2fs_qf_ino(sb, type);
2613 if (!qf_inum)
2614 return -EPERM;
2615
2616 qf_inode = f2fs_iget(sb, qf_inum);
2617 if (IS_ERR(qf_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002618 f2fs_err(F2FS_SB(sb), "Bad quota inode %u:%lu", type, qf_inum);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002619 return PTR_ERR(qf_inode);
2620 }
2621
2622 /* Don't account quota for quota files to avoid recursion */
2623 qf_inode->i_flags |= S_NOQUOTA;
Jan Kara7212b952019-11-01 18:55:38 +01002624 err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002625 iput(qf_inode);
2626 return err;
2627}
2628
2629static int f2fs_enable_quotas(struct super_block *sb)
2630{
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002631 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002632 int type, err = 0;
2633 unsigned long qf_inum;
2634 bool quota_mopt[MAXQUOTAS] = {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002635 test_opt(sbi, USRQUOTA),
2636 test_opt(sbi, GRPQUOTA),
2637 test_opt(sbi, PRJQUOTA),
Jaegeuk Kimea676732017-10-06 09:14:28 -07002638 };
2639
Chao Yuaf033b22018-09-20 20:05:00 +08002640 if (is_set_ckpt_flags(F2FS_SB(sb), CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002641 f2fs_err(sbi, "quota file may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002642 return 0;
2643 }
2644
2645 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE;
2646
Jaegeuk Kimea676732017-10-06 09:14:28 -07002647 for (type = 0; type < MAXQUOTAS; type++) {
2648 qf_inum = f2fs_qf_ino(sb, type);
2649 if (qf_inum) {
2650 err = f2fs_quota_enable(sb, type, QFMT_VFS_V1,
2651 DQUOT_USAGE_ENABLED |
2652 (quota_mopt[type] ? DQUOT_LIMITS_ENABLED : 0));
2653 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002654 f2fs_err(sbi, "Failed to enable quota tracking (type=%d, err=%d). Please run fsck to fix.",
2655 type, err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002656 for (type--; type >= 0; type--)
2657 dquot_quota_off(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002658 set_sbi_flag(F2FS_SB(sb),
2659 SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002660 return err;
2661 }
2662 }
2663 }
2664 return 0;
Chao Yu4b2414d2017-08-08 10:54:31 +08002665}
2666
Chao Yu9de71ed2021-07-19 16:46:47 +08002667static int f2fs_quota_sync_file(struct f2fs_sb_info *sbi, int type)
2668{
2669 struct quota_info *dqopt = sb_dqopt(sbi->sb);
2670 struct address_space *mapping = dqopt->files[type]->i_mapping;
2671 int ret = 0;
2672
2673 ret = dquot_writeback_dquots(sbi->sb, type);
2674 if (ret)
2675 goto out;
2676
2677 ret = filemap_fdatawrite(mapping);
2678 if (ret)
2679 goto out;
2680
2681 /* if we are using journalled quota */
2682 if (is_journalled_quota(sbi))
2683 goto out;
2684
2685 ret = filemap_fdatawait(mapping);
2686
2687 truncate_inode_pages(&dqopt->files[type]->i_data, 0);
2688out:
2689 if (ret)
2690 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2691 return ret;
2692}
2693
Chao Yuaf033b22018-09-20 20:05:00 +08002694int f2fs_quota_sync(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002695{
Chao Yuaf033b22018-09-20 20:05:00 +08002696 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002697 struct quota_info *dqopt = sb_dqopt(sb);
2698 int cnt;
2699 int ret;
2700
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002701 /*
Chao Yu0abd6752017-07-09 00:13:07 +08002702 * Now when everything is written we can discard the pagecache so
2703 * that userspace sees the changes.
2704 */
2705 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
Chao Yuaf033b22018-09-20 20:05:00 +08002706
Chao Yu0abd6752017-07-09 00:13:07 +08002707 if (type != -1 && cnt != type)
2708 continue;
Chao Yu0abd6752017-07-09 00:13:07 +08002709
Chao Yu9de71ed2021-07-19 16:46:47 +08002710 if (!sb_has_quota_active(sb, type))
2711 return 0;
Chao Yu0abd6752017-07-09 00:13:07 +08002712
2713 inode_lock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002714
2715 /*
2716 * do_quotactl
2717 * f2fs_quota_sync
2718 * down_read(quota_sem)
2719 * dquot_writeback_dquots()
2720 * f2fs_dquot_commit
2721 * block_operation
2722 * down_read(quota_sem)
2723 */
2724 f2fs_lock_op(sbi);
2725 down_read(&sbi->quota_sem);
2726
2727 ret = f2fs_quota_sync_file(sbi, cnt);
2728
2729 up_read(&sbi->quota_sem);
2730 f2fs_unlock_op(sbi);
2731
Chao Yu0abd6752017-07-09 00:13:07 +08002732 inode_unlock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002733
2734 if (ret)
2735 break;
Chao Yu0abd6752017-07-09 00:13:07 +08002736 }
Chao Yuaf033b22018-09-20 20:05:00 +08002737 return ret;
Chao Yu0abd6752017-07-09 00:13:07 +08002738}
2739
2740static int f2fs_quota_on(struct super_block *sb, int type, int format_id,
2741 const struct path *path)
2742{
2743 struct inode *inode;
2744 int err;
2745
Chao Yufe973b02019-07-25 17:33:37 +08002746 /* if quota sysfile exists, deny enabling quota with specific file */
2747 if (f2fs_sb_has_quota_ino(F2FS_SB(sb))) {
2748 f2fs_err(F2FS_SB(sb), "quota sysfile already exists");
2749 return -EBUSY;
2750 }
2751
Chao Yu9a20d392017-08-07 16:37:59 +08002752 err = f2fs_quota_sync(sb, type);
Chao Yu0abd6752017-07-09 00:13:07 +08002753 if (err)
2754 return err;
2755
2756 err = dquot_quota_on(sb, type, format_id, path);
2757 if (err)
2758 return err;
2759
2760 inode = d_inode(path->dentry);
2761
2762 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002763 F2FS_I(inode)->i_flags |= F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL;
Chao Yu9149a5e2018-10-07 19:06:15 +08002764 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002765 inode_unlock(inode);
2766 f2fs_mark_inode_dirty_sync(inode, false);
2767
2768 return 0;
2769}
2770
Chao Yufe973b02019-07-25 17:33:37 +08002771static int __f2fs_quota_off(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002772{
2773 struct inode *inode = sb_dqopt(sb)->files[type];
2774 int err;
2775
2776 if (!inode || !igrab(inode))
2777 return dquot_quota_off(sb, type);
2778
Yunlei Hecda9cc52018-06-26 13:12:43 +08002779 err = f2fs_quota_sync(sb, type);
2780 if (err)
2781 goto out_put;
Chao Yu0abd6752017-07-09 00:13:07 +08002782
2783 err = dquot_quota_off(sb, type);
Chao Yu7beb01f2018-10-24 18:34:26 +08002784 if (err || f2fs_sb_has_quota_ino(F2FS_SB(sb)))
Chao Yu0abd6752017-07-09 00:13:07 +08002785 goto out_put;
2786
2787 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002788 F2FS_I(inode)->i_flags &= ~(F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL);
Chao Yu9149a5e2018-10-07 19:06:15 +08002789 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002790 inode_unlock(inode);
2791 f2fs_mark_inode_dirty_sync(inode, false);
2792out_put:
2793 iput(inode);
2794 return err;
2795}
2796
Chao Yufe973b02019-07-25 17:33:37 +08002797static int f2fs_quota_off(struct super_block *sb, int type)
2798{
2799 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2800 int err;
2801
2802 err = __f2fs_quota_off(sb, type);
2803
2804 /*
2805 * quotactl can shutdown journalled quota, result in inconsistence
2806 * between quota record and fs data by following updates, tag the
2807 * flag to let fsck be aware of it.
2808 */
2809 if (is_journalled_quota(sbi))
2810 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2811 return err;
2812}
2813
Chao Yu4b2414d2017-08-08 10:54:31 +08002814void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002815{
2816 int type;
Yunlei Hecda9cc52018-06-26 13:12:43 +08002817 int err;
Chao Yu0abd6752017-07-09 00:13:07 +08002818
Yunlei Hecda9cc52018-06-26 13:12:43 +08002819 for (type = 0; type < MAXQUOTAS; type++) {
Chao Yufe973b02019-07-25 17:33:37 +08002820 err = __f2fs_quota_off(sb, type);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002821 if (err) {
2822 int ret = dquot_quota_off(sb, type);
2823
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002824 f2fs_err(F2FS_SB(sb), "Fail to turn off disk quota (type: %d, err: %d, ret:%d), Please run fsck to fix it.",
2825 type, err, ret);
Chao Yuaf033b22018-09-20 20:05:00 +08002826 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002827 }
2828 }
Jaegeuk Kim0e0667b2019-01-27 17:59:53 -08002829 /*
2830 * In case of checkpoint=disable, we must flush quota blocks.
2831 * This can cause NULL exception for node_inode in end_io, since
2832 * put_super already dropped it.
2833 */
2834 sync_filesystem(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002835}
2836
Sheng Yong26b5a072018-10-12 18:49:26 +08002837static void f2fs_truncate_quota_inode_pages(struct super_block *sb)
2838{
2839 struct quota_info *dqopt = sb_dqopt(sb);
2840 int type;
2841
2842 for (type = 0; type < MAXQUOTAS; type++) {
2843 if (!dqopt->files[type])
2844 continue;
2845 f2fs_inode_synced(dqopt->files[type]);
2846 }
2847}
2848
Chao Yuaf033b22018-09-20 20:05:00 +08002849static int f2fs_dquot_commit(struct dquot *dquot)
2850{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002851 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002852 int ret;
2853
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002854 down_read_nested(&sbi->quota_sem, SINGLE_DEPTH_NESTING);
Chao Yuaf033b22018-09-20 20:05:00 +08002855 ret = dquot_commit(dquot);
2856 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002857 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2858 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002859 return ret;
2860}
2861
2862static int f2fs_dquot_acquire(struct dquot *dquot)
2863{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002864 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002865 int ret;
2866
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002867 down_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002868 ret = dquot_acquire(dquot);
2869 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002870 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2871 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002872 return ret;
2873}
2874
2875static int f2fs_dquot_release(struct dquot *dquot)
2876{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002877 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002878 int ret = dquot_release(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002879
Chao Yuaf033b22018-09-20 20:05:00 +08002880 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002881 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002882 return ret;
2883}
2884
2885static int f2fs_dquot_mark_dquot_dirty(struct dquot *dquot)
2886{
2887 struct super_block *sb = dquot->dq_sb;
2888 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002889 int ret = dquot_mark_dquot_dirty(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002890
2891 /* if we are using journalled quota */
2892 if (is_journalled_quota(sbi))
2893 set_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
2894
2895 return ret;
2896}
2897
2898static int f2fs_dquot_commit_info(struct super_block *sb, int type)
2899{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002900 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002901 int ret = dquot_commit_info(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002902
Chao Yuaf033b22018-09-20 20:05:00 +08002903 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002904 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002905 return ret;
2906}
Sheng Yong26b5a072018-10-12 18:49:26 +08002907
Wei Yongjun94b1e102018-01-05 09:41:20 +00002908static int f2fs_get_projid(struct inode *inode, kprojid_t *projid)
Chao Yu5c571322017-07-26 00:01:41 +08002909{
2910 *projid = F2FS_I(inode)->i_projid;
2911 return 0;
2912}
2913
Chao Yu0abd6752017-07-09 00:13:07 +08002914static const struct dquot_operations f2fs_quota_operations = {
2915 .get_reserved_space = f2fs_get_reserved_space,
Chao Yuaf033b22018-09-20 20:05:00 +08002916 .write_dquot = f2fs_dquot_commit,
2917 .acquire_dquot = f2fs_dquot_acquire,
2918 .release_dquot = f2fs_dquot_release,
2919 .mark_dirty = f2fs_dquot_mark_dquot_dirty,
2920 .write_info = f2fs_dquot_commit_info,
Chao Yu0abd6752017-07-09 00:13:07 +08002921 .alloc_dquot = dquot_alloc,
2922 .destroy_dquot = dquot_destroy,
Chao Yu5c571322017-07-26 00:01:41 +08002923 .get_projid = f2fs_get_projid,
Chao Yu0abd6752017-07-09 00:13:07 +08002924 .get_next_id = dquot_get_next_id,
2925};
2926
2927static const struct quotactl_ops f2fs_quotactl_ops = {
2928 .quota_on = f2fs_quota_on,
2929 .quota_off = f2fs_quota_off,
2930 .quota_sync = f2fs_quota_sync,
2931 .get_state = dquot_get_state,
2932 .set_info = dquot_set_dqinfo,
2933 .get_dqblk = dquot_get_dqblk,
2934 .set_dqblk = dquot_set_dqblk,
2935 .get_nextdqblk = dquot_get_next_dqblk,
2936};
2937#else
Chao Yu10a26872021-10-28 21:03:05 +08002938int f2fs_dquot_initialize(struct inode *inode)
2939{
2940 return 0;
2941}
2942
Chao Yuaf033b22018-09-20 20:05:00 +08002943int f2fs_quota_sync(struct super_block *sb, int type)
2944{
2945 return 0;
2946}
2947
Chao Yu4b2414d2017-08-08 10:54:31 +08002948void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002949{
2950}
2951#endif
2952
Arvind Yadavf62fc9f2017-08-31 15:06:24 +05302953static const struct super_operations f2fs_sops = {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002954 .alloc_inode = f2fs_alloc_inode,
Al Virod01718a2019-04-15 19:29:14 -04002955 .free_inode = f2fs_free_inode,
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09002956 .drop_inode = f2fs_drop_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002957 .write_inode = f2fs_write_inode,
Jaegeuk Kimb3783872013-06-10 09:17:01 +09002958 .dirty_inode = f2fs_dirty_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002959 .show_options = f2fs_show_options,
Chao Yu0abd6752017-07-09 00:13:07 +08002960#ifdef CONFIG_QUOTA
2961 .quota_read = f2fs_quota_read,
2962 .quota_write = f2fs_quota_write,
2963 .get_dquots = f2fs_get_dquots,
2964#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002965 .evict_inode = f2fs_evict_inode,
2966 .put_super = f2fs_put_super,
2967 .sync_fs = f2fs_sync_fs,
Changman Leed6212a52013-01-29 18:30:07 +09002968 .freeze_fs = f2fs_freeze,
2969 .unfreeze_fs = f2fs_unfreeze,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002970 .statfs = f2fs_statfs,
Namjae Jeon696c0182013-06-16 09:48:48 +09002971 .remount_fs = f2fs_remount,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002972};
2973
Chandan Rajendra643fa962018-12-12 15:20:12 +05302974#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002975static int f2fs_get_context(struct inode *inode, void *ctx, size_t len)
2976{
2977 return f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2978 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2979 ctx, len, NULL);
2980}
2981
2982static int f2fs_set_context(struct inode *inode, const void *ctx, size_t len,
2983 void *fs_data)
2984{
Sheng Yongb7c409d2018-03-15 18:51:41 +08002985 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2986
2987 /*
2988 * Encrypting the root directory is not allowed because fsck
2989 * expects lost+found directory to exist and remain unencrypted
2990 * if LOST_FOUND feature is enabled.
2991 *
2992 */
Chao Yu7beb01f2018-10-24 18:34:26 +08002993 if (f2fs_sb_has_lost_found(sbi) &&
Sheng Yongb7c409d2018-03-15 18:51:41 +08002994 inode->i_ino == F2FS_ROOT_INO(sbi))
2995 return -EPERM;
2996
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002997 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2998 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2999 ctx, len, fs_data, XATTR_CREATE);
3000}
3001
Eric Biggersac4acb12020-09-16 21:11:35 -07003002static const union fscrypt_policy *f2fs_get_dummy_policy(struct super_block *sb)
Sheng Yongff62af22018-03-15 18:51:42 +08003003{
Eric Biggersac4acb12020-09-16 21:11:35 -07003004 return F2FS_OPTION(F2FS_SB(sb)).dummy_enc_policy.policy;
Sheng Yongff62af22018-03-15 18:51:42 +08003005}
3006
Eric Biggers0eee17e2019-10-24 14:54:38 -07003007static bool f2fs_has_stable_inodes(struct super_block *sb)
3008{
3009 return true;
3010}
3011
3012static void f2fs_get_ino_and_lblk_bits(struct super_block *sb,
3013 int *ino_bits_ret, int *lblk_bits_ret)
3014{
3015 *ino_bits_ret = 8 * sizeof(nid_t);
3016 *lblk_bits_ret = 8 * sizeof(block_t);
3017}
3018
Satya Tangirala27aacd22020-07-02 01:56:06 +00003019static int f2fs_get_num_devices(struct super_block *sb)
3020{
3021 struct f2fs_sb_info *sbi = F2FS_SB(sb);
3022
3023 if (f2fs_is_multi_device(sbi))
3024 return sbi->s_ndevs;
3025 return 1;
3026}
3027
3028static void f2fs_get_devices(struct super_block *sb,
3029 struct request_queue **devs)
3030{
3031 struct f2fs_sb_info *sbi = F2FS_SB(sb);
3032 int i;
3033
3034 for (i = 0; i < sbi->s_ndevs; i++)
3035 devs[i] = bdev_get_queue(FDEV(i).bdev);
3036}
3037
Eric Biggers6f69f0e2017-02-07 12:42:10 -08003038static const struct fscrypt_operations f2fs_cryptops = {
Eric Biggers0eee17e2019-10-24 14:54:38 -07003039 .key_prefix = "f2fs:",
3040 .get_context = f2fs_get_context,
3041 .set_context = f2fs_set_context,
Eric Biggersac4acb12020-09-16 21:11:35 -07003042 .get_dummy_policy = f2fs_get_dummy_policy,
Eric Biggers0eee17e2019-10-24 14:54:38 -07003043 .empty_dir = f2fs_empty_dir,
Eric Biggers0eee17e2019-10-24 14:54:38 -07003044 .has_stable_inodes = f2fs_has_stable_inodes,
3045 .get_ino_and_lblk_bits = f2fs_get_ino_and_lblk_bits,
Satya Tangirala27aacd22020-07-02 01:56:06 +00003046 .get_num_devices = f2fs_get_num_devices,
3047 .get_devices = f2fs_get_devices,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003048};
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003049#endif
3050
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003051static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
3052 u64 ino, u32 generation)
3053{
3054 struct f2fs_sb_info *sbi = F2FS_SB(sb);
3055 struct inode *inode;
3056
Chao Yu4d57b862018-05-30 00:20:41 +08003057 if (f2fs_check_nid_range(sbi, ino))
Chao Yu910bb122014-03-12 17:08:36 +08003058 return ERR_PTR(-ESTALE);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003059
3060 /*
3061 * f2fs_iget isn't quite right if the inode is currently unallocated!
3062 * However f2fs_iget currently does appropriate checks to handle stale
3063 * inodes so everything is OK.
3064 */
3065 inode = f2fs_iget(sb, ino);
3066 if (IS_ERR(inode))
3067 return ERR_CAST(inode);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003068 if (unlikely(generation && inode->i_generation != generation)) {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003069 /* we didn't find the right inode.. */
3070 iput(inode);
3071 return ERR_PTR(-ESTALE);
3072 }
3073 return inode;
3074}
3075
3076static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
3077 int fh_len, int fh_type)
3078{
3079 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
3080 f2fs_nfs_get_inode);
3081}
3082
3083static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
3084 int fh_len, int fh_type)
3085{
3086 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
3087 f2fs_nfs_get_inode);
3088}
3089
3090static const struct export_operations f2fs_export_ops = {
3091 .fh_to_dentry = f2fs_fh_to_dentry,
3092 .fh_to_parent = f2fs_fh_to_parent,
3093 .get_parent = f2fs_get_parent,
3094};
3095
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003096loff_t max_file_blocks(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003097{
Chao Yu7a2af762017-07-19 00:19:06 +08003098 loff_t result = 0;
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003099 loff_t leaf_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003100
Chao Yu7a2af762017-07-19 00:19:06 +08003101 /*
3102 * note: previously, result is equal to (DEF_ADDRS_PER_INODE -
Chao Yu6afc6622017-09-06 21:59:50 +08003103 * DEFAULT_INLINE_XATTR_ADDRS), but now f2fs try to reserve more
Chao Yu7a2af762017-07-19 00:19:06 +08003104 * space in inode.i_addr, it will be more safe to reassign
3105 * result as zero.
3106 */
3107
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003108 if (inode && f2fs_compressed_file(inode))
3109 leaf_count = ADDRS_PER_BLOCK(inode);
3110 else
3111 leaf_count = DEF_ADDRS_PER_BLOCK;
3112
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003113 /* two direct node blocks */
3114 result += (leaf_count * 2);
3115
3116 /* two indirect node blocks */
3117 leaf_count *= NIDS_PER_BLOCK;
3118 result += (leaf_count * 2);
3119
3120 /* one double indirect node block */
3121 leaf_count *= NIDS_PER_BLOCK;
3122 result += leaf_count;
3123
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003124 return result;
3125}
3126
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003127static int __f2fs_commit_super(struct buffer_head *bh,
3128 struct f2fs_super_block *super)
Chao Yu9a59b622015-12-15 09:58:18 +08003129{
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003130 lock_buffer(bh);
3131 if (super)
3132 memcpy(bh->b_data + F2FS_SUPER_OFFSET, super, sizeof(*super));
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003133 set_buffer_dirty(bh);
3134 unlock_buffer(bh);
3135
3136 /* it's rare case, we can do fua all the time */
Jan Kara3adc5fcb2017-05-02 17:03:47 +02003137 return __sync_dirty_buffer(bh, REQ_SYNC | REQ_PREFLUSH | REQ_FUA);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003138}
3139
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003140static inline bool sanity_check_area_boundary(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003141 struct buffer_head *bh)
3142{
3143 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3144 (bh->b_data + F2FS_SUPER_OFFSET);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003145 struct super_block *sb = sbi->sb;
Chao Yu9a59b622015-12-15 09:58:18 +08003146 u32 segment0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
3147 u32 cp_blkaddr = le32_to_cpu(raw_super->cp_blkaddr);
3148 u32 sit_blkaddr = le32_to_cpu(raw_super->sit_blkaddr);
3149 u32 nat_blkaddr = le32_to_cpu(raw_super->nat_blkaddr);
3150 u32 ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
3151 u32 main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
3152 u32 segment_count_ckpt = le32_to_cpu(raw_super->segment_count_ckpt);
3153 u32 segment_count_sit = le32_to_cpu(raw_super->segment_count_sit);
3154 u32 segment_count_nat = le32_to_cpu(raw_super->segment_count_nat);
3155 u32 segment_count_ssa = le32_to_cpu(raw_super->segment_count_ssa);
3156 u32 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
3157 u32 segment_count = le32_to_cpu(raw_super->segment_count);
3158 u32 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003159 u64 main_end_blkaddr = main_blkaddr +
3160 (segment_count_main << log_blocks_per_seg);
3161 u64 seg_end_blkaddr = segment0_blkaddr +
3162 (segment_count << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003163
3164 if (segment0_blkaddr != cp_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003165 f2fs_info(sbi, "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
3166 segment0_blkaddr, cp_blkaddr);
Chao Yu9a59b622015-12-15 09:58:18 +08003167 return true;
3168 }
3169
3170 if (cp_blkaddr + (segment_count_ckpt << log_blocks_per_seg) !=
3171 sit_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003172 f2fs_info(sbi, "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
3173 cp_blkaddr, sit_blkaddr,
3174 segment_count_ckpt << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003175 return true;
3176 }
3177
3178 if (sit_blkaddr + (segment_count_sit << log_blocks_per_seg) !=
3179 nat_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003180 f2fs_info(sbi, "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
3181 sit_blkaddr, nat_blkaddr,
3182 segment_count_sit << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003183 return true;
3184 }
3185
3186 if (nat_blkaddr + (segment_count_nat << log_blocks_per_seg) !=
3187 ssa_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003188 f2fs_info(sbi, "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
3189 nat_blkaddr, ssa_blkaddr,
3190 segment_count_nat << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003191 return true;
3192 }
3193
3194 if (ssa_blkaddr + (segment_count_ssa << log_blocks_per_seg) !=
3195 main_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003196 f2fs_info(sbi, "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
3197 ssa_blkaddr, main_blkaddr,
3198 segment_count_ssa << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003199 return true;
3200 }
3201
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003202 if (main_end_blkaddr > seg_end_blkaddr) {
Wang Xiaojund89f5892020-09-18 08:31:24 +08003203 f2fs_info(sbi, "Wrong MAIN_AREA boundary, start(%u) end(%llu) block(%u)",
3204 main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003205 segment_count_main << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003206 return true;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003207 } else if (main_end_blkaddr < seg_end_blkaddr) {
3208 int err = 0;
3209 char *res;
Chao Yu9a59b622015-12-15 09:58:18 +08003210
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003211 /* fix in-memory information all the time */
3212 raw_super->segment_count = cpu_to_le32((main_end_blkaddr -
3213 segment0_blkaddr) >> log_blocks_per_seg);
3214
3215 if (f2fs_readonly(sb) || bdev_read_only(sb->s_bdev)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003216 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003217 res = "internally";
3218 } else {
3219 err = __f2fs_commit_super(bh, NULL);
3220 res = err ? "failed" : "done";
3221 }
Wang Xiaojund89f5892020-09-18 08:31:24 +08003222 f2fs_info(sbi, "Fix alignment : %s, start(%u) end(%llu) block(%u)",
3223 res, main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003224 segment_count_main << log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003225 if (err)
3226 return true;
3227 }
Chao Yu9a59b622015-12-15 09:58:18 +08003228 return false;
3229}
3230
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003231static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003232 struct buffer_head *bh)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003233{
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003234 block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003235 block_t total_sections, blocks_per_seg;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003236 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3237 (bh->b_data + F2FS_SUPER_OFFSET);
Junling Zhengd440c522018-09-28 20:25:56 +08003238 size_t crc_offset = 0;
3239 __u32 crc = 0;
3240
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003241 if (le32_to_cpu(raw_super->magic) != F2FS_SUPER_MAGIC) {
3242 f2fs_info(sbi, "Magic Mismatch, valid(0x%x) - read(0x%x)",
3243 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
3244 return -EINVAL;
3245 }
3246
Junling Zhengd440c522018-09-28 20:25:56 +08003247 /* Check checksum_offset and crc in superblock */
Chao Yu7beb01f2018-10-24 18:34:26 +08003248 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_SB_CHKSUM)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003249 crc_offset = le32_to_cpu(raw_super->checksum_offset);
3250 if (crc_offset !=
3251 offsetof(struct f2fs_super_block, crc)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003252 f2fs_info(sbi, "Invalid SB checksum offset: %zu",
3253 crc_offset);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003254 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003255 }
3256 crc = le32_to_cpu(raw_super->crc);
3257 if (!f2fs_crc_valid(sbi, crc, raw_super, crc_offset)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003258 f2fs_info(sbi, "Invalid SB checksum value: %u", crc);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003259 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003260 }
3261 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003262
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003263 /* Currently, support only 4KB block size */
Chao Yue584bbe2020-12-09 16:49:36 +08003264 if (le32_to_cpu(raw_super->log_blocksize) != F2FS_BLKSIZE_BITS) {
3265 f2fs_info(sbi, "Invalid log_blocksize (%u), supports only %u",
3266 le32_to_cpu(raw_super->log_blocksize),
3267 F2FS_BLKSIZE_BITS);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003268 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003269 }
majianpeng5c9b4692013-02-01 19:07:57 +08003270
Chao Yu9a59b622015-12-15 09:58:18 +08003271 /* check log blocks per segment */
3272 if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003273 f2fs_info(sbi, "Invalid log blocks per segment (%u)",
3274 le32_to_cpu(raw_super->log_blocks_per_seg));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003275 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003276 }
3277
Chao Yu55cf9cb2014-09-15 18:01:10 +08003278 /* Currently, support 512/1024/2048/4096 bytes sector size */
3279 if (le32_to_cpu(raw_super->log_sectorsize) >
3280 F2FS_MAX_LOG_SECTOR_SIZE ||
3281 le32_to_cpu(raw_super->log_sectorsize) <
3282 F2FS_MIN_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003283 f2fs_info(sbi, "Invalid log sectorsize (%u)",
3284 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003285 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003286 }
Chao Yu55cf9cb2014-09-15 18:01:10 +08003287 if (le32_to_cpu(raw_super->log_sectors_per_block) +
3288 le32_to_cpu(raw_super->log_sectorsize) !=
3289 F2FS_MAX_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003290 f2fs_info(sbi, "Invalid log sectors per block(%u) log sectorsize(%u)",
3291 le32_to_cpu(raw_super->log_sectors_per_block),
3292 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003293 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003294 }
Chao Yu9a59b622015-12-15 09:58:18 +08003295
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003296 segment_count = le32_to_cpu(raw_super->segment_count);
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003297 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003298 segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3299 secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3300 total_sections = le32_to_cpu(raw_super->section_count);
3301
3302 /* blocks_per_seg should be 512, given the above check */
3303 blocks_per_seg = 1 << le32_to_cpu(raw_super->log_blocks_per_seg);
3304
3305 if (segment_count > F2FS_MAX_SEGMENT ||
3306 segment_count < F2FS_MIN_SEGMENTS) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003307 f2fs_info(sbi, "Invalid segment count (%u)", segment_count);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003308 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003309 }
3310
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003311 if (total_sections > segment_count_main || total_sections < 1 ||
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003312 segs_per_sec > segment_count || !segs_per_sec) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003313 f2fs_info(sbi, "Invalid segment/section count (%u, %u x %u)",
3314 segment_count, total_sections, segs_per_sec);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003315 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003316 }
3317
Chao Yu3a22e9a2020-09-29 09:23:34 +08003318 if (segment_count_main != total_sections * segs_per_sec) {
3319 f2fs_info(sbi, "Invalid segment/section count (%u != %u * %u)",
3320 segment_count_main, total_sections, segs_per_sec);
3321 return -EFSCORRUPTED;
3322 }
3323
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003324 if ((segment_count / segs_per_sec) < total_sections) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003325 f2fs_info(sbi, "Small segment_count (%u < %u * %u)",
3326 segment_count, segs_per_sec, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003327 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003328 }
3329
Martin Blumenstingl88960062018-12-22 11:22:26 +01003330 if (segment_count > (le64_to_cpu(raw_super->block_count) >> 9)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003331 f2fs_info(sbi, "Wrong segment_count / block_count (%u > %llu)",
3332 segment_count, le64_to_cpu(raw_super->block_count));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003333 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003334 }
3335
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003336 if (RDEV(0).path[0]) {
3337 block_t dev_seg_count = le32_to_cpu(RDEV(0).total_segments);
3338 int i = 1;
3339
3340 while (i < MAX_DEVICES && RDEV(i).path[0]) {
3341 dev_seg_count += le32_to_cpu(RDEV(i).total_segments);
3342 i++;
3343 }
3344 if (segment_count != dev_seg_count) {
3345 f2fs_info(sbi, "Segment count (%u) mismatch with total segments from devices (%u)",
3346 segment_count, dev_seg_count);
3347 return -EFSCORRUPTED;
3348 }
Chao Yu07eb1d62020-09-21 20:53:13 +08003349 } else {
3350 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_BLKZONED) &&
3351 !bdev_is_zoned(sbi->sb->s_bdev)) {
3352 f2fs_info(sbi, "Zoned block device path is missing");
3353 return -EFSCORRUPTED;
3354 }
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003355 }
3356
Chao Yu42bf5462018-06-23 00:12:36 +08003357 if (secs_per_zone > total_sections || !secs_per_zone) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003358 f2fs_info(sbi, "Wrong secs_per_zone / total_sections (%u, %u)",
3359 secs_per_zone, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003360 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003361 }
3362 if (le32_to_cpu(raw_super->extension_count) > F2FS_MAX_EXTENSION ||
3363 raw_super->hot_ext_count > F2FS_MAX_EXTENSION ||
3364 (le32_to_cpu(raw_super->extension_count) +
3365 raw_super->hot_ext_count) > F2FS_MAX_EXTENSION) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003366 f2fs_info(sbi, "Corrupted extension count (%u + %u > %u)",
3367 le32_to_cpu(raw_super->extension_count),
3368 raw_super->hot_ext_count,
3369 F2FS_MAX_EXTENSION);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003370 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003371 }
3372
Chao Yu65ddf652021-08-06 08:04:37 +08003373 if (le32_to_cpu(raw_super->cp_payload) >=
3374 (blocks_per_seg - F2FS_CP_PACKS -
3375 NR_CURSEG_PERSIST_TYPE)) {
3376 f2fs_info(sbi, "Insane cp_payload (%u >= %u)",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003377 le32_to_cpu(raw_super->cp_payload),
Chao Yu65ddf652021-08-06 08:04:37 +08003378 blocks_per_seg - F2FS_CP_PACKS -
3379 NR_CURSEG_PERSIST_TYPE);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003380 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003381 }
3382
Chao Yu9a59b622015-12-15 09:58:18 +08003383 /* check reserved ino info */
3384 if (le32_to_cpu(raw_super->node_ino) != 1 ||
3385 le32_to_cpu(raw_super->meta_ino) != 2 ||
3386 le32_to_cpu(raw_super->root_ino) != 3) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003387 f2fs_info(sbi, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
3388 le32_to_cpu(raw_super->node_ino),
3389 le32_to_cpu(raw_super->meta_ino),
3390 le32_to_cpu(raw_super->root_ino));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003391 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003392 }
3393
3394 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003395 if (sanity_check_area_boundary(sbi, bh))
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003396 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003397
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003398 return 0;
3399}
3400
Chao Yu4d57b862018-05-30 00:20:41 +08003401int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003402{
3403 unsigned int total, fsmeta;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003404 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
3405 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003406 unsigned int ovp_segments, reserved_segments;
Jin Qian15d30422017-05-15 10:45:08 -07003407 unsigned int main_segs, blocks_per_seg;
Chao Yuc77ec612018-06-23 11:25:19 +08003408 unsigned int sit_segs, nat_segs;
3409 unsigned int sit_bitmap_size, nat_bitmap_size;
3410 unsigned int log_blocks_per_seg;
Chao Yu9dc956b2018-06-27 18:05:54 +08003411 unsigned int segment_count_main;
Chao Yue494c2f2018-08-01 19:16:11 +08003412 unsigned int cp_pack_start_sum, cp_payload;
Chao Yu7b63f722019-04-15 15:30:50 +08003413 block_t user_block_count, valid_user_blocks;
3414 block_t avail_node_count, valid_node_count;
Chao Yu65ddf652021-08-06 08:04:37 +08003415 unsigned int nat_blocks, nat_bits_bytes, nat_bits_blocks;
Chao Yu042be0f2018-09-06 20:34:12 +08003416 int i, j;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003417
3418 total = le32_to_cpu(raw_super->segment_count);
3419 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
Chao Yuc77ec612018-06-23 11:25:19 +08003420 sit_segs = le32_to_cpu(raw_super->segment_count_sit);
3421 fsmeta += sit_segs;
3422 nat_segs = le32_to_cpu(raw_super->segment_count_nat);
3423 fsmeta += nat_segs;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003424 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
3425 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
3426
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003427 if (unlikely(fsmeta >= total))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003428 return 1;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003429
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003430 ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
3431 reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
3432
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003433 if (!f2fs_sb_has_readonly(sbi) &&
3434 unlikely(fsmeta < F2FS_MIN_META_SEGMENTS ||
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003435 ovp_segments == 0 || reserved_segments == 0)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003436 f2fs_err(sbi, "Wrong layout: check mkfs.f2fs version");
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003437 return 1;
3438 }
Chao Yu9dc956b2018-06-27 18:05:54 +08003439 user_block_count = le64_to_cpu(ckpt->user_block_count);
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003440 segment_count_main = le32_to_cpu(raw_super->segment_count_main) +
3441 (f2fs_sb_has_readonly(sbi) ? 1 : 0);
Chao Yu9dc956b2018-06-27 18:05:54 +08003442 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3443 if (!user_block_count || user_block_count >=
3444 segment_count_main << log_blocks_per_seg) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003445 f2fs_err(sbi, "Wrong user_block_count: %u",
3446 user_block_count);
Chao Yu9dc956b2018-06-27 18:05:54 +08003447 return 1;
3448 }
3449
Chao Yu7b63f722019-04-15 15:30:50 +08003450 valid_user_blocks = le64_to_cpu(ckpt->valid_block_count);
3451 if (valid_user_blocks > user_block_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003452 f2fs_err(sbi, "Wrong valid_user_blocks: %u, user_block_count: %u",
3453 valid_user_blocks, user_block_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003454 return 1;
3455 }
3456
3457 valid_node_count = le32_to_cpu(ckpt->valid_node_count);
Chao Yu27cae0b2019-08-05 18:27:25 +08003458 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Chao Yu7b63f722019-04-15 15:30:50 +08003459 if (valid_node_count > avail_node_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003460 f2fs_err(sbi, "Wrong valid_node_count: %u, avail_node_count: %u",
3461 valid_node_count, avail_node_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003462 return 1;
3463 }
3464
Jin Qian15d30422017-05-15 10:45:08 -07003465 main_segs = le32_to_cpu(raw_super->segment_count_main);
3466 blocks_per_seg = sbi->blocks_per_seg;
3467
3468 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
3469 if (le32_to_cpu(ckpt->cur_node_segno[i]) >= main_segs ||
3470 le16_to_cpu(ckpt->cur_node_blkoff[i]) >= blocks_per_seg)
3471 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003472
3473 if (f2fs_sb_has_readonly(sbi))
3474 goto check_data;
3475
Chao Yu042be0f2018-09-06 20:34:12 +08003476 for (j = i + 1; j < NR_CURSEG_NODE_TYPE; j++) {
3477 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3478 le32_to_cpu(ckpt->cur_node_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003479 f2fs_err(sbi, "Node segment (%u, %u) has the same segno: %u",
3480 i, j,
3481 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003482 return 1;
3483 }
3484 }
Jin Qian15d30422017-05-15 10:45:08 -07003485 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003486check_data:
Jin Qian15d30422017-05-15 10:45:08 -07003487 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
3488 if (le32_to_cpu(ckpt->cur_data_segno[i]) >= main_segs ||
3489 le16_to_cpu(ckpt->cur_data_blkoff[i]) >= blocks_per_seg)
3490 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003491
3492 if (f2fs_sb_has_readonly(sbi))
3493 goto skip_cross;
3494
Chao Yu042be0f2018-09-06 20:34:12 +08003495 for (j = i + 1; j < NR_CURSEG_DATA_TYPE; j++) {
3496 if (le32_to_cpu(ckpt->cur_data_segno[i]) ==
3497 le32_to_cpu(ckpt->cur_data_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003498 f2fs_err(sbi, "Data segment (%u, %u) has the same segno: %u",
3499 i, j,
3500 le32_to_cpu(ckpt->cur_data_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003501 return 1;
3502 }
3503 }
3504 }
3505 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003506 for (j = 0; j < NR_CURSEG_DATA_TYPE; j++) {
Chao Yu042be0f2018-09-06 20:34:12 +08003507 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3508 le32_to_cpu(ckpt->cur_data_segno[j])) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003509 f2fs_err(sbi, "Node segment (%u) and Data segment (%u) has the same segno: %u",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003510 i, j,
3511 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003512 return 1;
3513 }
3514 }
Jin Qian15d30422017-05-15 10:45:08 -07003515 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003516skip_cross:
Chao Yuc77ec612018-06-23 11:25:19 +08003517 sit_bitmap_size = le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
3518 nat_bitmap_size = le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
Chao Yuc77ec612018-06-23 11:25:19 +08003519
3520 if (sit_bitmap_size != ((sit_segs / 2) << log_blocks_per_seg) / 8 ||
3521 nat_bitmap_size != ((nat_segs / 2) << log_blocks_per_seg) / 8) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003522 f2fs_err(sbi, "Wrong bitmap size: sit: %u, nat:%u",
3523 sit_bitmap_size, nat_bitmap_size);
Chao Yuc77ec612018-06-23 11:25:19 +08003524 return 1;
3525 }
3526
Chao Yue494c2f2018-08-01 19:16:11 +08003527 cp_pack_start_sum = __start_sum_addr(sbi);
3528 cp_payload = __cp_payload(sbi);
3529 if (cp_pack_start_sum < cp_payload + 1 ||
3530 cp_pack_start_sum > blocks_per_seg - 1 -
Chao Yud0b9e422020-08-04 21:14:45 +08003531 NR_CURSEG_PERSIST_TYPE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003532 f2fs_err(sbi, "Wrong cp_pack_start_sum: %u",
3533 cp_pack_start_sum);
Chao Yue494c2f2018-08-01 19:16:11 +08003534 return 1;
3535 }
3536
Chao Yu5dae2d32019-05-20 10:09:22 +08003537 if (__is_set_ckpt_flags(ckpt, CP_LARGE_NAT_BITMAP_FLAG) &&
3538 le32_to_cpu(ckpt->checksum_offset) != CP_MIN_CHKSUM_OFFSET) {
Chao Yu2d008832019-07-11 09:29:15 +08003539 f2fs_warn(sbi, "using deprecated layout of large_nat_bitmap, "
3540 "please run fsck v1.13.0 or higher to repair, chksum_offset: %u, "
3541 "fixed with patch: \"f2fs-tools: relocate chksum_offset for large_nat_bitmap feature\"",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003542 le32_to_cpu(ckpt->checksum_offset));
Chao Yu5dae2d32019-05-20 10:09:22 +08003543 return 1;
3544 }
3545
Chao Yu65ddf652021-08-06 08:04:37 +08003546 nat_blocks = nat_segs << log_blocks_per_seg;
3547 nat_bits_bytes = nat_blocks / BITS_PER_BYTE;
3548 nat_bits_blocks = F2FS_BLK_ALIGN((nat_bits_bytes << 1) + 8);
3549 if (__is_set_ckpt_flags(ckpt, CP_NAT_BITS_FLAG) &&
3550 (cp_payload + F2FS_CP_PACKS +
3551 NR_CURSEG_PERSIST_TYPE + nat_bits_blocks >= blocks_per_seg)) {
3552 f2fs_warn(sbi, "Insane cp_payload: %u, nat_bits_blocks: %u)",
3553 cp_payload, nat_bits_blocks);
Chao Yuca98d722021-10-28 20:45:08 +08003554 return 1;
Chao Yu65ddf652021-08-06 08:04:37 +08003555 }
3556
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07003557 if (unlikely(f2fs_cp_error(sbi))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003558 f2fs_err(sbi, "A bug case: need to run fsck");
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003559 return 1;
3560 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003561 return 0;
3562}
3563
3564static void init_sb_info(struct f2fs_sb_info *sbi)
3565{
3566 struct f2fs_super_block *raw_super = sbi->raw_super;
Yunlong Song089842d2018-10-24 16:09:42 +08003567 int i;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003568
3569 sbi->log_sectors_per_block =
3570 le32_to_cpu(raw_super->log_sectors_per_block);
3571 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
3572 sbi->blocksize = 1 << sbi->log_blocksize;
3573 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3574 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
3575 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3576 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3577 sbi->total_sections = le32_to_cpu(raw_super->section_count);
3578 sbi->total_node_count =
3579 (le32_to_cpu(raw_super->segment_count_nat) / 2)
3580 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
Yangtao Lib9ec1092020-12-07 18:59:33 +08003581 F2FS_ROOT_INO(sbi) = le32_to_cpu(raw_super->root_ino);
3582 F2FS_NODE_INO(sbi) = le32_to_cpu(raw_super->node_ino);
3583 F2FS_META_INO(sbi) = le32_to_cpu(raw_super->meta_ino);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09003584 sbi->cur_victim_sec = NULL_SECNO;
Chao Yue3080b02018-10-24 18:37:27 +08003585 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
3586 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +09003587 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
Chao Yue3080b02018-10-24 18:37:27 +08003588 sbi->migration_granularity = sbi->segs_per_sec;
Daeho Jeong0f6b56e2021-08-02 21:22:45 -07003589 sbi->seq_file_ra_mul = MIN_RA_MUL;
Daeho Jeong6691d942021-09-29 11:12:03 -07003590 sbi->max_fragment_chunk = DEF_FRAGMENT_SIZE;
3591 sbi->max_fragment_hole = DEF_FRAGMENT_SIZE;
Daeho Jeong325163e2021-12-08 16:41:51 -08003592 spin_lock_init(&sbi->gc_urgent_high_lock);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003593
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09003594 sbi->dir_level = DEF_DIR_LEVEL;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08003595 sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08003596 sbi->interval_time[REQ_TIME] = DEF_IDLE_INTERVAL;
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +05303597 sbi->interval_time[DISCARD_TIME] = DEF_IDLE_INTERVAL;
3598 sbi->interval_time[GC_TIME] = DEF_IDLE_INTERVAL;
Daniel Rosenberg43549942018-08-20 19:21:43 -07003599 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_INTERVAL;
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08003600 sbi->interval_time[UMOUNT_DISCARD_TIMEOUT] =
3601 DEF_UMOUNT_DISCARD_TIMEOUT;
Chao Yucaf00472015-01-28 17:48:42 +08003602 clear_sbi_flag(sbi, SBI_NEED_FSCK);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003603
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003604 for (i = 0; i < NR_COUNT_TYPE; i++)
3605 atomic_set(&sbi->nr_pages[i], 0);
3606
Chao Yuc29fd0c2018-06-04 23:20:36 +08003607 for (i = 0; i < META; i++)
3608 atomic_set(&sbi->wb_sync_req[i], 0);
Jaegeuk Kim687de7f2017-03-28 18:07:38 -07003609
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003610 INIT_LIST_HEAD(&sbi->s_list);
3611 mutex_init(&sbi->umount_mutex);
Chao Yu107a8052018-05-26 09:00:13 +08003612 init_rwsem(&sbi->io_order_lock);
Chao Yuaaec2b12016-09-20 11:04:18 +08003613 spin_lock_init(&sbi->cp_lock);
Chao Yu1228b482017-09-29 13:59:39 +08003614
3615 sbi->dirty_device = 0;
3616 spin_lock_init(&sbi->dev_lock);
Chao Yud0d3f1b2018-02-11 22:53:20 +08003617
Chao Yu846ae672018-02-26 22:04:13 +08003618 init_rwsem(&sbi->sb_lock);
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07003619 init_rwsem(&sbi->pin_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003620}
3621
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003622static int init_percpu_info(struct f2fs_sb_info *sbi)
3623{
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003624 int err;
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003625
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07003626 err = percpu_counter_init(&sbi->alloc_valid_block_count, 0, GFP_KERNEL);
3627 if (err)
3628 return err;
3629
Chao Yu4a70e252018-09-05 14:54:02 +08003630 err = percpu_counter_init(&sbi->total_valid_inode_count, 0,
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003631 GFP_KERNEL);
Chao Yu4a70e252018-09-05 14:54:02 +08003632 if (err)
3633 percpu_counter_destroy(&sbi->alloc_valid_block_count);
3634
3635 return err;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003636}
3637
Damien Le Moal178053e2016-10-28 17:45:05 +09003638#ifdef CONFIG_BLK_DEV_ZONED
Christoph Hellwigd4100352019-11-11 11:39:30 +09003639
Aravind Rameshde881df2020-07-16 18:26:56 +05303640struct f2fs_report_zones_args {
3641 struct f2fs_dev_info *dev;
3642 bool zone_cap_mismatch;
3643};
3644
3645static int f2fs_report_zone_cb(struct blk_zone *zone, unsigned int idx,
3646 void *data)
3647{
3648 struct f2fs_report_zones_args *rz_args = data;
3649
3650 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
3651 return 0;
3652
3653 set_bit(idx, rz_args->dev->blkz_seq);
3654 rz_args->dev->zone_capacity_blocks[idx] = zone->capacity >>
3655 F2FS_LOG_SECTORS_PER_BLOCK;
3656 if (zone->len != zone->capacity && !rz_args->zone_cap_mismatch)
3657 rz_args->zone_cap_mismatch = true;
3658
Christoph Hellwigd4100352019-11-11 11:39:30 +09003659 return 0;
3660}
3661
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003662static int init_blkz_info(struct f2fs_sb_info *sbi, int devi)
Damien Le Moal178053e2016-10-28 17:45:05 +09003663{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003664 struct block_device *bdev = FDEV(devi).bdev;
Christoph Hellwiga7824832020-11-26 18:43:37 +01003665 sector_t nr_sectors = bdev_nr_sectors(bdev);
Aravind Rameshde881df2020-07-16 18:26:56 +05303666 struct f2fs_report_zones_args rep_zone_arg;
Christoph Hellwigd4100352019-11-11 11:39:30 +09003667 int ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003668
Chao Yu7beb01f2018-10-24 18:34:26 +08003669 if (!f2fs_sb_has_blkzoned(sbi))
Damien Le Moal178053e2016-10-28 17:45:05 +09003670 return 0;
3671
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003672 if (sbi->blocks_per_blkz && sbi->blocks_per_blkz !=
Damien Le Moalf99e8642017-01-12 07:58:32 -07003673 SECTOR_TO_BLOCK(bdev_zone_sectors(bdev)))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003674 return -EINVAL;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003675 sbi->blocks_per_blkz = SECTOR_TO_BLOCK(bdev_zone_sectors(bdev));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003676 if (sbi->log_blocks_per_blkz && sbi->log_blocks_per_blkz !=
3677 __ilog2_u32(sbi->blocks_per_blkz))
3678 return -EINVAL;
Damien Le Moal178053e2016-10-28 17:45:05 +09003679 sbi->log_blocks_per_blkz = __ilog2_u32(sbi->blocks_per_blkz);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003680 FDEV(devi).nr_blkz = SECTOR_TO_BLOCK(nr_sectors) >>
3681 sbi->log_blocks_per_blkz;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003682 if (nr_sectors & (bdev_zone_sectors(bdev) - 1))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003683 FDEV(devi).nr_blkz++;
Damien Le Moal178053e2016-10-28 17:45:05 +09003684
Eric Biggers0b6d4ca2020-06-04 21:57:48 -07003685 FDEV(devi).blkz_seq = f2fs_kvzalloc(sbi,
Damien Le Moal95175da2019-03-16 09:13:07 +09003686 BITS_TO_LONGS(FDEV(devi).nr_blkz)
3687 * sizeof(unsigned long),
3688 GFP_KERNEL);
3689 if (!FDEV(devi).blkz_seq)
Damien Le Moal178053e2016-10-28 17:45:05 +09003690 return -ENOMEM;
3691
Aravind Rameshde881df2020-07-16 18:26:56 +05303692 /* Get block zones type and zone-capacity */
3693 FDEV(devi).zone_capacity_blocks = f2fs_kzalloc(sbi,
3694 FDEV(devi).nr_blkz * sizeof(block_t),
3695 GFP_KERNEL);
3696 if (!FDEV(devi).zone_capacity_blocks)
3697 return -ENOMEM;
3698
3699 rep_zone_arg.dev = &FDEV(devi);
3700 rep_zone_arg.zone_cap_mismatch = false;
3701
Christoph Hellwigd4100352019-11-11 11:39:30 +09003702 ret = blkdev_report_zones(bdev, 0, BLK_ALL_ZONES, f2fs_report_zone_cb,
Aravind Rameshde881df2020-07-16 18:26:56 +05303703 &rep_zone_arg);
Christoph Hellwigd4100352019-11-11 11:39:30 +09003704 if (ret < 0)
3705 return ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003706
Aravind Rameshde881df2020-07-16 18:26:56 +05303707 if (!rep_zone_arg.zone_cap_mismatch) {
3708 kfree(FDEV(devi).zone_capacity_blocks);
3709 FDEV(devi).zone_capacity_blocks = NULL;
3710 }
3711
Christoph Hellwigd4100352019-11-11 11:39:30 +09003712 return 0;
Damien Le Moal178053e2016-10-28 17:45:05 +09003713}
3714#endif
3715
Gu Zheng9076a752013-10-14 18:47:11 +08003716/*
3717 * Read f2fs raw super block.
Shawn Lin2b39e902016-02-17 08:59:01 +08003718 * Because we have two copies of super block, so read both of them
3719 * to get the first valid one. If any one of them is broken, we pass
3720 * them recovery flag back to the caller.
Gu Zheng9076a752013-10-14 18:47:11 +08003721 */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003722static int read_raw_super_block(struct f2fs_sb_info *sbi,
Gu Zheng9076a752013-10-14 18:47:11 +08003723 struct f2fs_super_block **raw_super,
Chao Yue8240f62015-12-15 17:19:26 +08003724 int *valid_super_block, int *recovery)
majianpeng14d7e9d2013-02-01 19:07:03 +08003725{
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003726 struct super_block *sb = sbi->sb;
Shawn Lin2b39e902016-02-17 08:59:01 +08003727 int block;
Chao Yue8240f62015-12-15 17:19:26 +08003728 struct buffer_head *bh;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003729 struct f2fs_super_block *super;
hujianyangda554e42015-05-21 14:42:53 +08003730 int err = 0;
majianpeng14d7e9d2013-02-01 19:07:03 +08003731
Yunlei Heb39f0de2015-12-15 17:17:20 +08003732 super = kzalloc(sizeof(struct f2fs_super_block), GFP_KERNEL);
3733 if (!super)
3734 return -ENOMEM;
Shawn Lin2b39e902016-02-17 08:59:01 +08003735
3736 for (block = 0; block < 2; block++) {
3737 bh = sb_bread(sb, block);
3738 if (!bh) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003739 f2fs_err(sbi, "Unable to read %dth superblock",
3740 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003741 err = -EIO;
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003742 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003743 continue;
3744 }
majianpeng14d7e9d2013-02-01 19:07:03 +08003745
Shawn Lin2b39e902016-02-17 08:59:01 +08003746 /* sanity checking of raw super */
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003747 err = sanity_check_raw_super(sbi, bh);
3748 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003749 f2fs_err(sbi, "Can't find valid F2FS filesystem in %dth superblock",
3750 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003751 brelse(bh);
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003752 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003753 continue;
3754 }
3755
3756 if (!*raw_super) {
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003757 memcpy(super, bh->b_data + F2FS_SUPER_OFFSET,
3758 sizeof(*super));
Shawn Lin2b39e902016-02-17 08:59:01 +08003759 *valid_super_block = block;
3760 *raw_super = super;
3761 }
Chao Yue8240f62015-12-15 17:19:26 +08003762 brelse(bh);
Shawn Lin2b39e902016-02-17 08:59:01 +08003763 }
3764
hujianyangda554e42015-05-21 14:42:53 +08003765 /* No valid superblock */
Shawn Lin2b39e902016-02-17 08:59:01 +08003766 if (!*raw_super)
Denis Efremov742532d2020-06-10 01:14:46 +03003767 kfree(super);
Shawn Lin2b39e902016-02-17 08:59:01 +08003768 else
3769 err = 0;
hujianyangda554e42015-05-21 14:42:53 +08003770
Shawn Lin2b39e902016-02-17 08:59:01 +08003771 return err;
majianpeng14d7e9d2013-02-01 19:07:03 +08003772}
3773
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003774int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003775{
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003776 struct buffer_head *bh;
Junling Zhengd440c522018-09-28 20:25:56 +08003777 __u32 crc = 0;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003778 int err;
3779
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003780 if ((recover && f2fs_readonly(sbi->sb)) ||
3781 bdev_read_only(sbi->sb->s_bdev)) {
3782 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003783 return -EROFS;
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003784 }
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003785
Junling Zhengd440c522018-09-28 20:25:56 +08003786 /* we should update superblock crc here */
Chao Yu7beb01f2018-10-24 18:34:26 +08003787 if (!recover && f2fs_sb_has_sb_chksum(sbi)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003788 crc = f2fs_crc32(sbi, F2FS_RAW_SUPER(sbi),
3789 offsetof(struct f2fs_super_block, crc));
3790 F2FS_RAW_SUPER(sbi)->crc = cpu_to_le32(crc);
3791 }
3792
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003793 /* write back-up superblock first */
Sheng Yong0964fc12018-01-29 19:13:15 +08003794 bh = sb_bread(sbi->sb, sbi->valid_super_block ? 0 : 1);
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003795 if (!bh)
3796 return -EIO;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003797 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003798 brelse(bh);
Chao Yuc5bda1c2015-06-08 13:28:03 +08003799
3800 /* if we are in recovery path, skip writing valid superblock */
3801 if (recover || err)
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003802 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003803
Chao Yue8240f62015-12-15 17:19:26 +08003804 /* write current valid superblock */
Sheng Yong0964fc12018-01-29 19:13:15 +08003805 bh = sb_bread(sbi->sb, sbi->valid_super_block);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003806 if (!bh)
3807 return -EIO;
3808 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
3809 brelse(bh);
3810 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003811}
3812
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003813static int f2fs_scan_devices(struct f2fs_sb_info *sbi)
3814{
3815 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003816 unsigned int max_devices = MAX_DEVICES;
Chao Yu71f2c822021-09-01 14:39:20 +08003817 unsigned int logical_blksize;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003818 int i;
3819
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003820 /* Initialize single device information */
3821 if (!RDEV(0).path[0]) {
3822 if (!bdev_is_zoned(sbi->sb->s_bdev))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003823 return 0;
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003824 max_devices = 1;
3825 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003826
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003827 /*
3828 * Initialize multiple devices information, or single
3829 * zoned block device information.
3830 */
Kees Cook026f0502018-06-12 14:28:23 -07003831 sbi->devs = f2fs_kzalloc(sbi,
3832 array_size(max_devices,
3833 sizeof(struct f2fs_dev_info)),
3834 GFP_KERNEL);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003835 if (!sbi->devs)
3836 return -ENOMEM;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003837
Chao Yu71f2c822021-09-01 14:39:20 +08003838 logical_blksize = bdev_logical_block_size(sbi->sb->s_bdev);
3839 sbi->aligned_blksize = true;
3840
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003841 for (i = 0; i < max_devices; i++) {
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003842
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003843 if (i > 0 && !RDEV(i).path[0])
3844 break;
3845
3846 if (max_devices == 1) {
3847 /* Single zoned block device mount */
3848 FDEV(0).bdev =
3849 blkdev_get_by_dev(sbi->sb->s_bdev->bd_dev,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003850 sbi->sb->s_mode, sbi->sb->s_type);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003851 } else {
3852 /* Multi-device mount */
3853 memcpy(FDEV(i).path, RDEV(i).path, MAX_PATH_LEN);
3854 FDEV(i).total_segments =
3855 le32_to_cpu(RDEV(i).total_segments);
3856 if (i == 0) {
3857 FDEV(i).start_blk = 0;
3858 FDEV(i).end_blk = FDEV(i).start_blk +
3859 (FDEV(i).total_segments <<
3860 sbi->log_blocks_per_seg) - 1 +
3861 le32_to_cpu(raw_super->segment0_blkaddr);
3862 } else {
3863 FDEV(i).start_blk = FDEV(i - 1).end_blk + 1;
3864 FDEV(i).end_blk = FDEV(i).start_blk +
3865 (FDEV(i).total_segments <<
3866 sbi->log_blocks_per_seg) - 1;
3867 }
3868 FDEV(i).bdev = blkdev_get_by_path(FDEV(i).path,
3869 sbi->sb->s_mode, sbi->sb->s_type);
3870 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003871 if (IS_ERR(FDEV(i).bdev))
3872 return PTR_ERR(FDEV(i).bdev);
3873
3874 /* to release errored devices */
3875 sbi->s_ndevs = i + 1;
3876
Chao Yu71f2c822021-09-01 14:39:20 +08003877 if (logical_blksize != bdev_logical_block_size(FDEV(i).bdev))
3878 sbi->aligned_blksize = false;
3879
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003880#ifdef CONFIG_BLK_DEV_ZONED
3881 if (bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HM &&
Chao Yu7beb01f2018-10-24 18:34:26 +08003882 !f2fs_sb_has_blkzoned(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07003883 f2fs_err(sbi, "Zoned block device feature not enabled");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003884 return -EINVAL;
3885 }
3886 if (bdev_zoned_model(FDEV(i).bdev) != BLK_ZONED_NONE) {
3887 if (init_blkz_info(sbi, i)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003888 f2fs_err(sbi, "Failed to initialize F2FS blkzone information");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003889 return -EINVAL;
3890 }
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003891 if (max_devices == 1)
3892 break;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003893 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x (zone: %s)",
3894 i, FDEV(i).path,
3895 FDEV(i).total_segments,
3896 FDEV(i).start_blk, FDEV(i).end_blk,
3897 bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HA ?
3898 "Host-aware" : "Host-managed");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003899 continue;
3900 }
3901#endif
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003902 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x",
3903 i, FDEV(i).path,
3904 FDEV(i).total_segments,
3905 FDEV(i).start_blk, FDEV(i).end_blk);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003906 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003907 f2fs_info(sbi,
3908 "IO Block Size: %8d KB", F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003909 return 0;
3910}
3911
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003912static int f2fs_setup_casefold(struct f2fs_sb_info *sbi)
3913{
3914#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003915 if (f2fs_sb_has_casefold(sbi) && !sbi->sb->s_encoding) {
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003916 const struct f2fs_sb_encodings *encoding_info;
3917 struct unicode_map *encoding;
3918 __u16 encoding_flags;
3919
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003920 if (f2fs_sb_read_encoding(sbi->raw_super, &encoding_info,
3921 &encoding_flags)) {
3922 f2fs_err(sbi,
3923 "Encoding requested by superblock is unknown");
3924 return -EINVAL;
3925 }
3926
3927 encoding = utf8_load(encoding_info->version);
3928 if (IS_ERR(encoding)) {
3929 f2fs_err(sbi,
3930 "can't mount with superblock charset: %s-%s "
3931 "not supported by the kernel. flags: 0x%x.",
3932 encoding_info->name, encoding_info->version,
3933 encoding_flags);
3934 return PTR_ERR(encoding);
3935 }
3936 f2fs_info(sbi, "Using encoding defined by superblock: "
3937 "%s-%s with flags 0x%hx", encoding_info->name,
3938 encoding_info->version?:"\b", encoding_flags);
3939
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003940 sbi->sb->s_encoding = encoding;
3941 sbi->sb->s_encoding_flags = encoding_flags;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003942 }
3943#else
3944 if (f2fs_sb_has_casefold(sbi)) {
3945 f2fs_err(sbi, "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
3946 return -EINVAL;
3947 }
3948#endif
3949 return 0;
3950}
3951
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003952static void f2fs_tuning_parameters(struct f2fs_sb_info *sbi)
3953{
3954 struct f2fs_sm_info *sm_i = SM_I(sbi);
3955
3956 /* adjust parameters according to the volume size */
3957 if (sm_i->main_segments <= SMALL_VOLUME_SEGMENTS) {
Chao Yu63189b72018-03-08 14:22:56 +08003958 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Chao Yu4f993262021-08-03 08:15:43 +08003959 if (f2fs_block_unit_discard(sbi))
3960 sm_i->dcc_info->discard_granularity = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003961 sm_i->ipu_policy = 1 << F2FS_IPU_FORCE;
3962 }
Chao Yu4cac90d2018-06-11 18:02:01 +08003963
3964 sbi->readdir_ra = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003965}
3966
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003967static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
3968{
3969 struct f2fs_sb_info *sbi;
hujianyangda554e42015-05-21 14:42:53 +08003970 struct f2fs_super_block *raw_super;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003971 struct inode *root;
Sheng Yong99e3e852016-05-11 17:08:14 +08003972 int err;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003973 bool skip_recovery = false, need_fsck = false;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003974 char *options = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003975 int recovery, i, valid_super_block;
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08003976 struct curseg_info *seg_i;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003977 int retry_cnt = 1;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003978
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07003979try_onemore:
hujianyangda554e42015-05-21 14:42:53 +08003980 err = -EINVAL;
3981 raw_super = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003982 valid_super_block = -1;
hujianyangda554e42015-05-21 14:42:53 +08003983 recovery = 0;
3984
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003985 /* allocate memory for f2fs-specific super block info */
3986 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
3987 if (!sbi)
3988 return -ENOMEM;
3989
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003990 sbi->sb = sb;
3991
Keith Mok43b65732016-03-02 12:04:24 -08003992 /* Load the checksum driver */
3993 sbi->s_chksum_driver = crypto_alloc_shash("crc32", 0, 0);
3994 if (IS_ERR(sbi->s_chksum_driver)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003995 f2fs_err(sbi, "Cannot load crc32 driver.");
Keith Mok43b65732016-03-02 12:04:24 -08003996 err = PTR_ERR(sbi->s_chksum_driver);
3997 sbi->s_chksum_driver = NULL;
3998 goto free_sbi;
3999 }
4000
Namjae Jeonff9234a2013-01-12 14:41:13 +09004001 /* set a block size */
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09004002 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004003 f2fs_err(sbi, "unable to set blocksize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004004 goto free_sbi;
Namjae Jeona07ef782012-12-30 14:52:05 +09004005 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004006
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07004007 err = read_raw_super_block(sbi, &raw_super, &valid_super_block,
Chao Yue8240f62015-12-15 17:19:26 +08004008 &recovery);
Gu Zheng9076a752013-10-14 18:47:11 +08004009 if (err)
4010 goto free_sbi;
4011
Gu Zheng5fb08372013-06-07 14:16:53 +08004012 sb->s_fs_info = sbi;
Jaegeuk Kim52763a42016-06-13 09:47:48 -07004013 sbi->raw_super = raw_super;
4014
Chao Yu704956e2017-07-31 20:19:09 +08004015 /* precompute checksum seed for metadata */
Chao Yu7beb01f2018-10-24 18:34:26 +08004016 if (f2fs_sb_has_inode_chksum(sbi))
Chao Yu704956e2017-07-31 20:19:09 +08004017 sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
4018 sizeof(raw_super->uuid));
4019
Yunlei He498c5e92015-05-07 18:11:37 +08004020 default_options(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004021 /* parse mount options */
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08004022 options = kstrdup((const char *)data, GFP_KERNEL);
4023 if (data && !options) {
4024 err = -ENOMEM;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004025 goto free_sb_buf;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08004026 }
4027
Eric Biggersed318a62020-05-12 16:32:50 -07004028 err = parse_options(sb, options, false);
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08004029 if (err)
4030 goto free_options;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004031
Chengguang Xu6d1451b2021-01-13 13:21:54 +08004032 sb->s_maxbytes = max_file_blocks(NULL) <<
Chao Yue0afc4d2015-12-31 14:35:37 +08004033 le32_to_cpu(raw_super->log_blocksize);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004034 sb->s_max_links = F2FS_LINK_MAX;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004035
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004036 err = f2fs_setup_casefold(sbi);
4037 if (err)
4038 goto free_options;
4039
Chao Yu0abd6752017-07-09 00:13:07 +08004040#ifdef CONFIG_QUOTA
4041 sb->dq_op = &f2fs_quota_operations;
Jaegeuk Kimbc88ac92019-05-20 16:17:56 -07004042 sb->s_qcop = &f2fs_quotactl_ops;
Chao Yu5c571322017-07-26 00:01:41 +08004043 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Chao Yu292c196a2017-11-16 16:59:14 +08004044
Chao Yu7beb01f2018-10-24 18:34:26 +08004045 if (f2fs_sb_has_quota_ino(sbi)) {
Chao Yu292c196a2017-11-16 16:59:14 +08004046 for (i = 0; i < MAXQUOTAS; i++) {
4047 if (f2fs_qf_ino(sbi->sb, i))
4048 sbi->nquota_files++;
4049 }
4050 }
Chao Yu0abd6752017-07-09 00:13:07 +08004051#endif
4052
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004053 sb->s_op = &f2fs_sops;
Chandan Rajendra643fa962018-12-12 15:20:12 +05304054#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07004055 sb->s_cop = &f2fs_cryptops;
Eric Biggersffcc41822017-10-09 12:15:38 -07004056#endif
Eric Biggers95ae2512019-07-22 09:26:24 -07004057#ifdef CONFIG_FS_VERITY
4058 sb->s_vop = &f2fs_verityops;
4059#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004060 sb->s_xattr = f2fs_xattr_handlers;
4061 sb->s_export_op = &f2fs_export_ops;
4062 sb->s_magic = F2FS_SUPER_MAGIC;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004063 sb->s_time_gran = 1;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08004064 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
4065 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Christoph Hellwig85787092017-05-10 15:06:33 +02004066 memcpy(&sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
Yufen Yu578c6472018-01-09 19:33:39 +08004067 sb->s_iflags |= SB_I_CGROUPWB;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004068
4069 /* init f2fs-specific super block info */
Chao Yue8240f62015-12-15 17:19:26 +08004070 sbi->valid_super_block = valid_super_block;
Chao Yufb24fea2020-01-14 19:36:50 +08004071 init_rwsem(&sbi->gc_lock);
Jaegeuk Kim853137c2018-08-09 17:53:34 -07004072 mutex_init(&sbi->writepages);
Sahitya Tummala87699182020-11-23 10:58:32 +05304073 init_rwsem(&sbi->cp_global_sem);
Chao Yub3582c62014-07-03 18:58:39 +08004074 init_rwsem(&sbi->node_write);
Yunlei He59c90812017-03-13 20:22:18 +08004075 init_rwsem(&sbi->node_change);
Jaegeuk Kim315df832015-08-11 12:45:39 -07004076
4077 /* disallow all the data/node/meta page writes */
4078 set_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004079 spin_lock_init(&sbi->stat_lock);
Jaegeuk Kim971767c2013-11-18 17:16:17 +09004080
Jaegeuk Kim458e6192013-12-11 13:54:01 +09004081 for (i = 0; i < NR_PAGE_TYPE; i++) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08004082 int n = (i == META) ? 1 : NR_TEMP_TYPE;
Jaegeuk Kima912b542017-05-10 11:18:25 -07004083 int j;
4084
Kees Cookc8606592018-06-12 14:28:16 -07004085 sbi->write_io[i] =
4086 f2fs_kmalloc(sbi,
4087 array_size(n,
4088 sizeof(struct f2fs_bio_info)),
4089 GFP_KERNEL);
Christophe JAILLETb63def92017-06-11 09:21:11 +02004090 if (!sbi->write_io[i]) {
4091 err = -ENOMEM;
Chao Yu0b2103e82018-09-05 14:54:01 +08004092 goto free_bio_info;
Christophe JAILLETb63def92017-06-11 09:21:11 +02004093 }
Jaegeuk Kima912b542017-05-10 11:18:25 -07004094
4095 for (j = HOT; j < n; j++) {
4096 init_rwsem(&sbi->write_io[i][j].io_rwsem);
4097 sbi->write_io[i][j].sbi = sbi;
4098 sbi->write_io[i][j].bio = NULL;
Chao Yufb830fc2017-05-19 23:37:01 +08004099 spin_lock_init(&sbi->write_io[i][j].io_lock);
4100 INIT_LIST_HEAD(&sbi->write_io[i][j].io_list);
Chao Yu0b20fce2019-09-30 18:53:25 +08004101 INIT_LIST_HEAD(&sbi->write_io[i][j].bio_list);
4102 init_rwsem(&sbi->write_io[i][j].bio_list_lock);
Jaegeuk Kima912b542017-05-10 11:18:25 -07004103 }
Jaegeuk Kim458e6192013-12-11 13:54:01 +09004104 }
Jaegeuk Kim971767c2013-11-18 17:16:17 +09004105
Jaegeuk Kimb873b792016-08-04 11:38:25 -07004106 init_rwsem(&sbi->cp_rwsem);
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07004107 init_rwsem(&sbi->quota_sem);
Changman Leefb51b5e2013-11-07 12:48:25 +09004108 init_waitqueue_head(&sbi->cp_wait);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004109 init_sb_info(sbi);
4110
Daeho Jeong52118742021-08-19 20:52:28 -07004111 err = f2fs_init_iostat(sbi);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07004112 if (err)
Chao Yud7997e62018-01-17 16:31:35 +08004113 goto free_bio_info;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07004114
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004115 err = init_percpu_info(sbi);
4116 if (err)
Daeho Jeonga4b68172021-08-20 15:29:09 -07004117 goto free_iostat;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004118
Chao Yuc72db712019-07-12 16:55:42 +08004119 if (F2FS_IO_ALIGNED(sbi)) {
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004120 sbi->write_io_dummy =
Chao Yua3ebfe42017-02-27 18:43:13 +08004121 mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi) - 1), 0);
Chao Yu1727f312017-06-12 09:44:27 +08004122 if (!sbi->write_io_dummy) {
4123 err = -ENOMEM;
Chao Yud7997e62018-01-17 16:31:35 +08004124 goto free_percpu;
Chao Yu1727f312017-06-12 09:44:27 +08004125 }
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004126 }
4127
Chao Yua9991502020-02-25 18:17:10 +08004128 /* init per sbi slab cache */
4129 err = f2fs_init_xattr_caches(sbi);
4130 if (err)
4131 goto free_io_dummy;
Chao Yu31083032020-09-14 17:05:13 +08004132 err = f2fs_init_page_array_cache(sbi);
4133 if (err)
4134 goto free_xattr_cache;
Chao Yua9991502020-02-25 18:17:10 +08004135
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004136 /* get an inode for meta space */
4137 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
4138 if (IS_ERR(sbi->meta_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004139 f2fs_err(sbi, "Failed to read F2FS meta data inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004140 err = PTR_ERR(sbi->meta_inode);
Chao Yu31083032020-09-14 17:05:13 +08004141 goto free_page_array_cache;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004142 }
4143
Chao Yu4d57b862018-05-30 00:20:41 +08004144 err = f2fs_get_valid_checkpoint(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004145 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004146 f2fs_err(sbi, "Failed to get valid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004147 goto free_meta_inode;
Namjae Jeona07ef782012-12-30 14:52:05 +09004148 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004149
Chao Yuaf033b22018-09-20 20:05:00 +08004150 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_QUOTA_NEED_FSCK_FLAG))
4151 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004152 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_DISABLED_QUICK_FLAG)) {
4153 set_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
4154 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_QUICK_INTERVAL;
4155 }
Chao Yuaf033b22018-09-20 20:05:00 +08004156
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08004157 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FSCK_FLAG))
4158 set_sbi_flag(sbi, SBI_NEED_FSCK);
4159
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004160 /* Initialize device list */
4161 err = f2fs_scan_devices(sbi);
4162 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004163 f2fs_err(sbi, "Failed to find devices");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004164 goto free_devices;
4165 }
4166
Chao Yu4c8ff702019-11-01 18:07:14 +08004167 err = f2fs_init_post_read_wq(sbi);
4168 if (err) {
4169 f2fs_err(sbi, "Failed to initialize post read workqueue");
4170 goto free_devices;
4171 }
4172
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004173 sbi->total_valid_node_count =
4174 le32_to_cpu(sbi->ckpt->valid_node_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07004175 percpu_counter_set(&sbi->total_valid_inode_count,
4176 le32_to_cpu(sbi->ckpt->valid_inode_count));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004177 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
4178 sbi->total_valid_block_count =
4179 le64_to_cpu(sbi->ckpt->valid_block_count);
4180 sbi->last_valid_block_count = sbi->total_valid_block_count;
Chao Yudaeb4332017-06-26 16:24:41 +08004181 sbi->reserved_blocks = 0;
Yunlong Song80d42142017-10-27 20:45:05 +08004182 sbi->current_reserved_blocks = 0;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08004183 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07004184 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07004185
Chao Yuc227f912015-12-16 13:09:20 +08004186 for (i = 0; i < NR_INODE_TYPE; i++) {
4187 INIT_LIST_HEAD(&sbi->inode_list[i]);
4188 spin_lock_init(&sbi->inode_lock[i]);
4189 }
Chao Yu040d2bb2019-05-20 17:36:59 +08004190 mutex_init(&sbi->flush_lock);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004191
Chao Yu4d57b862018-05-30 00:20:41 +08004192 f2fs_init_extent_cache_info(sbi);
Chao Yu1dcc3362015-02-05 17:57:31 +08004193
Chao Yu4d57b862018-05-30 00:20:41 +08004194 f2fs_init_ino_entry_info(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004195
Chao Yu50fa53e2018-08-02 23:03:19 +08004196 f2fs_init_fsync_node_info(sbi);
4197
Daeho Jeong261eeb92021-01-19 09:00:42 +09004198 /* setup checkpoint request control and start checkpoint issue thread */
4199 f2fs_init_ckpt_req_control(sbi);
Chao Yu3f7070b2021-03-17 17:56:03 +08004200 if (!f2fs_readonly(sb) && !test_opt(sbi, DISABLE_CHECKPOINT) &&
Daeho Jeong261eeb92021-01-19 09:00:42 +09004201 test_opt(sbi, MERGE_CHECKPOINT)) {
4202 err = f2fs_start_ckpt_thread(sbi);
4203 if (err) {
4204 f2fs_err(sbi,
4205 "Failed to start F2FS issue_checkpoint_thread (%d)",
4206 err);
4207 goto stop_ckpt_thread;
4208 }
4209 }
4210
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004211 /* setup f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08004212 err = f2fs_build_segment_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004213 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004214 f2fs_err(sbi, "Failed to initialize F2FS segment manager (%d)",
4215 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004216 goto free_sm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004217 }
Chao Yu4d57b862018-05-30 00:20:41 +08004218 err = f2fs_build_node_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004219 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004220 f2fs_err(sbi, "Failed to initialize F2FS node manager (%d)",
4221 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004222 goto free_nm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004223 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004224
Chao Yu300a84292021-12-11 21:27:36 +08004225 err = adjust_reserved_segment(sbi);
4226 if (err)
4227 goto free_nm;
4228
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004229 /* For write statistics */
Chao Yu3a0a9cb2020-11-27 21:20:06 +08004230 sbi->sectors_written_start = f2fs_get_sectors_written(sbi);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004231
4232 /* Read accumulated write IO statistics if exists */
4233 seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
4234 if (__exist_node_summaries(sbi))
4235 sbi->kbytes_written =
Shuoran Liub2dde6f2016-03-29 18:00:15 +08004236 le64_to_cpu(seg_i->journal->info.kbytes_written);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004237
Chao Yu4d57b862018-05-30 00:20:41 +08004238 f2fs_build_gc_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004239
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304240 err = f2fs_build_stats(sbi);
4241 if (err)
4242 goto free_nm;
4243
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004244 /* get an inode for node space */
4245 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
4246 if (IS_ERR(sbi->node_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004247 f2fs_err(sbi, "Failed to read node inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004248 err = PTR_ERR(sbi->node_inode);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304249 goto free_stats;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004250 }
4251
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004252 /* read root inode and dentry */
4253 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
4254 if (IS_ERR(root)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004255 f2fs_err(sbi, "Failed to read root inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004256 err = PTR_ERR(root);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304257 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004258 }
Chao Yubcbfbd62018-06-29 00:19:25 +08004259 if (!S_ISDIR(root->i_mode) || !root->i_blocks ||
4260 !root->i_size || !root->i_nlink) {
Chao Yu9d847952014-07-25 12:55:09 +08004261 iput(root);
Chao Yu8f99a942013-11-28 15:43:43 +08004262 err = -EINVAL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304263 goto free_node_inode;
Chao Yu8f99a942013-11-28 15:43:43 +08004264 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004265
4266 sb->s_root = d_make_root(root); /* allocate root dentry */
4267 if (!sb->s_root) {
4268 err = -ENOMEM;
Chengguang Xu025cdb162019-01-23 15:49:44 +08004269 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004270 }
4271
Chao Yu6ce19af2021-05-20 19:51:50 +08004272 err = f2fs_init_compress_inode(sbi);
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004273 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004274 goto free_root_inode;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004275
Chao Yu6ce19af2021-05-20 19:51:50 +08004276 err = f2fs_register_sysfs(sbi);
4277 if (err)
4278 goto free_compress_inode;
4279
Jaegeuk Kimea676732017-10-06 09:14:28 -07004280#ifdef CONFIG_QUOTA
Sheng Yong76cf05d2018-07-26 19:24:25 +08004281 /* Enable quota usage during mount */
Chao Yu7beb01f2018-10-24 18:34:26 +08004282 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07004283 err = f2fs_enable_quotas(sb);
Jaegeuk Kim730746c2018-10-02 17:20:58 -07004284 if (err)
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004285 f2fs_err(sbi, "Cannot turn on quotas: error %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07004286 }
4287#endif
Chao Yu7a88ddb2020-02-27 19:30:05 +08004288 /* if there are any orphan inodes, free them */
Chao Yu4d57b862018-05-30 00:20:41 +08004289 err = f2fs_recover_orphan_inodes(sbi);
Chao Yu4b2414d2017-08-08 10:54:31 +08004290 if (err)
Jaegeuk Kimea676732017-10-06 09:14:28 -07004291 goto free_meta;
Chao Yu4b2414d2017-08-08 10:54:31 +08004292
Daniel Rosenberg43549942018-08-20 19:21:43 -07004293 if (unlikely(is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)))
Chao Yuaa2c8c42019-02-19 16:23:53 +08004294 goto reset_checkpoint;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004295
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004296 /* recover fsynced data */
Chao Yua9117ec2020-02-14 17:45:11 +08004297 if (!test_opt(sbi, DISABLE_ROLL_FORWARD) &&
4298 !test_opt(sbi, NORECOVERY)) {
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004299 /*
4300 * mount should be failed, when device has readonly mode, and
4301 * previous checkpoint was not done by clean system shutdown.
4302 */
Chao Yub61af312019-04-22 20:22:37 +08004303 if (f2fs_hw_is_readonly(sbi)) {
Chao Yu23738e72021-03-31 11:16:32 +08004304 if (!is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4305 err = f2fs_recover_fsync_data(sbi, true);
4306 if (err > 0) {
4307 err = -EROFS;
4308 f2fs_err(sbi, "Need to recover fsync data, but "
4309 "write access unavailable, please try "
4310 "mount w/ disable_roll_forward or norecovery");
4311 }
4312 if (err < 0)
4313 goto free_meta;
4314 }
4315 f2fs_info(sbi, "write access unavailable, skipping recovery");
Chao Yub61af312019-04-22 20:22:37 +08004316 goto reset_checkpoint;
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004317 }
Chao Yu2adc3502015-03-16 21:08:44 +08004318
4319 if (need_fsck)
4320 set_sbi_flag(sbi, SBI_NEED_FSCK);
4321
Chao Yuaa2c8c42019-02-19 16:23:53 +08004322 if (skip_recovery)
4323 goto reset_checkpoint;
Jaegeuk Kima468f0e2016-09-19 17:55:10 -07004324
Chao Yu4d57b862018-05-30 00:20:41 +08004325 err = f2fs_recover_fsync_data(sbi, false);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004326 if (err < 0) {
Chao Yuaa2c8c42019-02-19 16:23:53 +08004327 if (err != -ENOMEM)
4328 skip_recovery = true;
Chao Yu2adc3502015-03-16 21:08:44 +08004329 need_fsck = true;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004330 f2fs_err(sbi, "Cannot recover all fsync data errno=%d",
4331 err);
Chao Yu4b2414d2017-08-08 10:54:31 +08004332 goto free_meta;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004333 }
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004334 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08004335 err = f2fs_recover_fsync_data(sbi, true);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004336
4337 if (!f2fs_readonly(sb) && err > 0) {
4338 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004339 f2fs_err(sbi, "Need to recover fsync data");
Jaegeuk Kimea676732017-10-06 09:14:28 -07004340 goto free_meta;
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004341 }
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004342 }
Shin'ichiro Kawasakid508c942019-12-09 19:44:45 +09004343
4344 /*
4345 * If the f2fs is not readonly and fsync data recovery succeeds,
4346 * check zoned block devices' write pointer consistency.
4347 */
4348 if (!err && !f2fs_readonly(sb) && f2fs_sb_has_blkzoned(sbi)) {
4349 err = f2fs_check_write_pointer(sbi);
4350 if (err)
4351 goto free_meta;
4352 }
4353
Chao Yuaa2c8c42019-02-19 16:23:53 +08004354reset_checkpoint:
Chao Yu093749e2020-08-04 21:14:49 +08004355 f2fs_init_inmem_curseg(sbi);
4356
Chao Yu4d57b862018-05-30 00:20:41 +08004357 /* f2fs_recover_fsync_data() cleared this already */
Jaegeuk Kim315df832015-08-11 12:45:39 -07004358 clear_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004359
Daniel Rosenberg43549942018-08-20 19:21:43 -07004360 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
4361 err = f2fs_disable_checkpoint(sbi);
4362 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004363 goto sync_free_meta;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004364 } else if (is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)) {
4365 f2fs_enable_checkpoint(sbi);
4366 }
4367
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004368 /*
4369 * If filesystem is not mounted as read-only then
4370 * do start the gc_thread.
4371 */
Chao Yu5911d2d2021-03-27 17:57:06 +08004372 if ((F2FS_OPTION(sbi).bggc_mode != BGGC_MODE_OFF ||
4373 test_opt(sbi, GC_MERGE)) && !f2fs_readonly(sb)) {
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004374 /* After POR, we can run background GC thread.*/
Chao Yu4d57b862018-05-30 00:20:41 +08004375 err = f2fs_start_gc_thread(sbi);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004376 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004377 goto sync_free_meta;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004378 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08004379 kvfree(options);
hujianyangda554e42015-05-21 14:42:53 +08004380
4381 /* recover broken superblock */
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07004382 if (recovery) {
Chao Yu41214b32016-02-22 18:33:20 +08004383 err = f2fs_commit_super(sbi, true);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004384 f2fs_info(sbi, "Try to recover %dth superblock, ret: %d",
4385 sbi->valid_super_block ? 1 : 2, err);
hujianyangda554e42015-05-21 14:42:53 +08004386 }
4387
Chao Yubae01ed2017-11-30 19:28:20 +08004388 f2fs_join_shrinker(sbi);
4389
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08004390 f2fs_tuning_parameters(sbi);
4391
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004392 f2fs_notice(sbi, "Mounted with checkpoint version = %llx",
4393 cur_cp_version(F2FS_CKPT(sbi)));
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08004394 f2fs_update_time(sbi, CP_TIME);
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08004395 f2fs_update_time(sbi, REQ_TIME);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004396 clear_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004397 return 0;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004398
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004399sync_free_meta:
4400 /* safe to flush all the data */
4401 sync_filesystem(sbi->sb);
Chao Yuaa2c8c42019-02-19 16:23:53 +08004402 retry_cnt = 0;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004403
Chao Yu4b2414d2017-08-08 10:54:31 +08004404free_meta:
Jaegeuk Kimea676732017-10-06 09:14:28 -07004405#ifdef CONFIG_QUOTA
Sheng Yong26b5a072018-10-12 18:49:26 +08004406 f2fs_truncate_quota_inode_pages(sb);
Chao Yu7beb01f2018-10-24 18:34:26 +08004407 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb))
Jaegeuk Kimea676732017-10-06 09:14:28 -07004408 f2fs_quota_off_umount(sbi->sb);
4409#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08004410 /*
Chao Yu4d57b862018-05-30 00:20:41 +08004411 * Some dirty meta pages can be produced by f2fs_recover_orphan_inodes()
Chao Yu4b2414d2017-08-08 10:54:31 +08004412 * failed by EIO. Then, iput(node_inode) can trigger balance_fs_bg()
Chao Yu4d57b862018-05-30 00:20:41 +08004413 * followed by f2fs_write_checkpoint() through f2fs_write_node_pages(), which
4414 * falls into an infinite loop in f2fs_sync_meta_pages().
Chao Yu4b2414d2017-08-08 10:54:31 +08004415 */
4416 truncate_inode_pages_final(META_MAPPING(sbi));
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004417 /* evict some inodes being cached by GC */
4418 evict_inodes(sb);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004419 f2fs_unregister_sysfs(sbi);
Chao Yu6ce19af2021-05-20 19:51:50 +08004420free_compress_inode:
4421 f2fs_destroy_compress_inode(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004422free_root_inode:
4423 dput(sb->s_root);
4424 sb->s_root = NULL;
Chao Yubae01ed2017-11-30 19:28:20 +08004425free_node_inode:
Chao Yu4d57b862018-05-30 00:20:41 +08004426 f2fs_release_ino_entry(sbi, true);
Chao Yubae01ed2017-11-30 19:28:20 +08004427 truncate_inode_pages_final(NODE_MAPPING(sbi));
4428 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004429 sbi->node_inode = NULL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304430free_stats:
4431 f2fs_destroy_stats(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004432free_nm:
Dongliang Mu5429c9d2021-11-04 16:22:01 +08004433 /* stop discard thread before destroying node manager */
4434 f2fs_stop_discard_thread(sbi);
Chao Yu4d57b862018-05-30 00:20:41 +08004435 f2fs_destroy_node_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004436free_sm:
Chao Yu4d57b862018-05-30 00:20:41 +08004437 f2fs_destroy_segment_manager(sbi);
Chao Yu4c8ff702019-11-01 18:07:14 +08004438 f2fs_destroy_post_read_wq(sbi);
Daeho Jeong261eeb92021-01-19 09:00:42 +09004439stop_ckpt_thread:
4440 f2fs_stop_ckpt_thread(sbi);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004441free_devices:
4442 destroy_device_list(sbi);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004443 kvfree(sbi->ckpt);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004444free_meta_inode:
4445 make_bad_inode(sbi->meta_inode);
4446 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004447 sbi->meta_inode = NULL;
Chao Yu31083032020-09-14 17:05:13 +08004448free_page_array_cache:
4449 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08004450free_xattr_cache:
4451 f2fs_destroy_xattr_caches(sbi);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004452free_io_dummy:
4453 mempool_destroy(sbi->write_io_dummy);
Chao Yud7997e62018-01-17 16:31:35 +08004454free_percpu:
4455 destroy_percpu_info(sbi);
Daeho Jeonga4b68172021-08-20 15:29:09 -07004456free_iostat:
4457 f2fs_destroy_iostat(sbi);
Chao Yud7997e62018-01-17 16:31:35 +08004458free_bio_info:
Jaegeuk Kima912b542017-05-10 11:18:25 -07004459 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08004460 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004461
4462#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07004463 utf8_unload(sb->s_encoding);
Hyeongseok Kim89ff6002020-11-12 18:14:54 +09004464 sb->s_encoding = NULL;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004465#endif
Chao Yud7997e62018-01-17 16:31:35 +08004466free_options:
Chao Yu4b2414d2017-08-08 10:54:31 +08004467#ifdef CONFIG_QUOTA
4468 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08004469 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08004470#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07004471 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004472 kvfree(options);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004473free_sb_buf:
Denis Efremov742532d2020-06-10 01:14:46 +03004474 kfree(raw_super);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004475free_sbi:
Keith Mok43b65732016-03-02 12:04:24 -08004476 if (sbi->s_chksum_driver)
4477 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03004478 kfree(sbi);
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004479
4480 /* give only one another chance */
Chao Yuaa2c8c42019-02-19 16:23:53 +08004481 if (retry_cnt > 0 && skip_recovery) {
4482 retry_cnt--;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004483 shrink_dcache_sb(sb);
4484 goto try_onemore;
4485 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004486 return err;
4487}
4488
4489static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
4490 const char *dev_name, void *data)
4491{
4492 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
4493}
4494
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004495static void kill_f2fs_super(struct super_block *sb)
4496{
Chao Yucce13252017-06-29 23:17:45 +08004497 if (sb->s_root) {
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004498 struct f2fs_sb_info *sbi = F2FS_SB(sb);
4499
4500 set_sbi_flag(sbi, SBI_IS_CLOSE);
4501 f2fs_stop_gc_thread(sbi);
4502 f2fs_stop_discard_thread(sbi);
4503
Chao Yu6ce19af2021-05-20 19:51:50 +08004504#ifdef CONFIG_F2FS_FS_COMPRESSION
4505 /*
4506 * latter evict_inode() can bypass checking and invalidating
4507 * compress inode cache.
4508 */
4509 if (test_opt(sbi, COMPRESS_CACHE))
4510 truncate_inode_pages_final(COMPRESS_MAPPING(sbi));
4511#endif
4512
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004513 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
4514 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4515 struct cp_control cpc = {
4516 .reason = CP_UMOUNT,
4517 };
4518 f2fs_write_checkpoint(sbi, &cpc);
4519 }
Chao Yu13787522018-08-22 17:11:05 +08004520
4521 if (is_sbi_flag_set(sbi, SBI_IS_RECOVERED) && f2fs_readonly(sb))
4522 sb->s_flags &= ~SB_RDONLY;
Chao Yucce13252017-06-29 23:17:45 +08004523 }
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004524 kill_block_super(sb);
4525}
4526
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004527static struct file_system_type f2fs_fs_type = {
4528 .owner = THIS_MODULE,
4529 .name = "f2fs",
4530 .mount = f2fs_mount,
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004531 .kill_sb = kill_f2fs_super,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004532 .fs_flags = FS_REQUIRES_DEV,
4533};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08004534MODULE_ALIAS_FS("f2fs");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004535
Namjae Jeon6e6093a2013-01-17 00:08:30 +09004536static int __init init_inodecache(void)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004537{
Vladimir Davydov5d097052016-01-14 15:18:21 -08004538 f2fs_inode_cachep = kmem_cache_create("f2fs_inode_cache",
4539 sizeof(struct f2fs_inode_info), 0,
4540 SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT, NULL);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09004541 if (!f2fs_inode_cachep)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004542 return -ENOMEM;
4543 return 0;
4544}
4545
4546static void destroy_inodecache(void)
4547{
4548 /*
4549 * Make sure all delayed rcu free inodes are flushed before we
4550 * destroy cache.
4551 */
4552 rcu_barrier();
4553 kmem_cache_destroy(f2fs_inode_cachep);
4554}
4555
4556static int __init init_f2fs_fs(void)
4557{
4558 int err;
4559
Anatoly Pugachev4071e672018-05-28 02:06:37 +03004560 if (PAGE_SIZE != F2FS_BLKSIZE) {
4561 printk("F2FS not supported on PAGE_SIZE(%lu) != %d\n",
4562 PAGE_SIZE, F2FS_BLKSIZE);
4563 return -EINVAL;
4564 }
4565
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004566 err = init_inodecache();
4567 if (err)
4568 goto fail;
Chao Yu4d57b862018-05-30 00:20:41 +08004569 err = f2fs_create_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004570 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004571 goto free_inodecache;
Chao Yu4d57b862018-05-30 00:20:41 +08004572 err = f2fs_create_segment_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004573 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004574 goto free_node_manager_caches;
Chao Yu4d57b862018-05-30 00:20:41 +08004575 err = f2fs_create_checkpoint_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004576 if (err)
Chao Yu06292072014-12-29 15:56:18 +08004577 goto free_segment_manager_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004578 err = f2fs_create_recovery_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004579 if (err)
4580 goto free_checkpoint_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004581 err = f2fs_create_extent_cache();
4582 if (err)
4583 goto free_recovery_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004584 err = f2fs_create_garbage_collection_cache();
Chao Yua3981012017-06-14 17:39:46 +08004585 if (err)
Chao Yu1dcc3362015-02-05 17:57:31 +08004586 goto free_extent_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004587 err = f2fs_init_sysfs();
4588 if (err)
4589 goto free_garbage_collection_cache;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004590 err = register_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimcfc4d972015-05-15 15:37:24 -07004591 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004592 goto free_sysfs;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004593 err = register_filesystem(&f2fs_fs_type);
4594 if (err)
4595 goto free_shrinker;
Greg Kroah-Hartman21acc072019-01-04 14:26:18 +01004596 f2fs_create_root_stats();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004597 err = f2fs_init_post_read_processing();
4598 if (err)
4599 goto free_root_stats;
Daeho Jeonga4b68172021-08-20 15:29:09 -07004600 err = f2fs_init_iostat_processing();
Chao Yu0b20fce2019-09-30 18:53:25 +08004601 if (err)
4602 goto free_post_read;
Daeho Jeonga4b68172021-08-20 15:29:09 -07004603 err = f2fs_init_bio_entry_cache();
4604 if (err)
4605 goto free_iostat;
Chao Yuf5438052019-12-04 09:52:58 +08004606 err = f2fs_init_bioset();
4607 if (err)
4608 goto free_bio_enrty_cache;
Chao Yu5e6bbde2020-04-08 19:56:05 +08004609 err = f2fs_init_compress_mempool();
4610 if (err)
4611 goto free_bioset;
Chao Yuc68d6c82020-09-14 17:05:14 +08004612 err = f2fs_init_compress_cache();
4613 if (err)
4614 goto free_compress_mempool;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004615 err = f2fs_create_casefold_cache();
4616 if (err)
4617 goto free_compress_cache;
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004618 return 0;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004619free_compress_cache:
4620 f2fs_destroy_compress_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004621free_compress_mempool:
4622 f2fs_destroy_compress_mempool();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004623free_bioset:
4624 f2fs_destroy_bioset();
Chao Yuf5438052019-12-04 09:52:58 +08004625free_bio_enrty_cache:
4626 f2fs_destroy_bio_entry_cache();
Daeho Jeonga4b68172021-08-20 15:29:09 -07004627free_iostat:
4628 f2fs_destroy_iostat_processing();
Chao Yu0b20fce2019-09-30 18:53:25 +08004629free_post_read:
4630 f2fs_destroy_post_read_processing();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004631free_root_stats:
4632 f2fs_destroy_root_stats();
Chao Yu787c7b8c2015-10-29 09:13:04 +08004633 unregister_filesystem(&f2fs_fs_type);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004634free_shrinker:
4635 unregister_shrinker(&f2fs_shrinker_info);
Chao Yua3981012017-06-14 17:39:46 +08004636free_sysfs:
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004637 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004638free_garbage_collection_cache:
4639 f2fs_destroy_garbage_collection_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004640free_extent_cache:
Chao Yu4d57b862018-05-30 00:20:41 +08004641 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004642free_recovery_cache:
4643 f2fs_destroy_recovery_cache();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004644free_checkpoint_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004645 f2fs_destroy_checkpoint_caches();
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004646free_segment_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004647 f2fs_destroy_segment_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004648free_node_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004649 f2fs_destroy_node_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004650free_inodecache:
4651 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004652fail:
4653 return err;
4654}
4655
4656static void __exit exit_f2fs_fs(void)
4657{
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004658 f2fs_destroy_casefold_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004659 f2fs_destroy_compress_cache();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004660 f2fs_destroy_compress_mempool();
Chao Yuf5438052019-12-04 09:52:58 +08004661 f2fs_destroy_bioset();
Chao Yu0b20fce2019-09-30 18:53:25 +08004662 f2fs_destroy_bio_entry_cache();
Daeho Jeonga4b68172021-08-20 15:29:09 -07004663 f2fs_destroy_iostat_processing();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004664 f2fs_destroy_post_read_processing();
Namjae Jeon4589d252013-01-15 19:58:47 +09004665 f2fs_destroy_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004666 unregister_filesystem(&f2fs_fs_type);
Tiezhu Yangb8bef792016-05-18 08:02:25 +08004667 unregister_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004668 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004669 f2fs_destroy_garbage_collection_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004670 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004671 f2fs_destroy_recovery_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004672 f2fs_destroy_checkpoint_caches();
4673 f2fs_destroy_segment_manager_caches();
4674 f2fs_destroy_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004675 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004676}
4677
4678module_init(init_f2fs_fs)
4679module_exit(exit_f2fs_fs)
4680
4681MODULE_AUTHOR("Samsung Electronics's Praesto Team");
4682MODULE_DESCRIPTION("Flash Friendly File System");
4683MODULE_LICENSE("GPL");
Chao Yu0dd57172021-05-18 09:57:54 +08004684MODULE_SOFTDEP("pre: crc32");
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07004685