mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
86 lines
2.8 KiB
Diff
86 lines
2.8 KiB
Diff
From: Andreas Gruenbacher <agruen@suse.de>
|
|
Subject: Add d_namespace_path() to compute namespace relative pathnames
|
|
|
|
In AppArmor, we are interested in pathnames relative to the namespace root.
|
|
This is the same as d_path() except for the root where the search ends. Add
|
|
a function for computing the namespace-relative path.
|
|
|
|
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
|
|
Reviewed-by: John Johansen <jjohansen@suse.de>
|
|
|
|
---
|
|
fs/dcache.c | 6 +++---
|
|
fs/namespace.c | 27 +++++++++++++++++++++++++++
|
|
include/linux/dcache.h | 2 ++
|
|
include/linux/mount.h | 2 ++
|
|
4 files changed, 34 insertions(+), 3 deletions(-)
|
|
|
|
--- a/fs/dcache.c
|
|
+++ b/fs/dcache.c
|
|
@@ -1779,9 +1779,9 @@ shouldnt_be_hashed:
|
|
*
|
|
* Returns the buffer or an error code.
|
|
*/
|
|
-static char *__d_path(struct dentry *dentry, struct vfsmount *vfsmnt,
|
|
- struct dentry *root, struct vfsmount *rootmnt,
|
|
- char *buffer, int buflen, int fail_deleted)
|
|
+char *__d_path(struct dentry *dentry, struct vfsmount *vfsmnt,
|
|
+ struct dentry *root, struct vfsmount *rootmnt,
|
|
+ char *buffer, int buflen, int fail_deleted)
|
|
{
|
|
int namelen, is_slash, vfsmount_locked = 0;
|
|
|
|
--- a/fs/namespace.c
|
|
+++ b/fs/namespace.c
|
|
@@ -1868,3 +1868,30 @@ void __put_mnt_ns(struct mnt_namespace *
|
|
release_mounts(&umount_list);
|
|
kfree(ns);
|
|
}
|
|
+
|
|
+char *d_namespace_path(struct dentry *dentry, struct vfsmount *vfsmnt,
|
|
+ char *buf, int buflen)
|
|
+{
|
|
+ struct vfsmount *rootmnt, *nsrootmnt = NULL;
|
|
+ struct dentry *root = NULL;
|
|
+ char *res;
|
|
+
|
|
+ read_lock(¤t->fs->lock);
|
|
+ rootmnt = mntget(current->fs->rootmnt);
|
|
+ read_unlock(¤t->fs->lock);
|
|
+ spin_lock(&vfsmount_lock);
|
|
+ if (rootmnt->mnt_ns)
|
|
+ nsrootmnt = mntget(rootmnt->mnt_ns->root);
|
|
+ spin_unlock(&vfsmount_lock);
|
|
+ mntput(rootmnt);
|
|
+ if (nsrootmnt)
|
|
+ root = dget(nsrootmnt->mnt_root);
|
|
+ res = __d_path(dentry, vfsmnt, root, nsrootmnt, buf, buflen, 1);
|
|
+ dput(root);
|
|
+ mntput(nsrootmnt);
|
|
+ /* Prevent empty path for lazily unmounted filesystems. */
|
|
+ if (!IS_ERR(res) && *res == '\0')
|
|
+ *--res = '.';
|
|
+ return res;
|
|
+}
|
|
+EXPORT_SYMBOL(d_namespace_path);
|
|
--- a/include/linux/dcache.h
|
|
+++ b/include/linux/dcache.h
|
|
@@ -299,6 +299,8 @@ extern int d_validate(struct dentry *, s
|
|
*/
|
|
extern char *dynamic_dname(struct dentry *, char *, int, const char *, ...);
|
|
|
|
+extern char *__d_path(struct dentry *, struct vfsmount *, struct dentry *,
|
|
+ struct vfsmount *, char *, int, int);
|
|
extern char * d_path(struct dentry *, struct vfsmount *, char *, int);
|
|
|
|
/* Allocation counts.. */
|
|
--- a/include/linux/mount.h
|
|
+++ b/include/linux/mount.h
|
|
@@ -103,5 +103,7 @@ extern void shrink_submounts(struct vfsm
|
|
extern spinlock_t vfsmount_lock;
|
|
extern dev_t name_to_dev_t(char *name);
|
|
|
|
+extern char *d_namespace_path(struct dentry *, struct vfsmount *, char *, int);
|
|
+
|
|
#endif
|
|
#endif /* _LINUX_MOUNT_H */
|