cgroup: Use open-time credentials for process migraton perm checks
authorTejun Heo <tj@kernel.org>
Thu, 14 Apr 2022 09:24:19 +0000 (12:24 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Apr 2022 07:08:30 +0000 (09:08 +0200)
commit 1756d7994ad85c2479af6ae5a9750b92324685af upstream.

cgroup process migration permission checks are performed at write time as
whether a given operation is allowed or not is dependent on the content of
the write - the PID. This currently uses current's credentials which is a
potential security weakness as it may allow scenarios where a less
privileged process tricks a more privileged one into writing into a fd that
it created.

This patch makes both cgroup2 and cgroup1 process migration interfaces to
use the credentials saved at the time of open (file->f_cred) instead of
current's.

Reported-by: "Eric W. Biederman" <ebiederm@xmission.com>
Suggested-by: Linus Torvalds <torvalds@linuxfoundation.org>
Fixes: 187fe84067bd ("cgroup: require write perm on common ancestor when moving processes on the default hierarchy")
Reviewed-by: Michal Koutný <mkoutny@suse.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
[OP: backport to v4.14: apply original __cgroup_procs_write() changes to
cgroup_threads_write() and cgroup_procs_write()]
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/cgroup/cgroup-v1.c
kernel/cgroup/cgroup.c

index 105f5b2f597838c9c5cb97b5593005ff8af655ad..4a2b148b900d56d325a22b2b6cc955076bb1a611 100644 (file)
@@ -535,10 +535,11 @@ static ssize_t __cgroup1_procs_write(struct kernfs_open_file *of,
                goto out_unlock;
 
        /*
-        * Even if we're attaching all tasks in the thread group, we only
-        * need to check permissions on one of them.
+        * Even if we're attaching all tasks in the thread group, we only need
+        * to check permissions on one of them. Check permissions using the
+        * credentials from file open to protect against inherited fd attacks.
         */
-       cred = current_cred();
+       cred = of->file->f_cred;
        tcred = get_task_cred(task);
        if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
            !uid_eq(cred->euid, tcred->uid) &&
index d5044ca33bd0be4198e8006d4e6a53c06c57de78..380500251b96cc6d9adc9c872224b442d2e5e927 100644 (file)
@@ -4381,6 +4381,7 @@ static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
 {
        struct cgroup *src_cgrp, *dst_cgrp;
        struct task_struct *task;
+       const struct cred *saved_cred;
        ssize_t ret;
 
        dst_cgrp = cgroup_kn_lock_live(of->kn, false);
@@ -4397,8 +4398,15 @@ static ssize_t cgroup_procs_write(struct kernfs_open_file *of,
        src_cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
        spin_unlock_irq(&css_set_lock);
 
+       /*
+        * Process and thread migrations follow same delegation rule. Check
+        * permissions using the credentials from file open to protect against
+        * inherited fd attacks.
+        */
+       saved_cred = override_creds(of->file->f_cred);
        ret = cgroup_procs_write_permission(src_cgrp, dst_cgrp,
                                            of->file->f_path.dentry->d_sb);
+       revert_creds(saved_cred);
        if (ret)
                goto out_finish;
 
@@ -4422,6 +4430,7 @@ static ssize_t cgroup_threads_write(struct kernfs_open_file *of,
 {
        struct cgroup *src_cgrp, *dst_cgrp;
        struct task_struct *task;
+       const struct cred *saved_cred;
        ssize_t ret;
 
        buf = strstrip(buf);
@@ -4440,9 +4449,15 @@ static ssize_t cgroup_threads_write(struct kernfs_open_file *of,
        src_cgrp = task_cgroup_from_root(task, &cgrp_dfl_root);
        spin_unlock_irq(&css_set_lock);
 
-       /* thread migrations follow the cgroup.procs delegation rule */
+       /*
+        * Process and thread migrations follow same delegation rule. Check
+        * permissions using the credentials from file open to protect against
+        * inherited fd attacks.
+        */
+       saved_cred = override_creds(of->file->f_cred);
        ret = cgroup_procs_write_permission(src_cgrp, dst_cgrp,
                                            of->file->f_path.dentry->d_sb);
+       revert_creds(saved_cred);
        if (ret)
                goto out_finish;