Merge tag 'for-6.7/io_uring-2023-10-30' of git://git.kernel.dk/linux
[linux-block.git] / fs / configfs / mount.c
CommitLineData
328970de 1// SPDX-License-Identifier: GPL-2.0-or-later
fa60ce2c 2/*
7063fbf2
JB
3 * mount.c - operations for initializing and mounting configfs.
4 *
7063fbf2
JB
5 * Based on sysfs:
6 * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
7 *
8 * configfs Copyright (C) 2005 Oracle. All rights reserved.
9 */
10
11#include <linux/fs.h>
12#include <linux/module.h>
13#include <linux/mount.h>
6bc62f20 14#include <linux/fs_context.h>
7063fbf2
JB
15#include <linux/pagemap.h>
16#include <linux/init.h>
5a0e3ad6 17#include <linux/slab.h>
7063fbf2
JB
18
19#include <linux/configfs.h>
20#include "configfs_internal.h"
21
22/* Random magic number */
23#define CONFIGFS_MAGIC 0x62656570
24
2a152ad3 25static struct vfsmount *configfs_mount = NULL;
e18b890b 26struct kmem_cache *configfs_dir_cachep;
7063fbf2
JB
27static int configfs_mnt_count = 0;
28
e9c03af2
AV
29
30static void configfs_free_inode(struct inode *inode)
31{
32 if (S_ISLNK(inode->i_mode))
33 kfree(inode->i_link);
34 free_inode_nonrcu(inode);
35}
36
ee9b6d61 37static const struct super_operations configfs_ops = {
7063fbf2
JB
38 .statfs = simple_statfs,
39 .drop_inode = generic_delete_inode,
e9c03af2 40 .free_inode = configfs_free_inode,
7063fbf2
JB
41};
42
43static struct config_group configfs_root_group = {
44 .cg_item = {
45 .ci_namebuf = "root",
46 .ci_name = configfs_root_group.cg_item.ci_namebuf,
47 },
48};
49
50int configfs_is_root(struct config_item *item)
51{
52 return item == &configfs_root_group.cg_item;
53}
54
55static struct configfs_dirent configfs_root = {
56 .s_sibling = LIST_HEAD_INIT(configfs_root.s_sibling),
57 .s_children = LIST_HEAD_INIT(configfs_root.s_children),
58 .s_element = &configfs_root_group.cg_item,
59 .s_type = CONFIGFS_ROOT,
3d0f89bb 60 .s_iattr = NULL,
7063fbf2
JB
61};
62
6bc62f20 63static int configfs_fill_super(struct super_block *sb, struct fs_context *fc)
7063fbf2
JB
64{
65 struct inode *inode;
66 struct dentry *root;
67
09cbfeaf
KS
68 sb->s_blocksize = PAGE_SIZE;
69 sb->s_blocksize_bits = PAGE_SHIFT;
7063fbf2
JB
70 sb->s_magic = CONFIGFS_MAGIC;
71 sb->s_op = &configfs_ops;
3d0f89bb 72 sb->s_time_gran = 1;
7063fbf2 73
3d0f89bb 74 inode = configfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
b7c177fc 75 &configfs_root, sb);
7063fbf2 76 if (inode) {
81d44ed1 77 inode->i_op = &configfs_root_inode_operations;
7063fbf2
JB
78 inode->i_fop = &configfs_dir_operations;
79 /* directory inodes start off with i_nlink == 2 (for "." entry) */
d8c76e6f 80 inc_nlink(inode);
7063fbf2 81 } else {
1d88aa44 82 pr_debug("could not get root inode\n");
7063fbf2
JB
83 return -ENOMEM;
84 }
85
48fde701 86 root = d_make_root(inode);
7063fbf2 87 if (!root) {
8e24eea7 88 pr_debug("%s: could not get root dentry!\n",__func__);
7063fbf2
JB
89 return -ENOMEM;
90 }
91 config_group_init(&configfs_root_group);
92 configfs_root_group.cg_item.ci_dentry = root;
93 root->d_fsdata = &configfs_root;
94 sb->s_root = root;
d463a0c4 95 sb->s_d_op = &configfs_dentry_ops; /* the rest get that */
7063fbf2
JB
96 return 0;
97}
98
6bc62f20 99static int configfs_get_tree(struct fs_context *fc)
7063fbf2 100{
6bc62f20
DH
101 return get_tree_single(fc, configfs_fill_super);
102}
103
104static const struct fs_context_operations configfs_context_ops = {
105 .get_tree = configfs_get_tree,
106};
107
108static int configfs_init_fs_context(struct fs_context *fc)
109{
110 fc->ops = &configfs_context_ops;
111 return 0;
7063fbf2
JB
112}
113
114static struct file_system_type configfs_fs_type = {
115 .owner = THIS_MODULE,
116 .name = "configfs",
6bc62f20 117 .init_fs_context = configfs_init_fs_context,
7063fbf2
JB
118 .kill_sb = kill_litter_super,
119};
7f78e035 120MODULE_ALIAS_FS("configfs");
7063fbf2 121
2a152ad3 122struct dentry *configfs_pin_fs(void)
7063fbf2 123{
2a152ad3 124 int err = simple_pin_fs(&configfs_fs_type, &configfs_mount,
7063fbf2 125 &configfs_mnt_count);
2a152ad3 126 return err ? ERR_PTR(err) : configfs_mount->mnt_root;
7063fbf2
JB
127}
128
129void configfs_release_fs(void)
130{
131 simple_release_fs(&configfs_mount, &configfs_mnt_count);
132}
133
134
7063fbf2
JB
135static int __init configfs_init(void)
136{
3d0f89bb
JB
137 int err = -ENOMEM;
138
139 configfs_dir_cachep = kmem_cache_create("configfs_dir_cache",
140 sizeof(struct configfs_dirent),
20c2df83 141 0, 0, NULL);
3d0f89bb
JB
142 if (!configfs_dir_cachep)
143 goto out;
7063fbf2 144
f9bb4882
EB
145 err = sysfs_create_mount_point(kernel_kobj, "config");
146 if (err)
7c6455e3
AV
147 goto out2;
148
7063fbf2 149 err = register_filesystem(&configfs_fs_type);
7c6455e3 150 if (err)
b4caecd4 151 goto out3;
7063fbf2 152
7c6455e3 153 return 0;
7c6455e3 154out3:
b4caecd4 155 pr_err("Unable to register filesystem!\n");
f9bb4882 156 sysfs_remove_mount_point(kernel_kobj, "config");
7c6455e3
AV
157out2:
158 kmem_cache_destroy(configfs_dir_cachep);
159 configfs_dir_cachep = NULL;
3d0f89bb 160out:
7063fbf2
JB
161 return err;
162}
163
164static void __exit configfs_exit(void)
165{
166 unregister_filesystem(&configfs_fs_type);
f9bb4882 167 sysfs_remove_mount_point(kernel_kobj, "config");
3d0f89bb
JB
168 kmem_cache_destroy(configfs_dir_cachep);
169 configfs_dir_cachep = NULL;
7063fbf2
JB
170}
171
172MODULE_AUTHOR("Oracle");
173MODULE_LICENSE("GPL");
3d0f89bb 174MODULE_VERSION("0.0.2");
7063fbf2
JB
175MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
176
f5b69770 177core_initcall(configfs_init);
7063fbf2 178module_exit(configfs_exit);