|
@@ -39,7 +39,7 @@ struct ima_measure_rule_entry {
|
|
|
enum ima_hooks func;
|
|
|
int mask;
|
|
|
unsigned long fsmagic;
|
|
|
- uid_t uid;
|
|
|
+ kuid_t uid;
|
|
|
struct {
|
|
|
void *rule; /* LSM file metadata specific */
|
|
|
int type; /* audit type */
|
|
@@ -71,7 +71,7 @@ static struct ima_measure_rule_entry default_rules[] = {
|
|
|
.flags = IMA_FUNC | IMA_MASK},
|
|
|
{.action = MEASURE,.func = BPRM_CHECK,.mask = MAY_EXEC,
|
|
|
.flags = IMA_FUNC | IMA_MASK},
|
|
|
- {.action = MEASURE,.func = FILE_CHECK,.mask = MAY_READ,.uid = 0,
|
|
|
+ {.action = MEASURE,.func = FILE_CHECK,.mask = MAY_READ,.uid = GLOBAL_ROOT_UID,
|
|
|
.flags = IMA_FUNC | IMA_MASK | IMA_UID},
|
|
|
};
|
|
|
|
|
@@ -112,7 +112,7 @@ static bool ima_match_rules(struct ima_measure_rule_entry *rule,
|
|
|
if ((rule->flags & IMA_FSMAGIC)
|
|
|
&& rule->fsmagic != inode->i_sb->s_magic)
|
|
|
return false;
|
|
|
- if ((rule->flags & IMA_UID) && rule->uid != cred->uid)
|
|
|
+ if ((rule->flags & IMA_UID) && !uid_eq(rule->uid, cred->uid))
|
|
|
return false;
|
|
|
for (i = 0; i < MAX_LSM_RULES; i++) {
|
|
|
int rc = 0;
|
|
@@ -277,7 +277,7 @@ static int ima_parse_rule(char *rule, struct ima_measure_rule_entry *entry)
|
|
|
|
|
|
ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_INTEGRITY_RULE);
|
|
|
|
|
|
- entry->uid = -1;
|
|
|
+ entry->uid = INVALID_UID;
|
|
|
entry->action = UNKNOWN;
|
|
|
while ((p = strsep(&rule, " \t")) != NULL) {
|
|
|
substring_t args[MAX_OPT_ARGS];
|
|
@@ -361,15 +361,15 @@ static int ima_parse_rule(char *rule, struct ima_measure_rule_entry *entry)
|
|
|
case Opt_uid:
|
|
|
ima_log_string(ab, "uid", args[0].from);
|
|
|
|
|
|
- if (entry->uid != -1) {
|
|
|
+ if (uid_valid(entry->uid)) {
|
|
|
result = -EINVAL;
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
result = strict_strtoul(args[0].from, 10, &lnum);
|
|
|
if (!result) {
|
|
|
- entry->uid = (uid_t) lnum;
|
|
|
- if (entry->uid != lnum)
|
|
|
+ entry->uid = make_kuid(current_user_ns(), (uid_t)lnum);
|
|
|
+ if (!uid_valid(entry->uid) || (((uid_t)lnum) != lnum))
|
|
|
result = -EINVAL;
|
|
|
else
|
|
|
entry->flags |= IMA_UID;
|