s4:ldb:python/api: use only one ldb file in test_contains()
[Samba/gebeck_regimport.git] / source3 / modules / vfs_full_audit.c
blob10422fca791b934177be76ed458d040f597d7d3f
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 "../librpc/gen_ndr/ndr_netlogon.h"
63 static int vfs_full_audit_debug_level = DBGC_VFS;
65 struct vfs_full_audit_private_data {
66 struct bitmap *success_ops;
67 struct bitmap *failure_ops;
70 #undef DBGC_CLASS
71 #define DBGC_CLASS vfs_full_audit_debug_level
73 typedef enum _vfs_op_type {
74 SMB_VFS_OP_NOOP = -1,
76 /* Disk operations */
78 SMB_VFS_OP_CONNECT = 0,
79 SMB_VFS_OP_DISCONNECT,
80 SMB_VFS_OP_DISK_FREE,
81 SMB_VFS_OP_GET_QUOTA,
82 SMB_VFS_OP_SET_QUOTA,
83 SMB_VFS_OP_GET_SHADOW_COPY_DATA,
84 SMB_VFS_OP_STATVFS,
85 SMB_VFS_OP_FS_CAPABILITIES,
87 /* Directory operations */
89 SMB_VFS_OP_OPENDIR,
90 SMB_VFS_OP_READDIR,
91 SMB_VFS_OP_SEEKDIR,
92 SMB_VFS_OP_TELLDIR,
93 SMB_VFS_OP_REWINDDIR,
94 SMB_VFS_OP_MKDIR,
95 SMB_VFS_OP_RMDIR,
96 SMB_VFS_OP_CLOSEDIR,
97 SMB_VFS_OP_INIT_SEARCH_OP,
99 /* File operations */
101 SMB_VFS_OP_OPEN,
102 SMB_VFS_OP_CREATE_FILE,
103 SMB_VFS_OP_CLOSE,
104 SMB_VFS_OP_READ,
105 SMB_VFS_OP_PREAD,
106 SMB_VFS_OP_WRITE,
107 SMB_VFS_OP_PWRITE,
108 SMB_VFS_OP_LSEEK,
109 SMB_VFS_OP_SENDFILE,
110 SMB_VFS_OP_RECVFILE,
111 SMB_VFS_OP_RENAME,
112 SMB_VFS_OP_FSYNC,
113 SMB_VFS_OP_STAT,
114 SMB_VFS_OP_FSTAT,
115 SMB_VFS_OP_LSTAT,
116 SMB_VFS_OP_GET_ALLOC_SIZE,
117 SMB_VFS_OP_UNLINK,
118 SMB_VFS_OP_CHMOD,
119 SMB_VFS_OP_FCHMOD,
120 SMB_VFS_OP_CHOWN,
121 SMB_VFS_OP_FCHOWN,
122 SMB_VFS_OP_LCHOWN,
123 SMB_VFS_OP_CHDIR,
124 SMB_VFS_OP_GETWD,
125 SMB_VFS_OP_NTIMES,
126 SMB_VFS_OP_FTRUNCATE,
127 SMB_VFS_OP_FALLOCATE,
128 SMB_VFS_OP_LOCK,
129 SMB_VFS_OP_KERNEL_FLOCK,
130 SMB_VFS_OP_LINUX_SETLEASE,
131 SMB_VFS_OP_GETLOCK,
132 SMB_VFS_OP_SYMLINK,
133 SMB_VFS_OP_READLINK,
134 SMB_VFS_OP_LINK,
135 SMB_VFS_OP_MKNOD,
136 SMB_VFS_OP_REALPATH,
137 SMB_VFS_OP_NOTIFY_WATCH,
138 SMB_VFS_OP_CHFLAGS,
139 SMB_VFS_OP_FILE_ID_CREATE,
140 SMB_VFS_OP_STREAMINFO,
141 SMB_VFS_OP_GET_REAL_FILENAME,
142 SMB_VFS_OP_CONNECTPATH,
143 SMB_VFS_OP_BRL_LOCK_WINDOWS,
144 SMB_VFS_OP_BRL_UNLOCK_WINDOWS,
145 SMB_VFS_OP_BRL_CANCEL_WINDOWS,
146 SMB_VFS_OP_STRICT_LOCK,
147 SMB_VFS_OP_STRICT_UNLOCK,
148 SMB_VFS_OP_TRANSLATE_NAME,
150 /* NT ACL operations. */
152 SMB_VFS_OP_FGET_NT_ACL,
153 SMB_VFS_OP_GET_NT_ACL,
154 SMB_VFS_OP_FSET_NT_ACL,
156 /* POSIX ACL operations. */
158 SMB_VFS_OP_CHMOD_ACL,
159 SMB_VFS_OP_FCHMOD_ACL,
161 SMB_VFS_OP_SYS_ACL_GET_ENTRY,
162 SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE,
163 SMB_VFS_OP_SYS_ACL_GET_PERMSET,
164 SMB_VFS_OP_SYS_ACL_GET_QUALIFIER,
165 SMB_VFS_OP_SYS_ACL_GET_FILE,
166 SMB_VFS_OP_SYS_ACL_GET_FD,
167 SMB_VFS_OP_SYS_ACL_CLEAR_PERMS,
168 SMB_VFS_OP_SYS_ACL_ADD_PERM,
169 SMB_VFS_OP_SYS_ACL_TO_TEXT,
170 SMB_VFS_OP_SYS_ACL_INIT,
171 SMB_VFS_OP_SYS_ACL_CREATE_ENTRY,
172 SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE,
173 SMB_VFS_OP_SYS_ACL_SET_QUALIFIER,
174 SMB_VFS_OP_SYS_ACL_SET_PERMSET,
175 SMB_VFS_OP_SYS_ACL_VALID,
176 SMB_VFS_OP_SYS_ACL_SET_FILE,
177 SMB_VFS_OP_SYS_ACL_SET_FD,
178 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
179 SMB_VFS_OP_SYS_ACL_GET_PERM,
180 SMB_VFS_OP_SYS_ACL_FREE_TEXT,
181 SMB_VFS_OP_SYS_ACL_FREE_ACL,
182 SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER,
184 /* EA operations. */
185 SMB_VFS_OP_GETXATTR,
186 SMB_VFS_OP_LGETXATTR,
187 SMB_VFS_OP_FGETXATTR,
188 SMB_VFS_OP_LISTXATTR,
189 SMB_VFS_OP_LLISTXATTR,
190 SMB_VFS_OP_FLISTXATTR,
191 SMB_VFS_OP_REMOVEXATTR,
192 SMB_VFS_OP_LREMOVEXATTR,
193 SMB_VFS_OP_FREMOVEXATTR,
194 SMB_VFS_OP_SETXATTR,
195 SMB_VFS_OP_LSETXATTR,
196 SMB_VFS_OP_FSETXATTR,
198 /* aio operations */
199 SMB_VFS_OP_AIO_READ,
200 SMB_VFS_OP_AIO_WRITE,
201 SMB_VFS_OP_AIO_RETURN,
202 SMB_VFS_OP_AIO_CANCEL,
203 SMB_VFS_OP_AIO_ERROR,
204 SMB_VFS_OP_AIO_FSYNC,
205 SMB_VFS_OP_AIO_SUSPEND,
206 SMB_VFS_OP_AIO_FORCE,
208 /* offline operations */
209 SMB_VFS_OP_IS_OFFLINE,
210 SMB_VFS_OP_SET_OFFLINE,
212 /* This should always be last enum value */
214 SMB_VFS_OP_LAST
215 } vfs_op_type;
217 /* The following array *must* be in the same order as defined in vfs.h */
219 static struct {
220 vfs_op_type type;
221 const char *name;
222 } vfs_op_names[] = {
223 { SMB_VFS_OP_CONNECT, "connect" },
224 { SMB_VFS_OP_DISCONNECT, "disconnect" },
225 { SMB_VFS_OP_DISK_FREE, "disk_free" },
226 { SMB_VFS_OP_GET_QUOTA, "get_quota" },
227 { SMB_VFS_OP_SET_QUOTA, "set_quota" },
228 { SMB_VFS_OP_GET_SHADOW_COPY_DATA, "get_shadow_copy_data" },
229 { SMB_VFS_OP_STATVFS, "statvfs" },
230 { SMB_VFS_OP_FS_CAPABILITIES, "fs_capabilities" },
231 { SMB_VFS_OP_OPENDIR, "opendir" },
232 { SMB_VFS_OP_READDIR, "readdir" },
233 { SMB_VFS_OP_SEEKDIR, "seekdir" },
234 { SMB_VFS_OP_TELLDIR, "telldir" },
235 { SMB_VFS_OP_REWINDDIR, "rewinddir" },
236 { SMB_VFS_OP_MKDIR, "mkdir" },
237 { SMB_VFS_OP_RMDIR, "rmdir" },
238 { SMB_VFS_OP_CLOSEDIR, "closedir" },
239 { SMB_VFS_OP_INIT_SEARCH_OP, "init_search_op" },
240 { SMB_VFS_OP_OPEN, "open" },
241 { SMB_VFS_OP_CREATE_FILE, "create_file" },
242 { SMB_VFS_OP_CLOSE, "close" },
243 { SMB_VFS_OP_READ, "read" },
244 { SMB_VFS_OP_PREAD, "pread" },
245 { SMB_VFS_OP_WRITE, "write" },
246 { SMB_VFS_OP_PWRITE, "pwrite" },
247 { SMB_VFS_OP_LSEEK, "lseek" },
248 { SMB_VFS_OP_SENDFILE, "sendfile" },
249 { SMB_VFS_OP_RECVFILE, "recvfile" },
250 { SMB_VFS_OP_RENAME, "rename" },
251 { SMB_VFS_OP_FSYNC, "fsync" },
252 { SMB_VFS_OP_STAT, "stat" },
253 { SMB_VFS_OP_FSTAT, "fstat" },
254 { SMB_VFS_OP_LSTAT, "lstat" },
255 { SMB_VFS_OP_GET_ALLOC_SIZE, "get_alloc_size" },
256 { SMB_VFS_OP_UNLINK, "unlink" },
257 { SMB_VFS_OP_CHMOD, "chmod" },
258 { SMB_VFS_OP_FCHMOD, "fchmod" },
259 { SMB_VFS_OP_CHOWN, "chown" },
260 { SMB_VFS_OP_FCHOWN, "fchown" },
261 { SMB_VFS_OP_LCHOWN, "lchown" },
262 { SMB_VFS_OP_CHDIR, "chdir" },
263 { SMB_VFS_OP_GETWD, "getwd" },
264 { SMB_VFS_OP_NTIMES, "ntimes" },
265 { SMB_VFS_OP_FTRUNCATE, "ftruncate" },
266 { SMB_VFS_OP_FALLOCATE,"fallocate" },
267 { SMB_VFS_OP_LOCK, "lock" },
268 { SMB_VFS_OP_KERNEL_FLOCK, "kernel_flock" },
269 { SMB_VFS_OP_LINUX_SETLEASE, "linux_setlease" },
270 { SMB_VFS_OP_GETLOCK, "getlock" },
271 { SMB_VFS_OP_SYMLINK, "symlink" },
272 { SMB_VFS_OP_READLINK, "readlink" },
273 { SMB_VFS_OP_LINK, "link" },
274 { SMB_VFS_OP_MKNOD, "mknod" },
275 { SMB_VFS_OP_REALPATH, "realpath" },
276 { SMB_VFS_OP_NOTIFY_WATCH, "notify_watch" },
277 { SMB_VFS_OP_CHFLAGS, "chflags" },
278 { SMB_VFS_OP_FILE_ID_CREATE, "file_id_create" },
279 { SMB_VFS_OP_STREAMINFO, "streaminfo" },
280 { SMB_VFS_OP_GET_REAL_FILENAME, "get_real_filename" },
281 { SMB_VFS_OP_CONNECTPATH, "connectpath" },
282 { SMB_VFS_OP_BRL_LOCK_WINDOWS, "brl_lock_windows" },
283 { SMB_VFS_OP_BRL_UNLOCK_WINDOWS, "brl_unlock_windows" },
284 { SMB_VFS_OP_BRL_CANCEL_WINDOWS, "brl_cancel_windows" },
285 { SMB_VFS_OP_STRICT_LOCK, "strict_lock" },
286 { SMB_VFS_OP_STRICT_UNLOCK, "strict_unlock" },
287 { SMB_VFS_OP_TRANSLATE_NAME, "translate_name" },
288 { SMB_VFS_OP_FGET_NT_ACL, "fget_nt_acl" },
289 { SMB_VFS_OP_GET_NT_ACL, "get_nt_acl" },
290 { SMB_VFS_OP_FSET_NT_ACL, "fset_nt_acl" },
291 { SMB_VFS_OP_CHMOD_ACL, "chmod_acl" },
292 { SMB_VFS_OP_FCHMOD_ACL, "fchmod_acl" },
293 { SMB_VFS_OP_SYS_ACL_GET_ENTRY, "sys_acl_get_entry" },
294 { SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, "sys_acl_get_tag_type" },
295 { SMB_VFS_OP_SYS_ACL_GET_PERMSET, "sys_acl_get_permset" },
296 { SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, "sys_acl_get_qualifier" },
297 { SMB_VFS_OP_SYS_ACL_GET_FILE, "sys_acl_get_file" },
298 { SMB_VFS_OP_SYS_ACL_GET_FD, "sys_acl_get_fd" },
299 { SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, "sys_acl_clear_perms" },
300 { SMB_VFS_OP_SYS_ACL_ADD_PERM, "sys_acl_add_perm" },
301 { SMB_VFS_OP_SYS_ACL_TO_TEXT, "sys_acl_to_text" },
302 { SMB_VFS_OP_SYS_ACL_INIT, "sys_acl_init" },
303 { SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, "sys_acl_create_entry" },
304 { SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, "sys_acl_set_tag_type" },
305 { SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, "sys_acl_set_qualifier" },
306 { SMB_VFS_OP_SYS_ACL_SET_PERMSET, "sys_acl_set_permset" },
307 { SMB_VFS_OP_SYS_ACL_VALID, "sys_acl_valid" },
308 { SMB_VFS_OP_SYS_ACL_SET_FILE, "sys_acl_set_file" },
309 { SMB_VFS_OP_SYS_ACL_SET_FD, "sys_acl_set_fd" },
310 { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, "sys_acl_delete_def_file" },
311 { SMB_VFS_OP_SYS_ACL_GET_PERM, "sys_acl_get_perm" },
312 { SMB_VFS_OP_SYS_ACL_FREE_TEXT, "sys_acl_free_text" },
313 { SMB_VFS_OP_SYS_ACL_FREE_ACL, "sys_acl_free_acl" },
314 { SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, "sys_acl_free_qualifier" },
315 { SMB_VFS_OP_GETXATTR, "getxattr" },
316 { SMB_VFS_OP_LGETXATTR, "lgetxattr" },
317 { SMB_VFS_OP_FGETXATTR, "fgetxattr" },
318 { SMB_VFS_OP_LISTXATTR, "listxattr" },
319 { SMB_VFS_OP_LLISTXATTR, "llistxattr" },
320 { SMB_VFS_OP_FLISTXATTR, "flistxattr" },
321 { SMB_VFS_OP_REMOVEXATTR, "removexattr" },
322 { SMB_VFS_OP_LREMOVEXATTR, "lremovexattr" },
323 { SMB_VFS_OP_FREMOVEXATTR, "fremovexattr" },
324 { SMB_VFS_OP_SETXATTR, "setxattr" },
325 { SMB_VFS_OP_LSETXATTR, "lsetxattr" },
326 { SMB_VFS_OP_FSETXATTR, "fsetxattr" },
327 { SMB_VFS_OP_AIO_READ, "aio_read" },
328 { SMB_VFS_OP_AIO_WRITE, "aio_write" },
329 { SMB_VFS_OP_AIO_RETURN,"aio_return" },
330 { SMB_VFS_OP_AIO_CANCEL,"aio_cancel" },
331 { SMB_VFS_OP_AIO_ERROR, "aio_error" },
332 { SMB_VFS_OP_AIO_FSYNC, "aio_fsync" },
333 { SMB_VFS_OP_AIO_SUSPEND,"aio_suspend" },
334 { SMB_VFS_OP_AIO_FORCE, "aio_force" },
335 { SMB_VFS_OP_IS_OFFLINE, "aio_is_offline" },
336 { SMB_VFS_OP_SET_OFFLINE, "aio_set_offline" },
337 { SMB_VFS_OP_LAST, NULL }
340 static int audit_syslog_facility(vfs_handle_struct *handle)
342 static const struct enum_list enum_log_facilities[] = {
343 { LOG_USER, "USER" },
344 { LOG_LOCAL0, "LOCAL0" },
345 { LOG_LOCAL1, "LOCAL1" },
346 { LOG_LOCAL2, "LOCAL2" },
347 { LOG_LOCAL3, "LOCAL3" },
348 { LOG_LOCAL4, "LOCAL4" },
349 { LOG_LOCAL5, "LOCAL5" },
350 { LOG_LOCAL6, "LOCAL6" },
351 { LOG_LOCAL7, "LOCAL7" }
354 int facility;
356 facility = lp_parm_enum(SNUM(handle->conn), "full_audit", "facility", enum_log_facilities, LOG_USER);
358 return facility;
361 static int audit_syslog_priority(vfs_handle_struct *handle)
363 static const struct enum_list enum_log_priorities[] = {
364 { LOG_EMERG, "EMERG" },
365 { LOG_ALERT, "ALERT" },
366 { LOG_CRIT, "CRIT" },
367 { LOG_ERR, "ERR" },
368 { LOG_WARNING, "WARNING" },
369 { LOG_NOTICE, "NOTICE" },
370 { LOG_INFO, "INFO" },
371 { LOG_DEBUG, "DEBUG" }
374 int priority;
376 priority = lp_parm_enum(SNUM(handle->conn), "full_audit", "priority",
377 enum_log_priorities, LOG_NOTICE);
378 if (priority == -1) {
379 priority = LOG_WARNING;
382 return priority;
385 static char *audit_prefix(TALLOC_CTX *ctx, connection_struct *conn)
387 char *prefix = NULL;
388 char *result;
390 prefix = talloc_strdup(ctx,
391 lp_parm_const_string(SNUM(conn), "full_audit",
392 "prefix", "%u|%I"));
393 if (!prefix) {
394 return NULL;
396 result = talloc_sub_advanced(ctx,
397 lp_servicename(SNUM(conn)),
398 conn->server_info->unix_name,
399 conn->connectpath,
400 conn->server_info->utok.gid,
401 conn->server_info->sanitized_username,
402 conn->server_info->info3->base.domain.string,
403 prefix);
404 TALLOC_FREE(prefix);
405 return result;
408 static bool log_success(vfs_handle_struct *handle, vfs_op_type op)
410 struct vfs_full_audit_private_data *pd = NULL;
412 SMB_VFS_HANDLE_GET_DATA(handle, pd,
413 struct vfs_full_audit_private_data,
414 return True);
416 if (pd->success_ops == NULL) {
417 return True;
420 return bitmap_query(pd->success_ops, op);
423 static bool log_failure(vfs_handle_struct *handle, vfs_op_type op)
425 struct vfs_full_audit_private_data *pd = NULL;
427 SMB_VFS_HANDLE_GET_DATA(handle, pd,
428 struct vfs_full_audit_private_data,
429 return True);
431 if (pd->failure_ops == NULL)
432 return True;
434 return bitmap_query(pd->failure_ops, op);
437 static struct bitmap *init_bitmap(TALLOC_CTX *mem_ctx, const char **ops)
439 struct bitmap *bm;
441 if (ops == NULL) {
442 return NULL;
445 bm = bitmap_talloc(mem_ctx, SMB_VFS_OP_LAST);
446 if (bm == NULL) {
447 DEBUG(0, ("Could not alloc bitmap -- "
448 "defaulting to logging everything\n"));
449 return NULL;
452 for (; *ops != NULL; ops += 1) {
453 int i;
454 bool neg = false;
455 const char *op;
457 if (strequal(*ops, "all")) {
458 for (i=0; i<SMB_VFS_OP_LAST; i++) {
459 bitmap_set(bm, i);
461 continue;
464 if (strequal(*ops, "none")) {
465 break;
468 op = ops[0];
469 if (op[0] == '!') {
470 neg = true;
471 op += 1;
474 for (i=0; i<SMB_VFS_OP_LAST; i++) {
475 if (vfs_op_names[i].name == NULL) {
476 smb_panic("vfs_full_audit.c: name table not "
477 "in sync with vfs.h\n");
479 if (strequal(op, vfs_op_names[i].name)) {
480 if (neg) {
481 bitmap_clear(bm, i);
482 } else {
483 bitmap_set(bm, i);
485 break;
488 if (i == SMB_VFS_OP_LAST) {
489 DEBUG(0, ("Could not find opname %s, logging all\n",
490 *ops));
491 TALLOC_FREE(bm);
492 return NULL;
495 return bm;
498 static const char *audit_opname(vfs_op_type op)
500 if (op >= SMB_VFS_OP_LAST)
501 return "INVALID VFS OP";
502 return vfs_op_names[op].name;
505 static TALLOC_CTX *tmp_do_log_ctx;
507 * Get us a temporary talloc context usable just for DEBUG arguments
509 static TALLOC_CTX *do_log_ctx(void)
511 if (tmp_do_log_ctx == NULL) {
512 tmp_do_log_ctx = talloc_named_const(NULL, 0, "do_log_ctx");
514 return tmp_do_log_ctx;
517 static void do_log(vfs_op_type op, bool success, vfs_handle_struct *handle,
518 const char *format, ...)
520 fstring err_msg;
521 char *audit_pre = NULL;
522 va_list ap;
523 char *op_msg = NULL;
524 int priority;
526 if (success && (!log_success(handle, op)))
527 goto out;
529 if (!success && (!log_failure(handle, op)))
530 goto out;
532 if (success)
533 fstrcpy(err_msg, "ok");
534 else
535 fstr_sprintf(err_msg, "fail (%s)", strerror(errno));
537 va_start(ap, format);
538 op_msg = talloc_vasprintf(talloc_tos(), format, ap);
539 va_end(ap);
541 if (!op_msg) {
542 goto out;
546 * Specify the facility to interoperate with other syslog callers
547 * (smbd for example).
549 priority = audit_syslog_priority(handle) |
550 audit_syslog_facility(handle);
552 audit_pre = audit_prefix(talloc_tos(), handle->conn);
553 syslog(priority, "%s|%s|%s|%s\n",
554 audit_pre ? audit_pre : "",
555 audit_opname(op), err_msg, op_msg);
557 out:
558 TALLOC_FREE(audit_pre);
559 TALLOC_FREE(op_msg);
560 TALLOC_FREE(tmp_do_log_ctx);
562 return;
566 * Return a string using the do_log_ctx()
568 static const char *smb_fname_str_do_log(const struct smb_filename *smb_fname)
570 char *fname = NULL;
571 NTSTATUS status;
573 if (smb_fname == NULL) {
574 return "";
576 status = get_full_smb_filename(do_log_ctx(), smb_fname, &fname);
577 if (!NT_STATUS_IS_OK(status)) {
578 return "";
580 return fname;
584 * Return an fsp debug string using the do_log_ctx()
586 static const char *fsp_str_do_log(const struct files_struct *fsp)
588 return smb_fname_str_do_log(fsp->fsp_name);
591 /* Implementation of vfs_ops. Pass everything on to the default
592 operation but log event first. */
594 static int smb_full_audit_connect(vfs_handle_struct *handle,
595 const char *svc, const char *user)
597 int result;
598 struct vfs_full_audit_private_data *pd = NULL;
600 result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
601 if (result < 0) {
602 return result;
605 pd = TALLOC_ZERO_P(handle, struct vfs_full_audit_private_data);
606 if (!pd) {
607 SMB_VFS_NEXT_DISCONNECT(handle);
608 return -1;
611 #ifndef WITH_SYSLOG
612 openlog("smbd_audit", 0, audit_syslog_facility(handle));
613 #endif
615 pd->success_ops = init_bitmap(
616 pd, lp_parm_string_list(SNUM(handle->conn), "full_audit",
617 "success", NULL));
618 pd->failure_ops = init_bitmap(
619 pd, lp_parm_string_list(SNUM(handle->conn), "full_audit",
620 "failure", NULL));
622 /* Store the private data. */
623 SMB_VFS_HANDLE_SET_DATA(handle, pd, NULL,
624 struct vfs_full_audit_private_data, return -1);
626 do_log(SMB_VFS_OP_CONNECT, True, handle,
627 "%s", svc);
629 return 0;
632 static void smb_full_audit_disconnect(vfs_handle_struct *handle)
634 SMB_VFS_NEXT_DISCONNECT(handle);
636 do_log(SMB_VFS_OP_DISCONNECT, True, handle,
637 "%s", lp_servicename(SNUM(handle->conn)));
639 /* The bitmaps will be disconnected when the private
640 data is deleted. */
642 return;
645 static uint64_t smb_full_audit_disk_free(vfs_handle_struct *handle,
646 const char *path,
647 bool small_query, uint64_t *bsize,
648 uint64_t *dfree, uint64_t *dsize)
650 uint64_t result;
652 result = SMB_VFS_NEXT_DISK_FREE(handle, path, small_query, bsize,
653 dfree, dsize);
655 /* Don't have a reasonable notion of failure here */
657 do_log(SMB_VFS_OP_DISK_FREE, True, handle, "%s", path);
659 return result;
662 static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
663 enum SMB_QUOTA_TYPE qtype, unid_t id,
664 SMB_DISK_QUOTA *qt)
666 int result;
668 result = SMB_VFS_NEXT_GET_QUOTA(handle, qtype, id, qt);
670 do_log(SMB_VFS_OP_GET_QUOTA, (result >= 0), handle, "");
672 return result;
676 static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
677 enum SMB_QUOTA_TYPE qtype, unid_t id,
678 SMB_DISK_QUOTA *qt)
680 int result;
682 result = SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, qt);
684 do_log(SMB_VFS_OP_SET_QUOTA, (result >= 0), handle, "");
686 return result;
689 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
690 struct files_struct *fsp,
691 SHADOW_COPY_DATA *shadow_copy_data, bool labels)
693 int result;
695 result = SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle, fsp, shadow_copy_data, labels);
697 do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA, (result >= 0), handle, "");
699 return result;
702 static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
703 const char *path,
704 struct vfs_statvfs_struct *statbuf)
706 int result;
708 result = SMB_VFS_NEXT_STATVFS(handle, path, statbuf);
710 do_log(SMB_VFS_OP_STATVFS, (result >= 0), handle, "");
712 return result;
715 static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct *handle, enum timestamp_set_resolution *p_ts_res)
717 int result;
719 result = SMB_VFS_NEXT_FS_CAPABILITIES(handle, p_ts_res);
721 do_log(SMB_VFS_OP_FS_CAPABILITIES, true, handle, "");
723 return result;
726 static SMB_STRUCT_DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
727 const char *fname, const char *mask, uint32 attr)
729 SMB_STRUCT_DIR *result;
731 result = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
733 do_log(SMB_VFS_OP_OPENDIR, (result != NULL), handle, "%s", fname);
735 return result;
738 static SMB_STRUCT_DIRENT *smb_full_audit_readdir(vfs_handle_struct *handle,
739 SMB_STRUCT_DIR *dirp, SMB_STRUCT_STAT *sbuf)
741 SMB_STRUCT_DIRENT *result;
743 result = SMB_VFS_NEXT_READDIR(handle, dirp, sbuf);
745 /* This operation has no reasonable error condition
746 * (End of dir is also failure), so always succeed.
748 do_log(SMB_VFS_OP_READDIR, True, handle, "");
750 return result;
753 static void smb_full_audit_seekdir(vfs_handle_struct *handle,
754 SMB_STRUCT_DIR *dirp, long offset)
756 SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
758 do_log(SMB_VFS_OP_SEEKDIR, True, handle, "");
759 return;
762 static long smb_full_audit_telldir(vfs_handle_struct *handle,
763 SMB_STRUCT_DIR *dirp)
765 long result;
767 result = SMB_VFS_NEXT_TELLDIR(handle, dirp);
769 do_log(SMB_VFS_OP_TELLDIR, True, handle, "");
771 return result;
774 static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
775 SMB_STRUCT_DIR *dirp)
777 SMB_VFS_NEXT_REWINDDIR(handle, dirp);
779 do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
780 return;
783 static int smb_full_audit_mkdir(vfs_handle_struct *handle,
784 const char *path, mode_t mode)
786 int result;
788 result = SMB_VFS_NEXT_MKDIR(handle, path, mode);
790 do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s", path);
792 return result;
795 static int smb_full_audit_rmdir(vfs_handle_struct *handle,
796 const char *path)
798 int result;
800 result = SMB_VFS_NEXT_RMDIR(handle, path);
802 do_log(SMB_VFS_OP_RMDIR, (result >= 0), handle, "%s", path);
804 return result;
807 static int smb_full_audit_closedir(vfs_handle_struct *handle,
808 SMB_STRUCT_DIR *dirp)
810 int result;
812 result = SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
814 do_log(SMB_VFS_OP_CLOSEDIR, (result >= 0), handle, "");
816 return result;
819 static void smb_full_audit_init_search_op(vfs_handle_struct *handle,
820 SMB_STRUCT_DIR *dirp)
822 SMB_VFS_NEXT_INIT_SEARCH_OP(handle, dirp);
824 do_log(SMB_VFS_OP_INIT_SEARCH_OP, True, handle, "");
825 return;
828 static int smb_full_audit_open(vfs_handle_struct *handle,
829 struct smb_filename *smb_fname,
830 files_struct *fsp, int flags, mode_t mode)
832 int result;
834 result = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
836 do_log(SMB_VFS_OP_OPEN, (result >= 0), handle, "%s|%s",
837 ((flags & O_WRONLY) || (flags & O_RDWR))?"w":"r",
838 smb_fname_str_do_log(smb_fname));
840 return result;
843 static NTSTATUS smb_full_audit_create_file(vfs_handle_struct *handle,
844 struct smb_request *req,
845 uint16_t root_dir_fid,
846 struct smb_filename *smb_fname,
847 uint32_t access_mask,
848 uint32_t share_access,
849 uint32_t create_disposition,
850 uint32_t create_options,
851 uint32_t file_attributes,
852 uint32_t oplock_request,
853 uint64_t allocation_size,
854 uint32_t private_flags,
855 struct security_descriptor *sd,
856 struct ea_list *ea_list,
857 files_struct **result_fsp,
858 int *pinfo)
860 NTSTATUS result;
861 const char* str_create_disposition;
863 switch (create_disposition) {
864 case FILE_SUPERSEDE:
865 str_create_disposition = "supersede";
866 break;
867 case FILE_OVERWRITE_IF:
868 str_create_disposition = "overwrite_if";
869 break;
870 case FILE_OPEN:
871 str_create_disposition = "open";
872 break;
873 case FILE_OVERWRITE:
874 str_create_disposition = "overwrite";
875 break;
876 case FILE_CREATE:
877 str_create_disposition = "create";
878 break;
879 case FILE_OPEN_IF:
880 str_create_disposition = "open_if";
881 break;
882 default:
883 str_create_disposition = "unknown";
886 result = SMB_VFS_NEXT_CREATE_FILE(
887 handle, /* handle */
888 req, /* req */
889 root_dir_fid, /* root_dir_fid */
890 smb_fname, /* fname */
891 access_mask, /* access_mask */
892 share_access, /* share_access */
893 create_disposition, /* create_disposition*/
894 create_options, /* create_options */
895 file_attributes, /* file_attributes */
896 oplock_request, /* oplock_request */
897 allocation_size, /* allocation_size */
898 private_flags,
899 sd, /* sd */
900 ea_list, /* ea_list */
901 result_fsp, /* result */
902 pinfo); /* pinfo */
904 do_log(SMB_VFS_OP_CREATE_FILE, (NT_STATUS_IS_OK(result)), handle,
905 "0x%x|%s|%s|%s", access_mask,
906 create_options & FILE_DIRECTORY_FILE ? "dir" : "file",
907 str_create_disposition, smb_fname_str_do_log(smb_fname));
909 return result;
912 static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp)
914 int result;
916 result = SMB_VFS_NEXT_CLOSE(handle, fsp);
918 do_log(SMB_VFS_OP_CLOSE, (result >= 0), handle, "%s",
919 fsp_str_do_log(fsp));
921 return result;
924 static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
925 void *data, size_t n)
927 ssize_t result;
929 result = SMB_VFS_NEXT_READ(handle, fsp, data, n);
931 do_log(SMB_VFS_OP_READ, (result >= 0), handle, "%s",
932 fsp_str_do_log(fsp));
934 return result;
937 static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
938 void *data, size_t n, SMB_OFF_T offset)
940 ssize_t result;
942 result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
944 do_log(SMB_VFS_OP_PREAD, (result >= 0), handle, "%s",
945 fsp_str_do_log(fsp));
947 return result;
950 static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
951 const void *data, size_t n)
953 ssize_t result;
955 result = SMB_VFS_NEXT_WRITE(handle, fsp, data, n);
957 do_log(SMB_VFS_OP_WRITE, (result >= 0), handle, "%s",
958 fsp_str_do_log(fsp));
960 return result;
963 static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
964 const void *data, size_t n,
965 SMB_OFF_T offset)
967 ssize_t result;
969 result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
971 do_log(SMB_VFS_OP_PWRITE, (result >= 0), handle, "%s",
972 fsp_str_do_log(fsp));
974 return result;
977 static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
978 SMB_OFF_T offset, int whence)
980 ssize_t result;
982 result = SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
984 do_log(SMB_VFS_OP_LSEEK, (result != (ssize_t)-1), handle,
985 "%s", fsp_str_do_log(fsp));
987 return result;
990 static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
991 files_struct *fromfsp,
992 const DATA_BLOB *hdr, SMB_OFF_T offset,
993 size_t n)
995 ssize_t result;
997 result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
999 do_log(SMB_VFS_OP_SENDFILE, (result >= 0), handle,
1000 "%s", fsp_str_do_log(fromfsp));
1002 return result;
1005 static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
1006 files_struct *tofsp,
1007 SMB_OFF_T offset,
1008 size_t n)
1010 ssize_t result;
1012 result = SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
1014 do_log(SMB_VFS_OP_RECVFILE, (result >= 0), handle,
1015 "%s", fsp_str_do_log(tofsp));
1017 return result;
1020 static int smb_full_audit_rename(vfs_handle_struct *handle,
1021 const struct smb_filename *smb_fname_src,
1022 const struct smb_filename *smb_fname_dst)
1024 int result;
1026 result = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
1028 do_log(SMB_VFS_OP_RENAME, (result >= 0), handle, "%s|%s",
1029 smb_fname_str_do_log(smb_fname_src),
1030 smb_fname_str_do_log(smb_fname_dst));
1032 return result;
1035 static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp)
1037 int result;
1039 result = SMB_VFS_NEXT_FSYNC(handle, fsp);
1041 do_log(SMB_VFS_OP_FSYNC, (result >= 0), handle, "%s",
1042 fsp_str_do_log(fsp));
1044 return result;
1047 static int smb_full_audit_stat(vfs_handle_struct *handle,
1048 struct smb_filename *smb_fname)
1050 int result;
1052 result = SMB_VFS_NEXT_STAT(handle, smb_fname);
1054 do_log(SMB_VFS_OP_STAT, (result >= 0), handle, "%s",
1055 smb_fname_str_do_log(smb_fname));
1057 return result;
1060 static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
1061 SMB_STRUCT_STAT *sbuf)
1063 int result;
1065 result = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
1067 do_log(SMB_VFS_OP_FSTAT, (result >= 0), handle, "%s",
1068 fsp_str_do_log(fsp));
1070 return result;
1073 static int smb_full_audit_lstat(vfs_handle_struct *handle,
1074 struct smb_filename *smb_fname)
1076 int result;
1078 result = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
1080 do_log(SMB_VFS_OP_LSTAT, (result >= 0), handle, "%s",
1081 smb_fname_str_do_log(smb_fname));
1083 return result;
1086 static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct *handle,
1087 files_struct *fsp, const SMB_STRUCT_STAT *sbuf)
1089 uint64_t result;
1091 result = SMB_VFS_NEXT_GET_ALLOC_SIZE(handle, fsp, sbuf);
1093 do_log(SMB_VFS_OP_GET_ALLOC_SIZE, (result != (uint64_t)-1), handle,
1094 "%llu", result);
1096 return result;
1099 static int smb_full_audit_unlink(vfs_handle_struct *handle,
1100 const struct smb_filename *smb_fname)
1102 int result;
1104 result = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
1106 do_log(SMB_VFS_OP_UNLINK, (result >= 0), handle, "%s",
1107 smb_fname_str_do_log(smb_fname));
1109 return result;
1112 static int smb_full_audit_chmod(vfs_handle_struct *handle,
1113 const char *path, mode_t mode)
1115 int result;
1117 result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
1119 do_log(SMB_VFS_OP_CHMOD, (result >= 0), handle, "%s|%o", path, mode);
1121 return result;
1124 static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
1125 mode_t mode)
1127 int result;
1129 result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
1131 do_log(SMB_VFS_OP_FCHMOD, (result >= 0), handle,
1132 "%s|%o", fsp_str_do_log(fsp), mode);
1134 return result;
1137 static int smb_full_audit_chown(vfs_handle_struct *handle,
1138 const char *path, uid_t uid, gid_t gid)
1140 int result;
1142 result = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
1144 do_log(SMB_VFS_OP_CHOWN, (result >= 0), handle, "%s|%ld|%ld",
1145 path, (long int)uid, (long int)gid);
1147 return result;
1150 static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
1151 uid_t uid, gid_t gid)
1153 int result;
1155 result = SMB_VFS_NEXT_FCHOWN(handle, fsp, uid, gid);
1157 do_log(SMB_VFS_OP_FCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1158 fsp_str_do_log(fsp), (long int)uid, (long int)gid);
1160 return result;
1163 static int smb_full_audit_lchown(vfs_handle_struct *handle,
1164 const char *path, uid_t uid, gid_t gid)
1166 int result;
1168 result = SMB_VFS_NEXT_LCHOWN(handle, path, uid, gid);
1170 do_log(SMB_VFS_OP_LCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1171 path, (long int)uid, (long int)gid);
1173 return result;
1176 static int smb_full_audit_chdir(vfs_handle_struct *handle,
1177 const char *path)
1179 int result;
1181 result = SMB_VFS_NEXT_CHDIR(handle, path);
1183 do_log(SMB_VFS_OP_CHDIR, (result >= 0), handle, "chdir|%s", path);
1185 return result;
1188 static char *smb_full_audit_getwd(vfs_handle_struct *handle,
1189 char *path)
1191 char *result;
1193 result = SMB_VFS_NEXT_GETWD(handle, path);
1195 do_log(SMB_VFS_OP_GETWD, (result != NULL), handle, "%s", path);
1197 return result;
1200 static int smb_full_audit_ntimes(vfs_handle_struct *handle,
1201 const struct smb_filename *smb_fname,
1202 struct smb_file_time *ft)
1204 int result;
1206 result = SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
1208 do_log(SMB_VFS_OP_NTIMES, (result >= 0), handle, "%s",
1209 smb_fname_str_do_log(smb_fname));
1211 return result;
1214 static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
1215 SMB_OFF_T len)
1217 int result;
1219 result = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
1221 do_log(SMB_VFS_OP_FTRUNCATE, (result >= 0), handle,
1222 "%s", fsp_str_do_log(fsp));
1224 return result;
1227 static int smb_full_audit_fallocate(vfs_handle_struct *handle, files_struct *fsp,
1228 enum vfs_fallocate_mode mode,
1229 SMB_OFF_T offset,
1230 SMB_OFF_T len)
1232 int result;
1234 result = SMB_VFS_NEXT_FALLOCATE(handle, fsp, mode, offset, len);
1236 do_log(SMB_VFS_OP_FALLOCATE, (result >= 0), handle,
1237 "%s", fsp_str_do_log(fsp));
1239 return result;
1242 static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
1243 int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
1245 bool result;
1247 result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
1249 do_log(SMB_VFS_OP_LOCK, result, handle, "%s", fsp_str_do_log(fsp));
1251 return result;
1254 static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
1255 struct files_struct *fsp,
1256 uint32 share_mode, uint32 access_mask)
1258 int result;
1260 result = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_mode, access_mask);
1262 do_log(SMB_VFS_OP_KERNEL_FLOCK, (result >= 0), handle, "%s",
1263 fsp_str_do_log(fsp));
1265 return result;
1268 static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
1269 int leasetype)
1271 int result;
1273 result = SMB_VFS_NEXT_LINUX_SETLEASE(handle, fsp, leasetype);
1275 do_log(SMB_VFS_OP_LINUX_SETLEASE, (result >= 0), handle, "%s",
1276 fsp_str_do_log(fsp));
1278 return result;
1281 static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
1282 SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid)
1284 bool result;
1286 result = SMB_VFS_NEXT_GETLOCK(handle, fsp, poffset, pcount, ptype, ppid);
1288 do_log(SMB_VFS_OP_GETLOCK, result, handle, "%s", fsp_str_do_log(fsp));
1290 return result;
1293 static int smb_full_audit_symlink(vfs_handle_struct *handle,
1294 const char *oldpath, const char *newpath)
1296 int result;
1298 result = SMB_VFS_NEXT_SYMLINK(handle, oldpath, newpath);
1300 do_log(SMB_VFS_OP_SYMLINK, (result >= 0), handle,
1301 "%s|%s", oldpath, newpath);
1303 return result;
1306 static int smb_full_audit_readlink(vfs_handle_struct *handle,
1307 const char *path, char *buf, size_t bufsiz)
1309 int result;
1311 result = SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
1313 do_log(SMB_VFS_OP_READLINK, (result >= 0), handle, "%s", path);
1315 return result;
1318 static int smb_full_audit_link(vfs_handle_struct *handle,
1319 const char *oldpath, const char *newpath)
1321 int result;
1323 result = SMB_VFS_NEXT_LINK(handle, oldpath, newpath);
1325 do_log(SMB_VFS_OP_LINK, (result >= 0), handle,
1326 "%s|%s", oldpath, newpath);
1328 return result;
1331 static int smb_full_audit_mknod(vfs_handle_struct *handle,
1332 const char *pathname, mode_t mode, SMB_DEV_T dev)
1334 int result;
1336 result = SMB_VFS_NEXT_MKNOD(handle, pathname, mode, dev);
1338 do_log(SMB_VFS_OP_MKNOD, (result >= 0), handle, "%s", pathname);
1340 return result;
1343 static char *smb_full_audit_realpath(vfs_handle_struct *handle,
1344 const char *path)
1346 char *result;
1348 result = SMB_VFS_NEXT_REALPATH(handle, path);
1350 do_log(SMB_VFS_OP_REALPATH, (result != NULL), handle, "%s", path);
1352 return result;
1355 static NTSTATUS smb_full_audit_notify_watch(struct vfs_handle_struct *handle,
1356 struct sys_notify_context *ctx,
1357 struct notify_entry *e,
1358 void (*callback)(struct sys_notify_context *ctx,
1359 void *private_data,
1360 struct notify_event *ev),
1361 void *private_data, void *handle_p)
1363 NTSTATUS result;
1365 result = SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, e, callback, private_data, handle_p);
1367 do_log(SMB_VFS_OP_NOTIFY_WATCH, NT_STATUS_IS_OK(result), handle, "");
1369 return result;
1372 static int smb_full_audit_chflags(vfs_handle_struct *handle,
1373 const char *path, unsigned int flags)
1375 int result;
1377 result = SMB_VFS_NEXT_CHFLAGS(handle, path, flags);
1379 do_log(SMB_VFS_OP_CHFLAGS, (result != 0), handle, "%s", path);
1381 return result;
1384 static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
1385 const SMB_STRUCT_STAT *sbuf)
1387 struct file_id id_zero;
1388 struct file_id result;
1390 ZERO_STRUCT(id_zero);
1392 result = SMB_VFS_NEXT_FILE_ID_CREATE(handle, sbuf);
1394 do_log(SMB_VFS_OP_FILE_ID_CREATE,
1395 !file_id_equal(&id_zero, &result),
1396 handle, "%s", file_id_string_tos(&result));
1398 return result;
1401 static NTSTATUS smb_full_audit_streaminfo(vfs_handle_struct *handle,
1402 struct files_struct *fsp,
1403 const char *fname,
1404 TALLOC_CTX *mem_ctx,
1405 unsigned int *pnum_streams,
1406 struct stream_struct **pstreams)
1408 NTSTATUS result;
1410 result = SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx,
1411 pnum_streams, pstreams);
1413 do_log(SMB_VFS_OP_STREAMINFO, NT_STATUS_IS_OK(result), handle,
1414 "%s", fname);
1416 return result;
1419 static int smb_full_audit_get_real_filename(struct vfs_handle_struct *handle,
1420 const char *path,
1421 const char *name,
1422 TALLOC_CTX *mem_ctx,
1423 char **found_name)
1425 int result;
1427 result = SMB_VFS_NEXT_GET_REAL_FILENAME(handle, path, name, mem_ctx,
1428 found_name);
1430 do_log(SMB_VFS_OP_GET_REAL_FILENAME, (result == 0), handle,
1431 "%s/%s->%s", path, name, (result == 0) ? "" : *found_name);
1433 return result;
1436 static const char *smb_full_audit_connectpath(vfs_handle_struct *handle,
1437 const char *fname)
1439 const char *result;
1441 result = SMB_VFS_NEXT_CONNECTPATH(handle, fname);
1443 do_log(SMB_VFS_OP_CONNECTPATH, result != NULL, handle,
1444 "%s", fname);
1446 return result;
1449 static NTSTATUS smb_full_audit_brl_lock_windows(struct vfs_handle_struct *handle,
1450 struct byte_range_lock *br_lck,
1451 struct lock_struct *plock,
1452 bool blocking_lock,
1453 struct blocking_lock_record *blr)
1455 NTSTATUS result;
1457 result = SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle, br_lck, plock,
1458 blocking_lock, blr);
1460 do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS, NT_STATUS_IS_OK(result), handle,
1461 "%s:%llu-%llu. type=%d. blocking=%d", fsp_str_do_log(br_lck->fsp),
1462 plock->start, plock->size, plock->lock_type, blocking_lock );
1464 return result;
1467 static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct *handle,
1468 struct messaging_context *msg_ctx,
1469 struct byte_range_lock *br_lck,
1470 const struct lock_struct *plock)
1472 bool result;
1474 result = SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle, msg_ctx, br_lck,
1475 plock);
1477 do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS, (result == 0), handle,
1478 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck->fsp), plock->start,
1479 plock->size, plock->lock_type);
1481 return result;
1484 static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct *handle,
1485 struct byte_range_lock *br_lck,
1486 struct lock_struct *plock,
1487 struct blocking_lock_record *blr)
1489 bool result;
1491 result = SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle, br_lck, plock, blr);
1493 do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS, (result == 0), handle,
1494 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck->fsp), plock->start,
1495 plock->size);
1497 return result;
1500 static bool smb_full_audit_strict_lock(struct vfs_handle_struct *handle,
1501 struct files_struct *fsp,
1502 struct lock_struct *plock)
1504 bool result;
1506 result = SMB_VFS_NEXT_STRICT_LOCK(handle, fsp, plock);
1508 do_log(SMB_VFS_OP_STRICT_LOCK, result, handle,
1509 "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
1510 plock->size);
1512 return result;
1515 static void smb_full_audit_strict_unlock(struct vfs_handle_struct *handle,
1516 struct files_struct *fsp,
1517 struct lock_struct *plock)
1519 SMB_VFS_NEXT_STRICT_UNLOCK(handle, fsp, plock);
1521 do_log(SMB_VFS_OP_STRICT_UNLOCK, true, handle,
1522 "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
1523 plock->size);
1525 return;
1528 static NTSTATUS smb_full_audit_translate_name(struct vfs_handle_struct *handle,
1529 const char *name,
1530 enum vfs_translate_direction direction,
1531 TALLOC_CTX *mem_ctx,
1532 char **mapped_name)
1534 NTSTATUS result;
1536 result = SMB_VFS_NEXT_TRANSLATE_NAME(handle, name, direction, mem_ctx,
1537 mapped_name);
1539 do_log(SMB_VFS_OP_TRANSLATE_NAME, NT_STATUS_IS_OK(result), handle, "");
1541 return result;
1544 static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1545 uint32 security_info,
1546 struct security_descriptor **ppdesc)
1548 NTSTATUS result;
1550 result = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info, ppdesc);
1552 do_log(SMB_VFS_OP_FGET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1553 "%s", fsp_str_do_log(fsp));
1555 return result;
1558 static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle,
1559 const char *name,
1560 uint32 security_info,
1561 struct security_descriptor **ppdesc)
1563 NTSTATUS result;
1565 result = SMB_VFS_NEXT_GET_NT_ACL(handle, name, security_info, ppdesc);
1567 do_log(SMB_VFS_OP_GET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1568 "%s", name);
1570 return result;
1573 static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1574 uint32 security_info_sent,
1575 const struct security_descriptor *psd)
1577 NTSTATUS result;
1579 result = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
1581 do_log(SMB_VFS_OP_FSET_NT_ACL, NT_STATUS_IS_OK(result), handle, "%s",
1582 fsp_str_do_log(fsp));
1584 return result;
1587 static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
1588 const char *path, mode_t mode)
1590 int result;
1592 result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
1594 do_log(SMB_VFS_OP_CHMOD_ACL, (result >= 0), handle,
1595 "%s|%o", path, mode);
1597 return result;
1600 static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
1601 mode_t mode)
1603 int result;
1605 result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
1607 do_log(SMB_VFS_OP_FCHMOD_ACL, (result >= 0), handle,
1608 "%s|%o", fsp_str_do_log(fsp), mode);
1610 return result;
1613 static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct *handle,
1615 SMB_ACL_T theacl, int entry_id,
1616 SMB_ACL_ENTRY_T *entry_p)
1618 int result;
1620 result = SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id,
1621 entry_p);
1623 do_log(SMB_VFS_OP_SYS_ACL_GET_ENTRY, (result >= 0), handle,
1624 "");
1626 return result;
1629 static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct *handle,
1631 SMB_ACL_ENTRY_T entry_d,
1632 SMB_ACL_TAG_T *tag_type_p)
1634 int result;
1636 result = SMB_VFS_NEXT_SYS_ACL_GET_TAG_TYPE(handle, entry_d,
1637 tag_type_p);
1639 do_log(SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, (result >= 0), handle,
1640 "");
1642 return result;
1645 static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct *handle,
1647 SMB_ACL_ENTRY_T entry_d,
1648 SMB_ACL_PERMSET_T *permset_p)
1650 int result;
1652 result = SMB_VFS_NEXT_SYS_ACL_GET_PERMSET(handle, entry_d,
1653 permset_p);
1655 do_log(SMB_VFS_OP_SYS_ACL_GET_PERMSET, (result >= 0), handle,
1656 "");
1658 return result;
1661 static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct *handle,
1663 SMB_ACL_ENTRY_T entry_d)
1665 void *result;
1667 result = SMB_VFS_NEXT_SYS_ACL_GET_QUALIFIER(handle, entry_d);
1669 do_log(SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, (result != NULL), handle,
1670 "");
1672 return result;
1675 static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
1676 const char *path_p,
1677 SMB_ACL_TYPE_T type)
1679 SMB_ACL_T result;
1681 result = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, path_p, type);
1683 do_log(SMB_VFS_OP_SYS_ACL_GET_FILE, (result != NULL), handle,
1684 "%s", path_p);
1686 return result;
1689 static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
1690 files_struct *fsp)
1692 SMB_ACL_T result;
1694 result = SMB_VFS_NEXT_SYS_ACL_GET_FD(handle, fsp);
1696 do_log(SMB_VFS_OP_SYS_ACL_GET_FD, (result != NULL), handle,
1697 "%s", fsp_str_do_log(fsp));
1699 return result;
1702 static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct *handle,
1704 SMB_ACL_PERMSET_T permset)
1706 int result;
1708 result = SMB_VFS_NEXT_SYS_ACL_CLEAR_PERMS(handle, permset);
1710 do_log(SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, (result >= 0), handle,
1711 "");
1713 return result;
1716 static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct *handle,
1718 SMB_ACL_PERMSET_T permset,
1719 SMB_ACL_PERM_T perm)
1721 int result;
1723 result = SMB_VFS_NEXT_SYS_ACL_ADD_PERM(handle, permset, perm);
1725 do_log(SMB_VFS_OP_SYS_ACL_ADD_PERM, (result >= 0), handle,
1726 "");
1728 return result;
1731 static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct *handle,
1732 SMB_ACL_T theacl,
1733 ssize_t *plen)
1735 char * result;
1737 result = SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen);
1739 do_log(SMB_VFS_OP_SYS_ACL_TO_TEXT, (result != NULL), handle,
1740 "");
1742 return result;
1745 static SMB_ACL_T smb_full_audit_sys_acl_init(vfs_handle_struct *handle,
1747 int count)
1749 SMB_ACL_T result;
1751 result = SMB_VFS_NEXT_SYS_ACL_INIT(handle, count);
1753 do_log(SMB_VFS_OP_SYS_ACL_INIT, (result != NULL), handle,
1754 "");
1756 return result;
1759 static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct *handle,
1760 SMB_ACL_T *pacl,
1761 SMB_ACL_ENTRY_T *pentry)
1763 int result;
1765 result = SMB_VFS_NEXT_SYS_ACL_CREATE_ENTRY(handle, pacl, pentry);
1767 do_log(SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, (result >= 0), handle,
1768 "");
1770 return result;
1773 static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct *handle,
1775 SMB_ACL_ENTRY_T entry,
1776 SMB_ACL_TAG_T tagtype)
1778 int result;
1780 result = SMB_VFS_NEXT_SYS_ACL_SET_TAG_TYPE(handle, entry,
1781 tagtype);
1783 do_log(SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, (result >= 0), handle,
1784 "");
1786 return result;
1789 static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct *handle,
1791 SMB_ACL_ENTRY_T entry,
1792 void *qual)
1794 int result;
1796 result = SMB_VFS_NEXT_SYS_ACL_SET_QUALIFIER(handle, entry, qual);
1798 do_log(SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, (result >= 0), handle,
1799 "");
1801 return result;
1804 static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct *handle,
1806 SMB_ACL_ENTRY_T entry,
1807 SMB_ACL_PERMSET_T permset)
1809 int result;
1811 result = SMB_VFS_NEXT_SYS_ACL_SET_PERMSET(handle, entry, permset);
1813 do_log(SMB_VFS_OP_SYS_ACL_SET_PERMSET, (result >= 0), handle,
1814 "");
1816 return result;
1819 static int smb_full_audit_sys_acl_valid(vfs_handle_struct *handle,
1821 SMB_ACL_T theacl )
1823 int result;
1825 result = SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl);
1827 do_log(SMB_VFS_OP_SYS_ACL_VALID, (result >= 0), handle,
1828 "");
1830 return result;
1833 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
1835 const char *name, SMB_ACL_TYPE_T acltype,
1836 SMB_ACL_T theacl)
1838 int result;
1840 result = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype,
1841 theacl);
1843 do_log(SMB_VFS_OP_SYS_ACL_SET_FILE, (result >= 0), handle,
1844 "%s", name);
1846 return result;
1849 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
1850 SMB_ACL_T theacl)
1852 int result;
1854 result = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
1856 do_log(SMB_VFS_OP_SYS_ACL_SET_FD, (result >= 0), handle,
1857 "%s", fsp_str_do_log(fsp));
1859 return result;
1862 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
1864 const char *path)
1866 int result;
1868 result = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, path);
1870 do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, (result >= 0), handle,
1871 "%s", path);
1873 return result;
1876 static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct *handle,
1878 SMB_ACL_PERMSET_T permset,
1879 SMB_ACL_PERM_T perm)
1881 int result;
1883 result = SMB_VFS_NEXT_SYS_ACL_GET_PERM(handle, permset, perm);
1885 do_log(SMB_VFS_OP_SYS_ACL_GET_PERM, (result >= 0), handle,
1886 "");
1888 return result;
1891 static int smb_full_audit_sys_acl_free_text(vfs_handle_struct *handle,
1893 char *text)
1895 int result;
1897 result = SMB_VFS_NEXT_SYS_ACL_FREE_TEXT(handle, text);
1899 do_log(SMB_VFS_OP_SYS_ACL_FREE_TEXT, (result >= 0), handle,
1900 "");
1902 return result;
1905 static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct *handle,
1907 SMB_ACL_T posix_acl)
1909 int result;
1911 result = SMB_VFS_NEXT_SYS_ACL_FREE_ACL(handle, posix_acl);
1913 do_log(SMB_VFS_OP_SYS_ACL_FREE_ACL, (result >= 0), handle,
1914 "");
1916 return result;
1919 static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct *handle,
1920 void *qualifier,
1921 SMB_ACL_TAG_T tagtype)
1923 int result;
1925 result = SMB_VFS_NEXT_SYS_ACL_FREE_QUALIFIER(handle, qualifier,
1926 tagtype);
1928 do_log(SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, (result >= 0), handle,
1929 "");
1931 return result;
1934 static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
1935 const char *path,
1936 const char *name, void *value, size_t size)
1938 ssize_t result;
1940 result = SMB_VFS_NEXT_GETXATTR(handle, path, name, value, size);
1942 do_log(SMB_VFS_OP_GETXATTR, (result >= 0), handle,
1943 "%s|%s", path, name);
1945 return result;
1948 static ssize_t smb_full_audit_lgetxattr(struct vfs_handle_struct *handle,
1949 const char *path, const char *name,
1950 void *value, size_t size)
1952 ssize_t result;
1954 result = SMB_VFS_NEXT_LGETXATTR(handle, path, name, value, size);
1956 do_log(SMB_VFS_OP_LGETXATTR, (result >= 0), handle,
1957 "%s|%s", path, name);
1959 return result;
1962 static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
1963 struct files_struct *fsp,
1964 const char *name, void *value, size_t size)
1966 ssize_t result;
1968 result = SMB_VFS_NEXT_FGETXATTR(handle, fsp, name, value, size);
1970 do_log(SMB_VFS_OP_FGETXATTR, (result >= 0), handle,
1971 "%s|%s", fsp_str_do_log(fsp), name);
1973 return result;
1976 static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
1977 const char *path, char *list, size_t size)
1979 ssize_t result;
1981 result = SMB_VFS_NEXT_LISTXATTR(handle, path, list, size);
1983 do_log(SMB_VFS_OP_LISTXATTR, (result >= 0), handle, "%s", path);
1985 return result;
1988 static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
1989 const char *path, char *list, size_t size)
1991 ssize_t result;
1993 result = SMB_VFS_NEXT_LLISTXATTR(handle, path, list, size);
1995 do_log(SMB_VFS_OP_LLISTXATTR, (result >= 0), handle, "%s", path);
1997 return result;
2000 static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
2001 struct files_struct *fsp, char *list,
2002 size_t size)
2004 ssize_t result;
2006 result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
2008 do_log(SMB_VFS_OP_FLISTXATTR, (result >= 0), handle,
2009 "%s", fsp_str_do_log(fsp));
2011 return result;
2014 static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
2015 const char *path,
2016 const char *name)
2018 int result;
2020 result = SMB_VFS_NEXT_REMOVEXATTR(handle, path, name);
2022 do_log(SMB_VFS_OP_REMOVEXATTR, (result >= 0), handle,
2023 "%s|%s", path, name);
2025 return result;
2028 static int smb_full_audit_lremovexattr(struct vfs_handle_struct *handle,
2029 const char *path,
2030 const char *name)
2032 int result;
2034 result = SMB_VFS_NEXT_LREMOVEXATTR(handle, path, name);
2036 do_log(SMB_VFS_OP_LREMOVEXATTR, (result >= 0), handle,
2037 "%s|%s", path, name);
2039 return result;
2042 static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
2043 struct files_struct *fsp,
2044 const char *name)
2046 int result;
2048 result = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
2050 do_log(SMB_VFS_OP_FREMOVEXATTR, (result >= 0), handle,
2051 "%s|%s", fsp_str_do_log(fsp), name);
2053 return result;
2056 static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
2057 const char *path,
2058 const char *name, const void *value, size_t size,
2059 int flags)
2061 int result;
2063 result = SMB_VFS_NEXT_SETXATTR(handle, path, name, value, size,
2064 flags);
2066 do_log(SMB_VFS_OP_SETXATTR, (result >= 0), handle,
2067 "%s|%s", path, name);
2069 return result;
2072 static int smb_full_audit_lsetxattr(struct vfs_handle_struct *handle,
2073 const char *path,
2074 const char *name, const void *value, size_t size,
2075 int flags)
2077 int result;
2079 result = SMB_VFS_NEXT_LSETXATTR(handle, path, name, value, size,
2080 flags);
2082 do_log(SMB_VFS_OP_LSETXATTR, (result >= 0), handle,
2083 "%s|%s", path, name);
2085 return result;
2088 static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
2089 struct files_struct *fsp, const char *name,
2090 const void *value, size_t size, int flags)
2092 int result;
2094 result = SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags);
2096 do_log(SMB_VFS_OP_FSETXATTR, (result >= 0), handle,
2097 "%s|%s", fsp_str_do_log(fsp), name);
2099 return result;
2102 static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2104 int result;
2106 result = SMB_VFS_NEXT_AIO_READ(handle, fsp, aiocb);
2107 do_log(SMB_VFS_OP_AIO_READ, (result >= 0), handle,
2108 "%s", fsp_str_do_log(fsp));
2110 return result;
2113 static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2115 int result;
2117 result = SMB_VFS_NEXT_AIO_WRITE(handle, fsp, aiocb);
2118 do_log(SMB_VFS_OP_AIO_WRITE, (result >= 0), handle,
2119 "%s", fsp_str_do_log(fsp));
2121 return result;
2124 static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2126 int result;
2128 result = SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);
2129 do_log(SMB_VFS_OP_AIO_RETURN, (result >= 0), handle,
2130 "%s", fsp_str_do_log(fsp));
2132 return result;
2135 static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2137 int result;
2139 result = SMB_VFS_NEXT_AIO_CANCEL(handle, fsp, aiocb);
2140 do_log(SMB_VFS_OP_AIO_CANCEL, (result >= 0), handle,
2141 "%s", fsp_str_do_log(fsp));
2143 return result;
2146 static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2148 int result;
2150 result = SMB_VFS_NEXT_AIO_ERROR(handle, fsp, aiocb);
2151 do_log(SMB_VFS_OP_AIO_ERROR, (result >= 0), handle,
2152 "%s", fsp_str_do_log(fsp));
2154 return result;
2157 static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
2159 int result;
2161 result = SMB_VFS_NEXT_AIO_FSYNC(handle, fsp, op, aiocb);
2162 do_log(SMB_VFS_OP_AIO_FSYNC, (result >= 0), handle,
2163 "%s", fsp_str_do_log(fsp));
2165 return result;
2168 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)
2170 int result;
2172 result = SMB_VFS_NEXT_AIO_SUSPEND(handle, fsp, aiocb, n, ts);
2173 do_log(SMB_VFS_OP_AIO_SUSPEND, (result >= 0), handle,
2174 "%s", fsp_str_do_log(fsp));
2176 return result;
2179 static bool smb_full_audit_aio_force(struct vfs_handle_struct *handle,
2180 struct files_struct *fsp)
2182 bool result;
2184 result = SMB_VFS_NEXT_AIO_FORCE(handle, fsp);
2185 do_log(SMB_VFS_OP_AIO_FORCE, result, handle,
2186 "%s", fsp_str_do_log(fsp));
2188 return result;
2191 static struct vfs_fn_pointers vfs_full_audit_fns = {
2193 /* Disk operations */
2195 .connect_fn = smb_full_audit_connect,
2196 .disconnect = smb_full_audit_disconnect,
2197 .disk_free = smb_full_audit_disk_free,
2198 .get_quota = smb_full_audit_get_quota,
2199 .set_quota = smb_full_audit_set_quota,
2200 .get_shadow_copy_data = smb_full_audit_get_shadow_copy_data,
2201 .statvfs = smb_full_audit_statvfs,
2202 .fs_capabilities = smb_full_audit_fs_capabilities,
2203 .opendir = smb_full_audit_opendir,
2204 .readdir = smb_full_audit_readdir,
2205 .seekdir = smb_full_audit_seekdir,
2206 .telldir = smb_full_audit_telldir,
2207 .rewind_dir = smb_full_audit_rewinddir,
2208 .mkdir = smb_full_audit_mkdir,
2209 .rmdir = smb_full_audit_rmdir,
2210 .closedir = smb_full_audit_closedir,
2211 .init_search_op = smb_full_audit_init_search_op,
2212 .open = smb_full_audit_open,
2213 .create_file = smb_full_audit_create_file,
2214 .close_fn = smb_full_audit_close,
2215 .vfs_read = smb_full_audit_read,
2216 .pread = smb_full_audit_pread,
2217 .write = smb_full_audit_write,
2218 .pwrite = smb_full_audit_pwrite,
2219 .lseek = smb_full_audit_lseek,
2220 .sendfile = smb_full_audit_sendfile,
2221 .recvfile = smb_full_audit_recvfile,
2222 .rename = smb_full_audit_rename,
2223 .fsync = smb_full_audit_fsync,
2224 .stat = smb_full_audit_stat,
2225 .fstat = smb_full_audit_fstat,
2226 .lstat = smb_full_audit_lstat,
2227 .get_alloc_size = smb_full_audit_get_alloc_size,
2228 .unlink = smb_full_audit_unlink,
2229 .chmod = smb_full_audit_chmod,
2230 .fchmod = smb_full_audit_fchmod,
2231 .chown = smb_full_audit_chown,
2232 .fchown = smb_full_audit_fchown,
2233 .lchown = smb_full_audit_lchown,
2234 .chdir = smb_full_audit_chdir,
2235 .getwd = smb_full_audit_getwd,
2236 .ntimes = smb_full_audit_ntimes,
2237 .ftruncate = smb_full_audit_ftruncate,
2238 .fallocate = smb_full_audit_fallocate,
2239 .lock = smb_full_audit_lock,
2240 .kernel_flock = smb_full_audit_kernel_flock,
2241 .linux_setlease = smb_full_audit_linux_setlease,
2242 .getlock = smb_full_audit_getlock,
2243 .symlink = smb_full_audit_symlink,
2244 .vfs_readlink = smb_full_audit_readlink,
2245 .link = smb_full_audit_link,
2246 .mknod = smb_full_audit_mknod,
2247 .realpath = smb_full_audit_realpath,
2248 .notify_watch = smb_full_audit_notify_watch,
2249 .chflags = smb_full_audit_chflags,
2250 .file_id_create = smb_full_audit_file_id_create,
2251 .streaminfo = smb_full_audit_streaminfo,
2252 .get_real_filename = smb_full_audit_get_real_filename,
2253 .connectpath = smb_full_audit_connectpath,
2254 .brl_lock_windows = smb_full_audit_brl_lock_windows,
2255 .brl_unlock_windows = smb_full_audit_brl_unlock_windows,
2256 .brl_cancel_windows = smb_full_audit_brl_cancel_windows,
2257 .strict_lock = smb_full_audit_strict_lock,
2258 .strict_unlock = smb_full_audit_strict_unlock,
2259 .translate_name = smb_full_audit_translate_name,
2260 .fget_nt_acl = smb_full_audit_fget_nt_acl,
2261 .get_nt_acl = smb_full_audit_get_nt_acl,
2262 .fset_nt_acl = smb_full_audit_fset_nt_acl,
2263 .chmod_acl = smb_full_audit_chmod_acl,
2264 .fchmod_acl = smb_full_audit_fchmod_acl,
2265 .sys_acl_get_entry = smb_full_audit_sys_acl_get_entry,
2266 .sys_acl_get_tag_type = smb_full_audit_sys_acl_get_tag_type,
2267 .sys_acl_get_permset = smb_full_audit_sys_acl_get_permset,
2268 .sys_acl_get_qualifier = smb_full_audit_sys_acl_get_qualifier,
2269 .sys_acl_get_file = smb_full_audit_sys_acl_get_file,
2270 .sys_acl_get_fd = smb_full_audit_sys_acl_get_fd,
2271 .sys_acl_clear_perms = smb_full_audit_sys_acl_clear_perms,
2272 .sys_acl_add_perm = smb_full_audit_sys_acl_add_perm,
2273 .sys_acl_to_text = smb_full_audit_sys_acl_to_text,
2274 .sys_acl_init = smb_full_audit_sys_acl_init,
2275 .sys_acl_create_entry = smb_full_audit_sys_acl_create_entry,
2276 .sys_acl_set_tag_type = smb_full_audit_sys_acl_set_tag_type,
2277 .sys_acl_set_qualifier = smb_full_audit_sys_acl_set_qualifier,
2278 .sys_acl_set_permset = smb_full_audit_sys_acl_set_permset,
2279 .sys_acl_valid = smb_full_audit_sys_acl_valid,
2280 .sys_acl_set_file = smb_full_audit_sys_acl_set_file,
2281 .sys_acl_set_fd = smb_full_audit_sys_acl_set_fd,
2282 .sys_acl_delete_def_file = smb_full_audit_sys_acl_delete_def_file,
2283 .sys_acl_get_perm = smb_full_audit_sys_acl_get_perm,
2284 .sys_acl_free_text = smb_full_audit_sys_acl_free_text,
2285 .sys_acl_free_acl = smb_full_audit_sys_acl_free_acl,
2286 .sys_acl_free_qualifier = smb_full_audit_sys_acl_free_qualifier,
2287 .getxattr = smb_full_audit_getxattr,
2288 .lgetxattr = smb_full_audit_lgetxattr,
2289 .fgetxattr = smb_full_audit_fgetxattr,
2290 .listxattr = smb_full_audit_listxattr,
2291 .llistxattr = smb_full_audit_llistxattr,
2292 .flistxattr = smb_full_audit_flistxattr,
2293 .removexattr = smb_full_audit_removexattr,
2294 .lremovexattr = smb_full_audit_lremovexattr,
2295 .fremovexattr = smb_full_audit_fremovexattr,
2296 .setxattr = smb_full_audit_setxattr,
2297 .lsetxattr = smb_full_audit_lsetxattr,
2298 .fsetxattr = smb_full_audit_fsetxattr,
2299 .aio_read = smb_full_audit_aio_read,
2300 .aio_write = smb_full_audit_aio_write,
2301 .aio_return_fn = smb_full_audit_aio_return,
2302 .aio_cancel = smb_full_audit_aio_cancel,
2303 .aio_error_fn = smb_full_audit_aio_error,
2304 .aio_fsync = smb_full_audit_aio_fsync,
2305 .aio_suspend = smb_full_audit_aio_suspend,
2306 .aio_force = smb_full_audit_aio_force,
2309 NTSTATUS vfs_full_audit_init(void)
2311 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
2312 "full_audit", &vfs_full_audit_fns);
2314 if (!NT_STATUS_IS_OK(ret))
2315 return ret;
2317 vfs_full_audit_debug_level = debug_add_class("full_audit");
2318 if (vfs_full_audit_debug_level == -1) {
2319 vfs_full_audit_debug_level = DBGC_VFS;
2320 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2321 "class!\n"));
2322 } else {
2323 DEBUG(10, ("vfs_full_audit: Debug class number of "
2324 "'full_audit': %d\n", vfs_full_audit_debug_level));
2327 return ret;