Thread (57 messages) flat view 57 messages, 7 authors, 2017-09-05
STALE3309d

Revision v3 of 8 in this series.

Revisions (8)
  1. v3 [diff vs current]
  2. v3 [diff vs current]
  3. v3 [diff vs current]
  4. v3 current
  5. v3 [diff vs current]
  6. v4 [diff vs current]
  7. v4 [diff vs current]
  8. v5 [diff vs current]

[PATCH V3 07/10] capabilities: remove a layer of conditional logic

From: luto@kernel.org (Andy Lutomirski)
Date: 2017-08-25 15:11:24

On Wed, Aug 23, 2017 at 3:12 AM, Richard Guy Briggs [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Remove a layer of conditional logic to make the use of conditions
easier to read and analyse.

Signed-off-by: Richard Guy Briggs <redacted>
---
 security/commoncap.c |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/security/commoncap.c b/security/commoncap.c
index 5d81354..ffcaff0 100644
--- a/security/commoncap.c
+++ b/security/commoncap.c
@@ -551,13 +551,12 @@ static inline bool nonroot_raised_pE(struct cred *cred, kuid_t root)
 {
        bool ret = false;

-       if (cap_grew(effective, ambient, cred)) {
-               if (!cap_full(effective, cred) ||
-                   !is_eff(root, cred) || !is_real(root, cred) ||
-                   !root_privileged()) {
-                       ret = true;
-               }
-       }
+       if (cap_grew(effective, ambient, cred) &&
+           (!cap_full(effective, cred) ||
+            !is_eff(root, cred) ||
+            !is_real(root, cred) ||
+            !root_privileged()))
+               ret = true;
I'm trying to give this whole series the benefit of the doubt.  Here's
what happens when I try to read this:

Did effective grow ambient caps?  No, makes no sense.  Did ambient
grow effective caps?  No, not that either.  Is effective more fully
grown than ambient?  That's probably it, but that sounds really weird.

The rest would IMO be clearer if you named the helpers ruid_eq and
euid_eq instead of is_eff and is_real.
        return ret;
 }

--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help