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/statfs.h>
8 #include <linux/seq_file.h>
9 #include <linux/crc32c.h>
10 #include <linux/fs_context.h>
11 #include <linux/fs_parser.h>
12 #include <linux/exportfs.h>
13 #include <linux/backing-dev.h>
16 #define CREATE_TRACE_POINTS
17 #include <trace/events/erofs.h>
19 static struct kmem_cache *erofs_inode_cachep __read_mostly;
21 void _erofs_printk(struct super_block *sb, const char *fmt, ...)
29 level = printk_get_level(fmt);
30 vaf.fmt = printk_skip_level(fmt);
33 printk("%c%cerofs (device %s): %pV",
34 KERN_SOH_ASCII, level, sb->s_id, &vaf);
36 printk("%c%cerofs: %pV", KERN_SOH_ASCII, level, &vaf);
40 static int erofs_superblock_csum_verify(struct super_block *sb, void *sbdata)
42 struct erofs_super_block *dsb = sbdata + EROFS_SUPER_OFFSET;
43 u32 len = 1 << EROFS_SB(sb)->blkszbits, crc;
45 if (len > EROFS_SUPER_OFFSET)
46 len -= EROFS_SUPER_OFFSET;
47 len -= offsetof(struct erofs_super_block, checksum) +
48 sizeof(dsb->checksum);
50 /* skip .magic(pre-verified) and .checksum(0) fields */
51 crc = crc32c(0x5045B54A, (&dsb->checksum) + 1, len);
52 if (crc == le32_to_cpu(dsb->checksum))
54 erofs_err(sb, "invalid checksum 0x%08x, 0x%08x expected",
55 crc, le32_to_cpu(dsb->checksum));
59 static void erofs_inode_init_once(void *ptr)
61 struct erofs_inode *vi = ptr;
63 inode_init_once(&vi->vfs_inode);
66 static struct inode *erofs_alloc_inode(struct super_block *sb)
68 struct erofs_inode *vi =
69 alloc_inode_sb(sb, erofs_inode_cachep, GFP_KERNEL);
74 /* zero out everything except vfs_inode */
75 memset(vi, 0, offsetof(struct erofs_inode, vfs_inode));
76 return &vi->vfs_inode;
79 static void erofs_free_inode(struct inode *inode)
81 struct erofs_inode *vi = EROFS_I(inode);
83 if (inode->i_op == &erofs_fast_symlink_iops)
85 kfree(vi->xattr_shared_xattrs);
86 kmem_cache_free(erofs_inode_cachep, vi);
89 /* read variable-sized metadata, offset will be aligned by 4-byte */
90 void *erofs_read_metadata(struct super_block *sb, struct erofs_buf *buf,
91 erofs_off_t *offset, int *lengthp)
96 *offset = round_up(*offset, 4);
97 ptr = erofs_bread(buf, *offset, EROFS_KMAP);
101 len = le16_to_cpu(*(__le16 *)ptr);
104 buffer = kmalloc(len, GFP_KERNEL);
106 return ERR_PTR(-ENOMEM);
107 *offset += sizeof(__le16);
110 for (i = 0; i < len; i += cnt) {
111 cnt = min_t(int, sb->s_blocksize - erofs_blkoff(sb, *offset),
113 ptr = erofs_bread(buf, *offset, EROFS_KMAP);
118 memcpy(buffer + i, ptr, cnt);
124 #ifndef CONFIG_EROFS_FS_ZIP
125 static int z_erofs_parse_cfgs(struct super_block *sb,
126 struct erofs_super_block *dsb)
128 if (!dsb->u1.available_compr_algs)
131 erofs_err(sb, "compression disabled, unable to mount compressed EROFS");
136 static int erofs_init_device(struct erofs_buf *buf, struct super_block *sb,
137 struct erofs_device_info *dif, erofs_off_t *pos)
139 struct erofs_sb_info *sbi = EROFS_SB(sb);
140 struct erofs_fscache *fscache;
141 struct erofs_deviceslot *dis;
144 dis = erofs_read_metabuf(buf, sb, *pos, EROFS_KMAP);
148 if (!sbi->devs->flatdev && !dif->path) {
150 erofs_err(sb, "empty device tag @ pos %llu", *pos);
153 dif->path = kmemdup_nul(dis->tag, sizeof(dis->tag), GFP_KERNEL);
158 if (erofs_is_fscache_mode(sb)) {
159 fscache = erofs_fscache_register_cookie(sb, dif->path, 0);
161 return PTR_ERR(fscache);
162 dif->fscache = fscache;
163 } else if (!sbi->devs->flatdev) {
164 file = erofs_is_fileio_mode(sbi) ?
165 filp_open(dif->path, O_RDONLY | O_LARGEFILE, 0) :
166 bdev_file_open_by_path(dif->path,
167 BLK_OPEN_READ, sb->s_type, NULL);
169 return PTR_ERR(file);
171 if (!erofs_is_fileio_mode(sbi)) {
172 dif->dax_dev = fs_dax_get_by_bdev(file_bdev(file),
173 &dif->dax_part_off, NULL, NULL);
174 } else if (!S_ISREG(file_inode(file)->i_mode)) {
181 dif->blocks = le32_to_cpu(dis->blocks);
182 dif->mapped_blkaddr = le32_to_cpu(dis->mapped_blkaddr);
183 sbi->total_blocks += dif->blocks;
184 *pos += EROFS_DEVT_SLOT_SIZE;
188 static int erofs_scan_devices(struct super_block *sb,
189 struct erofs_super_block *dsb)
191 struct erofs_sb_info *sbi = EROFS_SB(sb);
192 unsigned int ondisk_extradevs;
194 struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
195 struct erofs_device_info *dif;
198 sbi->total_blocks = sbi->dif0.blocks;
199 if (!erofs_sb_has_device_table(sbi))
200 ondisk_extradevs = 0;
202 ondisk_extradevs = le16_to_cpu(dsb->extra_devices);
204 if (sbi->devs->extra_devices &&
205 ondisk_extradevs != sbi->devs->extra_devices) {
206 erofs_err(sb, "extra devices don't match (ondisk %u, given %u)",
207 ondisk_extradevs, sbi->devs->extra_devices);
210 if (!ondisk_extradevs)
213 if (!sbi->devs->extra_devices && !erofs_is_fscache_mode(sb))
214 sbi->devs->flatdev = true;
216 sbi->device_id_mask = roundup_pow_of_two(ondisk_extradevs + 1) - 1;
217 pos = le16_to_cpu(dsb->devt_slotoff) * EROFS_DEVT_SLOT_SIZE;
218 down_read(&sbi->devs->rwsem);
219 if (sbi->devs->extra_devices) {
220 idr_for_each_entry(&sbi->devs->tree, dif, id) {
221 err = erofs_init_device(&buf, sb, dif, &pos);
226 for (id = 0; id < ondisk_extradevs; id++) {
227 dif = kzalloc(sizeof(*dif), GFP_KERNEL);
233 err = idr_alloc(&sbi->devs->tree, dif, 0, 0, GFP_KERNEL);
238 ++sbi->devs->extra_devices;
240 err = erofs_init_device(&buf, sb, dif, &pos);
245 up_read(&sbi->devs->rwsem);
246 erofs_put_metabuf(&buf);
250 static int erofs_read_superblock(struct super_block *sb)
252 struct erofs_sb_info *sbi = EROFS_SB(sb);
253 struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
254 struct erofs_super_block *dsb;
258 data = erofs_read_metabuf(&buf, sb, 0, EROFS_KMAP);
260 erofs_err(sb, "cannot read erofs superblock");
261 return PTR_ERR(data);
264 dsb = (struct erofs_super_block *)(data + EROFS_SUPER_OFFSET);
266 if (le32_to_cpu(dsb->magic) != EROFS_SUPER_MAGIC_V1) {
267 erofs_err(sb, "cannot find valid erofs superblock");
271 sbi->blkszbits = dsb->blkszbits;
272 if (sbi->blkszbits < 9 || sbi->blkszbits > PAGE_SHIFT) {
273 erofs_err(sb, "blkszbits %u isn't supported", sbi->blkszbits);
276 if (dsb->dirblkbits) {
277 erofs_err(sb, "dirblkbits %u isn't supported", dsb->dirblkbits);
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);
289 sbi->feature_incompat = le32_to_cpu(dsb->feature_incompat);
290 if (sbi->feature_incompat & ~EROFS_ALL_FEATURE_INCOMPAT) {
291 erofs_err(sb, "unidentified incompatible feature %x, please upgrade kernel",
292 sbi->feature_incompat & ~EROFS_ALL_FEATURE_INCOMPAT);
296 sbi->sb_size = 128 + dsb->sb_extslots * EROFS_SB_EXTSLOT_SIZE;
297 if (sbi->sb_size > PAGE_SIZE - EROFS_SUPER_OFFSET) {
298 erofs_err(sb, "invalid sb_extslots %u (more than a fs block)",
302 sbi->dif0.blocks = le32_to_cpu(dsb->blocks);
303 sbi->meta_blkaddr = le32_to_cpu(dsb->meta_blkaddr);
304 #ifdef CONFIG_EROFS_FS_XATTR
305 sbi->xattr_blkaddr = le32_to_cpu(dsb->xattr_blkaddr);
306 sbi->xattr_prefix_start = le32_to_cpu(dsb->xattr_prefix_start);
307 sbi->xattr_prefix_count = dsb->xattr_prefix_count;
308 sbi->xattr_filter_reserved = dsb->xattr_filter_reserved;
310 sbi->islotbits = ilog2(sizeof(struct erofs_inode_compact));
311 sbi->root_nid = le16_to_cpu(dsb->root_nid);
312 sbi->packed_nid = le64_to_cpu(dsb->packed_nid);
313 sbi->inos = le64_to_cpu(dsb->inos);
315 sbi->build_time = le64_to_cpu(dsb->build_time);
316 sbi->build_time_nsec = le32_to_cpu(dsb->build_time_nsec);
318 super_set_uuid(sb, (void *)dsb->uuid, sizeof(dsb->uuid));
320 ret = strscpy(sbi->volume_name, dsb->volume_name,
321 sizeof(dsb->volume_name));
322 if (ret < 0) { /* -E2BIG */
323 erofs_err(sb, "bad volume name without NIL terminator");
328 /* parse on-disk compression configurations */
329 ret = z_erofs_parse_cfgs(sb, dsb);
333 /* handle multiple devices */
334 ret = erofs_scan_devices(sb, dsb);
336 if (erofs_is_fscache_mode(sb))
337 erofs_info(sb, "[deprecated] fscache-based on-demand read feature in use. Use at your own risk!");
339 erofs_put_metabuf(&buf);
343 static void erofs_default_options(struct erofs_sb_info *sbi)
345 #ifdef CONFIG_EROFS_FS_ZIP
346 sbi->opt.cache_strategy = EROFS_ZIP_CACHE_READAROUND;
347 sbi->opt.max_sync_decompress_pages = 3;
348 sbi->opt.sync_decompress = EROFS_SYNC_DECOMPRESS_AUTO;
350 #ifdef CONFIG_EROFS_FS_XATTR
351 set_opt(&sbi->opt, XATTR_USER);
353 #ifdef CONFIG_EROFS_FS_POSIX_ACL
354 set_opt(&sbi->opt, POSIX_ACL);
359 Opt_user_xattr, Opt_acl, Opt_cache_strategy, Opt_dax, Opt_dax_enum,
360 Opt_device, Opt_fsid, Opt_domain_id, Opt_directio,
364 static const struct constant_table erofs_param_cache_strategy[] = {
365 {"disabled", EROFS_ZIP_CACHE_DISABLED},
366 {"readahead", EROFS_ZIP_CACHE_READAHEAD},
367 {"readaround", EROFS_ZIP_CACHE_READAROUND},
371 static const struct constant_table erofs_dax_param_enums[] = {
372 {"always", EROFS_MOUNT_DAX_ALWAYS},
373 {"never", EROFS_MOUNT_DAX_NEVER},
377 static const struct fs_parameter_spec erofs_fs_parameters[] = {
378 fsparam_flag_no("user_xattr", Opt_user_xattr),
379 fsparam_flag_no("acl", Opt_acl),
380 fsparam_enum("cache_strategy", Opt_cache_strategy,
381 erofs_param_cache_strategy),
382 fsparam_flag("dax", Opt_dax),
383 fsparam_enum("dax", Opt_dax_enum, erofs_dax_param_enums),
384 fsparam_string("device", Opt_device),
385 fsparam_string("fsid", Opt_fsid),
386 fsparam_string("domain_id", Opt_domain_id),
387 fsparam_flag_no("directio", Opt_directio),
391 static bool erofs_fc_set_dax_mode(struct fs_context *fc, unsigned int mode)
394 struct erofs_sb_info *sbi = fc->s_fs_info;
397 case EROFS_MOUNT_DAX_ALWAYS:
398 set_opt(&sbi->opt, DAX_ALWAYS);
399 clear_opt(&sbi->opt, DAX_NEVER);
401 case EROFS_MOUNT_DAX_NEVER:
402 set_opt(&sbi->opt, DAX_NEVER);
403 clear_opt(&sbi->opt, DAX_ALWAYS);
410 errorfc(fc, "dax options not supported");
415 static int erofs_fc_parse_param(struct fs_context *fc,
416 struct fs_parameter *param)
418 struct erofs_sb_info *sbi = fc->s_fs_info;
419 struct fs_parse_result result;
420 struct erofs_device_info *dif;
423 opt = fs_parse(fc, erofs_fs_parameters, param, &result);
429 #ifdef CONFIG_EROFS_FS_XATTR
431 set_opt(&sbi->opt, XATTR_USER);
433 clear_opt(&sbi->opt, XATTR_USER);
435 errorfc(fc, "{,no}user_xattr options not supported");
439 #ifdef CONFIG_EROFS_FS_POSIX_ACL
441 set_opt(&sbi->opt, POSIX_ACL);
443 clear_opt(&sbi->opt, POSIX_ACL);
445 errorfc(fc, "{,no}acl options not supported");
448 case Opt_cache_strategy:
449 #ifdef CONFIG_EROFS_FS_ZIP
450 sbi->opt.cache_strategy = result.uint_32;
452 errorfc(fc, "compression not supported, cache_strategy ignored");
456 if (!erofs_fc_set_dax_mode(fc, EROFS_MOUNT_DAX_ALWAYS))
460 if (!erofs_fc_set_dax_mode(fc, result.uint_32))
464 dif = kzalloc(sizeof(*dif), GFP_KERNEL);
467 dif->path = kstrdup(param->string, GFP_KERNEL);
472 down_write(&sbi->devs->rwsem);
473 ret = idr_alloc(&sbi->devs->tree, dif, 0, 0, GFP_KERNEL);
474 up_write(&sbi->devs->rwsem);
480 ++sbi->devs->extra_devices;
482 #ifdef CONFIG_EROFS_FS_ONDEMAND
485 sbi->fsid = kstrdup(param->string, GFP_KERNEL);
490 kfree(sbi->domain_id);
491 sbi->domain_id = kstrdup(param->string, GFP_KERNEL);
498 errorfc(fc, "%s option not supported", erofs_fs_parameters[opt].name);
502 #ifdef CONFIG_EROFS_FS_BACKED_BY_FILE
504 set_opt(&sbi->opt, DIRECT_IO);
506 clear_opt(&sbi->opt, DIRECT_IO);
508 errorfc(fc, "%s option not supported", erofs_fs_parameters[opt].name);
515 static struct inode *erofs_nfs_get_inode(struct super_block *sb,
516 u64 ino, u32 generation)
518 return erofs_iget(sb, ino);
521 static struct dentry *erofs_fh_to_dentry(struct super_block *sb,
522 struct fid *fid, int fh_len, int fh_type)
524 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
525 erofs_nfs_get_inode);
528 static struct dentry *erofs_fh_to_parent(struct super_block *sb,
529 struct fid *fid, int fh_len, int fh_type)
531 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
532 erofs_nfs_get_inode);
535 static struct dentry *erofs_get_parent(struct dentry *child)
541 err = erofs_namei(d_inode(child), &dotdot_name, &nid, &d_type);
544 return d_obtain_alias(erofs_iget(child->d_sb, nid));
547 static const struct export_operations erofs_export_ops = {
548 .encode_fh = generic_encode_ino32_fh,
549 .fh_to_dentry = erofs_fh_to_dentry,
550 .fh_to_parent = erofs_fh_to_parent,
551 .get_parent = erofs_get_parent,
554 static void erofs_set_sysfs_name(struct super_block *sb)
556 struct erofs_sb_info *sbi = EROFS_SB(sb);
559 super_set_sysfs_name_generic(sb, "%s,%s", sbi->domain_id,
562 super_set_sysfs_name_generic(sb, "%s", sbi->fsid);
563 else if (erofs_is_fileio_mode(sbi))
564 super_set_sysfs_name_generic(sb, "%s",
565 bdi_dev_name(sb->s_bdi));
567 super_set_sysfs_name_id(sb);
570 static int erofs_fc_fill_super(struct super_block *sb, struct fs_context *fc)
573 struct erofs_sb_info *sbi = EROFS_SB(sb);
576 sb->s_magic = EROFS_SUPER_MAGIC;
577 sb->s_flags |= SB_RDONLY | SB_NOATIME;
578 sb->s_maxbytes = MAX_LFS_FILESIZE;
579 sb->s_op = &erofs_sops;
581 sbi->blkszbits = PAGE_SHIFT;
583 sb->s_blocksize = PAGE_SIZE;
584 sb->s_blocksize_bits = PAGE_SHIFT;
586 if (erofs_is_fscache_mode(sb)) {
587 err = erofs_fscache_register_fs(sb);
591 err = super_setup_bdi(sb);
595 if (!sb_set_blocksize(sb, PAGE_SIZE)) {
596 errorfc(fc, "failed to set initial blksize");
600 sbi->dif0.dax_dev = fs_dax_get_by_bdev(sb->s_bdev,
601 &sbi->dif0.dax_part_off, NULL, NULL);
604 err = erofs_read_superblock(sb);
608 if (sb->s_blocksize_bits != sbi->blkszbits) {
609 if (erofs_is_fscache_mode(sb)) {
610 errorfc(fc, "unsupported blksize for fscache mode");
614 if (erofs_is_fileio_mode(sbi)) {
615 sb->s_blocksize = 1 << sbi->blkszbits;
616 sb->s_blocksize_bits = sbi->blkszbits;
617 } else if (!sb_set_blocksize(sb, 1 << sbi->blkszbits)) {
618 errorfc(fc, "failed to set erofs blksize");
623 if (test_opt(&sbi->opt, DAX_ALWAYS)) {
624 if (!sbi->dif0.dax_dev) {
625 errorfc(fc, "DAX unsupported by block device. Turning off DAX.");
626 clear_opt(&sbi->opt, DAX_ALWAYS);
627 } else if (sbi->blkszbits != PAGE_SHIFT) {
628 errorfc(fc, "unsupported blocksize for DAX");
629 clear_opt(&sbi->opt, DAX_ALWAYS);
634 sb->s_xattr = erofs_xattr_handlers;
635 sb->s_export_op = &erofs_export_ops;
637 if (test_opt(&sbi->opt, POSIX_ACL))
638 sb->s_flags |= SB_POSIXACL;
640 sb->s_flags &= ~SB_POSIXACL;
642 #ifdef CONFIG_EROFS_FS_ZIP
643 xa_init(&sbi->managed_pslots);
646 inode = erofs_iget(sb, sbi->root_nid);
648 return PTR_ERR(inode);
650 if (!S_ISDIR(inode->i_mode)) {
651 erofs_err(sb, "rootino(nid %llu) is not a directory(i_mode %o)",
652 sbi->root_nid, inode->i_mode);
657 sb->s_root = d_make_root(inode);
661 erofs_shrinker_register(sb);
662 if (erofs_sb_has_fragments(sbi) && sbi->packed_nid) {
663 sbi->packed_inode = erofs_iget(sb, sbi->packed_nid);
664 if (IS_ERR(sbi->packed_inode)) {
665 err = PTR_ERR(sbi->packed_inode);
666 sbi->packed_inode = NULL;
670 err = erofs_init_managed_cache(sb);
674 err = erofs_xattr_prefixes_init(sb);
678 erofs_set_sysfs_name(sb);
679 err = erofs_register_sysfs(sb);
683 erofs_info(sb, "mounted with root inode @ nid %llu.", sbi->root_nid);
687 static int erofs_fc_get_tree(struct fs_context *fc)
689 struct erofs_sb_info *sbi = fc->s_fs_info;
692 if (IS_ENABLED(CONFIG_EROFS_FS_ONDEMAND) && sbi->fsid)
693 return get_tree_nodev(fc, erofs_fc_fill_super);
695 ret = get_tree_bdev_flags(fc, erofs_fc_fill_super,
696 IS_ENABLED(CONFIG_EROFS_FS_BACKED_BY_FILE) ?
697 GET_TREE_BDEV_QUIET_LOOKUP : 0);
698 #ifdef CONFIG_EROFS_FS_BACKED_BY_FILE
699 if (ret == -ENOTBLK) {
703 return invalf(fc, "No source specified");
704 file = filp_open(fc->source, O_RDONLY | O_LARGEFILE, 0);
706 return PTR_ERR(file);
707 sbi->dif0.file = file;
709 if (S_ISREG(file_inode(sbi->dif0.file)->i_mode) &&
710 sbi->dif0.file->f_mapping->a_ops->read_folio)
711 return get_tree_nodev(fc, erofs_fc_fill_super);
717 static int erofs_fc_reconfigure(struct fs_context *fc)
719 struct super_block *sb = fc->root->d_sb;
720 struct erofs_sb_info *sbi = EROFS_SB(sb);
721 struct erofs_sb_info *new_sbi = fc->s_fs_info;
723 DBG_BUGON(!sb_rdonly(sb));
725 if (new_sbi->fsid || new_sbi->domain_id)
726 erofs_info(sb, "ignoring reconfiguration for fsid|domain_id.");
728 if (test_opt(&new_sbi->opt, POSIX_ACL))
729 fc->sb_flags |= SB_POSIXACL;
731 fc->sb_flags &= ~SB_POSIXACL;
733 sbi->opt = new_sbi->opt;
735 fc->sb_flags |= SB_RDONLY;
739 static int erofs_release_device_info(int id, void *ptr, void *data)
741 struct erofs_device_info *dif = ptr;
743 fs_put_dax(dif->dax_dev, NULL);
746 erofs_fscache_unregister_cookie(dif->fscache);
753 static void erofs_free_dev_context(struct erofs_dev_context *devs)
757 idr_for_each(&devs->tree, &erofs_release_device_info, NULL);
758 idr_destroy(&devs->tree);
762 static void erofs_sb_free(struct erofs_sb_info *sbi)
764 erofs_free_dev_context(sbi->devs);
766 kfree(sbi->domain_id);
768 fput(sbi->dif0.file);
772 static void erofs_fc_free(struct fs_context *fc)
774 struct erofs_sb_info *sbi = fc->s_fs_info;
776 if (sbi) /* free here if an error occurs before transferring to sb */
780 static const struct fs_context_operations erofs_context_ops = {
781 .parse_param = erofs_fc_parse_param,
782 .get_tree = erofs_fc_get_tree,
783 .reconfigure = erofs_fc_reconfigure,
784 .free = erofs_fc_free,
787 static int erofs_init_fs_context(struct fs_context *fc)
789 struct erofs_sb_info *sbi;
791 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
795 sbi->devs = kzalloc(sizeof(struct erofs_dev_context), GFP_KERNEL);
802 idr_init(&sbi->devs->tree);
803 init_rwsem(&sbi->devs->rwsem);
804 erofs_default_options(sbi);
805 fc->ops = &erofs_context_ops;
809 static void erofs_kill_sb(struct super_block *sb)
811 struct erofs_sb_info *sbi = EROFS_SB(sb);
813 if ((IS_ENABLED(CONFIG_EROFS_FS_ONDEMAND) && sbi->fsid) ||
817 kill_block_super(sb);
818 fs_put_dax(sbi->dif0.dax_dev, NULL);
819 erofs_fscache_unregister_fs(sb);
821 sb->s_fs_info = NULL;
824 static void erofs_put_super(struct super_block *sb)
826 struct erofs_sb_info *const sbi = EROFS_SB(sb);
830 erofs_unregister_sysfs(sb);
831 erofs_shrinker_unregister(sb);
832 erofs_xattr_prefixes_cleanup(sb);
833 #ifdef CONFIG_EROFS_FS_ZIP
834 iput(sbi->managed_cache);
835 sbi->managed_cache = NULL;
837 iput(sbi->packed_inode);
838 sbi->packed_inode = NULL;
839 erofs_free_dev_context(sbi->devs);
841 erofs_fscache_unregister_fs(sb);
844 static struct file_system_type erofs_fs_type = {
845 .owner = THIS_MODULE,
847 .init_fs_context = erofs_init_fs_context,
848 .kill_sb = erofs_kill_sb,
849 .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
851 MODULE_ALIAS_FS("erofs");
853 static int __init erofs_module_init(void)
857 erofs_check_ondisk_layout_definitions();
859 erofs_inode_cachep = kmem_cache_create("erofs_inode",
860 sizeof(struct erofs_inode), 0,
861 SLAB_RECLAIM_ACCOUNT | SLAB_ACCOUNT,
862 erofs_inode_init_once);
863 if (!erofs_inode_cachep)
866 err = erofs_init_shrinker();
870 err = z_erofs_init_subsystem();
874 err = erofs_init_sysfs();
878 err = register_filesystem(&erofs_fs_type);
887 z_erofs_exit_subsystem();
889 erofs_exit_shrinker();
891 kmem_cache_destroy(erofs_inode_cachep);
895 static void __exit erofs_module_exit(void)
897 unregister_filesystem(&erofs_fs_type);
899 /* Ensure all RCU free inodes / pclusters are safe to be destroyed. */
903 z_erofs_exit_subsystem();
904 erofs_exit_shrinker();
905 kmem_cache_destroy(erofs_inode_cachep);
908 static int erofs_statfs(struct dentry *dentry, struct kstatfs *buf)
910 struct super_block *sb = dentry->d_sb;
911 struct erofs_sb_info *sbi = EROFS_SB(sb);
913 buf->f_type = sb->s_magic;
914 buf->f_bsize = sb->s_blocksize;
915 buf->f_blocks = sbi->total_blocks;
916 buf->f_bfree = buf->f_bavail = 0;
917 buf->f_files = ULLONG_MAX;
918 buf->f_ffree = ULLONG_MAX - sbi->inos;
919 buf->f_namelen = EROFS_NAME_LEN;
921 if (uuid_is_null(&sb->s_uuid))
922 buf->f_fsid = u64_to_fsid(!sb->s_bdev ? 0 :
923 huge_encode_dev(sb->s_bdev->bd_dev));
925 buf->f_fsid = uuid_to_fsid(sb->s_uuid.b);
929 static int erofs_show_options(struct seq_file *seq, struct dentry *root)
931 struct erofs_sb_info *sbi = EROFS_SB(root->d_sb);
932 struct erofs_mount_opts *opt = &sbi->opt;
934 if (IS_ENABLED(CONFIG_EROFS_FS_XATTR))
935 seq_puts(seq, test_opt(opt, XATTR_USER) ?
936 ",user_xattr" : ",nouser_xattr");
937 if (IS_ENABLED(CONFIG_EROFS_FS_POSIX_ACL))
938 seq_puts(seq, test_opt(opt, POSIX_ACL) ? ",acl" : ",noacl");
939 if (IS_ENABLED(CONFIG_EROFS_FS_ZIP))
940 seq_printf(seq, ",cache_strategy=%s",
941 erofs_param_cache_strategy[opt->cache_strategy].name);
942 if (test_opt(opt, DAX_ALWAYS))
943 seq_puts(seq, ",dax=always");
944 if (test_opt(opt, DAX_NEVER))
945 seq_puts(seq, ",dax=never");
946 if (erofs_is_fileio_mode(sbi) && test_opt(opt, DIRECT_IO))
947 seq_puts(seq, ",directio");
948 #ifdef CONFIG_EROFS_FS_ONDEMAND
950 seq_printf(seq, ",fsid=%s", sbi->fsid);
952 seq_printf(seq, ",domain_id=%s", sbi->domain_id);
957 const struct super_operations erofs_sops = {
958 .put_super = erofs_put_super,
959 .alloc_inode = erofs_alloc_inode,
960 .free_inode = erofs_free_inode,
961 .statfs = erofs_statfs,
962 .show_options = erofs_show_options,
965 module_init(erofs_module_init);
966 module_exit(erofs_module_exit);
968 MODULE_DESCRIPTION("Enhanced ROM File System");
969 MODULE_AUTHOR("Gao Xiang, Chao Yu, Miao Xie, CONSUMER BG, HUAWEI Inc.");
970 MODULE_LICENSE("GPL");