Linux Audio

Check our new training course

Loading...
v3.1
  1/* -*- mode: c; c-basic-offset: 8; -*-
  2 * vim: noexpandtab sw=8 ts=8 sts=0:
  3 *
  4 * mount.c - operations for initializing and mounting configfs.
  5 *
  6 * This program is free software; you can redistribute it and/or
  7 * modify it under the terms of the GNU General Public
  8 * License as published by the Free Software Foundation; either
  9 * version 2 of the License, or (at your option) any later version.
 10 *
 11 * This program is distributed in the hope that it will be useful,
 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 14 * General Public License for more details.
 15 *
 16 * You should have received a copy of the GNU General Public
 17 * License along with this program; if not, write to the
 18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 19 * Boston, MA 021110-1307, USA.
 20 *
 21 * Based on sysfs:
 22 * 	sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
 23 *
 24 * configfs Copyright (C) 2005 Oracle.  All rights reserved.
 25 */
 26
 27#include <linux/fs.h>
 28#include <linux/module.h>
 29#include <linux/mount.h>
 
 30#include <linux/pagemap.h>
 31#include <linux/init.h>
 32#include <linux/slab.h>
 33
 34#include <linux/configfs.h>
 35#include "configfs_internal.h"
 36
 37/* Random magic number */
 38#define CONFIGFS_MAGIC 0x62656570
 39
 40struct vfsmount * configfs_mount = NULL;
 41struct super_block * configfs_sb = NULL;
 42struct kmem_cache *configfs_dir_cachep;
 43static int configfs_mnt_count = 0;
 44
 
 
 
 
 
 
 
 
 45static const struct super_operations configfs_ops = {
 46	.statfs		= simple_statfs,
 47	.drop_inode	= generic_delete_inode,
 
 48};
 49
 50static struct config_group configfs_root_group = {
 51	.cg_item = {
 52		.ci_namebuf	= "root",
 53		.ci_name	= configfs_root_group.cg_item.ci_namebuf,
 54	},
 55};
 56
 57int configfs_is_root(struct config_item *item)
 58{
 59	return item == &configfs_root_group.cg_item;
 60}
 61
 62static struct configfs_dirent configfs_root = {
 63	.s_sibling	= LIST_HEAD_INIT(configfs_root.s_sibling),
 64	.s_children	= LIST_HEAD_INIT(configfs_root.s_children),
 65	.s_element	= &configfs_root_group.cg_item,
 66	.s_type		= CONFIGFS_ROOT,
 67	.s_iattr	= NULL,
 68};
 69
 70static int configfs_fill_super(struct super_block *sb, void *data, int silent)
 71{
 72	struct inode *inode;
 73	struct dentry *root;
 74
 75	sb->s_blocksize = PAGE_CACHE_SIZE;
 76	sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
 77	sb->s_magic = CONFIGFS_MAGIC;
 78	sb->s_op = &configfs_ops;
 79	sb->s_time_gran = 1;
 80	configfs_sb = sb;
 81
 82	inode = configfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
 83				   &configfs_root);
 84	if (inode) {
 85		inode->i_op = &configfs_dir_inode_operations;
 86		inode->i_fop = &configfs_dir_operations;
 87		/* directory inodes start off with i_nlink == 2 (for "." entry) */
 88		inc_nlink(inode);
 89	} else {
 90		pr_debug("configfs: could not get root inode\n");
 91		return -ENOMEM;
 92	}
 93
 94	root = d_alloc_root(inode);
 95	if (!root) {
 96		pr_debug("%s: could not get root dentry!\n",__func__);
 97		iput(inode);
 98		return -ENOMEM;
 99	}
100	config_group_init(&configfs_root_group);
101	configfs_root_group.cg_item.ci_dentry = root;
102	root->d_fsdata = &configfs_root;
103	sb->s_root = root;
104	sb->s_d_op = &configfs_dentry_ops; /* the rest get that */
105	return 0;
106}
107
108static struct dentry *configfs_do_mount(struct file_system_type *fs_type,
109	int flags, const char *dev_name, void *data)
110{
111	return mount_single(fs_type, flags, data, configfs_fill_super);
 
 
 
 
 
 
 
 
 
 
112}
113
114static struct file_system_type configfs_fs_type = {
115	.owner		= THIS_MODULE,
116	.name		= "configfs",
117	.mount		= configfs_do_mount,
118	.kill_sb	= kill_litter_super,
119};
 
120
121int configfs_pin_fs(void)
122{
123	return simple_pin_fs(&configfs_fs_type, &configfs_mount,
124			     &configfs_mnt_count);
 
125}
126
127void configfs_release_fs(void)
128{
129	simple_release_fs(&configfs_mount, &configfs_mnt_count);
130}
131
132
133static struct kobject *config_kobj;
134
135static int __init configfs_init(void)
136{
137	int err = -ENOMEM;
138
139	configfs_dir_cachep = kmem_cache_create("configfs_dir_cache",
140						sizeof(struct configfs_dirent),
141						0, 0, NULL);
142	if (!configfs_dir_cachep)
143		goto out;
144
145	config_kobj = kobject_create_and_add("config", kernel_kobj);
146	if (!config_kobj) {
147		kmem_cache_destroy(configfs_dir_cachep);
148		configfs_dir_cachep = NULL;
149		goto out;
150	}
151
152	err = register_filesystem(&configfs_fs_type);
153	if (err) {
154		printk(KERN_ERR "configfs: Unable to register filesystem!\n");
155		kobject_put(config_kobj);
156		kmem_cache_destroy(configfs_dir_cachep);
157		configfs_dir_cachep = NULL;
158		goto out;
159	}
160
161	err = configfs_inode_init();
162	if (err) {
163		unregister_filesystem(&configfs_fs_type);
164		kobject_put(config_kobj);
165		kmem_cache_destroy(configfs_dir_cachep);
166		configfs_dir_cachep = NULL;
167	}
168out:
169	return err;
170}
171
172static void __exit configfs_exit(void)
173{
174	unregister_filesystem(&configfs_fs_type);
175	kobject_put(config_kobj);
176	kmem_cache_destroy(configfs_dir_cachep);
177	configfs_dir_cachep = NULL;
178	configfs_inode_exit();
179}
180
181MODULE_AUTHOR("Oracle");
182MODULE_LICENSE("GPL");
183MODULE_VERSION("0.0.2");
184MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
185
186module_init(configfs_init);
187module_exit(configfs_exit);
v6.8
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
 
  3 * mount.c - operations for initializing and mounting configfs.
  4 *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  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>
 14#include <linux/fs_context.h>
 15#include <linux/pagemap.h>
 16#include <linux/init.h>
 17#include <linux/slab.h>
 18
 19#include <linux/configfs.h>
 20#include "configfs_internal.h"
 21
 22/* Random magic number */
 23#define CONFIGFS_MAGIC 0x62656570
 24
 25static struct vfsmount *configfs_mount = NULL;
 
 26struct kmem_cache *configfs_dir_cachep;
 27static int configfs_mnt_count = 0;
 28
 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
 37static const struct super_operations configfs_ops = {
 38	.statfs		= simple_statfs,
 39	.drop_inode	= generic_delete_inode,
 40	.free_inode	= configfs_free_inode,
 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,
 60	.s_iattr	= NULL,
 61};
 62
 63static int configfs_fill_super(struct super_block *sb, struct fs_context *fc)
 64{
 65	struct inode *inode;
 66	struct dentry *root;
 67
 68	sb->s_blocksize = PAGE_SIZE;
 69	sb->s_blocksize_bits = PAGE_SHIFT;
 70	sb->s_magic = CONFIGFS_MAGIC;
 71	sb->s_op = &configfs_ops;
 72	sb->s_time_gran = 1;
 
 73
 74	inode = configfs_new_inode(S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
 75				   &configfs_root, sb);
 76	if (inode) {
 77		inode->i_op = &configfs_root_inode_operations;
 78		inode->i_fop = &configfs_dir_operations;
 79		/* directory inodes start off with i_nlink == 2 (for "." entry) */
 80		inc_nlink(inode);
 81	} else {
 82		pr_debug("could not get root inode\n");
 83		return -ENOMEM;
 84	}
 85
 86	root = d_make_root(inode);
 87	if (!root) {
 88		pr_debug("%s: could not get root dentry!\n",__func__);
 
 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;
 95	sb->s_d_op = &configfs_dentry_ops; /* the rest get that */
 96	return 0;
 97}
 98
 99static int configfs_get_tree(struct fs_context *fc)
 
100{
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;
112}
113
114static struct file_system_type configfs_fs_type = {
115	.owner		= THIS_MODULE,
116	.name		= "configfs",
117	.init_fs_context = configfs_init_fs_context,
118	.kill_sb	= kill_litter_super,
119};
120MODULE_ALIAS_FS("configfs");
121
122struct dentry *configfs_pin_fs(void)
123{
124	int err = simple_pin_fs(&configfs_fs_type, &configfs_mount,
125			     &configfs_mnt_count);
126	return err ? ERR_PTR(err) : configfs_mount->mnt_root;
127}
128
129void configfs_release_fs(void)
130{
131	simple_release_fs(&configfs_mount, &configfs_mnt_count);
132}
133
134
 
 
135static int __init configfs_init(void)
136{
137	int err = -ENOMEM;
138
139	configfs_dir_cachep = kmem_cache_create("configfs_dir_cache",
140						sizeof(struct configfs_dirent),
141						0, 0, NULL);
142	if (!configfs_dir_cachep)
143		goto out;
144
145	err = sysfs_create_mount_point(kernel_kobj, "config");
146	if (err)
147		goto out2;
 
 
 
148
149	err = register_filesystem(&configfs_fs_type);
150	if (err)
151		goto out3;
 
 
 
 
 
152
153	return 0;
154out3:
155	pr_err("Unable to register filesystem!\n");
156	sysfs_remove_mount_point(kernel_kobj, "config");
157out2:
158	kmem_cache_destroy(configfs_dir_cachep);
159	configfs_dir_cachep = NULL;
160out:
161	return err;
162}
163
164static void __exit configfs_exit(void)
165{
166	unregister_filesystem(&configfs_fs_type);
167	sysfs_remove_mount_point(kernel_kobj, "config");
168	kmem_cache_destroy(configfs_dir_cachep);
169	configfs_dir_cachep = NULL;
 
170}
171
172MODULE_AUTHOR("Oracle");
173MODULE_LICENSE("GPL");
174MODULE_VERSION("0.0.2");
175MODULE_DESCRIPTION("Simple RAM filesystem for user driven kernel subsystem configuration.");
176
177core_initcall(configfs_init);
178module_exit(configfs_exit);