s3-talloc Change TALLOC_ZERO_P() to talloc_zero()
[Samba.git] / source3 / modules / vfs_full_audit.c
blobe8129f41436acd101cf2bb4cc29e3973550e58f1
1 /*
2 * Auditing VFS module for samba. Log selected file operations to syslog
3 * facility.
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
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.
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.
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/>.
26 * This module implements parseable logging for all Samba VFS operations.
28 * You use it as follows:
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
37 * vfs op can be "all" which means log all operations.
38 * vfs op can be "none" which means no logging.
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
44 * where "nobody" is the connected username and "192.168.234.1" is the
45 * client's IP address.
47 * Options:
49 * prefix: A macro expansion template prepended to the syslog entry.
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.
55 * failure: A list of VFS operations for which failure to complete should be
56 * logged. Defaults to logging everything.
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"
68 static int vfs_full_audit_debug_level = DBGC_VFS;
70 struct vfs_full_audit_private_data {
71 struct bitmap *success_ops;
72 struct bitmap *failure_ops;
75 #undef DBGC_CLASS
76 #define DBGC_CLASS vfs_full_audit_debug_level
78 typedef enum _vfs_op_type {
79 SMB_VFS_OP_NOOP = -1,
81 /* Disk operations */
83 SMB_VFS_OP_CONNECT = 0,
84 SMB_VFS_OP_DISCONNECT,
85 SMB_VFS_OP_DISK_FREE,
86 SMB_VFS_OP_GET_QUOTA,
87 SMB_VFS_OP_SET_QUOTA,
88 SMB_VFS_OP_GET_SHADOW_COPY_DATA,
89 SMB_VFS_OP_STATVFS,
90 SMB_VFS_OP_FS_CAPABILITIES,
92 /* Directory operations */
94 SMB_VFS_OP_OPENDIR,
95 SMB_VFS_OP_FDOPENDIR,
96 SMB_VFS_OP_READDIR,
97 SMB_VFS_OP_SEEKDIR,
98 SMB_VFS_OP_TELLDIR,
99 SMB_VFS_OP_REWINDDIR,
100 SMB_VFS_OP_MKDIR,
101 SMB_VFS_OP_RMDIR,
102 SMB_VFS_OP_CLOSEDIR,
103 SMB_VFS_OP_INIT_SEARCH_OP,
105 /* File operations */
107 SMB_VFS_OP_OPEN,
108 SMB_VFS_OP_CREATE_FILE,
109 SMB_VFS_OP_CLOSE,
110 SMB_VFS_OP_READ,
111 SMB_VFS_OP_PREAD,
112 SMB_VFS_OP_WRITE,
113 SMB_VFS_OP_PWRITE,
114 SMB_VFS_OP_LSEEK,
115 SMB_VFS_OP_SENDFILE,
116 SMB_VFS_OP_RECVFILE,
117 SMB_VFS_OP_RENAME,
118 SMB_VFS_OP_FSYNC,
119 SMB_VFS_OP_STAT,
120 SMB_VFS_OP_FSTAT,
121 SMB_VFS_OP_LSTAT,
122 SMB_VFS_OP_GET_ALLOC_SIZE,
123 SMB_VFS_OP_UNLINK,
124 SMB_VFS_OP_CHMOD,
125 SMB_VFS_OP_FCHMOD,
126 SMB_VFS_OP_CHOWN,
127 SMB_VFS_OP_FCHOWN,
128 SMB_VFS_OP_LCHOWN,
129 SMB_VFS_OP_CHDIR,
130 SMB_VFS_OP_GETWD,
131 SMB_VFS_OP_NTIMES,
132 SMB_VFS_OP_FTRUNCATE,
133 SMB_VFS_OP_FALLOCATE,
134 SMB_VFS_OP_LOCK,
135 SMB_VFS_OP_KERNEL_FLOCK,
136 SMB_VFS_OP_LINUX_SETLEASE,
137 SMB_VFS_OP_GETLOCK,
138 SMB_VFS_OP_SYMLINK,
139 SMB_VFS_OP_READLINK,
140 SMB_VFS_OP_LINK,
141 SMB_VFS_OP_MKNOD,
142 SMB_VFS_OP_REALPATH,
143 SMB_VFS_OP_NOTIFY_WATCH,
144 SMB_VFS_OP_CHFLAGS,
145 SMB_VFS_OP_FILE_ID_CREATE,
146 SMB_VFS_OP_STREAMINFO,
147 SMB_VFS_OP_GET_REAL_FILENAME,
148 SMB_VFS_OP_CONNECTPATH,
149 SMB_VFS_OP_BRL_LOCK_WINDOWS,
150 SMB_VFS_OP_BRL_UNLOCK_WINDOWS,
151 SMB_VFS_OP_BRL_CANCEL_WINDOWS,
152 SMB_VFS_OP_STRICT_LOCK,
153 SMB_VFS_OP_STRICT_UNLOCK,
154 SMB_VFS_OP_TRANSLATE_NAME,
156 /* NT ACL operations. */
158 SMB_VFS_OP_FGET_NT_ACL,
159 SMB_VFS_OP_GET_NT_ACL,
160 SMB_VFS_OP_FSET_NT_ACL,
162 /* POSIX ACL operations. */
164 SMB_VFS_OP_CHMOD_ACL,
165 SMB_VFS_OP_FCHMOD_ACL,
167 SMB_VFS_OP_SYS_ACL_GET_ENTRY,
168 SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE,
169 SMB_VFS_OP_SYS_ACL_GET_PERMSET,
170 SMB_VFS_OP_SYS_ACL_GET_QUALIFIER,
171 SMB_VFS_OP_SYS_ACL_GET_FILE,
172 SMB_VFS_OP_SYS_ACL_GET_FD,
173 SMB_VFS_OP_SYS_ACL_CLEAR_PERMS,
174 SMB_VFS_OP_SYS_ACL_ADD_PERM,
175 SMB_VFS_OP_SYS_ACL_TO_TEXT,
176 SMB_VFS_OP_SYS_ACL_INIT,
177 SMB_VFS_OP_SYS_ACL_CREATE_ENTRY,
178 SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE,
179 SMB_VFS_OP_SYS_ACL_SET_QUALIFIER,
180 SMB_VFS_OP_SYS_ACL_SET_PERMSET,
181 SMB_VFS_OP_SYS_ACL_VALID,
182 SMB_VFS_OP_SYS_ACL_SET_FILE,
183 SMB_VFS_OP_SYS_ACL_SET_FD,
184 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
185 SMB_VFS_OP_SYS_ACL_GET_PERM,
186 SMB_VFS_OP_SYS_ACL_FREE_TEXT,
187 SMB_VFS_OP_SYS_ACL_FREE_ACL,
188 SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER,
190 /* EA operations. */
191 SMB_VFS_OP_GETXATTR,
192 SMB_VFS_OP_LGETXATTR,
193 SMB_VFS_OP_FGETXATTR,
194 SMB_VFS_OP_LISTXATTR,
195 SMB_VFS_OP_LLISTXATTR,
196 SMB_VFS_OP_FLISTXATTR,
197 SMB_VFS_OP_REMOVEXATTR,
198 SMB_VFS_OP_LREMOVEXATTR,
199 SMB_VFS_OP_FREMOVEXATTR,
200 SMB_VFS_OP_SETXATTR,
201 SMB_VFS_OP_LSETXATTR,
202 SMB_VFS_OP_FSETXATTR,
204 /* aio operations */
205 SMB_VFS_OP_AIO_READ,
206 SMB_VFS_OP_AIO_WRITE,
207 SMB_VFS_OP_AIO_RETURN,
208 SMB_VFS_OP_AIO_CANCEL,
209 SMB_VFS_OP_AIO_ERROR,
210 SMB_VFS_OP_AIO_FSYNC,
211 SMB_VFS_OP_AIO_SUSPEND,
212 SMB_VFS_OP_AIO_FORCE,
214 /* offline operations */
215 SMB_VFS_OP_IS_OFFLINE,
216 SMB_VFS_OP_SET_OFFLINE,
218 /* This should always be last enum value */
220 SMB_VFS_OP_LAST
221 } vfs_op_type;
223 /* The following array *must* be in the same order as defined in vfs.h */
225 static struct {
226 vfs_op_type type;
227 const char *name;
228 } vfs_op_names[] = {
229 { SMB_VFS_OP_CONNECT, "connect" },
230 { SMB_VFS_OP_DISCONNECT, "disconnect" },
231 { SMB_VFS_OP_DISK_FREE, "disk_free" },
232 { SMB_VFS_OP_GET_QUOTA, "get_quota" },
233 { SMB_VFS_OP_SET_QUOTA, "set_quota" },
234 { SMB_VFS_OP_GET_SHADOW_COPY_DATA, "get_shadow_copy_data" },
235 { SMB_VFS_OP_STATVFS, "statvfs" },
236 { SMB_VFS_OP_FS_CAPABILITIES, "fs_capabilities" },
237 { SMB_VFS_OP_OPENDIR, "opendir" },
238 { SMB_VFS_OP_FDOPENDIR, "fdopendir" },
239 { SMB_VFS_OP_READDIR, "readdir" },
240 { SMB_VFS_OP_SEEKDIR, "seekdir" },
241 { SMB_VFS_OP_TELLDIR, "telldir" },
242 { SMB_VFS_OP_REWINDDIR, "rewinddir" },
243 { SMB_VFS_OP_MKDIR, "mkdir" },
244 { SMB_VFS_OP_RMDIR, "rmdir" },
245 { SMB_VFS_OP_CLOSEDIR, "closedir" },
246 { SMB_VFS_OP_INIT_SEARCH_OP, "init_search_op" },
247 { SMB_VFS_OP_OPEN, "open" },
248 { SMB_VFS_OP_CREATE_FILE, "create_file" },
249 { SMB_VFS_OP_CLOSE, "close" },
250 { SMB_VFS_OP_READ, "read" },
251 { SMB_VFS_OP_PREAD, "pread" },
252 { SMB_VFS_OP_WRITE, "write" },
253 { SMB_VFS_OP_PWRITE, "pwrite" },
254 { SMB_VFS_OP_LSEEK, "lseek" },
255 { SMB_VFS_OP_SENDFILE, "sendfile" },
256 { SMB_VFS_OP_RECVFILE, "recvfile" },
257 { SMB_VFS_OP_RENAME, "rename" },
258 { SMB_VFS_OP_FSYNC, "fsync" },
259 { SMB_VFS_OP_STAT, "stat" },
260 { SMB_VFS_OP_FSTAT, "fstat" },
261 { SMB_VFS_OP_LSTAT, "lstat" },
262 { SMB_VFS_OP_GET_ALLOC_SIZE, "get_alloc_size" },
263 { SMB_VFS_OP_UNLINK, "unlink" },
264 { SMB_VFS_OP_CHMOD, "chmod" },
265 { SMB_VFS_OP_FCHMOD, "fchmod" },
266 { SMB_VFS_OP_CHOWN, "chown" },
267 { SMB_VFS_OP_FCHOWN, "fchown" },
268 { SMB_VFS_OP_LCHOWN, "lchown" },
269 { SMB_VFS_OP_CHDIR, "chdir" },
270 { SMB_VFS_OP_GETWD, "getwd" },
271 { SMB_VFS_OP_NTIMES, "ntimes" },
272 { SMB_VFS_OP_FTRUNCATE, "ftruncate" },
273 { SMB_VFS_OP_FALLOCATE,"fallocate" },
274 { SMB_VFS_OP_LOCK, "lock" },
275 { SMB_VFS_OP_KERNEL_FLOCK, "kernel_flock" },
276 { SMB_VFS_OP_LINUX_SETLEASE, "linux_setlease" },
277 { SMB_VFS_OP_GETLOCK, "getlock" },
278 { SMB_VFS_OP_SYMLINK, "symlink" },
279 { SMB_VFS_OP_READLINK, "readlink" },
280 { SMB_VFS_OP_LINK, "link" },
281 { SMB_VFS_OP_MKNOD, "mknod" },
282 { SMB_VFS_OP_REALPATH, "realpath" },
283 { SMB_VFS_OP_NOTIFY_WATCH, "notify_watch" },
284 { SMB_VFS_OP_CHFLAGS, "chflags" },
285 { SMB_VFS_OP_FILE_ID_CREATE, "file_id_create" },
286 { SMB_VFS_OP_STREAMINFO, "streaminfo" },
287 { SMB_VFS_OP_GET_REAL_FILENAME, "get_real_filename" },
288 { SMB_VFS_OP_CONNECTPATH, "connectpath" },
289 { SMB_VFS_OP_BRL_LOCK_WINDOWS, "brl_lock_windows" },
290 { SMB_VFS_OP_BRL_UNLOCK_WINDOWS, "brl_unlock_windows" },
291 { SMB_VFS_OP_BRL_CANCEL_WINDOWS, "brl_cancel_windows" },
292 { SMB_VFS_OP_STRICT_LOCK, "strict_lock" },
293 { SMB_VFS_OP_STRICT_UNLOCK, "strict_unlock" },
294 { SMB_VFS_OP_TRANSLATE_NAME, "translate_name" },
295 { SMB_VFS_OP_FGET_NT_ACL, "fget_nt_acl" },
296 { SMB_VFS_OP_GET_NT_ACL, "get_nt_acl" },
297 { SMB_VFS_OP_FSET_NT_ACL, "fset_nt_acl" },
298 { SMB_VFS_OP_CHMOD_ACL, "chmod_acl" },
299 { SMB_VFS_OP_FCHMOD_ACL, "fchmod_acl" },
300 { SMB_VFS_OP_SYS_ACL_GET_ENTRY, "sys_acl_get_entry" },
301 { SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, "sys_acl_get_tag_type" },
302 { SMB_VFS_OP_SYS_ACL_GET_PERMSET, "sys_acl_get_permset" },
303 { SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, "sys_acl_get_qualifier" },
304 { SMB_VFS_OP_SYS_ACL_GET_FILE, "sys_acl_get_file" },
305 { SMB_VFS_OP_SYS_ACL_GET_FD, "sys_acl_get_fd" },
306 { SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, "sys_acl_clear_perms" },
307 { SMB_VFS_OP_SYS_ACL_ADD_PERM, "sys_acl_add_perm" },
308 { SMB_VFS_OP_SYS_ACL_TO_TEXT, "sys_acl_to_text" },
309 { SMB_VFS_OP_SYS_ACL_INIT, "sys_acl_init" },
310 { SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, "sys_acl_create_entry" },
311 { SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, "sys_acl_set_tag_type" },
312 { SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, "sys_acl_set_qualifier" },
313 { SMB_VFS_OP_SYS_ACL_SET_PERMSET, "sys_acl_set_permset" },
314 { SMB_VFS_OP_SYS_ACL_VALID, "sys_acl_valid" },
315 { SMB_VFS_OP_SYS_ACL_SET_FILE, "sys_acl_set_file" },
316 { SMB_VFS_OP_SYS_ACL_SET_FD, "sys_acl_set_fd" },
317 { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, "sys_acl_delete_def_file" },
318 { SMB_VFS_OP_SYS_ACL_GET_PERM, "sys_acl_get_perm" },
319 { SMB_VFS_OP_SYS_ACL_FREE_TEXT, "sys_acl_free_text" },
320 { SMB_VFS_OP_SYS_ACL_FREE_ACL, "sys_acl_free_acl" },
321 { SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, "sys_acl_free_qualifier" },
322 { SMB_VFS_OP_GETXATTR, "getxattr" },
323 { SMB_VFS_OP_LGETXATTR, "lgetxattr" },
324 { SMB_VFS_OP_FGETXATTR, "fgetxattr" },
325 { SMB_VFS_OP_LISTXATTR, "listxattr" },
326 { SMB_VFS_OP_LLISTXATTR, "llistxattr" },
327 { SMB_VFS_OP_FLISTXATTR, "flistxattr" },
328 { SMB_VFS_OP_REMOVEXATTR, "removexattr" },
329 { SMB_VFS_OP_LREMOVEXATTR, "lremovexattr" },
330 { SMB_VFS_OP_FREMOVEXATTR, "fremovexattr" },
331 { SMB_VFS_OP_SETXATTR, "setxattr" },
332 { SMB_VFS_OP_LSETXATTR, "lsetxattr" },
333 { SMB_VFS_OP_FSETXATTR, "fsetxattr" },
334 { SMB_VFS_OP_AIO_READ, "aio_read" },
335 { SMB_VFS_OP_AIO_WRITE, "aio_write" },
336 { SMB_VFS_OP_AIO_RETURN,"aio_return" },
337 { SMB_VFS_OP_AIO_CANCEL,"aio_cancel" },
338 { SMB_VFS_OP_AIO_ERROR, "aio_error" },
339 { SMB_VFS_OP_AIO_FSYNC, "aio_fsync" },
340 { SMB_VFS_OP_AIO_SUSPEND,"aio_suspend" },
341 { SMB_VFS_OP_AIO_FORCE, "aio_force" },
342 { SMB_VFS_OP_IS_OFFLINE, "is_offline" },
343 { SMB_VFS_OP_SET_OFFLINE, "set_offline" },
344 { SMB_VFS_OP_LAST, NULL }
347 static int audit_syslog_facility(vfs_handle_struct *handle)
349 static const struct enum_list enum_log_facilities[] = {
350 { LOG_USER, "USER" },
351 { LOG_LOCAL0, "LOCAL0" },
352 { LOG_LOCAL1, "LOCAL1" },
353 { LOG_LOCAL2, "LOCAL2" },
354 { LOG_LOCAL3, "LOCAL3" },
355 { LOG_LOCAL4, "LOCAL4" },
356 { LOG_LOCAL5, "LOCAL5" },
357 { LOG_LOCAL6, "LOCAL6" },
358 { LOG_LOCAL7, "LOCAL7" },
359 { -1, NULL}
362 int facility;
364 facility = lp_parm_enum(SNUM(handle->conn), "full_audit", "facility", enum_log_facilities, LOG_USER);
366 return facility;
369 static int audit_syslog_priority(vfs_handle_struct *handle)
371 static const struct enum_list enum_log_priorities[] = {
372 { LOG_EMERG, "EMERG" },
373 { LOG_ALERT, "ALERT" },
374 { LOG_CRIT, "CRIT" },
375 { LOG_ERR, "ERR" },
376 { LOG_WARNING, "WARNING" },
377 { LOG_NOTICE, "NOTICE" },
378 { LOG_INFO, "INFO" },
379 { LOG_DEBUG, "DEBUG" },
380 { -1, NULL}
383 int priority;
385 priority = lp_parm_enum(SNUM(handle->conn), "full_audit", "priority",
386 enum_log_priorities, LOG_NOTICE);
387 if (priority == -1) {
388 priority = LOG_WARNING;
391 return priority;
394 static char *audit_prefix(TALLOC_CTX *ctx, connection_struct *conn)
396 char *prefix = NULL;
397 char *result;
399 prefix = talloc_strdup(ctx,
400 lp_parm_const_string(SNUM(conn), "full_audit",
401 "prefix", "%u|%I"));
402 if (!prefix) {
403 return NULL;
405 result = talloc_sub_advanced(ctx,
406 lp_servicename(SNUM(conn)),
407 conn->session_info->unix_name,
408 conn->connectpath,
409 conn->session_info->utok.gid,
410 conn->session_info->sanitized_username,
411 conn->session_info->info3->base.domain.string,
412 prefix);
413 TALLOC_FREE(prefix);
414 return result;
417 static bool log_success(vfs_handle_struct *handle, vfs_op_type op)
419 struct vfs_full_audit_private_data *pd = NULL;
421 SMB_VFS_HANDLE_GET_DATA(handle, pd,
422 struct vfs_full_audit_private_data,
423 return True);
425 if (pd->success_ops == NULL) {
426 return True;
429 return bitmap_query(pd->success_ops, op);
432 static bool log_failure(vfs_handle_struct *handle, vfs_op_type op)
434 struct vfs_full_audit_private_data *pd = NULL;
436 SMB_VFS_HANDLE_GET_DATA(handle, pd,
437 struct vfs_full_audit_private_data,
438 return True);
440 if (pd->failure_ops == NULL)
441 return True;
443 return bitmap_query(pd->failure_ops, op);
446 static struct bitmap *init_bitmap(TALLOC_CTX *mem_ctx, const char **ops)
448 struct bitmap *bm;
450 if (ops == NULL) {
451 return NULL;
454 bm = bitmap_talloc(mem_ctx, SMB_VFS_OP_LAST);
455 if (bm == NULL) {
456 DEBUG(0, ("Could not alloc bitmap -- "
457 "defaulting to logging everything\n"));
458 return NULL;
461 for (; *ops != NULL; ops += 1) {
462 int i;
463 bool neg = false;
464 const char *op;
466 if (strequal(*ops, "all")) {
467 for (i=0; i<SMB_VFS_OP_LAST; i++) {
468 bitmap_set(bm, i);
470 continue;
473 if (strequal(*ops, "none")) {
474 break;
477 op = ops[0];
478 if (op[0] == '!') {
479 neg = true;
480 op += 1;
483 for (i=0; i<SMB_VFS_OP_LAST; i++) {
484 if (vfs_op_names[i].name == NULL) {
485 smb_panic("vfs_full_audit.c: name table not "
486 "in sync with vfs.h\n");
488 if (strequal(op, vfs_op_names[i].name)) {
489 if (neg) {
490 bitmap_clear(bm, i);
491 } else {
492 bitmap_set(bm, i);
494 break;
497 if (i == SMB_VFS_OP_LAST) {
498 DEBUG(0, ("Could not find opname %s, logging all\n",
499 *ops));
500 TALLOC_FREE(bm);
501 return NULL;
504 return bm;
507 static const char *audit_opname(vfs_op_type op)
509 if (op >= SMB_VFS_OP_LAST)
510 return "INVALID VFS OP";
511 return vfs_op_names[op].name;
514 static TALLOC_CTX *tmp_do_log_ctx;
516 * Get us a temporary talloc context usable just for DEBUG arguments
518 static TALLOC_CTX *do_log_ctx(void)
520 if (tmp_do_log_ctx == NULL) {
521 tmp_do_log_ctx = talloc_named_const(NULL, 0, "do_log_ctx");
523 return tmp_do_log_ctx;
526 static void do_log(vfs_op_type op, bool success, vfs_handle_struct *handle,
527 const char *format, ...)
529 fstring err_msg;
530 char *audit_pre = NULL;
531 va_list ap;
532 char *op_msg = NULL;
533 int priority;
535 if (success && (!log_success(handle, op)))
536 goto out;
538 if (!success && (!log_failure(handle, op)))
539 goto out;
541 if (success)
542 fstrcpy(err_msg, "ok");
543 else
544 fstr_sprintf(err_msg, "fail (%s)", strerror(errno));
546 va_start(ap, format);
547 op_msg = talloc_vasprintf(talloc_tos(), format, ap);
548 va_end(ap);
550 if (!op_msg) {
551 goto out;
555 * Specify the facility to interoperate with other syslog callers
556 * (smbd for example).
558 priority = audit_syslog_priority(handle) |
559 audit_syslog_facility(handle);
561 audit_pre = audit_prefix(talloc_tos(), handle->conn);
562 syslog(priority, "%s|%s|%s|%s\n",
563 audit_pre ? audit_pre : "",
564 audit_opname(op), err_msg, op_msg);
566 out:
567 TALLOC_FREE(audit_pre);
568 TALLOC_FREE(op_msg);
569 TALLOC_FREE(tmp_do_log_ctx);
571 return;
575 * Return a string using the do_log_ctx()
577 static const char *smb_fname_str_do_log(const struct smb_filename *smb_fname)
579 char *fname = NULL;
580 NTSTATUS status;
582 if (smb_fname == NULL) {
583 return "";
585 status = get_full_smb_filename(do_log_ctx(), smb_fname, &fname);
586 if (!NT_STATUS_IS_OK(status)) {
587 return "";
589 return fname;
593 * Return an fsp debug string using the do_log_ctx()
595 static const char *fsp_str_do_log(const struct files_struct *fsp)
597 return smb_fname_str_do_log(fsp->fsp_name);
600 /* Implementation of vfs_ops. Pass everything on to the default
601 operation but log event first. */
603 static int smb_full_audit_connect(vfs_handle_struct *handle,
604 const char *svc, const char *user)
606 int result;
607 struct vfs_full_audit_private_data *pd = NULL;
609 result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
610 if (result < 0) {
611 return result;
614 pd = talloc_zero(handle, struct vfs_full_audit_private_data);
615 if (!pd) {
616 SMB_VFS_NEXT_DISCONNECT(handle);
617 return -1;
620 #ifdef WITH_SYSLOG
621 openlog("smbd_audit", 0, audit_syslog_facility(handle));
622 #endif
624 pd->success_ops = init_bitmap(
625 pd, lp_parm_string_list(SNUM(handle->conn), "full_audit",
626 "success", NULL));
627 pd->failure_ops = init_bitmap(
628 pd, lp_parm_string_list(SNUM(handle->conn), "full_audit",
629 "failure", NULL));
631 /* Store the private data. */
632 SMB_VFS_HANDLE_SET_DATA(handle, pd, NULL,
633 struct vfs_full_audit_private_data, return -1);
635 do_log(SMB_VFS_OP_CONNECT, True, handle,
636 "%s", svc);
638 return 0;
641 static void smb_full_audit_disconnect(vfs_handle_struct *handle)
643 SMB_VFS_NEXT_DISCONNECT(handle);
645 do_log(SMB_VFS_OP_DISCONNECT, True, handle,
646 "%s", lp_servicename(SNUM(handle->conn)));
648 /* The bitmaps will be disconnected when the private
649 data is deleted. */
651 return;
654 static uint64_t smb_full_audit_disk_free(vfs_handle_struct *handle,
655 const char *path,
656 bool small_query, uint64_t *bsize,
657 uint64_t *dfree, uint64_t *dsize)
659 uint64_t result;
661 result = SMB_VFS_NEXT_DISK_FREE(handle, path, small_query, bsize,
662 dfree, dsize);
664 /* Don't have a reasonable notion of failure here */
666 do_log(SMB_VFS_OP_DISK_FREE, True, handle, "%s", path);
668 return result;
671 static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
672 enum SMB_QUOTA_TYPE qtype, unid_t id,
673 SMB_DISK_QUOTA *qt)
675 int result;
677 result = SMB_VFS_NEXT_GET_QUOTA(handle, qtype, id, qt);
679 do_log(SMB_VFS_OP_GET_QUOTA, (result >= 0), handle, "");
681 return result;
685 static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
686 enum SMB_QUOTA_TYPE qtype, unid_t id,
687 SMB_DISK_QUOTA *qt)
689 int result;
691 result = SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, qt);
693 do_log(SMB_VFS_OP_SET_QUOTA, (result >= 0), handle, "");
695 return result;
698 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
699 struct files_struct *fsp,
700 struct shadow_copy_data *shadow_copy_data,
701 bool labels)
703 int result;
705 result = SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle, fsp, shadow_copy_data, labels);
707 do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA, (result >= 0), handle, "");
709 return result;
712 static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
713 const char *path,
714 struct vfs_statvfs_struct *statbuf)
716 int result;
718 result = SMB_VFS_NEXT_STATVFS(handle, path, statbuf);
720 do_log(SMB_VFS_OP_STATVFS, (result >= 0), handle, "");
722 return result;
725 static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct *handle, enum timestamp_set_resolution *p_ts_res)
727 int result;
729 result = SMB_VFS_NEXT_FS_CAPABILITIES(handle, p_ts_res);
731 do_log(SMB_VFS_OP_FS_CAPABILITIES, true, handle, "");
733 return result;
736 static SMB_STRUCT_DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
737 const char *fname, const char *mask, uint32 attr)
739 SMB_STRUCT_DIR *result;
741 result = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
743 do_log(SMB_VFS_OP_OPENDIR, (result != NULL), handle, "%s", fname);
745 return result;
748 static SMB_STRUCT_DIR *smb_full_audit_fdopendir(vfs_handle_struct *handle,
749 files_struct *fsp, const char *mask, uint32 attr)
751 SMB_STRUCT_DIR *result;
753 result = SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask, attr);
755 do_log(SMB_VFS_OP_FDOPENDIR, (result != NULL), handle, "%s",
756 fsp_str_do_log(fsp));
758 return result;
761 static SMB_STRUCT_DIRENT *smb_full_audit_readdir(vfs_handle_struct *handle,
762 SMB_STRUCT_DIR *dirp, SMB_STRUCT_STAT *sbuf)
764 SMB_STRUCT_DIRENT *result;
766 result = SMB_VFS_NEXT_READDIR(handle, dirp, sbuf);
768 /* This operation has no reasonable error condition
769 * (End of dir is also failure), so always succeed.
771 do_log(SMB_VFS_OP_READDIR, True, handle, "");
773 return result;
776 static void smb_full_audit_seekdir(vfs_handle_struct *handle,
777 SMB_STRUCT_DIR *dirp, long offset)
779 SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
781 do_log(SMB_VFS_OP_SEEKDIR, True, handle, "");
782 return;
785 static long smb_full_audit_telldir(vfs_handle_struct *handle,
786 SMB_STRUCT_DIR *dirp)
788 long result;
790 result = SMB_VFS_NEXT_TELLDIR(handle, dirp);
792 do_log(SMB_VFS_OP_TELLDIR, True, handle, "");
794 return result;
797 static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
798 SMB_STRUCT_DIR *dirp)
800 SMB_VFS_NEXT_REWINDDIR(handle, dirp);
802 do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
803 return;
806 static int smb_full_audit_mkdir(vfs_handle_struct *handle,
807 const char *path, mode_t mode)
809 int result;
811 result = SMB_VFS_NEXT_MKDIR(handle, path, mode);
813 do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s", path);
815 return result;
818 static int smb_full_audit_rmdir(vfs_handle_struct *handle,
819 const char *path)
821 int result;
823 result = SMB_VFS_NEXT_RMDIR(handle, path);
825 do_log(SMB_VFS_OP_RMDIR, (result >= 0), handle, "%s", path);
827 return result;
830 static int smb_full_audit_closedir(vfs_handle_struct *handle,
831 SMB_STRUCT_DIR *dirp)
833 int result;
835 result = SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
837 do_log(SMB_VFS_OP_CLOSEDIR, (result >= 0), handle, "");
839 return result;
842 static void smb_full_audit_init_search_op(vfs_handle_struct *handle,
843 SMB_STRUCT_DIR *dirp)
845 SMB_VFS_NEXT_INIT_SEARCH_OP(handle, dirp);
847 do_log(SMB_VFS_OP_INIT_SEARCH_OP, True, handle, "");
848 return;
851 static int smb_full_audit_open(vfs_handle_struct *handle,
852 struct smb_filename *smb_fname,
853 files_struct *fsp, int flags, mode_t mode)
855 int result;
857 result = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
859 do_log(SMB_VFS_OP_OPEN, (result >= 0), handle, "%s|%s",
860 ((flags & O_WRONLY) || (flags & O_RDWR))?"w":"r",
861 smb_fname_str_do_log(smb_fname));
863 return result;
866 static NTSTATUS smb_full_audit_create_file(vfs_handle_struct *handle,
867 struct smb_request *req,
868 uint16_t root_dir_fid,
869 struct smb_filename *smb_fname,
870 uint32_t access_mask,
871 uint32_t share_access,
872 uint32_t create_disposition,
873 uint32_t create_options,
874 uint32_t file_attributes,
875 uint32_t oplock_request,
876 uint64_t allocation_size,
877 uint32_t private_flags,
878 struct security_descriptor *sd,
879 struct ea_list *ea_list,
880 files_struct **result_fsp,
881 int *pinfo)
883 NTSTATUS result;
884 const char* str_create_disposition;
886 switch (create_disposition) {
887 case FILE_SUPERSEDE:
888 str_create_disposition = "supersede";
889 break;
890 case FILE_OVERWRITE_IF:
891 str_create_disposition = "overwrite_if";
892 break;
893 case FILE_OPEN:
894 str_create_disposition = "open";
895 break;
896 case FILE_OVERWRITE:
897 str_create_disposition = "overwrite";
898 break;
899 case FILE_CREATE:
900 str_create_disposition = "create";
901 break;
902 case FILE_OPEN_IF:
903 str_create_disposition = "open_if";
904 break;
905 default:
906 str_create_disposition = "unknown";
909 result = SMB_VFS_NEXT_CREATE_FILE(
910 handle, /* handle */
911 req, /* req */
912 root_dir_fid, /* root_dir_fid */
913 smb_fname, /* fname */
914 access_mask, /* access_mask */
915 share_access, /* share_access */
916 create_disposition, /* create_disposition*/
917 create_options, /* create_options */
918 file_attributes, /* file_attributes */
919 oplock_request, /* oplock_request */
920 allocation_size, /* allocation_size */
921 private_flags,
922 sd, /* sd */
923 ea_list, /* ea_list */
924 result_fsp, /* result */
925 pinfo); /* pinfo */
927 do_log(SMB_VFS_OP_CREATE_FILE, (NT_STATUS_IS_OK(result)), handle,
928 "0x%x|%s|%s|%s", access_mask,
929 create_options & FILE_DIRECTORY_FILE ? "dir" : "file",
930 str_create_disposition, smb_fname_str_do_log(smb_fname));
932 return result;
935 static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp)
937 int result;
939 result = SMB_VFS_NEXT_CLOSE(handle, fsp);
941 do_log(SMB_VFS_OP_CLOSE, (result >= 0), handle, "%s",
942 fsp_str_do_log(fsp));
944 return result;
947 static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
948 void *data, size_t n)
950 ssize_t result;
952 result = SMB_VFS_NEXT_READ(handle, fsp, data, n);
954 do_log(SMB_VFS_OP_READ, (result >= 0), handle, "%s",
955 fsp_str_do_log(fsp));
957 return result;
960 static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
961 void *data, size_t n, SMB_OFF_T offset)
963 ssize_t result;
965 result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
967 do_log(SMB_VFS_OP_PREAD, (result >= 0), handle, "%s",
968 fsp_str_do_log(fsp));
970 return result;
973 static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
974 const void *data, size_t n)
976 ssize_t result;
978 result = SMB_VFS_NEXT_WRITE(handle, fsp, data, n);
980 do_log(SMB_VFS_OP_WRITE, (result >= 0), handle, "%s",
981 fsp_str_do_log(fsp));
983 return result;
986 static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
987 const void *data, size_t n,
988 SMB_OFF_T offset)
990 ssize_t result;
992 result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
994 do_log(SMB_VFS_OP_PWRITE, (result >= 0), handle, "%s",
995 fsp_str_do_log(fsp));
997 return result;
1000 static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
1001 SMB_OFF_T offset, int whence)
1003 ssize_t result;
1005 result = SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
1007 do_log(SMB_VFS_OP_LSEEK, (result != (ssize_t)-1), handle,
1008 "%s", fsp_str_do_log(fsp));
1010 return result;
1013 static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
1014 files_struct *fromfsp,
1015 const DATA_BLOB *hdr, SMB_OFF_T offset,
1016 size_t n)
1018 ssize_t result;
1020 result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
1022 do_log(SMB_VFS_OP_SENDFILE, (result >= 0), handle,
1023 "%s", fsp_str_do_log(fromfsp));
1025 return result;
1028 static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
1029 files_struct *tofsp,
1030 SMB_OFF_T offset,
1031 size_t n)
1033 ssize_t result;
1035 result = SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
1037 do_log(SMB_VFS_OP_RECVFILE, (result >= 0), handle,
1038 "%s", fsp_str_do_log(tofsp));
1040 return result;
1043 static int smb_full_audit_rename(vfs_handle_struct *handle,
1044 const struct smb_filename *smb_fname_src,
1045 const struct smb_filename *smb_fname_dst)
1047 int result;
1049 result = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
1051 do_log(SMB_VFS_OP_RENAME, (result >= 0), handle, "%s|%s",
1052 smb_fname_str_do_log(smb_fname_src),
1053 smb_fname_str_do_log(smb_fname_dst));
1055 return result;
1058 static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp)
1060 int result;
1062 result = SMB_VFS_NEXT_FSYNC(handle, fsp);
1064 do_log(SMB_VFS_OP_FSYNC, (result >= 0), handle, "%s",
1065 fsp_str_do_log(fsp));
1067 return result;
1070 static int smb_full_audit_stat(vfs_handle_struct *handle,
1071 struct smb_filename *smb_fname)
1073 int result;
1075 result = SMB_VFS_NEXT_STAT(handle, smb_fname);
1077 do_log(SMB_VFS_OP_STAT, (result >= 0), handle, "%s",
1078 smb_fname_str_do_log(smb_fname));
1080 return result;
1083 static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
1084 SMB_STRUCT_STAT *sbuf)
1086 int result;
1088 result = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
1090 do_log(SMB_VFS_OP_FSTAT, (result >= 0), handle, "%s",
1091 fsp_str_do_log(fsp));
1093 return result;
1096 static int smb_full_audit_lstat(vfs_handle_struct *handle,
1097 struct smb_filename *smb_fname)
1099 int result;
1101 result = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
1103 do_log(SMB_VFS_OP_LSTAT, (result >= 0), handle, "%s",
1104 smb_fname_str_do_log(smb_fname));
1106 return result;
1109 static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct *handle,
1110 files_struct *fsp, const SMB_STRUCT_STAT *sbuf)
1112 uint64_t result;
1114 result = SMB_VFS_NEXT_GET_ALLOC_SIZE(handle, fsp, sbuf);
1116 do_log(SMB_VFS_OP_GET_ALLOC_SIZE, (result != (uint64_t)-1), handle,
1117 "%llu", result);
1119 return result;
1122 static int smb_full_audit_unlink(vfs_handle_struct *handle,
1123 const struct smb_filename *smb_fname)
1125 int result;
1127 result = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
1129 do_log(SMB_VFS_OP_UNLINK, (result >= 0), handle, "%s",
1130 smb_fname_str_do_log(smb_fname));
1132 return result;
1135 static int smb_full_audit_chmod(vfs_handle_struct *handle,
1136 const char *path, mode_t mode)
1138 int result;
1140 result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
1142 do_log(SMB_VFS_OP_CHMOD, (result >= 0), handle, "%s|%o", path, mode);
1144 return result;
1147 static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
1148 mode_t mode)
1150 int result;
1152 result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
1154 do_log(SMB_VFS_OP_FCHMOD, (result >= 0), handle,
1155 "%s|%o", fsp_str_do_log(fsp), mode);
1157 return result;
1160 static int smb_full_audit_chown(vfs_handle_struct *handle,
1161 const char *path, uid_t uid, gid_t gid)
1163 int result;
1165 result = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
1167 do_log(SMB_VFS_OP_CHOWN, (result >= 0), handle, "%s|%ld|%ld",
1168 path, (long int)uid, (long int)gid);
1170 return result;
1173 static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
1174 uid_t uid, gid_t gid)
1176 int result;
1178 result = SMB_VFS_NEXT_FCHOWN(handle, fsp, uid, gid);
1180 do_log(SMB_VFS_OP_FCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1181 fsp_str_do_log(fsp), (long int)uid, (long int)gid);
1183 return result;
1186 static int smb_full_audit_lchown(vfs_handle_struct *handle,
1187 const char *path, uid_t uid, gid_t gid)
1189 int result;
1191 result = SMB_VFS_NEXT_LCHOWN(handle, path, uid, gid);
1193 do_log(SMB_VFS_OP_LCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1194 path, (long int)uid, (long int)gid);
1196 return result;
1199 static int smb_full_audit_chdir(vfs_handle_struct *handle,
1200 const char *path)
1202 int result;
1204 result = SMB_VFS_NEXT_CHDIR(handle, path);
1206 do_log(SMB_VFS_OP_CHDIR, (result >= 0), handle, "chdir|%s", path);
1208 return result;
1211 static char *smb_full_audit_getwd(vfs_handle_struct *handle)
1213 char *result;
1215 result = SMB_VFS_NEXT_GETWD(handle);
1217 do_log(SMB_VFS_OP_GETWD, (result != NULL), handle, "%s",
1218 result == NULL? "" : result);
1220 return result;
1223 static int smb_full_audit_ntimes(vfs_handle_struct *handle,
1224 const struct smb_filename *smb_fname,
1225 struct smb_file_time *ft)
1227 int result;
1229 result = SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
1231 do_log(SMB_VFS_OP_NTIMES, (result >= 0), handle, "%s",
1232 smb_fname_str_do_log(smb_fname));
1234 return result;
1237 static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
1238 SMB_OFF_T len)
1240 int result;
1242 result = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
1244 do_log(SMB_VFS_OP_FTRUNCATE, (result >= 0), handle,
1245 "%s", fsp_str_do_log(fsp));
1247 return result;
1250 static int smb_full_audit_fallocate(vfs_handle_struct *handle, files_struct *fsp,
1251 enum vfs_fallocate_mode mode,
1252 SMB_OFF_T offset,
1253 SMB_OFF_T len)
1255 int result;
1257 result = SMB_VFS_NEXT_FALLOCATE(handle, fsp, mode, offset, len);
1259 do_log(SMB_VFS_OP_FALLOCATE, (result >= 0), handle,
1260 "%s", fsp_str_do_log(fsp));
1262 return result;
1265 static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
1266 int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
1268 bool result;
1270 result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
1272 do_log(SMB_VFS_OP_LOCK, result, handle, "%s", fsp_str_do_log(fsp));
1274 return result;
1277 static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
1278 struct files_struct *fsp,
1279 uint32 share_mode, uint32 access_mask)
1281 int result;
1283 result = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_mode, access_mask);
1285 do_log(SMB_VFS_OP_KERNEL_FLOCK, (result >= 0), handle, "%s",
1286 fsp_str_do_log(fsp));
1288 return result;
1291 static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
1292 int leasetype)
1294 int result;
1296 result = SMB_VFS_NEXT_LINUX_SETLEASE(handle, fsp, leasetype);
1298 do_log(SMB_VFS_OP_LINUX_SETLEASE, (result >= 0), handle, "%s",
1299 fsp_str_do_log(fsp));
1301 return result;
1304 static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
1305 SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid)
1307 bool result;
1309 result = SMB_VFS_NEXT_GETLOCK(handle, fsp, poffset, pcount, ptype, ppid);
1311 do_log(SMB_VFS_OP_GETLOCK, result, handle, "%s", fsp_str_do_log(fsp));
1313 return result;
1316 static int smb_full_audit_symlink(vfs_handle_struct *handle,
1317 const char *oldpath, const char *newpath)
1319 int result;
1321 result = SMB_VFS_NEXT_SYMLINK(handle, oldpath, newpath);
1323 do_log(SMB_VFS_OP_SYMLINK, (result >= 0), handle,
1324 "%s|%s", oldpath, newpath);
1326 return result;
1329 static int smb_full_audit_readlink(vfs_handle_struct *handle,
1330 const char *path, char *buf, size_t bufsiz)
1332 int result;
1334 result = SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
1336 do_log(SMB_VFS_OP_READLINK, (result >= 0), handle, "%s", path);
1338 return result;
1341 static int smb_full_audit_link(vfs_handle_struct *handle,
1342 const char *oldpath, const char *newpath)
1344 int result;
1346 result = SMB_VFS_NEXT_LINK(handle, oldpath, newpath);
1348 do_log(SMB_VFS_OP_LINK, (result >= 0), handle,
1349 "%s|%s", oldpath, newpath);
1351 return result;
1354 static int smb_full_audit_mknod(vfs_handle_struct *handle,
1355 const char *pathname, mode_t mode, SMB_DEV_T dev)
1357 int result;
1359 result = SMB_VFS_NEXT_MKNOD(handle, pathname, mode, dev);
1361 do_log(SMB_VFS_OP_MKNOD, (result >= 0), handle, "%s", pathname);
1363 return result;
1366 static char *smb_full_audit_realpath(vfs_handle_struct *handle,
1367 const char *path)
1369 char *result;
1371 result = SMB_VFS_NEXT_REALPATH(handle, path);
1373 do_log(SMB_VFS_OP_REALPATH, (result != NULL), handle, "%s", path);
1375 return result;
1378 static NTSTATUS smb_full_audit_notify_watch(struct vfs_handle_struct *handle,
1379 struct sys_notify_context *ctx,
1380 struct notify_entry *e,
1381 void (*callback)(struct sys_notify_context *ctx,
1382 void *private_data,
1383 struct notify_event *ev),
1384 void *private_data, void *handle_p)
1386 NTSTATUS result;
1388 result = SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, e, callback, private_data, handle_p);
1390 do_log(SMB_VFS_OP_NOTIFY_WATCH, NT_STATUS_IS_OK(result), handle, "");
1392 return result;
1395 static int smb_full_audit_chflags(vfs_handle_struct *handle,
1396 const char *path, unsigned int flags)
1398 int result;
1400 result = SMB_VFS_NEXT_CHFLAGS(handle, path, flags);
1402 do_log(SMB_VFS_OP_CHFLAGS, (result != 0), handle, "%s", path);
1404 return result;
1407 static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
1408 const SMB_STRUCT_STAT *sbuf)
1410 struct file_id id_zero;
1411 struct file_id result;
1413 ZERO_STRUCT(id_zero);
1415 result = SMB_VFS_NEXT_FILE_ID_CREATE(handle, sbuf);
1417 do_log(SMB_VFS_OP_FILE_ID_CREATE,
1418 !file_id_equal(&id_zero, &result),
1419 handle, "%s", file_id_string_tos(&result));
1421 return result;
1424 static NTSTATUS smb_full_audit_streaminfo(vfs_handle_struct *handle,
1425 struct files_struct *fsp,
1426 const char *fname,
1427 TALLOC_CTX *mem_ctx,
1428 unsigned int *pnum_streams,
1429 struct stream_struct **pstreams)
1431 NTSTATUS result;
1433 result = SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx,
1434 pnum_streams, pstreams);
1436 do_log(SMB_VFS_OP_STREAMINFO, NT_STATUS_IS_OK(result), handle,
1437 "%s", fname);
1439 return result;
1442 static int smb_full_audit_get_real_filename(struct vfs_handle_struct *handle,
1443 const char *path,
1444 const char *name,
1445 TALLOC_CTX *mem_ctx,
1446 char **found_name)
1448 int result;
1450 result = SMB_VFS_NEXT_GET_REAL_FILENAME(handle, path, name, mem_ctx,
1451 found_name);
1453 do_log(SMB_VFS_OP_GET_REAL_FILENAME, (result == 0), handle,
1454 "%s/%s->%s", path, name, (result == 0) ? "" : *found_name);
1456 return result;
1459 static const char *smb_full_audit_connectpath(vfs_handle_struct *handle,
1460 const char *fname)
1462 const char *result;
1464 result = SMB_VFS_NEXT_CONNECTPATH(handle, fname);
1466 do_log(SMB_VFS_OP_CONNECTPATH, result != NULL, handle,
1467 "%s", fname);
1469 return result;
1472 static NTSTATUS smb_full_audit_brl_lock_windows(struct vfs_handle_struct *handle,
1473 struct byte_range_lock *br_lck,
1474 struct lock_struct *plock,
1475 bool blocking_lock,
1476 struct blocking_lock_record *blr)
1478 NTSTATUS result;
1480 result = SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle, br_lck, plock,
1481 blocking_lock, blr);
1483 do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS, NT_STATUS_IS_OK(result), handle,
1484 "%s:%llu-%llu. type=%d. blocking=%d", fsp_str_do_log(br_lck->fsp),
1485 plock->start, plock->size, plock->lock_type, blocking_lock );
1487 return result;
1490 static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct *handle,
1491 struct messaging_context *msg_ctx,
1492 struct byte_range_lock *br_lck,
1493 const struct lock_struct *plock)
1495 bool result;
1497 result = SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle, msg_ctx, br_lck,
1498 plock);
1500 do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS, (result == 0), handle,
1501 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck->fsp), plock->start,
1502 plock->size, plock->lock_type);
1504 return result;
1507 static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct *handle,
1508 struct byte_range_lock *br_lck,
1509 struct lock_struct *plock,
1510 struct blocking_lock_record *blr)
1512 bool result;
1514 result = SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle, br_lck, plock, blr);
1516 do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS, (result == 0), handle,
1517 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck->fsp), plock->start,
1518 plock->size);
1520 return result;
1523 static bool smb_full_audit_strict_lock(struct vfs_handle_struct *handle,
1524 struct files_struct *fsp,
1525 struct lock_struct *plock)
1527 bool result;
1529 result = SMB_VFS_NEXT_STRICT_LOCK(handle, fsp, plock);
1531 do_log(SMB_VFS_OP_STRICT_LOCK, result, handle,
1532 "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
1533 plock->size);
1535 return result;
1538 static void smb_full_audit_strict_unlock(struct vfs_handle_struct *handle,
1539 struct files_struct *fsp,
1540 struct lock_struct *plock)
1542 SMB_VFS_NEXT_STRICT_UNLOCK(handle, fsp, plock);
1544 do_log(SMB_VFS_OP_STRICT_UNLOCK, true, handle,
1545 "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
1546 plock->size);
1548 return;
1551 static NTSTATUS smb_full_audit_translate_name(struct vfs_handle_struct *handle,
1552 const char *name,
1553 enum vfs_translate_direction direction,
1554 TALLOC_CTX *mem_ctx,
1555 char **mapped_name)
1557 NTSTATUS result;
1559 result = SMB_VFS_NEXT_TRANSLATE_NAME(handle, name, direction, mem_ctx,
1560 mapped_name);
1562 do_log(SMB_VFS_OP_TRANSLATE_NAME, NT_STATUS_IS_OK(result), handle, "");
1564 return result;
1567 static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1568 uint32 security_info,
1569 struct security_descriptor **ppdesc)
1571 NTSTATUS result;
1573 result = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info, ppdesc);
1575 do_log(SMB_VFS_OP_FGET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1576 "%s", fsp_str_do_log(fsp));
1578 return result;
1581 static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle,
1582 const char *name,
1583 uint32 security_info,
1584 struct security_descriptor **ppdesc)
1586 NTSTATUS result;
1588 result = SMB_VFS_NEXT_GET_NT_ACL(handle, name, security_info, ppdesc);
1590 do_log(SMB_VFS_OP_GET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1591 "%s", name);
1593 return result;
1596 static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1597 uint32 security_info_sent,
1598 const struct security_descriptor *psd)
1600 NTSTATUS result;
1602 result = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
1604 do_log(SMB_VFS_OP_FSET_NT_ACL, NT_STATUS_IS_OK(result), handle, "%s",
1605 fsp_str_do_log(fsp));
1607 return result;
1610 static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
1611 const char *path, mode_t mode)
1613 int result;
1615 result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
1617 do_log(SMB_VFS_OP_CHMOD_ACL, (result >= 0), handle,
1618 "%s|%o", path, mode);
1620 return result;
1623 static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
1624 mode_t mode)
1626 int result;
1628 result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
1630 do_log(SMB_VFS_OP_FCHMOD_ACL, (result >= 0), handle,
1631 "%s|%o", fsp_str_do_log(fsp), mode);
1633 return result;
1636 static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct *handle,
1638 SMB_ACL_T theacl, int entry_id,
1639 SMB_ACL_ENTRY_T *entry_p)
1641 int result;
1643 result = SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id,
1644 entry_p);
1646 do_log(SMB_VFS_OP_SYS_ACL_GET_ENTRY, (result >= 0), handle,
1647 "");
1649 return result;
1652 static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct *handle,
1654 SMB_ACL_ENTRY_T entry_d,
1655 SMB_ACL_TAG_T *tag_type_p)
1657 int result;
1659 result = SMB_VFS_NEXT_SYS_ACL_GET_TAG_TYPE(handle, entry_d,
1660 tag_type_p);
1662 do_log(SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, (result >= 0), handle,
1663 "");
1665 return result;
1668 static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct *handle,
1670 SMB_ACL_ENTRY_T entry_d,
1671 SMB_ACL_PERMSET_T *permset_p)
1673 int result;
1675 result = SMB_VFS_NEXT_SYS_ACL_GET_PERMSET(handle, entry_d,
1676 permset_p);
1678 do_log(SMB_VFS_OP_SYS_ACL_GET_PERMSET, (result >= 0), handle,
1679 "");
1681 return result;
1684 static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct *handle,
1686 SMB_ACL_ENTRY_T entry_d)
1688 void *result;
1690 result = SMB_VFS_NEXT_SYS_ACL_GET_QUALIFIER(handle, entry_d);
1692 do_log(SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, (result != NULL), handle,
1693 "");
1695 return result;
1698 static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
1699 const char *path_p,
1700 SMB_ACL_TYPE_T type)
1702 SMB_ACL_T result;
1704 result = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, path_p, type);
1706 do_log(SMB_VFS_OP_SYS_ACL_GET_FILE, (result != NULL), handle,
1707 "%s", path_p);
1709 return result;
1712 static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
1713 files_struct *fsp)
1715 SMB_ACL_T result;
1717 result = SMB_VFS_NEXT_SYS_ACL_GET_FD(handle, fsp);
1719 do_log(SMB_VFS_OP_SYS_ACL_GET_FD, (result != NULL), handle,
1720 "%s", fsp_str_do_log(fsp));
1722 return result;
1725 static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct *handle,
1727 SMB_ACL_PERMSET_T permset)
1729 int result;
1731 result = SMB_VFS_NEXT_SYS_ACL_CLEAR_PERMS(handle, permset);
1733 do_log(SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, (result >= 0), handle,
1734 "");
1736 return result;
1739 static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct *handle,
1741 SMB_ACL_PERMSET_T permset,
1742 SMB_ACL_PERM_T perm)
1744 int result;
1746 result = SMB_VFS_NEXT_SYS_ACL_ADD_PERM(handle, permset, perm);
1748 do_log(SMB_VFS_OP_SYS_ACL_ADD_PERM, (result >= 0), handle,
1749 "");
1751 return result;
1754 static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct *handle,
1755 SMB_ACL_T theacl,
1756 ssize_t *plen)
1758 char * result;
1760 result = SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen);
1762 do_log(SMB_VFS_OP_SYS_ACL_TO_TEXT, (result != NULL), handle,
1763 "");
1765 return result;
1768 static SMB_ACL_T smb_full_audit_sys_acl_init(vfs_handle_struct *handle,
1770 int count)
1772 SMB_ACL_T result;
1774 result = SMB_VFS_NEXT_SYS_ACL_INIT(handle, count);
1776 do_log(SMB_VFS_OP_SYS_ACL_INIT, (result != NULL), handle,
1777 "");
1779 return result;
1782 static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct *handle,
1783 SMB_ACL_T *pacl,
1784 SMB_ACL_ENTRY_T *pentry)
1786 int result;
1788 result = SMB_VFS_NEXT_SYS_ACL_CREATE_ENTRY(handle, pacl, pentry);
1790 do_log(SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, (result >= 0), handle,
1791 "");
1793 return result;
1796 static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct *handle,
1798 SMB_ACL_ENTRY_T entry,
1799 SMB_ACL_TAG_T tagtype)
1801 int result;
1803 result = SMB_VFS_NEXT_SYS_ACL_SET_TAG_TYPE(handle, entry,
1804 tagtype);
1806 do_log(SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, (result >= 0), handle,
1807 "");
1809 return result;
1812 static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct *handle,
1814 SMB_ACL_ENTRY_T entry,
1815 void *qual)
1817 int result;
1819 result = SMB_VFS_NEXT_SYS_ACL_SET_QUALIFIER(handle, entry, qual);
1821 do_log(SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, (result >= 0), handle,
1822 "");
1824 return result;
1827 static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct *handle,
1829 SMB_ACL_ENTRY_T entry,
1830 SMB_ACL_PERMSET_T permset)
1832 int result;
1834 result = SMB_VFS_NEXT_SYS_ACL_SET_PERMSET(handle, entry, permset);
1836 do_log(SMB_VFS_OP_SYS_ACL_SET_PERMSET, (result >= 0), handle,
1837 "");
1839 return result;
1842 static int smb_full_audit_sys_acl_valid(vfs_handle_struct *handle,
1844 SMB_ACL_T theacl )
1846 int result;
1848 result = SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl);
1850 do_log(SMB_VFS_OP_SYS_ACL_VALID, (result >= 0), handle,
1851 "");
1853 return result;
1856 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
1858 const char *name, SMB_ACL_TYPE_T acltype,
1859 SMB_ACL_T theacl)
1861 int result;
1863 result = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype,
1864 theacl);
1866 do_log(SMB_VFS_OP_SYS_ACL_SET_FILE, (result >= 0), handle,
1867 "%s", name);
1869 return result;
1872 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
1873 SMB_ACL_T theacl)
1875 int result;
1877 result = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
1879 do_log(SMB_VFS_OP_SYS_ACL_SET_FD, (result >= 0), handle,
1880 "%s", fsp_str_do_log(fsp));
1882 return result;
1885 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
1887 const char *path)
1889 int result;
1891 result = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, path);
1893 do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, (result >= 0), handle,
1894 "%s", path);
1896 return result;
1899 static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct *handle,
1901 SMB_ACL_PERMSET_T permset,
1902 SMB_ACL_PERM_T perm)
1904 int result;
1906 result = SMB_VFS_NEXT_SYS_ACL_GET_PERM(handle, permset, perm);
1908 do_log(SMB_VFS_OP_SYS_ACL_GET_PERM, (result >= 0), handle,
1909 "");
1911 return result;
1914 static int smb_full_audit_sys_acl_free_text(vfs_handle_struct *handle,
1916 char *text)
1918 int result;
1920 result = SMB_VFS_NEXT_SYS_ACL_FREE_TEXT(handle, text);
1922 do_log(SMB_VFS_OP_SYS_ACL_FREE_TEXT, (result >= 0), handle,
1923 "");
1925 return result;
1928 static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct *handle,
1930 SMB_ACL_T posix_acl)
1932 int result;
1934 result = SMB_VFS_NEXT_SYS_ACL_FREE_ACL(handle, posix_acl);
1936 do_log(SMB_VFS_OP_SYS_ACL_FREE_ACL, (result >= 0), handle,
1937 "");
1939 return result;
1942 static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct *handle,
1943 void *qualifier,
1944 SMB_ACL_TAG_T tagtype)
1946 int result;
1948 result = SMB_VFS_NEXT_SYS_ACL_FREE_QUALIFIER(handle, qualifier,
1949 tagtype);
1951 do_log(SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, (result >= 0), handle,
1952 "");
1954 return result;
1957 static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
1958 const char *path,
1959 const char *name, void *value, size_t size)
1961 ssize_t result;
1963 result = SMB_VFS_NEXT_GETXATTR(handle, path, name, value, size);
1965 do_log(SMB_VFS_OP_GETXATTR, (result >= 0), handle,
1966 "%s|%s", path, name);
1968 return result;
1971 static ssize_t smb_full_audit_lgetxattr(struct vfs_handle_struct *handle,
1972 const char *path, const char *name,
1973 void *value, size_t size)
1975 ssize_t result;
1977 result = SMB_VFS_NEXT_LGETXATTR(handle, path, name, value, size);
1979 do_log(SMB_VFS_OP_LGETXATTR, (result >= 0), handle,
1980 "%s|%s", path, name);
1982 return result;
1985 static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
1986 struct files_struct *fsp,
1987 const char *name, void *value, size_t size)
1989 ssize_t result;
1991 result = SMB_VFS_NEXT_FGETXATTR(handle, fsp, name, value, size);
1993 do_log(SMB_VFS_OP_FGETXATTR, (result >= 0), handle,
1994 "%s|%s", fsp_str_do_log(fsp), name);
1996 return result;
1999 static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
2000 const char *path, char *list, size_t size)
2002 ssize_t result;
2004 result = SMB_VFS_NEXT_LISTXATTR(handle, path, list, size);
2006 do_log(SMB_VFS_OP_LISTXATTR, (result >= 0), handle, "%s", path);
2008 return result;
2011 static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
2012 const char *path, char *list, size_t size)
2014 ssize_t result;
2016 result = SMB_VFS_NEXT_LLISTXATTR(handle, path, list, size);
2018 do_log(SMB_VFS_OP_LLISTXATTR, (result >= 0), handle, "%s", path);
2020 return result;
2023 static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
2024 struct files_struct *fsp, char *list,
2025 size_t size)
2027 ssize_t result;
2029 result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
2031 do_log(SMB_VFS_OP_FLISTXATTR, (result >= 0), handle,
2032 "%s", fsp_str_do_log(fsp));
2034 return result;
2037 static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
2038 const char *path,
2039 const char *name)
2041 int result;
2043 result = SMB_VFS_NEXT_REMOVEXATTR(handle, path, name);
2045 do_log(SMB_VFS_OP_REMOVEXATTR, (result >= 0), handle,
2046 "%s|%s", path, name);
2048 return result;
2051 static int smb_full_audit_lremovexattr(struct vfs_handle_struct *handle,
2052 const char *path,
2053 const char *name)
2055 int result;
2057 result = SMB_VFS_NEXT_LREMOVEXATTR(handle, path, name);
2059 do_log(SMB_VFS_OP_LREMOVEXATTR, (result >= 0), handle,
2060 "%s|%s", path, name);
2062 return result;
2065 static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
2066 struct files_struct *fsp,
2067 const char *name)
2069 int result;
2071 result = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
2073 do_log(SMB_VFS_OP_FREMOVEXATTR, (result >= 0), handle,
2074 "%s|%s", fsp_str_do_log(fsp), name);
2076 return result;
2079 static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
2080 const char *path,
2081 const char *name, const void *value, size_t size,
2082 int flags)
2084 int result;
2086 result = SMB_VFS_NEXT_SETXATTR(handle, path, name, value, size,
2087 flags);
2089 do_log(SMB_VFS_OP_SETXATTR, (result >= 0), handle,
2090 "%s|%s", path, name);
2092 return result;
2095 static int smb_full_audit_lsetxattr(struct vfs_handle_struct *handle,
2096 const char *path,
2097 const char *name, const void *value, size_t size,
2098 int flags)
2100 int result;
2102 result = SMB_VFS_NEXT_LSETXATTR(handle, path, name, value, size,
2103 flags);
2105 do_log(SMB_VFS_OP_LSETXATTR, (result >= 0), handle,
2106 "%s|%s", path, name);
2108 return result;
2111 static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
2112 struct files_struct *fsp, const char *name,
2113 const void *value, size_t size, int flags)
2115 int result;
2117 result = SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags);
2119 do_log(SMB_VFS_OP_FSETXATTR, (result >= 0), handle,
2120 "%s|%s", fsp_str_do_log(fsp), name);
2122 return result;
2125 static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2127 int result;
2129 result = SMB_VFS_NEXT_AIO_READ(handle, fsp, aiocb);
2130 do_log(SMB_VFS_OP_AIO_READ, (result >= 0), handle,
2131 "%s", fsp_str_do_log(fsp));
2133 return result;
2136 static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2138 int result;
2140 result = SMB_VFS_NEXT_AIO_WRITE(handle, fsp, aiocb);
2141 do_log(SMB_VFS_OP_AIO_WRITE, (result >= 0), handle,
2142 "%s", fsp_str_do_log(fsp));
2144 return result;
2147 static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2149 int result;
2151 result = SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);
2152 do_log(SMB_VFS_OP_AIO_RETURN, (result >= 0), handle,
2153 "%s", fsp_str_do_log(fsp));
2155 return result;
2158 static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2160 int result;
2162 result = SMB_VFS_NEXT_AIO_CANCEL(handle, fsp, aiocb);
2163 do_log(SMB_VFS_OP_AIO_CANCEL, (result >= 0), handle,
2164 "%s", fsp_str_do_log(fsp));
2166 return result;
2169 static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2171 int result;
2173 result = SMB_VFS_NEXT_AIO_ERROR(handle, fsp, aiocb);
2174 do_log(SMB_VFS_OP_AIO_ERROR, (result >= 0), handle,
2175 "%s", fsp_str_do_log(fsp));
2177 return result;
2180 static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
2182 int result;
2184 result = SMB_VFS_NEXT_AIO_FSYNC(handle, fsp, op, aiocb);
2185 do_log(SMB_VFS_OP_AIO_FSYNC, (result >= 0), handle,
2186 "%s", fsp_str_do_log(fsp));
2188 return result;
2191 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)
2193 int result;
2195 result = SMB_VFS_NEXT_AIO_SUSPEND(handle, fsp, aiocb, n, ts);
2196 do_log(SMB_VFS_OP_AIO_SUSPEND, (result >= 0), handle,
2197 "%s", fsp_str_do_log(fsp));
2199 return result;
2202 static bool smb_full_audit_aio_force(struct vfs_handle_struct *handle,
2203 struct files_struct *fsp)
2205 bool result;
2207 result = SMB_VFS_NEXT_AIO_FORCE(handle, fsp);
2208 do_log(SMB_VFS_OP_AIO_FORCE, result, handle,
2209 "%s", fsp_str_do_log(fsp));
2211 return result;
2214 static bool smb_full_audit_is_offline(struct vfs_handle_struct *handle,
2215 const struct smb_filename *fname,
2216 SMB_STRUCT_STAT *sbuf)
2218 bool result;
2220 result = SMB_VFS_NEXT_IS_OFFLINE(handle, fname, sbuf);
2221 do_log(SMB_VFS_OP_IS_OFFLINE, result, handle, "%s",
2222 smb_fname_str_do_log(fname));
2223 return result;
2226 static int smb_full_audit_set_offline(struct vfs_handle_struct *handle,
2227 const struct smb_filename *fname)
2229 int result;
2231 result = SMB_VFS_NEXT_SET_OFFLINE(handle, fname);
2232 do_log(SMB_VFS_OP_SET_OFFLINE, result >= 0, handle, "%s",
2233 smb_fname_str_do_log(fname));
2234 return result;
2237 static struct vfs_fn_pointers vfs_full_audit_fns = {
2239 /* Disk operations */
2241 .connect_fn = smb_full_audit_connect,
2242 .disconnect = smb_full_audit_disconnect,
2243 .disk_free = smb_full_audit_disk_free,
2244 .get_quota = smb_full_audit_get_quota,
2245 .set_quota = smb_full_audit_set_quota,
2246 .get_shadow_copy_data = smb_full_audit_get_shadow_copy_data,
2247 .statvfs = smb_full_audit_statvfs,
2248 .fs_capabilities = smb_full_audit_fs_capabilities,
2249 .opendir = smb_full_audit_opendir,
2250 .fdopendir = smb_full_audit_fdopendir,
2251 .readdir = smb_full_audit_readdir,
2252 .seekdir = smb_full_audit_seekdir,
2253 .telldir = smb_full_audit_telldir,
2254 .rewind_dir = smb_full_audit_rewinddir,
2255 .mkdir = smb_full_audit_mkdir,
2256 .rmdir = smb_full_audit_rmdir,
2257 .closedir = smb_full_audit_closedir,
2258 .init_search_op = smb_full_audit_init_search_op,
2259 .open_fn = smb_full_audit_open,
2260 .create_file = smb_full_audit_create_file,
2261 .close_fn = smb_full_audit_close,
2262 .vfs_read = smb_full_audit_read,
2263 .pread = smb_full_audit_pread,
2264 .write = smb_full_audit_write,
2265 .pwrite = smb_full_audit_pwrite,
2266 .lseek = smb_full_audit_lseek,
2267 .sendfile = smb_full_audit_sendfile,
2268 .recvfile = smb_full_audit_recvfile,
2269 .rename = smb_full_audit_rename,
2270 .fsync = smb_full_audit_fsync,
2271 .stat = smb_full_audit_stat,
2272 .fstat = smb_full_audit_fstat,
2273 .lstat = smb_full_audit_lstat,
2274 .get_alloc_size = smb_full_audit_get_alloc_size,
2275 .unlink = smb_full_audit_unlink,
2276 .chmod = smb_full_audit_chmod,
2277 .fchmod = smb_full_audit_fchmod,
2278 .chown = smb_full_audit_chown,
2279 .fchown = smb_full_audit_fchown,
2280 .lchown = smb_full_audit_lchown,
2281 .chdir = smb_full_audit_chdir,
2282 .getwd = smb_full_audit_getwd,
2283 .ntimes = smb_full_audit_ntimes,
2284 .ftruncate = smb_full_audit_ftruncate,
2285 .fallocate = smb_full_audit_fallocate,
2286 .lock = smb_full_audit_lock,
2287 .kernel_flock = smb_full_audit_kernel_flock,
2288 .linux_setlease = smb_full_audit_linux_setlease,
2289 .getlock = smb_full_audit_getlock,
2290 .symlink = smb_full_audit_symlink,
2291 .vfs_readlink = smb_full_audit_readlink,
2292 .link = smb_full_audit_link,
2293 .mknod = smb_full_audit_mknod,
2294 .realpath = smb_full_audit_realpath,
2295 .notify_watch = smb_full_audit_notify_watch,
2296 .chflags = smb_full_audit_chflags,
2297 .file_id_create = smb_full_audit_file_id_create,
2298 .streaminfo = smb_full_audit_streaminfo,
2299 .get_real_filename = smb_full_audit_get_real_filename,
2300 .connectpath = smb_full_audit_connectpath,
2301 .brl_lock_windows = smb_full_audit_brl_lock_windows,
2302 .brl_unlock_windows = smb_full_audit_brl_unlock_windows,
2303 .brl_cancel_windows = smb_full_audit_brl_cancel_windows,
2304 .strict_lock = smb_full_audit_strict_lock,
2305 .strict_unlock = smb_full_audit_strict_unlock,
2306 .translate_name = smb_full_audit_translate_name,
2307 .fget_nt_acl = smb_full_audit_fget_nt_acl,
2308 .get_nt_acl = smb_full_audit_get_nt_acl,
2309 .fset_nt_acl = smb_full_audit_fset_nt_acl,
2310 .chmod_acl = smb_full_audit_chmod_acl,
2311 .fchmod_acl = smb_full_audit_fchmod_acl,
2312 .sys_acl_get_entry = smb_full_audit_sys_acl_get_entry,
2313 .sys_acl_get_tag_type = smb_full_audit_sys_acl_get_tag_type,
2314 .sys_acl_get_permset = smb_full_audit_sys_acl_get_permset,
2315 .sys_acl_get_qualifier = smb_full_audit_sys_acl_get_qualifier,
2316 .sys_acl_get_file = smb_full_audit_sys_acl_get_file,
2317 .sys_acl_get_fd = smb_full_audit_sys_acl_get_fd,
2318 .sys_acl_clear_perms = smb_full_audit_sys_acl_clear_perms,
2319 .sys_acl_add_perm = smb_full_audit_sys_acl_add_perm,
2320 .sys_acl_to_text = smb_full_audit_sys_acl_to_text,
2321 .sys_acl_init = smb_full_audit_sys_acl_init,
2322 .sys_acl_create_entry = smb_full_audit_sys_acl_create_entry,
2323 .sys_acl_set_tag_type = smb_full_audit_sys_acl_set_tag_type,
2324 .sys_acl_set_qualifier = smb_full_audit_sys_acl_set_qualifier,
2325 .sys_acl_set_permset = smb_full_audit_sys_acl_set_permset,
2326 .sys_acl_valid = smb_full_audit_sys_acl_valid,
2327 .sys_acl_set_file = smb_full_audit_sys_acl_set_file,
2328 .sys_acl_set_fd = smb_full_audit_sys_acl_set_fd,
2329 .sys_acl_delete_def_file = smb_full_audit_sys_acl_delete_def_file,
2330 .sys_acl_get_perm = smb_full_audit_sys_acl_get_perm,
2331 .sys_acl_free_text = smb_full_audit_sys_acl_free_text,
2332 .sys_acl_free_acl = smb_full_audit_sys_acl_free_acl,
2333 .sys_acl_free_qualifier = smb_full_audit_sys_acl_free_qualifier,
2334 .getxattr = smb_full_audit_getxattr,
2335 .lgetxattr = smb_full_audit_lgetxattr,
2336 .fgetxattr = smb_full_audit_fgetxattr,
2337 .listxattr = smb_full_audit_listxattr,
2338 .llistxattr = smb_full_audit_llistxattr,
2339 .flistxattr = smb_full_audit_flistxattr,
2340 .removexattr = smb_full_audit_removexattr,
2341 .lremovexattr = smb_full_audit_lremovexattr,
2342 .fremovexattr = smb_full_audit_fremovexattr,
2343 .setxattr = smb_full_audit_setxattr,
2344 .lsetxattr = smb_full_audit_lsetxattr,
2345 .fsetxattr = smb_full_audit_fsetxattr,
2346 .aio_read = smb_full_audit_aio_read,
2347 .aio_write = smb_full_audit_aio_write,
2348 .aio_return_fn = smb_full_audit_aio_return,
2349 .aio_cancel = smb_full_audit_aio_cancel,
2350 .aio_error_fn = smb_full_audit_aio_error,
2351 .aio_fsync = smb_full_audit_aio_fsync,
2352 .aio_suspend = smb_full_audit_aio_suspend,
2353 .aio_force = smb_full_audit_aio_force,
2354 .is_offline = smb_full_audit_is_offline,
2355 .set_offline = smb_full_audit_set_offline,
2358 NTSTATUS vfs_full_audit_init(void)
2360 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
2361 "full_audit", &vfs_full_audit_fns);
2363 if (!NT_STATUS_IS_OK(ret))
2364 return ret;
2366 vfs_full_audit_debug_level = debug_add_class("full_audit");
2367 if (vfs_full_audit_debug_level == -1) {
2368 vfs_full_audit_debug_level = DBGC_VFS;
2369 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2370 "class!\n"));
2371 } else {
2372 DEBUG(10, ("vfs_full_audit: Debug class number of "
2373 "'full_audit': %d\n", vfs_full_audit_debug_level));
2376 return ret;