diff options
author | Richard Sharpe <realrichardsharpe@gmail.com> | 2012-04-27 21:31:34 -0700 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2012-04-28 08:05:00 +0200 |
commit | 0dc3f423d25d3a50fa39ecee8a8ca13cdfe32267 (patch) | |
tree | 38e844a9bb5ccb28ea862ffa0498212c65bb4651 /source3/modules | |
parent | 12ee7933327e99c0a5db8c7b6273775a6fc9c8fd (diff) | |
download | samba-0dc3f423d25d3a50fa39ecee8a8ca13cdfe32267.tar.gz samba-0dc3f423d25d3a50fa39ecee8a8ca13cdfe32267.tar.bz2 samba-0dc3f423d25d3a50fa39ecee8a8ca13cdfe32267.zip |
Add an audit file VFS routine so we can handle auditing with SACLs.
Autobuild-User: Richard Sharpe <sharpe@samba.org>
Autobuild-Date: Sat Apr 28 08:05:00 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_default.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index dd5441740a..887dbcb9af 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -1872,6 +1872,15 @@ static NTSTATUS vfswrap_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp return result; } +NTSTATUS vfswrap_audit_file(struct vfs_handle_struct *handle, + struct smb_filename *file, + struct security_acl *sacl, + uint32_t access_requested, + uint32_t access_denied) +{ + return NT_STATUS_OK; /* Nothing to do here ... */ +} + static int vfswrap_chmod_acl(vfs_handle_struct *handle, const char *name, mode_t mode) { #ifdef HAVE_NO_ACL @@ -2249,6 +2258,7 @@ static struct vfs_fn_pointers vfs_default_fns = { .fget_nt_acl_fn = vfswrap_fget_nt_acl, .get_nt_acl_fn = vfswrap_get_nt_acl, .fset_nt_acl_fn = vfswrap_fset_nt_acl, + .audit_file_fn = vfswrap_audit_file, /* POSIX ACL operations. */ |