mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-15 23:41:35 -04:00
new helper: audit_file()
... for situations when we don't have any candidate in pathnames - basically, in descriptor-based syscalls. [Folded the build fix for !CONFIG_AUDITSYSCALL configs from Chen Gang] Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -1897,6 +1897,11 @@ void __audit_inode(struct filename *name, const struct dentry *dentry,
|
||||
audit_copy_inode(n, dentry, inode);
|
||||
}
|
||||
|
||||
void __audit_file(const struct file *file)
|
||||
{
|
||||
__audit_inode(NULL, file->f_path.dentry, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* __audit_inode_child - collect inode info for created/removed objects
|
||||
* @parent: inode of dentry parent
|
||||
|
||||
Reference in New Issue
Block a user