audit mmap
Normal syscall audit doesn't catch 5th argument of syscall. It also doesn't catch the contents of userland structures pointed to be syscall argument, so for both old and new mmap(2) ABI it doesn't record the descriptor we are mapping. For old one it also misses flags. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -241,6 +241,10 @@ struct audit_context {
|
||||
pid_t pid;
|
||||
struct audit_cap_data cap;
|
||||
} capset;
|
||||
struct {
|
||||
int fd;
|
||||
int flags;
|
||||
} mmap;
|
||||
};
|
||||
int fds[2];
|
||||
|
||||
@@ -1305,6 +1309,10 @@ static void show_special(struct audit_context *context, int *call_panic)
|
||||
audit_log_cap(ab, "cap_pp", &context->capset.cap.permitted);
|
||||
audit_log_cap(ab, "cap_pe", &context->capset.cap.effective);
|
||||
break; }
|
||||
case AUDIT_MMAP: {
|
||||
audit_log_format(ab, "fd=%d flags=0x%x", context->mmap.fd,
|
||||
context->mmap.flags);
|
||||
break; }
|
||||
}
|
||||
audit_log_end(ab);
|
||||
}
|
||||
@@ -2476,6 +2484,14 @@ void __audit_log_capset(pid_t pid,
|
||||
context->type = AUDIT_CAPSET;
|
||||
}
|
||||
|
||||
void __audit_mmap_fd(int fd, int flags)
|
||||
{
|
||||
struct audit_context *context = current->audit_context;
|
||||
context->mmap.fd = fd;
|
||||
context->mmap.flags = flags;
|
||||
context->type = AUDIT_MMAP;
|
||||
}
|
||||
|
||||
/**
|
||||
* audit_core_dumps - record information about processes that end abnormally
|
||||
* @signr: signal value
|
||||
|
Reference in New Issue
Block a user