blob: 70f00064016d467d54651e7bce03d21644d31d32 [file] [log] [blame]
Greg KHb67dbf92005-07-07 14:37:53 -07001/*
2 * inode.c - securityfs
3 *
4 * Copyright (C) 2005 Greg Kroah-Hartman <gregkh@suse.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
9 *
10 * Based on fs/debugfs/inode.c which had the following copyright notice:
11 * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
12 * Copyright (C) 2004 IBM Inc.
13 */
14
15/* #define DEBUG */
Paul Gortmaker1072bd62018-12-09 15:36:31 -050016#include <linux/sysfs.h>
17#include <linux/kobject.h>
Greg KHb67dbf92005-07-07 14:37:53 -070018#include <linux/fs.h>
David Howells5c86d7e2019-03-25 16:38:30 +000019#include <linux/fs_context.h>
Greg KHb67dbf92005-07-07 14:37:53 -070020#include <linux/mount.h>
21#include <linux/pagemap.h>
22#include <linux/init.h>
23#include <linux/namei.h>
24#include <linux/security.h>
Casey Schauflerd69dece52017-01-18 17:09:05 -080025#include <linux/lsm_hooks.h>
Mimi Zohar92562922008-10-07 14:00:12 -040026#include <linux/magic.h>
Greg KHb67dbf92005-07-07 14:37:53 -070027
28static struct vfsmount *mount;
29static int mount_count;
30
Al Virof614ee12019-04-15 22:34:28 -040031static void securityfs_free_inode(struct inode *inode)
John Johansen6623ec72017-05-07 05:53:37 -070032{
John Johansen6623ec72017-05-07 05:53:37 -070033 if (S_ISLNK(inode->i_mode))
34 kfree(inode->i_link);
Al Viro46c87442019-04-10 14:03:45 -040035 free_inode_nonrcu(inode);
36}
37
John Johansen6623ec72017-05-07 05:53:37 -070038static const struct super_operations securityfs_super_operations = {
39 .statfs = simple_statfs,
Al Virof614ee12019-04-15 22:34:28 -040040 .free_inode = securityfs_free_inode,
John Johansen6623ec72017-05-07 05:53:37 -070041};
42
David Howells5c86d7e2019-03-25 16:38:30 +000043static int securityfs_fill_super(struct super_block *sb, struct fs_context *fc)
Greg KHb67dbf92005-07-07 14:37:53 -070044{
Eric Biggerscda37122017-03-25 21:15:37 -070045 static const struct tree_descr files[] = {{""}};
John Johansen6623ec72017-05-07 05:53:37 -070046 int error;
Greg KHb67dbf92005-07-07 14:37:53 -070047
John Johansen6623ec72017-05-07 05:53:37 -070048 error = simple_fill_super(sb, SECURITYFS_MAGIC, files);
49 if (error)
50 return error;
51
52 sb->s_op = &securityfs_super_operations;
53
54 return 0;
Greg KHb67dbf92005-07-07 14:37:53 -070055}
56
David Howells5c86d7e2019-03-25 16:38:30 +000057static int securityfs_get_tree(struct fs_context *fc)
Greg KHb67dbf92005-07-07 14:37:53 -070058{
David Howells5c86d7e2019-03-25 16:38:30 +000059 return get_tree_single(fc, securityfs_fill_super);
60}
61
62static const struct fs_context_operations securityfs_context_ops = {
63 .get_tree = securityfs_get_tree,
64};
65
66static int securityfs_init_fs_context(struct fs_context *fc)
67{
68 fc->ops = &securityfs_context_ops;
69 return 0;
Greg KHb67dbf92005-07-07 14:37:53 -070070}
71
72static struct file_system_type fs_type = {
73 .owner = THIS_MODULE,
74 .name = "securityfs",
David Howells5c86d7e2019-03-25 16:38:30 +000075 .init_fs_context = securityfs_init_fs_context,
Greg KHb67dbf92005-07-07 14:37:53 -070076 .kill_sb = kill_litter_super,
77};
78
Greg KHb67dbf92005-07-07 14:37:53 -070079/**
John Johansen6623ec72017-05-07 05:53:37 -070080 * securityfs_create_dentry - create a dentry in the securityfs filesystem
Greg KHb67dbf92005-07-07 14:37:53 -070081 *
82 * @name: a pointer to a string containing the name of the file to create.
83 * @mode: the permission that the file should have
84 * @parent: a pointer to the parent dentry for this file. This should be a
Randy Dunlap3f23d812008-08-17 21:44:22 -070085 * directory dentry if set. If this parameter is %NULL, then the
Greg KHb67dbf92005-07-07 14:37:53 -070086 * file will be created in the root of the securityfs filesystem.
87 * @data: a pointer to something that the caller will want to get to later
Theodore Ts'o8e18e292006-09-27 01:50:46 -070088 * on. The inode.i_private pointer will point to this value on
Greg KHb67dbf92005-07-07 14:37:53 -070089 * the open() call.
90 * @fops: a pointer to a struct file_operations that should be used for
91 * this file.
John Johansen6623ec72017-05-07 05:53:37 -070092 * @iops: a point to a struct of inode_operations that should be used for
93 * this file/dir
Greg KHb67dbf92005-07-07 14:37:53 -070094 *
John Johansen6623ec72017-05-07 05:53:37 -070095 * This is the basic "create a file/dir/symlink" function for
96 * securityfs. It allows for a wide range of flexibility in creating
97 * a file, or a directory (if you want to create a directory, the
98 * securityfs_create_dir() function is recommended to be used
99 * instead).
Greg KHb67dbf92005-07-07 14:37:53 -0700100 *
Randy Dunlap3f23d812008-08-17 21:44:22 -0700101 * This function returns a pointer to a dentry if it succeeds. This
John Johansen6623ec72017-05-07 05:53:37 -0700102 * pointer must be passed to the securityfs_remove() function when the
103 * file is to be removed (no automatic cleanup happens if your module
104 * is unloaded, you are responsible here). If an error occurs, the
105 * function will return the error value (via ERR_PTR).
Greg KHb67dbf92005-07-07 14:37:53 -0700106 *
Randy Dunlap3f23d812008-08-17 21:44:22 -0700107 * If securityfs is not enabled in the kernel, the value %-ENODEV is
Serge E. Hallynfaa3aad2009-02-02 15:07:33 -0800108 * returned.
Greg KHb67dbf92005-07-07 14:37:53 -0700109 */
John Johansen6623ec72017-05-07 05:53:37 -0700110static struct dentry *securityfs_create_dentry(const char *name, umode_t mode,
111 struct dentry *parent, void *data,
112 const struct file_operations *fops,
113 const struct inode_operations *iops)
Greg KHb67dbf92005-07-07 14:37:53 -0700114{
Al Viro3e25eb92012-01-10 10:20:35 -0500115 struct dentry *dentry;
Al Viro3e25eb92012-01-10 10:20:35 -0500116 struct inode *dir, *inode;
Greg KHb67dbf92005-07-07 14:37:53 -0700117 int error;
118
John Johansen6623ec72017-05-07 05:53:37 -0700119 if (!(mode & S_IFMT))
Al Viro3e25eb92012-01-10 10:20:35 -0500120 mode = (mode & S_IALLUGO) | S_IFREG;
Al Viro3e25eb92012-01-10 10:20:35 -0500121
Greg KHb67dbf92005-07-07 14:37:53 -0700122 pr_debug("securityfs: creating file '%s'\n",name);
123
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400124 error = simple_pin_fs(&fs_type, &mount, &mount_count);
Al Viro3e25eb92012-01-10 10:20:35 -0500125 if (error)
126 return ERR_PTR(error);
Greg KHb67dbf92005-07-07 14:37:53 -0700127
Al Viro3e25eb92012-01-10 10:20:35 -0500128 if (!parent)
129 parent = mount->mnt_root;
130
David Howellsce0b16d2015-02-19 10:47:02 +0000131 dir = d_inode(parent);
Al Viro3e25eb92012-01-10 10:20:35 -0500132
Al Viro59551022016-01-22 15:40:57 -0500133 inode_lock(dir);
Al Viro3e25eb92012-01-10 10:20:35 -0500134 dentry = lookup_one_len(name, parent, strlen(name));
135 if (IS_ERR(dentry))
136 goto out;
Greg KHb67dbf92005-07-07 14:37:53 -0700137
David Howellsce0b16d2015-02-19 10:47:02 +0000138 if (d_really_is_positive(dentry)) {
Al Viro3e25eb92012-01-10 10:20:35 -0500139 error = -EEXIST;
140 goto out1;
Greg KHb67dbf92005-07-07 14:37:53 -0700141 }
Al Viro3e25eb92012-01-10 10:20:35 -0500142
143 inode = new_inode(dir->i_sb);
144 if (!inode) {
145 error = -ENOMEM;
146 goto out1;
147 }
148
149 inode->i_ino = get_next_ino();
150 inode->i_mode = mode;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700151 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Al Viro3e25eb92012-01-10 10:20:35 -0500152 inode->i_private = data;
John Johansen6623ec72017-05-07 05:53:37 -0700153 if (S_ISDIR(mode)) {
Al Viro3e25eb92012-01-10 10:20:35 -0500154 inode->i_op = &simple_dir_inode_operations;
155 inode->i_fop = &simple_dir_operations;
156 inc_nlink(inode);
157 inc_nlink(dir);
John Johansen6623ec72017-05-07 05:53:37 -0700158 } else if (S_ISLNK(mode)) {
159 inode->i_op = iops ? iops : &simple_symlink_inode_operations;
160 inode->i_link = data;
Al Viro3e25eb92012-01-10 10:20:35 -0500161 } else {
162 inode->i_fop = fops;
163 }
164 d_instantiate(dentry, inode);
165 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -0500166 inode_unlock(dir);
Al Viro3e25eb92012-01-10 10:20:35 -0500167 return dentry;
168
169out1:
170 dput(dentry);
171 dentry = ERR_PTR(error);
172out:
Al Viro59551022016-01-22 15:40:57 -0500173 inode_unlock(dir);
Al Viro3e25eb92012-01-10 10:20:35 -0500174 simple_release_fs(&mount, &mount_count);
Greg KHb67dbf92005-07-07 14:37:53 -0700175 return dentry;
176}
John Johansen6623ec72017-05-07 05:53:37 -0700177
178/**
179 * securityfs_create_file - create a file in the securityfs filesystem
180 *
181 * @name: a pointer to a string containing the name of the file to create.
182 * @mode: the permission that the file should have
183 * @parent: a pointer to the parent dentry for this file. This should be a
184 * directory dentry if set. If this parameter is %NULL, then the
185 * file will be created in the root of the securityfs filesystem.
186 * @data: a pointer to something that the caller will want to get to later
187 * on. The inode.i_private pointer will point to this value on
188 * the open() call.
189 * @fops: a pointer to a struct file_operations that should be used for
190 * this file.
191 *
192 * This function creates a file in securityfs with the given @name.
193 *
194 * This function returns a pointer to a dentry if it succeeds. This
195 * pointer must be passed to the securityfs_remove() function when the file is
196 * to be removed (no automatic cleanup happens if your module is unloaded,
197 * you are responsible here). If an error occurs, the function will return
198 * the error value (via ERR_PTR).
199 *
200 * If securityfs is not enabled in the kernel, the value %-ENODEV is
201 * returned.
202 */
203struct dentry *securityfs_create_file(const char *name, umode_t mode,
204 struct dentry *parent, void *data,
205 const struct file_operations *fops)
206{
207 return securityfs_create_dentry(name, mode, parent, data, fops, NULL);
208}
Greg KHb67dbf92005-07-07 14:37:53 -0700209EXPORT_SYMBOL_GPL(securityfs_create_file);
210
211/**
212 * securityfs_create_dir - create a directory in the securityfs filesystem
213 *
214 * @name: a pointer to a string containing the name of the directory to
215 * create.
216 * @parent: a pointer to the parent dentry for this file. This should be a
Randy Dunlap3f23d812008-08-17 21:44:22 -0700217 * directory dentry if set. If this parameter is %NULL, then the
Greg KHb67dbf92005-07-07 14:37:53 -0700218 * directory will be created in the root of the securityfs filesystem.
219 *
Randy Dunlap3f23d812008-08-17 21:44:22 -0700220 * This function creates a directory in securityfs with the given @name.
Greg KHb67dbf92005-07-07 14:37:53 -0700221 *
Randy Dunlap3f23d812008-08-17 21:44:22 -0700222 * This function returns a pointer to a dentry if it succeeds. This
Greg KHb67dbf92005-07-07 14:37:53 -0700223 * pointer must be passed to the securityfs_remove() function when the file is
224 * to be removed (no automatic cleanup happens if your module is unloaded,
Laurent Georget1b460652016-07-13 08:58:40 +0200225 * you are responsible here). If an error occurs, the function will return
226 * the error value (via ERR_PTR).
Greg KHb67dbf92005-07-07 14:37:53 -0700227 *
Randy Dunlap3f23d812008-08-17 21:44:22 -0700228 * If securityfs is not enabled in the kernel, the value %-ENODEV is
Laurent Georget1b460652016-07-13 08:58:40 +0200229 * returned.
Greg KHb67dbf92005-07-07 14:37:53 -0700230 */
231struct dentry *securityfs_create_dir(const char *name, struct dentry *parent)
232{
John Johansen6623ec72017-05-07 05:53:37 -0700233 return securityfs_create_file(name, S_IFDIR | 0755, parent, NULL, NULL);
Greg KHb67dbf92005-07-07 14:37:53 -0700234}
235EXPORT_SYMBOL_GPL(securityfs_create_dir);
236
237/**
John Johansen6623ec72017-05-07 05:53:37 -0700238 * securityfs_create_symlink - create a symlink in the securityfs filesystem
239 *
240 * @name: a pointer to a string containing the name of the symlink to
241 * create.
242 * @parent: a pointer to the parent dentry for the symlink. This should be a
243 * directory dentry if set. If this parameter is %NULL, then the
244 * directory will be created in the root of the securityfs filesystem.
245 * @target: a pointer to a string containing the name of the symlink's target.
246 * If this parameter is %NULL, then the @iops parameter needs to be
247 * setup to handle .readlink and .get_link inode_operations.
248 * @iops: a pointer to the struct inode_operations to use for the symlink. If
249 * this parameter is %NULL, then the default simple_symlink_inode
250 * operations will be used.
251 *
252 * This function creates a symlink in securityfs with the given @name.
253 *
254 * This function returns a pointer to a dentry if it succeeds. This
255 * pointer must be passed to the securityfs_remove() function when the file is
256 * to be removed (no automatic cleanup happens if your module is unloaded,
257 * you are responsible here). If an error occurs, the function will return
258 * the error value (via ERR_PTR).
259 *
260 * If securityfs is not enabled in the kernel, the value %-ENODEV is
261 * returned.
262 */
263struct dentry *securityfs_create_symlink(const char *name,
264 struct dentry *parent,
265 const char *target,
266 const struct inode_operations *iops)
267{
268 struct dentry *dent;
269 char *link = NULL;
270
271 if (target) {
272 link = kstrdup(target, GFP_KERNEL);
273 if (!link)
274 return ERR_PTR(-ENOMEM);
275 }
276 dent = securityfs_create_dentry(name, S_IFLNK | 0444, parent,
277 link, NULL, iops);
278 if (IS_ERR(dent))
279 kfree(link);
280
281 return dent;
282}
283EXPORT_SYMBOL_GPL(securityfs_create_symlink);
284
285/**
Greg KHb67dbf92005-07-07 14:37:53 -0700286 * securityfs_remove - removes a file or directory from the securityfs filesystem
287 *
Randy Dunlap3f23d812008-08-17 21:44:22 -0700288 * @dentry: a pointer to a the dentry of the file or directory to be removed.
Greg KHb67dbf92005-07-07 14:37:53 -0700289 *
290 * This function removes a file or directory in securityfs that was previously
291 * created with a call to another securityfs function (like
292 * securityfs_create_file() or variants thereof.)
293 *
294 * This function is required to be called in order for the file to be
Randy Dunlap3f23d812008-08-17 21:44:22 -0700295 * removed. No automatic cleanup of files will happen when a module is
296 * removed; you are responsible here.
Greg KHb67dbf92005-07-07 14:37:53 -0700297 */
298void securityfs_remove(struct dentry *dentry)
299{
Al Viro4093d302016-05-29 14:54:04 -0400300 struct inode *dir;
Greg KHb67dbf92005-07-07 14:37:53 -0700301
Eric Parisd93e4c92009-05-11 20:47:15 -0400302 if (!dentry || IS_ERR(dentry))
Greg KHb67dbf92005-07-07 14:37:53 -0700303 return;
304
Al Viro4093d302016-05-29 14:54:04 -0400305 dir = d_inode(dentry->d_parent);
306 inode_lock(dir);
Al Virodc3f4192015-05-18 10:10:34 -0400307 if (simple_positive(dentry)) {
308 if (d_is_dir(dentry))
Al Viro4093d302016-05-29 14:54:04 -0400309 simple_rmdir(dir, dentry);
Al Virodc3f4192015-05-18 10:10:34 -0400310 else
Al Viro4093d302016-05-29 14:54:04 -0400311 simple_unlink(dir, dentry);
Al Virodc3f4192015-05-18 10:10:34 -0400312 dput(dentry);
Greg KHb67dbf92005-07-07 14:37:53 -0700313 }
Al Viro4093d302016-05-29 14:54:04 -0400314 inode_unlock(dir);
Greg KHb67dbf92005-07-07 14:37:53 -0700315 simple_release_fs(&mount, &mount_count);
316}
317EXPORT_SYMBOL_GPL(securityfs_remove);
318
Casey Schauflerd69dece52017-01-18 17:09:05 -0800319#ifdef CONFIG_SECURITY
320static struct dentry *lsm_dentry;
321static ssize_t lsm_read(struct file *filp, char __user *buf, size_t count,
322 loff_t *ppos)
323{
324 return simple_read_from_buffer(buf, count, ppos, lsm_names,
325 strlen(lsm_names));
326}
327
328static const struct file_operations lsm_ops = {
329 .read = lsm_read,
330 .llseek = generic_file_llseek,
331};
332#endif
333
Greg KHb67dbf92005-07-07 14:37:53 -0700334static int __init securityfs_init(void)
335{
336 int retval;
337
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500338 retval = sysfs_create_mount_point(kernel_kobj, "security");
339 if (retval)
340 return retval;
Greg KHb67dbf92005-07-07 14:37:53 -0700341
342 retval = register_filesystem(&fs_type);
Casey Schauflerd69dece52017-01-18 17:09:05 -0800343 if (retval) {
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500344 sysfs_remove_mount_point(kernel_kobj, "security");
Casey Schauflerd69dece52017-01-18 17:09:05 -0800345 return retval;
346 }
347#ifdef CONFIG_SECURITY
348 lsm_dentry = securityfs_create_file("lsm", 0444, NULL, NULL,
349 &lsm_ops);
350#endif
351 return 0;
Greg KHb67dbf92005-07-07 14:37:53 -0700352}
Greg KHb67dbf92005-07-07 14:37:53 -0700353core_initcall(securityfs_init);