From: Richard Guy Briggs Date: Thu, 12 Oct 2017 00:57:12 +0000 (-0400) Subject: capabilities: invert logic for clarity X-Git-Tag: v4.19~395^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0d1adefe0a3775cc16374dc9ebdfd8504afa14b;p=platform%2Fkernel%2Flinux-rpi.git capabilities: invert logic for clarity The way the logic was presented, it was awkward to read and verify. Invert the logic using DeMorgan's Law to be more easily able to read and understand. Signed-off-by: Richard Guy Briggs Reviewed-by: Serge Hallyn Acked-by: James Morris Acked-by: Kees Cook Okay-ished-by: Paul Moore Signed-off-by: James Morris --- diff --git a/security/commoncap.c b/security/commoncap.c index eac70e2..0bd94d3 100644 --- a/security/commoncap.c +++ b/security/commoncap.c @@ -782,10 +782,10 @@ static inline bool nonroot_raised_pE(struct cred *cred, kuid_t root) bool ret = false; if (__cap_grew(effective, ambient, cred) && - (!__cap_full(effective, cred) || - !__is_eff(root, cred) || - !__is_real(root, cred) || - !root_privileged())) + !(__cap_full(effective, cred) && + __is_eff(root, cred) && + __is_real(root, cred) && + root_privileged())) ret = true; return ret; }