2 * Auditing VFS module for samba. Log selected file operations to syslog
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:
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.
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.
61 #include "system/filesys.h"
62 #include "system/syslog.h"
63 #include "smbd/smbd.h"
64 #include "../librpc/gen_ndr/ndr_netlogon.h"
67 #include "lib/param/loadparm.h"
68 #include "lib/util/bitmap.h"
69 #include "lib/util/tevent_unix.h"
71 static int vfs_full_audit_debug_level
= DBGC_VFS
;
73 struct vfs_full_audit_private_data
{
74 struct bitmap
*success_ops
;
75 struct bitmap
*failure_ops
;
79 #define DBGC_CLASS vfs_full_audit_debug_level
81 typedef enum _vfs_op_type
{
86 SMB_VFS_OP_CONNECT
= 0,
87 SMB_VFS_OP_DISCONNECT
,
91 SMB_VFS_OP_GET_SHADOW_COPY_DATA
,
93 SMB_VFS_OP_FS_CAPABILITIES
,
95 /* Directory operations */
102 SMB_VFS_OP_REWINDDIR
,
106 SMB_VFS_OP_INIT_SEARCH_OP
,
108 /* File operations */
111 SMB_VFS_OP_CREATE_FILE
,
115 SMB_VFS_OP_PREAD_SEND
,
116 SMB_VFS_OP_PREAD_RECV
,
119 SMB_VFS_OP_PWRITE_SEND
,
120 SMB_VFS_OP_PWRITE_RECV
,
126 SMB_VFS_OP_FSYNC_SEND
,
127 SMB_VFS_OP_FSYNC_RECV
,
131 SMB_VFS_OP_GET_ALLOC_SIZE
,
141 SMB_VFS_OP_FTRUNCATE
,
142 SMB_VFS_OP_FALLOCATE
,
144 SMB_VFS_OP_KERNEL_FLOCK
,
145 SMB_VFS_OP_LINUX_SETLEASE
,
152 SMB_VFS_OP_NOTIFY_WATCH
,
154 SMB_VFS_OP_FILE_ID_CREATE
,
155 SMB_VFS_OP_STREAMINFO
,
156 SMB_VFS_OP_GET_REAL_FILENAME
,
157 SMB_VFS_OP_CONNECTPATH
,
158 SMB_VFS_OP_BRL_LOCK_WINDOWS
,
159 SMB_VFS_OP_BRL_UNLOCK_WINDOWS
,
160 SMB_VFS_OP_BRL_CANCEL_WINDOWS
,
161 SMB_VFS_OP_STRICT_LOCK
,
162 SMB_VFS_OP_STRICT_UNLOCK
,
163 SMB_VFS_OP_TRANSLATE_NAME
,
165 /* NT ACL operations. */
167 SMB_VFS_OP_FGET_NT_ACL
,
168 SMB_VFS_OP_GET_NT_ACL
,
169 SMB_VFS_OP_FSET_NT_ACL
,
171 /* POSIX ACL operations. */
173 SMB_VFS_OP_CHMOD_ACL
,
174 SMB_VFS_OP_FCHMOD_ACL
,
176 SMB_VFS_OP_SYS_ACL_GET_FILE
,
177 SMB_VFS_OP_SYS_ACL_GET_FD
,
178 SMB_VFS_OP_SYS_ACL_SET_FILE
,
179 SMB_VFS_OP_SYS_ACL_SET_FD
,
180 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
,
184 SMB_VFS_OP_FGETXATTR
,
185 SMB_VFS_OP_LISTXATTR
,
186 SMB_VFS_OP_FLISTXATTR
,
187 SMB_VFS_OP_REMOVEXATTR
,
188 SMB_VFS_OP_FREMOVEXATTR
,
190 SMB_VFS_OP_FSETXATTR
,
193 SMB_VFS_OP_AIO_FORCE
,
195 /* offline operations */
196 SMB_VFS_OP_IS_OFFLINE
,
197 SMB_VFS_OP_SET_OFFLINE
,
199 /* This should always be last enum value */
204 /* The following array *must* be in the same order as defined in vfs.h */
210 { SMB_VFS_OP_CONNECT
, "connect" },
211 { SMB_VFS_OP_DISCONNECT
, "disconnect" },
212 { SMB_VFS_OP_DISK_FREE
, "disk_free" },
213 { SMB_VFS_OP_GET_QUOTA
, "get_quota" },
214 { SMB_VFS_OP_SET_QUOTA
, "set_quota" },
215 { SMB_VFS_OP_GET_SHADOW_COPY_DATA
, "get_shadow_copy_data" },
216 { SMB_VFS_OP_STATVFS
, "statvfs" },
217 { SMB_VFS_OP_FS_CAPABILITIES
, "fs_capabilities" },
218 { SMB_VFS_OP_OPENDIR
, "opendir" },
219 { SMB_VFS_OP_FDOPENDIR
, "fdopendir" },
220 { SMB_VFS_OP_READDIR
, "readdir" },
221 { SMB_VFS_OP_SEEKDIR
, "seekdir" },
222 { SMB_VFS_OP_TELLDIR
, "telldir" },
223 { SMB_VFS_OP_REWINDDIR
, "rewinddir" },
224 { SMB_VFS_OP_MKDIR
, "mkdir" },
225 { SMB_VFS_OP_RMDIR
, "rmdir" },
226 { SMB_VFS_OP_CLOSEDIR
, "closedir" },
227 { SMB_VFS_OP_INIT_SEARCH_OP
, "init_search_op" },
228 { SMB_VFS_OP_OPEN
, "open" },
229 { SMB_VFS_OP_CREATE_FILE
, "create_file" },
230 { SMB_VFS_OP_CLOSE
, "close" },
231 { SMB_VFS_OP_READ
, "read" },
232 { SMB_VFS_OP_PREAD
, "pread" },
233 { SMB_VFS_OP_PREAD_SEND
, "pread_send" },
234 { SMB_VFS_OP_PREAD_RECV
, "pread_recv" },
235 { SMB_VFS_OP_WRITE
, "write" },
236 { SMB_VFS_OP_PWRITE
, "pwrite" },
237 { SMB_VFS_OP_LSEEK
, "lseek" },
238 { SMB_VFS_OP_SENDFILE
, "sendfile" },
239 { SMB_VFS_OP_RECVFILE
, "recvfile" },
240 { SMB_VFS_OP_RENAME
, "rename" },
241 { SMB_VFS_OP_FSYNC
, "fsync" },
242 { SMB_VFS_OP_FSYNC_SEND
, "fsync_send" },
243 { SMB_VFS_OP_FSYNC_RECV
, "fsync_recv" },
244 { SMB_VFS_OP_STAT
, "stat" },
245 { SMB_VFS_OP_FSTAT
, "fstat" },
246 { SMB_VFS_OP_LSTAT
, "lstat" },
247 { SMB_VFS_OP_GET_ALLOC_SIZE
, "get_alloc_size" },
248 { SMB_VFS_OP_UNLINK
, "unlink" },
249 { SMB_VFS_OP_CHMOD
, "chmod" },
250 { SMB_VFS_OP_FCHMOD
, "fchmod" },
251 { SMB_VFS_OP_CHOWN
, "chown" },
252 { SMB_VFS_OP_FCHOWN
, "fchown" },
253 { SMB_VFS_OP_LCHOWN
, "lchown" },
254 { SMB_VFS_OP_CHDIR
, "chdir" },
255 { SMB_VFS_OP_GETWD
, "getwd" },
256 { SMB_VFS_OP_NTIMES
, "ntimes" },
257 { SMB_VFS_OP_FTRUNCATE
, "ftruncate" },
258 { SMB_VFS_OP_FALLOCATE
,"fallocate" },
259 { SMB_VFS_OP_LOCK
, "lock" },
260 { SMB_VFS_OP_KERNEL_FLOCK
, "kernel_flock" },
261 { SMB_VFS_OP_LINUX_SETLEASE
, "linux_setlease" },
262 { SMB_VFS_OP_GETLOCK
, "getlock" },
263 { SMB_VFS_OP_SYMLINK
, "symlink" },
264 { SMB_VFS_OP_READLINK
, "readlink" },
265 { SMB_VFS_OP_LINK
, "link" },
266 { SMB_VFS_OP_MKNOD
, "mknod" },
267 { SMB_VFS_OP_REALPATH
, "realpath" },
268 { SMB_VFS_OP_NOTIFY_WATCH
, "notify_watch" },
269 { SMB_VFS_OP_CHFLAGS
, "chflags" },
270 { SMB_VFS_OP_FILE_ID_CREATE
, "file_id_create" },
271 { SMB_VFS_OP_STREAMINFO
, "streaminfo" },
272 { SMB_VFS_OP_GET_REAL_FILENAME
, "get_real_filename" },
273 { SMB_VFS_OP_CONNECTPATH
, "connectpath" },
274 { SMB_VFS_OP_BRL_LOCK_WINDOWS
, "brl_lock_windows" },
275 { SMB_VFS_OP_BRL_UNLOCK_WINDOWS
, "brl_unlock_windows" },
276 { SMB_VFS_OP_BRL_CANCEL_WINDOWS
, "brl_cancel_windows" },
277 { SMB_VFS_OP_STRICT_LOCK
, "strict_lock" },
278 { SMB_VFS_OP_STRICT_UNLOCK
, "strict_unlock" },
279 { SMB_VFS_OP_TRANSLATE_NAME
, "translate_name" },
280 { SMB_VFS_OP_FGET_NT_ACL
, "fget_nt_acl" },
281 { SMB_VFS_OP_GET_NT_ACL
, "get_nt_acl" },
282 { SMB_VFS_OP_FSET_NT_ACL
, "fset_nt_acl" },
283 { SMB_VFS_OP_CHMOD_ACL
, "chmod_acl" },
284 { SMB_VFS_OP_FCHMOD_ACL
, "fchmod_acl" },
285 { SMB_VFS_OP_SYS_ACL_GET_FILE
, "sys_acl_get_file" },
286 { SMB_VFS_OP_SYS_ACL_GET_FD
, "sys_acl_get_fd" },
287 { SMB_VFS_OP_SYS_ACL_SET_FILE
, "sys_acl_set_file" },
288 { SMB_VFS_OP_SYS_ACL_SET_FD
, "sys_acl_set_fd" },
289 { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, "sys_acl_delete_def_file" },
290 { SMB_VFS_OP_GETXATTR
, "getxattr" },
291 { SMB_VFS_OP_FGETXATTR
, "fgetxattr" },
292 { SMB_VFS_OP_LISTXATTR
, "listxattr" },
293 { SMB_VFS_OP_FLISTXATTR
, "flistxattr" },
294 { SMB_VFS_OP_REMOVEXATTR
, "removexattr" },
295 { SMB_VFS_OP_FREMOVEXATTR
, "fremovexattr" },
296 { SMB_VFS_OP_SETXATTR
, "setxattr" },
297 { SMB_VFS_OP_FSETXATTR
, "fsetxattr" },
298 { SMB_VFS_OP_AIO_FORCE
, "aio_force" },
299 { SMB_VFS_OP_IS_OFFLINE
, "is_offline" },
300 { SMB_VFS_OP_SET_OFFLINE
, "set_offline" },
301 { SMB_VFS_OP_LAST
, NULL
}
304 static int audit_syslog_facility(vfs_handle_struct
*handle
)
306 static const struct enum_list enum_log_facilities
[] = {
307 { LOG_USER
, "USER" },
308 { LOG_LOCAL0
, "LOCAL0" },
309 { LOG_LOCAL1
, "LOCAL1" },
310 { LOG_LOCAL2
, "LOCAL2" },
311 { LOG_LOCAL3
, "LOCAL3" },
312 { LOG_LOCAL4
, "LOCAL4" },
313 { LOG_LOCAL5
, "LOCAL5" },
314 { LOG_LOCAL6
, "LOCAL6" },
315 { LOG_LOCAL7
, "LOCAL7" },
321 facility
= lp_parm_enum(SNUM(handle
->conn
), "full_audit", "facility", enum_log_facilities
, LOG_USER
);
326 static int audit_syslog_priority(vfs_handle_struct
*handle
)
328 static const struct enum_list enum_log_priorities
[] = {
329 { LOG_EMERG
, "EMERG" },
330 { LOG_ALERT
, "ALERT" },
331 { LOG_CRIT
, "CRIT" },
333 { LOG_WARNING
, "WARNING" },
334 { LOG_NOTICE
, "NOTICE" },
335 { LOG_INFO
, "INFO" },
336 { LOG_DEBUG
, "DEBUG" },
342 priority
= lp_parm_enum(SNUM(handle
->conn
), "full_audit", "priority",
343 enum_log_priorities
, LOG_NOTICE
);
344 if (priority
== -1) {
345 priority
= LOG_WARNING
;
351 static char *audit_prefix(TALLOC_CTX
*ctx
, connection_struct
*conn
)
356 prefix
= talloc_strdup(ctx
,
357 lp_parm_const_string(SNUM(conn
), "full_audit",
362 result
= talloc_sub_advanced(ctx
,
363 lp_servicename(talloc_tos(), SNUM(conn
)),
364 conn
->session_info
->unix_info
->unix_name
,
366 conn
->session_info
->unix_token
->gid
,
367 conn
->session_info
->unix_info
->sanitized_username
,
368 conn
->session_info
->info
->domain_name
,
374 static bool log_success(vfs_handle_struct
*handle
, vfs_op_type op
)
376 struct vfs_full_audit_private_data
*pd
= NULL
;
378 SMB_VFS_HANDLE_GET_DATA(handle
, pd
,
379 struct vfs_full_audit_private_data
,
382 if (pd
->success_ops
== NULL
) {
386 return bitmap_query(pd
->success_ops
, op
);
389 static bool log_failure(vfs_handle_struct
*handle
, vfs_op_type op
)
391 struct vfs_full_audit_private_data
*pd
= NULL
;
393 SMB_VFS_HANDLE_GET_DATA(handle
, pd
,
394 struct vfs_full_audit_private_data
,
397 if (pd
->failure_ops
== NULL
)
400 return bitmap_query(pd
->failure_ops
, op
);
403 static struct bitmap
*init_bitmap(TALLOC_CTX
*mem_ctx
, const char **ops
)
411 bm
= bitmap_talloc(mem_ctx
, SMB_VFS_OP_LAST
);
413 DEBUG(0, ("Could not alloc bitmap -- "
414 "defaulting to logging everything\n"));
418 for (; *ops
!= NULL
; ops
+= 1) {
423 if (strequal(*ops
, "all")) {
424 for (i
=0; i
<SMB_VFS_OP_LAST
; i
++) {
430 if (strequal(*ops
, "none")) {
440 for (i
=0; i
<SMB_VFS_OP_LAST
; i
++) {
441 if (vfs_op_names
[i
].name
== NULL
) {
442 smb_panic("vfs_full_audit.c: name table not "
443 "in sync with vfs.h\n");
445 if (strequal(op
, vfs_op_names
[i
].name
)) {
454 if (i
== SMB_VFS_OP_LAST
) {
455 DEBUG(0, ("Could not find opname %s, logging all\n",
464 static const char *audit_opname(vfs_op_type op
)
466 if (op
>= SMB_VFS_OP_LAST
)
467 return "INVALID VFS OP";
468 return vfs_op_names
[op
].name
;
471 static TALLOC_CTX
*tmp_do_log_ctx
;
473 * Get us a temporary talloc context usable just for DEBUG arguments
475 static TALLOC_CTX
*do_log_ctx(void)
477 if (tmp_do_log_ctx
== NULL
) {
478 tmp_do_log_ctx
= talloc_named_const(NULL
, 0, "do_log_ctx");
480 return tmp_do_log_ctx
;
483 static void do_log(vfs_op_type op
, bool success
, vfs_handle_struct
*handle
,
484 const char *format
, ...)
487 char *audit_pre
= NULL
;
492 if (success
&& (!log_success(handle
, op
)))
495 if (!success
&& (!log_failure(handle
, op
)))
499 fstrcpy(err_msg
, "ok");
501 fstr_sprintf(err_msg
, "fail (%s)", strerror(errno
));
503 va_start(ap
, format
);
504 op_msg
= talloc_vasprintf(talloc_tos(), format
, ap
);
512 * Specify the facility to interoperate with other syslog callers
513 * (smbd for example).
515 priority
= audit_syslog_priority(handle
) |
516 audit_syslog_facility(handle
);
518 audit_pre
= audit_prefix(talloc_tos(), handle
->conn
);
519 syslog(priority
, "%s|%s|%s|%s\n",
520 audit_pre
? audit_pre
: "",
521 audit_opname(op
), err_msg
, op_msg
);
524 TALLOC_FREE(audit_pre
);
526 TALLOC_FREE(tmp_do_log_ctx
);
530 * Return a string using the do_log_ctx()
532 static const char *smb_fname_str_do_log(const struct smb_filename
*smb_fname
)
537 if (smb_fname
== NULL
) {
540 status
= get_full_smb_filename(do_log_ctx(), smb_fname
, &fname
);
541 if (!NT_STATUS_IS_OK(status
)) {
548 * Return an fsp debug string using the do_log_ctx()
550 static const char *fsp_str_do_log(const struct files_struct
*fsp
)
552 return smb_fname_str_do_log(fsp
->fsp_name
);
555 /* Implementation of vfs_ops. Pass everything on to the default
556 operation but log event first. */
558 static int smb_full_audit_connect(vfs_handle_struct
*handle
,
559 const char *svc
, const char *user
)
562 struct vfs_full_audit_private_data
*pd
= NULL
;
564 result
= SMB_VFS_NEXT_CONNECT(handle
, svc
, user
);
569 pd
= talloc_zero(handle
, struct vfs_full_audit_private_data
);
571 SMB_VFS_NEXT_DISCONNECT(handle
);
576 openlog("smbd_audit", 0, audit_syslog_facility(handle
));
579 pd
->success_ops
= init_bitmap(
580 pd
, lp_parm_string_list(SNUM(handle
->conn
), "full_audit",
582 pd
->failure_ops
= init_bitmap(
583 pd
, lp_parm_string_list(SNUM(handle
->conn
), "full_audit",
586 /* Store the private data. */
587 SMB_VFS_HANDLE_SET_DATA(handle
, pd
, NULL
,
588 struct vfs_full_audit_private_data
, return -1);
590 do_log(SMB_VFS_OP_CONNECT
, True
, handle
,
596 static void smb_full_audit_disconnect(vfs_handle_struct
*handle
)
598 SMB_VFS_NEXT_DISCONNECT(handle
);
600 do_log(SMB_VFS_OP_DISCONNECT
, True
, handle
,
601 "%s", lp_servicename(talloc_tos(), SNUM(handle
->conn
)));
603 /* The bitmaps will be disconnected when the private
607 static uint64_t smb_full_audit_disk_free(vfs_handle_struct
*handle
,
609 bool small_query
, uint64_t *bsize
,
610 uint64_t *dfree
, uint64_t *dsize
)
614 result
= SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
, bsize
,
617 /* Don't have a reasonable notion of failure here */
619 do_log(SMB_VFS_OP_DISK_FREE
, True
, handle
, "%s", path
);
624 static int smb_full_audit_get_quota(struct vfs_handle_struct
*handle
,
625 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
630 result
= SMB_VFS_NEXT_GET_QUOTA(handle
, qtype
, id
, qt
);
632 do_log(SMB_VFS_OP_GET_QUOTA
, (result
>= 0), handle
, "");
638 static int smb_full_audit_set_quota(struct vfs_handle_struct
*handle
,
639 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
644 result
= SMB_VFS_NEXT_SET_QUOTA(handle
, qtype
, id
, qt
);
646 do_log(SMB_VFS_OP_SET_QUOTA
, (result
>= 0), handle
, "");
651 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct
*handle
,
652 struct files_struct
*fsp
,
653 struct shadow_copy_data
*shadow_copy_data
,
658 result
= SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle
, fsp
, shadow_copy_data
, labels
);
660 do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA
, (result
>= 0), handle
, "");
665 static int smb_full_audit_statvfs(struct vfs_handle_struct
*handle
,
667 struct vfs_statvfs_struct
*statbuf
)
671 result
= SMB_VFS_NEXT_STATVFS(handle
, path
, statbuf
);
673 do_log(SMB_VFS_OP_STATVFS
, (result
>= 0), handle
, "");
678 static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct
*handle
, enum timestamp_set_resolution
*p_ts_res
)
682 result
= SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
);
684 do_log(SMB_VFS_OP_FS_CAPABILITIES
, true, handle
, "");
689 static DIR *smb_full_audit_opendir(vfs_handle_struct
*handle
,
690 const char *fname
, const char *mask
, uint32 attr
)
694 result
= SMB_VFS_NEXT_OPENDIR(handle
, fname
, mask
, attr
);
696 do_log(SMB_VFS_OP_OPENDIR
, (result
!= NULL
), handle
, "%s", fname
);
701 static DIR *smb_full_audit_fdopendir(vfs_handle_struct
*handle
,
702 files_struct
*fsp
, const char *mask
, uint32 attr
)
706 result
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
708 do_log(SMB_VFS_OP_FDOPENDIR
, (result
!= NULL
), handle
, "%s",
709 fsp_str_do_log(fsp
));
714 static struct dirent
*smb_full_audit_readdir(vfs_handle_struct
*handle
,
715 DIR *dirp
, SMB_STRUCT_STAT
*sbuf
)
717 struct dirent
*result
;
719 result
= SMB_VFS_NEXT_READDIR(handle
, dirp
, sbuf
);
721 /* This operation has no reasonable error condition
722 * (End of dir is also failure), so always succeed.
724 do_log(SMB_VFS_OP_READDIR
, True
, handle
, "");
729 static void smb_full_audit_seekdir(vfs_handle_struct
*handle
,
730 DIR *dirp
, long offset
)
732 SMB_VFS_NEXT_SEEKDIR(handle
, dirp
, offset
);
734 do_log(SMB_VFS_OP_SEEKDIR
, True
, handle
, "");
737 static long smb_full_audit_telldir(vfs_handle_struct
*handle
,
742 result
= SMB_VFS_NEXT_TELLDIR(handle
, dirp
);
744 do_log(SMB_VFS_OP_TELLDIR
, True
, handle
, "");
749 static void smb_full_audit_rewinddir(vfs_handle_struct
*handle
,
752 SMB_VFS_NEXT_REWINDDIR(handle
, dirp
);
754 do_log(SMB_VFS_OP_REWINDDIR
, True
, handle
, "");
757 static int smb_full_audit_mkdir(vfs_handle_struct
*handle
,
758 const char *path
, mode_t mode
)
762 result
= SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
764 do_log(SMB_VFS_OP_MKDIR
, (result
>= 0), handle
, "%s", path
);
769 static int smb_full_audit_rmdir(vfs_handle_struct
*handle
,
774 result
= SMB_VFS_NEXT_RMDIR(handle
, path
);
776 do_log(SMB_VFS_OP_RMDIR
, (result
>= 0), handle
, "%s", path
);
781 static int smb_full_audit_closedir(vfs_handle_struct
*handle
,
786 result
= SMB_VFS_NEXT_CLOSEDIR(handle
, dirp
);
788 do_log(SMB_VFS_OP_CLOSEDIR
, (result
>= 0), handle
, "");
793 static void smb_full_audit_init_search_op(vfs_handle_struct
*handle
,
796 SMB_VFS_NEXT_INIT_SEARCH_OP(handle
, dirp
);
798 do_log(SMB_VFS_OP_INIT_SEARCH_OP
, True
, handle
, "");
801 static int smb_full_audit_open(vfs_handle_struct
*handle
,
802 struct smb_filename
*smb_fname
,
803 files_struct
*fsp
, int flags
, mode_t mode
)
807 result
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
809 do_log(SMB_VFS_OP_OPEN
, (result
>= 0), handle
, "%s|%s",
810 ((flags
& O_WRONLY
) || (flags
& O_RDWR
))?"w":"r",
811 smb_fname_str_do_log(smb_fname
));
816 static NTSTATUS
smb_full_audit_create_file(vfs_handle_struct
*handle
,
817 struct smb_request
*req
,
818 uint16_t root_dir_fid
,
819 struct smb_filename
*smb_fname
,
820 uint32_t access_mask
,
821 uint32_t share_access
,
822 uint32_t create_disposition
,
823 uint32_t create_options
,
824 uint32_t file_attributes
,
825 uint32_t oplock_request
,
826 uint64_t allocation_size
,
827 uint32_t private_flags
,
828 struct security_descriptor
*sd
,
829 struct ea_list
*ea_list
,
830 files_struct
**result_fsp
,
834 const char* str_create_disposition
;
836 switch (create_disposition
) {
838 str_create_disposition
= "supersede";
840 case FILE_OVERWRITE_IF
:
841 str_create_disposition
= "overwrite_if";
844 str_create_disposition
= "open";
847 str_create_disposition
= "overwrite";
850 str_create_disposition
= "create";
853 str_create_disposition
= "open_if";
856 str_create_disposition
= "unknown";
859 result
= SMB_VFS_NEXT_CREATE_FILE(
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 */
873 ea_list
, /* ea_list */
874 result_fsp
, /* result */
877 do_log(SMB_VFS_OP_CREATE_FILE
, (NT_STATUS_IS_OK(result
)), handle
,
878 "0x%x|%s|%s|%s", access_mask
,
879 create_options
& FILE_DIRECTORY_FILE
? "dir" : "file",
880 str_create_disposition
, smb_fname_str_do_log(smb_fname
));
885 static int smb_full_audit_close(vfs_handle_struct
*handle
, files_struct
*fsp
)
889 result
= SMB_VFS_NEXT_CLOSE(handle
, fsp
);
891 do_log(SMB_VFS_OP_CLOSE
, (result
>= 0), handle
, "%s",
892 fsp_str_do_log(fsp
));
897 static ssize_t
smb_full_audit_read(vfs_handle_struct
*handle
, files_struct
*fsp
,
898 void *data
, size_t n
)
902 result
= SMB_VFS_NEXT_READ(handle
, fsp
, data
, n
);
904 do_log(SMB_VFS_OP_READ
, (result
>= 0), handle
, "%s",
905 fsp_str_do_log(fsp
));
910 static ssize_t
smb_full_audit_pread(vfs_handle_struct
*handle
, files_struct
*fsp
,
911 void *data
, size_t n
, off_t offset
)
915 result
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
917 do_log(SMB_VFS_OP_PREAD
, (result
>= 0), handle
, "%s",
918 fsp_str_do_log(fsp
));
923 struct smb_full_audit_pread_state
{
924 vfs_handle_struct
*handle
;
930 static void smb_full_audit_pread_done(struct tevent_req
*subreq
);
932 static struct tevent_req
*smb_full_audit_pread_send(
933 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
934 struct tevent_context
*ev
, struct files_struct
*fsp
,
935 void *data
, size_t n
, off_t offset
)
937 struct tevent_req
*req
, *subreq
;
938 struct smb_full_audit_pread_state
*state
;
940 req
= tevent_req_create(mem_ctx
, &state
,
941 struct smb_full_audit_pread_state
);
943 do_log(SMB_VFS_OP_PREAD_SEND
, false, handle
, "%s",
944 fsp_str_do_log(fsp
));
947 state
->handle
= handle
;
950 subreq
= SMB_VFS_NEXT_PREAD_SEND(state
, ev
, handle
, fsp
, data
,
952 if (tevent_req_nomem(subreq
, req
)) {
953 do_log(SMB_VFS_OP_PREAD_SEND
, false, handle
, "%s",
954 fsp_str_do_log(fsp
));
955 return tevent_req_post(req
, ev
);
957 tevent_req_set_callback(subreq
, smb_full_audit_pread_done
, req
);
959 do_log(SMB_VFS_OP_PREAD_SEND
, true, handle
, "%s", fsp_str_do_log(fsp
));
963 static void smb_full_audit_pread_done(struct tevent_req
*subreq
)
965 struct tevent_req
*req
= tevent_req_callback_data(
966 subreq
, struct tevent_req
);
967 struct smb_full_audit_pread_state
*state
= tevent_req_data(
968 req
, struct smb_full_audit_pread_state
);
970 state
->ret
= SMB_VFS_PREAD_RECV(subreq
, &state
->err
);
972 tevent_req_done(req
);
975 static ssize_t
smb_full_audit_pread_recv(struct tevent_req
*req
, int *err
)
977 struct smb_full_audit_pread_state
*state
= tevent_req_data(
978 req
, struct smb_full_audit_pread_state
);
980 if (tevent_req_is_unix_error(req
, err
)) {
981 do_log(SMB_VFS_OP_PREAD_RECV
, false, state
->handle
, "%s",
982 fsp_str_do_log(state
->fsp
));
986 do_log(SMB_VFS_OP_PREAD_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
987 fsp_str_do_log(state
->fsp
));
993 static ssize_t
smb_full_audit_write(vfs_handle_struct
*handle
, files_struct
*fsp
,
994 const void *data
, size_t n
)
998 result
= SMB_VFS_NEXT_WRITE(handle
, fsp
, data
, n
);
1000 do_log(SMB_VFS_OP_WRITE
, (result
>= 0), handle
, "%s",
1001 fsp_str_do_log(fsp
));
1006 static ssize_t
smb_full_audit_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
,
1007 const void *data
, size_t n
,
1012 result
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
1014 do_log(SMB_VFS_OP_PWRITE
, (result
>= 0), handle
, "%s",
1015 fsp_str_do_log(fsp
));
1020 struct smb_full_audit_pwrite_state
{
1021 vfs_handle_struct
*handle
;
1027 static void smb_full_audit_pwrite_done(struct tevent_req
*subreq
);
1029 static struct tevent_req
*smb_full_audit_pwrite_send(
1030 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
1031 struct tevent_context
*ev
, struct files_struct
*fsp
,
1032 const void *data
, size_t n
, off_t offset
)
1034 struct tevent_req
*req
, *subreq
;
1035 struct smb_full_audit_pwrite_state
*state
;
1037 req
= tevent_req_create(mem_ctx
, &state
,
1038 struct smb_full_audit_pwrite_state
);
1040 do_log(SMB_VFS_OP_PWRITE_SEND
, false, handle
, "%s",
1041 fsp_str_do_log(fsp
));
1044 state
->handle
= handle
;
1047 subreq
= SMB_VFS_NEXT_PWRITE_SEND(state
, ev
, handle
, fsp
, data
,
1049 if (tevent_req_nomem(subreq
, req
)) {
1050 do_log(SMB_VFS_OP_PWRITE_SEND
, false, handle
, "%s",
1051 fsp_str_do_log(fsp
));
1052 return tevent_req_post(req
, ev
);
1054 tevent_req_set_callback(subreq
, smb_full_audit_pwrite_done
, req
);
1056 do_log(SMB_VFS_OP_PWRITE_SEND
, true, handle
, "%s",
1057 fsp_str_do_log(fsp
));
1061 static void smb_full_audit_pwrite_done(struct tevent_req
*subreq
)
1063 struct tevent_req
*req
= tevent_req_callback_data(
1064 subreq
, struct tevent_req
);
1065 struct smb_full_audit_pwrite_state
*state
= tevent_req_data(
1066 req
, struct smb_full_audit_pwrite_state
);
1068 state
->ret
= SMB_VFS_PWRITE_RECV(subreq
, &state
->err
);
1069 TALLOC_FREE(subreq
);
1070 tevent_req_done(req
);
1073 static ssize_t
smb_full_audit_pwrite_recv(struct tevent_req
*req
, int *err
)
1075 struct smb_full_audit_pwrite_state
*state
= tevent_req_data(
1076 req
, struct smb_full_audit_pwrite_state
);
1078 if (tevent_req_is_unix_error(req
, err
)) {
1079 do_log(SMB_VFS_OP_PWRITE_RECV
, false, state
->handle
, "%s",
1080 fsp_str_do_log(state
->fsp
));
1084 do_log(SMB_VFS_OP_PWRITE_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
1085 fsp_str_do_log(state
->fsp
));
1091 static off_t
smb_full_audit_lseek(vfs_handle_struct
*handle
, files_struct
*fsp
,
1092 off_t offset
, int whence
)
1096 result
= SMB_VFS_NEXT_LSEEK(handle
, fsp
, offset
, whence
);
1098 do_log(SMB_VFS_OP_LSEEK
, (result
!= (ssize_t
)-1), handle
,
1099 "%s", fsp_str_do_log(fsp
));
1104 static ssize_t
smb_full_audit_sendfile(vfs_handle_struct
*handle
, int tofd
,
1105 files_struct
*fromfsp
,
1106 const DATA_BLOB
*hdr
, off_t offset
,
1111 result
= SMB_VFS_NEXT_SENDFILE(handle
, tofd
, fromfsp
, hdr
, offset
, n
);
1113 do_log(SMB_VFS_OP_SENDFILE
, (result
>= 0), handle
,
1114 "%s", fsp_str_do_log(fromfsp
));
1119 static ssize_t
smb_full_audit_recvfile(vfs_handle_struct
*handle
, int fromfd
,
1120 files_struct
*tofsp
,
1126 result
= SMB_VFS_NEXT_RECVFILE(handle
, fromfd
, tofsp
, offset
, n
);
1128 do_log(SMB_VFS_OP_RECVFILE
, (result
>= 0), handle
,
1129 "%s", fsp_str_do_log(tofsp
));
1134 static int smb_full_audit_rename(vfs_handle_struct
*handle
,
1135 const struct smb_filename
*smb_fname_src
,
1136 const struct smb_filename
*smb_fname_dst
)
1140 result
= SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
, smb_fname_dst
);
1142 do_log(SMB_VFS_OP_RENAME
, (result
>= 0), handle
, "%s|%s",
1143 smb_fname_str_do_log(smb_fname_src
),
1144 smb_fname_str_do_log(smb_fname_dst
));
1149 static int smb_full_audit_fsync(vfs_handle_struct
*handle
, files_struct
*fsp
)
1153 result
= SMB_VFS_NEXT_FSYNC(handle
, fsp
);
1155 do_log(SMB_VFS_OP_FSYNC
, (result
>= 0), handle
, "%s",
1156 fsp_str_do_log(fsp
));
1161 struct smb_full_audit_fsync_state
{
1162 vfs_handle_struct
*handle
;
1168 static void smb_full_audit_fsync_done(struct tevent_req
*subreq
);
1170 static struct tevent_req
*smb_full_audit_fsync_send(
1171 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
1172 struct tevent_context
*ev
, struct files_struct
*fsp
)
1174 struct tevent_req
*req
, *subreq
;
1175 struct smb_full_audit_fsync_state
*state
;
1177 req
= tevent_req_create(mem_ctx
, &state
,
1178 struct smb_full_audit_fsync_state
);
1180 do_log(SMB_VFS_OP_FSYNC_SEND
, false, handle
, "%s",
1181 fsp_str_do_log(fsp
));
1184 state
->handle
= handle
;
1187 subreq
= SMB_VFS_NEXT_FSYNC_SEND(state
, ev
, handle
, fsp
);
1188 if (tevent_req_nomem(subreq
, req
)) {
1189 do_log(SMB_VFS_OP_FSYNC_SEND
, false, handle
, "%s",
1190 fsp_str_do_log(fsp
));
1191 return tevent_req_post(req
, ev
);
1193 tevent_req_set_callback(subreq
, smb_full_audit_fsync_done
, req
);
1195 do_log(SMB_VFS_OP_FSYNC_SEND
, true, handle
, "%s", fsp_str_do_log(fsp
));
1199 static void smb_full_audit_fsync_done(struct tevent_req
*subreq
)
1201 struct tevent_req
*req
= tevent_req_callback_data(
1202 subreq
, struct tevent_req
);
1203 struct smb_full_audit_fsync_state
*state
= tevent_req_data(
1204 req
, struct smb_full_audit_fsync_state
);
1206 state
->ret
= SMB_VFS_FSYNC_RECV(subreq
, &state
->err
);
1207 TALLOC_FREE(subreq
);
1208 tevent_req_done(req
);
1211 static int smb_full_audit_fsync_recv(struct tevent_req
*req
, int *err
)
1213 struct smb_full_audit_fsync_state
*state
= tevent_req_data(
1214 req
, struct smb_full_audit_fsync_state
);
1216 if (tevent_req_is_unix_error(req
, err
)) {
1217 do_log(SMB_VFS_OP_FSYNC_RECV
, false, state
->handle
, "%s",
1218 fsp_str_do_log(state
->fsp
));
1222 do_log(SMB_VFS_OP_FSYNC_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
1223 fsp_str_do_log(state
->fsp
));
1229 static int smb_full_audit_stat(vfs_handle_struct
*handle
,
1230 struct smb_filename
*smb_fname
)
1234 result
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1236 do_log(SMB_VFS_OP_STAT
, (result
>= 0), handle
, "%s",
1237 smb_fname_str_do_log(smb_fname
));
1242 static int smb_full_audit_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
,
1243 SMB_STRUCT_STAT
*sbuf
)
1247 result
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1249 do_log(SMB_VFS_OP_FSTAT
, (result
>= 0), handle
, "%s",
1250 fsp_str_do_log(fsp
));
1255 static int smb_full_audit_lstat(vfs_handle_struct
*handle
,
1256 struct smb_filename
*smb_fname
)
1260 result
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1262 do_log(SMB_VFS_OP_LSTAT
, (result
>= 0), handle
, "%s",
1263 smb_fname_str_do_log(smb_fname
));
1268 static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct
*handle
,
1269 files_struct
*fsp
, const SMB_STRUCT_STAT
*sbuf
)
1273 result
= SMB_VFS_NEXT_GET_ALLOC_SIZE(handle
, fsp
, sbuf
);
1275 do_log(SMB_VFS_OP_GET_ALLOC_SIZE
, (result
!= (uint64_t)-1), handle
,
1281 static int smb_full_audit_unlink(vfs_handle_struct
*handle
,
1282 const struct smb_filename
*smb_fname
)
1286 result
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
1288 do_log(SMB_VFS_OP_UNLINK
, (result
>= 0), handle
, "%s",
1289 smb_fname_str_do_log(smb_fname
));
1294 static int smb_full_audit_chmod(vfs_handle_struct
*handle
,
1295 const char *path
, mode_t mode
)
1299 result
= SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1301 do_log(SMB_VFS_OP_CHMOD
, (result
>= 0), handle
, "%s|%o", path
, mode
);
1306 static int smb_full_audit_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
,
1311 result
= SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
1313 do_log(SMB_VFS_OP_FCHMOD
, (result
>= 0), handle
,
1314 "%s|%o", fsp_str_do_log(fsp
), mode
);
1319 static int smb_full_audit_chown(vfs_handle_struct
*handle
,
1320 const char *path
, uid_t uid
, gid_t gid
)
1324 result
= SMB_VFS_NEXT_CHOWN(handle
, path
, uid
, gid
);
1326 do_log(SMB_VFS_OP_CHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1327 path
, (long int)uid
, (long int)gid
);
1332 static int smb_full_audit_fchown(vfs_handle_struct
*handle
, files_struct
*fsp
,
1333 uid_t uid
, gid_t gid
)
1337 result
= SMB_VFS_NEXT_FCHOWN(handle
, fsp
, uid
, gid
);
1339 do_log(SMB_VFS_OP_FCHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1340 fsp_str_do_log(fsp
), (long int)uid
, (long int)gid
);
1345 static int smb_full_audit_lchown(vfs_handle_struct
*handle
,
1346 const char *path
, uid_t uid
, gid_t gid
)
1350 result
= SMB_VFS_NEXT_LCHOWN(handle
, path
, uid
, gid
);
1352 do_log(SMB_VFS_OP_LCHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1353 path
, (long int)uid
, (long int)gid
);
1358 static int smb_full_audit_chdir(vfs_handle_struct
*handle
,
1363 result
= SMB_VFS_NEXT_CHDIR(handle
, path
);
1365 do_log(SMB_VFS_OP_CHDIR
, (result
>= 0), handle
, "chdir|%s", path
);
1370 static char *smb_full_audit_getwd(vfs_handle_struct
*handle
)
1374 result
= SMB_VFS_NEXT_GETWD(handle
);
1376 do_log(SMB_VFS_OP_GETWD
, (result
!= NULL
), handle
, "%s",
1377 result
== NULL
? "" : result
);
1382 static int smb_full_audit_ntimes(vfs_handle_struct
*handle
,
1383 const struct smb_filename
*smb_fname
,
1384 struct smb_file_time
*ft
)
1388 result
= SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1390 do_log(SMB_VFS_OP_NTIMES
, (result
>= 0), handle
, "%s",
1391 smb_fname_str_do_log(smb_fname
));
1396 static int smb_full_audit_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1401 result
= SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1403 do_log(SMB_VFS_OP_FTRUNCATE
, (result
>= 0), handle
,
1404 "%s", fsp_str_do_log(fsp
));
1409 static int smb_full_audit_fallocate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1410 enum vfs_fallocate_mode mode
,
1416 result
= SMB_VFS_NEXT_FALLOCATE(handle
, fsp
, mode
, offset
, len
);
1418 do_log(SMB_VFS_OP_FALLOCATE
, (result
>= 0), handle
,
1419 "%s", fsp_str_do_log(fsp
));
1424 static bool smb_full_audit_lock(vfs_handle_struct
*handle
, files_struct
*fsp
,
1425 int op
, off_t offset
, off_t count
, int type
)
1429 result
= SMB_VFS_NEXT_LOCK(handle
, fsp
, op
, offset
, count
, type
);
1431 do_log(SMB_VFS_OP_LOCK
, result
, handle
, "%s", fsp_str_do_log(fsp
));
1436 static int smb_full_audit_kernel_flock(struct vfs_handle_struct
*handle
,
1437 struct files_struct
*fsp
,
1438 uint32 share_mode
, uint32 access_mask
)
1442 result
= SMB_VFS_NEXT_KERNEL_FLOCK(handle
, fsp
, share_mode
, access_mask
);
1444 do_log(SMB_VFS_OP_KERNEL_FLOCK
, (result
>= 0), handle
, "%s",
1445 fsp_str_do_log(fsp
));
1450 static int smb_full_audit_linux_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
1455 result
= SMB_VFS_NEXT_LINUX_SETLEASE(handle
, fsp
, leasetype
);
1457 do_log(SMB_VFS_OP_LINUX_SETLEASE
, (result
>= 0), handle
, "%s",
1458 fsp_str_do_log(fsp
));
1463 static bool smb_full_audit_getlock(vfs_handle_struct
*handle
, files_struct
*fsp
,
1464 off_t
*poffset
, off_t
*pcount
, int *ptype
, pid_t
*ppid
)
1468 result
= SMB_VFS_NEXT_GETLOCK(handle
, fsp
, poffset
, pcount
, ptype
, ppid
);
1470 do_log(SMB_VFS_OP_GETLOCK
, result
, handle
, "%s", fsp_str_do_log(fsp
));
1475 static int smb_full_audit_symlink(vfs_handle_struct
*handle
,
1476 const char *oldpath
, const char *newpath
)
1480 result
= SMB_VFS_NEXT_SYMLINK(handle
, oldpath
, newpath
);
1482 do_log(SMB_VFS_OP_SYMLINK
, (result
>= 0), handle
,
1483 "%s|%s", oldpath
, newpath
);
1488 static int smb_full_audit_readlink(vfs_handle_struct
*handle
,
1489 const char *path
, char *buf
, size_t bufsiz
)
1493 result
= SMB_VFS_NEXT_READLINK(handle
, path
, buf
, bufsiz
);
1495 do_log(SMB_VFS_OP_READLINK
, (result
>= 0), handle
, "%s", path
);
1500 static int smb_full_audit_link(vfs_handle_struct
*handle
,
1501 const char *oldpath
, const char *newpath
)
1505 result
= SMB_VFS_NEXT_LINK(handle
, oldpath
, newpath
);
1507 do_log(SMB_VFS_OP_LINK
, (result
>= 0), handle
,
1508 "%s|%s", oldpath
, newpath
);
1513 static int smb_full_audit_mknod(vfs_handle_struct
*handle
,
1514 const char *pathname
, mode_t mode
, SMB_DEV_T dev
)
1518 result
= SMB_VFS_NEXT_MKNOD(handle
, pathname
, mode
, dev
);
1520 do_log(SMB_VFS_OP_MKNOD
, (result
>= 0), handle
, "%s", pathname
);
1525 static char *smb_full_audit_realpath(vfs_handle_struct
*handle
,
1530 result
= SMB_VFS_NEXT_REALPATH(handle
, path
);
1532 do_log(SMB_VFS_OP_REALPATH
, (result
!= NULL
), handle
, "%s", path
);
1537 static NTSTATUS
smb_full_audit_notify_watch(struct vfs_handle_struct
*handle
,
1538 struct sys_notify_context
*ctx
,
1541 uint32_t *subdir_filter
,
1542 void (*callback
)(struct sys_notify_context
*ctx
,
1544 struct notify_event
*ev
),
1545 void *private_data
, void *handle_p
)
1549 result
= SMB_VFS_NEXT_NOTIFY_WATCH(handle
, ctx
, path
,
1550 filter
, subdir_filter
, callback
,
1551 private_data
, handle_p
);
1553 do_log(SMB_VFS_OP_NOTIFY_WATCH
, NT_STATUS_IS_OK(result
), handle
, "");
1558 static int smb_full_audit_chflags(vfs_handle_struct
*handle
,
1559 const char *path
, unsigned int flags
)
1563 result
= SMB_VFS_NEXT_CHFLAGS(handle
, path
, flags
);
1565 do_log(SMB_VFS_OP_CHFLAGS
, (result
!= 0), handle
, "%s", path
);
1570 static struct file_id
smb_full_audit_file_id_create(struct vfs_handle_struct
*handle
,
1571 const SMB_STRUCT_STAT
*sbuf
)
1573 struct file_id id_zero
;
1574 struct file_id result
;
1576 ZERO_STRUCT(id_zero
);
1578 result
= SMB_VFS_NEXT_FILE_ID_CREATE(handle
, sbuf
);
1580 do_log(SMB_VFS_OP_FILE_ID_CREATE
,
1581 !file_id_equal(&id_zero
, &result
),
1582 handle
, "%s", file_id_string_tos(&result
));
1587 static NTSTATUS
smb_full_audit_streaminfo(vfs_handle_struct
*handle
,
1588 struct files_struct
*fsp
,
1590 TALLOC_CTX
*mem_ctx
,
1591 unsigned int *pnum_streams
,
1592 struct stream_struct
**pstreams
)
1596 result
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, fname
, mem_ctx
,
1597 pnum_streams
, pstreams
);
1599 do_log(SMB_VFS_OP_STREAMINFO
, NT_STATUS_IS_OK(result
), handle
,
1605 static int smb_full_audit_get_real_filename(struct vfs_handle_struct
*handle
,
1608 TALLOC_CTX
*mem_ctx
,
1613 result
= SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
, mem_ctx
,
1616 do_log(SMB_VFS_OP_GET_REAL_FILENAME
, (result
== 0), handle
,
1617 "%s/%s->%s", path
, name
, (result
== 0) ? "" : *found_name
);
1622 static const char *smb_full_audit_connectpath(vfs_handle_struct
*handle
,
1627 result
= SMB_VFS_NEXT_CONNECTPATH(handle
, fname
);
1629 do_log(SMB_VFS_OP_CONNECTPATH
, result
!= NULL
, handle
,
1635 static NTSTATUS
smb_full_audit_brl_lock_windows(struct vfs_handle_struct
*handle
,
1636 struct byte_range_lock
*br_lck
,
1637 struct lock_struct
*plock
,
1639 struct blocking_lock_record
*blr
)
1643 result
= SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle
, br_lck
, plock
,
1644 blocking_lock
, blr
);
1646 do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS
, NT_STATUS_IS_OK(result
), handle
,
1647 "%s:%llu-%llu. type=%d. blocking=%d", fsp_str_do_log(br_lck
->fsp
),
1648 plock
->start
, plock
->size
, plock
->lock_type
, blocking_lock
);
1653 static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct
*handle
,
1654 struct messaging_context
*msg_ctx
,
1655 struct byte_range_lock
*br_lck
,
1656 const struct lock_struct
*plock
)
1660 result
= SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle
, msg_ctx
, br_lck
,
1663 do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS
, (result
== 0), handle
,
1664 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck
->fsp
), plock
->start
,
1665 plock
->size
, plock
->lock_type
);
1670 static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct
*handle
,
1671 struct byte_range_lock
*br_lck
,
1672 struct lock_struct
*plock
,
1673 struct blocking_lock_record
*blr
)
1677 result
= SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle
, br_lck
, plock
, blr
);
1679 do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS
, (result
== 0), handle
,
1680 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck
->fsp
), plock
->start
,
1686 static bool smb_full_audit_strict_lock(struct vfs_handle_struct
*handle
,
1687 struct files_struct
*fsp
,
1688 struct lock_struct
*plock
)
1692 result
= SMB_VFS_NEXT_STRICT_LOCK(handle
, fsp
, plock
);
1694 do_log(SMB_VFS_OP_STRICT_LOCK
, result
, handle
,
1695 "%s:%llu-%llu:%d", fsp_str_do_log(fsp
), plock
->start
,
1701 static void smb_full_audit_strict_unlock(struct vfs_handle_struct
*handle
,
1702 struct files_struct
*fsp
,
1703 struct lock_struct
*plock
)
1705 SMB_VFS_NEXT_STRICT_UNLOCK(handle
, fsp
, plock
);
1707 do_log(SMB_VFS_OP_STRICT_UNLOCK
, true, handle
,
1708 "%s:%llu-%llu:%d", fsp_str_do_log(fsp
), plock
->start
,
1712 static NTSTATUS
smb_full_audit_translate_name(struct vfs_handle_struct
*handle
,
1714 enum vfs_translate_direction direction
,
1715 TALLOC_CTX
*mem_ctx
,
1720 result
= SMB_VFS_NEXT_TRANSLATE_NAME(handle
, name
, direction
, mem_ctx
,
1723 do_log(SMB_VFS_OP_TRANSLATE_NAME
, NT_STATUS_IS_OK(result
), handle
, "");
1728 static NTSTATUS
smb_full_audit_fget_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1729 uint32 security_info
,
1730 struct security_descriptor
**ppdesc
)
1734 result
= SMB_VFS_NEXT_FGET_NT_ACL(handle
, fsp
, security_info
, ppdesc
);
1736 do_log(SMB_VFS_OP_FGET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1737 "%s", fsp_str_do_log(fsp
));
1742 static NTSTATUS
smb_full_audit_get_nt_acl(vfs_handle_struct
*handle
,
1744 uint32 security_info
,
1745 struct security_descriptor
**ppdesc
)
1749 result
= SMB_VFS_NEXT_GET_NT_ACL(handle
, name
, security_info
, ppdesc
);
1751 do_log(SMB_VFS_OP_GET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1757 static NTSTATUS
smb_full_audit_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1758 uint32 security_info_sent
,
1759 const struct security_descriptor
*psd
)
1763 result
= SMB_VFS_NEXT_FSET_NT_ACL(handle
, fsp
, security_info_sent
, psd
);
1765 do_log(SMB_VFS_OP_FSET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
, "%s",
1766 fsp_str_do_log(fsp
));
1771 static int smb_full_audit_chmod_acl(vfs_handle_struct
*handle
,
1772 const char *path
, mode_t mode
)
1776 result
= SMB_VFS_NEXT_CHMOD_ACL(handle
, path
, mode
);
1778 do_log(SMB_VFS_OP_CHMOD_ACL
, (result
>= 0), handle
,
1779 "%s|%o", path
, mode
);
1784 static int smb_full_audit_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1789 result
= SMB_VFS_NEXT_FCHMOD_ACL(handle
, fsp
, mode
);
1791 do_log(SMB_VFS_OP_FCHMOD_ACL
, (result
>= 0), handle
,
1792 "%s|%o", fsp_str_do_log(fsp
), mode
);
1797 static SMB_ACL_T
smb_full_audit_sys_acl_get_file(vfs_handle_struct
*handle
,
1799 SMB_ACL_TYPE_T type
)
1803 result
= SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
, type
);
1805 do_log(SMB_VFS_OP_SYS_ACL_GET_FILE
, (result
!= NULL
), handle
,
1811 static SMB_ACL_T
smb_full_audit_sys_acl_get_fd(vfs_handle_struct
*handle
,
1816 result
= SMB_VFS_NEXT_SYS_ACL_GET_FD(handle
, fsp
);
1818 do_log(SMB_VFS_OP_SYS_ACL_GET_FD
, (result
!= NULL
), handle
,
1819 "%s", fsp_str_do_log(fsp
));
1824 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct
*handle
,
1826 const char *name
, SMB_ACL_TYPE_T acltype
,
1831 result
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
, acltype
,
1834 do_log(SMB_VFS_OP_SYS_ACL_SET_FILE
, (result
>= 0), handle
,
1840 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
1845 result
= SMB_VFS_NEXT_SYS_ACL_SET_FD(handle
, fsp
, theacl
);
1847 do_log(SMB_VFS_OP_SYS_ACL_SET_FD
, (result
>= 0), handle
,
1848 "%s", fsp_str_do_log(fsp
));
1853 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1859 result
= SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, path
);
1861 do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, (result
>= 0), handle
,
1867 static ssize_t
smb_full_audit_getxattr(struct vfs_handle_struct
*handle
,
1869 const char *name
, void *value
, size_t size
)
1873 result
= SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
, size
);
1875 do_log(SMB_VFS_OP_GETXATTR
, (result
>= 0), handle
,
1876 "%s|%s", path
, name
);
1881 static ssize_t
smb_full_audit_fgetxattr(struct vfs_handle_struct
*handle
,
1882 struct files_struct
*fsp
,
1883 const char *name
, void *value
, size_t size
)
1887 result
= SMB_VFS_NEXT_FGETXATTR(handle
, fsp
, name
, value
, size
);
1889 do_log(SMB_VFS_OP_FGETXATTR
, (result
>= 0), handle
,
1890 "%s|%s", fsp_str_do_log(fsp
), name
);
1895 static ssize_t
smb_full_audit_listxattr(struct vfs_handle_struct
*handle
,
1896 const char *path
, char *list
, size_t size
)
1900 result
= SMB_VFS_NEXT_LISTXATTR(handle
, path
, list
, size
);
1902 do_log(SMB_VFS_OP_LISTXATTR
, (result
>= 0), handle
, "%s", path
);
1907 static ssize_t
smb_full_audit_flistxattr(struct vfs_handle_struct
*handle
,
1908 struct files_struct
*fsp
, char *list
,
1913 result
= SMB_VFS_NEXT_FLISTXATTR(handle
, fsp
, list
, size
);
1915 do_log(SMB_VFS_OP_FLISTXATTR
, (result
>= 0), handle
,
1916 "%s", fsp_str_do_log(fsp
));
1921 static int smb_full_audit_removexattr(struct vfs_handle_struct
*handle
,
1927 result
= SMB_VFS_NEXT_REMOVEXATTR(handle
, path
, name
);
1929 do_log(SMB_VFS_OP_REMOVEXATTR
, (result
>= 0), handle
,
1930 "%s|%s", path
, name
);
1935 static int smb_full_audit_fremovexattr(struct vfs_handle_struct
*handle
,
1936 struct files_struct
*fsp
,
1941 result
= SMB_VFS_NEXT_FREMOVEXATTR(handle
, fsp
, name
);
1943 do_log(SMB_VFS_OP_FREMOVEXATTR
, (result
>= 0), handle
,
1944 "%s|%s", fsp_str_do_log(fsp
), name
);
1949 static int smb_full_audit_setxattr(struct vfs_handle_struct
*handle
,
1951 const char *name
, const void *value
, size_t size
,
1956 result
= SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
, size
,
1959 do_log(SMB_VFS_OP_SETXATTR
, (result
>= 0), handle
,
1960 "%s|%s", path
, name
);
1965 static int smb_full_audit_fsetxattr(struct vfs_handle_struct
*handle
,
1966 struct files_struct
*fsp
, const char *name
,
1967 const void *value
, size_t size
, int flags
)
1971 result
= SMB_VFS_NEXT_FSETXATTR(handle
, fsp
, name
, value
, size
, flags
);
1973 do_log(SMB_VFS_OP_FSETXATTR
, (result
>= 0), handle
,
1974 "%s|%s", fsp_str_do_log(fsp
), name
);
1979 static bool smb_full_audit_aio_force(struct vfs_handle_struct
*handle
,
1980 struct files_struct
*fsp
)
1984 result
= SMB_VFS_NEXT_AIO_FORCE(handle
, fsp
);
1985 do_log(SMB_VFS_OP_AIO_FORCE
, result
, handle
,
1986 "%s", fsp_str_do_log(fsp
));
1991 static bool smb_full_audit_is_offline(struct vfs_handle_struct
*handle
,
1992 const struct smb_filename
*fname
,
1993 SMB_STRUCT_STAT
*sbuf
)
1997 result
= SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
1998 do_log(SMB_VFS_OP_IS_OFFLINE
, result
, handle
, "%s",
1999 smb_fname_str_do_log(fname
));
2003 static int smb_full_audit_set_offline(struct vfs_handle_struct
*handle
,
2004 const struct smb_filename
*fname
)
2008 result
= SMB_VFS_NEXT_SET_OFFLINE(handle
, fname
);
2009 do_log(SMB_VFS_OP_SET_OFFLINE
, result
>= 0, handle
, "%s",
2010 smb_fname_str_do_log(fname
));
2014 static struct vfs_fn_pointers vfs_full_audit_fns
= {
2016 /* Disk operations */
2018 .connect_fn
= smb_full_audit_connect
,
2019 .disconnect_fn
= smb_full_audit_disconnect
,
2020 .disk_free_fn
= smb_full_audit_disk_free
,
2021 .get_quota_fn
= smb_full_audit_get_quota
,
2022 .set_quota_fn
= smb_full_audit_set_quota
,
2023 .get_shadow_copy_data_fn
= smb_full_audit_get_shadow_copy_data
,
2024 .statvfs_fn
= smb_full_audit_statvfs
,
2025 .fs_capabilities_fn
= smb_full_audit_fs_capabilities
,
2026 .opendir_fn
= smb_full_audit_opendir
,
2027 .fdopendir_fn
= smb_full_audit_fdopendir
,
2028 .readdir_fn
= smb_full_audit_readdir
,
2029 .seekdir_fn
= smb_full_audit_seekdir
,
2030 .telldir_fn
= smb_full_audit_telldir
,
2031 .rewind_dir_fn
= smb_full_audit_rewinddir
,
2032 .mkdir_fn
= smb_full_audit_mkdir
,
2033 .rmdir_fn
= smb_full_audit_rmdir
,
2034 .closedir_fn
= smb_full_audit_closedir
,
2035 .init_search_op_fn
= smb_full_audit_init_search_op
,
2036 .open_fn
= smb_full_audit_open
,
2037 .create_file_fn
= smb_full_audit_create_file
,
2038 .close_fn
= smb_full_audit_close
,
2039 .read_fn
= smb_full_audit_read
,
2040 .pread_fn
= smb_full_audit_pread
,
2041 .pread_send_fn
= smb_full_audit_pread_send
,
2042 .pread_recv_fn
= smb_full_audit_pread_recv
,
2043 .write_fn
= smb_full_audit_write
,
2044 .pwrite_fn
= smb_full_audit_pwrite
,
2045 .pwrite_send_fn
= smb_full_audit_pwrite_send
,
2046 .pwrite_recv_fn
= smb_full_audit_pwrite_recv
,
2047 .lseek_fn
= smb_full_audit_lseek
,
2048 .sendfile_fn
= smb_full_audit_sendfile
,
2049 .recvfile_fn
= smb_full_audit_recvfile
,
2050 .rename_fn
= smb_full_audit_rename
,
2051 .fsync_fn
= smb_full_audit_fsync
,
2052 .fsync_send_fn
= smb_full_audit_fsync_send
,
2053 .fsync_recv_fn
= smb_full_audit_fsync_recv
,
2054 .stat_fn
= smb_full_audit_stat
,
2055 .fstat_fn
= smb_full_audit_fstat
,
2056 .lstat_fn
= smb_full_audit_lstat
,
2057 .get_alloc_size_fn
= smb_full_audit_get_alloc_size
,
2058 .unlink_fn
= smb_full_audit_unlink
,
2059 .chmod_fn
= smb_full_audit_chmod
,
2060 .fchmod_fn
= smb_full_audit_fchmod
,
2061 .chown_fn
= smb_full_audit_chown
,
2062 .fchown_fn
= smb_full_audit_fchown
,
2063 .lchown_fn
= smb_full_audit_lchown
,
2064 .chdir_fn
= smb_full_audit_chdir
,
2065 .getwd_fn
= smb_full_audit_getwd
,
2066 .ntimes_fn
= smb_full_audit_ntimes
,
2067 .ftruncate_fn
= smb_full_audit_ftruncate
,
2068 .fallocate_fn
= smb_full_audit_fallocate
,
2069 .lock_fn
= smb_full_audit_lock
,
2070 .kernel_flock_fn
= smb_full_audit_kernel_flock
,
2071 .linux_setlease_fn
= smb_full_audit_linux_setlease
,
2072 .getlock_fn
= smb_full_audit_getlock
,
2073 .symlink_fn
= smb_full_audit_symlink
,
2074 .readlink_fn
= smb_full_audit_readlink
,
2075 .link_fn
= smb_full_audit_link
,
2076 .mknod_fn
= smb_full_audit_mknod
,
2077 .realpath_fn
= smb_full_audit_realpath
,
2078 .notify_watch_fn
= smb_full_audit_notify_watch
,
2079 .chflags_fn
= smb_full_audit_chflags
,
2080 .file_id_create_fn
= smb_full_audit_file_id_create
,
2081 .streaminfo_fn
= smb_full_audit_streaminfo
,
2082 .get_real_filename_fn
= smb_full_audit_get_real_filename
,
2083 .connectpath_fn
= smb_full_audit_connectpath
,
2084 .brl_lock_windows_fn
= smb_full_audit_brl_lock_windows
,
2085 .brl_unlock_windows_fn
= smb_full_audit_brl_unlock_windows
,
2086 .brl_cancel_windows_fn
= smb_full_audit_brl_cancel_windows
,
2087 .strict_lock_fn
= smb_full_audit_strict_lock
,
2088 .strict_unlock_fn
= smb_full_audit_strict_unlock
,
2089 .translate_name_fn
= smb_full_audit_translate_name
,
2090 .fget_nt_acl_fn
= smb_full_audit_fget_nt_acl
,
2091 .get_nt_acl_fn
= smb_full_audit_get_nt_acl
,
2092 .fset_nt_acl_fn
= smb_full_audit_fset_nt_acl
,
2093 .chmod_acl_fn
= smb_full_audit_chmod_acl
,
2094 .fchmod_acl_fn
= smb_full_audit_fchmod_acl
,
2095 .sys_acl_get_file_fn
= smb_full_audit_sys_acl_get_file
,
2096 .sys_acl_get_fd_fn
= smb_full_audit_sys_acl_get_fd
,
2097 .sys_acl_set_file_fn
= smb_full_audit_sys_acl_set_file
,
2098 .sys_acl_set_fd_fn
= smb_full_audit_sys_acl_set_fd
,
2099 .sys_acl_delete_def_file_fn
= smb_full_audit_sys_acl_delete_def_file
,
2100 .getxattr_fn
= smb_full_audit_getxattr
,
2101 .fgetxattr_fn
= smb_full_audit_fgetxattr
,
2102 .listxattr_fn
= smb_full_audit_listxattr
,
2103 .flistxattr_fn
= smb_full_audit_flistxattr
,
2104 .removexattr_fn
= smb_full_audit_removexattr
,
2105 .fremovexattr_fn
= smb_full_audit_fremovexattr
,
2106 .setxattr_fn
= smb_full_audit_setxattr
,
2107 .fsetxattr_fn
= smb_full_audit_fsetxattr
,
2108 .aio_force_fn
= smb_full_audit_aio_force
,
2109 .is_offline_fn
= smb_full_audit_is_offline
,
2110 .set_offline_fn
= smb_full_audit_set_offline
,
2113 NTSTATUS
vfs_full_audit_init(void)
2115 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
2116 "full_audit", &vfs_full_audit_fns
);
2118 if (!NT_STATUS_IS_OK(ret
))
2121 vfs_full_audit_debug_level
= debug_add_class("full_audit");
2122 if (vfs_full_audit_debug_level
== -1) {
2123 vfs_full_audit_debug_level
= DBGC_VFS
;
2124 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2127 DEBUG(10, ("vfs_full_audit: Debug class number of "
2128 "'full_audit': %d\n", vfs_full_audit_debug_level
));