From: Tyler Hicks Date: Thu, 9 Jul 2020 06:19:05 +0000 (-0500) Subject: ima: Fail rule parsing when the KEY_CHECK hook is combined with an invalid cond X-Git-Tag: v5.9-rc1~124^2~4^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb624fe214a2e156ddafd9868377cf91499f789d;p=thirdparty%2Fkernel%2Flinux.git ima: Fail rule parsing when the KEY_CHECK hook is combined with an invalid cond The KEY_CHECK function only supports the uid, pcr, and keyrings conditionals. Make this clear at policy load so that IMA policy authors don't assume that other conditionals are supported. Fixes: 5808611cccb2 ("IMA: Add KEY_CHECK func to measure keys") Signed-off-by: Tyler Hicks Reviewed-by: Lakshmi Ramasubramanian Signed-off-by: Mimi Zohar --- diff --git a/security/integrity/ima/ima_policy.c b/security/integrity/ima/ima_policy.c index 1c64bd6f1728c..81da02071d41c 100644 --- a/security/integrity/ima/ima_policy.c +++ b/security/integrity/ima/ima_policy.c @@ -1023,6 +1023,13 @@ static bool ima_validate_rule(struct ima_rule_entry *entry) if (entry->action & ~(MEASURE | DONT_MEASURE)) return false; + if (entry->flags & ~(IMA_FUNC | IMA_UID | IMA_PCR | + IMA_KEYRINGS)) + return false; + + if (ima_rule_contains_lsm_cond(entry)) + return false; + break; default: return false;