2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-30 22:05:27 +00:00

Fix genprof/logprof to handle create (c) and delete (d) permissions that

are being reported by the kernel modules auditing.
This commit is contained in:
John Johansen
2010-03-10 15:30:06 -08:00
parent dd3a979827
commit e2737566ff

View File

@@ -6611,6 +6611,12 @@ sub parse_event($) {
LibAppArmor::free_record($event);
#map new c and d to w as logprof doesn't support them yet
$rmask =~ s/c/w/g;
$rmask =~ s/d/w/g;
$dmask =~ s/c/w/g;
$dmask =~ s/d/w/g;
if ($rmask && !validate_log_mode(hide_log_mode($rmask))) {
fatal_error(sprintf(gettext('Log contains unknown mode %s.'),
$rmask));