1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2017-2018 HUAWEI, Inc.
4 * https://www.huawei.com/
7 #include <linux/module.h>
8 #include <linux/buffer_head.h>
9 #include <linux/statfs.h>
10 #include <linux/parser.h>
11 #include <linux/seq_file.h>
12 #include <linux/crc32c.h>
13 #include <linux/fs_context.h>
14 #include <linux/fs_parser.h>
17 #define CREATE_TRACE_POINTS
18 #include <trace/events/erofs.h>
20 static struct kmem_cache *erofs_inode_cachep __read_mostly;
22 void _erofs_err(struct super_block *sb, const char *function,
33 pr_err("(device %s): %s: %pV", sb->s_id, function, &vaf);
37 void _erofs_info(struct super_block *sb, const char *function,
48 pr_info("(device %s): %pV", sb->s_id, &vaf);
52 static int erofs_superblock_csum_verify(struct super_block *sb, void *sbdata)
54 struct erofs_super_block *dsb;
55 u32 expected_crc, crc;
57 dsb = kmemdup(sbdata + EROFS_SUPER_OFFSET,
58 EROFS_BLKSIZ - EROFS_SUPER_OFFSET, GFP_KERNEL);
62 expected_crc = le32_to_cpu(dsb->checksum);
64 /* to allow for x86 boot sectors and other oddities. */
65 crc = crc32c(~0, dsb, EROFS_BLKSIZ - EROFS_SUPER_OFFSET);
68 if (crc != expected_crc) {
69 erofs_err(sb, "invalid checksum 0x%08x, 0x%08x expected",
76 static void erofs_inode_init_once(void *ptr)
78 struct erofs_inode *vi = ptr;
80 inode_init_once(&vi->vfs_inode);
83 static struct inode *erofs_alloc_inode(struct super_block *sb)
85 struct erofs_inode *vi =
86 kmem_cache_alloc(erofs_inode_cachep, GFP_KERNEL);
91 /* zero out everything except vfs_inode */
92 memset(vi, 0, offsetof(struct erofs_inode, vfs_inode));
93 return &vi->vfs_inode;
96 static void erofs_free_inode(struct inode *inode)
98 struct erofs_inode *vi = EROFS_I(inode);
100 /* be careful of RCU symlink path */
101 if (inode->i_op == &erofs_fast_symlink_iops)
102 kfree(inode->i_link);
103 kfree(vi->xattr_shared_xattrs);
105 kmem_cache_free(erofs_inode_cachep, vi);
108 static bool check_layout_compatibility(struct super_block *sb,
109 struct erofs_super_block *dsb)
111 const unsigned int feature = le32_to_cpu(dsb->feature_incompat);
113 EROFS_SB(sb)->feature_incompat = feature;
115 /* check if current kernel meets all mandatory requirements */
116 if (feature & (~EROFS_ALL_FEATURE_INCOMPAT)) {
118 "unidentified incompatible feature %x, please upgrade kernel version",
119 feature & ~EROFS_ALL_FEATURE_INCOMPAT);
125 #ifdef CONFIG_EROFS_FS_ZIP
126 /* read variable-sized metadata, offset will be aligned by 4-byte */
127 static void *erofs_read_metadata(struct super_block *sb, struct page **pagep,
128 erofs_off_t *offset, int *lengthp)
130 struct page *page = *pagep;
135 *offset = round_up(*offset, 4);
136 blk = erofs_blknr(*offset);
138 if (!page || page->index != blk) {
143 page = erofs_get_meta_page(sb, blk);
149 len = le16_to_cpu(*(__le16 *)&ptr[erofs_blkoff(*offset)]);
152 buffer = kmalloc(len, GFP_KERNEL);
154 buffer = ERR_PTR(-ENOMEM);
157 *offset += sizeof(__le16);
160 for (i = 0; i < len; i += cnt) {
161 cnt = min(EROFS_BLKSIZ - (int)erofs_blkoff(*offset), len - i);
162 blk = erofs_blknr(*offset);
164 if (!page || page->index != blk) {
170 page = erofs_get_meta_page(sb, blk);
177 memcpy(buffer + i, ptr + erofs_blkoff(*offset), cnt);
189 static int erofs_load_compr_cfgs(struct super_block *sb,
190 struct erofs_super_block *dsb)
192 struct erofs_sb_info *sbi;
194 unsigned int algs, alg;
199 sbi->available_compr_algs = le16_to_cpu(dsb->u1.available_compr_algs);
201 if (sbi->available_compr_algs & ~Z_EROFS_ALL_COMPR_ALGS) {
202 erofs_err(sb, "try to load compressed fs with unsupported algorithms %x",
203 sbi->available_compr_algs & ~Z_EROFS_ALL_COMPR_ALGS);
207 offset = EROFS_SUPER_OFFSET + sbi->sb_size;
212 for (algs = sbi->available_compr_algs; algs; algs >>= 1, ++alg) {
218 data = erofs_read_metadata(sb, &page, &offset, &size);
225 case Z_EROFS_COMPRESSION_LZ4:
226 ret = z_erofs_load_lz4_config(sb, dsb, data, size);
244 static int erofs_load_compr_cfgs(struct super_block *sb,
245 struct erofs_super_block *dsb)
247 if (dsb->u1.available_compr_algs) {
248 erofs_err(sb, "try to load compressed fs when compression is disabled");
255 static int erofs_read_superblock(struct super_block *sb)
257 struct erofs_sb_info *sbi;
259 struct erofs_super_block *dsb;
260 unsigned int blkszbits;
264 page = read_mapping_page(sb->s_bdev->bd_inode->i_mapping, 0, NULL);
266 erofs_err(sb, "cannot read erofs superblock");
267 return PTR_ERR(page);
273 dsb = (struct erofs_super_block *)(data + EROFS_SUPER_OFFSET);
276 if (le32_to_cpu(dsb->magic) != EROFS_SUPER_MAGIC_V1) {
277 erofs_err(sb, "cannot find valid erofs superblock");
281 sbi->feature_compat = le32_to_cpu(dsb->feature_compat);
282 if (erofs_sb_has_sb_chksum(sbi)) {
283 ret = erofs_superblock_csum_verify(sb, data);
288 blkszbits = dsb->blkszbits;
289 /* 9(512 bytes) + LOG_SECTORS_PER_BLOCK == LOG_BLOCK_SIZE */
290 if (blkszbits != LOG_BLOCK_SIZE) {
291 erofs_err(sb, "blkszbits %u isn't supported on this platform",
296 if (!check_layout_compatibility(sb, dsb))
299 sbi->sb_size = 128 + dsb->sb_extslots * EROFS_SB_EXTSLOT_SIZE;
300 if (sbi->sb_size > EROFS_BLKSIZ) {
301 erofs_err(sb, "invalid sb_extslots %u (more than a fs block)",
305 sbi->blocks = le32_to_cpu(dsb->blocks);
306 sbi->meta_blkaddr = le32_to_cpu(dsb->meta_blkaddr);
307 #ifdef CONFIG_EROFS_FS_XATTR
308 sbi->xattr_blkaddr = le32_to_cpu(dsb->xattr_blkaddr);
310 sbi->islotbits = ilog2(sizeof(struct erofs_inode_compact));
311 sbi->root_nid = le16_to_cpu(dsb->root_nid);
312 sbi->inos = le64_to_cpu(dsb->inos);
314 sbi->build_time = le64_to_cpu(dsb->build_time);
315 sbi->build_time_nsec = le32_to_cpu(dsb->build_time_nsec);
317 memcpy(&sb->s_uuid, dsb->uuid, sizeof(dsb->uuid));
319 ret = strscpy(sbi->volume_name, dsb->volume_name,
320 sizeof(dsb->volume_name));
321 if (ret < 0) { /* -E2BIG */
322 erofs_err(sb, "bad volume name without NIL terminator");
327 /* parse on-disk compression configurations */
328 if (erofs_sb_has_compr_cfgs(sbi))
329 ret = erofs_load_compr_cfgs(sb, dsb);
331 ret = z_erofs_load_lz4_config(sb, dsb, NULL, 0);
338 /* set up default EROFS parameters */
339 static void erofs_default_options(struct erofs_fs_context *ctx)
341 #ifdef CONFIG_EROFS_FS_ZIP
342 ctx->cache_strategy = EROFS_ZIP_CACHE_READAROUND;
343 ctx->max_sync_decompress_pages = 3;
344 ctx->readahead_sync_decompress = false;
346 #ifdef CONFIG_EROFS_FS_XATTR
347 set_opt(ctx, XATTR_USER);
349 #ifdef CONFIG_EROFS_FS_POSIX_ACL
350 set_opt(ctx, POSIX_ACL);
361 static const struct constant_table erofs_param_cache_strategy[] = {
362 {"disabled", EROFS_ZIP_CACHE_DISABLED},
363 {"readahead", EROFS_ZIP_CACHE_READAHEAD},
364 {"readaround", EROFS_ZIP_CACHE_READAROUND},
368 static const struct fs_parameter_spec erofs_fs_parameters[] = {
369 fsparam_flag_no("user_xattr", Opt_user_xattr),
370 fsparam_flag_no("acl", Opt_acl),
371 fsparam_enum("cache_strategy", Opt_cache_strategy,
372 erofs_param_cache_strategy),
376 static int erofs_fc_parse_param(struct fs_context *fc,
377 struct fs_parameter *param)
379 struct erofs_fs_context *ctx __maybe_unused = fc->fs_private;
380 struct fs_parse_result result;
383 opt = fs_parse(fc, erofs_fs_parameters, param, &result);
389 #ifdef CONFIG_EROFS_FS_XATTR
391 set_opt(ctx, XATTR_USER);
393 clear_opt(ctx, XATTR_USER);
395 errorfc(fc, "{,no}user_xattr options not supported");
399 #ifdef CONFIG_EROFS_FS_POSIX_ACL
401 set_opt(ctx, POSIX_ACL);
403 clear_opt(ctx, POSIX_ACL);
405 errorfc(fc, "{,no}acl options not supported");
408 case Opt_cache_strategy:
409 #ifdef CONFIG_EROFS_FS_ZIP
410 ctx->cache_strategy = result.uint_32;
412 errorfc(fc, "compression not supported, cache_strategy ignored");
421 #ifdef CONFIG_EROFS_FS_ZIP
422 static const struct address_space_operations managed_cache_aops;
424 static int erofs_managed_cache_releasepage(struct page *page, gfp_t gfp_mask)
426 int ret = 1; /* 0 - busy */
427 struct address_space *const mapping = page->mapping;
429 DBG_BUGON(!PageLocked(page));
430 DBG_BUGON(mapping->a_ops != &managed_cache_aops);
432 if (PagePrivate(page))
433 ret = erofs_try_to_free_cached_page(mapping, page);
438 static void erofs_managed_cache_invalidatepage(struct page *page,
442 const unsigned int stop = length + offset;
444 DBG_BUGON(!PageLocked(page));
446 /* Check for potential overflow in debug mode */
447 DBG_BUGON(stop > PAGE_SIZE || stop < length);
449 if (offset == 0 && stop == PAGE_SIZE)
450 while (!erofs_managed_cache_releasepage(page, GFP_NOFS))
454 static const struct address_space_operations managed_cache_aops = {
455 .releasepage = erofs_managed_cache_releasepage,
456 .invalidatepage = erofs_managed_cache_invalidatepage,
459 static int erofs_init_managed_cache(struct super_block *sb)
461 struct erofs_sb_info *const sbi = EROFS_SB(sb);
462 struct inode *const inode = new_inode(sb);
468 inode->i_size = OFFSET_MAX;
470 inode->i_mapping->a_ops = &managed_cache_aops;
471 mapping_set_gfp_mask(inode->i_mapping,
472 GFP_NOFS | __GFP_HIGHMEM | __GFP_MOVABLE);
473 sbi->managed_cache = inode;
477 static int erofs_init_managed_cache(struct super_block *sb) { return 0; }
480 static int erofs_fc_fill_super(struct super_block *sb, struct fs_context *fc)
483 struct erofs_sb_info *sbi;
484 struct erofs_fs_context *ctx = fc->fs_private;
487 sb->s_magic = EROFS_SUPER_MAGIC;
489 if (!sb_set_blocksize(sb, EROFS_BLKSIZ)) {
490 erofs_err(sb, "failed to set erofs blksize");
494 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
499 err = erofs_read_superblock(sb);
503 sb->s_flags |= SB_RDONLY | SB_NOATIME;
504 sb->s_maxbytes = MAX_LFS_FILESIZE;
507 sb->s_op = &erofs_sops;
508 sb->s_xattr = erofs_xattr_handlers;
510 if (test_opt(ctx, POSIX_ACL))
511 sb->s_flags |= SB_POSIXACL;
513 sb->s_flags &= ~SB_POSIXACL;
517 #ifdef CONFIG_EROFS_FS_ZIP
518 xa_init(&sbi->managed_pslots);
521 /* get the root inode */
522 inode = erofs_iget(sb, ROOT_NID(sbi), true);
524 return PTR_ERR(inode);
526 if (!S_ISDIR(inode->i_mode)) {
527 erofs_err(sb, "rootino(nid %llu) is not a directory(i_mode %o)",
528 ROOT_NID(sbi), inode->i_mode);
533 sb->s_root = d_make_root(inode);
537 erofs_shrinker_register(sb);
538 /* sb->s_umount is already locked, SB_ACTIVE and SB_BORN are not set */
539 err = erofs_init_managed_cache(sb);
543 erofs_info(sb, "mounted with root inode @ nid %llu.", ROOT_NID(sbi));
547 static int erofs_fc_get_tree(struct fs_context *fc)
549 return get_tree_bdev(fc, erofs_fc_fill_super);
552 static int erofs_fc_reconfigure(struct fs_context *fc)
554 struct super_block *sb = fc->root->d_sb;
555 struct erofs_sb_info *sbi = EROFS_SB(sb);
556 struct erofs_fs_context *ctx = fc->fs_private;
558 DBG_BUGON(!sb_rdonly(sb));
560 if (test_opt(ctx, POSIX_ACL))
561 fc->sb_flags |= SB_POSIXACL;
563 fc->sb_flags &= ~SB_POSIXACL;
567 fc->sb_flags |= SB_RDONLY;
571 static void erofs_fc_free(struct fs_context *fc)
573 kfree(fc->fs_private);
576 static const struct fs_context_operations erofs_context_ops = {
577 .parse_param = erofs_fc_parse_param,
578 .get_tree = erofs_fc_get_tree,
579 .reconfigure = erofs_fc_reconfigure,
580 .free = erofs_fc_free,
583 static int erofs_init_fs_context(struct fs_context *fc)
585 fc->fs_private = kzalloc(sizeof(struct erofs_fs_context), GFP_KERNEL);
589 /* set default mount options */
590 erofs_default_options(fc->fs_private);
592 fc->ops = &erofs_context_ops;
598 * could be triggered after deactivate_locked_super()
599 * is called, thus including umount and failed to initialize.
601 static void erofs_kill_sb(struct super_block *sb)
603 struct erofs_sb_info *sbi;
605 WARN_ON(sb->s_magic != EROFS_SUPER_MAGIC);
607 kill_block_super(sb);
613 sb->s_fs_info = NULL;
616 /* called when ->s_root is non-NULL */
617 static void erofs_put_super(struct super_block *sb)
619 struct erofs_sb_info *const sbi = EROFS_SB(sb);
623 erofs_shrinker_unregister(sb);
624 #ifdef CONFIG_EROFS_FS_ZIP
625 iput(sbi->managed_cache);
626 sbi->managed_cache = NULL;
630 static struct file_system_type erofs_fs_type = {
631 .owner = THIS_MODULE,
633 .init_fs_context = erofs_init_fs_context,
634 .kill_sb = erofs_kill_sb,
635 .fs_flags = FS_REQUIRES_DEV,
637 MODULE_ALIAS_FS("erofs");
639 static int __init erofs_module_init(void)
643 erofs_check_ondisk_layout_definitions();
645 erofs_inode_cachep = kmem_cache_create("erofs_inode",
646 sizeof(struct erofs_inode), 0,
647 SLAB_RECLAIM_ACCOUNT,
648 erofs_inode_init_once);
649 if (!erofs_inode_cachep) {
654 err = erofs_init_shrinker();
658 erofs_pcpubuf_init();
659 err = z_erofs_init_zip_subsystem();
663 err = register_filesystem(&erofs_fs_type);
670 z_erofs_exit_zip_subsystem();
672 erofs_exit_shrinker();
674 kmem_cache_destroy(erofs_inode_cachep);
679 static void __exit erofs_module_exit(void)
681 unregister_filesystem(&erofs_fs_type);
682 z_erofs_exit_zip_subsystem();
683 erofs_exit_shrinker();
685 /* Ensure all RCU free inodes are safe before cache is destroyed. */
687 kmem_cache_destroy(erofs_inode_cachep);
688 erofs_pcpubuf_exit();
691 /* get filesystem statistics */
692 static int erofs_statfs(struct dentry *dentry, struct kstatfs *buf)
694 struct super_block *sb = dentry->d_sb;
695 struct erofs_sb_info *sbi = EROFS_SB(sb);
696 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
698 buf->f_type = sb->s_magic;
699 buf->f_bsize = EROFS_BLKSIZ;
700 buf->f_blocks = sbi->blocks;
701 buf->f_bfree = buf->f_bavail = 0;
703 buf->f_files = ULLONG_MAX;
704 buf->f_ffree = ULLONG_MAX - sbi->inos;
706 buf->f_namelen = EROFS_NAME_LEN;
708 buf->f_fsid = u64_to_fsid(id);
712 static int erofs_show_options(struct seq_file *seq, struct dentry *root)
714 struct erofs_sb_info *sbi __maybe_unused = EROFS_SB(root->d_sb);
715 struct erofs_fs_context *ctx __maybe_unused = &sbi->ctx;
717 #ifdef CONFIG_EROFS_FS_XATTR
718 if (test_opt(ctx, XATTR_USER))
719 seq_puts(seq, ",user_xattr");
721 seq_puts(seq, ",nouser_xattr");
723 #ifdef CONFIG_EROFS_FS_POSIX_ACL
724 if (test_opt(ctx, POSIX_ACL))
725 seq_puts(seq, ",acl");
727 seq_puts(seq, ",noacl");
729 #ifdef CONFIG_EROFS_FS_ZIP
730 if (ctx->cache_strategy == EROFS_ZIP_CACHE_DISABLED)
731 seq_puts(seq, ",cache_strategy=disabled");
732 else if (ctx->cache_strategy == EROFS_ZIP_CACHE_READAHEAD)
733 seq_puts(seq, ",cache_strategy=readahead");
734 else if (ctx->cache_strategy == EROFS_ZIP_CACHE_READAROUND)
735 seq_puts(seq, ",cache_strategy=readaround");
740 const struct super_operations erofs_sops = {
741 .put_super = erofs_put_super,
742 .alloc_inode = erofs_alloc_inode,
743 .free_inode = erofs_free_inode,
744 .statfs = erofs_statfs,
745 .show_options = erofs_show_options,
748 module_init(erofs_module_init);
749 module_exit(erofs_module_exit);
751 MODULE_DESCRIPTION("Enhanced ROM File System");
752 MODULE_AUTHOR("Gao Xiang, Chao Yu, Miao Xie, CONSUMER BG, HUAWEI Inc.");
753 MODULE_LICENSE("GPL");