blob: 0c6e8cf6195300c706bb04f2be4738a54f0d785f [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Joel Becker7063fbf2005-12-15 14:29:43 -08002/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * mount.c - operations for initializing and mounting configfs.
6 *
Joel Becker7063fbf2005-12-15 14:29:43 -08007 * Based on sysfs:
8 * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
9 *
10 * configfs Copyright (C) 2005 Oracle. All rights reserved.
11 */
12
13#include <linux/fs.h>
14#include <linux/module.h>
15#include <linux/mount.h>
David Howells6bc62f22019-03-25 16:38:29 +000016#include <linux/fs_context.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080017#include <linux/pagemap.h>
18#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080020
21#include <linux/configfs.h>
22#include "configfs_internal.h"
23
24/* Random magic number */
25#define CONFIGFS_MAGIC 0x62656570
26
Al Viro2a152ad2012-03-17 16:53:29 -040027static struct vfsmount *configfs_mount = NULL;
Christoph Lametere18b8902006-12-06 20:33:20 -080028struct kmem_cache *configfs_dir_cachep;
Joel Becker7063fbf2005-12-15 14:29:43 -080029static int configfs_mnt_count = 0;
30
Al Viroe9c03af2019-09-11 09:00:01 +020031
32static void configfs_free_inode(struct inode *inode)
33{
34 if (S_ISLNK(inode->i_mode))
35 kfree(inode->i_link);
36 free_inode_nonrcu(inode);
37}
38
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080039static const struct super_operations configfs_ops = {
Joel Becker7063fbf2005-12-15 14:29:43 -080040 .statfs = simple_statfs,
41 .drop_inode = generic_delete_inode,
Al Viroe9c03af2019-09-11 09:00:01 +020042 .free_inode = configfs_free_inode,
Joel Becker7063fbf2005-12-15 14:29:43 -080043};
44
45static struct config_group configfs_root_group = {
46 .cg_item = {
47 .ci_namebuf = "root",
48 .ci_name = configfs_root_group.cg_item.ci_namebuf,
49 },
50};
51
52int configfs_is_root(struct config_item *item)
53{
54 return item == &configfs_root_group.cg_item;
55}
56
57static struct configfs_dirent configfs_root = {
58 .s_sibling = LIST_HEAD_INIT(configfs_root.s_sibling),
59 .s_children = LIST_HEAD_INIT(configfs_root.s_children),
60 .s_element = &configfs_root_group.cg_item,
61 .s_type = CONFIGFS_ROOT,
Joel Becker3d0f89b2006-01-25 13:31:07 -080062 .s_iattr = NULL,
Joel Becker7063fbf2005-12-15 14:29:43 -080063};
64
David Howells6bc62f22019-03-25 16:38:29 +000065static int configfs_fill_super(struct super_block *sb, struct fs_context *fc)
Joel Becker7063fbf2005-12-15 14:29:43 -080066{
67 struct inode *inode;
68 struct dentry *root;
69
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030070 sb->s_blocksize = PAGE_SIZE;
71 sb->s_blocksize_bits = PAGE_SHIFT;
Joel Becker7063fbf2005-12-15 14:29:43 -080072 sb->s_magic = CONFIGFS_MAGIC;
73 sb->s_op = &configfs_ops;
Joel Becker3d0f89b2006-01-25 13:31:07 -080074 sb->s_time_gran = 1;
Joel Becker7063fbf2005-12-15 14:29:43 -080075
Joel Becker3d0f89b2006-01-25 13:31:07 -080076 inode = configfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
Al Virob7c177f2012-03-17 16:24:54 -040077 &configfs_root, sb);
Joel Becker7063fbf2005-12-15 14:29:43 -080078 if (inode) {
Al Viro81d44ed12012-03-17 16:13:25 -040079 inode->i_op = &configfs_root_inode_operations;
Joel Becker7063fbf2005-12-15 14:29:43 -080080 inode->i_fop = &configfs_dir_operations;
81 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -070082 inc_nlink(inode);
Joel Becker7063fbf2005-12-15 14:29:43 -080083 } else {
Fabian Frederick1d88aa42014-06-04 16:05:59 -070084 pr_debug("could not get root inode\n");
Joel Becker7063fbf2005-12-15 14:29:43 -080085 return -ENOMEM;
86 }
87
Al Viro48fde702012-01-08 22:15:13 -050088 root = d_make_root(inode);
Joel Becker7063fbf2005-12-15 14:29:43 -080089 if (!root) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -070090 pr_debug("%s: could not get root dentry!\n",__func__);
Joel Becker7063fbf2005-12-15 14:29:43 -080091 return -ENOMEM;
92 }
93 config_group_init(&configfs_root_group);
94 configfs_root_group.cg_item.ci_dentry = root;
95 root->d_fsdata = &configfs_root;
96 sb->s_root = root;
Al Virod463a0c2011-01-12 16:41:05 -050097 sb->s_d_op = &configfs_dentry_ops; /* the rest get that */
Joel Becker7063fbf2005-12-15 14:29:43 -080098 return 0;
99}
100
David Howells6bc62f22019-03-25 16:38:29 +0000101static int configfs_get_tree(struct fs_context *fc)
Joel Becker7063fbf2005-12-15 14:29:43 -0800102{
David Howells6bc62f22019-03-25 16:38:29 +0000103 return get_tree_single(fc, configfs_fill_super);
104}
105
106static const struct fs_context_operations configfs_context_ops = {
107 .get_tree = configfs_get_tree,
108};
109
110static int configfs_init_fs_context(struct fs_context *fc)
111{
112 fc->ops = &configfs_context_ops;
113 return 0;
Joel Becker7063fbf2005-12-15 14:29:43 -0800114}
115
116static struct file_system_type configfs_fs_type = {
117 .owner = THIS_MODULE,
118 .name = "configfs",
David Howells6bc62f22019-03-25 16:38:29 +0000119 .init_fs_context = configfs_init_fs_context,
Joel Becker7063fbf2005-12-15 14:29:43 -0800120 .kill_sb = kill_litter_super,
121};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800122MODULE_ALIAS_FS("configfs");
Joel Becker7063fbf2005-12-15 14:29:43 -0800123
Al Viro2a152ad2012-03-17 16:53:29 -0400124struct dentry *configfs_pin_fs(void)
Joel Becker7063fbf2005-12-15 14:29:43 -0800125{
Al Viro2a152ad2012-03-17 16:53:29 -0400126 int err = simple_pin_fs(&configfs_fs_type, &configfs_mount,
Joel Becker7063fbf2005-12-15 14:29:43 -0800127 &configfs_mnt_count);
Al Viro2a152ad2012-03-17 16:53:29 -0400128 return err ? ERR_PTR(err) : configfs_mount->mnt_root;
Joel Becker7063fbf2005-12-15 14:29:43 -0800129}
130
131void configfs_release_fs(void)
132{
133 simple_release_fs(&configfs_mount, &configfs_mnt_count);
134}
135
136
Joel Becker7063fbf2005-12-15 14:29:43 -0800137static int __init configfs_init(void)
138{
Joel Becker3d0f89b2006-01-25 13:31:07 -0800139 int err = -ENOMEM;
140
141 configfs_dir_cachep = kmem_cache_create("configfs_dir_cache",
142 sizeof(struct configfs_dirent),
Paul Mundt20c2df82007-07-20 10:11:58 +0900143 0, 0, NULL);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800144 if (!configfs_dir_cachep)
145 goto out;
Joel Becker7063fbf2005-12-15 14:29:43 -0800146
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500147 err = sysfs_create_mount_point(kernel_kobj, "config");
148 if (err)
Al Viro7c6455e2011-12-13 12:32:42 -0500149 goto out2;
Joel Becker7063fbf2005-12-15 14:29:43 -0800150
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100151 err = register_filesystem(&configfs_fs_type);
Al Viro7c6455e2011-12-13 12:32:42 -0500152 if (err)
153 goto out3;
154
Al Viro7c6455e2011-12-13 12:32:42 -0500155 return 0;
Al Viro7c6455e2011-12-13 12:32:42 -0500156out3:
Christoph Hellwigb4caecd2015-01-14 10:42:32 +0100157 pr_err("Unable to register filesystem!\n");
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500158 sysfs_remove_mount_point(kernel_kobj, "config");
Al Viro7c6455e2011-12-13 12:32:42 -0500159out2:
160 kmem_cache_destroy(configfs_dir_cachep);
161 configfs_dir_cachep = NULL;
Joel Becker3d0f89b2006-01-25 13:31:07 -0800162out:
Joel Becker7063fbf2005-12-15 14:29:43 -0800163 return err;
164}
165
166static void __exit configfs_exit(void)
167{
168 unregister_filesystem(&configfs_fs_type);
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500169 sysfs_remove_mount_point(kernel_kobj, "config");
Joel Becker3d0f89b2006-01-25 13:31:07 -0800170 kmem_cache_destroy(configfs_dir_cachep);
171 configfs_dir_cachep = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -0800172}
173
174MODULE_AUTHOR("Oracle");
175MODULE_LICENSE("GPL");
Joel Becker3d0f89b2006-01-25 13:31:07 -0800176MODULE_VERSION("0.0.2");
Joel Becker7063fbf2005-12-15 14:29:43 -0800177MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
178
Daniel Balutaf5b69772015-05-05 16:23:54 -0700179core_initcall(configfs_init);
Joel Becker7063fbf2005-12-15 14:29:43 -0800180module_exit(configfs_exit);