Skip to content

Commit

Permalink
vfs: Convert selinuxfs to use the new mount API
Browse files Browse the repository at this point in the history
Convert the selinuxfs filesystem to the new internal mount API as the old
one will be obsoleted and removed.  This allows greater flexibility in
communication of mount parameters between userspace, the VFS and the
filesystem.

See Documentation/filesystems/mount_api.txt for more information.

Signed-off-by: David Howells <[email protected]>
cc: Paul Moore <[email protected]>
cc: Stephen Smalley <[email protected]>
cc: Eric Paris <[email protected]>
cc: [email protected]
cc: [email protected]
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
dhowells authored and Al Viro committed Jul 5, 2019
1 parent 5c86d7e commit 920f50b
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions security/selinux/selinuxfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <linux/fs.h>
#include <linux/fs_context.h>
#include <linux/mount.h>
#include <linux/mutex.h>
#include <linux/init.h>
Expand Down Expand Up @@ -1893,7 +1894,7 @@ static struct dentry *sel_make_dir(struct dentry *dir, const char *name,

#define NULL_FILE_NAME "null"

static int sel_fill_super(struct super_block *sb, void *data, int silent)
static int sel_fill_super(struct super_block *sb, struct fs_context *fc)
{
struct selinux_fs_info *fsi;
int ret;
Expand Down Expand Up @@ -2009,10 +2010,19 @@ static int sel_fill_super(struct super_block *sb, void *data, int silent)
return ret;
}

static struct dentry *sel_mount(struct file_system_type *fs_type,
int flags, const char *dev_name, void *data)
static int sel_get_tree(struct fs_context *fc)
{
return mount_single(fs_type, flags, data, sel_fill_super);
return get_tree_single(fc, sel_fill_super);
}

static const struct fs_context_operations sel_context_ops = {
.get_tree = sel_get_tree,
};

static int sel_init_fs_context(struct fs_context *fc)
{
fc->ops = &sel_context_ops;
return 0;
}

static void sel_kill_sb(struct super_block *sb)
Expand All @@ -2023,7 +2033,7 @@ static void sel_kill_sb(struct super_block *sb)

static struct file_system_type sel_fs_type = {
.name = "selinuxfs",
.mount = sel_mount,
.init_fs_context = sel_init_fs_context,
.kill_sb = sel_kill_sb,
};

Expand Down

0 comments on commit 920f50b

Please sign in to comment.