mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 09:21:00 +01:00

- pass vfsmnt param for cgroups A fix-user-audit.diff - nothing A fix-link-subset.diff - fix reporting of failed link subsets A apparmor-fix-lock-letter.diff - fix the reported lock letter in apparmorfs/matching - reverted audit request_mask back to requested_mask A apparmor-fix-sysctl-refcount.diff - fix a refcount leak in sysctl audit
137 lines
4.5 KiB
Diff
137 lines
4.5 KiB
Diff
From: Tony Jones <tonyj@suse.de>
|
|
Subject: Add struct vfsmount parameter to vfs_mkdir()
|
|
|
|
The vfsmount will be passed down to the LSM hook so that LSMs can compute
|
|
pathnames.
|
|
|
|
Signed-off-by: Tony Jones <tonyj@suse.de>
|
|
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
|
|
Signed-off-by: John Johansen <jjohansen@suse.de>
|
|
|
|
---
|
|
fs/ecryptfs/inode.c | 5 ++++-
|
|
fs/namei.c | 5 +++--
|
|
fs/nfsd/nfs4recover.c | 3 ++-
|
|
fs/nfsd/vfs.c | 8 +++++---
|
|
include/linux/fs.h | 2 +-
|
|
kernel/cgroup.c | 2 +-
|
|
6 files changed, 16 insertions(+), 9 deletions(-)
|
|
|
|
--- a/fs/ecryptfs/inode.c
|
|
+++ b/fs/ecryptfs/inode.c
|
|
@@ -488,11 +488,14 @@ static int ecryptfs_mkdir(struct inode *
|
|
{
|
|
int rc;
|
|
struct dentry *lower_dentry;
|
|
+ struct vfsmount *lower_mnt;
|
|
struct dentry *lower_dir_dentry;
|
|
|
|
lower_dentry = ecryptfs_dentry_to_lower(dentry);
|
|
+ lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry);
|
|
lower_dir_dentry = lock_parent(lower_dentry);
|
|
- rc = vfs_mkdir(lower_dir_dentry->d_inode, lower_dentry, mode);
|
|
+ rc = vfs_mkdir(lower_dir_dentry->d_inode, lower_dentry, lower_mnt,
|
|
+ mode);
|
|
if (rc || !lower_dentry->d_inode)
|
|
goto out;
|
|
rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0);
|
|
--- a/fs/namei.c
|
|
+++ b/fs/namei.c
|
|
@@ -1998,7 +1998,8 @@ asmlinkage long sys_mknod(const char __u
|
|
return sys_mknodat(AT_FDCWD, filename, mode, dev);
|
|
}
|
|
|
|
-int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
|
|
+int vfs_mkdir(struct inode *dir, struct dentry *dentry, struct vfsmount *mnt,
|
|
+ int mode)
|
|
{
|
|
int error = may_create(dir, dentry, NULL);
|
|
|
|
@@ -2042,7 +2043,7 @@ asmlinkage long sys_mkdirat(int dfd, con
|
|
|
|
if (!IS_POSIXACL(nd.dentry->d_inode))
|
|
mode &= ~current->fs->umask;
|
|
- error = vfs_mkdir(nd.dentry->d_inode, dentry, mode);
|
|
+ error = vfs_mkdir(nd.dentry->d_inode, dentry, nd.mnt, mode);
|
|
dput(dentry);
|
|
out_unlock:
|
|
mutex_unlock(&nd.dentry->d_inode->i_mutex);
|
|
--- a/fs/nfsd/nfs4recover.c
|
|
+++ b/fs/nfsd/nfs4recover.c
|
|
@@ -154,7 +154,8 @@ nfsd4_create_clid_dir(struct nfs4_client
|
|
dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n");
|
|
goto out_put;
|
|
}
|
|
- status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU);
|
|
+ status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, rec_dir.mnt,
|
|
+ S_IRWXU);
|
|
out_put:
|
|
dput(dentry);
|
|
out_unlock:
|
|
--- a/fs/nfsd/vfs.c
|
|
+++ b/fs/nfsd/vfs.c
|
|
@@ -1165,6 +1165,7 @@ nfsd_create(struct svc_rqst *rqstp, stru
|
|
int type, dev_t rdev, struct svc_fh *resfhp)
|
|
{
|
|
struct dentry *dentry, *dchild = NULL;
|
|
+ struct svc_export *exp;
|
|
struct inode *dirp;
|
|
__be32 err;
|
|
int host_err;
|
|
@@ -1181,6 +1182,7 @@ nfsd_create(struct svc_rqst *rqstp, stru
|
|
goto out;
|
|
|
|
dentry = fhp->fh_dentry;
|
|
+ exp = fhp->fh_export;
|
|
dirp = dentry->d_inode;
|
|
|
|
err = nfserr_notdir;
|
|
@@ -1197,7 +1199,7 @@ nfsd_create(struct svc_rqst *rqstp, stru
|
|
host_err = PTR_ERR(dchild);
|
|
if (IS_ERR(dchild))
|
|
goto out_nfserr;
|
|
- err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
|
|
+ err = fh_compose(resfhp, exp, dchild, fhp);
|
|
if (err)
|
|
goto out;
|
|
} else {
|
|
@@ -1236,7 +1238,7 @@ nfsd_create(struct svc_rqst *rqstp, stru
|
|
host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
|
|
break;
|
|
case S_IFDIR:
|
|
- host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
|
|
+ host_err = vfs_mkdir(dirp, dchild, exp->ex_mnt, iap->ia_mode);
|
|
break;
|
|
case S_IFCHR:
|
|
case S_IFBLK:
|
|
@@ -1251,7 +1253,7 @@ nfsd_create(struct svc_rqst *rqstp, stru
|
|
if (host_err < 0)
|
|
goto out_nfserr;
|
|
|
|
- if (EX_ISSYNC(fhp->fh_export)) {
|
|
+ if (EX_ISSYNC(exp)) {
|
|
err = nfserrno(nfsd_sync_dir(dentry));
|
|
write_inode_now(dchild->d_inode, 1);
|
|
}
|
|
--- a/include/linux/fs.h
|
|
+++ b/include/linux/fs.h
|
|
@@ -1068,7 +1068,7 @@ extern void unlock_super(struct super_bl
|
|
*/
|
|
extern int vfs_permission(struct nameidata *, int);
|
|
extern int vfs_create(struct inode *, struct dentry *, int, struct nameidata *);
|
|
-extern int vfs_mkdir(struct inode *, struct dentry *, int);
|
|
+extern int vfs_mkdir(struct inode *, struct dentry *, struct vfsmount *, int);
|
|
extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t);
|
|
extern int vfs_symlink(struct inode *, struct dentry *, const char *, int);
|
|
extern int vfs_link(struct dentry *, struct inode *, struct dentry *);
|
|
--- a/kernel/cgroup.c
|
|
+++ b/kernel/cgroup.c
|
|
@@ -2611,7 +2611,7 @@ int cgroup_clone(struct task_struct *tsk
|
|
}
|
|
|
|
/* Create the cgroup directory, which also creates the cgroup */
|
|
- ret = vfs_mkdir(inode, dentry, S_IFDIR | 0755);
|
|
+ ret = vfs_mkdir(inode, dentry, NULL, S_IFDIR | 0755);
|
|
child = __d_cgrp(dentry);
|
|
dput(dentry);
|
|
if (ret) {
|