capabilities: allow nice if we are privileged
authorSerge Hallyn <serge.hallyn@ubuntu.com>
Tue, 23 Jul 2013 18:18:53 +0000 (13:18 -0500)
committerEric W. Biederman <ebiederm@xmission.com>
Sat, 31 Aug 2013 06:44:09 +0000 (23:44 -0700)
We allow task A to change B's nice level if it has a supserset of
B's privileges, or of it has CAP_SYS_NICE.  Also allow it if A has
CAP_SYS_NICE with respect to B - meaning it is root in the same
namespace, or it created B's namespace.

Signed-off-by: Serge Hallyn <serge.hallyn@canonical.com>
Reviewed-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
security/commoncap.c

index 9fccf71b2b62a854178e411dcbd76d3ba6b7c12e..b9d613e0ef143b36bd411246d1ce1f42f00738b0 100644 (file)
@@ -768,16 +768,16 @@ int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags)
  */
 static int cap_safe_nice(struct task_struct *p)
 {
-       int is_subset;
+       int is_subset, ret = 0;
 
        rcu_read_lock();
        is_subset = cap_issubset(__task_cred(p)->cap_permitted,
                                 current_cred()->cap_permitted);
+       if (!is_subset && !ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE))
+               ret = -EPERM;
        rcu_read_unlock();
 
-       if (!is_subset && !capable(CAP_SYS_NICE))
-               return -EPERM;
-       return 0;
+       return ret;
 }
 
 /**