mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 17:25:38 +00:00
ramfs: Initialize security of in-memory inodes
Add a call security_inode_init_security() after ramfs_get_inode(), to let LSMs initialize the inode security field. Skip ramfs_fill_super(), as the initialization is done through the sb_set_mnt_opts hook. Calling security_inode_init_security() call inside ramfs_get_inode() is not possible since, for CONFIG_SHMEM=n, tmpfs also calls the former after the latter. Pass NULL as initxattrs() callback to security_inode_init_security(), since the purpose of the call is only to initialize the in-memory inodes. Cc: Hugh Dickins <hughd@google.com> Acked-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Roberto Sassu <roberto.sassu@huawei.com> Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
This commit is contained in:
parent
e63d86b8b7
commit
f0816d4332
@ -102,11 +102,20 @@ ramfs_mknod(struct mnt_idmap *idmap, struct inode *dir,
|
|||||||
int error = -ENOSPC;
|
int error = -ENOSPC;
|
||||||
|
|
||||||
if (inode) {
|
if (inode) {
|
||||||
|
error = security_inode_init_security(inode, dir,
|
||||||
|
&dentry->d_name, NULL,
|
||||||
|
NULL);
|
||||||
|
if (error) {
|
||||||
|
iput(inode);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
d_instantiate(dentry, inode);
|
d_instantiate(dentry, inode);
|
||||||
dget(dentry); /* Extra count - pin the dentry in core */
|
dget(dentry); /* Extra count - pin the dentry in core */
|
||||||
error = 0;
|
error = 0;
|
||||||
inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
|
inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
|
||||||
}
|
}
|
||||||
|
out:
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -134,6 +143,15 @@ static int ramfs_symlink(struct mnt_idmap *idmap, struct inode *dir,
|
|||||||
inode = ramfs_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0);
|
inode = ramfs_get_inode(dir->i_sb, dir, S_IFLNK|S_IRWXUGO, 0);
|
||||||
if (inode) {
|
if (inode) {
|
||||||
int l = strlen(symname)+1;
|
int l = strlen(symname)+1;
|
||||||
|
|
||||||
|
error = security_inode_init_security(inode, dir,
|
||||||
|
&dentry->d_name, NULL,
|
||||||
|
NULL);
|
||||||
|
if (error) {
|
||||||
|
iput(inode);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
error = page_symlink(inode, symname, l);
|
error = page_symlink(inode, symname, l);
|
||||||
if (!error) {
|
if (!error) {
|
||||||
d_instantiate(dentry, inode);
|
d_instantiate(dentry, inode);
|
||||||
@ -143,6 +161,7 @@ static int ramfs_symlink(struct mnt_idmap *idmap, struct inode *dir,
|
|||||||
} else
|
} else
|
||||||
iput(inode);
|
iput(inode);
|
||||||
}
|
}
|
||||||
|
out:
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,12 +169,23 @@ static int ramfs_tmpfile(struct mnt_idmap *idmap,
|
|||||||
struct inode *dir, struct file *file, umode_t mode)
|
struct inode *dir, struct file *file, umode_t mode)
|
||||||
{
|
{
|
||||||
struct inode *inode;
|
struct inode *inode;
|
||||||
|
int error;
|
||||||
|
|
||||||
inode = ramfs_get_inode(dir->i_sb, dir, mode, 0);
|
inode = ramfs_get_inode(dir->i_sb, dir, mode, 0);
|
||||||
if (!inode)
|
if (!inode)
|
||||||
return -ENOSPC;
|
return -ENOSPC;
|
||||||
|
|
||||||
|
error = security_inode_init_security(inode, dir,
|
||||||
|
&file_dentry(file)->d_name, NULL,
|
||||||
|
NULL);
|
||||||
|
if (error) {
|
||||||
|
iput(inode);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
d_tmpfile(file, inode);
|
d_tmpfile(file, inode);
|
||||||
return finish_open_simple(file, 0);
|
out:
|
||||||
|
return finish_open_simple(file, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct inode_operations ramfs_dir_inode_operations = {
|
static const struct inode_operations ramfs_dir_inode_operations = {
|
||||||
|
Loading…
Reference in New Issue
Block a user