提交 02ebbaf4 编写于 作者: R Richard Guy Briggs 提交者: James Morris

capabilities: remove a layer of conditional logic

Remove a layer of conditional logic to make the use of conditions
easier to read and analyse.
Signed-off-by: NRichard Guy Briggs <rgb@redhat.com>
Reviewed-by: NSerge Hallyn <serge@hallyn.com>
Acked-by: NJames Morris <james.l.morris@oracle.com>
Acked-by: NKees Cook <keescook@chromium.org>
Okay-ished-by: NPaul Moore <paul@paul-moore.com>
Signed-off-by: NJames Morris <james.l.morris@oracle.com>
上级 9fbc2c79
...@@ -781,13 +781,12 @@ static inline bool nonroot_raised_pE(struct cred *cred, kuid_t root) ...@@ -781,13 +781,12 @@ static inline bool nonroot_raised_pE(struct cred *cred, kuid_t root)
{ {
bool ret = false; bool ret = false;
if (__cap_grew(effective, ambient, cred)) { if (__cap_grew(effective, ambient, cred) &&
if (!__cap_full(effective, cred) || (!__cap_full(effective, cred) ||
!__is_eff(root, cred) || !__is_real(root, cred) || !__is_eff(root, cred) ||
!root_privileged()) { !__is_real(root, cred) ||
!root_privileged()))
ret = true; ret = true;
}
}
return ret; return ret;
} }
...@@ -880,13 +879,11 @@ int cap_bprm_set_creds(struct linux_binprm *bprm) ...@@ -880,13 +879,11 @@ int cap_bprm_set_creds(struct linux_binprm *bprm)
/* Check for privilege-elevated exec. */ /* Check for privilege-elevated exec. */
bprm->cap_elevated = 0; bprm->cap_elevated = 0;
if (is_setid) { if (is_setid ||
(!__is_real(root_uid, new) &&
(effective ||
__cap_grew(permitted, ambient, new))))
bprm->cap_elevated = 1; bprm->cap_elevated = 1;
} else if (!__is_real(root_uid, new)) {
if (effective ||
__cap_grew(permitted, ambient, new))
bprm->cap_elevated = 1;
}
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册