s3-vfs: Use the system. namespace for fake ACLs
[kai/samba.git] / source3 / modules / vfs_full_audit.c
index a35c210d2b79333492a4936279ca6b232771a488..48198e7fa5b3627af3316123d6cf1c125b596723 100644 (file)
@@ -66,6 +66,7 @@
 #include "ntioctl.h"
 #include "lib/param/loadparm.h"
 #include "lib/util/bitmap.h"
+#include "lib/util/tevent_unix.h"
 
 static int vfs_full_audit_debug_level = DBGC_VFS;
 
@@ -111,13 +112,19 @@ typedef enum _vfs_op_type {
        SMB_VFS_OP_CLOSE,
        SMB_VFS_OP_READ,
        SMB_VFS_OP_PREAD,
+       SMB_VFS_OP_PREAD_SEND,
+       SMB_VFS_OP_PREAD_RECV,
        SMB_VFS_OP_WRITE,
        SMB_VFS_OP_PWRITE,
+       SMB_VFS_OP_PWRITE_SEND,
+       SMB_VFS_OP_PWRITE_RECV,
        SMB_VFS_OP_LSEEK,
        SMB_VFS_OP_SENDFILE,
        SMB_VFS_OP_RECVFILE,
        SMB_VFS_OP_RENAME,
        SMB_VFS_OP_FSYNC,
+       SMB_VFS_OP_FSYNC_SEND,
+       SMB_VFS_OP_FSYNC_RECV,
        SMB_VFS_OP_STAT,
        SMB_VFS_OP_FSTAT,
        SMB_VFS_OP_LSTAT,
@@ -166,50 +173,23 @@ typedef enum _vfs_op_type {
        SMB_VFS_OP_CHMOD_ACL,
        SMB_VFS_OP_FCHMOD_ACL,
 
-       SMB_VFS_OP_SYS_ACL_GET_ENTRY,
-       SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE,
-       SMB_VFS_OP_SYS_ACL_GET_PERMSET,
-       SMB_VFS_OP_SYS_ACL_GET_QUALIFIER,
        SMB_VFS_OP_SYS_ACL_GET_FILE,
        SMB_VFS_OP_SYS_ACL_GET_FD,
-       SMB_VFS_OP_SYS_ACL_CLEAR_PERMS,
-       SMB_VFS_OP_SYS_ACL_ADD_PERM,
-       SMB_VFS_OP_SYS_ACL_TO_TEXT,
-       SMB_VFS_OP_SYS_ACL_INIT,
-       SMB_VFS_OP_SYS_ACL_CREATE_ENTRY,
-       SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE,
-       SMB_VFS_OP_SYS_ACL_SET_QUALIFIER,
-       SMB_VFS_OP_SYS_ACL_SET_PERMSET,
-       SMB_VFS_OP_SYS_ACL_VALID,
        SMB_VFS_OP_SYS_ACL_SET_FILE,
        SMB_VFS_OP_SYS_ACL_SET_FD,
        SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
-       SMB_VFS_OP_SYS_ACL_GET_PERM,
-       SMB_VFS_OP_SYS_ACL_FREE_TEXT,
-       SMB_VFS_OP_SYS_ACL_FREE_ACL,
-       SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER,
 
        /* EA operations. */
        SMB_VFS_OP_GETXATTR,
        SMB_VFS_OP_FGETXATTR,
        SMB_VFS_OP_LISTXATTR,
-       SMB_VFS_OP_LLISTXATTR,
        SMB_VFS_OP_FLISTXATTR,
        SMB_VFS_OP_REMOVEXATTR,
-       SMB_VFS_OP_LREMOVEXATTR,
        SMB_VFS_OP_FREMOVEXATTR,
        SMB_VFS_OP_SETXATTR,
-       SMB_VFS_OP_LSETXATTR,
        SMB_VFS_OP_FSETXATTR,
 
        /* aio operations */
-       SMB_VFS_OP_AIO_READ,
-       SMB_VFS_OP_AIO_WRITE,
-       SMB_VFS_OP_AIO_RETURN,
-       SMB_VFS_OP_AIO_CANCEL,
-       SMB_VFS_OP_AIO_ERROR,
-       SMB_VFS_OP_AIO_FSYNC,
-       SMB_VFS_OP_AIO_SUSPEND,
         SMB_VFS_OP_AIO_FORCE,
 
        /* offline operations */
@@ -250,6 +230,8 @@ static struct {
        { SMB_VFS_OP_CLOSE,     "close" },
        { SMB_VFS_OP_READ,      "read" },
        { SMB_VFS_OP_PREAD,     "pread" },
+       { SMB_VFS_OP_PREAD_SEND,        "pread_send" },
+       { SMB_VFS_OP_PREAD_RECV,        "pread_recv" },
        { SMB_VFS_OP_WRITE,     "write" },
        { SMB_VFS_OP_PWRITE,    "pwrite" },
        { SMB_VFS_OP_LSEEK,     "lseek" },
@@ -257,6 +239,8 @@ static struct {
        { SMB_VFS_OP_RECVFILE,  "recvfile" },
        { SMB_VFS_OP_RENAME,    "rename" },
        { SMB_VFS_OP_FSYNC,     "fsync" },
+       { SMB_VFS_OP_FSYNC_SEND,        "fsync_send" },
+       { SMB_VFS_OP_FSYNC_RECV,        "fsync_recv" },
        { SMB_VFS_OP_STAT,      "stat" },
        { SMB_VFS_OP_FSTAT,     "fstat" },
        { SMB_VFS_OP_LSTAT,     "lstat" },
@@ -298,46 +282,19 @@ static struct {
        { SMB_VFS_OP_FSET_NT_ACL,       "fset_nt_acl" },
        { SMB_VFS_OP_CHMOD_ACL, "chmod_acl" },
        { SMB_VFS_OP_FCHMOD_ACL,        "fchmod_acl" },
-       { SMB_VFS_OP_SYS_ACL_GET_ENTRY, "sys_acl_get_entry" },
-       { SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE,      "sys_acl_get_tag_type" },
-       { SMB_VFS_OP_SYS_ACL_GET_PERMSET,       "sys_acl_get_permset" },
-       { SMB_VFS_OP_SYS_ACL_GET_QUALIFIER,     "sys_acl_get_qualifier" },
        { SMB_VFS_OP_SYS_ACL_GET_FILE,  "sys_acl_get_file" },
        { SMB_VFS_OP_SYS_ACL_GET_FD,    "sys_acl_get_fd" },
-       { SMB_VFS_OP_SYS_ACL_CLEAR_PERMS,       "sys_acl_clear_perms" },
-       { SMB_VFS_OP_SYS_ACL_ADD_PERM,  "sys_acl_add_perm" },
-       { SMB_VFS_OP_SYS_ACL_TO_TEXT,   "sys_acl_to_text" },
-       { SMB_VFS_OP_SYS_ACL_INIT,      "sys_acl_init" },
-       { SMB_VFS_OP_SYS_ACL_CREATE_ENTRY,      "sys_acl_create_entry" },
-       { SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE,      "sys_acl_set_tag_type" },
-       { SMB_VFS_OP_SYS_ACL_SET_QUALIFIER,     "sys_acl_set_qualifier" },
-       { SMB_VFS_OP_SYS_ACL_SET_PERMSET,       "sys_acl_set_permset" },
-       { SMB_VFS_OP_SYS_ACL_VALID,     "sys_acl_valid" },
        { SMB_VFS_OP_SYS_ACL_SET_FILE,  "sys_acl_set_file" },
        { SMB_VFS_OP_SYS_ACL_SET_FD,    "sys_acl_set_fd" },
        { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,   "sys_acl_delete_def_file" },
-       { SMB_VFS_OP_SYS_ACL_GET_PERM,  "sys_acl_get_perm" },
-       { SMB_VFS_OP_SYS_ACL_FREE_TEXT, "sys_acl_free_text" },
-       { SMB_VFS_OP_SYS_ACL_FREE_ACL,  "sys_acl_free_acl" },
-       { SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER,    "sys_acl_free_qualifier" },
        { SMB_VFS_OP_GETXATTR,  "getxattr" },
        { SMB_VFS_OP_FGETXATTR, "fgetxattr" },
        { SMB_VFS_OP_LISTXATTR, "listxattr" },
-       { SMB_VFS_OP_LLISTXATTR,        "llistxattr" },
        { SMB_VFS_OP_FLISTXATTR,        "flistxattr" },
        { SMB_VFS_OP_REMOVEXATTR,       "removexattr" },
-       { SMB_VFS_OP_LREMOVEXATTR,      "lremovexattr" },
        { SMB_VFS_OP_FREMOVEXATTR,      "fremovexattr" },
        { SMB_VFS_OP_SETXATTR,  "setxattr" },
-       { SMB_VFS_OP_LSETXATTR, "lsetxattr" },
        { SMB_VFS_OP_FSETXATTR, "fsetxattr" },
-       { SMB_VFS_OP_AIO_READ,  "aio_read" },
-       { SMB_VFS_OP_AIO_WRITE, "aio_write" },
-       { SMB_VFS_OP_AIO_RETURN,"aio_return" },
-       { SMB_VFS_OP_AIO_CANCEL,"aio_cancel" },
-       { SMB_VFS_OP_AIO_ERROR, "aio_error" },
-       { SMB_VFS_OP_AIO_FSYNC, "aio_fsync" },
-       { SMB_VFS_OP_AIO_SUSPEND,"aio_suspend" },
        { SMB_VFS_OP_AIO_FORCE, "aio_force" },
        { SMB_VFS_OP_IS_OFFLINE, "is_offline" },
        { SMB_VFS_OP_SET_OFFLINE, "set_offline" },
@@ -403,7 +360,7 @@ static char *audit_prefix(TALLOC_CTX *ctx, connection_struct *conn)
                return NULL;
        }
        result = talloc_sub_advanced(ctx,
-                       lp_servicename(SNUM(conn)),
+                       lp_servicename(talloc_tos(), SNUM(conn)),
                        conn->session_info->unix_info->unix_name,
                        conn->connectpath,
                        conn->session_info->unix_token->gid,
@@ -567,8 +524,6 @@ static void do_log(vfs_op_type op, bool success, vfs_handle_struct *handle,
        TALLOC_FREE(audit_pre);
        TALLOC_FREE(op_msg);
        TALLOC_FREE(tmp_do_log_ctx);
-
-       return;
 }
 
 /**
@@ -643,12 +598,10 @@ static void smb_full_audit_disconnect(vfs_handle_struct *handle)
        SMB_VFS_NEXT_DISCONNECT(handle);
 
        do_log(SMB_VFS_OP_DISCONNECT, True, handle,
-              "%s", lp_servicename(SNUM(handle->conn)));
+              "%s", lp_servicename(talloc_tos(), SNUM(handle->conn)));
 
        /* The bitmaps will be disconnected when the private
           data is deleted. */
-
-       return;
 }
 
 static uint64_t smb_full_audit_disk_free(vfs_handle_struct *handle,
@@ -779,7 +732,6 @@ static void smb_full_audit_seekdir(vfs_handle_struct *handle,
        SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
 
        do_log(SMB_VFS_OP_SEEKDIR, True, handle, "");
-       return;
 }
 
 static long smb_full_audit_telldir(vfs_handle_struct *handle,
@@ -800,7 +752,6 @@ static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
        SMB_VFS_NEXT_REWINDDIR(handle, dirp);
 
        do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
-       return;
 }
 
 static int smb_full_audit_mkdir(vfs_handle_struct *handle,
@@ -845,7 +796,6 @@ static void smb_full_audit_init_search_op(vfs_handle_struct *handle,
        SMB_VFS_NEXT_INIT_SEARCH_OP(handle, dirp);
 
        do_log(SMB_VFS_OP_INIT_SEARCH_OP, True, handle, "");
-       return;
 }
 
 static int smb_full_audit_open(vfs_handle_struct *handle,
@@ -958,7 +908,7 @@ static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
 }
 
 static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
-                          void *data, size_t n, SMB_OFF_T offset)
+                          void *data, size_t n, off_t offset)
 {
        ssize_t result;
 
@@ -970,6 +920,76 @@ static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp
        return result;
 }
 
+struct smb_full_audit_pread_state {
+       vfs_handle_struct *handle;
+       files_struct *fsp;
+       ssize_t ret;
+       int err;
+};
+
+static void smb_full_audit_pread_done(struct tevent_req *subreq);
+
+static struct tevent_req *smb_full_audit_pread_send(
+       struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
+       struct tevent_context *ev, struct files_struct *fsp,
+       void *data, size_t n, off_t offset)
+{
+       struct tevent_req *req, *subreq;
+       struct smb_full_audit_pread_state *state;
+
+       req = tevent_req_create(mem_ctx, &state,
+                               struct smb_full_audit_pread_state);
+       if (req == NULL) {
+               do_log(SMB_VFS_OP_PREAD_SEND, false, handle, "%s",
+                      fsp_str_do_log(fsp));
+               return NULL;
+       }
+       state->handle = handle;
+       state->fsp = fsp;
+
+       subreq = SMB_VFS_NEXT_PREAD_SEND(state, ev, handle, fsp, data,
+                                        n, offset);
+       if (tevent_req_nomem(subreq, req)) {
+               do_log(SMB_VFS_OP_PREAD_SEND, false, handle, "%s",
+                      fsp_str_do_log(fsp));
+               return tevent_req_post(req, ev);
+       }
+       tevent_req_set_callback(subreq, smb_full_audit_pread_done, req);
+
+       do_log(SMB_VFS_OP_PREAD_SEND, true, handle, "%s", fsp_str_do_log(fsp));
+       return req;
+}
+
+static void smb_full_audit_pread_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct smb_full_audit_pread_state *state = tevent_req_data(
+               req, struct smb_full_audit_pread_state);
+
+       state->ret = SMB_VFS_PREAD_RECV(subreq, &state->err);
+       TALLOC_FREE(subreq);
+       tevent_req_done(req);
+}
+
+static ssize_t smb_full_audit_pread_recv(struct tevent_req *req, int *err)
+{
+       struct smb_full_audit_pread_state *state = tevent_req_data(
+               req, struct smb_full_audit_pread_state);
+
+       if (tevent_req_is_unix_error(req, err)) {
+               do_log(SMB_VFS_OP_PREAD_RECV, false, state->handle, "%s",
+                      fsp_str_do_log(state->fsp));
+               return -1;
+       }
+
+       do_log(SMB_VFS_OP_PREAD_RECV, (state->ret >= 0), state->handle, "%s",
+              fsp_str_do_log(state->fsp));
+
+       *err = state->err;
+       return state->ret;
+}
+
 static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
                           const void *data, size_t n)
 {
@@ -985,7 +1005,7 @@ static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp
 
 static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
                            const void *data, size_t n,
-                           SMB_OFF_T offset)
+                           off_t offset)
 {
        ssize_t result;
 
@@ -997,8 +1017,79 @@ static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fs
        return result;
 }
 
-static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
-                            SMB_OFF_T offset, int whence)
+struct smb_full_audit_pwrite_state {
+       vfs_handle_struct *handle;
+       files_struct *fsp;
+       ssize_t ret;
+       int err;
+};
+
+static void smb_full_audit_pwrite_done(struct tevent_req *subreq);
+
+static struct tevent_req *smb_full_audit_pwrite_send(
+       struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
+       struct tevent_context *ev, struct files_struct *fsp,
+       const void *data, size_t n, off_t offset)
+{
+       struct tevent_req *req, *subreq;
+       struct smb_full_audit_pwrite_state *state;
+
+       req = tevent_req_create(mem_ctx, &state,
+                               struct smb_full_audit_pwrite_state);
+       if (req == NULL) {
+               do_log(SMB_VFS_OP_PWRITE_SEND, false, handle, "%s",
+                      fsp_str_do_log(fsp));
+               return NULL;
+       }
+       state->handle = handle;
+       state->fsp = fsp;
+
+       subreq = SMB_VFS_NEXT_PWRITE_SEND(state, ev, handle, fsp, data,
+                                        n, offset);
+       if (tevent_req_nomem(subreq, req)) {
+               do_log(SMB_VFS_OP_PWRITE_SEND, false, handle, "%s",
+                      fsp_str_do_log(fsp));
+               return tevent_req_post(req, ev);
+       }
+       tevent_req_set_callback(subreq, smb_full_audit_pwrite_done, req);
+
+       do_log(SMB_VFS_OP_PWRITE_SEND, true, handle, "%s",
+              fsp_str_do_log(fsp));
+       return req;
+}
+
+static void smb_full_audit_pwrite_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct smb_full_audit_pwrite_state *state = tevent_req_data(
+               req, struct smb_full_audit_pwrite_state);
+
+       state->ret = SMB_VFS_PWRITE_RECV(subreq, &state->err);
+       TALLOC_FREE(subreq);
+       tevent_req_done(req);
+}
+
+static ssize_t smb_full_audit_pwrite_recv(struct tevent_req *req, int *err)
+{
+       struct smb_full_audit_pwrite_state *state = tevent_req_data(
+               req, struct smb_full_audit_pwrite_state);
+
+       if (tevent_req_is_unix_error(req, err)) {
+               do_log(SMB_VFS_OP_PWRITE_RECV, false, state->handle, "%s",
+                      fsp_str_do_log(state->fsp));
+               return -1;
+       }
+
+       do_log(SMB_VFS_OP_PWRITE_RECV, (state->ret >= 0), state->handle, "%s",
+              fsp_str_do_log(state->fsp));
+
+       *err = state->err;
+       return state->ret;
+}
+
+static off_t smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
+                            off_t offset, int whence)
 {
        ssize_t result;
 
@@ -1012,7 +1103,7 @@ static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *f
 
 static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
                              files_struct *fromfsp,
-                             const DATA_BLOB *hdr, SMB_OFF_T offset,
+                             const DATA_BLOB *hdr, off_t offset,
                              size_t n)
 {
        ssize_t result;
@@ -1027,7 +1118,7 @@ static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
 
 static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
                      files_struct *tofsp,
-                             SMB_OFF_T offset,
+                             off_t offset,
                              size_t n)
 {
        ssize_t result;
@@ -1067,6 +1158,74 @@ static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp)
        return result;    
 }
 
+struct smb_full_audit_fsync_state {
+       vfs_handle_struct *handle;
+       files_struct *fsp;
+       int ret;
+       int err;
+};
+
+static void smb_full_audit_fsync_done(struct tevent_req *subreq);
+
+static struct tevent_req *smb_full_audit_fsync_send(
+       struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
+       struct tevent_context *ev, struct files_struct *fsp)
+{
+       struct tevent_req *req, *subreq;
+       struct smb_full_audit_fsync_state *state;
+
+       req = tevent_req_create(mem_ctx, &state,
+                               struct smb_full_audit_fsync_state);
+       if (req == NULL) {
+               do_log(SMB_VFS_OP_FSYNC_SEND, false, handle, "%s",
+                      fsp_str_do_log(fsp));
+               return NULL;
+       }
+       state->handle = handle;
+       state->fsp = fsp;
+
+       subreq = SMB_VFS_NEXT_FSYNC_SEND(state, ev, handle, fsp);
+       if (tevent_req_nomem(subreq, req)) {
+               do_log(SMB_VFS_OP_FSYNC_SEND, false, handle, "%s",
+                      fsp_str_do_log(fsp));
+               return tevent_req_post(req, ev);
+       }
+       tevent_req_set_callback(subreq, smb_full_audit_fsync_done, req);
+
+       do_log(SMB_VFS_OP_FSYNC_SEND, true, handle, "%s", fsp_str_do_log(fsp));
+       return req;
+}
+
+static void smb_full_audit_fsync_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct smb_full_audit_fsync_state *state = tevent_req_data(
+               req, struct smb_full_audit_fsync_state);
+
+       state->ret = SMB_VFS_FSYNC_RECV(subreq, &state->err);
+       TALLOC_FREE(subreq);
+       tevent_req_done(req);
+}
+
+static int smb_full_audit_fsync_recv(struct tevent_req *req, int *err)
+{
+       struct smb_full_audit_fsync_state *state = tevent_req_data(
+               req, struct smb_full_audit_fsync_state);
+
+       if (tevent_req_is_unix_error(req, err)) {
+               do_log(SMB_VFS_OP_FSYNC_RECV, false, state->handle, "%s",
+                      fsp_str_do_log(state->fsp));
+               return -1;
+       }
+
+       do_log(SMB_VFS_OP_FSYNC_RECV, (state->ret >= 0), state->handle, "%s",
+              fsp_str_do_log(state->fsp));
+
+       *err = state->err;
+       return state->ret;
+}
+
 static int smb_full_audit_stat(vfs_handle_struct *handle,
                               struct smb_filename *smb_fname)
 {
@@ -1235,7 +1394,7 @@ static int smb_full_audit_ntimes(vfs_handle_struct *handle,
 }
 
 static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
-                          SMB_OFF_T len)
+                          off_t len)
 {
        int result;
 
@@ -1249,8 +1408,8 @@ static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp
 
 static int smb_full_audit_fallocate(vfs_handle_struct *handle, files_struct *fsp,
                           enum vfs_fallocate_mode mode,
-                          SMB_OFF_T offset,
-                          SMB_OFF_T len)
+                          off_t offset,
+                          off_t len)
 {
        int result;
 
@@ -1263,7 +1422,7 @@ static int smb_full_audit_fallocate(vfs_handle_struct *handle, files_struct *fsp
 }
 
 static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
-                      int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
+                      int op, off_t offset, off_t count, int type)
 {
        bool result;
 
@@ -1302,7 +1461,7 @@ static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct
 }
 
 static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
-                      SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid)
+                      off_t *poffset, off_t *pcount, int *ptype, pid_t *ppid)
 {
        bool result;
 
@@ -1548,8 +1707,6 @@ static void smb_full_audit_strict_unlock(struct vfs_handle_struct *handle,
        do_log(SMB_VFS_OP_STRICT_UNLOCK, true, handle,
            "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
            plock->size);
-
-       return;
 }
 
 static NTSTATUS smb_full_audit_translate_name(struct vfs_handle_struct *handle,
@@ -1637,68 +1794,6 @@ static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fs
        return result;
 }
 
-static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct *handle,
-
-                                  SMB_ACL_T theacl, int entry_id,
-                                  SMB_ACL_ENTRY_T *entry_p)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id,
-                                               entry_p);
-
-       do_log(SMB_VFS_OP_SYS_ACL_GET_ENTRY, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct *handle,
-
-                                     SMB_ACL_ENTRY_T entry_d,
-                                     SMB_ACL_TAG_T *tag_type_p)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_GET_TAG_TYPE(handle, entry_d,
-                                                  tag_type_p);
-
-       do_log(SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct *handle,
-
-                                    SMB_ACL_ENTRY_T entry_d,
-                                    SMB_ACL_PERMSET_T *permset_p)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_GET_PERMSET(handle, entry_d,
-                                                 permset_p);
-
-       do_log(SMB_VFS_OP_SYS_ACL_GET_PERMSET, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct *handle,
-
-                                         SMB_ACL_ENTRY_T entry_d)
-{
-       void *result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_GET_QUALIFIER(handle, entry_d);
-
-       do_log(SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, (result != NULL), handle,
-              "");
-
-       return result;
-}
-
 static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
                                        const char *path_p,
                                        SMB_ACL_TYPE_T type)
@@ -1726,137 +1821,6 @@ static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
        return result;
 }
 
-static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct *handle,
-
-                                    SMB_ACL_PERMSET_T permset)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_CLEAR_PERMS(handle, permset);
-
-       do_log(SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct *handle,
-
-                                 SMB_ACL_PERMSET_T permset,
-                                 SMB_ACL_PERM_T perm)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_ADD_PERM(handle, permset, perm);
-
-       do_log(SMB_VFS_OP_SYS_ACL_ADD_PERM, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct *handle,
-                                   SMB_ACL_T theacl,
-                                   ssize_t *plen)
-{
-       char * result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen);
-
-       do_log(SMB_VFS_OP_SYS_ACL_TO_TEXT, (result != NULL), handle,
-              "");
-
-       return result;
-}
-
-static SMB_ACL_T smb_full_audit_sys_acl_init(vfs_handle_struct *handle,
-
-                                   int count)
-{
-       SMB_ACL_T result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_INIT(handle, count);
-
-       do_log(SMB_VFS_OP_SYS_ACL_INIT, (result != NULL), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct *handle,
-                                     SMB_ACL_T *pacl,
-                                     SMB_ACL_ENTRY_T *pentry)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_CREATE_ENTRY(handle, pacl, pentry);
-
-       do_log(SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct *handle,
-
-                                     SMB_ACL_ENTRY_T entry,
-                                     SMB_ACL_TAG_T tagtype)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_SET_TAG_TYPE(handle, entry,
-                                                  tagtype);
-
-       do_log(SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct *handle,
-
-                                      SMB_ACL_ENTRY_T entry,
-                                      void *qual)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_SET_QUALIFIER(handle, entry, qual);
-
-       do_log(SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct *handle,
-
-                                    SMB_ACL_ENTRY_T entry,
-                                    SMB_ACL_PERMSET_T permset)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_SET_PERMSET(handle, entry, permset);
-
-       do_log(SMB_VFS_OP_SYS_ACL_SET_PERMSET, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_valid(vfs_handle_struct *handle,
-
-                              SMB_ACL_T theacl )
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl);
-
-       do_log(SMB_VFS_OP_SYS_ACL_VALID, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
 
                                  const char *name, SMB_ACL_TYPE_T acltype,
@@ -1900,64 +1864,6 @@ static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
        return result;
 }
 
-static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct *handle,
-
-                                 SMB_ACL_PERMSET_T permset,
-                                 SMB_ACL_PERM_T perm)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_GET_PERM(handle, permset, perm);
-
-       do_log(SMB_VFS_OP_SYS_ACL_GET_PERM, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_free_text(vfs_handle_struct *handle,
-
-                                  char *text)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_FREE_TEXT(handle, text);
-
-       do_log(SMB_VFS_OP_SYS_ACL_FREE_TEXT, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct *handle,
-
-                                 SMB_ACL_T posix_acl)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_FREE_ACL(handle, posix_acl);
-
-       do_log(SMB_VFS_OP_SYS_ACL_FREE_ACL, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
-static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct *handle,
-                                       void *qualifier,
-                                       SMB_ACL_TAG_T tagtype)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_SYS_ACL_FREE_QUALIFIER(handle, qualifier,
-                                                    tagtype);
-
-       do_log(SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, (result >= 0), handle,
-              "");
-
-       return result;
-}
-
 static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
                              const char *path,
                              const char *name, void *value, size_t size)
@@ -1998,18 +1904,6 @@ static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
        return result;
 }
 
-static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
-                               const char *path, char *list, size_t size)
-{
-       ssize_t result;
-
-       result = SMB_VFS_NEXT_LLISTXATTR(handle, path, list, size);
-
-       do_log(SMB_VFS_OP_LLISTXATTR, (result >= 0), handle, "%s", path);
-
-       return result;
-}
-
 static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
                                struct files_struct *fsp, char *list,
                                size_t size)
@@ -2038,20 +1932,6 @@ static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
        return result;
 }
 
-static int smb_full_audit_lremovexattr(struct vfs_handle_struct *handle,
-                             const char *path,
-                             const char *name)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_LREMOVEXATTR(handle, path, name);
-
-       do_log(SMB_VFS_OP_LREMOVEXATTR, (result >= 0), handle,
-              "%s|%s", path, name);
-
-       return result;
-}
-
 static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
                              struct files_struct *fsp,
                              const char *name)
@@ -2082,22 +1962,6 @@ static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
        return result;
 }
 
-static int smb_full_audit_lsetxattr(struct vfs_handle_struct *handle,
-                          const char *path,
-                          const char *name, const void *value, size_t size,
-                          int flags)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_LSETXATTR(handle, path, name, value, size,
-                                       flags);
-
-       do_log(SMB_VFS_OP_LSETXATTR, (result >= 0), handle,
-              "%s|%s", path, name);
-
-       return result;
-}
-
 static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
                           struct files_struct *fsp, const char *name,
                           const void *value, size_t size, int flags)
@@ -2112,83 +1976,6 @@ static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
        return result;
 }
 
-static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_AIO_READ(handle, fsp, aiocb);
-       do_log(SMB_VFS_OP_AIO_READ, (result >= 0), handle,
-              "%s", fsp_str_do_log(fsp));
-
-       return result;
-}
-
-static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_AIO_WRITE(handle, fsp, aiocb);
-       do_log(SMB_VFS_OP_AIO_WRITE, (result >= 0), handle,
-              "%s", fsp_str_do_log(fsp));
-
-       return result;
-}
-
-static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);
-       do_log(SMB_VFS_OP_AIO_RETURN, (result >= 0), handle,
-              "%s", fsp_str_do_log(fsp));
-
-       return result;
-}
-
-static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_AIO_CANCEL(handle, fsp, aiocb);
-       do_log(SMB_VFS_OP_AIO_CANCEL, (result >= 0), handle,
-              "%s", fsp_str_do_log(fsp));
-
-       return result;
-}
-
-static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_AIO_ERROR(handle, fsp, aiocb);
-       do_log(SMB_VFS_OP_AIO_ERROR, (result >= 0), handle,
-              "%s", fsp_str_do_log(fsp));
-
-       return result;
-}
-
-static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_AIO_FSYNC(handle, fsp, op, aiocb);
-       do_log(SMB_VFS_OP_AIO_FSYNC, (result >= 0), handle,
-               "%s", fsp_str_do_log(fsp));
-
-       return result;
-}
-
-static int smb_full_audit_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts)
-{
-       int result;
-
-       result = SMB_VFS_NEXT_AIO_SUSPEND(handle, fsp, aiocb, n, ts);
-       do_log(SMB_VFS_OP_AIO_SUSPEND, (result >= 0), handle,
-               "%s", fsp_str_do_log(fsp));
-
-       return result;
-}
-
 static bool smb_full_audit_aio_force(struct vfs_handle_struct *handle,
                                     struct files_struct *fsp)
 {
@@ -2251,13 +2038,19 @@ static struct vfs_fn_pointers vfs_full_audit_fns = {
        .close_fn = smb_full_audit_close,
        .read_fn = smb_full_audit_read,
        .pread_fn = smb_full_audit_pread,
+       .pread_send_fn = smb_full_audit_pread_send,
+       .pread_recv_fn = smb_full_audit_pread_recv,
        .write_fn = smb_full_audit_write,
        .pwrite_fn = smb_full_audit_pwrite,
+       .pwrite_send_fn = smb_full_audit_pwrite_send,
+       .pwrite_recv_fn = smb_full_audit_pwrite_recv,
        .lseek_fn = smb_full_audit_lseek,
        .sendfile_fn = smb_full_audit_sendfile,
        .recvfile_fn = smb_full_audit_recvfile,
        .rename_fn = smb_full_audit_rename,
        .fsync_fn = smb_full_audit_fsync,
+       .fsync_send_fn = smb_full_audit_fsync_send,
+       .fsync_recv_fn = smb_full_audit_fsync_recv,
        .stat_fn = smb_full_audit_stat,
        .fstat_fn = smb_full_audit_fstat,
        .lstat_fn = smb_full_audit_lstat,
@@ -2299,46 +2092,19 @@ static struct vfs_fn_pointers vfs_full_audit_fns = {
        .fset_nt_acl_fn = smb_full_audit_fset_nt_acl,
        .chmod_acl_fn = smb_full_audit_chmod_acl,
        .fchmod_acl_fn = smb_full_audit_fchmod_acl,
-       .sys_acl_get_entry_fn = smb_full_audit_sys_acl_get_entry,
-       .sys_acl_get_tag_type_fn = smb_full_audit_sys_acl_get_tag_type,
-       .sys_acl_get_permset_fn = smb_full_audit_sys_acl_get_permset,
-       .sys_acl_get_qualifier_fn = smb_full_audit_sys_acl_get_qualifier,
        .sys_acl_get_file_fn = smb_full_audit_sys_acl_get_file,
        .sys_acl_get_fd_fn = smb_full_audit_sys_acl_get_fd,
-       .sys_acl_clear_perms_fn = smb_full_audit_sys_acl_clear_perms,
-       .sys_acl_add_perm_fn = smb_full_audit_sys_acl_add_perm,
-       .sys_acl_to_text_fn = smb_full_audit_sys_acl_to_text,
-       .sys_acl_init_fn = smb_full_audit_sys_acl_init,
-       .sys_acl_create_entry_fn = smb_full_audit_sys_acl_create_entry,
-       .sys_acl_set_tag_type_fn = smb_full_audit_sys_acl_set_tag_type,
-       .sys_acl_set_qualifier_fn = smb_full_audit_sys_acl_set_qualifier,
-       .sys_acl_set_permset_fn = smb_full_audit_sys_acl_set_permset,
-       .sys_acl_valid_fn = smb_full_audit_sys_acl_valid,
        .sys_acl_set_file_fn = smb_full_audit_sys_acl_set_file,
        .sys_acl_set_fd_fn = smb_full_audit_sys_acl_set_fd,
        .sys_acl_delete_def_file_fn = smb_full_audit_sys_acl_delete_def_file,
-       .sys_acl_get_perm_fn = smb_full_audit_sys_acl_get_perm,
-       .sys_acl_free_text_fn = smb_full_audit_sys_acl_free_text,
-       .sys_acl_free_acl_fn = smb_full_audit_sys_acl_free_acl,
-       .sys_acl_free_qualifier_fn = smb_full_audit_sys_acl_free_qualifier,
        .getxattr_fn = smb_full_audit_getxattr,
        .fgetxattr_fn = smb_full_audit_fgetxattr,
        .listxattr_fn = smb_full_audit_listxattr,
-       .llistxattr_fn = smb_full_audit_llistxattr,
        .flistxattr_fn = smb_full_audit_flistxattr,
        .removexattr_fn = smb_full_audit_removexattr,
-       .lremovexattr_fn = smb_full_audit_lremovexattr,
        .fremovexattr_fn = smb_full_audit_fremovexattr,
        .setxattr_fn = smb_full_audit_setxattr,
-       .lsetxattr_fn = smb_full_audit_lsetxattr,
        .fsetxattr_fn = smb_full_audit_fsetxattr,
-       .aio_read_fn = smb_full_audit_aio_read,
-       .aio_write_fn = smb_full_audit_aio_write,
-       .aio_return_fn = smb_full_audit_aio_return,
-       .aio_cancel_fn = smb_full_audit_aio_cancel,
-       .aio_error_fn = smb_full_audit_aio_error,
-       .aio_fsync_fn = smb_full_audit_aio_fsync,
-       .aio_suspend_fn = smb_full_audit_aio_suspend,
        .aio_force_fn = smb_full_audit_aio_force,
        .is_offline_fn = smb_full_audit_is_offline,
        .set_offline_fn = smb_full_audit_set_offline,