make smbcontrol smbd ping work proper checking for arguments handle short pid_t correctly
[Samba/bjacke.git] / source3 / modules / vfs_full_audit.c
blob4089f22968d93fd5372fdcc8dbecc088e4f6571f
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"
62 static int vfs_full_audit_debug_level = DBGC_VFS;
64 struct vfs_full_audit_private_data {
65 struct bitmap *success_ops;
66 struct bitmap *failure_ops;
69 #undef DBGC_CLASS
70 #define DBGC_CLASS vfs_full_audit_debug_level
72 typedef enum _vfs_op_type {
73 SMB_VFS_OP_NOOP = -1,
75 /* Disk operations */
77 SMB_VFS_OP_CONNECT = 0,
78 SMB_VFS_OP_DISCONNECT,
79 SMB_VFS_OP_DISK_FREE,
80 SMB_VFS_OP_GET_QUOTA,
81 SMB_VFS_OP_SET_QUOTA,
82 SMB_VFS_OP_GET_SHADOW_COPY_DATA,
83 SMB_VFS_OP_STATVFS,
84 SMB_VFS_OP_FS_CAPABILITIES,
86 /* Directory operations */
88 SMB_VFS_OP_OPENDIR,
89 SMB_VFS_OP_READDIR,
90 SMB_VFS_OP_SEEKDIR,
91 SMB_VFS_OP_TELLDIR,
92 SMB_VFS_OP_REWINDDIR,
93 SMB_VFS_OP_MKDIR,
94 SMB_VFS_OP_RMDIR,
95 SMB_VFS_OP_CLOSEDIR,
96 SMB_VFS_OP_INIT_SEARCH_OP,
98 /* File operations */
100 SMB_VFS_OP_OPEN,
101 SMB_VFS_OP_CREATE_FILE,
102 SMB_VFS_OP_CLOSE,
103 SMB_VFS_OP_READ,
104 SMB_VFS_OP_PREAD,
105 SMB_VFS_OP_WRITE,
106 SMB_VFS_OP_PWRITE,
107 SMB_VFS_OP_LSEEK,
108 SMB_VFS_OP_SENDFILE,
109 SMB_VFS_OP_RECVFILE,
110 SMB_VFS_OP_RENAME,
111 SMB_VFS_OP_FSYNC,
112 SMB_VFS_OP_STAT,
113 SMB_VFS_OP_FSTAT,
114 SMB_VFS_OP_LSTAT,
115 SMB_VFS_OP_GET_ALLOC_SIZE,
116 SMB_VFS_OP_UNLINK,
117 SMB_VFS_OP_CHMOD,
118 SMB_VFS_OP_FCHMOD,
119 SMB_VFS_OP_CHOWN,
120 SMB_VFS_OP_FCHOWN,
121 SMB_VFS_OP_LCHOWN,
122 SMB_VFS_OP_CHDIR,
123 SMB_VFS_OP_GETWD,
124 SMB_VFS_OP_NTIMES,
125 SMB_VFS_OP_FTRUNCATE,
126 SMB_VFS_OP_LOCK,
127 SMB_VFS_OP_KERNEL_FLOCK,
128 SMB_VFS_OP_LINUX_SETLEASE,
129 SMB_VFS_OP_GETLOCK,
130 SMB_VFS_OP_SYMLINK,
131 SMB_VFS_OP_READLINK,
132 SMB_VFS_OP_LINK,
133 SMB_VFS_OP_MKNOD,
134 SMB_VFS_OP_REALPATH,
135 SMB_VFS_OP_NOTIFY_WATCH,
136 SMB_VFS_OP_CHFLAGS,
137 SMB_VFS_OP_FILE_ID_CREATE,
138 SMB_VFS_OP_STREAMINFO,
139 SMB_VFS_OP_GET_REAL_FILENAME,
140 SMB_VFS_OP_CONNECTPATH,
141 SMB_VFS_OP_BRL_LOCK_WINDOWS,
142 SMB_VFS_OP_BRL_UNLOCK_WINDOWS,
143 SMB_VFS_OP_BRL_CANCEL_WINDOWS,
144 SMB_VFS_OP_STRICT_LOCK,
145 SMB_VFS_OP_STRICT_UNLOCK,
147 /* NT ACL operations. */
149 SMB_VFS_OP_FGET_NT_ACL,
150 SMB_VFS_OP_GET_NT_ACL,
151 SMB_VFS_OP_FSET_NT_ACL,
153 /* POSIX ACL operations. */
155 SMB_VFS_OP_CHMOD_ACL,
156 SMB_VFS_OP_FCHMOD_ACL,
158 SMB_VFS_OP_SYS_ACL_GET_ENTRY,
159 SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE,
160 SMB_VFS_OP_SYS_ACL_GET_PERMSET,
161 SMB_VFS_OP_SYS_ACL_GET_QUALIFIER,
162 SMB_VFS_OP_SYS_ACL_GET_FILE,
163 SMB_VFS_OP_SYS_ACL_GET_FD,
164 SMB_VFS_OP_SYS_ACL_CLEAR_PERMS,
165 SMB_VFS_OP_SYS_ACL_ADD_PERM,
166 SMB_VFS_OP_SYS_ACL_TO_TEXT,
167 SMB_VFS_OP_SYS_ACL_INIT,
168 SMB_VFS_OP_SYS_ACL_CREATE_ENTRY,
169 SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE,
170 SMB_VFS_OP_SYS_ACL_SET_QUALIFIER,
171 SMB_VFS_OP_SYS_ACL_SET_PERMSET,
172 SMB_VFS_OP_SYS_ACL_VALID,
173 SMB_VFS_OP_SYS_ACL_SET_FILE,
174 SMB_VFS_OP_SYS_ACL_SET_FD,
175 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
176 SMB_VFS_OP_SYS_ACL_GET_PERM,
177 SMB_VFS_OP_SYS_ACL_FREE_TEXT,
178 SMB_VFS_OP_SYS_ACL_FREE_ACL,
179 SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER,
181 /* EA operations. */
182 SMB_VFS_OP_GETXATTR,
183 SMB_VFS_OP_LGETXATTR,
184 SMB_VFS_OP_FGETXATTR,
185 SMB_VFS_OP_LISTXATTR,
186 SMB_VFS_OP_LLISTXATTR,
187 SMB_VFS_OP_FLISTXATTR,
188 SMB_VFS_OP_REMOVEXATTR,
189 SMB_VFS_OP_LREMOVEXATTR,
190 SMB_VFS_OP_FREMOVEXATTR,
191 SMB_VFS_OP_SETXATTR,
192 SMB_VFS_OP_LSETXATTR,
193 SMB_VFS_OP_FSETXATTR,
195 /* aio operations */
196 SMB_VFS_OP_AIO_READ,
197 SMB_VFS_OP_AIO_WRITE,
198 SMB_VFS_OP_AIO_RETURN,
199 SMB_VFS_OP_AIO_CANCEL,
200 SMB_VFS_OP_AIO_ERROR,
201 SMB_VFS_OP_AIO_FSYNC,
202 SMB_VFS_OP_AIO_SUSPEND,
203 SMB_VFS_OP_AIO_FORCE,
205 /* offline operations */
206 SMB_VFS_OP_IS_OFFLINE,
207 SMB_VFS_OP_SET_OFFLINE,
209 /* This should always be last enum value */
211 SMB_VFS_OP_LAST
212 } vfs_op_type;
214 /* The following array *must* be in the same order as defined in vfs.h */
216 static struct {
217 vfs_op_type type;
218 const char *name;
219 } vfs_op_names[] = {
220 { SMB_VFS_OP_CONNECT, "connect" },
221 { SMB_VFS_OP_DISCONNECT, "disconnect" },
222 { SMB_VFS_OP_DISK_FREE, "disk_free" },
223 { SMB_VFS_OP_GET_QUOTA, "get_quota" },
224 { SMB_VFS_OP_SET_QUOTA, "set_quota" },
225 { SMB_VFS_OP_GET_SHADOW_COPY_DATA, "get_shadow_copy_data" },
226 { SMB_VFS_OP_STATVFS, "statvfs" },
227 { SMB_VFS_OP_FS_CAPABILITIES, "fs_capabilities" },
228 { SMB_VFS_OP_OPENDIR, "opendir" },
229 { SMB_VFS_OP_READDIR, "readdir" },
230 { SMB_VFS_OP_SEEKDIR, "seekdir" },
231 { SMB_VFS_OP_TELLDIR, "telldir" },
232 { SMB_VFS_OP_REWINDDIR, "rewinddir" },
233 { SMB_VFS_OP_MKDIR, "mkdir" },
234 { SMB_VFS_OP_RMDIR, "rmdir" },
235 { SMB_VFS_OP_CLOSEDIR, "closedir" },
236 { SMB_VFS_OP_INIT_SEARCH_OP, "init_search_op" },
237 { SMB_VFS_OP_OPEN, "open" },
238 { SMB_VFS_OP_CREATE_FILE, "create_file" },
239 { SMB_VFS_OP_CLOSE, "close" },
240 { SMB_VFS_OP_READ, "read" },
241 { SMB_VFS_OP_PREAD, "pread" },
242 { SMB_VFS_OP_WRITE, "write" },
243 { SMB_VFS_OP_PWRITE, "pwrite" },
244 { SMB_VFS_OP_LSEEK, "lseek" },
245 { SMB_VFS_OP_SENDFILE, "sendfile" },
246 { SMB_VFS_OP_RECVFILE, "recvfile" },
247 { SMB_VFS_OP_RENAME, "rename" },
248 { SMB_VFS_OP_FSYNC, "fsync" },
249 { SMB_VFS_OP_STAT, "stat" },
250 { SMB_VFS_OP_FSTAT, "fstat" },
251 { SMB_VFS_OP_LSTAT, "lstat" },
252 { SMB_VFS_OP_GET_ALLOC_SIZE, "get_alloc_size" },
253 { SMB_VFS_OP_UNLINK, "unlink" },
254 { SMB_VFS_OP_CHMOD, "chmod" },
255 { SMB_VFS_OP_FCHMOD, "fchmod" },
256 { SMB_VFS_OP_CHOWN, "chown" },
257 { SMB_VFS_OP_FCHOWN, "fchown" },
258 { SMB_VFS_OP_LCHOWN, "lchown" },
259 { SMB_VFS_OP_CHDIR, "chdir" },
260 { SMB_VFS_OP_GETWD, "getwd" },
261 { SMB_VFS_OP_NTIMES, "ntimes" },
262 { SMB_VFS_OP_FTRUNCATE, "ftruncate" },
263 { SMB_VFS_OP_LOCK, "lock" },
264 { SMB_VFS_OP_KERNEL_FLOCK, "kernel_flock" },
265 { SMB_VFS_OP_LINUX_SETLEASE, "linux_setlease" },
266 { SMB_VFS_OP_GETLOCK, "getlock" },
267 { SMB_VFS_OP_SYMLINK, "symlink" },
268 { SMB_VFS_OP_READLINK, "readlink" },
269 { SMB_VFS_OP_LINK, "link" },
270 { SMB_VFS_OP_MKNOD, "mknod" },
271 { SMB_VFS_OP_REALPATH, "realpath" },
272 { SMB_VFS_OP_NOTIFY_WATCH, "notify_watch" },
273 { SMB_VFS_OP_CHFLAGS, "chflags" },
274 { SMB_VFS_OP_FILE_ID_CREATE, "file_id_create" },
275 { SMB_VFS_OP_STREAMINFO, "streaminfo" },
276 { SMB_VFS_OP_GET_REAL_FILENAME, "get_real_filename" },
277 { SMB_VFS_OP_CONNECTPATH, "connectpath" },
278 { SMB_VFS_OP_BRL_LOCK_WINDOWS, "brl_lock_windows" },
279 { SMB_VFS_OP_BRL_UNLOCK_WINDOWS, "brl_unlock_windows" },
280 { SMB_VFS_OP_BRL_CANCEL_WINDOWS, "brl_cancel_windows" },
281 { SMB_VFS_OP_STRICT_LOCK, "strict_lock" },
282 { SMB_VFS_OP_STRICT_UNLOCK, "strict_unlock" },
283 { SMB_VFS_OP_FGET_NT_ACL, "fget_nt_acl" },
284 { SMB_VFS_OP_GET_NT_ACL, "get_nt_acl" },
285 { SMB_VFS_OP_FSET_NT_ACL, "fset_nt_acl" },
286 { SMB_VFS_OP_CHMOD_ACL, "chmod_acl" },
287 { SMB_VFS_OP_FCHMOD_ACL, "fchmod_acl" },
288 { SMB_VFS_OP_SYS_ACL_GET_ENTRY, "sys_acl_get_entry" },
289 { SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, "sys_acl_get_tag_type" },
290 { SMB_VFS_OP_SYS_ACL_GET_PERMSET, "sys_acl_get_permset" },
291 { SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, "sys_acl_get_qualifier" },
292 { SMB_VFS_OP_SYS_ACL_GET_FILE, "sys_acl_get_file" },
293 { SMB_VFS_OP_SYS_ACL_GET_FD, "sys_acl_get_fd" },
294 { SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, "sys_acl_clear_perms" },
295 { SMB_VFS_OP_SYS_ACL_ADD_PERM, "sys_acl_add_perm" },
296 { SMB_VFS_OP_SYS_ACL_TO_TEXT, "sys_acl_to_text" },
297 { SMB_VFS_OP_SYS_ACL_INIT, "sys_acl_init" },
298 { SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, "sys_acl_create_entry" },
299 { SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, "sys_acl_set_tag_type" },
300 { SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, "sys_acl_set_qualifier" },
301 { SMB_VFS_OP_SYS_ACL_SET_PERMSET, "sys_acl_set_permset" },
302 { SMB_VFS_OP_SYS_ACL_VALID, "sys_acl_valid" },
303 { SMB_VFS_OP_SYS_ACL_SET_FILE, "sys_acl_set_file" },
304 { SMB_VFS_OP_SYS_ACL_SET_FD, "sys_acl_set_fd" },
305 { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, "sys_acl_delete_def_file" },
306 { SMB_VFS_OP_SYS_ACL_GET_PERM, "sys_acl_get_perm" },
307 { SMB_VFS_OP_SYS_ACL_FREE_TEXT, "sys_acl_free_text" },
308 { SMB_VFS_OP_SYS_ACL_FREE_ACL, "sys_acl_free_acl" },
309 { SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, "sys_acl_free_qualifier" },
310 { SMB_VFS_OP_GETXATTR, "getxattr" },
311 { SMB_VFS_OP_LGETXATTR, "lgetxattr" },
312 { SMB_VFS_OP_FGETXATTR, "fgetxattr" },
313 { SMB_VFS_OP_LISTXATTR, "listxattr" },
314 { SMB_VFS_OP_LLISTXATTR, "llistxattr" },
315 { SMB_VFS_OP_FLISTXATTR, "flistxattr" },
316 { SMB_VFS_OP_REMOVEXATTR, "removexattr" },
317 { SMB_VFS_OP_LREMOVEXATTR, "lremovexattr" },
318 { SMB_VFS_OP_FREMOVEXATTR, "fremovexattr" },
319 { SMB_VFS_OP_SETXATTR, "setxattr" },
320 { SMB_VFS_OP_LSETXATTR, "lsetxattr" },
321 { SMB_VFS_OP_FSETXATTR, "fsetxattr" },
322 { SMB_VFS_OP_AIO_READ, "aio_read" },
323 { SMB_VFS_OP_AIO_WRITE, "aio_write" },
324 { SMB_VFS_OP_AIO_RETURN,"aio_return" },
325 { SMB_VFS_OP_AIO_CANCEL,"aio_cancel" },
326 { SMB_VFS_OP_AIO_ERROR, "aio_error" },
327 { SMB_VFS_OP_AIO_FSYNC, "aio_fsync" },
328 { SMB_VFS_OP_AIO_SUSPEND,"aio_suspend" },
329 { SMB_VFS_OP_AIO_FORCE, "aio_force" },
330 { SMB_VFS_OP_IS_OFFLINE, "aio_is_offline" },
331 { SMB_VFS_OP_SET_OFFLINE, "aio_set_offline" },
332 { SMB_VFS_OP_LAST, NULL }
335 static int audit_syslog_facility(vfs_handle_struct *handle)
337 static const struct enum_list enum_log_facilities[] = {
338 { LOG_USER, "USER" },
339 { LOG_LOCAL0, "LOCAL0" },
340 { LOG_LOCAL1, "LOCAL1" },
341 { LOG_LOCAL2, "LOCAL2" },
342 { LOG_LOCAL3, "LOCAL3" },
343 { LOG_LOCAL4, "LOCAL4" },
344 { LOG_LOCAL5, "LOCAL5" },
345 { LOG_LOCAL6, "LOCAL6" },
346 { LOG_LOCAL7, "LOCAL7" }
349 int facility;
351 facility = lp_parm_enum(SNUM(handle->conn), "full_audit", "facility", enum_log_facilities, LOG_USER);
353 return facility;
356 static int audit_syslog_priority(vfs_handle_struct *handle)
358 static const struct enum_list enum_log_priorities[] = {
359 { LOG_EMERG, "EMERG" },
360 { LOG_ALERT, "ALERT" },
361 { LOG_CRIT, "CRIT" },
362 { LOG_ERR, "ERR" },
363 { LOG_WARNING, "WARNING" },
364 { LOG_NOTICE, "NOTICE" },
365 { LOG_INFO, "INFO" },
366 { LOG_DEBUG, "DEBUG" }
369 int priority;
371 priority = lp_parm_enum(SNUM(handle->conn), "full_audit", "priority",
372 enum_log_priorities, LOG_NOTICE);
373 if (priority == -1) {
374 priority = LOG_WARNING;
377 return priority;
380 static char *audit_prefix(TALLOC_CTX *ctx, connection_struct *conn)
382 char *prefix = NULL;
383 char *result;
385 prefix = talloc_strdup(ctx,
386 lp_parm_const_string(SNUM(conn), "full_audit",
387 "prefix", "%u|%I"));
388 if (!prefix) {
389 return NULL;
391 result = talloc_sub_advanced(ctx,
392 lp_servicename(SNUM(conn)),
393 conn->server_info->unix_name,
394 conn->connectpath,
395 conn->server_info->utok.gid,
396 conn->server_info->sanitized_username,
397 pdb_get_domain(conn->server_info->sam_account),
398 prefix);
399 TALLOC_FREE(prefix);
400 return result;
403 static bool log_success(vfs_handle_struct *handle, vfs_op_type op)
405 struct vfs_full_audit_private_data *pd = NULL;
407 SMB_VFS_HANDLE_GET_DATA(handle, pd,
408 struct vfs_full_audit_private_data,
409 return True);
411 if (pd->success_ops == NULL) {
412 return True;
415 return bitmap_query(pd->success_ops, op);
418 static bool log_failure(vfs_handle_struct *handle, vfs_op_type op)
420 struct vfs_full_audit_private_data *pd = NULL;
422 SMB_VFS_HANDLE_GET_DATA(handle, pd,
423 struct vfs_full_audit_private_data,
424 return True);
426 if (pd->failure_ops == NULL)
427 return True;
429 return bitmap_query(pd->failure_ops, op);
432 static void init_bitmap(struct bitmap **bm, const char **ops)
434 bool log_all = False;
436 if (*bm != NULL)
437 return;
439 *bm = bitmap_allocate(SMB_VFS_OP_LAST);
441 if (*bm == NULL) {
442 DEBUG(0, ("Could not alloc bitmap -- "
443 "defaulting to logging everything\n"));
444 return;
447 while (*ops != NULL) {
448 int i;
449 bool found = False;
451 if (strequal(*ops, "all")) {
452 log_all = True;
453 break;
456 if (strequal(*ops, "none")) {
457 break;
460 for (i=0; i<SMB_VFS_OP_LAST; i++) {
461 if (vfs_op_names[i].name == NULL) {
462 smb_panic("vfs_full_audit.c: name table not "
463 "in sync with vfs.h\n");
466 if (strequal(*ops, vfs_op_names[i].name)) {
467 bitmap_set(*bm, i);
468 found = True;
471 if (!found) {
472 DEBUG(0, ("Could not find opname %s, logging all\n",
473 *ops));
474 log_all = True;
475 break;
477 ops += 1;
480 if (log_all) {
481 /* The query functions default to True */
482 bitmap_free(*bm);
483 *bm = NULL;
487 static const char *audit_opname(vfs_op_type op)
489 if (op >= SMB_VFS_OP_LAST)
490 return "INVALID VFS OP";
491 return vfs_op_names[op].name;
494 static TALLOC_CTX *tmp_do_log_ctx;
496 * Get us a temporary talloc context usable just for DEBUG arguments
498 static TALLOC_CTX *do_log_ctx(void)
500 if (tmp_do_log_ctx == NULL) {
501 tmp_do_log_ctx = talloc_named_const(NULL, 0, "do_log_ctx");
503 return tmp_do_log_ctx;
506 static void do_log(vfs_op_type op, bool success, vfs_handle_struct *handle,
507 const char *format, ...)
509 fstring err_msg;
510 char *audit_pre = NULL;
511 va_list ap;
512 char *op_msg = NULL;
514 if (success && (!log_success(handle, op)))
515 goto out;
517 if (!success && (!log_failure(handle, op)))
518 goto out;
520 if (success)
521 fstrcpy(err_msg, "ok");
522 else
523 fstr_sprintf(err_msg, "fail (%s)", strerror(errno));
525 va_start(ap, format);
526 op_msg = talloc_vasprintf(talloc_tos(), format, ap);
527 va_end(ap);
529 if (!op_msg) {
530 goto out;
533 audit_pre = audit_prefix(talloc_tos(), handle->conn);
534 syslog(audit_syslog_priority(handle), "%s|%s|%s|%s\n",
535 audit_pre ? audit_pre : "",
536 audit_opname(op), err_msg, op_msg);
538 out:
539 TALLOC_FREE(audit_pre);
540 TALLOC_FREE(op_msg);
541 TALLOC_FREE(tmp_do_log_ctx);
543 return;
547 * Return a string using the do_log_ctx()
549 static const char *smb_fname_str_do_log(const struct smb_filename *smb_fname)
551 char *fname = NULL;
552 NTSTATUS status;
554 if (smb_fname == NULL) {
555 return "";
557 status = get_full_smb_filename(do_log_ctx(), smb_fname, &fname);
558 if (!NT_STATUS_IS_OK(status)) {
559 return "";
561 return fname;
565 * Return an fsp debug string using the do_log_ctx()
567 static const char *fsp_str_do_log(const struct files_struct *fsp)
569 return smb_fname_str_do_log(fsp->fsp_name);
572 /* Free function for the private data. */
574 static void free_private_data(void **p_data)
576 struct vfs_full_audit_private_data *pd = *(struct vfs_full_audit_private_data **)p_data;
578 if (pd->success_ops) {
579 bitmap_free(pd->success_ops);
581 if (pd->failure_ops) {
582 bitmap_free(pd->failure_ops);
584 SAFE_FREE(pd);
585 *p_data = NULL;
588 /* Implementation of vfs_ops. Pass everything on to the default
589 operation but log event first. */
591 static int smb_full_audit_connect(vfs_handle_struct *handle,
592 const char *svc, const char *user)
594 int result;
595 struct vfs_full_audit_private_data *pd = NULL;
596 const char *none[] = { NULL };
597 const char *all [] = { "all" };
599 if (!handle) {
600 return -1;
603 pd = SMB_MALLOC_P(struct vfs_full_audit_private_data);
604 if (!pd) {
605 return -1;
607 ZERO_STRUCTP(pd);
609 openlog("smbd_audit", 0, audit_syslog_facility(handle));
611 init_bitmap(&pd->success_ops,
612 lp_parm_string_list(SNUM(handle->conn), "full_audit", "success",
613 none));
614 init_bitmap(&pd->failure_ops,
615 lp_parm_string_list(SNUM(handle->conn), "full_audit", "failure",
616 all));
618 /* Store the private data. */
619 SMB_VFS_HANDLE_SET_DATA(handle, pd, free_private_data,
620 struct vfs_full_audit_private_data, return -1);
622 result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
624 do_log(SMB_VFS_OP_CONNECT, True, handle,
625 "%s", svc);
627 return result;
630 static void smb_full_audit_disconnect(vfs_handle_struct *handle)
632 SMB_VFS_NEXT_DISCONNECT(handle);
634 do_log(SMB_VFS_OP_DISCONNECT, True, handle,
635 "%s", lp_servicename(SNUM(handle->conn)));
637 /* The bitmaps will be disconnected when the private
638 data is deleted. */
640 return;
643 static uint64_t smb_full_audit_disk_free(vfs_handle_struct *handle,
644 const char *path,
645 bool small_query, uint64_t *bsize,
646 uint64_t *dfree, uint64_t *dsize)
648 uint64_t result;
650 result = SMB_VFS_NEXT_DISK_FREE(handle, path, small_query, bsize,
651 dfree, dsize);
653 /* Don't have a reasonable notion of failure here */
655 do_log(SMB_VFS_OP_DISK_FREE, True, handle, "%s", path);
657 return result;
660 static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
661 enum SMB_QUOTA_TYPE qtype, unid_t id,
662 SMB_DISK_QUOTA *qt)
664 int result;
666 result = SMB_VFS_NEXT_GET_QUOTA(handle, qtype, id, qt);
668 do_log(SMB_VFS_OP_GET_QUOTA, (result >= 0), handle, "");
670 return result;
674 static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
675 enum SMB_QUOTA_TYPE qtype, unid_t id,
676 SMB_DISK_QUOTA *qt)
678 int result;
680 result = SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, qt);
682 do_log(SMB_VFS_OP_SET_QUOTA, (result >= 0), handle, "");
684 return result;
687 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
688 struct files_struct *fsp,
689 SHADOW_COPY_DATA *shadow_copy_data, bool labels)
691 int result;
693 result = SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle, fsp, shadow_copy_data, labels);
695 do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA, (result >= 0), handle, "");
697 return result;
700 static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
701 const char *path,
702 struct vfs_statvfs_struct *statbuf)
704 int result;
706 result = SMB_VFS_NEXT_STATVFS(handle, path, statbuf);
708 do_log(SMB_VFS_OP_STATVFS, (result >= 0), handle, "");
710 return result;
713 static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct *handle)
715 int result;
717 result = SMB_VFS_NEXT_FS_CAPABILITIES(handle);
719 do_log(SMB_VFS_OP_FS_CAPABILITIES, true, handle, "");
721 return result;
724 static SMB_STRUCT_DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
725 const char *fname, const char *mask, uint32 attr)
727 SMB_STRUCT_DIR *result;
729 result = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
731 do_log(SMB_VFS_OP_OPENDIR, (result != NULL), handle, "%s", fname);
733 return result;
736 static SMB_STRUCT_DIRENT *smb_full_audit_readdir(vfs_handle_struct *handle,
737 SMB_STRUCT_DIR *dirp, SMB_STRUCT_STAT *sbuf)
739 SMB_STRUCT_DIRENT *result;
741 result = SMB_VFS_NEXT_READDIR(handle, dirp, sbuf);
743 /* This operation has no reasonable error condition
744 * (End of dir is also failure), so always succeed.
746 do_log(SMB_VFS_OP_READDIR, True, handle, "");
748 return result;
751 static void smb_full_audit_seekdir(vfs_handle_struct *handle,
752 SMB_STRUCT_DIR *dirp, long offset)
754 SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
756 do_log(SMB_VFS_OP_SEEKDIR, True, handle, "");
757 return;
760 static long smb_full_audit_telldir(vfs_handle_struct *handle,
761 SMB_STRUCT_DIR *dirp)
763 long result;
765 result = SMB_VFS_NEXT_TELLDIR(handle, dirp);
767 do_log(SMB_VFS_OP_TELLDIR, True, handle, "");
769 return result;
772 static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
773 SMB_STRUCT_DIR *dirp)
775 SMB_VFS_NEXT_REWINDDIR(handle, dirp);
777 do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
778 return;
781 static int smb_full_audit_mkdir(vfs_handle_struct *handle,
782 const char *path, mode_t mode)
784 int result;
786 result = SMB_VFS_NEXT_MKDIR(handle, path, mode);
788 do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s", path);
790 return result;
793 static int smb_full_audit_rmdir(vfs_handle_struct *handle,
794 const char *path)
796 int result;
798 result = SMB_VFS_NEXT_RMDIR(handle, path);
800 do_log(SMB_VFS_OP_RMDIR, (result >= 0), handle, "%s", path);
802 return result;
805 static int smb_full_audit_closedir(vfs_handle_struct *handle,
806 SMB_STRUCT_DIR *dirp)
808 int result;
810 result = SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
812 do_log(SMB_VFS_OP_CLOSEDIR, (result >= 0), handle, "");
814 return result;
817 static void smb_full_audit_init_search_op(vfs_handle_struct *handle,
818 SMB_STRUCT_DIR *dirp)
820 SMB_VFS_NEXT_INIT_SEARCH_OP(handle, dirp);
822 do_log(SMB_VFS_OP_INIT_SEARCH_OP, True, handle, "");
823 return;
826 static int smb_full_audit_open(vfs_handle_struct *handle,
827 struct smb_filename *smb_fname,
828 files_struct *fsp, int flags, mode_t mode)
830 int result;
832 result = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
834 do_log(SMB_VFS_OP_OPEN, (result >= 0), handle, "%s|%s",
835 ((flags & O_WRONLY) || (flags & O_RDWR))?"w":"r",
836 smb_fname_str_do_log(smb_fname));
838 return result;
841 static NTSTATUS smb_full_audit_create_file(vfs_handle_struct *handle,
842 struct smb_request *req,
843 uint16_t root_dir_fid,
844 struct smb_filename *smb_fname,
845 uint32_t access_mask,
846 uint32_t share_access,
847 uint32_t create_disposition,
848 uint32_t create_options,
849 uint32_t file_attributes,
850 uint32_t oplock_request,
851 uint64_t allocation_size,
852 struct security_descriptor *sd,
853 struct ea_list *ea_list,
854 files_struct **result_fsp,
855 int *pinfo)
857 NTSTATUS result;
859 result = SMB_VFS_NEXT_CREATE_FILE(
860 handle, /* handle */
861 req, /* req */
862 root_dir_fid, /* root_dir_fid */
863 smb_fname, /* fname */
864 access_mask, /* access_mask */
865 share_access, /* share_access */
866 create_disposition, /* create_disposition*/
867 create_options, /* create_options */
868 file_attributes, /* file_attributes */
869 oplock_request, /* oplock_request */
870 allocation_size, /* allocation_size */
871 sd, /* sd */
872 ea_list, /* ea_list */
873 result_fsp, /* result */
874 pinfo); /* pinfo */
876 do_log(SMB_VFS_OP_CREATE_FILE, (NT_STATUS_IS_OK(result)), handle, "0x%x|%s",
877 access_mask, smb_fname_str_do_log(smb_fname));
879 return result;
882 static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp)
884 int result;
886 result = SMB_VFS_NEXT_CLOSE(handle, fsp);
888 do_log(SMB_VFS_OP_CLOSE, (result >= 0), handle, "%s",
889 fsp_str_do_log(fsp));
891 return result;
894 static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
895 void *data, size_t n)
897 ssize_t result;
899 result = SMB_VFS_NEXT_READ(handle, fsp, data, n);
901 do_log(SMB_VFS_OP_READ, (result >= 0), handle, "%s",
902 fsp_str_do_log(fsp));
904 return result;
907 static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
908 void *data, size_t n, SMB_OFF_T offset)
910 ssize_t result;
912 result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
914 do_log(SMB_VFS_OP_PREAD, (result >= 0), handle, "%s",
915 fsp_str_do_log(fsp));
917 return result;
920 static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
921 const void *data, size_t n)
923 ssize_t result;
925 result = SMB_VFS_NEXT_WRITE(handle, fsp, data, n);
927 do_log(SMB_VFS_OP_WRITE, (result >= 0), handle, "%s",
928 fsp_str_do_log(fsp));
930 return result;
933 static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
934 const void *data, size_t n,
935 SMB_OFF_T offset)
937 ssize_t result;
939 result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
941 do_log(SMB_VFS_OP_PWRITE, (result >= 0), handle, "%s",
942 fsp_str_do_log(fsp));
944 return result;
947 static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
948 SMB_OFF_T offset, int whence)
950 ssize_t result;
952 result = SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
954 do_log(SMB_VFS_OP_LSEEK, (result != (ssize_t)-1), handle,
955 "%s", fsp_str_do_log(fsp));
957 return result;
960 static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
961 files_struct *fromfsp,
962 const DATA_BLOB *hdr, SMB_OFF_T offset,
963 size_t n)
965 ssize_t result;
967 result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
969 do_log(SMB_VFS_OP_SENDFILE, (result >= 0), handle,
970 "%s", fsp_str_do_log(fromfsp));
972 return result;
975 static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
976 files_struct *tofsp,
977 SMB_OFF_T offset,
978 size_t n)
980 ssize_t result;
982 result = SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
984 do_log(SMB_VFS_OP_RECVFILE, (result >= 0), handle,
985 "%s", fsp_str_do_log(tofsp));
987 return result;
990 static int smb_full_audit_rename(vfs_handle_struct *handle,
991 const struct smb_filename *smb_fname_src,
992 const struct smb_filename *smb_fname_dst)
994 int result;
996 result = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
998 do_log(SMB_VFS_OP_RENAME, (result >= 0), handle, "%s|%s",
999 smb_fname_str_do_log(smb_fname_src),
1000 smb_fname_str_do_log(smb_fname_dst));
1002 return result;
1005 static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp)
1007 int result;
1009 result = SMB_VFS_NEXT_FSYNC(handle, fsp);
1011 do_log(SMB_VFS_OP_FSYNC, (result >= 0), handle, "%s",
1012 fsp_str_do_log(fsp));
1014 return result;
1017 static int smb_full_audit_stat(vfs_handle_struct *handle,
1018 struct smb_filename *smb_fname)
1020 int result;
1022 result = SMB_VFS_NEXT_STAT(handle, smb_fname);
1024 do_log(SMB_VFS_OP_STAT, (result >= 0), handle, "%s",
1025 smb_fname_str_do_log(smb_fname));
1027 return result;
1030 static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
1031 SMB_STRUCT_STAT *sbuf)
1033 int result;
1035 result = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
1037 do_log(SMB_VFS_OP_FSTAT, (result >= 0), handle, "%s",
1038 fsp_str_do_log(fsp));
1040 return result;
1043 static int smb_full_audit_lstat(vfs_handle_struct *handle,
1044 struct smb_filename *smb_fname)
1046 int result;
1048 result = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
1050 do_log(SMB_VFS_OP_LSTAT, (result >= 0), handle, "%s",
1051 smb_fname_str_do_log(smb_fname));
1053 return result;
1056 static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct *handle,
1057 files_struct *fsp, const SMB_STRUCT_STAT *sbuf)
1059 int result;
1061 result = SMB_VFS_NEXT_GET_ALLOC_SIZE(handle, fsp, sbuf);
1063 do_log(SMB_VFS_OP_GET_ALLOC_SIZE, (result >= 0), handle, "%d", result);
1065 return result;
1068 static int smb_full_audit_unlink(vfs_handle_struct *handle,
1069 const struct smb_filename *smb_fname)
1071 int result;
1073 result = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
1075 do_log(SMB_VFS_OP_UNLINK, (result >= 0), handle, "%s",
1076 smb_fname_str_do_log(smb_fname));
1078 return result;
1081 static int smb_full_audit_chmod(vfs_handle_struct *handle,
1082 const char *path, mode_t mode)
1084 int result;
1086 result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
1088 do_log(SMB_VFS_OP_CHMOD, (result >= 0), handle, "%s|%o", path, mode);
1090 return result;
1093 static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
1094 mode_t mode)
1096 int result;
1098 result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
1100 do_log(SMB_VFS_OP_FCHMOD, (result >= 0), handle,
1101 "%s|%o", fsp_str_do_log(fsp), mode);
1103 return result;
1106 static int smb_full_audit_chown(vfs_handle_struct *handle,
1107 const char *path, uid_t uid, gid_t gid)
1109 int result;
1111 result = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
1113 do_log(SMB_VFS_OP_CHOWN, (result >= 0), handle, "%s|%ld|%ld",
1114 path, (long int)uid, (long int)gid);
1116 return result;
1119 static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
1120 uid_t uid, gid_t gid)
1122 int result;
1124 result = SMB_VFS_NEXT_FCHOWN(handle, fsp, uid, gid);
1126 do_log(SMB_VFS_OP_FCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1127 fsp_str_do_log(fsp), (long int)uid, (long int)gid);
1129 return result;
1132 static int smb_full_audit_lchown(vfs_handle_struct *handle,
1133 const char *path, uid_t uid, gid_t gid)
1135 int result;
1137 result = SMB_VFS_NEXT_LCHOWN(handle, path, uid, gid);
1139 do_log(SMB_VFS_OP_LCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1140 path, (long int)uid, (long int)gid);
1142 return result;
1145 static int smb_full_audit_chdir(vfs_handle_struct *handle,
1146 const char *path)
1148 int result;
1150 result = SMB_VFS_NEXT_CHDIR(handle, path);
1152 do_log(SMB_VFS_OP_CHDIR, (result >= 0), handle, "chdir|%s", path);
1154 return result;
1157 static char *smb_full_audit_getwd(vfs_handle_struct *handle,
1158 char *path)
1160 char *result;
1162 result = SMB_VFS_NEXT_GETWD(handle, path);
1164 do_log(SMB_VFS_OP_GETWD, (result != NULL), handle, "%s", path);
1166 return result;
1169 static int smb_full_audit_ntimes(vfs_handle_struct *handle,
1170 const struct smb_filename *smb_fname,
1171 struct smb_file_time *ft)
1173 int result;
1175 result = SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
1177 do_log(SMB_VFS_OP_NTIMES, (result >= 0), handle, "%s",
1178 smb_fname_str_do_log(smb_fname));
1180 return result;
1183 static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
1184 SMB_OFF_T len)
1186 int result;
1188 result = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
1190 do_log(SMB_VFS_OP_FTRUNCATE, (result >= 0), handle,
1191 "%s", fsp_str_do_log(fsp));
1193 return result;
1196 static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
1197 int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
1199 bool result;
1201 result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
1203 do_log(SMB_VFS_OP_LOCK, result, handle, "%s", fsp_str_do_log(fsp));
1205 return result;
1208 static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
1209 struct files_struct *fsp,
1210 uint32 share_mode)
1212 int result;
1214 result = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_mode);
1216 do_log(SMB_VFS_OP_KERNEL_FLOCK, (result >= 0), handle, "%s",
1217 fsp_str_do_log(fsp));
1219 return result;
1222 static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
1223 int leasetype)
1225 int result;
1227 result = SMB_VFS_NEXT_LINUX_SETLEASE(handle, fsp, leasetype);
1229 do_log(SMB_VFS_OP_LINUX_SETLEASE, (result >= 0), handle, "%s",
1230 fsp_str_do_log(fsp));
1232 return result;
1235 static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
1236 SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid)
1238 bool result;
1240 result = SMB_VFS_NEXT_GETLOCK(handle, fsp, poffset, pcount, ptype, ppid);
1242 do_log(SMB_VFS_OP_GETLOCK, result, handle, "%s", fsp_str_do_log(fsp));
1244 return result;
1247 static int smb_full_audit_symlink(vfs_handle_struct *handle,
1248 const char *oldpath, const char *newpath)
1250 int result;
1252 result = SMB_VFS_NEXT_SYMLINK(handle, oldpath, newpath);
1254 do_log(SMB_VFS_OP_SYMLINK, (result >= 0), handle,
1255 "%s|%s", oldpath, newpath);
1257 return result;
1260 static int smb_full_audit_readlink(vfs_handle_struct *handle,
1261 const char *path, char *buf, size_t bufsiz)
1263 int result;
1265 result = SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
1267 do_log(SMB_VFS_OP_READLINK, (result >= 0), handle, "%s", path);
1269 return result;
1272 static int smb_full_audit_link(vfs_handle_struct *handle,
1273 const char *oldpath, const char *newpath)
1275 int result;
1277 result = SMB_VFS_NEXT_LINK(handle, oldpath, newpath);
1279 do_log(SMB_VFS_OP_LINK, (result >= 0), handle,
1280 "%s|%s", oldpath, newpath);
1282 return result;
1285 static int smb_full_audit_mknod(vfs_handle_struct *handle,
1286 const char *pathname, mode_t mode, SMB_DEV_T dev)
1288 int result;
1290 result = SMB_VFS_NEXT_MKNOD(handle, pathname, mode, dev);
1292 do_log(SMB_VFS_OP_MKNOD, (result >= 0), handle, "%s", pathname);
1294 return result;
1297 static char *smb_full_audit_realpath(vfs_handle_struct *handle,
1298 const char *path, char *resolved_path)
1300 char *result;
1302 result = SMB_VFS_NEXT_REALPATH(handle, path, resolved_path);
1304 do_log(SMB_VFS_OP_REALPATH, (result != NULL), handle, "%s", path);
1306 return result;
1309 static NTSTATUS smb_full_audit_notify_watch(struct vfs_handle_struct *handle,
1310 struct sys_notify_context *ctx,
1311 struct notify_entry *e,
1312 void (*callback)(struct sys_notify_context *ctx,
1313 void *private_data,
1314 struct notify_event *ev),
1315 void *private_data, void *handle_p)
1317 NTSTATUS result;
1319 result = SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, e, callback, private_data, handle_p);
1321 do_log(SMB_VFS_OP_NOTIFY_WATCH, NT_STATUS_IS_OK(result), handle, "");
1323 return result;
1326 static int smb_full_audit_chflags(vfs_handle_struct *handle,
1327 const char *path, unsigned int flags)
1329 int result;
1331 result = SMB_VFS_NEXT_CHFLAGS(handle, path, flags);
1333 do_log(SMB_VFS_OP_CHFLAGS, (result != 0), handle, "%s", path);
1335 return result;
1338 static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
1339 const SMB_STRUCT_STAT *sbuf)
1341 struct file_id id_zero;
1342 struct file_id result;
1344 ZERO_STRUCT(id_zero);
1346 result = SMB_VFS_NEXT_FILE_ID_CREATE(handle, sbuf);
1348 do_log(SMB_VFS_OP_FILE_ID_CREATE,
1349 !file_id_equal(&id_zero, &result),
1350 handle, "%s", file_id_string_tos(&result));
1352 return result;
1355 static NTSTATUS smb_full_audit_streaminfo(vfs_handle_struct *handle,
1356 struct files_struct *fsp,
1357 const char *fname,
1358 TALLOC_CTX *mem_ctx,
1359 unsigned int *pnum_streams,
1360 struct stream_struct **pstreams)
1362 NTSTATUS result;
1364 result = SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx,
1365 pnum_streams, pstreams);
1367 do_log(SMB_VFS_OP_STREAMINFO, NT_STATUS_IS_OK(result), handle,
1368 "%s", fname);
1370 return result;
1373 static int smb_full_audit_get_real_filename(struct vfs_handle_struct *handle,
1374 const char *path,
1375 const char *name,
1376 TALLOC_CTX *mem_ctx,
1377 char **found_name)
1379 int result;
1381 result = SMB_VFS_NEXT_GET_REAL_FILENAME(handle, path, name, mem_ctx,
1382 found_name);
1384 do_log(SMB_VFS_OP_GET_REAL_FILENAME, (result == 0), handle,
1385 "%s/%s->%s", path, name, (result == 0) ? "" : *found_name);
1387 return result;
1390 static const char *smb_full_audit_connectpath(vfs_handle_struct *handle,
1391 const char *fname)
1393 const char *result;
1395 result = SMB_VFS_NEXT_CONNECTPATH(handle, fname);
1397 do_log(SMB_VFS_OP_CONNECTPATH, result != NULL, handle,
1398 "%s", fname);
1400 return result;
1403 static NTSTATUS smb_full_audit_brl_lock_windows(struct vfs_handle_struct *handle,
1404 struct byte_range_lock *br_lck,
1405 struct lock_struct *plock,
1406 bool blocking_lock,
1407 struct blocking_lock_record *blr)
1409 NTSTATUS result;
1411 result = SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle, br_lck, plock,
1412 blocking_lock, blr);
1414 do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS, NT_STATUS_IS_OK(result), handle,
1415 "%s:%llu-%llu. type=%d. blocking=%d", fsp_str_do_log(br_lck->fsp),
1416 plock->start, plock->size, plock->lock_type, blocking_lock );
1418 return result;
1421 static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct *handle,
1422 struct messaging_context *msg_ctx,
1423 struct byte_range_lock *br_lck,
1424 const struct lock_struct *plock)
1426 bool result;
1428 result = SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle, msg_ctx, br_lck,
1429 plock);
1431 do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS, (result == 0), handle,
1432 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck->fsp), plock->start,
1433 plock->size, plock->lock_type);
1435 return result;
1438 static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct *handle,
1439 struct byte_range_lock *br_lck,
1440 struct lock_struct *plock,
1441 struct blocking_lock_record *blr)
1443 bool result;
1445 result = SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle, br_lck, plock, blr);
1447 do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS, (result == 0), handle,
1448 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck->fsp), plock->start,
1449 plock->size);
1451 return result;
1454 static bool smb_full_audit_strict_lock(struct vfs_handle_struct *handle,
1455 struct files_struct *fsp,
1456 struct lock_struct *plock)
1458 bool result;
1460 result = SMB_VFS_NEXT_STRICT_LOCK(handle, fsp, plock);
1462 do_log(SMB_VFS_OP_STRICT_LOCK, result, handle,
1463 "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
1464 plock->size);
1466 return result;
1469 static void smb_full_audit_strict_unlock(struct vfs_handle_struct *handle,
1470 struct files_struct *fsp,
1471 struct lock_struct *plock)
1473 SMB_VFS_NEXT_STRICT_UNLOCK(handle, fsp, plock);
1475 do_log(SMB_VFS_OP_STRICT_UNLOCK, true, handle,
1476 "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
1477 plock->size);
1479 return;
1482 static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1483 uint32 security_info,
1484 SEC_DESC **ppdesc)
1486 NTSTATUS result;
1488 result = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info, ppdesc);
1490 do_log(SMB_VFS_OP_FGET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1491 "%s", fsp_str_do_log(fsp));
1493 return result;
1496 static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle,
1497 const char *name,
1498 uint32 security_info,
1499 SEC_DESC **ppdesc)
1501 NTSTATUS result;
1503 result = SMB_VFS_NEXT_GET_NT_ACL(handle, name, security_info, ppdesc);
1505 do_log(SMB_VFS_OP_GET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1506 "%s", name);
1508 return result;
1511 static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1512 uint32 security_info_sent,
1513 const SEC_DESC *psd)
1515 NTSTATUS result;
1517 result = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
1519 do_log(SMB_VFS_OP_FSET_NT_ACL, NT_STATUS_IS_OK(result), handle, "%s",
1520 fsp_str_do_log(fsp));
1522 return result;
1525 static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
1526 const char *path, mode_t mode)
1528 int result;
1530 result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
1532 do_log(SMB_VFS_OP_CHMOD_ACL, (result >= 0), handle,
1533 "%s|%o", path, mode);
1535 return result;
1538 static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
1539 mode_t mode)
1541 int result;
1543 result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
1545 do_log(SMB_VFS_OP_FCHMOD_ACL, (result >= 0), handle,
1546 "%s|%o", fsp_str_do_log(fsp), mode);
1548 return result;
1551 static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct *handle,
1553 SMB_ACL_T theacl, int entry_id,
1554 SMB_ACL_ENTRY_T *entry_p)
1556 int result;
1558 result = SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id,
1559 entry_p);
1561 do_log(SMB_VFS_OP_SYS_ACL_GET_ENTRY, (result >= 0), handle,
1562 "");
1564 return result;
1567 static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct *handle,
1569 SMB_ACL_ENTRY_T entry_d,
1570 SMB_ACL_TAG_T *tag_type_p)
1572 int result;
1574 result = SMB_VFS_NEXT_SYS_ACL_GET_TAG_TYPE(handle, entry_d,
1575 tag_type_p);
1577 do_log(SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, (result >= 0), handle,
1578 "");
1580 return result;
1583 static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct *handle,
1585 SMB_ACL_ENTRY_T entry_d,
1586 SMB_ACL_PERMSET_T *permset_p)
1588 int result;
1590 result = SMB_VFS_NEXT_SYS_ACL_GET_PERMSET(handle, entry_d,
1591 permset_p);
1593 do_log(SMB_VFS_OP_SYS_ACL_GET_PERMSET, (result >= 0), handle,
1594 "");
1596 return result;
1599 static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct *handle,
1601 SMB_ACL_ENTRY_T entry_d)
1603 void *result;
1605 result = SMB_VFS_NEXT_SYS_ACL_GET_QUALIFIER(handle, entry_d);
1607 do_log(SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, (result != NULL), handle,
1608 "");
1610 return result;
1613 static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
1614 const char *path_p,
1615 SMB_ACL_TYPE_T type)
1617 SMB_ACL_T result;
1619 result = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, path_p, type);
1621 do_log(SMB_VFS_OP_SYS_ACL_GET_FILE, (result != NULL), handle,
1622 "%s", path_p);
1624 return result;
1627 static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
1628 files_struct *fsp)
1630 SMB_ACL_T result;
1632 result = SMB_VFS_NEXT_SYS_ACL_GET_FD(handle, fsp);
1634 do_log(SMB_VFS_OP_SYS_ACL_GET_FD, (result != NULL), handle,
1635 "%s", fsp_str_do_log(fsp));
1637 return result;
1640 static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct *handle,
1642 SMB_ACL_PERMSET_T permset)
1644 int result;
1646 result = SMB_VFS_NEXT_SYS_ACL_CLEAR_PERMS(handle, permset);
1648 do_log(SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, (result >= 0), handle,
1649 "");
1651 return result;
1654 static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct *handle,
1656 SMB_ACL_PERMSET_T permset,
1657 SMB_ACL_PERM_T perm)
1659 int result;
1661 result = SMB_VFS_NEXT_SYS_ACL_ADD_PERM(handle, permset, perm);
1663 do_log(SMB_VFS_OP_SYS_ACL_ADD_PERM, (result >= 0), handle,
1664 "");
1666 return result;
1669 static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct *handle,
1670 SMB_ACL_T theacl,
1671 ssize_t *plen)
1673 char * result;
1675 result = SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen);
1677 do_log(SMB_VFS_OP_SYS_ACL_TO_TEXT, (result != NULL), handle,
1678 "");
1680 return result;
1683 static SMB_ACL_T smb_full_audit_sys_acl_init(vfs_handle_struct *handle,
1685 int count)
1687 SMB_ACL_T result;
1689 result = SMB_VFS_NEXT_SYS_ACL_INIT(handle, count);
1691 do_log(SMB_VFS_OP_SYS_ACL_INIT, (result != NULL), handle,
1692 "");
1694 return result;
1697 static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct *handle,
1698 SMB_ACL_T *pacl,
1699 SMB_ACL_ENTRY_T *pentry)
1701 int result;
1703 result = SMB_VFS_NEXT_SYS_ACL_CREATE_ENTRY(handle, pacl, pentry);
1705 do_log(SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, (result >= 0), handle,
1706 "");
1708 return result;
1711 static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct *handle,
1713 SMB_ACL_ENTRY_T entry,
1714 SMB_ACL_TAG_T tagtype)
1716 int result;
1718 result = SMB_VFS_NEXT_SYS_ACL_SET_TAG_TYPE(handle, entry,
1719 tagtype);
1721 do_log(SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, (result >= 0), handle,
1722 "");
1724 return result;
1727 static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct *handle,
1729 SMB_ACL_ENTRY_T entry,
1730 void *qual)
1732 int result;
1734 result = SMB_VFS_NEXT_SYS_ACL_SET_QUALIFIER(handle, entry, qual);
1736 do_log(SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, (result >= 0), handle,
1737 "");
1739 return result;
1742 static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct *handle,
1744 SMB_ACL_ENTRY_T entry,
1745 SMB_ACL_PERMSET_T permset)
1747 int result;
1749 result = SMB_VFS_NEXT_SYS_ACL_SET_PERMSET(handle, entry, permset);
1751 do_log(SMB_VFS_OP_SYS_ACL_SET_PERMSET, (result >= 0), handle,
1752 "");
1754 return result;
1757 static int smb_full_audit_sys_acl_valid(vfs_handle_struct *handle,
1759 SMB_ACL_T theacl )
1761 int result;
1763 result = SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl);
1765 do_log(SMB_VFS_OP_SYS_ACL_VALID, (result >= 0), handle,
1766 "");
1768 return result;
1771 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
1773 const char *name, SMB_ACL_TYPE_T acltype,
1774 SMB_ACL_T theacl)
1776 int result;
1778 result = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype,
1779 theacl);
1781 do_log(SMB_VFS_OP_SYS_ACL_SET_FILE, (result >= 0), handle,
1782 "%s", name);
1784 return result;
1787 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
1788 SMB_ACL_T theacl)
1790 int result;
1792 result = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
1794 do_log(SMB_VFS_OP_SYS_ACL_SET_FD, (result >= 0), handle,
1795 "%s", fsp_str_do_log(fsp));
1797 return result;
1800 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
1802 const char *path)
1804 int result;
1806 result = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, path);
1808 do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, (result >= 0), handle,
1809 "%s", path);
1811 return result;
1814 static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct *handle,
1816 SMB_ACL_PERMSET_T permset,
1817 SMB_ACL_PERM_T perm)
1819 int result;
1821 result = SMB_VFS_NEXT_SYS_ACL_GET_PERM(handle, permset, perm);
1823 do_log(SMB_VFS_OP_SYS_ACL_GET_PERM, (result >= 0), handle,
1824 "");
1826 return result;
1829 static int smb_full_audit_sys_acl_free_text(vfs_handle_struct *handle,
1831 char *text)
1833 int result;
1835 result = SMB_VFS_NEXT_SYS_ACL_FREE_TEXT(handle, text);
1837 do_log(SMB_VFS_OP_SYS_ACL_FREE_TEXT, (result >= 0), handle,
1838 "");
1840 return result;
1843 static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct *handle,
1845 SMB_ACL_T posix_acl)
1847 int result;
1849 result = SMB_VFS_NEXT_SYS_ACL_FREE_ACL(handle, posix_acl);
1851 do_log(SMB_VFS_OP_SYS_ACL_FREE_ACL, (result >= 0), handle,
1852 "");
1854 return result;
1857 static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct *handle,
1858 void *qualifier,
1859 SMB_ACL_TAG_T tagtype)
1861 int result;
1863 result = SMB_VFS_NEXT_SYS_ACL_FREE_QUALIFIER(handle, qualifier,
1864 tagtype);
1866 do_log(SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, (result >= 0), handle,
1867 "");
1869 return result;
1872 static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
1873 const char *path,
1874 const char *name, void *value, size_t size)
1876 ssize_t result;
1878 result = SMB_VFS_NEXT_GETXATTR(handle, path, name, value, size);
1880 do_log(SMB_VFS_OP_GETXATTR, (result >= 0), handle,
1881 "%s|%s", path, name);
1883 return result;
1886 static ssize_t smb_full_audit_lgetxattr(struct vfs_handle_struct *handle,
1887 const char *path, const char *name,
1888 void *value, size_t size)
1890 ssize_t result;
1892 result = SMB_VFS_NEXT_LGETXATTR(handle, path, name, value, size);
1894 do_log(SMB_VFS_OP_LGETXATTR, (result >= 0), handle,
1895 "%s|%s", path, name);
1897 return result;
1900 static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
1901 struct files_struct *fsp,
1902 const char *name, void *value, size_t size)
1904 ssize_t result;
1906 result = SMB_VFS_NEXT_FGETXATTR(handle, fsp, name, value, size);
1908 do_log(SMB_VFS_OP_FGETXATTR, (result >= 0), handle,
1909 "%s|%s", fsp_str_do_log(fsp), name);
1911 return result;
1914 static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
1915 const char *path, char *list, size_t size)
1917 ssize_t result;
1919 result = SMB_VFS_NEXT_LISTXATTR(handle, path, list, size);
1921 do_log(SMB_VFS_OP_LISTXATTR, (result >= 0), handle, "%s", path);
1923 return result;
1926 static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
1927 const char *path, char *list, size_t size)
1929 ssize_t result;
1931 result = SMB_VFS_NEXT_LLISTXATTR(handle, path, list, size);
1933 do_log(SMB_VFS_OP_LLISTXATTR, (result >= 0), handle, "%s", path);
1935 return result;
1938 static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
1939 struct files_struct *fsp, char *list,
1940 size_t size)
1942 ssize_t result;
1944 result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
1946 do_log(SMB_VFS_OP_FLISTXATTR, (result >= 0), handle,
1947 "%s", fsp_str_do_log(fsp));
1949 return result;
1952 static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
1953 const char *path,
1954 const char *name)
1956 int result;
1958 result = SMB_VFS_NEXT_REMOVEXATTR(handle, path, name);
1960 do_log(SMB_VFS_OP_REMOVEXATTR, (result >= 0), handle,
1961 "%s|%s", path, name);
1963 return result;
1966 static int smb_full_audit_lremovexattr(struct vfs_handle_struct *handle,
1967 const char *path,
1968 const char *name)
1970 int result;
1972 result = SMB_VFS_NEXT_LREMOVEXATTR(handle, path, name);
1974 do_log(SMB_VFS_OP_LREMOVEXATTR, (result >= 0), handle,
1975 "%s|%s", path, name);
1977 return result;
1980 static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
1981 struct files_struct *fsp,
1982 const char *name)
1984 int result;
1986 result = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
1988 do_log(SMB_VFS_OP_FREMOVEXATTR, (result >= 0), handle,
1989 "%s|%s", fsp_str_do_log(fsp), name);
1991 return result;
1994 static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
1995 const char *path,
1996 const char *name, const void *value, size_t size,
1997 int flags)
1999 int result;
2001 result = SMB_VFS_NEXT_SETXATTR(handle, path, name, value, size,
2002 flags);
2004 do_log(SMB_VFS_OP_SETXATTR, (result >= 0), handle,
2005 "%s|%s", path, name);
2007 return result;
2010 static int smb_full_audit_lsetxattr(struct vfs_handle_struct *handle,
2011 const char *path,
2012 const char *name, const void *value, size_t size,
2013 int flags)
2015 int result;
2017 result = SMB_VFS_NEXT_LSETXATTR(handle, path, name, value, size,
2018 flags);
2020 do_log(SMB_VFS_OP_LSETXATTR, (result >= 0), handle,
2021 "%s|%s", path, name);
2023 return result;
2026 static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
2027 struct files_struct *fsp, const char *name,
2028 const void *value, size_t size, int flags)
2030 int result;
2032 result = SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags);
2034 do_log(SMB_VFS_OP_FSETXATTR, (result >= 0), handle,
2035 "%s|%s", fsp_str_do_log(fsp), name);
2037 return result;
2040 static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2042 int result;
2044 result = SMB_VFS_NEXT_AIO_READ(handle, fsp, aiocb);
2045 do_log(SMB_VFS_OP_AIO_READ, (result >= 0), handle,
2046 "%s", fsp_str_do_log(fsp));
2048 return result;
2051 static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2053 int result;
2055 result = SMB_VFS_NEXT_AIO_WRITE(handle, fsp, aiocb);
2056 do_log(SMB_VFS_OP_AIO_WRITE, (result >= 0), handle,
2057 "%s", fsp_str_do_log(fsp));
2059 return result;
2062 static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2064 int result;
2066 result = SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);
2067 do_log(SMB_VFS_OP_AIO_RETURN, (result >= 0), handle,
2068 "%s", fsp_str_do_log(fsp));
2070 return result;
2073 static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2075 int result;
2077 result = SMB_VFS_NEXT_AIO_CANCEL(handle, fsp, aiocb);
2078 do_log(SMB_VFS_OP_AIO_CANCEL, (result >= 0), handle,
2079 "%s", fsp_str_do_log(fsp));
2081 return result;
2084 static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2086 int result;
2088 result = SMB_VFS_NEXT_AIO_ERROR(handle, fsp, aiocb);
2089 do_log(SMB_VFS_OP_AIO_ERROR, (result >= 0), handle,
2090 "%s", fsp_str_do_log(fsp));
2092 return result;
2095 static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
2097 int result;
2099 result = SMB_VFS_NEXT_AIO_FSYNC(handle, fsp, op, aiocb);
2100 do_log(SMB_VFS_OP_AIO_FSYNC, (result >= 0), handle,
2101 "%s", fsp_str_do_log(fsp));
2103 return result;
2106 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)
2108 int result;
2110 result = SMB_VFS_NEXT_AIO_SUSPEND(handle, fsp, aiocb, n, ts);
2111 do_log(SMB_VFS_OP_AIO_SUSPEND, (result >= 0), handle,
2112 "%s", fsp_str_do_log(fsp));
2114 return result;
2117 static bool smb_full_audit_aio_force(struct vfs_handle_struct *handle,
2118 struct files_struct *fsp)
2120 bool result;
2122 result = SMB_VFS_NEXT_AIO_FORCE(handle, fsp);
2123 do_log(SMB_VFS_OP_AIO_FORCE, result, handle,
2124 "%s", fsp_str_do_log(fsp));
2126 return result;
2129 static struct vfs_fn_pointers vfs_full_audit_fns = {
2131 /* Disk operations */
2133 .connect_fn = smb_full_audit_connect,
2134 .disconnect = smb_full_audit_disconnect,
2135 .disk_free = smb_full_audit_disk_free,
2136 .get_quota = smb_full_audit_get_quota,
2137 .set_quota = smb_full_audit_set_quota,
2138 .get_shadow_copy_data = smb_full_audit_get_shadow_copy_data,
2139 .statvfs = smb_full_audit_statvfs,
2140 .fs_capabilities = smb_full_audit_fs_capabilities,
2141 .opendir = smb_full_audit_opendir,
2142 .readdir = smb_full_audit_readdir,
2143 .seekdir = smb_full_audit_seekdir,
2144 .telldir = smb_full_audit_telldir,
2145 .rewind_dir = smb_full_audit_rewinddir,
2146 .mkdir = smb_full_audit_mkdir,
2147 .rmdir = smb_full_audit_rmdir,
2148 .closedir = smb_full_audit_closedir,
2149 .init_search_op = smb_full_audit_init_search_op,
2150 .open = smb_full_audit_open,
2151 .create_file = smb_full_audit_create_file,
2152 .close_fn = smb_full_audit_close,
2153 .vfs_read = smb_full_audit_read,
2154 .pread = smb_full_audit_pread,
2155 .write = smb_full_audit_write,
2156 .pwrite = smb_full_audit_pwrite,
2157 .lseek = smb_full_audit_lseek,
2158 .sendfile = smb_full_audit_sendfile,
2159 .recvfile = smb_full_audit_recvfile,
2160 .rename = smb_full_audit_rename,
2161 .fsync = smb_full_audit_fsync,
2162 .stat = smb_full_audit_stat,
2163 .fstat = smb_full_audit_fstat,
2164 .lstat = smb_full_audit_lstat,
2165 .get_alloc_size = smb_full_audit_get_alloc_size,
2166 .unlink = smb_full_audit_unlink,
2167 .chmod = smb_full_audit_chmod,
2168 .fchmod = smb_full_audit_fchmod,
2169 .chown = smb_full_audit_chown,
2170 .fchown = smb_full_audit_fchown,
2171 .lchown = smb_full_audit_lchown,
2172 .chdir = smb_full_audit_chdir,
2173 .getwd = smb_full_audit_getwd,
2174 .ntimes = smb_full_audit_ntimes,
2175 .ftruncate = smb_full_audit_ftruncate,
2176 .lock = smb_full_audit_lock,
2177 .kernel_flock = smb_full_audit_kernel_flock,
2178 .linux_setlease = smb_full_audit_linux_setlease,
2179 .getlock = smb_full_audit_getlock,
2180 .symlink = smb_full_audit_symlink,
2181 .vfs_readlink = smb_full_audit_readlink,
2182 .link = smb_full_audit_link,
2183 .mknod = smb_full_audit_mknod,
2184 .realpath = smb_full_audit_realpath,
2185 .notify_watch = smb_full_audit_notify_watch,
2186 .chflags = smb_full_audit_chflags,
2187 .file_id_create = smb_full_audit_file_id_create,
2188 .streaminfo = smb_full_audit_streaminfo,
2189 .get_real_filename = smb_full_audit_get_real_filename,
2190 .connectpath = smb_full_audit_connectpath,
2191 .brl_lock_windows = smb_full_audit_brl_lock_windows,
2192 .brl_unlock_windows = smb_full_audit_brl_unlock_windows,
2193 .brl_cancel_windows = smb_full_audit_brl_cancel_windows,
2194 .strict_lock = smb_full_audit_strict_lock,
2195 .strict_unlock = smb_full_audit_strict_unlock,
2196 .fget_nt_acl = smb_full_audit_fget_nt_acl,
2197 .get_nt_acl = smb_full_audit_get_nt_acl,
2198 .fset_nt_acl = smb_full_audit_fset_nt_acl,
2199 .chmod_acl = smb_full_audit_chmod_acl,
2200 .fchmod_acl = smb_full_audit_fchmod_acl,
2201 .sys_acl_get_entry = smb_full_audit_sys_acl_get_entry,
2202 .sys_acl_get_tag_type = smb_full_audit_sys_acl_get_tag_type,
2203 .sys_acl_get_permset = smb_full_audit_sys_acl_get_permset,
2204 .sys_acl_get_qualifier = smb_full_audit_sys_acl_get_qualifier,
2205 .sys_acl_get_file = smb_full_audit_sys_acl_get_file,
2206 .sys_acl_get_fd = smb_full_audit_sys_acl_get_fd,
2207 .sys_acl_clear_perms = smb_full_audit_sys_acl_clear_perms,
2208 .sys_acl_add_perm = smb_full_audit_sys_acl_add_perm,
2209 .sys_acl_to_text = smb_full_audit_sys_acl_to_text,
2210 .sys_acl_init = smb_full_audit_sys_acl_init,
2211 .sys_acl_create_entry = smb_full_audit_sys_acl_create_entry,
2212 .sys_acl_set_tag_type = smb_full_audit_sys_acl_set_tag_type,
2213 .sys_acl_set_qualifier = smb_full_audit_sys_acl_set_qualifier,
2214 .sys_acl_set_permset = smb_full_audit_sys_acl_set_permset,
2215 .sys_acl_valid = smb_full_audit_sys_acl_valid,
2216 .sys_acl_set_file = smb_full_audit_sys_acl_set_file,
2217 .sys_acl_set_fd = smb_full_audit_sys_acl_set_fd,
2218 .sys_acl_delete_def_file = smb_full_audit_sys_acl_delete_def_file,
2219 .sys_acl_get_perm = smb_full_audit_sys_acl_get_perm,
2220 .sys_acl_free_text = smb_full_audit_sys_acl_free_text,
2221 .sys_acl_free_acl = smb_full_audit_sys_acl_free_acl,
2222 .sys_acl_free_qualifier = smb_full_audit_sys_acl_free_qualifier,
2223 .getxattr = smb_full_audit_getxattr,
2224 .lgetxattr = smb_full_audit_lgetxattr,
2225 .fgetxattr = smb_full_audit_fgetxattr,
2226 .listxattr = smb_full_audit_listxattr,
2227 .llistxattr = smb_full_audit_llistxattr,
2228 .flistxattr = smb_full_audit_flistxattr,
2229 .removexattr = smb_full_audit_removexattr,
2230 .lremovexattr = smb_full_audit_lremovexattr,
2231 .fremovexattr = smb_full_audit_fremovexattr,
2232 .setxattr = smb_full_audit_setxattr,
2233 .lsetxattr = smb_full_audit_lsetxattr,
2234 .fsetxattr = smb_full_audit_fsetxattr,
2235 .aio_read = smb_full_audit_aio_read,
2236 .aio_write = smb_full_audit_aio_write,
2237 .aio_return_fn = smb_full_audit_aio_return,
2238 .aio_cancel = smb_full_audit_aio_cancel,
2239 .aio_error_fn = smb_full_audit_aio_error,
2240 .aio_fsync = smb_full_audit_aio_fsync,
2241 .aio_suspend = smb_full_audit_aio_suspend,
2242 .aio_force = smb_full_audit_aio_force,
2245 NTSTATUS vfs_full_audit_init(void)
2247 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
2248 "full_audit", &vfs_full_audit_fns);
2250 if (!NT_STATUS_IS_OK(ret))
2251 return ret;
2253 vfs_full_audit_debug_level = debug_add_class("full_audit");
2254 if (vfs_full_audit_debug_level == -1) {
2255 vfs_full_audit_debug_level = DBGC_VFS;
2256 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2257 "class!\n"));
2258 } else {
2259 DEBUG(10, ("vfs_full_audit: Debug class number of "
2260 "'full_audit': %d\n", vfs_full_audit_debug_level));
2263 return ret;