diff options
author | Paul Moore <pmoore@redhat.com> | 2015-01-22 00:00:10 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-01-23 00:23:52 -0500 |
commit | fd3522fdc84023b050bb40318d9fc71a9adc22bc (patch) | |
tree | dc0df711a6d6590a1944469b7d8b6f5fe9641f12 /fs | |
parent | cbaab2db9103cc6727c7166d2fda9f64038c828c (diff) | |
download | op-kernel-dev-fd3522fdc84023b050bb40318d9fc71a9adc22bc.zip op-kernel-dev-fd3522fdc84023b050bb40318d9fc71a9adc22bc.tar.gz |
audit: enable filename recording via getname_kernel()
Enable recording of filenames in getname_kernel() and remove the
kludgy workaround in __audit_inode() now that we have proper filename
logging for kernel users.
CC: viro@zeniv.linux.org.uk
CC: linux-fsdevel@vger.kernel.org
Signed-off-by: Paul Moore <pmoore@redhat.com>
Reviewed-by: Richard Guy Briggs <rgb@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/namei.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -243,6 +243,7 @@ getname_kernel(const char * filename) memcpy((char *)result->name, filename, len); result->uptr = NULL; result->aname = NULL; + audit_getname(result); return result; } |