ima: fail signature verification based on policy
This patch addresses the fuse privileged mounted filesystems in environments which are unwilling to accept the risk of trusting the signature verification and want to always fail safe, but are for example using a pre-built kernel. This patch defines a new builtin policy named "fail_securely", which can be specified on the boot command line as an argument to "ima_policy=". Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com> Cc: Miklos Szeredi <miklos@szeredi.hu> Cc: Seth Forshee <seth.forshee@canonical.com> Cc: Dongsu Park <dongsu@kinvolk.io> Cc: Alban Crequy <alban@kinvolk.io> Acked-by: Serge Hallyn <serge@hallyn.com> Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
@@ -188,6 +188,7 @@ __setup("ima_tcb", default_measure_policy_setup);
|
||||
|
||||
static bool ima_use_appraise_tcb __initdata;
|
||||
static bool ima_use_secure_boot __initdata;
|
||||
static bool ima_fail_unverifiable_sigs __ro_after_init;
|
||||
static int __init policy_setup(char *str)
|
||||
{
|
||||
char *p;
|
||||
@@ -201,6 +202,8 @@ static int __init policy_setup(char *str)
|
||||
ima_use_appraise_tcb = true;
|
||||
else if (strcmp(p, "secure_boot") == 0)
|
||||
ima_use_secure_boot = true;
|
||||
else if (strcmp(p, "fail_securely") == 0)
|
||||
ima_fail_unverifiable_sigs = true;
|
||||
}
|
||||
|
||||
return 1;
|
||||
@@ -390,6 +393,8 @@ int ima_match_policy(struct inode *inode, const struct cred *cred, u32 secid,
|
||||
if (entry->action & IMA_APPRAISE) {
|
||||
action |= get_subaction(entry, func);
|
||||
action &= ~IMA_HASH;
|
||||
if (ima_fail_unverifiable_sigs)
|
||||
action |= IMA_FAIL_UNVERIFIABLE_SIGS;
|
||||
}
|
||||
|
||||
if (entry->action & IMA_DO_MASK)
|
||||
|
Reference in New Issue
Block a user