blob: c2d820063ec49a5def2050678e65c7c8ad7279fd [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Masahiro Yamadafa60ce22021-05-06 18:06:44 -07002/*
Joel Becker7063fbf2005-12-15 14:29:43 -08003 * mount.c - operations for initializing and mounting configfs.
4 *
Joel Becker7063fbf2005-12-15 14:29:43 -08005 * 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>
David Howells6bc62f22019-03-25 16:38:29 +000014#include <linux/fs_context.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080015#include <linux/pagemap.h>
16#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080018
19#include <linux/configfs.h>
20#include "configfs_internal.h"
21
22/* Random magic number */
23#define CONFIGFS_MAGIC 0x62656570
24
Al Viro2a152ad2012-03-17 16:53:29 -040025static struct vfsmount *configfs_mount = NULL;
Christoph Lametere18b8902006-12-06 20:33:20 -080026struct kmem_cache *configfs_dir_cachep;
Joel Becker7063fbf2005-12-15 14:29:43 -080027static int configfs_mnt_count = 0;
28
Al Viroe9c03af2019-09-11 09:00:01 +020029
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
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080037static const struct super_operations configfs_ops = {
Joel Becker7063fbf2005-12-15 14:29:43 -080038 .statfs = simple_statfs,
39 .drop_inode = generic_delete_inode,
Al Viroe9c03af2019-09-11 09:00:01 +020040 .free_inode = configfs_free_inode,
Joel Becker7063fbf2005-12-15 14:29:43 -080041};
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,
Joel Becker3d0f89b2006-01-25 13:31:07 -080060 .s_iattr = NULL,
Joel Becker7063fbf2005-12-15 14:29:43 -080061};
62
David Howells6bc62f22019-03-25 16:38:29 +000063static int configfs_fill_super(struct super_block *sb, struct fs_context *fc)
Joel Becker7063fbf2005-12-15 14:29:43 -080064{
65 struct inode *inode;
66 struct dentry *root;
67
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030068 sb->s_blocksize = PAGE_SIZE;
69 sb->s_blocksize_bits = PAGE_SHIFT;
Joel Becker7063fbf2005-12-15 14:29:43 -080070 sb->s_magic = CONFIGFS_MAGIC;
71 sb->s_op = &configfs_ops;
Joel Becker3d0f89b2006-01-25 13:31:07 -080072 sb->s_time_gran = 1;
Joel Becker7063fbf2005-12-15 14:29:43 -080073
Joel Becker3d0f89b2006-01-25 13:31:07 -080074 inode = configfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
Al Virob7c177f2012-03-17 16:24:54 -040075 &configfs_root, sb);
Joel Becker7063fbf2005-12-15 14:29:43 -080076 if (inode) {
Al Viro81d44ed12012-03-17 16:13:25 -040077 inode->i_op = &configfs_root_inode_operations;
Joel Becker7063fbf2005-12-15 14:29:43 -080078 inode->i_fop = &configfs_dir_operations;
79 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -070080 inc_nlink(inode);
Joel Becker7063fbf2005-12-15 14:29:43 -080081 } else {
Fabian Frederick1d88aa42014-06-04 16:05:59 -070082 pr_debug("could not get root inode\n");
Joel Becker7063fbf2005-12-15 14:29:43 -080083 return -ENOMEM;
84 }
85
Al Viro48fde702012-01-08 22:15:13 -050086 root = d_make_root(inode);
Joel Becker7063fbf2005-12-15 14:29:43 -080087 if (!root) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -070088 pr_debug("%s: could not get root dentry!\n",__func__);
Joel Becker7063fbf2005-12-15 14:29:43 -080089 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;
Al Virod463a0c2011-01-12 16:41:05 -050095 sb->s_d_op = &configfs_dentry_ops; /* the rest get that */
Joel Becker7063fbf2005-12-15 14:29:43 -080096 return 0;
97}
98
David Howells6bc62f22019-03-25 16:38:29 +000099static int configfs_get_tree(struct fs_context *fc)
Joel Becker7063fbf2005-12-15 14:29:43 -0800100{
David Howells6bc62f22019-03-25 16:38:29 +0000101 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;
Joel Becker7063fbf2005-12-15 14:29:43 -0800112}
113
114static struct file_system_type configfs_fs_type = {
115 .owner = THIS_MODULE,
116 .name = "configfs",
David Howells6bc62f22019-03-25 16:38:29 +0000117 .init_fs_context = configfs_init_fs_context,
Joel Becker7063fbf2005-12-15 14:29:43 -0800118 .kill_sb = kill_litter_super,
119};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800120MODULE_ALIAS_FS("configfs");
Joel Becker7063fbf2005-12-15 14:29:43 -0800121
Al Viro2a152ad2012-03-17 16:53:29 -0400122struct dentry *configfs_pin_fs(void)
Joel Becker7063fbf2005-12-15 14:29:43 -0800123{
Al Viro2a152ad2012-03-17 16:53:29 -0400124 int err = simple_pin_fs(&configfs_fs_type, &configfs_mount,
Joel Becker7063fbf2005-12-15 14:29:43 -0800125 &configfs_mnt_count);
Al Viro2a152ad2012-03-17 16:53:29 -0400126 return err ? ERR_PTR(err) : configfs_mount->mnt_root;
Joel Becker7063fbf2005-12-15 14:29:43 -0800127}
128
129void configfs_release_fs(void)
130{
131 simple_release_fs(&configfs_mount, &configfs_mnt_count);
132}
133
134
Joel Becker7063fbf2005-12-15 14:29:43 -0800135static int __init configfs_init(void)
136{
Joel Becker3d0f89b2006-01-25 13:31:07 -0800137 int err = -ENOMEM;
138
139 configfs_dir_cachep = kmem_cache_create("configfs_dir_cache",
140 sizeof(struct configfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +0900141 0, 0, NULL);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800142 if (!configfs_dir_cachep)
143 goto out;
Joel Becker7063fbf2005-12-15 14:29:43 -0800144
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500145 err = sysfs_create_mount_point(kernel_kobj, "config");
146 if (err)
Al Viro7c6455e2011-12-13 12:32:42 -0500147 goto out2;
Joel Becker7063fbf2005-12-15 14:29:43 -0800148
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100149 err = register_filesystem(&configfs_fs_type);
Al Viro7c6455e2011-12-13 12:32:42 -0500150 if (err)
151 goto out3;
152
Al Viro7c6455e2011-12-13 12:32:42 -0500153 return 0;
Al Viro7c6455e2011-12-13 12:32:42 -0500154out3:
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100155 pr_err("Unable to register filesystem!\n");
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500156 sysfs_remove_mount_point(kernel_kobj, "config");
Al Viro7c6455e2011-12-13 12:32:42 -0500157out2:
158 kmem_cache_destroy(configfs_dir_cachep);
159 configfs_dir_cachep = NULL;
Joel Becker3d0f89b2006-01-25 13:31:07 -0800160out:
Joel Becker7063fbf2005-12-15 14:29:43 -0800161 return err;
162}
163
164static void __exit configfs_exit(void)
165{
166 unregister_filesystem(&configfs_fs_type);
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500167 sysfs_remove_mount_point(kernel_kobj, "config");
Joel Becker3d0f89b2006-01-25 13:31:07 -0800168 kmem_cache_destroy(configfs_dir_cachep);
169 configfs_dir_cachep = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -0800170}
171
172MODULE_AUTHOR("Oracle");
173MODULE_LICENSE("GPL");
Joel Becker3d0f89b2006-01-25 13:31:07 -0800174MODULE_VERSION("0.0.2");
Joel Becker7063fbf2005-12-15 14:29:43 -0800175MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
176
Daniel Balutaf5b69772015-05-05 16:23:54 -0700177core_initcall(configfs_init);
Joel Becker7063fbf2005-12-15 14:29:43 -0800178module_exit(configfs_exit);