mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 12:44:03 +02:00
apparmor: fix auditing of mount binary data
AppArmor only mediates non-binary mount data, and should only audit the mount data if it is non-binary. Signed-off-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
parent
97dd3f51bf
commit
b9f2181b90
|
|
@ -345,8 +345,8 @@ static int match_mnt_path_str(const struct cred *subj_cred,
|
|||
|
||||
audit:
|
||||
return audit_mount(subj_cred, profile, OP_MOUNT, mntpnt, devname,
|
||||
type, NULL,
|
||||
flags, data, AA_MAY_MOUNT, &perms, info, error);
|
||||
type, NULL, flags, !binary ? data : NULL,
|
||||
AA_MAY_MOUNT, &perms, info, error);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user