1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2017-2018 HUAWEI, Inc.
4 * https://www.huawei.com/
5 * Copyright (C) 2021, Alibaba Cloud
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>
15 #include <linux/dax.h>
16 #include <linux/exportfs.h>
19 #define CREATE_TRACE_POINTS
20 #include <trace/events/erofs.h>
22 static struct kmem_cache *erofs_inode_cachep __read_mostly;
24 void _erofs_err(struct super_block *sb, const char *function,
35 pr_err("(device %s): %s: %pV", sb->s_id, function, &vaf);
39 void _erofs_info(struct super_block *sb, const char *function,
50 pr_info("(device %s): %pV", sb->s_id, &vaf);
54 static int erofs_superblock_csum_verify(struct super_block *sb, void *sbdata)
56 struct erofs_super_block *dsb;
57 u32 expected_crc, crc;
59 dsb = kmemdup(sbdata + EROFS_SUPER_OFFSET,
60 EROFS_BLKSIZ - EROFS_SUPER_OFFSET, GFP_KERNEL);
64 expected_crc = le32_to_cpu(dsb->checksum);
66 /* to allow for x86 boot sectors and other oddities. */
67 crc = crc32c(~0, dsb, EROFS_BLKSIZ - EROFS_SUPER_OFFSET);
70 if (crc != expected_crc) {
71 erofs_err(sb, "invalid checksum 0x%08x, 0x%08x expected",
78 static void erofs_inode_init_once(void *ptr)
80 struct erofs_inode *vi = ptr;
82 inode_init_once(&vi->vfs_inode);
85 static struct inode *erofs_alloc_inode(struct super_block *sb)
87 struct erofs_inode *vi =
88 alloc_inode_sb(sb, erofs_inode_cachep, GFP_KERNEL);
93 /* zero out everything except vfs_inode */
94 memset(vi, 0, offsetof(struct erofs_inode, vfs_inode));
95 return &vi->vfs_inode;
98 static void erofs_free_inode(struct inode *inode)
100 struct erofs_inode *vi = EROFS_I(inode);
102 /* be careful of RCU symlink path */
103 if (inode->i_op == &erofs_fast_symlink_iops)
104 kfree(inode->i_link);
105 kfree(vi->xattr_shared_xattrs);
107 kmem_cache_free(erofs_inode_cachep, vi);
110 static bool check_layout_compatibility(struct super_block *sb,
111 struct erofs_super_block *dsb)
113 const unsigned int feature = le32_to_cpu(dsb->feature_incompat);
115 EROFS_SB(sb)->feature_incompat = feature;
117 /* check if current kernel meets all mandatory requirements */
118 if (feature & (~EROFS_ALL_FEATURE_INCOMPAT)) {
120 "unidentified incompatible feature %x, please upgrade kernel version",
121 feature & ~EROFS_ALL_FEATURE_INCOMPAT);
127 #ifdef CONFIG_EROFS_FS_ZIP
128 /* read variable-sized metadata, offset will be aligned by 4-byte */
129 static void *erofs_read_metadata(struct super_block *sb, struct erofs_buf *buf,
130 erofs_off_t *offset, int *lengthp)
135 *offset = round_up(*offset, 4);
136 ptr = erofs_read_metabuf(buf, sb, erofs_blknr(*offset), EROFS_KMAP);
140 len = le16_to_cpu(*(__le16 *)&ptr[erofs_blkoff(*offset)]);
143 buffer = kmalloc(len, GFP_KERNEL);
145 return ERR_PTR(-ENOMEM);
146 *offset += sizeof(__le16);
149 for (i = 0; i < len; i += cnt) {
150 cnt = min(EROFS_BLKSIZ - (int)erofs_blkoff(*offset), len - i);
151 ptr = erofs_read_metabuf(buf, sb, erofs_blknr(*offset),
157 memcpy(buffer + i, ptr + erofs_blkoff(*offset), cnt);
163 static int erofs_load_compr_cfgs(struct super_block *sb,
164 struct erofs_super_block *dsb)
166 struct erofs_sb_info *sbi = EROFS_SB(sb);
167 struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
168 unsigned int algs, alg;
172 sbi->available_compr_algs = le16_to_cpu(dsb->u1.available_compr_algs);
173 if (sbi->available_compr_algs & ~Z_EROFS_ALL_COMPR_ALGS) {
174 erofs_err(sb, "try to load compressed fs with unsupported algorithms %x",
175 sbi->available_compr_algs & ~Z_EROFS_ALL_COMPR_ALGS);
179 offset = EROFS_SUPER_OFFSET + sbi->sb_size;
181 for (algs = sbi->available_compr_algs; algs; algs >>= 1, ++alg) {
187 data = erofs_read_metadata(sb, &buf, &offset, &size);
194 case Z_EROFS_COMPRESSION_LZ4:
195 ret = z_erofs_load_lz4_config(sb, dsb, data, size);
197 case Z_EROFS_COMPRESSION_LZMA:
198 ret = z_erofs_load_lzma_config(sb, dsb, data, size);
208 erofs_put_metabuf(&buf);
212 static int erofs_load_compr_cfgs(struct super_block *sb,
213 struct erofs_super_block *dsb)
215 if (dsb->u1.available_compr_algs) {
216 erofs_err(sb, "try to load compressed fs when compression is disabled");
223 static int erofs_init_device(struct erofs_buf *buf, struct super_block *sb,
224 struct erofs_device_info *dif, erofs_off_t *pos)
226 struct erofs_sb_info *sbi = EROFS_SB(sb);
227 struct erofs_fscache *fscache;
228 struct erofs_deviceslot *dis;
229 struct block_device *bdev;
232 ptr = erofs_read_metabuf(buf, sb, erofs_blknr(*pos), EROFS_KMAP);
235 dis = ptr + erofs_blkoff(*pos);
239 erofs_err(sb, "empty device tag @ pos %llu", *pos);
242 dif->path = kmemdup_nul(dis->tag, sizeof(dis->tag), GFP_KERNEL);
247 if (erofs_is_fscache_mode(sb)) {
248 fscache = erofs_fscache_register_cookie(sb, dif->path, false);
250 return PTR_ERR(fscache);
251 dif->fscache = fscache;
253 bdev = blkdev_get_by_path(dif->path, FMODE_READ | FMODE_EXCL,
256 return PTR_ERR(bdev);
258 dif->dax_dev = fs_dax_get_by_bdev(bdev, &dif->dax_part_off,
262 dif->blocks = le32_to_cpu(dis->blocks);
263 dif->mapped_blkaddr = le32_to_cpu(dis->mapped_blkaddr);
264 sbi->total_blocks += dif->blocks;
265 *pos += EROFS_DEVT_SLOT_SIZE;
269 static int erofs_scan_devices(struct super_block *sb,
270 struct erofs_super_block *dsb)
272 struct erofs_sb_info *sbi = EROFS_SB(sb);
273 unsigned int ondisk_extradevs;
275 struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
276 struct erofs_device_info *dif;
279 sbi->total_blocks = sbi->primarydevice_blocks;
280 if (!erofs_sb_has_device_table(sbi))
281 ondisk_extradevs = 0;
283 ondisk_extradevs = le16_to_cpu(dsb->extra_devices);
285 if (sbi->devs->extra_devices &&
286 ondisk_extradevs != sbi->devs->extra_devices) {
287 erofs_err(sb, "extra devices don't match (ondisk %u, given %u)",
288 ondisk_extradevs, sbi->devs->extra_devices);
291 if (!ondisk_extradevs)
294 sbi->device_id_mask = roundup_pow_of_two(ondisk_extradevs + 1) - 1;
295 pos = le16_to_cpu(dsb->devt_slotoff) * EROFS_DEVT_SLOT_SIZE;
296 down_read(&sbi->devs->rwsem);
297 if (sbi->devs->extra_devices) {
298 idr_for_each_entry(&sbi->devs->tree, dif, id) {
299 err = erofs_init_device(&buf, sb, dif, &pos);
304 for (id = 0; id < ondisk_extradevs; id++) {
305 dif = kzalloc(sizeof(*dif), GFP_KERNEL);
311 err = idr_alloc(&sbi->devs->tree, dif, 0, 0, GFP_KERNEL);
316 ++sbi->devs->extra_devices;
318 err = erofs_init_device(&buf, sb, dif, &pos);
323 up_read(&sbi->devs->rwsem);
324 erofs_put_metabuf(&buf);
328 static int erofs_read_superblock(struct super_block *sb)
330 struct erofs_sb_info *sbi;
331 struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
332 struct erofs_super_block *dsb;
333 unsigned int blkszbits;
337 data = erofs_read_metabuf(&buf, sb, 0, EROFS_KMAP);
339 erofs_err(sb, "cannot read erofs superblock");
340 return PTR_ERR(data);
344 dsb = (struct erofs_super_block *)(data + EROFS_SUPER_OFFSET);
347 if (le32_to_cpu(dsb->magic) != EROFS_SUPER_MAGIC_V1) {
348 erofs_err(sb, "cannot find valid erofs superblock");
352 sbi->feature_compat = le32_to_cpu(dsb->feature_compat);
353 if (erofs_sb_has_sb_chksum(sbi)) {
354 ret = erofs_superblock_csum_verify(sb, data);
360 blkszbits = dsb->blkszbits;
361 /* 9(512 bytes) + LOG_SECTORS_PER_BLOCK == LOG_BLOCK_SIZE */
362 if (blkszbits != LOG_BLOCK_SIZE) {
363 erofs_err(sb, "blkszbits %u isn't supported on this platform",
368 if (!check_layout_compatibility(sb, dsb))
371 sbi->sb_size = 128 + dsb->sb_extslots * EROFS_SB_EXTSLOT_SIZE;
372 if (sbi->sb_size > EROFS_BLKSIZ) {
373 erofs_err(sb, "invalid sb_extslots %u (more than a fs block)",
377 sbi->primarydevice_blocks = le32_to_cpu(dsb->blocks);
378 sbi->meta_blkaddr = le32_to_cpu(dsb->meta_blkaddr);
379 #ifdef CONFIG_EROFS_FS_XATTR
380 sbi->xattr_blkaddr = le32_to_cpu(dsb->xattr_blkaddr);
382 sbi->islotbits = ilog2(sizeof(struct erofs_inode_compact));
383 sbi->root_nid = le16_to_cpu(dsb->root_nid);
384 #ifdef CONFIG_EROFS_FS_ZIP
385 sbi->packed_inode = NULL;
386 if (erofs_sb_has_fragments(sbi) && dsb->packed_nid) {
388 erofs_iget(sb, le64_to_cpu(dsb->packed_nid));
389 if (IS_ERR(sbi->packed_inode)) {
390 ret = PTR_ERR(sbi->packed_inode);
395 sbi->inos = le64_to_cpu(dsb->inos);
397 sbi->build_time = le64_to_cpu(dsb->build_time);
398 sbi->build_time_nsec = le32_to_cpu(dsb->build_time_nsec);
400 memcpy(&sb->s_uuid, dsb->uuid, sizeof(dsb->uuid));
402 ret = strscpy(sbi->volume_name, dsb->volume_name,
403 sizeof(dsb->volume_name));
404 if (ret < 0) { /* -E2BIG */
405 erofs_err(sb, "bad volume name without NIL terminator");
410 /* parse on-disk compression configurations */
411 if (erofs_sb_has_compr_cfgs(sbi))
412 ret = erofs_load_compr_cfgs(sb, dsb);
414 ret = z_erofs_load_lz4_config(sb, dsb, NULL, 0);
418 /* handle multiple devices */
419 ret = erofs_scan_devices(sb, dsb);
421 if (erofs_sb_has_ztailpacking(sbi))
422 erofs_info(sb, "EXPERIMENTAL compressed inline data feature in use. Use at your own risk!");
423 if (erofs_is_fscache_mode(sb))
424 erofs_info(sb, "EXPERIMENTAL fscache-based on-demand read feature in use. Use at your own risk!");
425 if (erofs_sb_has_fragments(sbi))
426 erofs_info(sb, "EXPERIMENTAL compressed fragments feature in use. Use at your own risk!");
427 if (erofs_sb_has_dedupe(sbi))
428 erofs_info(sb, "EXPERIMENTAL global deduplication feature in use. Use at your own risk!");
430 erofs_put_metabuf(&buf);
434 /* set up default EROFS parameters */
435 static void erofs_default_options(struct erofs_fs_context *ctx)
437 #ifdef CONFIG_EROFS_FS_ZIP
438 ctx->opt.cache_strategy = EROFS_ZIP_CACHE_READAROUND;
439 ctx->opt.max_sync_decompress_pages = 3;
440 ctx->opt.sync_decompress = EROFS_SYNC_DECOMPRESS_AUTO;
442 #ifdef CONFIG_EROFS_FS_XATTR
443 set_opt(&ctx->opt, XATTR_USER);
445 #ifdef CONFIG_EROFS_FS_POSIX_ACL
446 set_opt(&ctx->opt, POSIX_ACL);
462 static const struct constant_table erofs_param_cache_strategy[] = {
463 {"disabled", EROFS_ZIP_CACHE_DISABLED},
464 {"readahead", EROFS_ZIP_CACHE_READAHEAD},
465 {"readaround", EROFS_ZIP_CACHE_READAROUND},
469 static const struct constant_table erofs_dax_param_enums[] = {
470 {"always", EROFS_MOUNT_DAX_ALWAYS},
471 {"never", EROFS_MOUNT_DAX_NEVER},
475 static const struct fs_parameter_spec erofs_fs_parameters[] = {
476 fsparam_flag_no("user_xattr", Opt_user_xattr),
477 fsparam_flag_no("acl", Opt_acl),
478 fsparam_enum("cache_strategy", Opt_cache_strategy,
479 erofs_param_cache_strategy),
480 fsparam_flag("dax", Opt_dax),
481 fsparam_enum("dax", Opt_dax_enum, erofs_dax_param_enums),
482 fsparam_string("device", Opt_device),
483 fsparam_string("fsid", Opt_fsid),
484 fsparam_string("domain_id", Opt_domain_id),
488 static bool erofs_fc_set_dax_mode(struct fs_context *fc, unsigned int mode)
491 struct erofs_fs_context *ctx = fc->fs_private;
494 case EROFS_MOUNT_DAX_ALWAYS:
495 warnfc(fc, "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
496 set_opt(&ctx->opt, DAX_ALWAYS);
497 clear_opt(&ctx->opt, DAX_NEVER);
499 case EROFS_MOUNT_DAX_NEVER:
500 set_opt(&ctx->opt, DAX_NEVER);
501 clear_opt(&ctx->opt, DAX_ALWAYS);
508 errorfc(fc, "dax options not supported");
513 static int erofs_fc_parse_param(struct fs_context *fc,
514 struct fs_parameter *param)
516 struct erofs_fs_context *ctx = fc->fs_private;
517 struct fs_parse_result result;
518 struct erofs_device_info *dif;
521 opt = fs_parse(fc, erofs_fs_parameters, param, &result);
527 #ifdef CONFIG_EROFS_FS_XATTR
529 set_opt(&ctx->opt, XATTR_USER);
531 clear_opt(&ctx->opt, XATTR_USER);
533 errorfc(fc, "{,no}user_xattr options not supported");
537 #ifdef CONFIG_EROFS_FS_POSIX_ACL
539 set_opt(&ctx->opt, POSIX_ACL);
541 clear_opt(&ctx->opt, POSIX_ACL);
543 errorfc(fc, "{,no}acl options not supported");
546 case Opt_cache_strategy:
547 #ifdef CONFIG_EROFS_FS_ZIP
548 ctx->opt.cache_strategy = result.uint_32;
550 errorfc(fc, "compression not supported, cache_strategy ignored");
554 if (!erofs_fc_set_dax_mode(fc, EROFS_MOUNT_DAX_ALWAYS))
558 if (!erofs_fc_set_dax_mode(fc, result.uint_32))
562 dif = kzalloc(sizeof(*dif), GFP_KERNEL);
565 dif->path = kstrdup(param->string, GFP_KERNEL);
570 down_write(&ctx->devs->rwsem);
571 ret = idr_alloc(&ctx->devs->tree, dif, 0, 0, GFP_KERNEL);
572 up_write(&ctx->devs->rwsem);
578 ++ctx->devs->extra_devices;
581 #ifdef CONFIG_EROFS_FS_ONDEMAND
582 kfree(ctx->opt.fsid);
583 ctx->opt.fsid = kstrdup(param->string, GFP_KERNEL);
587 errorfc(fc, "fsid option not supported");
591 #ifdef CONFIG_EROFS_FS_ONDEMAND
592 kfree(ctx->opt.domain_id);
593 ctx->opt.domain_id = kstrdup(param->string, GFP_KERNEL);
594 if (!ctx->opt.domain_id)
597 errorfc(fc, "domain_id option not supported");
606 #ifdef CONFIG_EROFS_FS_ZIP
607 static const struct address_space_operations managed_cache_aops;
609 static bool erofs_managed_cache_release_folio(struct folio *folio, gfp_t gfp)
612 struct address_space *const mapping = folio->mapping;
614 DBG_BUGON(!folio_test_locked(folio));
615 DBG_BUGON(mapping->a_ops != &managed_cache_aops);
617 if (folio_test_private(folio))
618 ret = erofs_try_to_free_cached_page(&folio->page);
624 * It will be called only on inode eviction. In case that there are still some
625 * decompression requests in progress, wait with rescheduling for a bit here.
626 * We could introduce an extra locking instead but it seems unnecessary.
628 static void erofs_managed_cache_invalidate_folio(struct folio *folio,
629 size_t offset, size_t length)
631 const size_t stop = length + offset;
633 DBG_BUGON(!folio_test_locked(folio));
635 /* Check for potential overflow in debug mode */
636 DBG_BUGON(stop > folio_size(folio) || stop < length);
638 if (offset == 0 && stop == folio_size(folio))
639 while (!erofs_managed_cache_release_folio(folio, GFP_NOFS))
643 static const struct address_space_operations managed_cache_aops = {
644 .release_folio = erofs_managed_cache_release_folio,
645 .invalidate_folio = erofs_managed_cache_invalidate_folio,
648 static int erofs_init_managed_cache(struct super_block *sb)
650 struct erofs_sb_info *const sbi = EROFS_SB(sb);
651 struct inode *const inode = new_inode(sb);
657 inode->i_size = OFFSET_MAX;
659 inode->i_mapping->a_ops = &managed_cache_aops;
660 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
661 sbi->managed_cache = inode;
665 static int erofs_init_managed_cache(struct super_block *sb) { return 0; }
668 static struct inode *erofs_nfs_get_inode(struct super_block *sb,
669 u64 ino, u32 generation)
671 return erofs_iget(sb, ino);
674 static struct dentry *erofs_fh_to_dentry(struct super_block *sb,
675 struct fid *fid, int fh_len, int fh_type)
677 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
678 erofs_nfs_get_inode);
681 static struct dentry *erofs_fh_to_parent(struct super_block *sb,
682 struct fid *fid, int fh_len, int fh_type)
684 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
685 erofs_nfs_get_inode);
688 static struct dentry *erofs_get_parent(struct dentry *child)
694 err = erofs_namei(d_inode(child), &dotdot_name, &nid, &d_type);
697 return d_obtain_alias(erofs_iget(child->d_sb, nid));
700 static const struct export_operations erofs_export_ops = {
701 .fh_to_dentry = erofs_fh_to_dentry,
702 .fh_to_parent = erofs_fh_to_parent,
703 .get_parent = erofs_get_parent,
706 static int erofs_fc_fill_pseudo_super(struct super_block *sb, struct fs_context *fc)
708 static const struct tree_descr empty_descr = {""};
710 return simple_fill_super(sb, EROFS_SUPER_MAGIC, &empty_descr);
713 static int erofs_fc_fill_super(struct super_block *sb, struct fs_context *fc)
716 struct erofs_sb_info *sbi;
717 struct erofs_fs_context *ctx = fc->fs_private;
720 sb->s_magic = EROFS_SUPER_MAGIC;
721 sb->s_flags |= SB_RDONLY | SB_NOATIME;
722 sb->s_maxbytes = MAX_LFS_FILESIZE;
723 sb->s_op = &erofs_sops;
725 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
731 ctx->opt.fsid = NULL;
732 ctx->opt.domain_id = NULL;
733 sbi->devs = ctx->devs;
736 if (erofs_is_fscache_mode(sb)) {
737 sb->s_blocksize = EROFS_BLKSIZ;
738 sb->s_blocksize_bits = LOG_BLOCK_SIZE;
740 err = erofs_fscache_register_fs(sb);
744 err = super_setup_bdi(sb);
748 if (!sb_set_blocksize(sb, EROFS_BLKSIZ)) {
749 erofs_err(sb, "failed to set erofs blksize");
753 sbi->dax_dev = fs_dax_get_by_bdev(sb->s_bdev,
758 err = erofs_read_superblock(sb);
762 if (test_opt(&sbi->opt, DAX_ALWAYS)) {
763 BUILD_BUG_ON(EROFS_BLKSIZ != PAGE_SIZE);
766 errorfc(fc, "DAX unsupported by block device. Turning off DAX.");
767 clear_opt(&sbi->opt, DAX_ALWAYS);
772 sb->s_xattr = erofs_xattr_handlers;
773 sb->s_export_op = &erofs_export_ops;
775 if (test_opt(&sbi->opt, POSIX_ACL))
776 sb->s_flags |= SB_POSIXACL;
778 sb->s_flags &= ~SB_POSIXACL;
780 #ifdef CONFIG_EROFS_FS_ZIP
781 xa_init(&sbi->managed_pslots);
784 /* get the root inode */
785 inode = erofs_iget(sb, ROOT_NID(sbi));
787 return PTR_ERR(inode);
789 if (!S_ISDIR(inode->i_mode)) {
790 erofs_err(sb, "rootino(nid %llu) is not a directory(i_mode %o)",
791 ROOT_NID(sbi), inode->i_mode);
796 sb->s_root = d_make_root(inode);
800 erofs_shrinker_register(sb);
801 /* sb->s_umount is already locked, SB_ACTIVE and SB_BORN are not set */
802 err = erofs_init_managed_cache(sb);
806 err = erofs_register_sysfs(sb);
810 erofs_info(sb, "mounted with root inode @ nid %llu.", ROOT_NID(sbi));
814 static int erofs_fc_anon_get_tree(struct fs_context *fc)
816 return get_tree_nodev(fc, erofs_fc_fill_pseudo_super);
819 static int erofs_fc_get_tree(struct fs_context *fc)
821 struct erofs_fs_context *ctx = fc->fs_private;
823 if (IS_ENABLED(CONFIG_EROFS_FS_ONDEMAND) && ctx->opt.fsid)
824 return get_tree_nodev(fc, erofs_fc_fill_super);
826 return get_tree_bdev(fc, erofs_fc_fill_super);
829 static int erofs_fc_reconfigure(struct fs_context *fc)
831 struct super_block *sb = fc->root->d_sb;
832 struct erofs_sb_info *sbi = EROFS_SB(sb);
833 struct erofs_fs_context *ctx = fc->fs_private;
835 DBG_BUGON(!sb_rdonly(sb));
837 if (test_opt(&ctx->opt, POSIX_ACL))
838 fc->sb_flags |= SB_POSIXACL;
840 fc->sb_flags &= ~SB_POSIXACL;
844 fc->sb_flags |= SB_RDONLY;
848 static int erofs_release_device_info(int id, void *ptr, void *data)
850 struct erofs_device_info *dif = ptr;
852 fs_put_dax(dif->dax_dev, NULL);
854 blkdev_put(dif->bdev, FMODE_READ | FMODE_EXCL);
855 erofs_fscache_unregister_cookie(dif->fscache);
862 static void erofs_free_dev_context(struct erofs_dev_context *devs)
866 idr_for_each(&devs->tree, &erofs_release_device_info, NULL);
867 idr_destroy(&devs->tree);
871 static void erofs_fc_free(struct fs_context *fc)
873 struct erofs_fs_context *ctx = fc->fs_private;
875 erofs_free_dev_context(ctx->devs);
876 kfree(ctx->opt.fsid);
877 kfree(ctx->opt.domain_id);
881 static const struct fs_context_operations erofs_context_ops = {
882 .parse_param = erofs_fc_parse_param,
883 .get_tree = erofs_fc_get_tree,
884 .reconfigure = erofs_fc_reconfigure,
885 .free = erofs_fc_free,
888 static const struct fs_context_operations erofs_anon_context_ops = {
889 .get_tree = erofs_fc_anon_get_tree,
892 static int erofs_init_fs_context(struct fs_context *fc)
894 struct erofs_fs_context *ctx;
896 /* pseudo mount for anon inodes */
897 if (fc->sb_flags & SB_KERNMOUNT) {
898 fc->ops = &erofs_anon_context_ops;
902 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
905 ctx->devs = kzalloc(sizeof(struct erofs_dev_context), GFP_KERNEL);
910 fc->fs_private = ctx;
912 idr_init(&ctx->devs->tree);
913 init_rwsem(&ctx->devs->rwsem);
914 erofs_default_options(ctx);
915 fc->ops = &erofs_context_ops;
920 * could be triggered after deactivate_locked_super()
921 * is called, thus including umount and failed to initialize.
923 static void erofs_kill_sb(struct super_block *sb)
925 struct erofs_sb_info *sbi;
927 WARN_ON(sb->s_magic != EROFS_SUPER_MAGIC);
929 /* pseudo mount for anon inodes */
930 if (sb->s_flags & SB_KERNMOUNT) {
935 if (erofs_is_fscache_mode(sb))
938 kill_block_super(sb);
944 erofs_free_dev_context(sbi->devs);
945 fs_put_dax(sbi->dax_dev, NULL);
946 erofs_fscache_unregister_fs(sb);
947 kfree(sbi->opt.fsid);
948 kfree(sbi->opt.domain_id);
950 sb->s_fs_info = NULL;
953 /* called when ->s_root is non-NULL */
954 static void erofs_put_super(struct super_block *sb)
956 struct erofs_sb_info *const sbi = EROFS_SB(sb);
960 erofs_unregister_sysfs(sb);
961 erofs_shrinker_unregister(sb);
962 #ifdef CONFIG_EROFS_FS_ZIP
963 iput(sbi->managed_cache);
964 sbi->managed_cache = NULL;
965 iput(sbi->packed_inode);
966 sbi->packed_inode = NULL;
968 erofs_fscache_unregister_fs(sb);
971 struct file_system_type erofs_fs_type = {
972 .owner = THIS_MODULE,
974 .init_fs_context = erofs_init_fs_context,
975 .kill_sb = erofs_kill_sb,
976 .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
978 MODULE_ALIAS_FS("erofs");
980 static int __init erofs_module_init(void)
984 erofs_check_ondisk_layout_definitions();
986 erofs_inode_cachep = kmem_cache_create("erofs_inode",
987 sizeof(struct erofs_inode), 0,
988 SLAB_RECLAIM_ACCOUNT,
989 erofs_inode_init_once);
990 if (!erofs_inode_cachep) {
995 err = erofs_init_shrinker();
999 err = z_erofs_lzma_init();
1003 erofs_pcpubuf_init();
1004 err = z_erofs_init_zip_subsystem();
1008 err = erofs_init_sysfs();
1012 err = register_filesystem(&erofs_fs_type);
1021 z_erofs_exit_zip_subsystem();
1023 z_erofs_lzma_exit();
1025 erofs_exit_shrinker();
1027 kmem_cache_destroy(erofs_inode_cachep);
1032 static void __exit erofs_module_exit(void)
1034 unregister_filesystem(&erofs_fs_type);
1036 /* Ensure all RCU free inodes / pclusters are safe to be destroyed. */
1040 z_erofs_exit_zip_subsystem();
1041 z_erofs_lzma_exit();
1042 erofs_exit_shrinker();
1043 kmem_cache_destroy(erofs_inode_cachep);
1044 erofs_pcpubuf_exit();
1047 /* get filesystem statistics */
1048 static int erofs_statfs(struct dentry *dentry, struct kstatfs *buf)
1050 struct super_block *sb = dentry->d_sb;
1051 struct erofs_sb_info *sbi = EROFS_SB(sb);
1054 if (!erofs_is_fscache_mode(sb))
1055 id = huge_encode_dev(sb->s_bdev->bd_dev);
1057 buf->f_type = sb->s_magic;
1058 buf->f_bsize = EROFS_BLKSIZ;
1059 buf->f_blocks = sbi->total_blocks;
1060 buf->f_bfree = buf->f_bavail = 0;
1062 buf->f_files = ULLONG_MAX;
1063 buf->f_ffree = ULLONG_MAX - sbi->inos;
1065 buf->f_namelen = EROFS_NAME_LEN;
1067 buf->f_fsid = u64_to_fsid(id);
1071 static int erofs_show_options(struct seq_file *seq, struct dentry *root)
1073 struct erofs_sb_info *sbi = EROFS_SB(root->d_sb);
1074 struct erofs_mount_opts *opt = &sbi->opt;
1076 #ifdef CONFIG_EROFS_FS_XATTR
1077 if (test_opt(opt, XATTR_USER))
1078 seq_puts(seq, ",user_xattr");
1080 seq_puts(seq, ",nouser_xattr");
1082 #ifdef CONFIG_EROFS_FS_POSIX_ACL
1083 if (test_opt(opt, POSIX_ACL))
1084 seq_puts(seq, ",acl");
1086 seq_puts(seq, ",noacl");
1088 #ifdef CONFIG_EROFS_FS_ZIP
1089 if (opt->cache_strategy == EROFS_ZIP_CACHE_DISABLED)
1090 seq_puts(seq, ",cache_strategy=disabled");
1091 else if (opt->cache_strategy == EROFS_ZIP_CACHE_READAHEAD)
1092 seq_puts(seq, ",cache_strategy=readahead");
1093 else if (opt->cache_strategy == EROFS_ZIP_CACHE_READAROUND)
1094 seq_puts(seq, ",cache_strategy=readaround");
1096 if (test_opt(opt, DAX_ALWAYS))
1097 seq_puts(seq, ",dax=always");
1098 if (test_opt(opt, DAX_NEVER))
1099 seq_puts(seq, ",dax=never");
1100 #ifdef CONFIG_EROFS_FS_ONDEMAND
1102 seq_printf(seq, ",fsid=%s", opt->fsid);
1104 seq_printf(seq, ",domain_id=%s", opt->domain_id);
1109 const struct super_operations erofs_sops = {
1110 .put_super = erofs_put_super,
1111 .alloc_inode = erofs_alloc_inode,
1112 .free_inode = erofs_free_inode,
1113 .statfs = erofs_statfs,
1114 .show_options = erofs_show_options,
1117 module_init(erofs_module_init);
1118 module_exit(erofs_module_exit);
1120 MODULE_DESCRIPTION("Enhanced ROM File System");
1121 MODULE_AUTHOR("Gao Xiang, Chao Yu, Miao Xie, CONSUMER BG, HUAWEI Inc.");
1122 MODULE_LICENSE("GPL");