diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2022-03-08 20:09:26 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2022-05-03 23:09:03 +0300 |
commit | c29722fad4aabbf6bb841b8f058f858ec911df56 (patch) | |
tree | 35e4e508fbec1d159d5c299650fe47a31d310a74 /security/lsm_audit.c | |
parent | ded34574d4d351ab0ca095a45496b393cef611c2 (diff) | |
download | linux-c29722fad4aabbf6bb841b8f058f858ec911df56.tar.xz |
selinux: log anon inode class name
Log the anonymous inode class name in the security hook
inode_init_security_anon. This name is the key for name based type
transitions on the anon_inode security class on creation. Example:
type=AVC msg=audit(02/16/22 22:02:50.585:216) : avc: granted \
{ create } for pid=2136 comm=mariadbd anonclass=[io_uring] \
scontext=system_u:system_r:mysqld_t:s0 \
tcontext=system_u:system_r:mysqld_iouring_t:s0 tclass=anon_inode
Add a new LSM audit data type holding the inode and the class name.
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
[PM: adjusted 'anonclass' to be a trusted string, cgzones approved]
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/lsm_audit.c')
-rw-r--r-- | security/lsm_audit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/lsm_audit.c b/security/lsm_audit.c index 1897cbf6fc69..78a278f28e49 100644 --- a/security/lsm_audit.c +++ b/security/lsm_audit.c @@ -433,6 +433,9 @@ static void dump_common_audit_data(struct audit_buffer *ab, audit_log_format(ab, " lockdown_reason=\"%s\"", lockdown_reasons[a->u.reason]); break; + case LSM_AUDIT_DATA_ANONINODE: + audit_log_format(ab, " anonclass=%s", a->u.anonclass); + break; } /* switch (a->type) */ } |