s3/vfs: wrap async io function args inside struct vfs_aio_state
[nivanova/samba-autobuild/.git] / source3 / modules / vfs_full_audit.c
1 /* 
2  * Auditing VFS module for samba.  Log selected file operations to syslog
3  * facility.
4  *
5  * Copyright (C) Tim Potter, 1999-2000
6  * Copyright (C) Alexander Bokovoy, 2002
7  * Copyright (C) John H Terpstra, 2003
8  * Copyright (C) Stefan (metze) Metzmacher, 2003
9  * Copyright (C) Volker Lendecke, 2004
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 3 of the License, or
14  * (at your option) any later version.
15  *  
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *  
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, see <http://www.gnu.org/licenses/>.
23  */
24
25 /*
26  * This module implements parseable logging for all Samba VFS operations.
27  *
28  * You use it as follows:
29  *
30  * [tmp]
31  * path = /tmp
32  * vfs objects = full_audit
33  * full_audit:prefix = %u|%I
34  * full_audit:success = open opendir
35  * full_audit:failure = all
36  *
37  * vfs op can be "all" which means log all operations.
38  * vfs op can be "none" which means no logging.
39  *
40  * This leads to syslog entries of the form:
41  * smbd_audit: nobody|192.168.234.1|opendir|ok|.
42  * smbd_audit: nobody|192.168.234.1|open|fail (File not found)|r|x.txt
43  *
44  * where "nobody" is the connected username and "192.168.234.1" is the
45  * client's IP address. 
46  *
47  * Options:
48  *
49  * prefix: A macro expansion template prepended to the syslog entry.
50  *
51  * success: A list of VFS operations for which a successful completion should
52  * be logged. Defaults to no logging at all. The special operation "all" logs
53  * - you guessed it - everything.
54  *
55  * failure: A list of VFS operations for which failure to complete should be
56  * logged. Defaults to logging everything.
57  */
58
59
60 #include "includes.h"
61 #include "system/filesys.h"
62 #include "system/syslog.h"
63 #include "smbd/smbd.h"
64 #include "../librpc/gen_ndr/ndr_netlogon.h"
65 #include "auth.h"
66 #include "ntioctl.h"
67 #include "lib/param/loadparm.h"
68 #include "lib/util/bitmap.h"
69 #include "lib/util/tevent_unix.h"
70 #include "libcli/security/sddl.h"
71 #include "passdb/machine_sid.h"
72
73 static int vfs_full_audit_debug_level = DBGC_VFS;
74
75 struct vfs_full_audit_private_data {
76         struct bitmap *success_ops;
77         struct bitmap *failure_ops;
78         int syslog_facility;
79         int syslog_priority;
80         bool log_secdesc;
81         bool do_syslog;
82 };
83
84 #undef DBGC_CLASS
85 #define DBGC_CLASS vfs_full_audit_debug_level
86
87 typedef enum _vfs_op_type {
88         SMB_VFS_OP_NOOP = -1,
89
90         /* Disk operations */
91
92         SMB_VFS_OP_CONNECT = 0,
93         SMB_VFS_OP_DISCONNECT,
94         SMB_VFS_OP_DISK_FREE,
95         SMB_VFS_OP_GET_QUOTA,
96         SMB_VFS_OP_SET_QUOTA,
97         SMB_VFS_OP_GET_SHADOW_COPY_DATA,
98         SMB_VFS_OP_STATVFS,
99         SMB_VFS_OP_FS_CAPABILITIES,
100         SMB_VFS_OP_SNAP_CHECK_PATH,
101         SMB_VFS_OP_SNAP_CREATE,
102         SMB_VFS_OP_SNAP_DELETE,
103
104         /* Directory operations */
105
106         SMB_VFS_OP_OPENDIR,
107         SMB_VFS_OP_FDOPENDIR,
108         SMB_VFS_OP_READDIR,
109         SMB_VFS_OP_SEEKDIR,
110         SMB_VFS_OP_TELLDIR,
111         SMB_VFS_OP_REWINDDIR,
112         SMB_VFS_OP_MKDIR,
113         SMB_VFS_OP_RMDIR,
114         SMB_VFS_OP_CLOSEDIR,
115         SMB_VFS_OP_INIT_SEARCH_OP,
116
117         /* File operations */
118
119         SMB_VFS_OP_OPEN,
120         SMB_VFS_OP_CREATE_FILE,
121         SMB_VFS_OP_CLOSE,
122         SMB_VFS_OP_READ,
123         SMB_VFS_OP_PREAD,
124         SMB_VFS_OP_PREAD_SEND,
125         SMB_VFS_OP_PREAD_RECV,
126         SMB_VFS_OP_WRITE,
127         SMB_VFS_OP_PWRITE,
128         SMB_VFS_OP_PWRITE_SEND,
129         SMB_VFS_OP_PWRITE_RECV,
130         SMB_VFS_OP_LSEEK,
131         SMB_VFS_OP_SENDFILE,
132         SMB_VFS_OP_RECVFILE,
133         SMB_VFS_OP_RENAME,
134         SMB_VFS_OP_FSYNC,
135         SMB_VFS_OP_FSYNC_SEND,
136         SMB_VFS_OP_FSYNC_RECV,
137         SMB_VFS_OP_STAT,
138         SMB_VFS_OP_FSTAT,
139         SMB_VFS_OP_LSTAT,
140         SMB_VFS_OP_GET_ALLOC_SIZE,
141         SMB_VFS_OP_UNLINK,
142         SMB_VFS_OP_CHMOD,
143         SMB_VFS_OP_FCHMOD,
144         SMB_VFS_OP_CHOWN,
145         SMB_VFS_OP_FCHOWN,
146         SMB_VFS_OP_LCHOWN,
147         SMB_VFS_OP_CHDIR,
148         SMB_VFS_OP_GETWD,
149         SMB_VFS_OP_NTIMES,
150         SMB_VFS_OP_FTRUNCATE,
151         SMB_VFS_OP_FALLOCATE,
152         SMB_VFS_OP_LOCK,
153         SMB_VFS_OP_KERNEL_FLOCK,
154         SMB_VFS_OP_LINUX_SETLEASE,
155         SMB_VFS_OP_GETLOCK,
156         SMB_VFS_OP_SYMLINK,
157         SMB_VFS_OP_READLINK,
158         SMB_VFS_OP_LINK,
159         SMB_VFS_OP_MKNOD,
160         SMB_VFS_OP_REALPATH,
161         SMB_VFS_OP_CHFLAGS,
162         SMB_VFS_OP_FILE_ID_CREATE,
163         SMB_VFS_OP_STREAMINFO,
164         SMB_VFS_OP_GET_REAL_FILENAME,
165         SMB_VFS_OP_CONNECTPATH,
166         SMB_VFS_OP_BRL_LOCK_WINDOWS,
167         SMB_VFS_OP_BRL_UNLOCK_WINDOWS,
168         SMB_VFS_OP_BRL_CANCEL_WINDOWS,
169         SMB_VFS_OP_STRICT_LOCK,
170         SMB_VFS_OP_STRICT_UNLOCK,
171         SMB_VFS_OP_TRANSLATE_NAME,
172         SMB_VFS_OP_COPY_CHUNK_SEND,
173         SMB_VFS_OP_COPY_CHUNK_RECV,
174         SMB_VFS_OP_GET_COMPRESSION,
175         SMB_VFS_OP_SET_COMPRESSION,
176         SMB_VFS_OP_READDIR_ATTR,
177
178         /* NT ACL operations. */
179
180         SMB_VFS_OP_FGET_NT_ACL,
181         SMB_VFS_OP_GET_NT_ACL,
182         SMB_VFS_OP_FSET_NT_ACL,
183
184         /* POSIX ACL operations. */
185
186         SMB_VFS_OP_CHMOD_ACL,
187         SMB_VFS_OP_FCHMOD_ACL,
188
189         SMB_VFS_OP_SYS_ACL_GET_FILE,
190         SMB_VFS_OP_SYS_ACL_GET_FD,
191         SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE,
192         SMB_VFS_OP_SYS_ACL_BLOB_GET_FD,
193         SMB_VFS_OP_SYS_ACL_SET_FILE,
194         SMB_VFS_OP_SYS_ACL_SET_FD,
195         SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
196
197         /* EA operations. */
198         SMB_VFS_OP_GETXATTR,
199         SMB_VFS_OP_FGETXATTR,
200         SMB_VFS_OP_LISTXATTR,
201         SMB_VFS_OP_FLISTXATTR,
202         SMB_VFS_OP_REMOVEXATTR,
203         SMB_VFS_OP_FREMOVEXATTR,
204         SMB_VFS_OP_SETXATTR,
205         SMB_VFS_OP_FSETXATTR,
206
207         /* aio operations */
208         SMB_VFS_OP_AIO_FORCE,
209
210         /* offline operations */
211         SMB_VFS_OP_IS_OFFLINE,
212         SMB_VFS_OP_SET_OFFLINE,
213
214         /* This should always be last enum value */
215
216         SMB_VFS_OP_LAST
217 } vfs_op_type;
218
219 /* The following array *must* be in the same order as defined in vfs_op_type */
220
221 static struct {
222         vfs_op_type type;
223         const char *name;
224 } vfs_op_names[] = {
225         { SMB_VFS_OP_CONNECT,   "connect" },
226         { SMB_VFS_OP_DISCONNECT,        "disconnect" },
227         { SMB_VFS_OP_DISK_FREE, "disk_free" },
228         { SMB_VFS_OP_GET_QUOTA, "get_quota" },
229         { SMB_VFS_OP_SET_QUOTA, "set_quota" },
230         { SMB_VFS_OP_GET_SHADOW_COPY_DATA,      "get_shadow_copy_data" },
231         { SMB_VFS_OP_STATVFS,   "statvfs" },
232         { SMB_VFS_OP_FS_CAPABILITIES,   "fs_capabilities" },
233         { SMB_VFS_OP_SNAP_CHECK_PATH, "snap_check_path" },
234         { SMB_VFS_OP_SNAP_CREATE, "snap_create" },
235         { SMB_VFS_OP_SNAP_DELETE, "snap_delete" },
236         { SMB_VFS_OP_OPENDIR,   "opendir" },
237         { SMB_VFS_OP_FDOPENDIR, "fdopendir" },
238         { SMB_VFS_OP_READDIR,   "readdir" },
239         { SMB_VFS_OP_SEEKDIR,   "seekdir" },
240         { SMB_VFS_OP_TELLDIR,   "telldir" },
241         { SMB_VFS_OP_REWINDDIR, "rewinddir" },
242         { SMB_VFS_OP_MKDIR,     "mkdir" },
243         { SMB_VFS_OP_RMDIR,     "rmdir" },
244         { SMB_VFS_OP_CLOSEDIR,  "closedir" },
245         { SMB_VFS_OP_INIT_SEARCH_OP, "init_search_op" },
246         { SMB_VFS_OP_OPEN,      "open" },
247         { SMB_VFS_OP_CREATE_FILE, "create_file" },
248         { SMB_VFS_OP_CLOSE,     "close" },
249         { SMB_VFS_OP_READ,      "read" },
250         { SMB_VFS_OP_PREAD,     "pread" },
251         { SMB_VFS_OP_PREAD_SEND,        "pread_send" },
252         { SMB_VFS_OP_PREAD_RECV,        "pread_recv" },
253         { SMB_VFS_OP_WRITE,     "write" },
254         { SMB_VFS_OP_PWRITE,    "pwrite" },
255         { SMB_VFS_OP_PWRITE_SEND,       "pwrite_send" },
256         { SMB_VFS_OP_PWRITE_RECV,       "pwrite_recv" },
257         { SMB_VFS_OP_LSEEK,     "lseek" },
258         { SMB_VFS_OP_SENDFILE,  "sendfile" },
259         { SMB_VFS_OP_RECVFILE,  "recvfile" },
260         { SMB_VFS_OP_RENAME,    "rename" },
261         { SMB_VFS_OP_FSYNC,     "fsync" },
262         { SMB_VFS_OP_FSYNC_SEND,        "fsync_send" },
263         { SMB_VFS_OP_FSYNC_RECV,        "fsync_recv" },
264         { SMB_VFS_OP_STAT,      "stat" },
265         { SMB_VFS_OP_FSTAT,     "fstat" },
266         { SMB_VFS_OP_LSTAT,     "lstat" },
267         { SMB_VFS_OP_GET_ALLOC_SIZE,    "get_alloc_size" },
268         { SMB_VFS_OP_UNLINK,    "unlink" },
269         { SMB_VFS_OP_CHMOD,     "chmod" },
270         { SMB_VFS_OP_FCHMOD,    "fchmod" },
271         { SMB_VFS_OP_CHOWN,     "chown" },
272         { SMB_VFS_OP_FCHOWN,    "fchown" },
273         { SMB_VFS_OP_LCHOWN,    "lchown" },
274         { SMB_VFS_OP_CHDIR,     "chdir" },
275         { SMB_VFS_OP_GETWD,     "getwd" },
276         { SMB_VFS_OP_NTIMES,    "ntimes" },
277         { SMB_VFS_OP_FTRUNCATE, "ftruncate" },
278         { SMB_VFS_OP_FALLOCATE,"fallocate" },
279         { SMB_VFS_OP_LOCK,      "lock" },
280         { SMB_VFS_OP_KERNEL_FLOCK,      "kernel_flock" },
281         { SMB_VFS_OP_LINUX_SETLEASE, "linux_setlease" },
282         { SMB_VFS_OP_GETLOCK,   "getlock" },
283         { SMB_VFS_OP_SYMLINK,   "symlink" },
284         { SMB_VFS_OP_READLINK,  "readlink" },
285         { SMB_VFS_OP_LINK,      "link" },
286         { SMB_VFS_OP_MKNOD,     "mknod" },
287         { SMB_VFS_OP_REALPATH,  "realpath" },
288         { SMB_VFS_OP_CHFLAGS,   "chflags" },
289         { SMB_VFS_OP_FILE_ID_CREATE,    "file_id_create" },
290         { SMB_VFS_OP_STREAMINFO,        "streaminfo" },
291         { SMB_VFS_OP_GET_REAL_FILENAME, "get_real_filename" },
292         { SMB_VFS_OP_CONNECTPATH,       "connectpath" },
293         { SMB_VFS_OP_BRL_LOCK_WINDOWS,  "brl_lock_windows" },
294         { SMB_VFS_OP_BRL_UNLOCK_WINDOWS, "brl_unlock_windows" },
295         { SMB_VFS_OP_BRL_CANCEL_WINDOWS, "brl_cancel_windows" },
296         { SMB_VFS_OP_STRICT_LOCK, "strict_lock" },
297         { SMB_VFS_OP_STRICT_UNLOCK, "strict_unlock" },
298         { SMB_VFS_OP_TRANSLATE_NAME,    "translate_name" },
299         { SMB_VFS_OP_COPY_CHUNK_SEND,   "copy_chunk_send" },
300         { SMB_VFS_OP_COPY_CHUNK_RECV,   "copy_chunk_recv" },
301         { SMB_VFS_OP_GET_COMPRESSION,   "get_compression" },
302         { SMB_VFS_OP_SET_COMPRESSION,   "set_compression" },
303         { SMB_VFS_OP_READDIR_ATTR,      "readdir_attr" },
304         { SMB_VFS_OP_FGET_NT_ACL,       "fget_nt_acl" },
305         { SMB_VFS_OP_GET_NT_ACL,        "get_nt_acl" },
306         { SMB_VFS_OP_FSET_NT_ACL,       "fset_nt_acl" },
307         { SMB_VFS_OP_CHMOD_ACL, "chmod_acl" },
308         { SMB_VFS_OP_FCHMOD_ACL,        "fchmod_acl" },
309         { SMB_VFS_OP_SYS_ACL_GET_FILE,  "sys_acl_get_file" },
310         { SMB_VFS_OP_SYS_ACL_GET_FD,    "sys_acl_get_fd" },
311         { SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE,     "sys_acl_blob_get_file" },
312         { SMB_VFS_OP_SYS_ACL_BLOB_GET_FD,       "sys_acl_blob_get_fd" },
313         { SMB_VFS_OP_SYS_ACL_SET_FILE,  "sys_acl_set_file" },
314         { SMB_VFS_OP_SYS_ACL_SET_FD,    "sys_acl_set_fd" },
315         { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,   "sys_acl_delete_def_file" },
316         { SMB_VFS_OP_GETXATTR,  "getxattr" },
317         { SMB_VFS_OP_FGETXATTR, "fgetxattr" },
318         { SMB_VFS_OP_LISTXATTR, "listxattr" },
319         { SMB_VFS_OP_FLISTXATTR,        "flistxattr" },
320         { SMB_VFS_OP_REMOVEXATTR,       "removexattr" },
321         { SMB_VFS_OP_FREMOVEXATTR,      "fremovexattr" },
322         { SMB_VFS_OP_SETXATTR,  "setxattr" },
323         { SMB_VFS_OP_FSETXATTR, "fsetxattr" },
324         { SMB_VFS_OP_AIO_FORCE, "aio_force" },
325         { SMB_VFS_OP_IS_OFFLINE, "is_offline" },
326         { SMB_VFS_OP_SET_OFFLINE, "set_offline" },
327         { SMB_VFS_OP_LAST, NULL }
328 };
329
330 static int audit_syslog_facility(vfs_handle_struct *handle)
331 {
332         static const struct enum_list enum_log_facilities[] = {
333                 { LOG_USER, "USER" },
334                 { LOG_LOCAL0, "LOCAL0" },
335                 { LOG_LOCAL1, "LOCAL1" },
336                 { LOG_LOCAL2, "LOCAL2" },
337                 { LOG_LOCAL3, "LOCAL3" },
338                 { LOG_LOCAL4, "LOCAL4" },
339                 { LOG_LOCAL5, "LOCAL5" },
340                 { LOG_LOCAL6, "LOCAL6" },
341                 { LOG_LOCAL7, "LOCAL7" },
342                 { -1, NULL}
343         };
344
345         int facility;
346
347         facility = lp_parm_enum(SNUM(handle->conn), "full_audit", "facility", enum_log_facilities, LOG_USER);
348
349         return facility;
350 }
351
352 static int audit_syslog_priority(vfs_handle_struct *handle)
353 {
354         static const struct enum_list enum_log_priorities[] = {
355                 { LOG_EMERG, "EMERG" },
356                 { LOG_ALERT, "ALERT" },
357                 { LOG_CRIT, "CRIT" },
358                 { LOG_ERR, "ERR" },
359                 { LOG_WARNING, "WARNING" },
360                 { LOG_NOTICE, "NOTICE" },
361                 { LOG_INFO, "INFO" },
362                 { LOG_DEBUG, "DEBUG" },
363                 { -1, NULL}
364         };
365
366         int priority;
367
368         priority = lp_parm_enum(SNUM(handle->conn), "full_audit", "priority",
369                                 enum_log_priorities, LOG_NOTICE);
370         if (priority == -1) {
371                 priority = LOG_WARNING;
372         }
373
374         return priority;
375 }
376
377 static char *audit_prefix(TALLOC_CTX *ctx, connection_struct *conn)
378 {
379         char *prefix = NULL;
380         char *result;
381
382         prefix = talloc_strdup(ctx,
383                         lp_parm_const_string(SNUM(conn), "full_audit",
384                                              "prefix", "%u|%I"));
385         if (!prefix) {
386                 return NULL;
387         }
388         result = talloc_sub_advanced(ctx,
389                         lp_servicename(talloc_tos(), SNUM(conn)),
390                         conn->session_info->unix_info->unix_name,
391                         conn->connectpath,
392                         conn->session_info->unix_token->gid,
393                         conn->session_info->unix_info->sanitized_username,
394                         conn->session_info->info->domain_name,
395                         prefix);
396         TALLOC_FREE(prefix);
397         return result;
398 }
399
400 static bool log_success(struct vfs_full_audit_private_data *pd, vfs_op_type op)
401 {
402         if (pd->success_ops == NULL) {
403                 return True;
404         }
405
406         return bitmap_query(pd->success_ops, op);
407 }
408
409 static bool log_failure(struct vfs_full_audit_private_data *pd, vfs_op_type op)
410 {
411         if (pd->failure_ops == NULL)
412                 return True;
413
414         return bitmap_query(pd->failure_ops, op);
415 }
416
417 static struct bitmap *init_bitmap(TALLOC_CTX *mem_ctx, const char **ops)
418 {
419         struct bitmap *bm;
420
421         if (ops == NULL) {
422                 return NULL;
423         }
424
425         bm = bitmap_talloc(mem_ctx, SMB_VFS_OP_LAST);
426         if (bm == NULL) {
427                 DEBUG(0, ("Could not alloc bitmap -- "
428                           "defaulting to logging everything\n"));
429                 return NULL;
430         }
431
432         for (; *ops != NULL; ops += 1) {
433                 int i;
434                 bool neg = false;
435                 const char *op;
436
437                 if (strequal(*ops, "all")) {
438                         for (i=0; i<SMB_VFS_OP_LAST; i++) {
439                                 bitmap_set(bm, i);
440                         }
441                         continue;
442                 }
443
444                 if (strequal(*ops, "none")) {
445                         break;
446                 }
447
448                 op = ops[0];
449                 if (op[0] == '!') {
450                         neg = true;
451                         op += 1;
452                 }
453
454                 for (i=0; i<SMB_VFS_OP_LAST; i++) {
455                         if ((vfs_op_names[i].name == NULL)
456                          || (vfs_op_names[i].type != i)) {
457                                 smb_panic("vfs_full_audit.c: name table not "
458                                           "in sync with vfs_op_type enums\n");
459                         }
460                         if (strequal(op, vfs_op_names[i].name)) {
461                                 if (neg) {
462                                         bitmap_clear(bm, i);
463                                 } else {
464                                         bitmap_set(bm, i);
465                                 }
466                                 break;
467                         }
468                 }
469                 if (i == SMB_VFS_OP_LAST) {
470                         DEBUG(0, ("Could not find opname %s, logging all\n",
471                                   *ops));
472                         TALLOC_FREE(bm);
473                         return NULL;
474                 }
475         }
476         return bm;
477 }
478
479 static const char *audit_opname(vfs_op_type op)
480 {
481         if (op >= SMB_VFS_OP_LAST)
482                 return "INVALID VFS OP";
483         return vfs_op_names[op].name;
484 }
485
486 static TALLOC_CTX *tmp_do_log_ctx;
487 /*
488  * Get us a temporary talloc context usable just for DEBUG arguments
489  */
490 static TALLOC_CTX *do_log_ctx(void)
491 {
492         if (tmp_do_log_ctx == NULL) {
493                 tmp_do_log_ctx = talloc_named_const(NULL, 0, "do_log_ctx");
494         }
495         return tmp_do_log_ctx;
496 }
497
498 static void do_log(vfs_op_type op, bool success, vfs_handle_struct *handle,
499                    const char *format, ...)
500 {
501         struct vfs_full_audit_private_data *pd;
502         fstring err_msg;
503         char *audit_pre = NULL;
504         va_list ap;
505         char *op_msg = NULL;
506
507         SMB_VFS_HANDLE_GET_DATA(handle, pd,
508                                 struct vfs_full_audit_private_data,
509                                 return;);
510
511         if (success && (!log_success(pd, op)))
512                 goto out;
513
514         if (!success && (!log_failure(pd, op)))
515                 goto out;
516
517         if (success)
518                 fstrcpy(err_msg, "ok");
519         else
520                 fstr_sprintf(err_msg, "fail (%s)", strerror(errno));
521
522         va_start(ap, format);
523         op_msg = talloc_vasprintf(talloc_tos(), format, ap);
524         va_end(ap);
525
526         if (!op_msg) {
527                 goto out;
528         }
529
530         audit_pre = audit_prefix(talloc_tos(), handle->conn);
531
532         if (pd->do_syslog) {
533                 int priority;
534
535                 /*
536                  * Specify the facility to interoperate with other syslog
537                  * callers (smbd for example).
538                  */
539                 priority = pd->syslog_priority | pd->syslog_facility;
540
541                 syslog(priority, "%s|%s|%s|%s\n",
542                        audit_pre ? audit_pre : "",
543                        audit_opname(op), err_msg, op_msg);
544         } else {
545                 DEBUG(1, ("%s|%s|%s|%s\n",
546                           audit_pre ? audit_pre : "",
547                           audit_opname(op), err_msg, op_msg));
548         }
549  out:
550         TALLOC_FREE(audit_pre);
551         TALLOC_FREE(op_msg);
552         TALLOC_FREE(tmp_do_log_ctx);
553 }
554
555 /**
556  * Return a string using the do_log_ctx()
557  */
558 static const char *smb_fname_str_do_log(const struct smb_filename *smb_fname)
559 {
560         char *fname = NULL;
561         NTSTATUS status;
562
563         if (smb_fname == NULL) {
564                 return "";
565         }
566         status = get_full_smb_filename(do_log_ctx(), smb_fname, &fname);
567         if (!NT_STATUS_IS_OK(status)) {
568                 return "";
569         }
570         return fname;
571 }
572
573 /**
574  * Return an fsp debug string using the do_log_ctx()
575  */
576 static const char *fsp_str_do_log(const struct files_struct *fsp)
577 {
578         return smb_fname_str_do_log(fsp->fsp_name);
579 }
580
581 /* Implementation of vfs_ops.  Pass everything on to the default
582    operation but log event first. */
583
584 static int smb_full_audit_connect(vfs_handle_struct *handle,
585                          const char *svc, const char *user)
586 {
587         int result;
588         struct vfs_full_audit_private_data *pd = NULL;
589
590         result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
591         if (result < 0) {
592                 return result;
593         }
594
595         pd = talloc_zero(handle, struct vfs_full_audit_private_data);
596         if (!pd) {
597                 SMB_VFS_NEXT_DISCONNECT(handle);
598                 return -1;
599         }
600
601         pd->syslog_facility = audit_syslog_facility(handle);
602         if (pd->syslog_facility == -1) {
603                 DEBUG(1, ("%s: Unknown facility %s\n", __func__,
604                           lp_parm_const_string(SNUM(handle->conn),
605                                                "full_audit", "facility",
606                                                "USER")));
607                 SMB_VFS_NEXT_DISCONNECT(handle);
608                 return -1;
609         }
610
611         pd->syslog_priority = audit_syslog_priority(handle);
612
613         pd->log_secdesc = lp_parm_bool(SNUM(handle->conn),
614                                        "full_audit", "log_secdesc", false);
615
616         pd->do_syslog = lp_parm_bool(SNUM(handle->conn),
617                                      "full_audit", "syslog", true);
618
619 #ifdef WITH_SYSLOG
620         if (pd->do_syslog) {
621                 openlog("smbd_audit", 0, pd->syslog_facility);
622         }
623 #endif
624
625         pd->success_ops = init_bitmap(
626                 pd, lp_parm_string_list(SNUM(handle->conn), "full_audit",
627                                         "success", NULL));
628         pd->failure_ops = init_bitmap(
629                 pd, lp_parm_string_list(SNUM(handle->conn), "full_audit",
630                                         "failure", NULL));
631
632         /* Store the private data. */
633         SMB_VFS_HANDLE_SET_DATA(handle, pd, NULL,
634                                 struct vfs_full_audit_private_data, return -1);
635
636         do_log(SMB_VFS_OP_CONNECT, True, handle,
637                "%s", svc);
638
639         return 0;
640 }
641
642 static void smb_full_audit_disconnect(vfs_handle_struct *handle)
643 {
644         SMB_VFS_NEXT_DISCONNECT(handle);
645
646         do_log(SMB_VFS_OP_DISCONNECT, True, handle,
647                "%s", lp_servicename(talloc_tos(), SNUM(handle->conn)));
648
649         /* The bitmaps will be disconnected when the private
650            data is deleted. */
651 }
652
653 static uint64_t smb_full_audit_disk_free(vfs_handle_struct *handle,
654                                     const char *path, uint64_t *bsize,
655                                     uint64_t *dfree, uint64_t *dsize)
656 {
657         uint64_t result;
658
659         result = SMB_VFS_NEXT_DISK_FREE(handle, path, bsize, dfree, dsize);
660
661         /* Don't have a reasonable notion of failure here */
662
663         do_log(SMB_VFS_OP_DISK_FREE, True, handle, "%s", path);
664
665         return result;
666 }
667
668 static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
669                                     const char *path, enum SMB_QUOTA_TYPE qtype,
670                                     unid_t id, SMB_DISK_QUOTA *qt)
671 {
672         int result;
673
674         result = SMB_VFS_NEXT_GET_QUOTA(handle, path, qtype, id, qt);
675
676         do_log(SMB_VFS_OP_GET_QUOTA, (result >= 0), handle, "%s", path);
677
678         return result;
679 }
680
681 static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
682                            enum SMB_QUOTA_TYPE qtype, unid_t id,
683                            SMB_DISK_QUOTA *qt)
684 {
685         int result;
686
687         result = SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, qt);
688
689         do_log(SMB_VFS_OP_SET_QUOTA, (result >= 0), handle, "");
690
691         return result;
692 }
693
694 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
695                                 struct files_struct *fsp,
696                                 struct shadow_copy_data *shadow_copy_data,
697                                 bool labels)
698 {
699         int result;
700
701         result = SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle, fsp, shadow_copy_data, labels);
702
703         do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA, (result >= 0), handle, "");
704
705         return result;
706 }
707
708 static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
709                                 const char *path,
710                                 struct vfs_statvfs_struct *statbuf)
711 {
712         int result;
713
714         result = SMB_VFS_NEXT_STATVFS(handle, path, statbuf);
715
716         do_log(SMB_VFS_OP_STATVFS, (result >= 0), handle, "");
717
718         return result;
719 }
720
721 static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct *handle, enum timestamp_set_resolution *p_ts_res)
722 {
723         int result;
724
725         result = SMB_VFS_NEXT_FS_CAPABILITIES(handle, p_ts_res);
726
727         do_log(SMB_VFS_OP_FS_CAPABILITIES, true, handle, "");
728
729         return result;
730 }
731
732 static NTSTATUS smb_full_audit_snap_check_path(struct vfs_handle_struct *handle,
733                                                TALLOC_CTX *mem_ctx,
734                                                const char *service_path,
735                                                char **base_volume)
736 {
737         NTSTATUS status;
738
739         status = SMB_VFS_NEXT_SNAP_CHECK_PATH(handle, mem_ctx, service_path,
740                                               base_volume);
741         do_log(SMB_VFS_OP_SNAP_CHECK_PATH, NT_STATUS_IS_OK(status),
742                handle, "");
743
744         return status;
745 }
746
747 static NTSTATUS smb_full_audit_snap_create(struct vfs_handle_struct *handle,
748                                            TALLOC_CTX *mem_ctx,
749                                            const char *base_volume,
750                                            time_t *tstamp,
751                                            bool rw,
752                                            char **base_path,
753                                            char **snap_path)
754 {
755         NTSTATUS status;
756
757         status = SMB_VFS_NEXT_SNAP_CREATE(handle, mem_ctx, base_volume, tstamp,
758                                           rw, base_path, snap_path);
759         do_log(SMB_VFS_OP_SNAP_CREATE, NT_STATUS_IS_OK(status), handle, "");
760
761         return status;
762 }
763
764 static NTSTATUS smb_full_audit_snap_delete(struct vfs_handle_struct *handle,
765                                            TALLOC_CTX *mem_ctx,
766                                            char *base_path,
767                                            char *snap_path)
768 {
769         NTSTATUS status;
770
771         status = SMB_VFS_NEXT_SNAP_DELETE(handle, mem_ctx, base_path,
772                                           snap_path);
773         do_log(SMB_VFS_OP_SNAP_DELETE, NT_STATUS_IS_OK(status), handle, "");
774
775         return status;
776 }
777
778 static DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
779                         const struct smb_filename *smb_fname,
780                         const char *mask,
781                         uint32_t attr)
782 {
783         DIR *result;
784
785         result = SMB_VFS_NEXT_OPENDIR(handle, smb_fname, mask, attr);
786
787         do_log(SMB_VFS_OP_OPENDIR, (result != NULL), handle, "%s",
788                 smb_fname->base_name);
789
790         return result;
791 }
792
793 static DIR *smb_full_audit_fdopendir(vfs_handle_struct *handle,
794                           files_struct *fsp, const char *mask, uint32_t attr)
795 {
796         DIR *result;
797
798         result = SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask, attr);
799
800         do_log(SMB_VFS_OP_FDOPENDIR, (result != NULL), handle, "%s",
801                         fsp_str_do_log(fsp));
802
803         return result;
804 }
805
806 static struct dirent *smb_full_audit_readdir(vfs_handle_struct *handle,
807                                     DIR *dirp, SMB_STRUCT_STAT *sbuf)
808 {
809         struct dirent *result;
810
811         result = SMB_VFS_NEXT_READDIR(handle, dirp, sbuf);
812
813         /* This operation has no reasonable error condition
814          * (End of dir is also failure), so always succeed.
815          */
816         do_log(SMB_VFS_OP_READDIR, True, handle, "");
817
818         return result;
819 }
820
821 static void smb_full_audit_seekdir(vfs_handle_struct *handle,
822                         DIR *dirp, long offset)
823 {
824         SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
825
826         do_log(SMB_VFS_OP_SEEKDIR, True, handle, "");
827 }
828
829 static long smb_full_audit_telldir(vfs_handle_struct *handle,
830                         DIR *dirp)
831 {
832         long result;
833
834         result = SMB_VFS_NEXT_TELLDIR(handle, dirp);
835
836         do_log(SMB_VFS_OP_TELLDIR, True, handle, "");
837
838         return result;
839 }
840
841 static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
842                         DIR *dirp)
843 {
844         SMB_VFS_NEXT_REWINDDIR(handle, dirp);
845
846         do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
847 }
848
849 static int smb_full_audit_mkdir(vfs_handle_struct *handle,
850                        const struct smb_filename *smb_fname, mode_t mode)
851 {
852         int result;
853         
854         result = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
855         
856         do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s",
857                 smb_fname->base_name);
858
859         return result;
860 }
861
862 static int smb_full_audit_rmdir(vfs_handle_struct *handle,
863                        const struct smb_filename *smb_fname)
864 {
865         int result;
866         
867         result = SMB_VFS_NEXT_RMDIR(handle, smb_fname);
868
869         do_log(SMB_VFS_OP_RMDIR, (result >= 0), handle, "%s",
870                 smb_fname->base_name);
871
872         return result;
873 }
874
875 static int smb_full_audit_closedir(vfs_handle_struct *handle,
876                           DIR *dirp)
877 {
878         int result;
879
880         result = SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
881         
882         do_log(SMB_VFS_OP_CLOSEDIR, (result >= 0), handle, "");
883
884         return result;
885 }
886
887 static void smb_full_audit_init_search_op(vfs_handle_struct *handle,
888                         DIR *dirp)
889 {
890         SMB_VFS_NEXT_INIT_SEARCH_OP(handle, dirp);
891
892         do_log(SMB_VFS_OP_INIT_SEARCH_OP, True, handle, "");
893 }
894
895 static int smb_full_audit_open(vfs_handle_struct *handle,
896                                struct smb_filename *smb_fname,
897                                files_struct *fsp, int flags, mode_t mode)
898 {
899         int result;
900         
901         result = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
902
903         do_log(SMB_VFS_OP_OPEN, (result >= 0), handle, "%s|%s",
904                ((flags & O_WRONLY) || (flags & O_RDWR))?"w":"r",
905                smb_fname_str_do_log(smb_fname));
906
907         return result;
908 }
909
910 static NTSTATUS smb_full_audit_create_file(vfs_handle_struct *handle,
911                                       struct smb_request *req,
912                                       uint16_t root_dir_fid,
913                                       struct smb_filename *smb_fname,
914                                       uint32_t access_mask,
915                                       uint32_t share_access,
916                                       uint32_t create_disposition,
917                                       uint32_t create_options,
918                                       uint32_t file_attributes,
919                                       uint32_t oplock_request,
920                                       struct smb2_lease *lease,
921                                       uint64_t allocation_size,
922                                       uint32_t private_flags,
923                                       struct security_descriptor *sd,
924                                       struct ea_list *ea_list,
925                                       files_struct **result_fsp,
926                                       int *pinfo,
927                                       const struct smb2_create_blobs *in_context_blobs,
928                                       struct smb2_create_blobs *out_context_blobs)
929 {
930         NTSTATUS result;
931         const char* str_create_disposition;
932
933         switch (create_disposition) {
934         case FILE_SUPERSEDE:
935                 str_create_disposition = "supersede";
936                 break;
937         case FILE_OVERWRITE_IF:
938                 str_create_disposition = "overwrite_if";
939                 break;
940         case FILE_OPEN:
941                 str_create_disposition = "open";
942                 break;
943         case FILE_OVERWRITE:
944                 str_create_disposition = "overwrite";
945                 break;
946         case FILE_CREATE:
947                 str_create_disposition = "create";
948                 break;
949         case FILE_OPEN_IF:
950                 str_create_disposition = "open_if";
951                 break;
952         default:
953                 str_create_disposition = "unknown";
954         }
955
956         result = SMB_VFS_NEXT_CREATE_FILE(
957                 handle,                                 /* handle */
958                 req,                                    /* req */
959                 root_dir_fid,                           /* root_dir_fid */
960                 smb_fname,                              /* fname */
961                 access_mask,                            /* access_mask */
962                 share_access,                           /* share_access */
963                 create_disposition,                     /* create_disposition*/
964                 create_options,                         /* create_options */
965                 file_attributes,                        /* file_attributes */
966                 oplock_request,                         /* oplock_request */
967                 lease,                                  /* lease */
968                 allocation_size,                        /* allocation_size */
969                 private_flags,
970                 sd,                                     /* sd */
971                 ea_list,                                /* ea_list */
972                 result_fsp,                             /* result */
973                 pinfo,                                  /* pinfo */
974                 in_context_blobs, out_context_blobs);   /* create context */
975
976         do_log(SMB_VFS_OP_CREATE_FILE, (NT_STATUS_IS_OK(result)), handle,
977                "0x%x|%s|%s|%s", access_mask,
978                create_options & FILE_DIRECTORY_FILE ? "dir" : "file",
979                str_create_disposition, smb_fname_str_do_log(smb_fname));
980
981         return result;
982 }
983
984 static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp)
985 {
986         int result;
987         
988         result = SMB_VFS_NEXT_CLOSE(handle, fsp);
989
990         do_log(SMB_VFS_OP_CLOSE, (result >= 0), handle, "%s",
991                fsp_str_do_log(fsp));
992
993         return result;
994 }
995
996 static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
997                           void *data, size_t n)
998 {
999         ssize_t result;
1000
1001         result = SMB_VFS_NEXT_READ(handle, fsp, data, n);
1002
1003         do_log(SMB_VFS_OP_READ, (result >= 0), handle, "%s",
1004                fsp_str_do_log(fsp));
1005
1006         return result;
1007 }
1008
1009 static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
1010                            void *data, size_t n, off_t offset)
1011 {
1012         ssize_t result;
1013
1014         result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
1015
1016         do_log(SMB_VFS_OP_PREAD, (result >= 0), handle, "%s",
1017                fsp_str_do_log(fsp));
1018
1019         return result;
1020 }
1021
1022 struct smb_full_audit_pread_state {
1023         vfs_handle_struct *handle;
1024         files_struct *fsp;
1025         ssize_t ret;
1026         struct vfs_aio_state vfs_aio_state;
1027 };
1028
1029 static void smb_full_audit_pread_done(struct tevent_req *subreq);
1030
1031 static struct tevent_req *smb_full_audit_pread_send(
1032         struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
1033         struct tevent_context *ev, struct files_struct *fsp,
1034         void *data, size_t n, off_t offset)
1035 {
1036         struct tevent_req *req, *subreq;
1037         struct smb_full_audit_pread_state *state;
1038
1039         req = tevent_req_create(mem_ctx, &state,
1040                                 struct smb_full_audit_pread_state);
1041         if (req == NULL) {
1042                 do_log(SMB_VFS_OP_PREAD_SEND, false, handle, "%s",
1043                        fsp_str_do_log(fsp));
1044                 return NULL;
1045         }
1046         state->handle = handle;
1047         state->fsp = fsp;
1048
1049         subreq = SMB_VFS_NEXT_PREAD_SEND(state, ev, handle, fsp, data,
1050                                          n, offset);
1051         if (tevent_req_nomem(subreq, req)) {
1052                 do_log(SMB_VFS_OP_PREAD_SEND, false, handle, "%s",
1053                        fsp_str_do_log(fsp));
1054                 return tevent_req_post(req, ev);
1055         }
1056         tevent_req_set_callback(subreq, smb_full_audit_pread_done, req);
1057
1058         do_log(SMB_VFS_OP_PREAD_SEND, true, handle, "%s", fsp_str_do_log(fsp));
1059         return req;
1060 }
1061
1062 static void smb_full_audit_pread_done(struct tevent_req *subreq)
1063 {
1064         struct tevent_req *req = tevent_req_callback_data(
1065                 subreq, struct tevent_req);
1066         struct smb_full_audit_pread_state *state = tevent_req_data(
1067                 req, struct smb_full_audit_pread_state);
1068
1069         state->ret = SMB_VFS_PREAD_RECV(subreq, &state->vfs_aio_state);
1070         TALLOC_FREE(subreq);
1071         tevent_req_done(req);
1072 }
1073
1074 static ssize_t smb_full_audit_pread_recv(struct tevent_req *req,
1075                                          struct vfs_aio_state *vfs_aio_state)
1076 {
1077         struct smb_full_audit_pread_state *state = tevent_req_data(
1078                 req, struct smb_full_audit_pread_state);
1079
1080         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
1081                 do_log(SMB_VFS_OP_PREAD_RECV, false, state->handle, "%s",
1082                        fsp_str_do_log(state->fsp));
1083                 return -1;
1084         }
1085
1086         do_log(SMB_VFS_OP_PREAD_RECV, (state->ret >= 0), state->handle, "%s",
1087                fsp_str_do_log(state->fsp));
1088
1089         *vfs_aio_state = state->vfs_aio_state;
1090         return state->ret;
1091 }
1092
1093 static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
1094                            const void *data, size_t n)
1095 {
1096         ssize_t result;
1097
1098         result = SMB_VFS_NEXT_WRITE(handle, fsp, data, n);
1099
1100         do_log(SMB_VFS_OP_WRITE, (result >= 0), handle, "%s",
1101                fsp_str_do_log(fsp));
1102
1103         return result;
1104 }
1105
1106 static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
1107                             const void *data, size_t n,
1108                             off_t offset)
1109 {
1110         ssize_t result;
1111
1112         result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
1113
1114         do_log(SMB_VFS_OP_PWRITE, (result >= 0), handle, "%s",
1115                fsp_str_do_log(fsp));
1116
1117         return result;
1118 }
1119
1120 struct smb_full_audit_pwrite_state {
1121         vfs_handle_struct *handle;
1122         files_struct *fsp;
1123         ssize_t ret;
1124         struct vfs_aio_state vfs_aio_state;
1125 };
1126
1127 static void smb_full_audit_pwrite_done(struct tevent_req *subreq);
1128
1129 static struct tevent_req *smb_full_audit_pwrite_send(
1130         struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
1131         struct tevent_context *ev, struct files_struct *fsp,
1132         const void *data, size_t n, off_t offset)
1133 {
1134         struct tevent_req *req, *subreq;
1135         struct smb_full_audit_pwrite_state *state;
1136
1137         req = tevent_req_create(mem_ctx, &state,
1138                                 struct smb_full_audit_pwrite_state);
1139         if (req == NULL) {
1140                 do_log(SMB_VFS_OP_PWRITE_SEND, false, handle, "%s",
1141                        fsp_str_do_log(fsp));
1142                 return NULL;
1143         }
1144         state->handle = handle;
1145         state->fsp = fsp;
1146
1147         subreq = SMB_VFS_NEXT_PWRITE_SEND(state, ev, handle, fsp, data,
1148                                          n, offset);
1149         if (tevent_req_nomem(subreq, req)) {
1150                 do_log(SMB_VFS_OP_PWRITE_SEND, false, handle, "%s",
1151                        fsp_str_do_log(fsp));
1152                 return tevent_req_post(req, ev);
1153         }
1154         tevent_req_set_callback(subreq, smb_full_audit_pwrite_done, req);
1155
1156         do_log(SMB_VFS_OP_PWRITE_SEND, true, handle, "%s",
1157                fsp_str_do_log(fsp));
1158         return req;
1159 }
1160
1161 static void smb_full_audit_pwrite_done(struct tevent_req *subreq)
1162 {
1163         struct tevent_req *req = tevent_req_callback_data(
1164                 subreq, struct tevent_req);
1165         struct smb_full_audit_pwrite_state *state = tevent_req_data(
1166                 req, struct smb_full_audit_pwrite_state);
1167
1168         state->ret = SMB_VFS_PWRITE_RECV(subreq, &state->vfs_aio_state);
1169         TALLOC_FREE(subreq);
1170         tevent_req_done(req);
1171 }
1172
1173 static ssize_t smb_full_audit_pwrite_recv(struct tevent_req *req,
1174                                           struct vfs_aio_state *vfs_aio_state)
1175 {
1176         struct smb_full_audit_pwrite_state *state = tevent_req_data(
1177                 req, struct smb_full_audit_pwrite_state);
1178
1179         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
1180                 do_log(SMB_VFS_OP_PWRITE_RECV, false, state->handle, "%s",
1181                        fsp_str_do_log(state->fsp));
1182                 return -1;
1183         }
1184
1185         do_log(SMB_VFS_OP_PWRITE_RECV, (state->ret >= 0), state->handle, "%s",
1186                fsp_str_do_log(state->fsp));
1187
1188         *vfs_aio_state = state->vfs_aio_state;
1189         return state->ret;
1190 }
1191
1192 static off_t smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
1193                              off_t offset, int whence)
1194 {
1195         ssize_t result;
1196
1197         result = SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
1198
1199         do_log(SMB_VFS_OP_LSEEK, (result != (ssize_t)-1), handle,
1200                "%s", fsp_str_do_log(fsp));
1201
1202         return result;
1203 }
1204
1205 static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
1206                               files_struct *fromfsp,
1207                               const DATA_BLOB *hdr, off_t offset,
1208                               size_t n)
1209 {
1210         ssize_t result;
1211
1212         result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
1213
1214         do_log(SMB_VFS_OP_SENDFILE, (result >= 0), handle,
1215                "%s", fsp_str_do_log(fromfsp));
1216
1217         return result;
1218 }
1219
1220 static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
1221                       files_struct *tofsp,
1222                               off_t offset,
1223                               size_t n)
1224 {
1225         ssize_t result;
1226
1227         result = SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
1228
1229         do_log(SMB_VFS_OP_RECVFILE, (result >= 0), handle,
1230                "%s", fsp_str_do_log(tofsp));
1231
1232         return result;
1233 }
1234
1235 static int smb_full_audit_rename(vfs_handle_struct *handle,
1236                                  const struct smb_filename *smb_fname_src,
1237                                  const struct smb_filename *smb_fname_dst)
1238 {
1239         int result;
1240         
1241         result = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
1242
1243         do_log(SMB_VFS_OP_RENAME, (result >= 0), handle, "%s|%s",
1244                smb_fname_str_do_log(smb_fname_src),
1245                smb_fname_str_do_log(smb_fname_dst));
1246
1247         return result;    
1248 }
1249
1250 static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp)
1251 {
1252         int result;
1253         
1254         result = SMB_VFS_NEXT_FSYNC(handle, fsp);
1255
1256         do_log(SMB_VFS_OP_FSYNC, (result >= 0), handle, "%s",
1257                fsp_str_do_log(fsp));
1258
1259         return result;    
1260 }
1261
1262 struct smb_full_audit_fsync_state {
1263         vfs_handle_struct *handle;
1264         files_struct *fsp;
1265         int ret;
1266         struct vfs_aio_state vfs_aio_state;
1267 };
1268
1269 static void smb_full_audit_fsync_done(struct tevent_req *subreq);
1270
1271 static struct tevent_req *smb_full_audit_fsync_send(
1272         struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
1273         struct tevent_context *ev, struct files_struct *fsp)
1274 {
1275         struct tevent_req *req, *subreq;
1276         struct smb_full_audit_fsync_state *state;
1277
1278         req = tevent_req_create(mem_ctx, &state,
1279                                 struct smb_full_audit_fsync_state);
1280         if (req == NULL) {
1281                 do_log(SMB_VFS_OP_FSYNC_SEND, false, handle, "%s",
1282                        fsp_str_do_log(fsp));
1283                 return NULL;
1284         }
1285         state->handle = handle;
1286         state->fsp = fsp;
1287
1288         subreq = SMB_VFS_NEXT_FSYNC_SEND(state, ev, handle, fsp);
1289         if (tevent_req_nomem(subreq, req)) {
1290                 do_log(SMB_VFS_OP_FSYNC_SEND, false, handle, "%s",
1291                        fsp_str_do_log(fsp));
1292                 return tevent_req_post(req, ev);
1293         }
1294         tevent_req_set_callback(subreq, smb_full_audit_fsync_done, req);
1295
1296         do_log(SMB_VFS_OP_FSYNC_SEND, true, handle, "%s", fsp_str_do_log(fsp));
1297         return req;
1298 }
1299
1300 static void smb_full_audit_fsync_done(struct tevent_req *subreq)
1301 {
1302         struct tevent_req *req = tevent_req_callback_data(
1303                 subreq, struct tevent_req);
1304         struct smb_full_audit_fsync_state *state = tevent_req_data(
1305                 req, struct smb_full_audit_fsync_state);
1306
1307         state->ret = SMB_VFS_FSYNC_RECV(subreq, &state->vfs_aio_state);
1308         TALLOC_FREE(subreq);
1309         tevent_req_done(req);
1310 }
1311
1312 static int smb_full_audit_fsync_recv(struct tevent_req *req,
1313                                      struct vfs_aio_state *vfs_aio_state)
1314 {
1315         struct smb_full_audit_fsync_state *state = tevent_req_data(
1316                 req, struct smb_full_audit_fsync_state);
1317
1318         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
1319                 do_log(SMB_VFS_OP_FSYNC_RECV, false, state->handle, "%s",
1320                        fsp_str_do_log(state->fsp));
1321                 return -1;
1322         }
1323
1324         do_log(SMB_VFS_OP_FSYNC_RECV, (state->ret >= 0), state->handle, "%s",
1325                fsp_str_do_log(state->fsp));
1326
1327         *vfs_aio_state = state->vfs_aio_state;
1328         return state->ret;
1329 }
1330
1331 static int smb_full_audit_stat(vfs_handle_struct *handle,
1332                                struct smb_filename *smb_fname)
1333 {
1334         int result;
1335         
1336         result = SMB_VFS_NEXT_STAT(handle, smb_fname);
1337
1338         do_log(SMB_VFS_OP_STAT, (result >= 0), handle, "%s",
1339                smb_fname_str_do_log(smb_fname));
1340
1341         return result;    
1342 }
1343
1344 static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
1345                        SMB_STRUCT_STAT *sbuf)
1346 {
1347         int result;
1348         
1349         result = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
1350
1351         do_log(SMB_VFS_OP_FSTAT, (result >= 0), handle, "%s",
1352                fsp_str_do_log(fsp));
1353
1354         return result;
1355 }
1356
1357 static int smb_full_audit_lstat(vfs_handle_struct *handle,
1358                                 struct smb_filename *smb_fname)
1359 {
1360         int result;
1361         
1362         result = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
1363
1364         do_log(SMB_VFS_OP_LSTAT, (result >= 0), handle, "%s",
1365                smb_fname_str_do_log(smb_fname));
1366
1367         return result;    
1368 }
1369
1370 static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct *handle,
1371                        files_struct *fsp, const SMB_STRUCT_STAT *sbuf)
1372 {
1373         uint64_t result;
1374
1375         result = SMB_VFS_NEXT_GET_ALLOC_SIZE(handle, fsp, sbuf);
1376
1377         do_log(SMB_VFS_OP_GET_ALLOC_SIZE, (result != (uint64_t)-1), handle,
1378                         "%llu", result);
1379
1380         return result;
1381 }
1382
1383 static int smb_full_audit_unlink(vfs_handle_struct *handle,
1384                                  const struct smb_filename *smb_fname)
1385 {
1386         int result;
1387         
1388         result = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
1389
1390         do_log(SMB_VFS_OP_UNLINK, (result >= 0), handle, "%s",
1391                smb_fname_str_do_log(smb_fname));
1392
1393         return result;
1394 }
1395
1396 static int smb_full_audit_chmod(vfs_handle_struct *handle,
1397                        const char *path, mode_t mode)
1398 {
1399         int result;
1400
1401         result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
1402
1403         do_log(SMB_VFS_OP_CHMOD, (result >= 0), handle, "%s|%o", path, mode);
1404
1405         return result;
1406 }
1407
1408 static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
1409                         mode_t mode)
1410 {
1411         int result;
1412         
1413         result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
1414
1415         do_log(SMB_VFS_OP_FCHMOD, (result >= 0), handle,
1416                "%s|%o", fsp_str_do_log(fsp), mode);
1417
1418         return result;
1419 }
1420
1421 static int smb_full_audit_chown(vfs_handle_struct *handle,
1422                        const char *path, uid_t uid, gid_t gid)
1423 {
1424         int result;
1425
1426         result = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
1427
1428         do_log(SMB_VFS_OP_CHOWN, (result >= 0), handle, "%s|%ld|%ld",
1429                path, (long int)uid, (long int)gid);
1430
1431         return result;
1432 }
1433
1434 static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
1435                         uid_t uid, gid_t gid)
1436 {
1437         int result;
1438
1439         result = SMB_VFS_NEXT_FCHOWN(handle, fsp, uid, gid);
1440
1441         do_log(SMB_VFS_OP_FCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1442                fsp_str_do_log(fsp), (long int)uid, (long int)gid);
1443
1444         return result;
1445 }
1446
1447 static int smb_full_audit_lchown(vfs_handle_struct *handle,
1448                        const char *path, uid_t uid, gid_t gid)
1449 {
1450         int result;
1451
1452         result = SMB_VFS_NEXT_LCHOWN(handle, path, uid, gid);
1453
1454         do_log(SMB_VFS_OP_LCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1455                path, (long int)uid, (long int)gid);
1456
1457         return result;
1458 }
1459
1460 static int smb_full_audit_chdir(vfs_handle_struct *handle,
1461                        const char *path)
1462 {
1463         int result;
1464
1465         result = SMB_VFS_NEXT_CHDIR(handle, path);
1466
1467         do_log(SMB_VFS_OP_CHDIR, (result >= 0), handle, "chdir|%s", path);
1468
1469         return result;
1470 }
1471
1472 static char *smb_full_audit_getwd(vfs_handle_struct *handle)
1473 {
1474         char *result;
1475
1476         result = SMB_VFS_NEXT_GETWD(handle);
1477         
1478         do_log(SMB_VFS_OP_GETWD, (result != NULL), handle, "%s",
1479                 result == NULL? "" : result);
1480
1481         return result;
1482 }
1483
1484 static int smb_full_audit_ntimes(vfs_handle_struct *handle,
1485                                  const struct smb_filename *smb_fname,
1486                                  struct smb_file_time *ft)
1487 {
1488         int result;
1489
1490         result = SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
1491
1492         do_log(SMB_VFS_OP_NTIMES, (result >= 0), handle, "%s",
1493                smb_fname_str_do_log(smb_fname));
1494
1495         return result;
1496 }
1497
1498 static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
1499                            off_t len)
1500 {
1501         int result;
1502
1503         result = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
1504
1505         do_log(SMB_VFS_OP_FTRUNCATE, (result >= 0), handle,
1506                "%s", fsp_str_do_log(fsp));
1507
1508         return result;
1509 }
1510
1511 static int smb_full_audit_fallocate(vfs_handle_struct *handle, files_struct *fsp,
1512                            uint32_t mode,
1513                            off_t offset,
1514                            off_t len)
1515 {
1516         int result;
1517
1518         result = SMB_VFS_NEXT_FALLOCATE(handle, fsp, mode, offset, len);
1519
1520         do_log(SMB_VFS_OP_FALLOCATE, (result >= 0), handle,
1521                "%s", fsp_str_do_log(fsp));
1522
1523         return result;
1524 }
1525
1526 static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
1527                        int op, off_t offset, off_t count, int type)
1528 {
1529         bool result;
1530
1531         result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
1532
1533         do_log(SMB_VFS_OP_LOCK, result, handle, "%s", fsp_str_do_log(fsp));
1534
1535         return result;
1536 }
1537
1538 static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
1539                                        struct files_struct *fsp,
1540                                        uint32_t share_mode, uint32_t access_mask)
1541 {
1542         int result;
1543
1544         result = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_mode, access_mask);
1545
1546         do_log(SMB_VFS_OP_KERNEL_FLOCK, (result >= 0), handle, "%s",
1547                fsp_str_do_log(fsp));
1548
1549         return result;
1550 }
1551
1552 static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
1553                                  int leasetype)
1554 {
1555         int result;
1556
1557         result = SMB_VFS_NEXT_LINUX_SETLEASE(handle, fsp, leasetype);
1558
1559         do_log(SMB_VFS_OP_LINUX_SETLEASE, (result >= 0), handle, "%s",
1560                fsp_str_do_log(fsp));
1561
1562         return result;
1563 }
1564
1565 static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
1566                        off_t *poffset, off_t *pcount, int *ptype, pid_t *ppid)
1567 {
1568         bool result;
1569
1570         result = SMB_VFS_NEXT_GETLOCK(handle, fsp, poffset, pcount, ptype, ppid);
1571
1572         do_log(SMB_VFS_OP_GETLOCK, result, handle, "%s", fsp_str_do_log(fsp));
1573
1574         return result;
1575 }
1576
1577 static int smb_full_audit_symlink(vfs_handle_struct *handle,
1578                          const char *oldpath, const char *newpath)
1579 {
1580         int result;
1581
1582         result = SMB_VFS_NEXT_SYMLINK(handle, oldpath, newpath);
1583
1584         do_log(SMB_VFS_OP_SYMLINK, (result >= 0), handle,
1585                "%s|%s", oldpath, newpath);
1586
1587         return result;
1588 }
1589
1590 static int smb_full_audit_readlink(vfs_handle_struct *handle,
1591                           const char *path, char *buf, size_t bufsiz)
1592 {
1593         int result;
1594
1595         result = SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
1596
1597         do_log(SMB_VFS_OP_READLINK, (result >= 0), handle, "%s", path);
1598
1599         return result;
1600 }
1601
1602 static int smb_full_audit_link(vfs_handle_struct *handle,
1603                       const char *oldpath, const char *newpath)
1604 {
1605         int result;
1606
1607         result = SMB_VFS_NEXT_LINK(handle, oldpath, newpath);
1608
1609         do_log(SMB_VFS_OP_LINK, (result >= 0), handle,
1610                "%s|%s", oldpath, newpath);
1611
1612         return result;
1613 }
1614
1615 static int smb_full_audit_mknod(vfs_handle_struct *handle,
1616                        const char *pathname, mode_t mode, SMB_DEV_T dev)
1617 {
1618         int result;
1619
1620         result = SMB_VFS_NEXT_MKNOD(handle, pathname, mode, dev);
1621
1622         do_log(SMB_VFS_OP_MKNOD, (result >= 0), handle, "%s", pathname);
1623
1624         return result;
1625 }
1626
1627 static char *smb_full_audit_realpath(vfs_handle_struct *handle,
1628                             const char *path)
1629 {
1630         char *result;
1631
1632         result = SMB_VFS_NEXT_REALPATH(handle, path);
1633
1634         do_log(SMB_VFS_OP_REALPATH, (result != NULL), handle, "%s", path);
1635
1636         return result;
1637 }
1638
1639 static int smb_full_audit_chflags(vfs_handle_struct *handle,
1640                             const char *path, unsigned int flags)
1641 {
1642         int result;
1643
1644         result = SMB_VFS_NEXT_CHFLAGS(handle, path, flags);
1645
1646         do_log(SMB_VFS_OP_CHFLAGS, (result != 0), handle, "%s", path);
1647
1648         return result;
1649 }
1650
1651 static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
1652                                                     const SMB_STRUCT_STAT *sbuf)
1653 {
1654         struct file_id id_zero;
1655         struct file_id result;
1656
1657         ZERO_STRUCT(id_zero);
1658
1659         result = SMB_VFS_NEXT_FILE_ID_CREATE(handle, sbuf);
1660
1661         do_log(SMB_VFS_OP_FILE_ID_CREATE,
1662                !file_id_equal(&id_zero, &result),
1663                handle, "%s", file_id_string_tos(&result));
1664
1665         return result;
1666 }
1667
1668 static NTSTATUS smb_full_audit_streaminfo(vfs_handle_struct *handle,
1669                                           struct files_struct *fsp,
1670                                           const char *fname,
1671                                           TALLOC_CTX *mem_ctx,
1672                                           unsigned int *pnum_streams,
1673                                           struct stream_struct **pstreams)
1674 {
1675         NTSTATUS result;
1676
1677         result = SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx,
1678                                          pnum_streams, pstreams);
1679
1680         do_log(SMB_VFS_OP_STREAMINFO, NT_STATUS_IS_OK(result), handle,
1681                "%s", fname);
1682
1683         return result;
1684 }
1685
1686 static int smb_full_audit_get_real_filename(struct vfs_handle_struct *handle,
1687                                             const char *path,
1688                                             const char *name,
1689                                             TALLOC_CTX *mem_ctx,
1690                                             char **found_name)
1691 {
1692         int result;
1693
1694         result = SMB_VFS_NEXT_GET_REAL_FILENAME(handle, path, name, mem_ctx,
1695                                                 found_name);
1696
1697         do_log(SMB_VFS_OP_GET_REAL_FILENAME, (result == 0), handle,
1698                "%s/%s->%s", path, name, (result == 0) ? "" : *found_name);
1699
1700         return result;
1701 }
1702
1703 static const char *smb_full_audit_connectpath(vfs_handle_struct *handle,
1704                                               const char *fname)
1705 {
1706         const char *result;
1707
1708         result = SMB_VFS_NEXT_CONNECTPATH(handle, fname);
1709
1710         do_log(SMB_VFS_OP_CONNECTPATH, result != NULL, handle,
1711                "%s", fname);
1712
1713         return result;
1714 }
1715
1716 static NTSTATUS smb_full_audit_brl_lock_windows(struct vfs_handle_struct *handle,
1717                                                 struct byte_range_lock *br_lck,
1718                                                 struct lock_struct *plock,
1719                                                 bool blocking_lock)
1720 {
1721         NTSTATUS result;
1722
1723         result = SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle, br_lck, plock,
1724                                                blocking_lock);
1725
1726         do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS, NT_STATUS_IS_OK(result), handle,
1727             "%s:%llu-%llu. type=%d. blocking=%d",
1728                fsp_str_do_log(brl_fsp(br_lck)),
1729             plock->start, plock->size, plock->lock_type, blocking_lock);
1730
1731         return result;
1732 }
1733
1734 static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct *handle,
1735                                               struct messaging_context *msg_ctx,
1736                                               struct byte_range_lock *br_lck,
1737                                               const struct lock_struct *plock)
1738 {
1739         bool result;
1740
1741         result = SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle, msg_ctx, br_lck,
1742             plock);
1743
1744         do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS, (result == 0), handle,
1745                "%s:%llu-%llu:%d", fsp_str_do_log(brl_fsp(br_lck)),
1746                plock->start,
1747             plock->size, plock->lock_type);
1748
1749         return result;
1750 }
1751
1752 static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct *handle,
1753                                               struct byte_range_lock *br_lck,
1754                                               struct lock_struct *plock)
1755 {
1756         bool result;
1757
1758         result = SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle, br_lck, plock);
1759
1760         do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS, (result == 0), handle,
1761                "%s:%llu-%llu:%d", fsp_str_do_log(brl_fsp(br_lck)),
1762                plock->start,
1763             plock->size, plock->lock_type);
1764
1765         return result;
1766 }
1767
1768 static bool smb_full_audit_strict_lock(struct vfs_handle_struct *handle,
1769                                        struct files_struct *fsp,
1770                                        struct lock_struct *plock)
1771 {
1772         bool result;
1773
1774         result = SMB_VFS_NEXT_STRICT_LOCK(handle, fsp, plock);
1775
1776         do_log(SMB_VFS_OP_STRICT_LOCK, result, handle,
1777             "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
1778             plock->size, plock->lock_type);
1779
1780         return result;
1781 }
1782
1783 static void smb_full_audit_strict_unlock(struct vfs_handle_struct *handle,
1784                                          struct files_struct *fsp,
1785                                          struct lock_struct *plock)
1786 {
1787         SMB_VFS_NEXT_STRICT_UNLOCK(handle, fsp, plock);
1788
1789         do_log(SMB_VFS_OP_STRICT_UNLOCK, true, handle,
1790             "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
1791             plock->size, plock->lock_type);
1792 }
1793
1794 static NTSTATUS smb_full_audit_translate_name(struct vfs_handle_struct *handle,
1795                                               const char *name,
1796                                               enum vfs_translate_direction direction,
1797                                               TALLOC_CTX *mem_ctx,
1798                                               char **mapped_name)
1799 {
1800         NTSTATUS result;
1801
1802         result = SMB_VFS_NEXT_TRANSLATE_NAME(handle, name, direction, mem_ctx,
1803                                              mapped_name);
1804
1805         do_log(SMB_VFS_OP_TRANSLATE_NAME, NT_STATUS_IS_OK(result), handle, "");
1806
1807         return result;
1808 }
1809
1810 static struct tevent_req *smb_full_audit_copy_chunk_send(struct vfs_handle_struct *handle,
1811                                                          TALLOC_CTX *mem_ctx,
1812                                                          struct tevent_context *ev,
1813                                                          struct files_struct *src_fsp,
1814                                                          off_t src_off,
1815                                                          struct files_struct *dest_fsp,
1816                                                          off_t dest_off,
1817                                                          off_t num)
1818 {
1819         struct tevent_req *req;
1820
1821         req = SMB_VFS_NEXT_COPY_CHUNK_SEND(handle, mem_ctx, ev, src_fsp,
1822                                            src_off, dest_fsp, dest_off, num);
1823
1824         do_log(SMB_VFS_OP_COPY_CHUNK_SEND, req, handle, "");
1825
1826         return req;
1827 }
1828
1829 static NTSTATUS smb_full_audit_copy_chunk_recv(struct vfs_handle_struct *handle,
1830                                                struct tevent_req *req,
1831                                                off_t *copied)
1832 {
1833         NTSTATUS result;
1834
1835         result = SMB_VFS_NEXT_COPY_CHUNK_RECV(handle, req, copied);
1836
1837         do_log(SMB_VFS_OP_COPY_CHUNK_RECV, NT_STATUS_IS_OK(result), handle, "");
1838
1839         return result;
1840 }
1841
1842 static NTSTATUS smb_full_audit_get_compression(vfs_handle_struct *handle,
1843                                                TALLOC_CTX *mem_ctx,
1844                                                struct files_struct *fsp,
1845                                                struct smb_filename *smb_fname,
1846                                                uint16_t *_compression_fmt)
1847 {
1848         NTSTATUS result;
1849
1850         result = SMB_VFS_NEXT_GET_COMPRESSION(handle, mem_ctx, fsp, smb_fname,
1851                                               _compression_fmt);
1852
1853         do_log(SMB_VFS_OP_GET_COMPRESSION, NT_STATUS_IS_OK(result), handle,
1854                "%s",
1855                (fsp ? fsp_str_do_log(fsp) : smb_fname_str_do_log(smb_fname)));
1856
1857         return result;
1858 }
1859
1860 static NTSTATUS smb_full_audit_set_compression(vfs_handle_struct *handle,
1861                                                TALLOC_CTX *mem_ctx,
1862                                                struct files_struct *fsp,
1863                                                uint16_t compression_fmt)
1864 {
1865         NTSTATUS result;
1866
1867         result = SMB_VFS_NEXT_SET_COMPRESSION(handle, mem_ctx, fsp,
1868                                               compression_fmt);
1869
1870         do_log(SMB_VFS_OP_SET_COMPRESSION, NT_STATUS_IS_OK(result), handle,
1871                "%s", fsp_str_do_log(fsp));
1872
1873         return result;
1874 }
1875
1876 static NTSTATUS smb_full_audit_readdir_attr(struct vfs_handle_struct *handle,
1877                                             const struct smb_filename *fname,
1878                                             TALLOC_CTX *mem_ctx,
1879                                             struct readdir_attr_data **pattr_data)
1880 {
1881         NTSTATUS status;
1882
1883         status = SMB_VFS_NEXT_READDIR_ATTR(handle, fname, mem_ctx, pattr_data);
1884
1885         do_log(SMB_VFS_OP_READDIR_ATTR, NT_STATUS_IS_OK(status), handle, "%s",
1886                smb_fname_str_do_log(fname));
1887
1888         return status;
1889 }
1890
1891 static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1892                                            uint32_t security_info,
1893                                            TALLOC_CTX *mem_ctx,
1894                                            struct security_descriptor **ppdesc)
1895 {
1896         NTSTATUS result;
1897
1898         result = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info,
1899                                           mem_ctx, ppdesc);
1900
1901         do_log(SMB_VFS_OP_FGET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1902                "%s", fsp_str_do_log(fsp));
1903
1904         return result;
1905 }
1906
1907 static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle,
1908                                           const struct smb_filename *smb_fname,
1909                                           uint32_t security_info,
1910                                           TALLOC_CTX *mem_ctx,
1911                                           struct security_descriptor **ppdesc)
1912 {
1913         NTSTATUS result;
1914
1915         result = SMB_VFS_NEXT_GET_NT_ACL(handle, smb_fname, security_info,
1916                                          mem_ctx, ppdesc);
1917
1918         do_log(SMB_VFS_OP_GET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1919                "%s", smb_fname_str_do_log(smb_fname));
1920
1921         return result;
1922 }
1923
1924 static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1925                               uint32_t security_info_sent,
1926                               const struct security_descriptor *psd)
1927 {
1928         struct vfs_full_audit_private_data *pd;
1929         NTSTATUS result;
1930         char *sd = NULL;
1931
1932         SMB_VFS_HANDLE_GET_DATA(handle, pd,
1933                                 struct vfs_full_audit_private_data,
1934                                 return NT_STATUS_INTERNAL_ERROR);
1935
1936         if (pd->log_secdesc) {
1937                 sd = sddl_encode(talloc_tos(), psd, get_global_sam_sid());
1938         }
1939
1940         result = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
1941
1942         do_log(SMB_VFS_OP_FSET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1943                "%s [%s]", fsp_str_do_log(fsp), sd ? sd : "");
1944
1945         TALLOC_FREE(sd);
1946
1947         return result;
1948 }
1949
1950 static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
1951                            const char *path, mode_t mode)
1952 {
1953         int result;
1954         
1955         result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
1956
1957         do_log(SMB_VFS_OP_CHMOD_ACL, (result >= 0), handle,
1958                "%s|%o", path, mode);
1959
1960         return result;
1961 }
1962
1963 static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
1964                                      mode_t mode)
1965 {
1966         int result;
1967         
1968         result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
1969
1970         do_log(SMB_VFS_OP_FCHMOD_ACL, (result >= 0), handle,
1971                "%s|%o", fsp_str_do_log(fsp), mode);
1972
1973         return result;
1974 }
1975
1976 static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
1977                                         const char *path_p,
1978                                                  SMB_ACL_TYPE_T type,
1979                                                  TALLOC_CTX *mem_ctx)
1980 {
1981         SMB_ACL_T result;
1982
1983         result = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, path_p, type, mem_ctx);
1984
1985         do_log(SMB_VFS_OP_SYS_ACL_GET_FILE, (result != NULL), handle,
1986                "%s", path_p);
1987
1988         return result;
1989 }
1990
1991 static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
1992                                                files_struct *fsp, TALLOC_CTX *mem_ctx)
1993 {
1994         SMB_ACL_T result;
1995
1996         result = SMB_VFS_NEXT_SYS_ACL_GET_FD(handle, fsp, mem_ctx);
1997
1998         do_log(SMB_VFS_OP_SYS_ACL_GET_FD, (result != NULL), handle,
1999                "%s", fsp_str_do_log(fsp));
2000
2001         return result;
2002 }
2003
2004 static int smb_full_audit_sys_acl_blob_get_file(vfs_handle_struct *handle,
2005                                                 const char *path_p,
2006                                                 TALLOC_CTX *mem_ctx,
2007                                                 char **blob_description,
2008                                                 DATA_BLOB *blob)
2009 {
2010         int result;
2011
2012         result = SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FILE(handle, path_p, mem_ctx, blob_description, blob);
2013
2014         do_log(SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE, (result >= 0), handle,
2015                "%s", path_p);
2016
2017         return result;
2018 }
2019
2020 static int smb_full_audit_sys_acl_blob_get_fd(vfs_handle_struct *handle,
2021                                               files_struct *fsp,
2022                                               TALLOC_CTX *mem_ctx,
2023                                               char **blob_description,
2024                                               DATA_BLOB *blob)
2025 {
2026         int result;
2027
2028         result = SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle, fsp, mem_ctx, blob_description, blob);
2029
2030         do_log(SMB_VFS_OP_SYS_ACL_BLOB_GET_FD, (result >= 0), handle,
2031                "%s", fsp_str_do_log(fsp));
2032
2033         return result;
2034 }
2035
2036 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
2037
2038                                   const char *name, SMB_ACL_TYPE_T acltype,
2039                                   SMB_ACL_T theacl)
2040 {
2041         int result;
2042
2043         result = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype,
2044                                                theacl);
2045
2046         do_log(SMB_VFS_OP_SYS_ACL_SET_FILE, (result >= 0), handle,
2047                "%s", name);
2048
2049         return result;
2050 }
2051
2052 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
2053                                 SMB_ACL_T theacl)
2054 {
2055         int result;
2056
2057         result = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
2058
2059         do_log(SMB_VFS_OP_SYS_ACL_SET_FD, (result >= 0), handle,
2060                "%s", fsp_str_do_log(fsp));
2061
2062         return result;
2063 }
2064
2065 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
2066
2067                                          const char *path)
2068 {
2069         int result;
2070
2071         result = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, path);
2072
2073         do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, (result >= 0), handle,
2074                "%s", path);
2075
2076         return result;
2077 }
2078
2079 static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
2080                               const char *path,
2081                               const char *name, void *value, size_t size)
2082 {
2083         ssize_t result;
2084
2085         result = SMB_VFS_NEXT_GETXATTR(handle, path, name, value, size);
2086
2087         do_log(SMB_VFS_OP_GETXATTR, (result >= 0), handle,
2088                "%s|%s", path, name);
2089
2090         return result;
2091 }
2092
2093 static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
2094                                struct files_struct *fsp,
2095                                const char *name, void *value, size_t size)
2096 {
2097         ssize_t result;
2098
2099         result = SMB_VFS_NEXT_FGETXATTR(handle, fsp, name, value, size);
2100
2101         do_log(SMB_VFS_OP_FGETXATTR, (result >= 0), handle,
2102                "%s|%s", fsp_str_do_log(fsp), name);
2103
2104         return result;
2105 }
2106
2107 static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
2108                                const char *path, char *list, size_t size)
2109 {
2110         ssize_t result;
2111
2112         result = SMB_VFS_NEXT_LISTXATTR(handle, path, list, size);
2113
2114         do_log(SMB_VFS_OP_LISTXATTR, (result >= 0), handle, "%s", path);
2115
2116         return result;
2117 }
2118
2119 static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
2120                                 struct files_struct *fsp, char *list,
2121                                 size_t size)
2122 {
2123         ssize_t result;
2124
2125         result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
2126
2127         do_log(SMB_VFS_OP_FLISTXATTR, (result >= 0), handle,
2128                "%s", fsp_str_do_log(fsp));
2129
2130         return result;
2131 }
2132
2133 static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
2134                              const char *path,
2135                              const char *name)
2136 {
2137         int result;
2138
2139         result = SMB_VFS_NEXT_REMOVEXATTR(handle, path, name);
2140
2141         do_log(SMB_VFS_OP_REMOVEXATTR, (result >= 0), handle,
2142                "%s|%s", path, name);
2143
2144         return result;
2145 }
2146
2147 static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
2148                               struct files_struct *fsp,
2149                               const char *name)
2150 {
2151         int result;
2152
2153         result = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
2154
2155         do_log(SMB_VFS_OP_FREMOVEXATTR, (result >= 0), handle,
2156                "%s|%s", fsp_str_do_log(fsp), name);
2157
2158         return result;
2159 }
2160
2161 static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
2162                           const char *path,
2163                           const char *name, const void *value, size_t size,
2164                           int flags)
2165 {
2166         int result;
2167
2168         result = SMB_VFS_NEXT_SETXATTR(handle, path, name, value, size,
2169                                        flags);
2170
2171         do_log(SMB_VFS_OP_SETXATTR, (result >= 0), handle,
2172                "%s|%s", path, name);
2173
2174         return result;
2175 }
2176
2177 static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
2178                            struct files_struct *fsp, const char *name,
2179                            const void *value, size_t size, int flags)
2180 {
2181         int result;
2182
2183         result = SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags);
2184
2185         do_log(SMB_VFS_OP_FSETXATTR, (result >= 0), handle,
2186                "%s|%s", fsp_str_do_log(fsp), name);
2187
2188         return result;
2189 }
2190
2191 static bool smb_full_audit_aio_force(struct vfs_handle_struct *handle,
2192                                      struct files_struct *fsp)
2193 {
2194         bool result;
2195
2196         result = SMB_VFS_NEXT_AIO_FORCE(handle, fsp);
2197         do_log(SMB_VFS_OP_AIO_FORCE, result, handle,
2198                 "%s", fsp_str_do_log(fsp));
2199
2200         return result;
2201 }
2202
2203 static bool smb_full_audit_is_offline(struct vfs_handle_struct *handle,
2204                                       const struct smb_filename *fname,
2205                                       SMB_STRUCT_STAT *sbuf)
2206 {
2207         bool result;
2208
2209         result = SMB_VFS_NEXT_IS_OFFLINE(handle, fname, sbuf);
2210         do_log(SMB_VFS_OP_IS_OFFLINE, result, handle, "%s",
2211                smb_fname_str_do_log(fname));
2212         return result;
2213 }
2214
2215 static int smb_full_audit_set_offline(struct vfs_handle_struct *handle,
2216                                       const struct smb_filename *fname)
2217 {
2218         int result;
2219
2220         result = SMB_VFS_NEXT_SET_OFFLINE(handle, fname);
2221         do_log(SMB_VFS_OP_SET_OFFLINE, result >= 0, handle, "%s",
2222                smb_fname_str_do_log(fname));
2223         return result;
2224 }
2225
2226 static struct vfs_fn_pointers vfs_full_audit_fns = {
2227
2228         /* Disk operations */
2229
2230         .connect_fn = smb_full_audit_connect,
2231         .disconnect_fn = smb_full_audit_disconnect,
2232         .disk_free_fn = smb_full_audit_disk_free,
2233         .get_quota_fn = smb_full_audit_get_quota,
2234         .set_quota_fn = smb_full_audit_set_quota,
2235         .get_shadow_copy_data_fn = smb_full_audit_get_shadow_copy_data,
2236         .statvfs_fn = smb_full_audit_statvfs,
2237         .fs_capabilities_fn = smb_full_audit_fs_capabilities,
2238         .snap_check_path_fn =  smb_full_audit_snap_check_path,
2239         .snap_create_fn = smb_full_audit_snap_create,
2240         .snap_delete_fn = smb_full_audit_snap_delete,
2241         .opendir_fn = smb_full_audit_opendir,
2242         .fdopendir_fn = smb_full_audit_fdopendir,
2243         .readdir_fn = smb_full_audit_readdir,
2244         .seekdir_fn = smb_full_audit_seekdir,
2245         .telldir_fn = smb_full_audit_telldir,
2246         .rewind_dir_fn = smb_full_audit_rewinddir,
2247         .mkdir_fn = smb_full_audit_mkdir,
2248         .rmdir_fn = smb_full_audit_rmdir,
2249         .closedir_fn = smb_full_audit_closedir,
2250         .init_search_op_fn = smb_full_audit_init_search_op,
2251         .open_fn = smb_full_audit_open,
2252         .create_file_fn = smb_full_audit_create_file,
2253         .close_fn = smb_full_audit_close,
2254         .read_fn = smb_full_audit_read,
2255         .pread_fn = smb_full_audit_pread,
2256         .pread_send_fn = smb_full_audit_pread_send,
2257         .pread_recv_fn = smb_full_audit_pread_recv,
2258         .write_fn = smb_full_audit_write,
2259         .pwrite_fn = smb_full_audit_pwrite,
2260         .pwrite_send_fn = smb_full_audit_pwrite_send,
2261         .pwrite_recv_fn = smb_full_audit_pwrite_recv,
2262         .lseek_fn = smb_full_audit_lseek,
2263         .sendfile_fn = smb_full_audit_sendfile,
2264         .recvfile_fn = smb_full_audit_recvfile,
2265         .rename_fn = smb_full_audit_rename,
2266         .fsync_fn = smb_full_audit_fsync,
2267         .fsync_send_fn = smb_full_audit_fsync_send,
2268         .fsync_recv_fn = smb_full_audit_fsync_recv,
2269         .stat_fn = smb_full_audit_stat,
2270         .fstat_fn = smb_full_audit_fstat,
2271         .lstat_fn = smb_full_audit_lstat,
2272         .get_alloc_size_fn = smb_full_audit_get_alloc_size,
2273         .unlink_fn = smb_full_audit_unlink,
2274         .chmod_fn = smb_full_audit_chmod,
2275         .fchmod_fn = smb_full_audit_fchmod,
2276         .chown_fn = smb_full_audit_chown,
2277         .fchown_fn = smb_full_audit_fchown,
2278         .lchown_fn = smb_full_audit_lchown,
2279         .chdir_fn = smb_full_audit_chdir,
2280         .getwd_fn = smb_full_audit_getwd,
2281         .ntimes_fn = smb_full_audit_ntimes,
2282         .ftruncate_fn = smb_full_audit_ftruncate,
2283         .fallocate_fn = smb_full_audit_fallocate,
2284         .lock_fn = smb_full_audit_lock,
2285         .kernel_flock_fn = smb_full_audit_kernel_flock,
2286         .linux_setlease_fn = smb_full_audit_linux_setlease,
2287         .getlock_fn = smb_full_audit_getlock,
2288         .symlink_fn = smb_full_audit_symlink,
2289         .readlink_fn = smb_full_audit_readlink,
2290         .link_fn = smb_full_audit_link,
2291         .mknod_fn = smb_full_audit_mknod,
2292         .realpath_fn = smb_full_audit_realpath,
2293         .chflags_fn = smb_full_audit_chflags,
2294         .file_id_create_fn = smb_full_audit_file_id_create,
2295         .streaminfo_fn = smb_full_audit_streaminfo,
2296         .get_real_filename_fn = smb_full_audit_get_real_filename,
2297         .connectpath_fn = smb_full_audit_connectpath,
2298         .brl_lock_windows_fn = smb_full_audit_brl_lock_windows,
2299         .brl_unlock_windows_fn = smb_full_audit_brl_unlock_windows,
2300         .brl_cancel_windows_fn = smb_full_audit_brl_cancel_windows,
2301         .strict_lock_fn = smb_full_audit_strict_lock,
2302         .strict_unlock_fn = smb_full_audit_strict_unlock,
2303         .translate_name_fn = smb_full_audit_translate_name,
2304         .copy_chunk_send_fn = smb_full_audit_copy_chunk_send,
2305         .copy_chunk_recv_fn = smb_full_audit_copy_chunk_recv,
2306         .get_compression_fn = smb_full_audit_get_compression,
2307         .set_compression_fn = smb_full_audit_set_compression,
2308         .readdir_attr_fn = smb_full_audit_readdir_attr,
2309         .fget_nt_acl_fn = smb_full_audit_fget_nt_acl,
2310         .get_nt_acl_fn = smb_full_audit_get_nt_acl,
2311         .fset_nt_acl_fn = smb_full_audit_fset_nt_acl,
2312         .chmod_acl_fn = smb_full_audit_chmod_acl,
2313         .fchmod_acl_fn = smb_full_audit_fchmod_acl,
2314         .sys_acl_get_file_fn = smb_full_audit_sys_acl_get_file,
2315         .sys_acl_get_fd_fn = smb_full_audit_sys_acl_get_fd,
2316         .sys_acl_blob_get_file_fn = smb_full_audit_sys_acl_blob_get_file,
2317         .sys_acl_blob_get_fd_fn = smb_full_audit_sys_acl_blob_get_fd,
2318         .sys_acl_set_file_fn = smb_full_audit_sys_acl_set_file,
2319         .sys_acl_set_fd_fn = smb_full_audit_sys_acl_set_fd,
2320         .sys_acl_delete_def_file_fn = smb_full_audit_sys_acl_delete_def_file,
2321         .getxattr_fn = smb_full_audit_getxattr,
2322         .fgetxattr_fn = smb_full_audit_fgetxattr,
2323         .listxattr_fn = smb_full_audit_listxattr,
2324         .flistxattr_fn = smb_full_audit_flistxattr,
2325         .removexattr_fn = smb_full_audit_removexattr,
2326         .fremovexattr_fn = smb_full_audit_fremovexattr,
2327         .setxattr_fn = smb_full_audit_setxattr,
2328         .fsetxattr_fn = smb_full_audit_fsetxattr,
2329         .aio_force_fn = smb_full_audit_aio_force,
2330         .is_offline_fn = smb_full_audit_is_offline,
2331         .set_offline_fn = smb_full_audit_set_offline,
2332 };
2333
2334 static_decl_vfs;
2335 NTSTATUS vfs_full_audit_init(void)
2336 {
2337         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
2338                                         "full_audit", &vfs_full_audit_fns);
2339         
2340         if (!NT_STATUS_IS_OK(ret))
2341                 return ret;
2342
2343         vfs_full_audit_debug_level = debug_add_class("full_audit");
2344         if (vfs_full_audit_debug_level == -1) {
2345                 vfs_full_audit_debug_level = DBGC_VFS;
2346                 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2347                           "class!\n"));
2348         } else {
2349                 DEBUG(10, ("vfs_full_audit: Debug class number of "
2350                            "'full_audit': %d\n", vfs_full_audit_debug_level));
2351         }
2352         
2353         return ret;
2354 }