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