summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2017-09-07 11:47:17 -0700
committerAmit Pundir <amit.pundir@linaro.org>2023-08-31 16:36:22 +0530
commite9ed49f07d4d88e9221c75ec44af5e08e53e8736 (patch)
tree40bef0ae38024e0067d6cf0bc030d8ead03061d8
parent88d9a44babe43c7e62eed7f05fcc70cd7cb2c753 (diff)
ANDROID: Allow CAP_SYS_NICE tasks to migrate processes between cgroups
This hack allows CAP_SYS_NICE tasks to have privledge to migrate other tasks between cgroups. This is used by the system_service to migrate processes between top-app, foreground, background cgroups for cputime and schedtune groups. Fixes following libprocessgroup error loop in logcat: ----------- E libprocessgroup: AddTidToCgroup failed to write '$ABCD'; fd=$XYZ: Permission denied E libprocessgroup: Failed to add task into cgroup ----------- Signed-off-by: John Stultz <john.stultz@linaro.org> Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
-rw-r--r--kernel/cgroup/cgroup-v1.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/cgroup/cgroup-v1.c b/kernel/cgroup/cgroup-v1.c
index 83044312bc41..c5a86b81045b 100644
--- a/kernel/cgroup/cgroup-v1.c
+++ b/kernel/cgroup/cgroup-v1.c
@@ -514,7 +514,8 @@ static ssize_t __cgroup1_procs_write(struct kernfs_open_file *of,
tcred = get_task_cred(task);
if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
!uid_eq(cred->euid, tcred->uid) &&
- !uid_eq(cred->euid, tcred->suid))
+ !uid_eq(cred->euid, tcred->suid) &&
+ !ns_capable(tcred->user_ns, CAP_SYS_NICE))
ret = -EACCES;
put_cred(tcred);
if (ret)