1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
8 #include <linux/module.h>
9 #include <linux/init.h>
11 #include <linux/statfs.h>
12 #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>
18 #include <linux/proc_fs.h>
19 #include <linux/random.h>
20 #include <linux/exportfs.h>
21 #include <linux/blkdev.h>
22 #include <linux/quotaops.h>
23 #include <linux/f2fs_fs.h>
24 #include <linux/sysfs.h>
25 #include <linux/quota.h>
26 #include <linux/unicode.h>
35 #define CREATE_TRACE_POINTS
36 #include <trace/events/f2fs.h>
38 static struct kmem_cache
*f2fs_inode_cachep
;
40 #ifdef CONFIG_F2FS_FAULT_INJECTION
42 const char *f2fs_fault_name
[FAULT_MAX
] = {
43 [FAULT_KMALLOC
] = "kmalloc",
44 [FAULT_KVMALLOC
] = "kvmalloc",
45 [FAULT_PAGE_ALLOC
] = "page alloc",
46 [FAULT_PAGE_GET
] = "page get",
47 [FAULT_ALLOC_BIO
] = "alloc bio",
48 [FAULT_ALLOC_NID
] = "alloc nid",
49 [FAULT_ORPHAN
] = "orphan",
50 [FAULT_BLOCK
] = "no more block",
51 [FAULT_DIR_DEPTH
] = "too big dir depth",
52 [FAULT_EVICT_INODE
] = "evict_inode fail",
53 [FAULT_TRUNCATE
] = "truncate fail",
54 [FAULT_READ_IO
] = "read IO error",
55 [FAULT_CHECKPOINT
] = "checkpoint error",
56 [FAULT_DISCARD
] = "discard error",
57 [FAULT_WRITE_IO
] = "write IO error",
60 void f2fs_build_fault_attr(struct f2fs_sb_info
*sbi
, unsigned int rate
,
63 struct f2fs_fault_info
*ffi
= &F2FS_OPTION(sbi
).fault_info
;
66 atomic_set(&ffi
->inject_ops
, 0);
67 ffi
->inject_rate
= rate
;
71 ffi
->inject_type
= type
;
74 memset(ffi
, 0, sizeof(struct f2fs_fault_info
));
78 /* f2fs-wide shrinker description */
79 static struct shrinker f2fs_shrinker_info
= {
80 .scan_objects
= f2fs_shrink_scan
,
81 .count_objects
= f2fs_shrink_count
,
82 .seeks
= DEFAULT_SEEKS
,
87 Opt_disable_roll_forward
,
98 Opt_disable_ext_identify
,
101 Opt_inline_xattr_size
,
139 Opt_test_dummy_encryption
,
140 Opt_checkpoint_disable
,
141 Opt_checkpoint_disable_cap
,
142 Opt_checkpoint_disable_cap_perc
,
143 Opt_checkpoint_enable
,
144 Opt_compress_algorithm
,
145 Opt_compress_log_size
,
146 Opt_compress_extension
,
150 static match_table_t f2fs_tokens
= {
151 {Opt_gc_background
, "background_gc=%s"},
152 {Opt_disable_roll_forward
, "disable_roll_forward"},
153 {Opt_norecovery
, "norecovery"},
154 {Opt_discard
, "discard"},
155 {Opt_nodiscard
, "nodiscard"},
156 {Opt_noheap
, "no_heap"},
158 {Opt_user_xattr
, "user_xattr"},
159 {Opt_nouser_xattr
, "nouser_xattr"},
161 {Opt_noacl
, "noacl"},
162 {Opt_active_logs
, "active_logs=%u"},
163 {Opt_disable_ext_identify
, "disable_ext_identify"},
164 {Opt_inline_xattr
, "inline_xattr"},
165 {Opt_noinline_xattr
, "noinline_xattr"},
166 {Opt_inline_xattr_size
, "inline_xattr_size=%u"},
167 {Opt_inline_data
, "inline_data"},
168 {Opt_inline_dentry
, "inline_dentry"},
169 {Opt_noinline_dentry
, "noinline_dentry"},
170 {Opt_flush_merge
, "flush_merge"},
171 {Opt_noflush_merge
, "noflush_merge"},
172 {Opt_nobarrier
, "nobarrier"},
173 {Opt_fastboot
, "fastboot"},
174 {Opt_extent_cache
, "extent_cache"},
175 {Opt_noextent_cache
, "noextent_cache"},
176 {Opt_noinline_data
, "noinline_data"},
177 {Opt_data_flush
, "data_flush"},
178 {Opt_reserve_root
, "reserve_root=%u"},
179 {Opt_resgid
, "resgid=%u"},
180 {Opt_resuid
, "resuid=%u"},
181 {Opt_mode
, "mode=%s"},
182 {Opt_io_size_bits
, "io_bits=%u"},
183 {Opt_fault_injection
, "fault_injection=%u"},
184 {Opt_fault_type
, "fault_type=%u"},
185 {Opt_lazytime
, "lazytime"},
186 {Opt_nolazytime
, "nolazytime"},
187 {Opt_quota
, "quota"},
188 {Opt_noquota
, "noquota"},
189 {Opt_usrquota
, "usrquota"},
190 {Opt_grpquota
, "grpquota"},
191 {Opt_prjquota
, "prjquota"},
192 {Opt_usrjquota
, "usrjquota=%s"},
193 {Opt_grpjquota
, "grpjquota=%s"},
194 {Opt_prjjquota
, "prjjquota=%s"},
195 {Opt_offusrjquota
, "usrjquota="},
196 {Opt_offgrpjquota
, "grpjquota="},
197 {Opt_offprjjquota
, "prjjquota="},
198 {Opt_jqfmt_vfsold
, "jqfmt=vfsold"},
199 {Opt_jqfmt_vfsv0
, "jqfmt=vfsv0"},
200 {Opt_jqfmt_vfsv1
, "jqfmt=vfsv1"},
201 {Opt_whint
, "whint_mode=%s"},
202 {Opt_alloc
, "alloc_mode=%s"},
203 {Opt_fsync
, "fsync_mode=%s"},
204 {Opt_test_dummy_encryption
, "test_dummy_encryption"},
205 {Opt_checkpoint_disable
, "checkpoint=disable"},
206 {Opt_checkpoint_disable_cap
, "checkpoint=disable:%u"},
207 {Opt_checkpoint_disable_cap_perc
, "checkpoint=disable:%u%%"},
208 {Opt_checkpoint_enable
, "checkpoint=enable"},
209 {Opt_compress_algorithm
, "compress_algorithm=%s"},
210 {Opt_compress_log_size
, "compress_log_size=%u"},
211 {Opt_compress_extension
, "compress_extension=%s"},
215 void f2fs_printk(struct f2fs_sb_info
*sbi
, const char *fmt
, ...)
217 struct va_format vaf
;
223 level
= printk_get_level(fmt
);
224 vaf
.fmt
= printk_skip_level(fmt
);
226 printk("%c%cF2FS-fs (%s): %pV\n",
227 KERN_SOH_ASCII
, level
, sbi
->sb
->s_id
, &vaf
);
232 #ifdef CONFIG_UNICODE
233 static const struct f2fs_sb_encodings
{
237 } f2fs_sb_encoding_map
[] = {
238 {F2FS_ENC_UTF8_12_1
, "utf8", "12.1.0"},
241 static int f2fs_sb_read_encoding(const struct f2fs_super_block
*sb
,
242 const struct f2fs_sb_encodings
**encoding
,
245 __u16 magic
= le16_to_cpu(sb
->s_encoding
);
248 for (i
= 0; i
< ARRAY_SIZE(f2fs_sb_encoding_map
); i
++)
249 if (magic
== f2fs_sb_encoding_map
[i
].magic
)
252 if (i
>= ARRAY_SIZE(f2fs_sb_encoding_map
))
255 *encoding
= &f2fs_sb_encoding_map
[i
];
256 *flags
= le16_to_cpu(sb
->s_encoding_flags
);
262 static inline void limit_reserve_root(struct f2fs_sb_info
*sbi
)
264 block_t limit
= min((sbi
->user_block_count
<< 1) / 1000,
265 sbi
->user_block_count
- sbi
->reserved_blocks
);
268 if (test_opt(sbi
, RESERVE_ROOT
) &&
269 F2FS_OPTION(sbi
).root_reserved_blocks
> limit
) {
270 F2FS_OPTION(sbi
).root_reserved_blocks
= limit
;
271 f2fs_info(sbi
, "Reduce reserved blocks for root = %u",
272 F2FS_OPTION(sbi
).root_reserved_blocks
);
274 if (!test_opt(sbi
, RESERVE_ROOT
) &&
275 (!uid_eq(F2FS_OPTION(sbi
).s_resuid
,
276 make_kuid(&init_user_ns
, F2FS_DEF_RESUID
)) ||
277 !gid_eq(F2FS_OPTION(sbi
).s_resgid
,
278 make_kgid(&init_user_ns
, F2FS_DEF_RESGID
))))
279 f2fs_info(sbi
, "Ignore s_resuid=%u, s_resgid=%u w/o reserve_root",
280 from_kuid_munged(&init_user_ns
,
281 F2FS_OPTION(sbi
).s_resuid
),
282 from_kgid_munged(&init_user_ns
,
283 F2FS_OPTION(sbi
).s_resgid
));
286 static void init_once(void *foo
)
288 struct f2fs_inode_info
*fi
= (struct f2fs_inode_info
*) foo
;
290 inode_init_once(&fi
->vfs_inode
);
294 static const char * const quotatypes
[] = INITQFNAMES
;
295 #define QTYPE2NAME(t) (quotatypes[t])
296 static int f2fs_set_qf_name(struct super_block
*sb
, int qtype
,
299 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
303 if (sb_any_quota_loaded(sb
) && !F2FS_OPTION(sbi
).s_qf_names
[qtype
]) {
304 f2fs_err(sbi
, "Cannot change journaled quota options when quota turned on");
307 if (f2fs_sb_has_quota_ino(sbi
)) {
308 f2fs_info(sbi
, "QUOTA feature is enabled, so ignore qf_name");
312 qname
= match_strdup(args
);
314 f2fs_err(sbi
, "Not enough memory for storing quotafile name");
317 if (F2FS_OPTION(sbi
).s_qf_names
[qtype
]) {
318 if (strcmp(F2FS_OPTION(sbi
).s_qf_names
[qtype
], qname
) == 0)
321 f2fs_err(sbi
, "%s quota file already specified",
325 if (strchr(qname
, '/')) {
326 f2fs_err(sbi
, "quotafile must be on filesystem root");
329 F2FS_OPTION(sbi
).s_qf_names
[qtype
] = qname
;
337 static int f2fs_clear_qf_name(struct super_block
*sb
, int qtype
)
339 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
341 if (sb_any_quota_loaded(sb
) && F2FS_OPTION(sbi
).s_qf_names
[qtype
]) {
342 f2fs_err(sbi
, "Cannot change journaled quota options when quota turned on");
345 kvfree(F2FS_OPTION(sbi
).s_qf_names
[qtype
]);
346 F2FS_OPTION(sbi
).s_qf_names
[qtype
] = NULL
;
350 static int f2fs_check_quota_options(struct f2fs_sb_info
*sbi
)
353 * We do the test below only for project quotas. 'usrquota' and
354 * 'grpquota' mount options are allowed even without quota feature
355 * to support legacy quotas in quota files.
357 if (test_opt(sbi
, PRJQUOTA
) && !f2fs_sb_has_project_quota(sbi
)) {
358 f2fs_err(sbi
, "Project quota feature not enabled. Cannot enable project quota enforcement.");
361 if (F2FS_OPTION(sbi
).s_qf_names
[USRQUOTA
] ||
362 F2FS_OPTION(sbi
).s_qf_names
[GRPQUOTA
] ||
363 F2FS_OPTION(sbi
).s_qf_names
[PRJQUOTA
]) {
364 if (test_opt(sbi
, USRQUOTA
) &&
365 F2FS_OPTION(sbi
).s_qf_names
[USRQUOTA
])
366 clear_opt(sbi
, USRQUOTA
);
368 if (test_opt(sbi
, GRPQUOTA
) &&
369 F2FS_OPTION(sbi
).s_qf_names
[GRPQUOTA
])
370 clear_opt(sbi
, GRPQUOTA
);
372 if (test_opt(sbi
, PRJQUOTA
) &&
373 F2FS_OPTION(sbi
).s_qf_names
[PRJQUOTA
])
374 clear_opt(sbi
, PRJQUOTA
);
376 if (test_opt(sbi
, GRPQUOTA
) || test_opt(sbi
, USRQUOTA
) ||
377 test_opt(sbi
, PRJQUOTA
)) {
378 f2fs_err(sbi
, "old and new quota format mixing");
382 if (!F2FS_OPTION(sbi
).s_jquota_fmt
) {
383 f2fs_err(sbi
, "journaled quota format not specified");
388 if (f2fs_sb_has_quota_ino(sbi
) && F2FS_OPTION(sbi
).s_jquota_fmt
) {
389 f2fs_info(sbi
, "QUOTA feature is enabled, so ignore jquota_fmt");
390 F2FS_OPTION(sbi
).s_jquota_fmt
= 0;
396 static int parse_options(struct super_block
*sb
, char *options
)
398 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
399 substring_t args
[MAX_OPT_ARGS
];
400 unsigned char (*ext
)[F2FS_EXTENSION_LEN
];
402 int arg
= 0, ext_cnt
;
412 while ((p
= strsep(&options
, ",")) != NULL
) {
417 * Initialize args struct so we know whether arg was
418 * found; some options take optional arguments.
420 args
[0].to
= args
[0].from
= NULL
;
421 token
= match_token(p
, f2fs_tokens
, args
);
424 case Opt_gc_background
:
425 name
= match_strdup(&args
[0]);
429 if (strlen(name
) == 2 && !strncmp(name
, "on", 2)) {
431 clear_opt(sbi
, FORCE_FG_GC
);
432 } else if (strlen(name
) == 3 && !strncmp(name
, "off", 3)) {
433 clear_opt(sbi
, BG_GC
);
434 clear_opt(sbi
, FORCE_FG_GC
);
435 } else if (strlen(name
) == 4 && !strncmp(name
, "sync", 4)) {
437 set_opt(sbi
, FORCE_FG_GC
);
444 case Opt_disable_roll_forward
:
445 set_opt(sbi
, DISABLE_ROLL_FORWARD
);
448 /* this option mounts f2fs with ro */
449 set_opt(sbi
, DISABLE_ROLL_FORWARD
);
450 if (!f2fs_readonly(sb
))
454 set_opt(sbi
, DISCARD
);
457 if (f2fs_sb_has_blkzoned(sbi
)) {
458 f2fs_warn(sbi
, "discard is required for zoned block devices");
461 clear_opt(sbi
, DISCARD
);
464 set_opt(sbi
, NOHEAP
);
467 clear_opt(sbi
, NOHEAP
);
469 #ifdef CONFIG_F2FS_FS_XATTR
471 set_opt(sbi
, XATTR_USER
);
473 case Opt_nouser_xattr
:
474 clear_opt(sbi
, XATTR_USER
);
476 case Opt_inline_xattr
:
477 set_opt(sbi
, INLINE_XATTR
);
479 case Opt_noinline_xattr
:
480 clear_opt(sbi
, INLINE_XATTR
);
482 case Opt_inline_xattr_size
:
483 if (args
->from
&& match_int(args
, &arg
))
485 set_opt(sbi
, INLINE_XATTR_SIZE
);
486 F2FS_OPTION(sbi
).inline_xattr_size
= arg
;
490 f2fs_info(sbi
, "user_xattr options not supported");
492 case Opt_nouser_xattr
:
493 f2fs_info(sbi
, "nouser_xattr options not supported");
495 case Opt_inline_xattr
:
496 f2fs_info(sbi
, "inline_xattr options not supported");
498 case Opt_noinline_xattr
:
499 f2fs_info(sbi
, "noinline_xattr options not supported");
502 #ifdef CONFIG_F2FS_FS_POSIX_ACL
504 set_opt(sbi
, POSIX_ACL
);
507 clear_opt(sbi
, POSIX_ACL
);
511 f2fs_info(sbi
, "acl options not supported");
514 f2fs_info(sbi
, "noacl options not supported");
517 case Opt_active_logs
:
518 if (args
->from
&& match_int(args
, &arg
))
520 if (arg
!= 2 && arg
!= 4 && arg
!= NR_CURSEG_TYPE
)
522 F2FS_OPTION(sbi
).active_logs
= arg
;
524 case Opt_disable_ext_identify
:
525 set_opt(sbi
, DISABLE_EXT_IDENTIFY
);
527 case Opt_inline_data
:
528 set_opt(sbi
, INLINE_DATA
);
530 case Opt_inline_dentry
:
531 set_opt(sbi
, INLINE_DENTRY
);
533 case Opt_noinline_dentry
:
534 clear_opt(sbi
, INLINE_DENTRY
);
536 case Opt_flush_merge
:
537 set_opt(sbi
, FLUSH_MERGE
);
539 case Opt_noflush_merge
:
540 clear_opt(sbi
, FLUSH_MERGE
);
543 set_opt(sbi
, NOBARRIER
);
546 set_opt(sbi
, FASTBOOT
);
548 case Opt_extent_cache
:
549 set_opt(sbi
, EXTENT_CACHE
);
551 case Opt_noextent_cache
:
552 clear_opt(sbi
, EXTENT_CACHE
);
554 case Opt_noinline_data
:
555 clear_opt(sbi
, INLINE_DATA
);
558 set_opt(sbi
, DATA_FLUSH
);
560 case Opt_reserve_root
:
561 if (args
->from
&& match_int(args
, &arg
))
563 if (test_opt(sbi
, RESERVE_ROOT
)) {
564 f2fs_info(sbi
, "Preserve previous reserve_root=%u",
565 F2FS_OPTION(sbi
).root_reserved_blocks
);
567 F2FS_OPTION(sbi
).root_reserved_blocks
= arg
;
568 set_opt(sbi
, RESERVE_ROOT
);
572 if (args
->from
&& match_int(args
, &arg
))
574 uid
= make_kuid(current_user_ns(), arg
);
575 if (!uid_valid(uid
)) {
576 f2fs_err(sbi
, "Invalid uid value %d", arg
);
579 F2FS_OPTION(sbi
).s_resuid
= uid
;
582 if (args
->from
&& match_int(args
, &arg
))
584 gid
= make_kgid(current_user_ns(), arg
);
585 if (!gid_valid(gid
)) {
586 f2fs_err(sbi
, "Invalid gid value %d", arg
);
589 F2FS_OPTION(sbi
).s_resgid
= gid
;
592 name
= match_strdup(&args
[0]);
596 if (strlen(name
) == 8 &&
597 !strncmp(name
, "adaptive", 8)) {
598 if (f2fs_sb_has_blkzoned(sbi
)) {
599 f2fs_warn(sbi
, "adaptive mode is not allowed with zoned block device feature");
603 set_opt_mode(sbi
, F2FS_MOUNT_ADAPTIVE
);
604 } else if (strlen(name
) == 3 &&
605 !strncmp(name
, "lfs", 3)) {
606 set_opt_mode(sbi
, F2FS_MOUNT_LFS
);
613 case Opt_io_size_bits
:
614 if (args
->from
&& match_int(args
, &arg
))
616 if (arg
<= 0 || arg
> __ilog2_u32(BIO_MAX_PAGES
)) {
617 f2fs_warn(sbi
, "Not support %d, larger than %d",
618 1 << arg
, BIO_MAX_PAGES
);
621 F2FS_OPTION(sbi
).write_io_size_bits
= arg
;
623 #ifdef CONFIG_F2FS_FAULT_INJECTION
624 case Opt_fault_injection
:
625 if (args
->from
&& match_int(args
, &arg
))
627 f2fs_build_fault_attr(sbi
, arg
, F2FS_ALL_FAULT_TYPE
);
628 set_opt(sbi
, FAULT_INJECTION
);
632 if (args
->from
&& match_int(args
, &arg
))
634 f2fs_build_fault_attr(sbi
, 0, arg
);
635 set_opt(sbi
, FAULT_INJECTION
);
638 case Opt_fault_injection
:
639 f2fs_info(sbi
, "fault_injection options not supported");
643 f2fs_info(sbi
, "fault_type options not supported");
647 sb
->s_flags
|= SB_LAZYTIME
;
650 sb
->s_flags
&= ~SB_LAZYTIME
;
655 set_opt(sbi
, USRQUOTA
);
658 set_opt(sbi
, GRPQUOTA
);
661 set_opt(sbi
, PRJQUOTA
);
664 ret
= f2fs_set_qf_name(sb
, USRQUOTA
, &args
[0]);
669 ret
= f2fs_set_qf_name(sb
, GRPQUOTA
, &args
[0]);
674 ret
= f2fs_set_qf_name(sb
, PRJQUOTA
, &args
[0]);
678 case Opt_offusrjquota
:
679 ret
= f2fs_clear_qf_name(sb
, USRQUOTA
);
683 case Opt_offgrpjquota
:
684 ret
= f2fs_clear_qf_name(sb
, GRPQUOTA
);
688 case Opt_offprjjquota
:
689 ret
= f2fs_clear_qf_name(sb
, PRJQUOTA
);
693 case Opt_jqfmt_vfsold
:
694 F2FS_OPTION(sbi
).s_jquota_fmt
= QFMT_VFS_OLD
;
696 case Opt_jqfmt_vfsv0
:
697 F2FS_OPTION(sbi
).s_jquota_fmt
= QFMT_VFS_V0
;
699 case Opt_jqfmt_vfsv1
:
700 F2FS_OPTION(sbi
).s_jquota_fmt
= QFMT_VFS_V1
;
703 clear_opt(sbi
, QUOTA
);
704 clear_opt(sbi
, USRQUOTA
);
705 clear_opt(sbi
, GRPQUOTA
);
706 clear_opt(sbi
, PRJQUOTA
);
716 case Opt_offusrjquota
:
717 case Opt_offgrpjquota
:
718 case Opt_offprjjquota
:
719 case Opt_jqfmt_vfsold
:
720 case Opt_jqfmt_vfsv0
:
721 case Opt_jqfmt_vfsv1
:
723 f2fs_info(sbi
, "quota operations not supported");
727 name
= match_strdup(&args
[0]);
730 if (strlen(name
) == 10 &&
731 !strncmp(name
, "user-based", 10)) {
732 F2FS_OPTION(sbi
).whint_mode
= WHINT_MODE_USER
;
733 } else if (strlen(name
) == 3 &&
734 !strncmp(name
, "off", 3)) {
735 F2FS_OPTION(sbi
).whint_mode
= WHINT_MODE_OFF
;
736 } else if (strlen(name
) == 8 &&
737 !strncmp(name
, "fs-based", 8)) {
738 F2FS_OPTION(sbi
).whint_mode
= WHINT_MODE_FS
;
746 name
= match_strdup(&args
[0]);
750 if (strlen(name
) == 7 &&
751 !strncmp(name
, "default", 7)) {
752 F2FS_OPTION(sbi
).alloc_mode
= ALLOC_MODE_DEFAULT
;
753 } else if (strlen(name
) == 5 &&
754 !strncmp(name
, "reuse", 5)) {
755 F2FS_OPTION(sbi
).alloc_mode
= ALLOC_MODE_REUSE
;
763 name
= match_strdup(&args
[0]);
766 if (strlen(name
) == 5 &&
767 !strncmp(name
, "posix", 5)) {
768 F2FS_OPTION(sbi
).fsync_mode
= FSYNC_MODE_POSIX
;
769 } else if (strlen(name
) == 6 &&
770 !strncmp(name
, "strict", 6)) {
771 F2FS_OPTION(sbi
).fsync_mode
= FSYNC_MODE_STRICT
;
772 } else if (strlen(name
) == 9 &&
773 !strncmp(name
, "nobarrier", 9)) {
774 F2FS_OPTION(sbi
).fsync_mode
=
775 FSYNC_MODE_NOBARRIER
;
782 case Opt_test_dummy_encryption
:
783 #ifdef CONFIG_FS_ENCRYPTION
784 if (!f2fs_sb_has_encrypt(sbi
)) {
785 f2fs_err(sbi
, "Encrypt feature is off");
789 F2FS_OPTION(sbi
).test_dummy_encryption
= true;
790 f2fs_info(sbi
, "Test dummy encryption mode enabled");
792 f2fs_info(sbi
, "Test dummy encryption mount option ignored");
795 case Opt_checkpoint_disable_cap_perc
:
796 if (args
->from
&& match_int(args
, &arg
))
798 if (arg
< 0 || arg
> 100)
801 F2FS_OPTION(sbi
).unusable_cap
=
802 sbi
->user_block_count
;
804 F2FS_OPTION(sbi
).unusable_cap
=
805 (sbi
->user_block_count
/ 100) * arg
;
806 set_opt(sbi
, DISABLE_CHECKPOINT
);
808 case Opt_checkpoint_disable_cap
:
809 if (args
->from
&& match_int(args
, &arg
))
811 F2FS_OPTION(sbi
).unusable_cap
= arg
;
812 set_opt(sbi
, DISABLE_CHECKPOINT
);
814 case Opt_checkpoint_disable
:
815 set_opt(sbi
, DISABLE_CHECKPOINT
);
817 case Opt_checkpoint_enable
:
818 clear_opt(sbi
, DISABLE_CHECKPOINT
);
820 case Opt_compress_algorithm
:
821 if (!f2fs_sb_has_compression(sbi
)) {
822 f2fs_err(sbi
, "Compression feature if off");
825 name
= match_strdup(&args
[0]);
828 if (strlen(name
) == 3 && !strcmp(name
, "lzo")) {
829 F2FS_OPTION(sbi
).compress_algorithm
=
831 } else if (strlen(name
) == 3 &&
832 !strcmp(name
, "lz4")) {
833 F2FS_OPTION(sbi
).compress_algorithm
=
841 case Opt_compress_log_size
:
842 if (!f2fs_sb_has_compression(sbi
)) {
843 f2fs_err(sbi
, "Compression feature is off");
846 if (args
->from
&& match_int(args
, &arg
))
848 if (arg
< MIN_COMPRESS_LOG_SIZE
||
849 arg
> MAX_COMPRESS_LOG_SIZE
) {
851 "Compress cluster log size is out of range");
854 F2FS_OPTION(sbi
).compress_log_size
= arg
;
856 case Opt_compress_extension
:
857 if (!f2fs_sb_has_compression(sbi
)) {
858 f2fs_err(sbi
, "Compression feature is off");
861 name
= match_strdup(&args
[0]);
865 ext
= F2FS_OPTION(sbi
).extensions
;
866 ext_cnt
= F2FS_OPTION(sbi
).compress_ext_cnt
;
868 if (strlen(name
) >= F2FS_EXTENSION_LEN
||
869 ext_cnt
>= COMPRESS_EXT_NUM
) {
871 "invalid extension length/number");
876 strcpy(ext
[ext_cnt
], name
);
877 F2FS_OPTION(sbi
).compress_ext_cnt
++;
881 f2fs_err(sbi
, "Unrecognized mount option \"%s\" or missing value",
887 if (f2fs_check_quota_options(sbi
))
890 if (f2fs_sb_has_quota_ino(sbi
) && !f2fs_readonly(sbi
->sb
)) {
891 f2fs_info(sbi
, "Filesystem with quota feature cannot be mounted RDWR without CONFIG_QUOTA");
894 if (f2fs_sb_has_project_quota(sbi
) && !f2fs_readonly(sbi
->sb
)) {
895 f2fs_err(sbi
, "Filesystem with project quota feature cannot be mounted RDWR without CONFIG_QUOTA");
899 #ifndef CONFIG_UNICODE
900 if (f2fs_sb_has_casefold(sbi
)) {
902 "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
907 if (F2FS_IO_SIZE_BITS(sbi
) && !test_opt(sbi
, LFS
)) {
908 f2fs_err(sbi
, "Should set mode=lfs with %uKB-sized IO",
909 F2FS_IO_SIZE_KB(sbi
));
913 if (test_opt(sbi
, INLINE_XATTR_SIZE
)) {
914 int min_size
, max_size
;
916 if (!f2fs_sb_has_extra_attr(sbi
) ||
917 !f2fs_sb_has_flexible_inline_xattr(sbi
)) {
918 f2fs_err(sbi
, "extra_attr or flexible_inline_xattr feature is off");
921 if (!test_opt(sbi
, INLINE_XATTR
)) {
922 f2fs_err(sbi
, "inline_xattr_size option should be set with inline_xattr option");
926 min_size
= sizeof(struct f2fs_xattr_header
) / sizeof(__le32
);
927 max_size
= MAX_INLINE_XATTR_SIZE
;
929 if (F2FS_OPTION(sbi
).inline_xattr_size
< min_size
||
930 F2FS_OPTION(sbi
).inline_xattr_size
> max_size
) {
931 f2fs_err(sbi
, "inline xattr size is out of range: %d ~ %d",
937 if (test_opt(sbi
, DISABLE_CHECKPOINT
) && test_opt(sbi
, LFS
)) {
938 f2fs_err(sbi
, "LFS not compatible with checkpoint=disable\n");
942 /* Not pass down write hints if the number of active logs is lesser
943 * than NR_CURSEG_TYPE.
945 if (F2FS_OPTION(sbi
).active_logs
!= NR_CURSEG_TYPE
)
946 F2FS_OPTION(sbi
).whint_mode
= WHINT_MODE_OFF
;
950 static struct inode
*f2fs_alloc_inode(struct super_block
*sb
)
952 struct f2fs_inode_info
*fi
;
954 fi
= kmem_cache_alloc(f2fs_inode_cachep
, GFP_F2FS_ZERO
);
958 init_once((void *) fi
);
960 /* Initialize f2fs-specific inode info */
961 atomic_set(&fi
->dirty_pages
, 0);
962 init_rwsem(&fi
->i_sem
);
963 INIT_LIST_HEAD(&fi
->dirty_list
);
964 INIT_LIST_HEAD(&fi
->gdirty_list
);
965 INIT_LIST_HEAD(&fi
->inmem_ilist
);
966 INIT_LIST_HEAD(&fi
->inmem_pages
);
967 mutex_init(&fi
->inmem_lock
);
968 init_rwsem(&fi
->i_gc_rwsem
[READ
]);
969 init_rwsem(&fi
->i_gc_rwsem
[WRITE
]);
970 init_rwsem(&fi
->i_mmap_sem
);
971 init_rwsem(&fi
->i_xattr_sem
);
973 /* Will be used by directory only */
974 fi
->i_dir_level
= F2FS_SB(sb
)->dir_level
;
976 return &fi
->vfs_inode
;
979 static int f2fs_drop_inode(struct inode
*inode
)
981 struct f2fs_sb_info
*sbi
= F2FS_I_SB(inode
);
985 * during filesystem shutdown, if checkpoint is disabled,
986 * drop useless meta/node dirty pages.
988 if (unlikely(is_sbi_flag_set(sbi
, SBI_CP_DISABLED
))) {
989 if (inode
->i_ino
== F2FS_NODE_INO(sbi
) ||
990 inode
->i_ino
== F2FS_META_INO(sbi
)) {
991 trace_f2fs_drop_inode(inode
, 1);
997 * This is to avoid a deadlock condition like below.
998 * writeback_single_inode(inode)
999 * - f2fs_write_data_page
1000 * - f2fs_gc -> iput -> evict
1001 * - inode_wait_for_writeback(inode)
1003 if ((!inode_unhashed(inode
) && inode
->i_state
& I_SYNC
)) {
1004 if (!inode
->i_nlink
&& !is_bad_inode(inode
)) {
1005 /* to avoid evict_inode call simultaneously */
1006 atomic_inc(&inode
->i_count
);
1007 spin_unlock(&inode
->i_lock
);
1009 /* some remained atomic pages should discarded */
1010 if (f2fs_is_atomic_file(inode
))
1011 f2fs_drop_inmem_pages(inode
);
1013 /* should remain fi->extent_tree for writepage */
1014 f2fs_destroy_extent_node(inode
);
1016 sb_start_intwrite(inode
->i_sb
);
1017 f2fs_i_size_write(inode
, 0);
1019 f2fs_submit_merged_write_cond(F2FS_I_SB(inode
),
1020 inode
, NULL
, 0, DATA
);
1021 truncate_inode_pages_final(inode
->i_mapping
);
1023 if (F2FS_HAS_BLOCKS(inode
))
1024 f2fs_truncate(inode
);
1026 sb_end_intwrite(inode
->i_sb
);
1028 spin_lock(&inode
->i_lock
);
1029 atomic_dec(&inode
->i_count
);
1031 trace_f2fs_drop_inode(inode
, 0);
1034 ret
= generic_drop_inode(inode
);
1036 ret
= fscrypt_drop_inode(inode
);
1037 trace_f2fs_drop_inode(inode
, ret
);
1041 int f2fs_inode_dirtied(struct inode
*inode
, bool sync
)
1043 struct f2fs_sb_info
*sbi
= F2FS_I_SB(inode
);
1046 spin_lock(&sbi
->inode_lock
[DIRTY_META
]);
1047 if (is_inode_flag_set(inode
, FI_DIRTY_INODE
)) {
1050 set_inode_flag(inode
, FI_DIRTY_INODE
);
1051 stat_inc_dirty_inode(sbi
, DIRTY_META
);
1053 if (sync
&& list_empty(&F2FS_I(inode
)->gdirty_list
)) {
1054 list_add_tail(&F2FS_I(inode
)->gdirty_list
,
1055 &sbi
->inode_list
[DIRTY_META
]);
1056 inc_page_count(sbi
, F2FS_DIRTY_IMETA
);
1058 spin_unlock(&sbi
->inode_lock
[DIRTY_META
]);
1062 void f2fs_inode_synced(struct inode
*inode
)
1064 struct f2fs_sb_info
*sbi
= F2FS_I_SB(inode
);
1066 spin_lock(&sbi
->inode_lock
[DIRTY_META
]);
1067 if (!is_inode_flag_set(inode
, FI_DIRTY_INODE
)) {
1068 spin_unlock(&sbi
->inode_lock
[DIRTY_META
]);
1071 if (!list_empty(&F2FS_I(inode
)->gdirty_list
)) {
1072 list_del_init(&F2FS_I(inode
)->gdirty_list
);
1073 dec_page_count(sbi
, F2FS_DIRTY_IMETA
);
1075 clear_inode_flag(inode
, FI_DIRTY_INODE
);
1076 clear_inode_flag(inode
, FI_AUTO_RECOVER
);
1077 stat_dec_dirty_inode(F2FS_I_SB(inode
), DIRTY_META
);
1078 spin_unlock(&sbi
->inode_lock
[DIRTY_META
]);
1082 * f2fs_dirty_inode() is called from __mark_inode_dirty()
1084 * We should call set_dirty_inode to write the dirty inode through write_inode.
1086 static void f2fs_dirty_inode(struct inode
*inode
, int flags
)
1088 struct f2fs_sb_info
*sbi
= F2FS_I_SB(inode
);
1090 if (inode
->i_ino
== F2FS_NODE_INO(sbi
) ||
1091 inode
->i_ino
== F2FS_META_INO(sbi
))
1094 if (flags
== I_DIRTY_TIME
)
1097 if (is_inode_flag_set(inode
, FI_AUTO_RECOVER
))
1098 clear_inode_flag(inode
, FI_AUTO_RECOVER
);
1100 f2fs_inode_dirtied(inode
, false);
1103 static void f2fs_free_inode(struct inode
*inode
)
1105 fscrypt_free_inode(inode
);
1106 kmem_cache_free(f2fs_inode_cachep
, F2FS_I(inode
));
1109 static void destroy_percpu_info(struct f2fs_sb_info
*sbi
)
1111 percpu_counter_destroy(&sbi
->alloc_valid_block_count
);
1112 percpu_counter_destroy(&sbi
->total_valid_inode_count
);
1115 static void destroy_device_list(struct f2fs_sb_info
*sbi
)
1119 for (i
= 0; i
< sbi
->s_ndevs
; i
++) {
1120 blkdev_put(FDEV(i
).bdev
, FMODE_EXCL
);
1121 #ifdef CONFIG_BLK_DEV_ZONED
1122 kvfree(FDEV(i
).blkz_seq
);
1128 static void f2fs_put_super(struct super_block
*sb
)
1130 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
1134 f2fs_quota_off_umount(sb
);
1136 /* prevent remaining shrinker jobs */
1137 mutex_lock(&sbi
->umount_mutex
);
1140 * We don't need to do checkpoint when superblock is clean.
1141 * But, the previous checkpoint was not done by umount, it needs to do
1142 * clean checkpoint again.
1144 if ((is_sbi_flag_set(sbi
, SBI_IS_DIRTY
) ||
1145 !is_set_ckpt_flags(sbi
, CP_UMOUNT_FLAG
))) {
1146 struct cp_control cpc
= {
1147 .reason
= CP_UMOUNT
,
1149 f2fs_write_checkpoint(sbi
, &cpc
);
1152 /* be sure to wait for any on-going discard commands */
1153 dropped
= f2fs_issue_discard_timeout(sbi
);
1155 if ((f2fs_hw_support_discard(sbi
) || f2fs_hw_should_discard(sbi
)) &&
1156 !sbi
->discard_blks
&& !dropped
) {
1157 struct cp_control cpc
= {
1158 .reason
= CP_UMOUNT
| CP_TRIMMED
,
1160 f2fs_write_checkpoint(sbi
, &cpc
);
1164 * normally superblock is clean, so we need to release this.
1165 * In addition, EIO will skip do checkpoint, we need this as well.
1167 f2fs_release_ino_entry(sbi
, true);
1169 f2fs_leave_shrinker(sbi
);
1170 mutex_unlock(&sbi
->umount_mutex
);
1172 /* our cp_error case, we can wait for any writeback page */
1173 f2fs_flush_merged_writes(sbi
);
1175 f2fs_wait_on_all_pages_writeback(sbi
);
1177 f2fs_bug_on(sbi
, sbi
->fsync_node_num
);
1179 iput(sbi
->node_inode
);
1180 sbi
->node_inode
= NULL
;
1182 iput(sbi
->meta_inode
);
1183 sbi
->meta_inode
= NULL
;
1186 * iput() can update stat information, if f2fs_write_checkpoint()
1187 * above failed with error.
1189 f2fs_destroy_stats(sbi
);
1191 /* destroy f2fs internal modules */
1192 f2fs_destroy_node_manager(sbi
);
1193 f2fs_destroy_segment_manager(sbi
);
1195 f2fs_destroy_post_read_wq(sbi
);
1199 f2fs_unregister_sysfs(sbi
);
1201 sb
->s_fs_info
= NULL
;
1202 if (sbi
->s_chksum_driver
)
1203 crypto_free_shash(sbi
->s_chksum_driver
);
1204 kvfree(sbi
->raw_super
);
1206 destroy_device_list(sbi
);
1207 mempool_destroy(sbi
->write_io_dummy
);
1209 for (i
= 0; i
< MAXQUOTAS
; i
++)
1210 kvfree(F2FS_OPTION(sbi
).s_qf_names
[i
]);
1212 destroy_percpu_info(sbi
);
1213 for (i
= 0; i
< NR_PAGE_TYPE
; i
++)
1214 kvfree(sbi
->write_io
[i
]);
1215 #ifdef CONFIG_UNICODE
1216 utf8_unload(sbi
->s_encoding
);
1221 int f2fs_sync_fs(struct super_block
*sb
, int sync
)
1223 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
1226 if (unlikely(f2fs_cp_error(sbi
)))
1228 if (unlikely(is_sbi_flag_set(sbi
, SBI_CP_DISABLED
)))
1231 trace_f2fs_sync_fs(sb
, sync
);
1233 if (unlikely(is_sbi_flag_set(sbi
, SBI_POR_DOING
)))
1237 struct cp_control cpc
;
1239 cpc
.reason
= __get_cp_reason(sbi
);
1241 down_write(&sbi
->gc_lock
);
1242 err
= f2fs_write_checkpoint(sbi
, &cpc
);
1243 up_write(&sbi
->gc_lock
);
1245 f2fs_trace_ios(NULL
, 1);
1250 static int f2fs_freeze(struct super_block
*sb
)
1252 if (f2fs_readonly(sb
))
1255 /* IO error happened before */
1256 if (unlikely(f2fs_cp_error(F2FS_SB(sb
))))
1259 /* must be clean, since sync_filesystem() was already called */
1260 if (is_sbi_flag_set(F2FS_SB(sb
), SBI_IS_DIRTY
))
1265 static int f2fs_unfreeze(struct super_block
*sb
)
1271 static int f2fs_statfs_project(struct super_block
*sb
,
1272 kprojid_t projid
, struct kstatfs
*buf
)
1275 struct dquot
*dquot
;
1279 qid
= make_kqid_projid(projid
);
1280 dquot
= dqget(sb
, qid
);
1282 return PTR_ERR(dquot
);
1283 spin_lock(&dquot
->dq_dqb_lock
);
1285 limit
= min_not_zero(dquot
->dq_dqb
.dqb_bsoftlimit
,
1286 dquot
->dq_dqb
.dqb_bhardlimit
);
1288 limit
>>= sb
->s_blocksize_bits
;
1290 if (limit
&& buf
->f_blocks
> limit
) {
1291 curblock
= dquot
->dq_dqb
.dqb_curspace
>> sb
->s_blocksize_bits
;
1292 buf
->f_blocks
= limit
;
1293 buf
->f_bfree
= buf
->f_bavail
=
1294 (buf
->f_blocks
> curblock
) ?
1295 (buf
->f_blocks
- curblock
) : 0;
1298 limit
= min_not_zero(dquot
->dq_dqb
.dqb_isoftlimit
,
1299 dquot
->dq_dqb
.dqb_ihardlimit
);
1301 if (limit
&& buf
->f_files
> limit
) {
1302 buf
->f_files
= limit
;
1304 (buf
->f_files
> dquot
->dq_dqb
.dqb_curinodes
) ?
1305 (buf
->f_files
- dquot
->dq_dqb
.dqb_curinodes
) : 0;
1308 spin_unlock(&dquot
->dq_dqb_lock
);
1314 static int f2fs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
1316 struct super_block
*sb
= dentry
->d_sb
;
1317 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
1318 u64 id
= huge_encode_dev(sb
->s_bdev
->bd_dev
);
1319 block_t total_count
, user_block_count
, start_count
;
1320 u64 avail_node_count
;
1322 total_count
= le64_to_cpu(sbi
->raw_super
->block_count
);
1323 user_block_count
= sbi
->user_block_count
;
1324 start_count
= le32_to_cpu(sbi
->raw_super
->segment0_blkaddr
);
1325 buf
->f_type
= F2FS_SUPER_MAGIC
;
1326 buf
->f_bsize
= sbi
->blocksize
;
1328 buf
->f_blocks
= total_count
- start_count
;
1329 buf
->f_bfree
= user_block_count
- valid_user_blocks(sbi
) -
1330 sbi
->current_reserved_blocks
;
1332 spin_lock(&sbi
->stat_lock
);
1333 if (unlikely(buf
->f_bfree
<= sbi
->unusable_block_count
))
1336 buf
->f_bfree
-= sbi
->unusable_block_count
;
1337 spin_unlock(&sbi
->stat_lock
);
1339 if (buf
->f_bfree
> F2FS_OPTION(sbi
).root_reserved_blocks
)
1340 buf
->f_bavail
= buf
->f_bfree
-
1341 F2FS_OPTION(sbi
).root_reserved_blocks
;
1345 avail_node_count
= sbi
->total_node_count
- F2FS_RESERVED_NODE_NUM
;
1347 if (avail_node_count
> user_block_count
) {
1348 buf
->f_files
= user_block_count
;
1349 buf
->f_ffree
= buf
->f_bavail
;
1351 buf
->f_files
= avail_node_count
;
1352 buf
->f_ffree
= min(avail_node_count
- valid_node_count(sbi
),
1356 buf
->f_namelen
= F2FS_NAME_LEN
;
1357 buf
->f_fsid
.val
[0] = (u32
)id
;
1358 buf
->f_fsid
.val
[1] = (u32
)(id
>> 32);
1361 if (is_inode_flag_set(dentry
->d_inode
, FI_PROJ_INHERIT
) &&
1362 sb_has_quota_limits_enabled(sb
, PRJQUOTA
)) {
1363 f2fs_statfs_project(sb
, F2FS_I(dentry
->d_inode
)->i_projid
, buf
);
1369 static inline void f2fs_show_quota_options(struct seq_file
*seq
,
1370 struct super_block
*sb
)
1373 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
1375 if (F2FS_OPTION(sbi
).s_jquota_fmt
) {
1378 switch (F2FS_OPTION(sbi
).s_jquota_fmt
) {
1389 seq_printf(seq
, ",jqfmt=%s", fmtname
);
1392 if (F2FS_OPTION(sbi
).s_qf_names
[USRQUOTA
])
1393 seq_show_option(seq
, "usrjquota",
1394 F2FS_OPTION(sbi
).s_qf_names
[USRQUOTA
]);
1396 if (F2FS_OPTION(sbi
).s_qf_names
[GRPQUOTA
])
1397 seq_show_option(seq
, "grpjquota",
1398 F2FS_OPTION(sbi
).s_qf_names
[GRPQUOTA
]);
1400 if (F2FS_OPTION(sbi
).s_qf_names
[PRJQUOTA
])
1401 seq_show_option(seq
, "prjjquota",
1402 F2FS_OPTION(sbi
).s_qf_names
[PRJQUOTA
]);
1406 static inline void f2fs_show_compress_options(struct seq_file
*seq
,
1407 struct super_block
*sb
)
1409 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
1413 if (!f2fs_sb_has_compression(sbi
))
1416 switch (F2FS_OPTION(sbi
).compress_algorithm
) {
1424 seq_printf(seq
, ",compress_algorithm=%s", algtype
);
1426 seq_printf(seq
, ",compress_log_size=%u",
1427 F2FS_OPTION(sbi
).compress_log_size
);
1429 for (i
= 0; i
< F2FS_OPTION(sbi
).compress_ext_cnt
; i
++) {
1430 seq_printf(seq
, ",compress_extension=%s",
1431 F2FS_OPTION(sbi
).extensions
[i
]);
1435 static int f2fs_show_options(struct seq_file
*seq
, struct dentry
*root
)
1437 struct f2fs_sb_info
*sbi
= F2FS_SB(root
->d_sb
);
1439 if (!f2fs_readonly(sbi
->sb
) && test_opt(sbi
, BG_GC
)) {
1440 if (test_opt(sbi
, FORCE_FG_GC
))
1441 seq_printf(seq
, ",background_gc=%s", "sync");
1443 seq_printf(seq
, ",background_gc=%s", "on");
1445 seq_printf(seq
, ",background_gc=%s", "off");
1447 if (test_opt(sbi
, DISABLE_ROLL_FORWARD
))
1448 seq_puts(seq
, ",disable_roll_forward");
1449 if (test_opt(sbi
, DISCARD
))
1450 seq_puts(seq
, ",discard");
1452 seq_puts(seq
, ",nodiscard");
1453 if (test_opt(sbi
, NOHEAP
))
1454 seq_puts(seq
, ",no_heap");
1456 seq_puts(seq
, ",heap");
1457 #ifdef CONFIG_F2FS_FS_XATTR
1458 if (test_opt(sbi
, XATTR_USER
))
1459 seq_puts(seq
, ",user_xattr");
1461 seq_puts(seq
, ",nouser_xattr");
1462 if (test_opt(sbi
, INLINE_XATTR
))
1463 seq_puts(seq
, ",inline_xattr");
1465 seq_puts(seq
, ",noinline_xattr");
1466 if (test_opt(sbi
, INLINE_XATTR_SIZE
))
1467 seq_printf(seq
, ",inline_xattr_size=%u",
1468 F2FS_OPTION(sbi
).inline_xattr_size
);
1470 #ifdef CONFIG_F2FS_FS_POSIX_ACL
1471 if (test_opt(sbi
, POSIX_ACL
))
1472 seq_puts(seq
, ",acl");
1474 seq_puts(seq
, ",noacl");
1476 if (test_opt(sbi
, DISABLE_EXT_IDENTIFY
))
1477 seq_puts(seq
, ",disable_ext_identify");
1478 if (test_opt(sbi
, INLINE_DATA
))
1479 seq_puts(seq
, ",inline_data");
1481 seq_puts(seq
, ",noinline_data");
1482 if (test_opt(sbi
, INLINE_DENTRY
))
1483 seq_puts(seq
, ",inline_dentry");
1485 seq_puts(seq
, ",noinline_dentry");
1486 if (!f2fs_readonly(sbi
->sb
) && test_opt(sbi
, FLUSH_MERGE
))
1487 seq_puts(seq
, ",flush_merge");
1488 if (test_opt(sbi
, NOBARRIER
))
1489 seq_puts(seq
, ",nobarrier");
1490 if (test_opt(sbi
, FASTBOOT
))
1491 seq_puts(seq
, ",fastboot");
1492 if (test_opt(sbi
, EXTENT_CACHE
))
1493 seq_puts(seq
, ",extent_cache");
1495 seq_puts(seq
, ",noextent_cache");
1496 if (test_opt(sbi
, DATA_FLUSH
))
1497 seq_puts(seq
, ",data_flush");
1499 seq_puts(seq
, ",mode=");
1500 if (test_opt(sbi
, ADAPTIVE
))
1501 seq_puts(seq
, "adaptive");
1502 else if (test_opt(sbi
, LFS
))
1503 seq_puts(seq
, "lfs");
1504 seq_printf(seq
, ",active_logs=%u", F2FS_OPTION(sbi
).active_logs
);
1505 if (test_opt(sbi
, RESERVE_ROOT
))
1506 seq_printf(seq
, ",reserve_root=%u,resuid=%u,resgid=%u",
1507 F2FS_OPTION(sbi
).root_reserved_blocks
,
1508 from_kuid_munged(&init_user_ns
,
1509 F2FS_OPTION(sbi
).s_resuid
),
1510 from_kgid_munged(&init_user_ns
,
1511 F2FS_OPTION(sbi
).s_resgid
));
1512 if (F2FS_IO_SIZE_BITS(sbi
))
1513 seq_printf(seq
, ",io_bits=%u",
1514 F2FS_OPTION(sbi
).write_io_size_bits
);
1515 #ifdef CONFIG_F2FS_FAULT_INJECTION
1516 if (test_opt(sbi
, FAULT_INJECTION
)) {
1517 seq_printf(seq
, ",fault_injection=%u",
1518 F2FS_OPTION(sbi
).fault_info
.inject_rate
);
1519 seq_printf(seq
, ",fault_type=%u",
1520 F2FS_OPTION(sbi
).fault_info
.inject_type
);
1524 if (test_opt(sbi
, QUOTA
))
1525 seq_puts(seq
, ",quota");
1526 if (test_opt(sbi
, USRQUOTA
))
1527 seq_puts(seq
, ",usrquota");
1528 if (test_opt(sbi
, GRPQUOTA
))
1529 seq_puts(seq
, ",grpquota");
1530 if (test_opt(sbi
, PRJQUOTA
))
1531 seq_puts(seq
, ",prjquota");
1533 f2fs_show_quota_options(seq
, sbi
->sb
);
1534 if (F2FS_OPTION(sbi
).whint_mode
== WHINT_MODE_USER
)
1535 seq_printf(seq
, ",whint_mode=%s", "user-based");
1536 else if (F2FS_OPTION(sbi
).whint_mode
== WHINT_MODE_FS
)
1537 seq_printf(seq
, ",whint_mode=%s", "fs-based");
1538 #ifdef CONFIG_FS_ENCRYPTION
1539 if (F2FS_OPTION(sbi
).test_dummy_encryption
)
1540 seq_puts(seq
, ",test_dummy_encryption");
1543 if (F2FS_OPTION(sbi
).alloc_mode
== ALLOC_MODE_DEFAULT
)
1544 seq_printf(seq
, ",alloc_mode=%s", "default");
1545 else if (F2FS_OPTION(sbi
).alloc_mode
== ALLOC_MODE_REUSE
)
1546 seq_printf(seq
, ",alloc_mode=%s", "reuse");
1548 if (test_opt(sbi
, DISABLE_CHECKPOINT
))
1549 seq_printf(seq
, ",checkpoint=disable:%u",
1550 F2FS_OPTION(sbi
).unusable_cap
);
1551 if (F2FS_OPTION(sbi
).fsync_mode
== FSYNC_MODE_POSIX
)
1552 seq_printf(seq
, ",fsync_mode=%s", "posix");
1553 else if (F2FS_OPTION(sbi
).fsync_mode
== FSYNC_MODE_STRICT
)
1554 seq_printf(seq
, ",fsync_mode=%s", "strict");
1555 else if (F2FS_OPTION(sbi
).fsync_mode
== FSYNC_MODE_NOBARRIER
)
1556 seq_printf(seq
, ",fsync_mode=%s", "nobarrier");
1558 f2fs_show_compress_options(seq
, sbi
->sb
);
1562 static void default_options(struct f2fs_sb_info
*sbi
)
1564 /* init some FS parameters */
1565 F2FS_OPTION(sbi
).active_logs
= NR_CURSEG_TYPE
;
1566 F2FS_OPTION(sbi
).inline_xattr_size
= DEFAULT_INLINE_XATTR_ADDRS
;
1567 F2FS_OPTION(sbi
).whint_mode
= WHINT_MODE_OFF
;
1568 F2FS_OPTION(sbi
).alloc_mode
= ALLOC_MODE_DEFAULT
;
1569 F2FS_OPTION(sbi
).fsync_mode
= FSYNC_MODE_POSIX
;
1570 F2FS_OPTION(sbi
).test_dummy_encryption
= false;
1571 F2FS_OPTION(sbi
).s_resuid
= make_kuid(&init_user_ns
, F2FS_DEF_RESUID
);
1572 F2FS_OPTION(sbi
).s_resgid
= make_kgid(&init_user_ns
, F2FS_DEF_RESGID
);
1573 F2FS_OPTION(sbi
).compress_algorithm
= COMPRESS_LZO
;
1574 F2FS_OPTION(sbi
).compress_log_size
= MIN_COMPRESS_LOG_SIZE
;
1575 F2FS_OPTION(sbi
).compress_ext_cnt
= 0;
1577 set_opt(sbi
, BG_GC
);
1578 set_opt(sbi
, INLINE_XATTR
);
1579 set_opt(sbi
, INLINE_DATA
);
1580 set_opt(sbi
, INLINE_DENTRY
);
1581 set_opt(sbi
, EXTENT_CACHE
);
1582 set_opt(sbi
, NOHEAP
);
1583 clear_opt(sbi
, DISABLE_CHECKPOINT
);
1584 F2FS_OPTION(sbi
).unusable_cap
= 0;
1585 sbi
->sb
->s_flags
|= SB_LAZYTIME
;
1586 set_opt(sbi
, FLUSH_MERGE
);
1587 set_opt(sbi
, DISCARD
);
1588 if (f2fs_sb_has_blkzoned(sbi
))
1589 set_opt_mode(sbi
, F2FS_MOUNT_LFS
);
1591 set_opt_mode(sbi
, F2FS_MOUNT_ADAPTIVE
);
1593 #ifdef CONFIG_F2FS_FS_XATTR
1594 set_opt(sbi
, XATTR_USER
);
1596 #ifdef CONFIG_F2FS_FS_POSIX_ACL
1597 set_opt(sbi
, POSIX_ACL
);
1600 f2fs_build_fault_attr(sbi
, 0, 0);
1604 static int f2fs_enable_quotas(struct super_block
*sb
);
1607 static int f2fs_disable_checkpoint(struct f2fs_sb_info
*sbi
)
1609 unsigned int s_flags
= sbi
->sb
->s_flags
;
1610 struct cp_control cpc
;
1615 if (s_flags
& SB_RDONLY
) {
1616 f2fs_err(sbi
, "checkpoint=disable on readonly fs");
1619 sbi
->sb
->s_flags
|= SB_ACTIVE
;
1621 f2fs_update_time(sbi
, DISABLE_TIME
);
1623 while (!f2fs_time_over(sbi
, DISABLE_TIME
)) {
1624 down_write(&sbi
->gc_lock
);
1625 err
= f2fs_gc(sbi
, true, false, NULL_SEGNO
);
1626 if (err
== -ENODATA
) {
1630 if (err
&& err
!= -EAGAIN
)
1634 ret
= sync_filesystem(sbi
->sb
);
1636 err
= ret
? ret
: err
;
1640 unusable
= f2fs_get_unusable_blocks(sbi
);
1641 if (f2fs_disable_cp_again(sbi
, unusable
)) {
1646 down_write(&sbi
->gc_lock
);
1647 cpc
.reason
= CP_PAUSE
;
1648 set_sbi_flag(sbi
, SBI_CP_DISABLED
);
1649 err
= f2fs_write_checkpoint(sbi
, &cpc
);
1653 spin_lock(&sbi
->stat_lock
);
1654 sbi
->unusable_block_count
= unusable
;
1655 spin_unlock(&sbi
->stat_lock
);
1658 up_write(&sbi
->gc_lock
);
1660 sbi
->sb
->s_flags
= s_flags
; /* Restore MS_RDONLY status */
1664 static void f2fs_enable_checkpoint(struct f2fs_sb_info
*sbi
)
1666 down_write(&sbi
->gc_lock
);
1667 f2fs_dirty_to_prefree(sbi
);
1669 clear_sbi_flag(sbi
, SBI_CP_DISABLED
);
1670 set_sbi_flag(sbi
, SBI_IS_DIRTY
);
1671 up_write(&sbi
->gc_lock
);
1673 f2fs_sync_fs(sbi
->sb
, 1);
1676 static int f2fs_remount(struct super_block
*sb
, int *flags
, char *data
)
1678 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
1679 struct f2fs_mount_info org_mount_opt
;
1680 unsigned long old_sb_flags
;
1682 bool need_restart_gc
= false;
1683 bool need_stop_gc
= false;
1684 bool no_extent_cache
= !test_opt(sbi
, EXTENT_CACHE
);
1685 bool disable_checkpoint
= test_opt(sbi
, DISABLE_CHECKPOINT
);
1686 bool no_io_align
= !F2FS_IO_ALIGNED(sbi
);
1687 bool checkpoint_changed
;
1693 * Save the old mount options in case we
1694 * need to restore them.
1696 org_mount_opt
= sbi
->mount_opt
;
1697 old_sb_flags
= sb
->s_flags
;
1700 org_mount_opt
.s_jquota_fmt
= F2FS_OPTION(sbi
).s_jquota_fmt
;
1701 for (i
= 0; i
< MAXQUOTAS
; i
++) {
1702 if (F2FS_OPTION(sbi
).s_qf_names
[i
]) {
1703 org_mount_opt
.s_qf_names
[i
] =
1704 kstrdup(F2FS_OPTION(sbi
).s_qf_names
[i
],
1706 if (!org_mount_opt
.s_qf_names
[i
]) {
1707 for (j
= 0; j
< i
; j
++)
1708 kvfree(org_mount_opt
.s_qf_names
[j
]);
1712 org_mount_opt
.s_qf_names
[i
] = NULL
;
1717 /* recover superblocks we couldn't write due to previous RO mount */
1718 if (!(*flags
& SB_RDONLY
) && is_sbi_flag_set(sbi
, SBI_NEED_SB_WRITE
)) {
1719 err
= f2fs_commit_super(sbi
, false);
1720 f2fs_info(sbi
, "Try to recover all the superblocks, ret: %d",
1723 clear_sbi_flag(sbi
, SBI_NEED_SB_WRITE
);
1726 default_options(sbi
);
1728 /* parse mount options */
1729 err
= parse_options(sb
, data
);
1732 checkpoint_changed
=
1733 disable_checkpoint
!= test_opt(sbi
, DISABLE_CHECKPOINT
);
1736 * Previous and new state of filesystem is RO,
1737 * so skip checking GC and FLUSH_MERGE conditions.
1739 if (f2fs_readonly(sb
) && (*flags
& SB_RDONLY
))
1743 if (!f2fs_readonly(sb
) && (*flags
& SB_RDONLY
)) {
1744 err
= dquot_suspend(sb
, -1);
1747 } else if (f2fs_readonly(sb
) && !(*flags
& SB_RDONLY
)) {
1748 /* dquot_resume needs RW */
1749 sb
->s_flags
&= ~SB_RDONLY
;
1750 if (sb_any_quota_suspended(sb
)) {
1751 dquot_resume(sb
, -1);
1752 } else if (f2fs_sb_has_quota_ino(sbi
)) {
1753 err
= f2fs_enable_quotas(sb
);
1759 /* disallow enable/disable extent_cache dynamically */
1760 if (no_extent_cache
== !!test_opt(sbi
, EXTENT_CACHE
)) {
1762 f2fs_warn(sbi
, "switch extent_cache option is not allowed");
1766 if (no_io_align
== !!F2FS_IO_ALIGNED(sbi
)) {
1768 f2fs_warn(sbi
, "switch io_bits option is not allowed");
1772 if ((*flags
& SB_RDONLY
) && test_opt(sbi
, DISABLE_CHECKPOINT
)) {
1774 f2fs_warn(sbi
, "disabling checkpoint not compatible with read-only");
1779 * We stop the GC thread if FS is mounted as RO
1780 * or if background_gc = off is passed in mount
1781 * option. Also sync the filesystem.
1783 if ((*flags
& SB_RDONLY
) || !test_opt(sbi
, BG_GC
)) {
1784 if (sbi
->gc_thread
) {
1785 f2fs_stop_gc_thread(sbi
);
1786 need_restart_gc
= true;
1788 } else if (!sbi
->gc_thread
) {
1789 err
= f2fs_start_gc_thread(sbi
);
1792 need_stop_gc
= true;
1795 if (*flags
& SB_RDONLY
||
1796 F2FS_OPTION(sbi
).whint_mode
!= org_mount_opt
.whint_mode
) {
1797 writeback_inodes_sb(sb
, WB_REASON_SYNC
);
1800 set_sbi_flag(sbi
, SBI_IS_DIRTY
);
1801 set_sbi_flag(sbi
, SBI_IS_CLOSE
);
1802 f2fs_sync_fs(sb
, 1);
1803 clear_sbi_flag(sbi
, SBI_IS_CLOSE
);
1806 if (checkpoint_changed
) {
1807 if (test_opt(sbi
, DISABLE_CHECKPOINT
)) {
1808 err
= f2fs_disable_checkpoint(sbi
);
1812 f2fs_enable_checkpoint(sbi
);
1817 * We stop issue flush thread if FS is mounted as RO
1818 * or if flush_merge is not passed in mount option.
1820 if ((*flags
& SB_RDONLY
) || !test_opt(sbi
, FLUSH_MERGE
)) {
1821 clear_opt(sbi
, FLUSH_MERGE
);
1822 f2fs_destroy_flush_cmd_control(sbi
, false);
1824 err
= f2fs_create_flush_cmd_control(sbi
);
1830 /* Release old quota file names */
1831 for (i
= 0; i
< MAXQUOTAS
; i
++)
1832 kvfree(org_mount_opt
.s_qf_names
[i
]);
1834 /* Update the POSIXACL Flag */
1835 sb
->s_flags
= (sb
->s_flags
& ~SB_POSIXACL
) |
1836 (test_opt(sbi
, POSIX_ACL
) ? SB_POSIXACL
: 0);
1838 limit_reserve_root(sbi
);
1839 *flags
= (*flags
& ~SB_LAZYTIME
) | (sb
->s_flags
& SB_LAZYTIME
);
1842 if (need_restart_gc
) {
1843 if (f2fs_start_gc_thread(sbi
))
1844 f2fs_warn(sbi
, "background gc thread has stopped");
1845 } else if (need_stop_gc
) {
1846 f2fs_stop_gc_thread(sbi
);
1850 F2FS_OPTION(sbi
).s_jquota_fmt
= org_mount_opt
.s_jquota_fmt
;
1851 for (i
= 0; i
< MAXQUOTAS
; i
++) {
1852 kvfree(F2FS_OPTION(sbi
).s_qf_names
[i
]);
1853 F2FS_OPTION(sbi
).s_qf_names
[i
] = org_mount_opt
.s_qf_names
[i
];
1856 sbi
->mount_opt
= org_mount_opt
;
1857 sb
->s_flags
= old_sb_flags
;
1862 /* Read data from quotafile */
1863 static ssize_t
f2fs_quota_read(struct super_block
*sb
, int type
, char *data
,
1864 size_t len
, loff_t off
)
1866 struct inode
*inode
= sb_dqopt(sb
)->files
[type
];
1867 struct address_space
*mapping
= inode
->i_mapping
;
1868 block_t blkidx
= F2FS_BYTES_TO_BLK(off
);
1869 int offset
= off
& (sb
->s_blocksize
- 1);
1872 loff_t i_size
= i_size_read(inode
);
1879 if (off
+ len
> i_size
)
1882 while (toread
> 0) {
1883 tocopy
= min_t(unsigned long, sb
->s_blocksize
- offset
, toread
);
1885 page
= read_cache_page_gfp(mapping
, blkidx
, GFP_NOFS
);
1887 if (PTR_ERR(page
) == -ENOMEM
) {
1888 congestion_wait(BLK_RW_ASYNC
, HZ
/50);
1891 set_sbi_flag(F2FS_SB(sb
), SBI_QUOTA_NEED_REPAIR
);
1892 return PTR_ERR(page
);
1897 if (unlikely(page
->mapping
!= mapping
)) {
1898 f2fs_put_page(page
, 1);
1901 if (unlikely(!PageUptodate(page
))) {
1902 f2fs_put_page(page
, 1);
1903 set_sbi_flag(F2FS_SB(sb
), SBI_QUOTA_NEED_REPAIR
);
1907 kaddr
= kmap_atomic(page
);
1908 memcpy(data
, kaddr
+ offset
, tocopy
);
1909 kunmap_atomic(kaddr
);
1910 f2fs_put_page(page
, 1);
1920 /* Write to quotafile */
1921 static ssize_t
f2fs_quota_write(struct super_block
*sb
, int type
,
1922 const char *data
, size_t len
, loff_t off
)
1924 struct inode
*inode
= sb_dqopt(sb
)->files
[type
];
1925 struct address_space
*mapping
= inode
->i_mapping
;
1926 const struct address_space_operations
*a_ops
= mapping
->a_ops
;
1927 int offset
= off
& (sb
->s_blocksize
- 1);
1928 size_t towrite
= len
;
1934 while (towrite
> 0) {
1935 tocopy
= min_t(unsigned long, sb
->s_blocksize
- offset
,
1938 err
= a_ops
->write_begin(NULL
, mapping
, off
, tocopy
, 0,
1940 if (unlikely(err
)) {
1941 if (err
== -ENOMEM
) {
1942 congestion_wait(BLK_RW_ASYNC
, HZ
/50);
1945 set_sbi_flag(F2FS_SB(sb
), SBI_QUOTA_NEED_REPAIR
);
1949 kaddr
= kmap_atomic(page
);
1950 memcpy(kaddr
+ offset
, data
, tocopy
);
1951 kunmap_atomic(kaddr
);
1952 flush_dcache_page(page
);
1954 a_ops
->write_end(NULL
, mapping
, off
, tocopy
, tocopy
,
1965 inode
->i_mtime
= inode
->i_ctime
= current_time(inode
);
1966 f2fs_mark_inode_dirty_sync(inode
, false);
1967 return len
- towrite
;
1970 static struct dquot
**f2fs_get_dquots(struct inode
*inode
)
1972 return F2FS_I(inode
)->i_dquot
;
1975 static qsize_t
*f2fs_get_reserved_space(struct inode
*inode
)
1977 return &F2FS_I(inode
)->i_reserved_quota
;
1980 static int f2fs_quota_on_mount(struct f2fs_sb_info
*sbi
, int type
)
1982 if (is_set_ckpt_flags(sbi
, CP_QUOTA_NEED_FSCK_FLAG
)) {
1983 f2fs_err(sbi
, "quota sysfile may be corrupted, skip loading it");
1987 return dquot_quota_on_mount(sbi
->sb
, F2FS_OPTION(sbi
).s_qf_names
[type
],
1988 F2FS_OPTION(sbi
).s_jquota_fmt
, type
);
1991 int f2fs_enable_quota_files(struct f2fs_sb_info
*sbi
, bool rdonly
)
1996 if (f2fs_sb_has_quota_ino(sbi
) && rdonly
) {
1997 err
= f2fs_enable_quotas(sbi
->sb
);
1999 f2fs_err(sbi
, "Cannot turn on quota_ino: %d", err
);
2005 for (i
= 0; i
< MAXQUOTAS
; i
++) {
2006 if (F2FS_OPTION(sbi
).s_qf_names
[i
]) {
2007 err
= f2fs_quota_on_mount(sbi
, i
);
2012 f2fs_err(sbi
, "Cannot turn on quotas: %d on %d",
2019 static int f2fs_quota_enable(struct super_block
*sb
, int type
, int format_id
,
2022 struct inode
*qf_inode
;
2023 unsigned long qf_inum
;
2026 BUG_ON(!f2fs_sb_has_quota_ino(F2FS_SB(sb
)));
2028 qf_inum
= f2fs_qf_ino(sb
, type
);
2032 qf_inode
= f2fs_iget(sb
, qf_inum
);
2033 if (IS_ERR(qf_inode
)) {
2034 f2fs_err(F2FS_SB(sb
), "Bad quota inode %u:%lu", type
, qf_inum
);
2035 return PTR_ERR(qf_inode
);
2038 /* Don't account quota for quota files to avoid recursion */
2039 qf_inode
->i_flags
|= S_NOQUOTA
;
2040 err
= dquot_load_quota_inode(qf_inode
, type
, format_id
, flags
);
2045 static int f2fs_enable_quotas(struct super_block
*sb
)
2047 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
2049 unsigned long qf_inum
;
2050 bool quota_mopt
[MAXQUOTAS
] = {
2051 test_opt(sbi
, USRQUOTA
),
2052 test_opt(sbi
, GRPQUOTA
),
2053 test_opt(sbi
, PRJQUOTA
),
2056 if (is_set_ckpt_flags(F2FS_SB(sb
), CP_QUOTA_NEED_FSCK_FLAG
)) {
2057 f2fs_err(sbi
, "quota file may be corrupted, skip loading it");
2061 sb_dqopt(sb
)->flags
|= DQUOT_QUOTA_SYS_FILE
;
2063 for (type
= 0; type
< MAXQUOTAS
; type
++) {
2064 qf_inum
= f2fs_qf_ino(sb
, type
);
2066 err
= f2fs_quota_enable(sb
, type
, QFMT_VFS_V1
,
2067 DQUOT_USAGE_ENABLED
|
2068 (quota_mopt
[type
] ? DQUOT_LIMITS_ENABLED
: 0));
2070 f2fs_err(sbi
, "Failed to enable quota tracking (type=%d, err=%d). Please run fsck to fix.",
2072 for (type
--; type
>= 0; type
--)
2073 dquot_quota_off(sb
, type
);
2074 set_sbi_flag(F2FS_SB(sb
),
2075 SBI_QUOTA_NEED_REPAIR
);
2083 int f2fs_quota_sync(struct super_block
*sb
, int type
)
2085 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
2086 struct quota_info
*dqopt
= sb_dqopt(sb
);
2093 * down_read(quota_sem)
2094 * dquot_writeback_dquots()
2097 * down_read(quota_sem)
2101 down_read(&sbi
->quota_sem
);
2102 ret
= dquot_writeback_dquots(sb
, type
);
2107 * Now when everything is written we can discard the pagecache so
2108 * that userspace sees the changes.
2110 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
2111 struct address_space
*mapping
;
2113 if (type
!= -1 && cnt
!= type
)
2115 if (!sb_has_quota_active(sb
, cnt
))
2118 mapping
= dqopt
->files
[cnt
]->i_mapping
;
2120 ret
= filemap_fdatawrite(mapping
);
2124 /* if we are using journalled quota */
2125 if (is_journalled_quota(sbi
))
2128 ret
= filemap_fdatawait(mapping
);
2130 set_sbi_flag(F2FS_SB(sb
), SBI_QUOTA_NEED_REPAIR
);
2132 inode_lock(dqopt
->files
[cnt
]);
2133 truncate_inode_pages(&dqopt
->files
[cnt
]->i_data
, 0);
2134 inode_unlock(dqopt
->files
[cnt
]);
2138 set_sbi_flag(F2FS_SB(sb
), SBI_QUOTA_NEED_REPAIR
);
2139 up_read(&sbi
->quota_sem
);
2140 f2fs_unlock_op(sbi
);
2144 static int f2fs_quota_on(struct super_block
*sb
, int type
, int format_id
,
2145 const struct path
*path
)
2147 struct inode
*inode
;
2150 /* if quota sysfile exists, deny enabling quota with specific file */
2151 if (f2fs_sb_has_quota_ino(F2FS_SB(sb
))) {
2152 f2fs_err(F2FS_SB(sb
), "quota sysfile already exists");
2156 err
= f2fs_quota_sync(sb
, type
);
2160 err
= dquot_quota_on(sb
, type
, format_id
, path
);
2164 inode
= d_inode(path
->dentry
);
2167 F2FS_I(inode
)->i_flags
|= F2FS_NOATIME_FL
| F2FS_IMMUTABLE_FL
;
2168 f2fs_set_inode_flags(inode
);
2169 inode_unlock(inode
);
2170 f2fs_mark_inode_dirty_sync(inode
, false);
2175 static int __f2fs_quota_off(struct super_block
*sb
, int type
)
2177 struct inode
*inode
= sb_dqopt(sb
)->files
[type
];
2180 if (!inode
|| !igrab(inode
))
2181 return dquot_quota_off(sb
, type
);
2183 err
= f2fs_quota_sync(sb
, type
);
2187 err
= dquot_quota_off(sb
, type
);
2188 if (err
|| f2fs_sb_has_quota_ino(F2FS_SB(sb
)))
2192 F2FS_I(inode
)->i_flags
&= ~(F2FS_NOATIME_FL
| F2FS_IMMUTABLE_FL
);
2193 f2fs_set_inode_flags(inode
);
2194 inode_unlock(inode
);
2195 f2fs_mark_inode_dirty_sync(inode
, false);
2201 static int f2fs_quota_off(struct super_block
*sb
, int type
)
2203 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
2206 err
= __f2fs_quota_off(sb
, type
);
2209 * quotactl can shutdown journalled quota, result in inconsistence
2210 * between quota record and fs data by following updates, tag the
2211 * flag to let fsck be aware of it.
2213 if (is_journalled_quota(sbi
))
2214 set_sbi_flag(sbi
, SBI_QUOTA_NEED_REPAIR
);
2218 void f2fs_quota_off_umount(struct super_block
*sb
)
2223 for (type
= 0; type
< MAXQUOTAS
; type
++) {
2224 err
= __f2fs_quota_off(sb
, type
);
2226 int ret
= dquot_quota_off(sb
, type
);
2228 f2fs_err(F2FS_SB(sb
), "Fail to turn off disk quota (type: %d, err: %d, ret:%d), Please run fsck to fix it.",
2230 set_sbi_flag(F2FS_SB(sb
), SBI_QUOTA_NEED_REPAIR
);
2234 * In case of checkpoint=disable, we must flush quota blocks.
2235 * This can cause NULL exception for node_inode in end_io, since
2236 * put_super already dropped it.
2238 sync_filesystem(sb
);
2241 static void f2fs_truncate_quota_inode_pages(struct super_block
*sb
)
2243 struct quota_info
*dqopt
= sb_dqopt(sb
);
2246 for (type
= 0; type
< MAXQUOTAS
; type
++) {
2247 if (!dqopt
->files
[type
])
2249 f2fs_inode_synced(dqopt
->files
[type
]);
2253 static int f2fs_dquot_commit(struct dquot
*dquot
)
2255 struct f2fs_sb_info
*sbi
= F2FS_SB(dquot
->dq_sb
);
2258 down_read_nested(&sbi
->quota_sem
, SINGLE_DEPTH_NESTING
);
2259 ret
= dquot_commit(dquot
);
2261 set_sbi_flag(sbi
, SBI_QUOTA_NEED_REPAIR
);
2262 up_read(&sbi
->quota_sem
);
2266 static int f2fs_dquot_acquire(struct dquot
*dquot
)
2268 struct f2fs_sb_info
*sbi
= F2FS_SB(dquot
->dq_sb
);
2271 down_read(&sbi
->quota_sem
);
2272 ret
= dquot_acquire(dquot
);
2274 set_sbi_flag(sbi
, SBI_QUOTA_NEED_REPAIR
);
2275 up_read(&sbi
->quota_sem
);
2279 static int f2fs_dquot_release(struct dquot
*dquot
)
2281 struct f2fs_sb_info
*sbi
= F2FS_SB(dquot
->dq_sb
);
2282 int ret
= dquot_release(dquot
);
2285 set_sbi_flag(sbi
, SBI_QUOTA_NEED_REPAIR
);
2289 static int f2fs_dquot_mark_dquot_dirty(struct dquot
*dquot
)
2291 struct super_block
*sb
= dquot
->dq_sb
;
2292 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
2293 int ret
= dquot_mark_dquot_dirty(dquot
);
2295 /* if we are using journalled quota */
2296 if (is_journalled_quota(sbi
))
2297 set_sbi_flag(sbi
, SBI_QUOTA_NEED_FLUSH
);
2302 static int f2fs_dquot_commit_info(struct super_block
*sb
, int type
)
2304 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
2305 int ret
= dquot_commit_info(sb
, type
);
2308 set_sbi_flag(sbi
, SBI_QUOTA_NEED_REPAIR
);
2312 static int f2fs_get_projid(struct inode
*inode
, kprojid_t
*projid
)
2314 *projid
= F2FS_I(inode
)->i_projid
;
2318 static const struct dquot_operations f2fs_quota_operations
= {
2319 .get_reserved_space
= f2fs_get_reserved_space
,
2320 .write_dquot
= f2fs_dquot_commit
,
2321 .acquire_dquot
= f2fs_dquot_acquire
,
2322 .release_dquot
= f2fs_dquot_release
,
2323 .mark_dirty
= f2fs_dquot_mark_dquot_dirty
,
2324 .write_info
= f2fs_dquot_commit_info
,
2325 .alloc_dquot
= dquot_alloc
,
2326 .destroy_dquot
= dquot_destroy
,
2327 .get_projid
= f2fs_get_projid
,
2328 .get_next_id
= dquot_get_next_id
,
2331 static const struct quotactl_ops f2fs_quotactl_ops
= {
2332 .quota_on
= f2fs_quota_on
,
2333 .quota_off
= f2fs_quota_off
,
2334 .quota_sync
= f2fs_quota_sync
,
2335 .get_state
= dquot_get_state
,
2336 .set_info
= dquot_set_dqinfo
,
2337 .get_dqblk
= dquot_get_dqblk
,
2338 .set_dqblk
= dquot_set_dqblk
,
2339 .get_nextdqblk
= dquot_get_next_dqblk
,
2342 int f2fs_quota_sync(struct super_block
*sb
, int type
)
2347 void f2fs_quota_off_umount(struct super_block
*sb
)
2352 static const struct super_operations f2fs_sops
= {
2353 .alloc_inode
= f2fs_alloc_inode
,
2354 .free_inode
= f2fs_free_inode
,
2355 .drop_inode
= f2fs_drop_inode
,
2356 .write_inode
= f2fs_write_inode
,
2357 .dirty_inode
= f2fs_dirty_inode
,
2358 .show_options
= f2fs_show_options
,
2360 .quota_read
= f2fs_quota_read
,
2361 .quota_write
= f2fs_quota_write
,
2362 .get_dquots
= f2fs_get_dquots
,
2364 .evict_inode
= f2fs_evict_inode
,
2365 .put_super
= f2fs_put_super
,
2366 .sync_fs
= f2fs_sync_fs
,
2367 .freeze_fs
= f2fs_freeze
,
2368 .unfreeze_fs
= f2fs_unfreeze
,
2369 .statfs
= f2fs_statfs
,
2370 .remount_fs
= f2fs_remount
,
2373 #ifdef CONFIG_FS_ENCRYPTION
2374 static int f2fs_get_context(struct inode
*inode
, void *ctx
, size_t len
)
2376 return f2fs_getxattr(inode
, F2FS_XATTR_INDEX_ENCRYPTION
,
2377 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT
,
2381 static int f2fs_set_context(struct inode
*inode
, const void *ctx
, size_t len
,
2384 struct f2fs_sb_info
*sbi
= F2FS_I_SB(inode
);
2387 * Encrypting the root directory is not allowed because fsck
2388 * expects lost+found directory to exist and remain unencrypted
2389 * if LOST_FOUND feature is enabled.
2392 if (f2fs_sb_has_lost_found(sbi
) &&
2393 inode
->i_ino
== F2FS_ROOT_INO(sbi
))
2396 return f2fs_setxattr(inode
, F2FS_XATTR_INDEX_ENCRYPTION
,
2397 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT
,
2398 ctx
, len
, fs_data
, XATTR_CREATE
);
2401 static bool f2fs_dummy_context(struct inode
*inode
)
2403 return DUMMY_ENCRYPTION_ENABLED(F2FS_I_SB(inode
));
2406 static bool f2fs_has_stable_inodes(struct super_block
*sb
)
2411 static void f2fs_get_ino_and_lblk_bits(struct super_block
*sb
,
2412 int *ino_bits_ret
, int *lblk_bits_ret
)
2414 *ino_bits_ret
= 8 * sizeof(nid_t
);
2415 *lblk_bits_ret
= 8 * sizeof(block_t
);
2418 static const struct fscrypt_operations f2fs_cryptops
= {
2419 .key_prefix
= "f2fs:",
2420 .get_context
= f2fs_get_context
,
2421 .set_context
= f2fs_set_context
,
2422 .dummy_context
= f2fs_dummy_context
,
2423 .empty_dir
= f2fs_empty_dir
,
2424 .max_namelen
= F2FS_NAME_LEN
,
2425 .has_stable_inodes
= f2fs_has_stable_inodes
,
2426 .get_ino_and_lblk_bits
= f2fs_get_ino_and_lblk_bits
,
2430 static struct inode
*f2fs_nfs_get_inode(struct super_block
*sb
,
2431 u64 ino
, u32 generation
)
2433 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
2434 struct inode
*inode
;
2436 if (f2fs_check_nid_range(sbi
, ino
))
2437 return ERR_PTR(-ESTALE
);
2440 * f2fs_iget isn't quite right if the inode is currently unallocated!
2441 * However f2fs_iget currently does appropriate checks to handle stale
2442 * inodes so everything is OK.
2444 inode
= f2fs_iget(sb
, ino
);
2446 return ERR_CAST(inode
);
2447 if (unlikely(generation
&& inode
->i_generation
!= generation
)) {
2448 /* we didn't find the right inode.. */
2450 return ERR_PTR(-ESTALE
);
2455 static struct dentry
*f2fs_fh_to_dentry(struct super_block
*sb
, struct fid
*fid
,
2456 int fh_len
, int fh_type
)
2458 return generic_fh_to_dentry(sb
, fid
, fh_len
, fh_type
,
2459 f2fs_nfs_get_inode
);
2462 static struct dentry
*f2fs_fh_to_parent(struct super_block
*sb
, struct fid
*fid
,
2463 int fh_len
, int fh_type
)
2465 return generic_fh_to_parent(sb
, fid
, fh_len
, fh_type
,
2466 f2fs_nfs_get_inode
);
2469 static const struct export_operations f2fs_export_ops
= {
2470 .fh_to_dentry
= f2fs_fh_to_dentry
,
2471 .fh_to_parent
= f2fs_fh_to_parent
,
2472 .get_parent
= f2fs_get_parent
,
2475 static loff_t
max_file_blocks(void)
2478 loff_t leaf_count
= DEF_ADDRS_PER_BLOCK
;
2481 * note: previously, result is equal to (DEF_ADDRS_PER_INODE -
2482 * DEFAULT_INLINE_XATTR_ADDRS), but now f2fs try to reserve more
2483 * space in inode.i_addr, it will be more safe to reassign
2487 /* two direct node blocks */
2488 result
+= (leaf_count
* 2);
2490 /* two indirect node blocks */
2491 leaf_count
*= NIDS_PER_BLOCK
;
2492 result
+= (leaf_count
* 2);
2494 /* one double indirect node block */
2495 leaf_count
*= NIDS_PER_BLOCK
;
2496 result
+= leaf_count
;
2501 static int __f2fs_commit_super(struct buffer_head
*bh
,
2502 struct f2fs_super_block
*super
)
2506 memcpy(bh
->b_data
+ F2FS_SUPER_OFFSET
, super
, sizeof(*super
));
2507 set_buffer_dirty(bh
);
2510 /* it's rare case, we can do fua all the time */
2511 return __sync_dirty_buffer(bh
, REQ_SYNC
| REQ_PREFLUSH
| REQ_FUA
);
2514 static inline bool sanity_check_area_boundary(struct f2fs_sb_info
*sbi
,
2515 struct buffer_head
*bh
)
2517 struct f2fs_super_block
*raw_super
= (struct f2fs_super_block
*)
2518 (bh
->b_data
+ F2FS_SUPER_OFFSET
);
2519 struct super_block
*sb
= sbi
->sb
;
2520 u32 segment0_blkaddr
= le32_to_cpu(raw_super
->segment0_blkaddr
);
2521 u32 cp_blkaddr
= le32_to_cpu(raw_super
->cp_blkaddr
);
2522 u32 sit_blkaddr
= le32_to_cpu(raw_super
->sit_blkaddr
);
2523 u32 nat_blkaddr
= le32_to_cpu(raw_super
->nat_blkaddr
);
2524 u32 ssa_blkaddr
= le32_to_cpu(raw_super
->ssa_blkaddr
);
2525 u32 main_blkaddr
= le32_to_cpu(raw_super
->main_blkaddr
);
2526 u32 segment_count_ckpt
= le32_to_cpu(raw_super
->segment_count_ckpt
);
2527 u32 segment_count_sit
= le32_to_cpu(raw_super
->segment_count_sit
);
2528 u32 segment_count_nat
= le32_to_cpu(raw_super
->segment_count_nat
);
2529 u32 segment_count_ssa
= le32_to_cpu(raw_super
->segment_count_ssa
);
2530 u32 segment_count_main
= le32_to_cpu(raw_super
->segment_count_main
);
2531 u32 segment_count
= le32_to_cpu(raw_super
->segment_count
);
2532 u32 log_blocks_per_seg
= le32_to_cpu(raw_super
->log_blocks_per_seg
);
2533 u64 main_end_blkaddr
= main_blkaddr
+
2534 (segment_count_main
<< log_blocks_per_seg
);
2535 u64 seg_end_blkaddr
= segment0_blkaddr
+
2536 (segment_count
<< log_blocks_per_seg
);
2538 if (segment0_blkaddr
!= cp_blkaddr
) {
2539 f2fs_info(sbi
, "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
2540 segment0_blkaddr
, cp_blkaddr
);
2544 if (cp_blkaddr
+ (segment_count_ckpt
<< log_blocks_per_seg
) !=
2546 f2fs_info(sbi
, "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
2547 cp_blkaddr
, sit_blkaddr
,
2548 segment_count_ckpt
<< log_blocks_per_seg
);
2552 if (sit_blkaddr
+ (segment_count_sit
<< log_blocks_per_seg
) !=
2554 f2fs_info(sbi
, "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
2555 sit_blkaddr
, nat_blkaddr
,
2556 segment_count_sit
<< log_blocks_per_seg
);
2560 if (nat_blkaddr
+ (segment_count_nat
<< log_blocks_per_seg
) !=
2562 f2fs_info(sbi
, "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
2563 nat_blkaddr
, ssa_blkaddr
,
2564 segment_count_nat
<< log_blocks_per_seg
);
2568 if (ssa_blkaddr
+ (segment_count_ssa
<< log_blocks_per_seg
) !=
2570 f2fs_info(sbi
, "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
2571 ssa_blkaddr
, main_blkaddr
,
2572 segment_count_ssa
<< log_blocks_per_seg
);
2576 if (main_end_blkaddr
> seg_end_blkaddr
) {
2577 f2fs_info(sbi
, "Wrong MAIN_AREA boundary, start(%u) end(%u) block(%u)",
2580 (segment_count
<< log_blocks_per_seg
),
2581 segment_count_main
<< log_blocks_per_seg
);
2583 } else if (main_end_blkaddr
< seg_end_blkaddr
) {
2587 /* fix in-memory information all the time */
2588 raw_super
->segment_count
= cpu_to_le32((main_end_blkaddr
-
2589 segment0_blkaddr
) >> log_blocks_per_seg
);
2591 if (f2fs_readonly(sb
) || bdev_read_only(sb
->s_bdev
)) {
2592 set_sbi_flag(sbi
, SBI_NEED_SB_WRITE
);
2595 err
= __f2fs_commit_super(bh
, NULL
);
2596 res
= err
? "failed" : "done";
2598 f2fs_info(sbi
, "Fix alignment : %s, start(%u) end(%u) block(%u)",
2601 (segment_count
<< log_blocks_per_seg
),
2602 segment_count_main
<< log_blocks_per_seg
);
2609 static int sanity_check_raw_super(struct f2fs_sb_info
*sbi
,
2610 struct buffer_head
*bh
)
2612 block_t segment_count
, segs_per_sec
, secs_per_zone
;
2613 block_t total_sections
, blocks_per_seg
;
2614 struct f2fs_super_block
*raw_super
= (struct f2fs_super_block
*)
2615 (bh
->b_data
+ F2FS_SUPER_OFFSET
);
2616 unsigned int blocksize
;
2617 size_t crc_offset
= 0;
2620 if (le32_to_cpu(raw_super
->magic
) != F2FS_SUPER_MAGIC
) {
2621 f2fs_info(sbi
, "Magic Mismatch, valid(0x%x) - read(0x%x)",
2622 F2FS_SUPER_MAGIC
, le32_to_cpu(raw_super
->magic
));
2626 /* Check checksum_offset and crc in superblock */
2627 if (__F2FS_HAS_FEATURE(raw_super
, F2FS_FEATURE_SB_CHKSUM
)) {
2628 crc_offset
= le32_to_cpu(raw_super
->checksum_offset
);
2630 offsetof(struct f2fs_super_block
, crc
)) {
2631 f2fs_info(sbi
, "Invalid SB checksum offset: %zu",
2633 return -EFSCORRUPTED
;
2635 crc
= le32_to_cpu(raw_super
->crc
);
2636 if (!f2fs_crc_valid(sbi
, crc
, raw_super
, crc_offset
)) {
2637 f2fs_info(sbi
, "Invalid SB checksum value: %u", crc
);
2638 return -EFSCORRUPTED
;
2642 /* Currently, support only 4KB page cache size */
2643 if (F2FS_BLKSIZE
!= PAGE_SIZE
) {
2644 f2fs_info(sbi
, "Invalid page_cache_size (%lu), supports only 4KB",
2646 return -EFSCORRUPTED
;
2649 /* Currently, support only 4KB block size */
2650 blocksize
= 1 << le32_to_cpu(raw_super
->log_blocksize
);
2651 if (blocksize
!= F2FS_BLKSIZE
) {
2652 f2fs_info(sbi
, "Invalid blocksize (%u), supports only 4KB",
2654 return -EFSCORRUPTED
;
2657 /* check log blocks per segment */
2658 if (le32_to_cpu(raw_super
->log_blocks_per_seg
) != 9) {
2659 f2fs_info(sbi
, "Invalid log blocks per segment (%u)",
2660 le32_to_cpu(raw_super
->log_blocks_per_seg
));
2661 return -EFSCORRUPTED
;
2664 /* Currently, support 512/1024/2048/4096 bytes sector size */
2665 if (le32_to_cpu(raw_super
->log_sectorsize
) >
2666 F2FS_MAX_LOG_SECTOR_SIZE
||
2667 le32_to_cpu(raw_super
->log_sectorsize
) <
2668 F2FS_MIN_LOG_SECTOR_SIZE
) {
2669 f2fs_info(sbi
, "Invalid log sectorsize (%u)",
2670 le32_to_cpu(raw_super
->log_sectorsize
));
2671 return -EFSCORRUPTED
;
2673 if (le32_to_cpu(raw_super
->log_sectors_per_block
) +
2674 le32_to_cpu(raw_super
->log_sectorsize
) !=
2675 F2FS_MAX_LOG_SECTOR_SIZE
) {
2676 f2fs_info(sbi
, "Invalid log sectors per block(%u) log sectorsize(%u)",
2677 le32_to_cpu(raw_super
->log_sectors_per_block
),
2678 le32_to_cpu(raw_super
->log_sectorsize
));
2679 return -EFSCORRUPTED
;
2682 segment_count
= le32_to_cpu(raw_super
->segment_count
);
2683 segs_per_sec
= le32_to_cpu(raw_super
->segs_per_sec
);
2684 secs_per_zone
= le32_to_cpu(raw_super
->secs_per_zone
);
2685 total_sections
= le32_to_cpu(raw_super
->section_count
);
2687 /* blocks_per_seg should be 512, given the above check */
2688 blocks_per_seg
= 1 << le32_to_cpu(raw_super
->log_blocks_per_seg
);
2690 if (segment_count
> F2FS_MAX_SEGMENT
||
2691 segment_count
< F2FS_MIN_SEGMENTS
) {
2692 f2fs_info(sbi
, "Invalid segment count (%u)", segment_count
);
2693 return -EFSCORRUPTED
;
2696 if (total_sections
> segment_count
||
2697 total_sections
< F2FS_MIN_SEGMENTS
||
2698 segs_per_sec
> segment_count
|| !segs_per_sec
) {
2699 f2fs_info(sbi
, "Invalid segment/section count (%u, %u x %u)",
2700 segment_count
, total_sections
, segs_per_sec
);
2701 return -EFSCORRUPTED
;
2704 if ((segment_count
/ segs_per_sec
) < total_sections
) {
2705 f2fs_info(sbi
, "Small segment_count (%u < %u * %u)",
2706 segment_count
, segs_per_sec
, total_sections
);
2707 return -EFSCORRUPTED
;
2710 if (segment_count
> (le64_to_cpu(raw_super
->block_count
) >> 9)) {
2711 f2fs_info(sbi
, "Wrong segment_count / block_count (%u > %llu)",
2712 segment_count
, le64_to_cpu(raw_super
->block_count
));
2713 return -EFSCORRUPTED
;
2716 if (RDEV(0).path
[0]) {
2717 block_t dev_seg_count
= le32_to_cpu(RDEV(0).total_segments
);
2720 while (i
< MAX_DEVICES
&& RDEV(i
).path
[0]) {
2721 dev_seg_count
+= le32_to_cpu(RDEV(i
).total_segments
);
2724 if (segment_count
!= dev_seg_count
) {
2725 f2fs_info(sbi
, "Segment count (%u) mismatch with total segments from devices (%u)",
2726 segment_count
, dev_seg_count
);
2727 return -EFSCORRUPTED
;
2731 if (secs_per_zone
> total_sections
|| !secs_per_zone
) {
2732 f2fs_info(sbi
, "Wrong secs_per_zone / total_sections (%u, %u)",
2733 secs_per_zone
, total_sections
);
2734 return -EFSCORRUPTED
;
2736 if (le32_to_cpu(raw_super
->extension_count
) > F2FS_MAX_EXTENSION
||
2737 raw_super
->hot_ext_count
> F2FS_MAX_EXTENSION
||
2738 (le32_to_cpu(raw_super
->extension_count
) +
2739 raw_super
->hot_ext_count
) > F2FS_MAX_EXTENSION
) {
2740 f2fs_info(sbi
, "Corrupted extension count (%u + %u > %u)",
2741 le32_to_cpu(raw_super
->extension_count
),
2742 raw_super
->hot_ext_count
,
2743 F2FS_MAX_EXTENSION
);
2744 return -EFSCORRUPTED
;
2747 if (le32_to_cpu(raw_super
->cp_payload
) >
2748 (blocks_per_seg
- F2FS_CP_PACKS
)) {
2749 f2fs_info(sbi
, "Insane cp_payload (%u > %u)",
2750 le32_to_cpu(raw_super
->cp_payload
),
2751 blocks_per_seg
- F2FS_CP_PACKS
);
2752 return -EFSCORRUPTED
;
2755 /* check reserved ino info */
2756 if (le32_to_cpu(raw_super
->node_ino
) != 1 ||
2757 le32_to_cpu(raw_super
->meta_ino
) != 2 ||
2758 le32_to_cpu(raw_super
->root_ino
) != 3) {
2759 f2fs_info(sbi
, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
2760 le32_to_cpu(raw_super
->node_ino
),
2761 le32_to_cpu(raw_super
->meta_ino
),
2762 le32_to_cpu(raw_super
->root_ino
));
2763 return -EFSCORRUPTED
;
2766 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
2767 if (sanity_check_area_boundary(sbi
, bh
))
2768 return -EFSCORRUPTED
;
2773 int f2fs_sanity_check_ckpt(struct f2fs_sb_info
*sbi
)
2775 unsigned int total
, fsmeta
;
2776 struct f2fs_super_block
*raw_super
= F2FS_RAW_SUPER(sbi
);
2777 struct f2fs_checkpoint
*ckpt
= F2FS_CKPT(sbi
);
2778 unsigned int ovp_segments
, reserved_segments
;
2779 unsigned int main_segs
, blocks_per_seg
;
2780 unsigned int sit_segs
, nat_segs
;
2781 unsigned int sit_bitmap_size
, nat_bitmap_size
;
2782 unsigned int log_blocks_per_seg
;
2783 unsigned int segment_count_main
;
2784 unsigned int cp_pack_start_sum
, cp_payload
;
2785 block_t user_block_count
, valid_user_blocks
;
2786 block_t avail_node_count
, valid_node_count
;
2789 total
= le32_to_cpu(raw_super
->segment_count
);
2790 fsmeta
= le32_to_cpu(raw_super
->segment_count_ckpt
);
2791 sit_segs
= le32_to_cpu(raw_super
->segment_count_sit
);
2793 nat_segs
= le32_to_cpu(raw_super
->segment_count_nat
);
2795 fsmeta
+= le32_to_cpu(ckpt
->rsvd_segment_count
);
2796 fsmeta
+= le32_to_cpu(raw_super
->segment_count_ssa
);
2798 if (unlikely(fsmeta
>= total
))
2801 ovp_segments
= le32_to_cpu(ckpt
->overprov_segment_count
);
2802 reserved_segments
= le32_to_cpu(ckpt
->rsvd_segment_count
);
2804 if (unlikely(fsmeta
< F2FS_MIN_SEGMENTS
||
2805 ovp_segments
== 0 || reserved_segments
== 0)) {
2806 f2fs_err(sbi
, "Wrong layout: check mkfs.f2fs version");
2810 user_block_count
= le64_to_cpu(ckpt
->user_block_count
);
2811 segment_count_main
= le32_to_cpu(raw_super
->segment_count_main
);
2812 log_blocks_per_seg
= le32_to_cpu(raw_super
->log_blocks_per_seg
);
2813 if (!user_block_count
|| user_block_count
>=
2814 segment_count_main
<< log_blocks_per_seg
) {
2815 f2fs_err(sbi
, "Wrong user_block_count: %u",
2820 valid_user_blocks
= le64_to_cpu(ckpt
->valid_block_count
);
2821 if (valid_user_blocks
> user_block_count
) {
2822 f2fs_err(sbi
, "Wrong valid_user_blocks: %u, user_block_count: %u",
2823 valid_user_blocks
, user_block_count
);
2827 valid_node_count
= le32_to_cpu(ckpt
->valid_node_count
);
2828 avail_node_count
= sbi
->total_node_count
- F2FS_RESERVED_NODE_NUM
;
2829 if (valid_node_count
> avail_node_count
) {
2830 f2fs_err(sbi
, "Wrong valid_node_count: %u, avail_node_count: %u",
2831 valid_node_count
, avail_node_count
);
2835 main_segs
= le32_to_cpu(raw_super
->segment_count_main
);
2836 blocks_per_seg
= sbi
->blocks_per_seg
;
2838 for (i
= 0; i
< NR_CURSEG_NODE_TYPE
; i
++) {
2839 if (le32_to_cpu(ckpt
->cur_node_segno
[i
]) >= main_segs
||
2840 le16_to_cpu(ckpt
->cur_node_blkoff
[i
]) >= blocks_per_seg
)
2842 for (j
= i
+ 1; j
< NR_CURSEG_NODE_TYPE
; j
++) {
2843 if (le32_to_cpu(ckpt
->cur_node_segno
[i
]) ==
2844 le32_to_cpu(ckpt
->cur_node_segno
[j
])) {
2845 f2fs_err(sbi
, "Node segment (%u, %u) has the same segno: %u",
2847 le32_to_cpu(ckpt
->cur_node_segno
[i
]));
2852 for (i
= 0; i
< NR_CURSEG_DATA_TYPE
; i
++) {
2853 if (le32_to_cpu(ckpt
->cur_data_segno
[i
]) >= main_segs
||
2854 le16_to_cpu(ckpt
->cur_data_blkoff
[i
]) >= blocks_per_seg
)
2856 for (j
= i
+ 1; j
< NR_CURSEG_DATA_TYPE
; j
++) {
2857 if (le32_to_cpu(ckpt
->cur_data_segno
[i
]) ==
2858 le32_to_cpu(ckpt
->cur_data_segno
[j
])) {
2859 f2fs_err(sbi
, "Data segment (%u, %u) has the same segno: %u",
2861 le32_to_cpu(ckpt
->cur_data_segno
[i
]));
2866 for (i
= 0; i
< NR_CURSEG_NODE_TYPE
; i
++) {
2867 for (j
= 0; j
< NR_CURSEG_DATA_TYPE
; j
++) {
2868 if (le32_to_cpu(ckpt
->cur_node_segno
[i
]) ==
2869 le32_to_cpu(ckpt
->cur_data_segno
[j
])) {
2870 f2fs_err(sbi
, "Node segment (%u) and Data segment (%u) has the same segno: %u",
2872 le32_to_cpu(ckpt
->cur_node_segno
[i
]));
2878 sit_bitmap_size
= le32_to_cpu(ckpt
->sit_ver_bitmap_bytesize
);
2879 nat_bitmap_size
= le32_to_cpu(ckpt
->nat_ver_bitmap_bytesize
);
2881 if (sit_bitmap_size
!= ((sit_segs
/ 2) << log_blocks_per_seg
) / 8 ||
2882 nat_bitmap_size
!= ((nat_segs
/ 2) << log_blocks_per_seg
) / 8) {
2883 f2fs_err(sbi
, "Wrong bitmap size: sit: %u, nat:%u",
2884 sit_bitmap_size
, nat_bitmap_size
);
2888 cp_pack_start_sum
= __start_sum_addr(sbi
);
2889 cp_payload
= __cp_payload(sbi
);
2890 if (cp_pack_start_sum
< cp_payload
+ 1 ||
2891 cp_pack_start_sum
> blocks_per_seg
- 1 -
2893 f2fs_err(sbi
, "Wrong cp_pack_start_sum: %u",
2898 if (__is_set_ckpt_flags(ckpt
, CP_LARGE_NAT_BITMAP_FLAG
) &&
2899 le32_to_cpu(ckpt
->checksum_offset
) != CP_MIN_CHKSUM_OFFSET
) {
2900 f2fs_warn(sbi
, "using deprecated layout of large_nat_bitmap, "
2901 "please run fsck v1.13.0 or higher to repair, chksum_offset: %u, "
2902 "fixed with patch: \"f2fs-tools: relocate chksum_offset for large_nat_bitmap feature\"",
2903 le32_to_cpu(ckpt
->checksum_offset
));
2907 if (unlikely(f2fs_cp_error(sbi
))) {
2908 f2fs_err(sbi
, "A bug case: need to run fsck");
2914 static void init_sb_info(struct f2fs_sb_info
*sbi
)
2916 struct f2fs_super_block
*raw_super
= sbi
->raw_super
;
2919 sbi
->log_sectors_per_block
=
2920 le32_to_cpu(raw_super
->log_sectors_per_block
);
2921 sbi
->log_blocksize
= le32_to_cpu(raw_super
->log_blocksize
);
2922 sbi
->blocksize
= 1 << sbi
->log_blocksize
;
2923 sbi
->log_blocks_per_seg
= le32_to_cpu(raw_super
->log_blocks_per_seg
);
2924 sbi
->blocks_per_seg
= 1 << sbi
->log_blocks_per_seg
;
2925 sbi
->segs_per_sec
= le32_to_cpu(raw_super
->segs_per_sec
);
2926 sbi
->secs_per_zone
= le32_to_cpu(raw_super
->secs_per_zone
);
2927 sbi
->total_sections
= le32_to_cpu(raw_super
->section_count
);
2928 sbi
->total_node_count
=
2929 (le32_to_cpu(raw_super
->segment_count_nat
) / 2)
2930 * sbi
->blocks_per_seg
* NAT_ENTRY_PER_BLOCK
;
2931 sbi
->root_ino_num
= le32_to_cpu(raw_super
->root_ino
);
2932 sbi
->node_ino_num
= le32_to_cpu(raw_super
->node_ino
);
2933 sbi
->meta_ino_num
= le32_to_cpu(raw_super
->meta_ino
);
2934 sbi
->cur_victim_sec
= NULL_SECNO
;
2935 sbi
->next_victim_seg
[BG_GC
] = NULL_SEGNO
;
2936 sbi
->next_victim_seg
[FG_GC
] = NULL_SEGNO
;
2937 sbi
->max_victim_search
= DEF_MAX_VICTIM_SEARCH
;
2938 sbi
->migration_granularity
= sbi
->segs_per_sec
;
2940 sbi
->dir_level
= DEF_DIR_LEVEL
;
2941 sbi
->interval_time
[CP_TIME
] = DEF_CP_INTERVAL
;
2942 sbi
->interval_time
[REQ_TIME
] = DEF_IDLE_INTERVAL
;
2943 sbi
->interval_time
[DISCARD_TIME
] = DEF_IDLE_INTERVAL
;
2944 sbi
->interval_time
[GC_TIME
] = DEF_IDLE_INTERVAL
;
2945 sbi
->interval_time
[DISABLE_TIME
] = DEF_DISABLE_INTERVAL
;
2946 sbi
->interval_time
[UMOUNT_DISCARD_TIMEOUT
] =
2947 DEF_UMOUNT_DISCARD_TIMEOUT
;
2948 clear_sbi_flag(sbi
, SBI_NEED_FSCK
);
2950 for (i
= 0; i
< NR_COUNT_TYPE
; i
++)
2951 atomic_set(&sbi
->nr_pages
[i
], 0);
2953 for (i
= 0; i
< META
; i
++)
2954 atomic_set(&sbi
->wb_sync_req
[i
], 0);
2956 INIT_LIST_HEAD(&sbi
->s_list
);
2957 mutex_init(&sbi
->umount_mutex
);
2958 init_rwsem(&sbi
->io_order_lock
);
2959 spin_lock_init(&sbi
->cp_lock
);
2961 sbi
->dirty_device
= 0;
2962 spin_lock_init(&sbi
->dev_lock
);
2964 init_rwsem(&sbi
->sb_lock
);
2965 init_rwsem(&sbi
->pin_sem
);
2968 static int init_percpu_info(struct f2fs_sb_info
*sbi
)
2972 err
= percpu_counter_init(&sbi
->alloc_valid_block_count
, 0, GFP_KERNEL
);
2976 err
= percpu_counter_init(&sbi
->total_valid_inode_count
, 0,
2979 percpu_counter_destroy(&sbi
->alloc_valid_block_count
);
2984 #ifdef CONFIG_BLK_DEV_ZONED
2985 static int f2fs_report_zone_cb(struct blk_zone
*zone
, unsigned int idx
,
2988 struct f2fs_dev_info
*dev
= data
;
2990 if (zone
->type
!= BLK_ZONE_TYPE_CONVENTIONAL
)
2991 set_bit(idx
, dev
->blkz_seq
);
2995 static int init_blkz_info(struct f2fs_sb_info
*sbi
, int devi
)
2997 struct block_device
*bdev
= FDEV(devi
).bdev
;
2998 sector_t nr_sectors
= bdev
->bd_part
->nr_sects
;
3001 if (!f2fs_sb_has_blkzoned(sbi
))
3004 if (sbi
->blocks_per_blkz
&& sbi
->blocks_per_blkz
!=
3005 SECTOR_TO_BLOCK(bdev_zone_sectors(bdev
)))
3007 sbi
->blocks_per_blkz
= SECTOR_TO_BLOCK(bdev_zone_sectors(bdev
));
3008 if (sbi
->log_blocks_per_blkz
&& sbi
->log_blocks_per_blkz
!=
3009 __ilog2_u32(sbi
->blocks_per_blkz
))
3011 sbi
->log_blocks_per_blkz
= __ilog2_u32(sbi
->blocks_per_blkz
);
3012 FDEV(devi
).nr_blkz
= SECTOR_TO_BLOCK(nr_sectors
) >>
3013 sbi
->log_blocks_per_blkz
;
3014 if (nr_sectors
& (bdev_zone_sectors(bdev
) - 1))
3015 FDEV(devi
).nr_blkz
++;
3017 FDEV(devi
).blkz_seq
= f2fs_kzalloc(sbi
,
3018 BITS_TO_LONGS(FDEV(devi
).nr_blkz
)
3019 * sizeof(unsigned long),
3021 if (!FDEV(devi
).blkz_seq
)
3024 /* Get block zones type */
3025 ret
= blkdev_report_zones(bdev
, 0, BLK_ALL_ZONES
, f2fs_report_zone_cb
,
3035 * Read f2fs raw super block.
3036 * Because we have two copies of super block, so read both of them
3037 * to get the first valid one. If any one of them is broken, we pass
3038 * them recovery flag back to the caller.
3040 static int read_raw_super_block(struct f2fs_sb_info
*sbi
,
3041 struct f2fs_super_block
**raw_super
,
3042 int *valid_super_block
, int *recovery
)
3044 struct super_block
*sb
= sbi
->sb
;
3046 struct buffer_head
*bh
;
3047 struct f2fs_super_block
*super
;
3050 super
= kzalloc(sizeof(struct f2fs_super_block
), GFP_KERNEL
);
3054 for (block
= 0; block
< 2; block
++) {
3055 bh
= sb_bread(sb
, block
);
3057 f2fs_err(sbi
, "Unable to read %dth superblock",
3064 /* sanity checking of raw super */
3065 err
= sanity_check_raw_super(sbi
, bh
);
3067 f2fs_err(sbi
, "Can't find valid F2FS filesystem in %dth superblock",
3075 memcpy(super
, bh
->b_data
+ F2FS_SUPER_OFFSET
,
3077 *valid_super_block
= block
;
3083 /* No valid superblock */
3092 int f2fs_commit_super(struct f2fs_sb_info
*sbi
, bool recover
)
3094 struct buffer_head
*bh
;
3098 if ((recover
&& f2fs_readonly(sbi
->sb
)) ||
3099 bdev_read_only(sbi
->sb
->s_bdev
)) {
3100 set_sbi_flag(sbi
, SBI_NEED_SB_WRITE
);
3104 /* we should update superblock crc here */
3105 if (!recover
&& f2fs_sb_has_sb_chksum(sbi
)) {
3106 crc
= f2fs_crc32(sbi
, F2FS_RAW_SUPER(sbi
),
3107 offsetof(struct f2fs_super_block
, crc
));
3108 F2FS_RAW_SUPER(sbi
)->crc
= cpu_to_le32(crc
);
3111 /* write back-up superblock first */
3112 bh
= sb_bread(sbi
->sb
, sbi
->valid_super_block
? 0 : 1);
3115 err
= __f2fs_commit_super(bh
, F2FS_RAW_SUPER(sbi
));
3118 /* if we are in recovery path, skip writing valid superblock */
3122 /* write current valid superblock */
3123 bh
= sb_bread(sbi
->sb
, sbi
->valid_super_block
);
3126 err
= __f2fs_commit_super(bh
, F2FS_RAW_SUPER(sbi
));
3131 static int f2fs_scan_devices(struct f2fs_sb_info
*sbi
)
3133 struct f2fs_super_block
*raw_super
= F2FS_RAW_SUPER(sbi
);
3134 unsigned int max_devices
= MAX_DEVICES
;
3137 /* Initialize single device information */
3138 if (!RDEV(0).path
[0]) {
3139 if (!bdev_is_zoned(sbi
->sb
->s_bdev
))
3145 * Initialize multiple devices information, or single
3146 * zoned block device information.
3148 sbi
->devs
= f2fs_kzalloc(sbi
,
3149 array_size(max_devices
,
3150 sizeof(struct f2fs_dev_info
)),
3155 for (i
= 0; i
< max_devices
; i
++) {
3157 if (i
> 0 && !RDEV(i
).path
[0])
3160 if (max_devices
== 1) {
3161 /* Single zoned block device mount */
3163 blkdev_get_by_dev(sbi
->sb
->s_bdev
->bd_dev
,
3164 sbi
->sb
->s_mode
, sbi
->sb
->s_type
);
3166 /* Multi-device mount */
3167 memcpy(FDEV(i
).path
, RDEV(i
).path
, MAX_PATH_LEN
);
3168 FDEV(i
).total_segments
=
3169 le32_to_cpu(RDEV(i
).total_segments
);
3171 FDEV(i
).start_blk
= 0;
3172 FDEV(i
).end_blk
= FDEV(i
).start_blk
+
3173 (FDEV(i
).total_segments
<<
3174 sbi
->log_blocks_per_seg
) - 1 +
3175 le32_to_cpu(raw_super
->segment0_blkaddr
);
3177 FDEV(i
).start_blk
= FDEV(i
- 1).end_blk
+ 1;
3178 FDEV(i
).end_blk
= FDEV(i
).start_blk
+
3179 (FDEV(i
).total_segments
<<
3180 sbi
->log_blocks_per_seg
) - 1;
3182 FDEV(i
).bdev
= blkdev_get_by_path(FDEV(i
).path
,
3183 sbi
->sb
->s_mode
, sbi
->sb
->s_type
);
3185 if (IS_ERR(FDEV(i
).bdev
))
3186 return PTR_ERR(FDEV(i
).bdev
);
3188 /* to release errored devices */
3189 sbi
->s_ndevs
= i
+ 1;
3191 #ifdef CONFIG_BLK_DEV_ZONED
3192 if (bdev_zoned_model(FDEV(i
).bdev
) == BLK_ZONED_HM
&&
3193 !f2fs_sb_has_blkzoned(sbi
)) {
3194 f2fs_err(sbi
, "Zoned block device feature not enabled\n");
3197 if (bdev_zoned_model(FDEV(i
).bdev
) != BLK_ZONED_NONE
) {
3198 if (init_blkz_info(sbi
, i
)) {
3199 f2fs_err(sbi
, "Failed to initialize F2FS blkzone information");
3202 if (max_devices
== 1)
3204 f2fs_info(sbi
, "Mount Device [%2d]: %20s, %8u, %8x - %8x (zone: %s)",
3206 FDEV(i
).total_segments
,
3207 FDEV(i
).start_blk
, FDEV(i
).end_blk
,
3208 bdev_zoned_model(FDEV(i
).bdev
) == BLK_ZONED_HA
?
3209 "Host-aware" : "Host-managed");
3213 f2fs_info(sbi
, "Mount Device [%2d]: %20s, %8u, %8x - %8x",
3215 FDEV(i
).total_segments
,
3216 FDEV(i
).start_blk
, FDEV(i
).end_blk
);
3219 "IO Block Size: %8d KB", F2FS_IO_SIZE_KB(sbi
));
3223 static int f2fs_setup_casefold(struct f2fs_sb_info
*sbi
)
3225 #ifdef CONFIG_UNICODE
3226 if (f2fs_sb_has_casefold(sbi
) && !sbi
->s_encoding
) {
3227 const struct f2fs_sb_encodings
*encoding_info
;
3228 struct unicode_map
*encoding
;
3229 __u16 encoding_flags
;
3231 if (f2fs_sb_has_encrypt(sbi
)) {
3233 "Can't mount with encoding and encryption");
3237 if (f2fs_sb_read_encoding(sbi
->raw_super
, &encoding_info
,
3240 "Encoding requested by superblock is unknown");
3244 encoding
= utf8_load(encoding_info
->version
);
3245 if (IS_ERR(encoding
)) {
3247 "can't mount with superblock charset: %s-%s "
3248 "not supported by the kernel. flags: 0x%x.",
3249 encoding_info
->name
, encoding_info
->version
,
3251 return PTR_ERR(encoding
);
3253 f2fs_info(sbi
, "Using encoding defined by superblock: "
3254 "%s-%s with flags 0x%hx", encoding_info
->name
,
3255 encoding_info
->version
?:"\b", encoding_flags
);
3257 sbi
->s_encoding
= encoding
;
3258 sbi
->s_encoding_flags
= encoding_flags
;
3259 sbi
->sb
->s_d_op
= &f2fs_dentry_ops
;
3262 if (f2fs_sb_has_casefold(sbi
)) {
3263 f2fs_err(sbi
, "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
3270 static void f2fs_tuning_parameters(struct f2fs_sb_info
*sbi
)
3272 struct f2fs_sm_info
*sm_i
= SM_I(sbi
);
3274 /* adjust parameters according to the volume size */
3275 if (sm_i
->main_segments
<= SMALL_VOLUME_SEGMENTS
) {
3276 F2FS_OPTION(sbi
).alloc_mode
= ALLOC_MODE_REUSE
;
3277 sm_i
->dcc_info
->discard_granularity
= 1;
3278 sm_i
->ipu_policy
= 1 << F2FS_IPU_FORCE
;
3281 sbi
->readdir_ra
= 1;
3284 static int f2fs_fill_super(struct super_block
*sb
, void *data
, int silent
)
3286 struct f2fs_sb_info
*sbi
;
3287 struct f2fs_super_block
*raw_super
;
3290 bool skip_recovery
= false, need_fsck
= false;
3291 char *options
= NULL
;
3292 int recovery
, i
, valid_super_block
;
3293 struct curseg_info
*seg_i
;
3299 valid_super_block
= -1;
3302 /* allocate memory for f2fs-specific super block info */
3303 sbi
= kzalloc(sizeof(struct f2fs_sb_info
), GFP_KERNEL
);
3309 /* Load the checksum driver */
3310 sbi
->s_chksum_driver
= crypto_alloc_shash("crc32", 0, 0);
3311 if (IS_ERR(sbi
->s_chksum_driver
)) {
3312 f2fs_err(sbi
, "Cannot load crc32 driver.");
3313 err
= PTR_ERR(sbi
->s_chksum_driver
);
3314 sbi
->s_chksum_driver
= NULL
;
3318 /* set a block size */
3319 if (unlikely(!sb_set_blocksize(sb
, F2FS_BLKSIZE
))) {
3320 f2fs_err(sbi
, "unable to set blocksize");
3324 err
= read_raw_super_block(sbi
, &raw_super
, &valid_super_block
,
3329 sb
->s_fs_info
= sbi
;
3330 sbi
->raw_super
= raw_super
;
3332 /* precompute checksum seed for metadata */
3333 if (f2fs_sb_has_inode_chksum(sbi
))
3334 sbi
->s_chksum_seed
= f2fs_chksum(sbi
, ~0, raw_super
->uuid
,
3335 sizeof(raw_super
->uuid
));
3338 * The BLKZONED feature indicates that the drive was formatted with
3339 * zone alignment optimization. This is optional for host-aware
3340 * devices, but mandatory for host-managed zoned block devices.
3342 #ifndef CONFIG_BLK_DEV_ZONED
3343 if (f2fs_sb_has_blkzoned(sbi
)) {
3344 f2fs_err(sbi
, "Zoned block device support is not enabled");
3349 default_options(sbi
);
3350 /* parse mount options */
3351 options
= kstrdup((const char *)data
, GFP_KERNEL
);
3352 if (data
&& !options
) {
3357 err
= parse_options(sb
, options
);
3361 sbi
->max_file_blocks
= max_file_blocks();
3362 sb
->s_maxbytes
= sbi
->max_file_blocks
<<
3363 le32_to_cpu(raw_super
->log_blocksize
);
3364 sb
->s_max_links
= F2FS_LINK_MAX
;
3366 err
= f2fs_setup_casefold(sbi
);
3371 sb
->dq_op
= &f2fs_quota_operations
;
3372 sb
->s_qcop
= &f2fs_quotactl_ops
;
3373 sb
->s_quota_types
= QTYPE_MASK_USR
| QTYPE_MASK_GRP
| QTYPE_MASK_PRJ
;
3375 if (f2fs_sb_has_quota_ino(sbi
)) {
3376 for (i
= 0; i
< MAXQUOTAS
; i
++) {
3377 if (f2fs_qf_ino(sbi
->sb
, i
))
3378 sbi
->nquota_files
++;
3383 sb
->s_op
= &f2fs_sops
;
3384 #ifdef CONFIG_FS_ENCRYPTION
3385 sb
->s_cop
= &f2fs_cryptops
;
3387 #ifdef CONFIG_FS_VERITY
3388 sb
->s_vop
= &f2fs_verityops
;
3390 sb
->s_xattr
= f2fs_xattr_handlers
;
3391 sb
->s_export_op
= &f2fs_export_ops
;
3392 sb
->s_magic
= F2FS_SUPER_MAGIC
;
3393 sb
->s_time_gran
= 1;
3394 sb
->s_flags
= (sb
->s_flags
& ~SB_POSIXACL
) |
3395 (test_opt(sbi
, POSIX_ACL
) ? SB_POSIXACL
: 0);
3396 memcpy(&sb
->s_uuid
, raw_super
->uuid
, sizeof(raw_super
->uuid
));
3397 sb
->s_iflags
|= SB_I_CGROUPWB
;
3399 /* init f2fs-specific super block info */
3400 sbi
->valid_super_block
= valid_super_block
;
3401 init_rwsem(&sbi
->gc_lock
);
3402 mutex_init(&sbi
->writepages
);
3403 mutex_init(&sbi
->cp_mutex
);
3404 mutex_init(&sbi
->resize_mutex
);
3405 init_rwsem(&sbi
->node_write
);
3406 init_rwsem(&sbi
->node_change
);
3408 /* disallow all the data/node/meta page writes */
3409 set_sbi_flag(sbi
, SBI_POR_DOING
);
3410 spin_lock_init(&sbi
->stat_lock
);
3412 /* init iostat info */
3413 spin_lock_init(&sbi
->iostat_lock
);
3414 sbi
->iostat_enable
= false;
3416 for (i
= 0; i
< NR_PAGE_TYPE
; i
++) {
3417 int n
= (i
== META
) ? 1: NR_TEMP_TYPE
;
3423 sizeof(struct f2fs_bio_info
)),
3425 if (!sbi
->write_io
[i
]) {
3430 for (j
= HOT
; j
< n
; j
++) {
3431 init_rwsem(&sbi
->write_io
[i
][j
].io_rwsem
);
3432 sbi
->write_io
[i
][j
].sbi
= sbi
;
3433 sbi
->write_io
[i
][j
].bio
= NULL
;
3434 spin_lock_init(&sbi
->write_io
[i
][j
].io_lock
);
3435 INIT_LIST_HEAD(&sbi
->write_io
[i
][j
].io_list
);
3436 INIT_LIST_HEAD(&sbi
->write_io
[i
][j
].bio_list
);
3437 init_rwsem(&sbi
->write_io
[i
][j
].bio_list_lock
);
3441 init_rwsem(&sbi
->cp_rwsem
);
3442 init_rwsem(&sbi
->quota_sem
);
3443 init_waitqueue_head(&sbi
->cp_wait
);
3446 err
= init_percpu_info(sbi
);
3450 if (F2FS_IO_ALIGNED(sbi
)) {
3451 sbi
->write_io_dummy
=
3452 mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi
) - 1), 0);
3453 if (!sbi
->write_io_dummy
) {
3459 /* get an inode for meta space */
3460 sbi
->meta_inode
= f2fs_iget(sb
, F2FS_META_INO(sbi
));
3461 if (IS_ERR(sbi
->meta_inode
)) {
3462 f2fs_err(sbi
, "Failed to read F2FS meta data inode");
3463 err
= PTR_ERR(sbi
->meta_inode
);
3467 err
= f2fs_get_valid_checkpoint(sbi
);
3469 f2fs_err(sbi
, "Failed to get valid F2FS checkpoint");
3470 goto free_meta_inode
;
3473 if (__is_set_ckpt_flags(F2FS_CKPT(sbi
), CP_QUOTA_NEED_FSCK_FLAG
))
3474 set_sbi_flag(sbi
, SBI_QUOTA_NEED_REPAIR
);
3475 if (__is_set_ckpt_flags(F2FS_CKPT(sbi
), CP_DISABLED_QUICK_FLAG
)) {
3476 set_sbi_flag(sbi
, SBI_CP_DISABLED_QUICK
);
3477 sbi
->interval_time
[DISABLE_TIME
] = DEF_DISABLE_QUICK_INTERVAL
;
3480 if (__is_set_ckpt_flags(F2FS_CKPT(sbi
), CP_FSCK_FLAG
))
3481 set_sbi_flag(sbi
, SBI_NEED_FSCK
);
3483 /* Initialize device list */
3484 err
= f2fs_scan_devices(sbi
);
3486 f2fs_err(sbi
, "Failed to find devices");
3490 err
= f2fs_init_post_read_wq(sbi
);
3492 f2fs_err(sbi
, "Failed to initialize post read workqueue");
3496 sbi
->total_valid_node_count
=
3497 le32_to_cpu(sbi
->ckpt
->valid_node_count
);
3498 percpu_counter_set(&sbi
->total_valid_inode_count
,
3499 le32_to_cpu(sbi
->ckpt
->valid_inode_count
));
3500 sbi
->user_block_count
= le64_to_cpu(sbi
->ckpt
->user_block_count
);
3501 sbi
->total_valid_block_count
=
3502 le64_to_cpu(sbi
->ckpt
->valid_block_count
);
3503 sbi
->last_valid_block_count
= sbi
->total_valid_block_count
;
3504 sbi
->reserved_blocks
= 0;
3505 sbi
->current_reserved_blocks
= 0;
3506 limit_reserve_root(sbi
);
3508 for (i
= 0; i
< NR_INODE_TYPE
; i
++) {
3509 INIT_LIST_HEAD(&sbi
->inode_list
[i
]);
3510 spin_lock_init(&sbi
->inode_lock
[i
]);
3512 mutex_init(&sbi
->flush_lock
);
3514 f2fs_init_extent_cache_info(sbi
);
3516 f2fs_init_ino_entry_info(sbi
);
3518 f2fs_init_fsync_node_info(sbi
);
3520 /* setup f2fs internal modules */
3521 err
= f2fs_build_segment_manager(sbi
);
3523 f2fs_err(sbi
, "Failed to initialize F2FS segment manager (%d)",
3527 err
= f2fs_build_node_manager(sbi
);
3529 f2fs_err(sbi
, "Failed to initialize F2FS node manager (%d)",
3534 /* For write statistics */
3535 if (sb
->s_bdev
->bd_part
)
3536 sbi
->sectors_written_start
=
3537 (u64
)part_stat_read(sb
->s_bdev
->bd_part
,
3538 sectors
[STAT_WRITE
]);
3540 /* Read accumulated write IO statistics if exists */
3541 seg_i
= CURSEG_I(sbi
, CURSEG_HOT_NODE
);
3542 if (__exist_node_summaries(sbi
))
3543 sbi
->kbytes_written
=
3544 le64_to_cpu(seg_i
->journal
->info
.kbytes_written
);
3546 f2fs_build_gc_manager(sbi
);
3548 err
= f2fs_build_stats(sbi
);
3552 /* get an inode for node space */
3553 sbi
->node_inode
= f2fs_iget(sb
, F2FS_NODE_INO(sbi
));
3554 if (IS_ERR(sbi
->node_inode
)) {
3555 f2fs_err(sbi
, "Failed to read node inode");
3556 err
= PTR_ERR(sbi
->node_inode
);
3560 /* read root inode and dentry */
3561 root
= f2fs_iget(sb
, F2FS_ROOT_INO(sbi
));
3563 f2fs_err(sbi
, "Failed to read root inode");
3564 err
= PTR_ERR(root
);
3565 goto free_node_inode
;
3567 if (!S_ISDIR(root
->i_mode
) || !root
->i_blocks
||
3568 !root
->i_size
|| !root
->i_nlink
) {
3571 goto free_node_inode
;
3574 sb
->s_root
= d_make_root(root
); /* allocate root dentry */
3577 goto free_node_inode
;
3580 err
= f2fs_register_sysfs(sbi
);
3582 goto free_root_inode
;
3585 /* Enable quota usage during mount */
3586 if (f2fs_sb_has_quota_ino(sbi
) && !f2fs_readonly(sb
)) {
3587 err
= f2fs_enable_quotas(sb
);
3589 f2fs_err(sbi
, "Cannot turn on quotas: error %d", err
);
3592 /* if there are nt orphan nodes free them */
3593 err
= f2fs_recover_orphan_inodes(sbi
);
3597 if (unlikely(is_set_ckpt_flags(sbi
, CP_DISABLED_FLAG
)))
3598 goto reset_checkpoint
;
3600 /* recover fsynced data */
3601 if (!test_opt(sbi
, DISABLE_ROLL_FORWARD
)) {
3603 * mount should be failed, when device has readonly mode, and
3604 * previous checkpoint was not done by clean system shutdown.
3606 if (f2fs_hw_is_readonly(sbi
)) {
3607 if (!is_set_ckpt_flags(sbi
, CP_UMOUNT_FLAG
)) {
3609 f2fs_err(sbi
, "Need to recover fsync data, but write access unavailable");
3612 f2fs_info(sbi
, "write access unavailable, skipping recovery");
3613 goto reset_checkpoint
;
3617 set_sbi_flag(sbi
, SBI_NEED_FSCK
);
3620 goto reset_checkpoint
;
3622 err
= f2fs_recover_fsync_data(sbi
, false);
3625 skip_recovery
= true;
3627 f2fs_err(sbi
, "Cannot recover all fsync data errno=%d",
3632 err
= f2fs_recover_fsync_data(sbi
, true);
3634 if (!f2fs_readonly(sb
) && err
> 0) {
3636 f2fs_err(sbi
, "Need to recover fsync data");
3642 * If the f2fs is not readonly and fsync data recovery succeeds,
3643 * check zoned block devices' write pointer consistency.
3645 if (!err
&& !f2fs_readonly(sb
) && f2fs_sb_has_blkzoned(sbi
)) {
3646 err
= f2fs_check_write_pointer(sbi
);
3652 /* f2fs_recover_fsync_data() cleared this already */
3653 clear_sbi_flag(sbi
, SBI_POR_DOING
);
3655 if (test_opt(sbi
, DISABLE_CHECKPOINT
)) {
3656 err
= f2fs_disable_checkpoint(sbi
);
3658 goto sync_free_meta
;
3659 } else if (is_set_ckpt_flags(sbi
, CP_DISABLED_FLAG
)) {
3660 f2fs_enable_checkpoint(sbi
);
3664 * If filesystem is not mounted as read-only then
3665 * do start the gc_thread.
3667 if (test_opt(sbi
, BG_GC
) && !f2fs_readonly(sb
)) {
3668 /* After POR, we can run background GC thread.*/
3669 err
= f2fs_start_gc_thread(sbi
);
3671 goto sync_free_meta
;
3675 /* recover broken superblock */
3677 err
= f2fs_commit_super(sbi
, true);
3678 f2fs_info(sbi
, "Try to recover %dth superblock, ret: %d",
3679 sbi
->valid_super_block
? 1 : 2, err
);
3682 f2fs_join_shrinker(sbi
);
3684 f2fs_tuning_parameters(sbi
);
3686 f2fs_notice(sbi
, "Mounted with checkpoint version = %llx",
3687 cur_cp_version(F2FS_CKPT(sbi
)));
3688 f2fs_update_time(sbi
, CP_TIME
);
3689 f2fs_update_time(sbi
, REQ_TIME
);
3690 clear_sbi_flag(sbi
, SBI_CP_DISABLED_QUICK
);
3694 /* safe to flush all the data */
3695 sync_filesystem(sbi
->sb
);
3700 f2fs_truncate_quota_inode_pages(sb
);
3701 if (f2fs_sb_has_quota_ino(sbi
) && !f2fs_readonly(sb
))
3702 f2fs_quota_off_umount(sbi
->sb
);
3705 * Some dirty meta pages can be produced by f2fs_recover_orphan_inodes()
3706 * failed by EIO. Then, iput(node_inode) can trigger balance_fs_bg()
3707 * followed by f2fs_write_checkpoint() through f2fs_write_node_pages(), which
3708 * falls into an infinite loop in f2fs_sync_meta_pages().
3710 truncate_inode_pages_final(META_MAPPING(sbi
));
3711 /* evict some inodes being cached by GC */
3713 f2fs_unregister_sysfs(sbi
);
3718 f2fs_release_ino_entry(sbi
, true);
3719 truncate_inode_pages_final(NODE_MAPPING(sbi
));
3720 iput(sbi
->node_inode
);
3721 sbi
->node_inode
= NULL
;
3723 f2fs_destroy_stats(sbi
);
3725 f2fs_destroy_node_manager(sbi
);
3727 f2fs_destroy_segment_manager(sbi
);
3728 f2fs_destroy_post_read_wq(sbi
);
3730 destroy_device_list(sbi
);
3733 make_bad_inode(sbi
->meta_inode
);
3734 iput(sbi
->meta_inode
);
3735 sbi
->meta_inode
= NULL
;
3737 mempool_destroy(sbi
->write_io_dummy
);
3739 destroy_percpu_info(sbi
);
3741 for (i
= 0; i
< NR_PAGE_TYPE
; i
++)
3742 kvfree(sbi
->write_io
[i
]);
3744 #ifdef CONFIG_UNICODE
3745 utf8_unload(sbi
->s_encoding
);
3749 for (i
= 0; i
< MAXQUOTAS
; i
++)
3750 kvfree(F2FS_OPTION(sbi
).s_qf_names
[i
]);
3756 if (sbi
->s_chksum_driver
)
3757 crypto_free_shash(sbi
->s_chksum_driver
);
3760 /* give only one another chance */
3761 if (retry_cnt
> 0 && skip_recovery
) {
3763 shrink_dcache_sb(sb
);
3769 static struct dentry
*f2fs_mount(struct file_system_type
*fs_type
, int flags
,
3770 const char *dev_name
, void *data
)
3772 return mount_bdev(fs_type
, flags
, dev_name
, data
, f2fs_fill_super
);
3775 static void kill_f2fs_super(struct super_block
*sb
)
3778 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
3780 set_sbi_flag(sbi
, SBI_IS_CLOSE
);
3781 f2fs_stop_gc_thread(sbi
);
3782 f2fs_stop_discard_thread(sbi
);
3784 if (is_sbi_flag_set(sbi
, SBI_IS_DIRTY
) ||
3785 !is_set_ckpt_flags(sbi
, CP_UMOUNT_FLAG
)) {
3786 struct cp_control cpc
= {
3787 .reason
= CP_UMOUNT
,
3789 f2fs_write_checkpoint(sbi
, &cpc
);
3792 if (is_sbi_flag_set(sbi
, SBI_IS_RECOVERED
) && f2fs_readonly(sb
))
3793 sb
->s_flags
&= ~SB_RDONLY
;
3795 kill_block_super(sb
);
3798 static struct file_system_type f2fs_fs_type
= {
3799 .owner
= THIS_MODULE
,
3801 .mount
= f2fs_mount
,
3802 .kill_sb
= kill_f2fs_super
,
3803 .fs_flags
= FS_REQUIRES_DEV
,
3805 MODULE_ALIAS_FS("f2fs");
3807 static int __init
init_inodecache(void)
3809 f2fs_inode_cachep
= kmem_cache_create("f2fs_inode_cache",
3810 sizeof(struct f2fs_inode_info
), 0,
3811 SLAB_RECLAIM_ACCOUNT
|SLAB_ACCOUNT
, NULL
);
3812 if (!f2fs_inode_cachep
)
3817 static void destroy_inodecache(void)
3820 * Make sure all delayed rcu free inodes are flushed before we
3824 kmem_cache_destroy(f2fs_inode_cachep
);
3827 static int __init
init_f2fs_fs(void)
3831 if (PAGE_SIZE
!= F2FS_BLKSIZE
) {
3832 printk("F2FS not supported on PAGE_SIZE(%lu) != %d\n",
3833 PAGE_SIZE
, F2FS_BLKSIZE
);
3837 f2fs_build_trace_ios();
3839 err
= init_inodecache();
3842 err
= f2fs_create_node_manager_caches();
3844 goto free_inodecache
;
3845 err
= f2fs_create_segment_manager_caches();
3847 goto free_node_manager_caches
;
3848 err
= f2fs_create_checkpoint_caches();
3850 goto free_segment_manager_caches
;
3851 err
= f2fs_create_extent_cache();
3853 goto free_checkpoint_caches
;
3854 err
= f2fs_init_sysfs();
3856 goto free_extent_cache
;
3857 err
= register_shrinker(&f2fs_shrinker_info
);
3860 err
= register_filesystem(&f2fs_fs_type
);
3863 f2fs_create_root_stats();
3864 err
= f2fs_init_post_read_processing();
3866 goto free_root_stats
;
3867 err
= f2fs_init_bio_entry_cache();
3869 goto free_post_read
;
3870 err
= f2fs_init_bioset();
3872 goto free_bio_enrty_cache
;
3874 free_bio_enrty_cache
:
3875 f2fs_destroy_bio_entry_cache();
3877 f2fs_destroy_post_read_processing();
3879 f2fs_destroy_root_stats();
3880 unregister_filesystem(&f2fs_fs_type
);
3882 unregister_shrinker(&f2fs_shrinker_info
);
3886 f2fs_destroy_extent_cache();
3887 free_checkpoint_caches
:
3888 f2fs_destroy_checkpoint_caches();
3889 free_segment_manager_caches
:
3890 f2fs_destroy_segment_manager_caches();
3891 free_node_manager_caches
:
3892 f2fs_destroy_node_manager_caches();
3894 destroy_inodecache();
3899 static void __exit
exit_f2fs_fs(void)
3901 f2fs_destroy_bioset();
3902 f2fs_destroy_bio_entry_cache();
3903 f2fs_destroy_post_read_processing();
3904 f2fs_destroy_root_stats();
3905 unregister_filesystem(&f2fs_fs_type
);
3906 unregister_shrinker(&f2fs_shrinker_info
);
3908 f2fs_destroy_extent_cache();
3909 f2fs_destroy_checkpoint_caches();
3910 f2fs_destroy_segment_manager_caches();
3911 f2fs_destroy_node_manager_caches();
3912 destroy_inodecache();
3913 f2fs_destroy_trace_ios();
3916 module_init(init_f2fs_fs
)
3917 module_exit(exit_f2fs_fs
)
3919 MODULE_AUTHOR("Samsung Electronics's Praesto Team");
3920 MODULE_DESCRIPTION("Flash Friendly File System");
3921 MODULE_LICENSE("GPL");