1
0
Fork 0

ima/policy: fix parsing of fsuuid

commit 36447456e1 upstream.

The switch to uuid_t invereted the logic of verfication that &entry->fsuuid
is zero during parsing of "fsuuid=" rule. Instead of making sure the
&entry->fsuuid field is not attempted to be overwritten, we bail out for
perfectly correct rule.

Fixes: 787d8c530a ("ima/policy: switch to use uuid_t")
Signed-off-by: Mike Rapoport <rppt@linux.vnet.ibm.com>
Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
pull/10/head
Mike Rapoport 2018-01-17 20:27:11 +02:00 committed by Greg Kroah-Hartman
parent 80baea0e6c
commit 516868c59d
1 changed files with 1 additions and 1 deletions

View File

@ -743,7 +743,7 @@ static int ima_parse_rule(char *rule, struct ima_rule_entry *entry)
case Opt_fsuuid:
ima_log_string(ab, "fsuuid", args[0].from);
if (uuid_is_null(&entry->fsuuid)) {
if (!uuid_is_null(&entry->fsuuid)) {
result = -EINVAL;
break;
}