summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2011-07-12 20:12:45 -0700
committerColin Cross <ccross@android.com>2011-07-12 20:45:13 -0700
commit497f5982a7eae716267213a8fdc3ea4c6ac09e5e (patch)
tree98b363939e3c4a302d4194f86f3f06b0f5a54bdf /kernel
parent75c56a81116e51c5cf15c0641906d0745188cd16 (diff)
Revert "cgroup: Add generic cgroup subsystem permission checks."
This reverts commit 1d38bc7d0523af2233b4280e2aeab34c6a076665. Change-Id: I2c5066b696cbdd5ca117ed74718bcb7e70e878e7 Signed-off-by: Colin Cross <ccross@android.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/cgroup.c10
-rw-r--r--kernel/cgroup_freezer.c8
-rw-r--r--kernel/cpuset.c7
-rw-r--r--kernel/sched.c9
4 files changed, 0 insertions, 34 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index 01ab75da090..f6e7b4ad2d6 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -58,7 +58,6 @@
#include <linux/eventfd.h>
#include <linux/poll.h>
#include <linux/flex_array.h> /* used in cgroup_attach_proc */
-#include <linux/capability.h>
#include <asm/atomic.h>
@@ -1844,15 +1843,6 @@ int cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
failed_ss = ss;
goto out;
}
- } else if (!capable(CAP_SYS_ADMIN)) {
- const struct cred *cred = current_cred(), *tcred;
-
- /* No can_attach() - check perms generically */
- tcred = __task_cred(tsk);
- if (cred->euid != tcred->uid &&
- cred->euid != tcred->suid) {
- return -EACCES;
- }
}
if (ss->can_attach_task) {
retval = ss->can_attach_task(cgrp, tsk);
diff --git a/kernel/cgroup_freezer.c b/kernel/cgroup_freezer.c
index 6ebda1df9b7..e691818d7e4 100644
--- a/kernel/cgroup_freezer.c
+++ b/kernel/cgroup_freezer.c
@@ -164,14 +164,6 @@ static int freezer_can_attach(struct cgroup_subsys *ss,
{
struct freezer *freezer;
- if ((current != task) && (!capable(CAP_SYS_ADMIN))) {
- const struct cred *cred = current_cred(), *tcred;
-
- tcred = __task_cred(task);
- if (cred->euid != tcred->uid && cred->euid != tcred->suid)
- return -EPERM;
- }
-
/*
* Anything frozen can't move or be moved to/from.
*/
diff --git a/kernel/cpuset.c b/kernel/cpuset.c
index a1df48792fe..9c9b7545c81 100644
--- a/kernel/cpuset.c
+++ b/kernel/cpuset.c
@@ -1373,13 +1373,6 @@ static int cpuset_can_attach(struct cgroup_subsys *ss, struct cgroup *cont,
{
struct cpuset *cs = cgroup_cs(cont);
- if ((current != task) && (!capable(CAP_SYS_ADMIN))) {
- const struct cred *cred = current_cred(), *tcred;
-
- if (cred->euid != tcred->uid && cred->euid != tcred->suid)
- return -EPERM;
- }
-
if (cpumask_empty(cs->cpus_allowed) || nodes_empty(cs->mems_allowed))
return -ENOSPC;
diff --git a/kernel/sched.c b/kernel/sched.c
index 05735d326a6..db2b408b62b 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -8801,15 +8801,6 @@ cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
static int
cpu_cgroup_can_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
{
- if ((current != tsk) && (!capable(CAP_SYS_NICE))) {
- const struct cred *cred = current_cred(), *tcred;
-
- tcred = __task_cred(tsk);
-
- if (cred->euid != tcred->uid && cred->euid != tcred->suid)
- return -EPERM;
- }
-
#ifdef CONFIG_RT_GROUP_SCHED
if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk))
return -EINVAL;