1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
5 * mount.c - operations for initializing and mounting configfs.
8 * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
10 * configfs Copyright (C) 2005 Oracle. All rights reserved.
14 #include <linux/module.h>
15 #include <linux/mount.h>
16 #include <linux/pagemap.h>
17 #include <linux/init.h>
18 #include <linux/slab.h>
20 #include <linux/configfs.h>
21 #include "configfs_internal.h"
23 /* Random magic number */
24 #define CONFIGFS_MAGIC 0x62656570
26 static struct vfsmount
*configfs_mount
= NULL
;
27 struct kmem_cache
*configfs_dir_cachep
;
28 static int configfs_mnt_count
= 0;
30 static const struct super_operations configfs_ops
= {
31 .statfs
= simple_statfs
,
32 .drop_inode
= generic_delete_inode
,
35 static struct config_group configfs_root_group
= {
38 .ci_name
= configfs_root_group
.cg_item
.ci_namebuf
,
42 int configfs_is_root(struct config_item
*item
)
44 return item
== &configfs_root_group
.cg_item
;
47 static struct configfs_dirent configfs_root
= {
48 .s_sibling
= LIST_HEAD_INIT(configfs_root
.s_sibling
),
49 .s_children
= LIST_HEAD_INIT(configfs_root
.s_children
),
50 .s_element
= &configfs_root_group
.cg_item
,
51 .s_type
= CONFIGFS_ROOT
,
55 static int configfs_fill_super(struct super_block
*sb
, void *data
, int silent
)
60 sb
->s_blocksize
= PAGE_SIZE
;
61 sb
->s_blocksize_bits
= PAGE_SHIFT
;
62 sb
->s_magic
= CONFIGFS_MAGIC
;
63 sb
->s_op
= &configfs_ops
;
66 inode
= configfs_new_inode(S_IFDIR
| S_IRWXU
| S_IRUGO
| S_IXUGO
,
69 inode
->i_op
= &configfs_root_inode_operations
;
70 inode
->i_fop
= &configfs_dir_operations
;
71 /* directory inodes start off with i_nlink == 2 (for "." entry) */
74 pr_debug("could not get root inode\n");
78 root
= d_make_root(inode
);
80 pr_debug("%s: could not get root dentry!\n",__func__
);
83 config_group_init(&configfs_root_group
);
84 configfs_root_group
.cg_item
.ci_dentry
= root
;
85 root
->d_fsdata
= &configfs_root
;
87 sb
->s_d_op
= &configfs_dentry_ops
; /* the rest get that */
91 static struct dentry
*configfs_do_mount(struct file_system_type
*fs_type
,
92 int flags
, const char *dev_name
, void *data
)
94 return mount_single(fs_type
, flags
, data
, configfs_fill_super
);
97 static struct file_system_type configfs_fs_type
= {
100 .mount
= configfs_do_mount
,
101 .kill_sb
= kill_litter_super
,
103 MODULE_ALIAS_FS("configfs");
105 struct dentry
*configfs_pin_fs(void)
107 int err
= simple_pin_fs(&configfs_fs_type
, &configfs_mount
,
108 &configfs_mnt_count
);
109 return err
? ERR_PTR(err
) : configfs_mount
->mnt_root
;
112 void configfs_release_fs(void)
114 simple_release_fs(&configfs_mount
, &configfs_mnt_count
);
118 static int __init
configfs_init(void)
122 configfs_dir_cachep
= kmem_cache_create("configfs_dir_cache",
123 sizeof(struct configfs_dirent
),
125 if (!configfs_dir_cachep
)
128 err
= sysfs_create_mount_point(kernel_kobj
, "config");
132 err
= register_filesystem(&configfs_fs_type
);
138 pr_err("Unable to register filesystem!\n");
139 sysfs_remove_mount_point(kernel_kobj
, "config");
141 kmem_cache_destroy(configfs_dir_cachep
);
142 configfs_dir_cachep
= NULL
;
147 static void __exit
configfs_exit(void)
149 unregister_filesystem(&configfs_fs_type
);
150 sysfs_remove_mount_point(kernel_kobj
, "config");
151 kmem_cache_destroy(configfs_dir_cachep
);
152 configfs_dir_cachep
= NULL
;
155 MODULE_AUTHOR("Oracle");
156 MODULE_LICENSE("GPL");
157 MODULE_VERSION("0.0.2");
158 MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
160 core_initcall(configfs_init
);
161 module_exit(configfs_exit
);