mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-18 23:54:26 +08:00
userns: Allow unprivilged mounts of proc and sysfs
- The context in which proc and sysfs are mounted have no effect on the the uid/gid of their files so no conversion is needed except allowing the mount. Acked-by: Serge Hallyn <serge.hallyn@canonical.com> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
parent
c450f371d4
commit
4f326c0064
@ -145,6 +145,7 @@ static struct file_system_type proc_fs_type = {
|
|||||||
.name = "proc",
|
.name = "proc",
|
||||||
.mount = proc_mount,
|
.mount = proc_mount,
|
||||||
.kill_sb = proc_kill_sb,
|
.kill_sb = proc_kill_sb,
|
||||||
|
.fs_flags = FS_USERNS_MOUNT,
|
||||||
};
|
};
|
||||||
|
|
||||||
void __init proc_root_init(void)
|
void __init proc_root_init(void)
|
||||||
|
@ -149,6 +149,7 @@ static struct file_system_type sysfs_fs_type = {
|
|||||||
.name = "sysfs",
|
.name = "sysfs",
|
||||||
.mount = sysfs_mount,
|
.mount = sysfs_mount,
|
||||||
.kill_sb = sysfs_kill_sb,
|
.kill_sb = sysfs_kill_sb,
|
||||||
|
.fs_flags = FS_USERNS_MOUNT,
|
||||||
};
|
};
|
||||||
|
|
||||||
int __init sysfs_init(void)
|
int __init sysfs_init(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user