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_BLOB_GET_FILE
,
179 SMB_VFS_OP_SYS_ACL_BLOB_GET_FD
,
180 SMB_VFS_OP_SYS_ACL_SET_FILE
,
181 SMB_VFS_OP_SYS_ACL_SET_FD
,
182 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
,
186 SMB_VFS_OP_FGETXATTR
,
187 SMB_VFS_OP_LISTXATTR
,
188 SMB_VFS_OP_FLISTXATTR
,
189 SMB_VFS_OP_REMOVEXATTR
,
190 SMB_VFS_OP_FREMOVEXATTR
,
192 SMB_VFS_OP_FSETXATTR
,
195 SMB_VFS_OP_AIO_FORCE
,
197 /* offline operations */
198 SMB_VFS_OP_IS_OFFLINE
,
199 SMB_VFS_OP_SET_OFFLINE
,
201 /* This should always be last enum value */
206 /* The following array *must* be in the same order as defined in vfs_op_type */
212 { SMB_VFS_OP_CONNECT
, "connect" },
213 { SMB_VFS_OP_DISCONNECT
, "disconnect" },
214 { SMB_VFS_OP_DISK_FREE
, "disk_free" },
215 { SMB_VFS_OP_GET_QUOTA
, "get_quota" },
216 { SMB_VFS_OP_SET_QUOTA
, "set_quota" },
217 { SMB_VFS_OP_GET_SHADOW_COPY_DATA
, "get_shadow_copy_data" },
218 { SMB_VFS_OP_STATVFS
, "statvfs" },
219 { SMB_VFS_OP_FS_CAPABILITIES
, "fs_capabilities" },
220 { SMB_VFS_OP_OPENDIR
, "opendir" },
221 { SMB_VFS_OP_FDOPENDIR
, "fdopendir" },
222 { SMB_VFS_OP_READDIR
, "readdir" },
223 { SMB_VFS_OP_SEEKDIR
, "seekdir" },
224 { SMB_VFS_OP_TELLDIR
, "telldir" },
225 { SMB_VFS_OP_REWINDDIR
, "rewinddir" },
226 { SMB_VFS_OP_MKDIR
, "mkdir" },
227 { SMB_VFS_OP_RMDIR
, "rmdir" },
228 { SMB_VFS_OP_CLOSEDIR
, "closedir" },
229 { SMB_VFS_OP_INIT_SEARCH_OP
, "init_search_op" },
230 { SMB_VFS_OP_OPEN
, "open" },
231 { SMB_VFS_OP_CREATE_FILE
, "create_file" },
232 { SMB_VFS_OP_CLOSE
, "close" },
233 { SMB_VFS_OP_READ
, "read" },
234 { SMB_VFS_OP_PREAD
, "pread" },
235 { SMB_VFS_OP_PREAD_SEND
, "pread_send" },
236 { SMB_VFS_OP_PREAD_RECV
, "pread_recv" },
237 { SMB_VFS_OP_WRITE
, "write" },
238 { SMB_VFS_OP_PWRITE
, "pwrite" },
239 { SMB_VFS_OP_PWRITE_SEND
, "pwrite_send" },
240 { SMB_VFS_OP_PWRITE_RECV
, "pwrite_recv" },
241 { SMB_VFS_OP_LSEEK
, "lseek" },
242 { SMB_VFS_OP_SENDFILE
, "sendfile" },
243 { SMB_VFS_OP_RECVFILE
, "recvfile" },
244 { SMB_VFS_OP_RENAME
, "rename" },
245 { SMB_VFS_OP_FSYNC
, "fsync" },
246 { SMB_VFS_OP_FSYNC_SEND
, "fsync_send" },
247 { SMB_VFS_OP_FSYNC_RECV
, "fsync_recv" },
248 { SMB_VFS_OP_STAT
, "stat" },
249 { SMB_VFS_OP_FSTAT
, "fstat" },
250 { SMB_VFS_OP_LSTAT
, "lstat" },
251 { SMB_VFS_OP_GET_ALLOC_SIZE
, "get_alloc_size" },
252 { SMB_VFS_OP_UNLINK
, "unlink" },
253 { SMB_VFS_OP_CHMOD
, "chmod" },
254 { SMB_VFS_OP_FCHMOD
, "fchmod" },
255 { SMB_VFS_OP_CHOWN
, "chown" },
256 { SMB_VFS_OP_FCHOWN
, "fchown" },
257 { SMB_VFS_OP_LCHOWN
, "lchown" },
258 { SMB_VFS_OP_CHDIR
, "chdir" },
259 { SMB_VFS_OP_GETWD
, "getwd" },
260 { SMB_VFS_OP_NTIMES
, "ntimes" },
261 { SMB_VFS_OP_FTRUNCATE
, "ftruncate" },
262 { SMB_VFS_OP_FALLOCATE
,"fallocate" },
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_TRANSLATE_NAME
, "translate_name" },
284 { SMB_VFS_OP_FGET_NT_ACL
, "fget_nt_acl" },
285 { SMB_VFS_OP_GET_NT_ACL
, "get_nt_acl" },
286 { SMB_VFS_OP_FSET_NT_ACL
, "fset_nt_acl" },
287 { SMB_VFS_OP_CHMOD_ACL
, "chmod_acl" },
288 { SMB_VFS_OP_FCHMOD_ACL
, "fchmod_acl" },
289 { SMB_VFS_OP_SYS_ACL_GET_FILE
, "sys_acl_get_file" },
290 { SMB_VFS_OP_SYS_ACL_GET_FD
, "sys_acl_get_fd" },
291 { SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE
, "sys_acl_blob_get_file" },
292 { SMB_VFS_OP_SYS_ACL_BLOB_GET_FD
, "sys_acl_blob_get_fd" },
293 { SMB_VFS_OP_SYS_ACL_SET_FILE
, "sys_acl_set_file" },
294 { SMB_VFS_OP_SYS_ACL_SET_FD
, "sys_acl_set_fd" },
295 { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, "sys_acl_delete_def_file" },
296 { SMB_VFS_OP_GETXATTR
, "getxattr" },
297 { SMB_VFS_OP_FGETXATTR
, "fgetxattr" },
298 { SMB_VFS_OP_LISTXATTR
, "listxattr" },
299 { SMB_VFS_OP_FLISTXATTR
, "flistxattr" },
300 { SMB_VFS_OP_REMOVEXATTR
, "removexattr" },
301 { SMB_VFS_OP_FREMOVEXATTR
, "fremovexattr" },
302 { SMB_VFS_OP_SETXATTR
, "setxattr" },
303 { SMB_VFS_OP_FSETXATTR
, "fsetxattr" },
304 { SMB_VFS_OP_AIO_FORCE
, "aio_force" },
305 { SMB_VFS_OP_IS_OFFLINE
, "is_offline" },
306 { SMB_VFS_OP_SET_OFFLINE
, "set_offline" },
307 { SMB_VFS_OP_LAST
, NULL
}
310 static int audit_syslog_facility(vfs_handle_struct
*handle
)
312 static const struct enum_list enum_log_facilities
[] = {
313 { LOG_USER
, "USER" },
314 { LOG_LOCAL0
, "LOCAL0" },
315 { LOG_LOCAL1
, "LOCAL1" },
316 { LOG_LOCAL2
, "LOCAL2" },
317 { LOG_LOCAL3
, "LOCAL3" },
318 { LOG_LOCAL4
, "LOCAL4" },
319 { LOG_LOCAL5
, "LOCAL5" },
320 { LOG_LOCAL6
, "LOCAL6" },
321 { LOG_LOCAL7
, "LOCAL7" },
327 facility
= lp_parm_enum(SNUM(handle
->conn
), "full_audit", "facility", enum_log_facilities
, LOG_USER
);
332 static int audit_syslog_priority(vfs_handle_struct
*handle
)
334 static const struct enum_list enum_log_priorities
[] = {
335 { LOG_EMERG
, "EMERG" },
336 { LOG_ALERT
, "ALERT" },
337 { LOG_CRIT
, "CRIT" },
339 { LOG_WARNING
, "WARNING" },
340 { LOG_NOTICE
, "NOTICE" },
341 { LOG_INFO
, "INFO" },
342 { LOG_DEBUG
, "DEBUG" },
348 priority
= lp_parm_enum(SNUM(handle
->conn
), "full_audit", "priority",
349 enum_log_priorities
, LOG_NOTICE
);
350 if (priority
== -1) {
351 priority
= LOG_WARNING
;
357 static char *audit_prefix(TALLOC_CTX
*ctx
, connection_struct
*conn
)
362 prefix
= talloc_strdup(ctx
,
363 lp_parm_const_string(SNUM(conn
), "full_audit",
368 result
= talloc_sub_advanced(ctx
,
369 lp_servicename(talloc_tos(), SNUM(conn
)),
370 conn
->session_info
->unix_info
->unix_name
,
372 conn
->session_info
->unix_token
->gid
,
373 conn
->session_info
->unix_info
->sanitized_username
,
374 conn
->session_info
->info
->domain_name
,
380 static bool log_success(vfs_handle_struct
*handle
, vfs_op_type op
)
382 struct vfs_full_audit_private_data
*pd
= NULL
;
384 SMB_VFS_HANDLE_GET_DATA(handle
, pd
,
385 struct vfs_full_audit_private_data
,
388 if (pd
->success_ops
== NULL
) {
392 return bitmap_query(pd
->success_ops
, op
);
395 static bool log_failure(vfs_handle_struct
*handle
, vfs_op_type op
)
397 struct vfs_full_audit_private_data
*pd
= NULL
;
399 SMB_VFS_HANDLE_GET_DATA(handle
, pd
,
400 struct vfs_full_audit_private_data
,
403 if (pd
->failure_ops
== NULL
)
406 return bitmap_query(pd
->failure_ops
, op
);
409 static struct bitmap
*init_bitmap(TALLOC_CTX
*mem_ctx
, const char **ops
)
417 bm
= bitmap_talloc(mem_ctx
, SMB_VFS_OP_LAST
);
419 DEBUG(0, ("Could not alloc bitmap -- "
420 "defaulting to logging everything\n"));
424 for (; *ops
!= NULL
; ops
+= 1) {
429 if (strequal(*ops
, "all")) {
430 for (i
=0; i
<SMB_VFS_OP_LAST
; i
++) {
436 if (strequal(*ops
, "none")) {
446 for (i
=0; i
<SMB_VFS_OP_LAST
; i
++) {
447 if ((vfs_op_names
[i
].name
== NULL
)
448 || (vfs_op_names
[i
].type
!= i
)) {
449 smb_panic("vfs_full_audit.c: name table not "
450 "in sync with vfs_op_type enums\n");
452 if (strequal(op
, vfs_op_names
[i
].name
)) {
461 if (i
== SMB_VFS_OP_LAST
) {
462 DEBUG(0, ("Could not find opname %s, logging all\n",
471 static const char *audit_opname(vfs_op_type op
)
473 if (op
>= SMB_VFS_OP_LAST
)
474 return "INVALID VFS OP";
475 return vfs_op_names
[op
].name
;
478 static TALLOC_CTX
*tmp_do_log_ctx
;
480 * Get us a temporary talloc context usable just for DEBUG arguments
482 static TALLOC_CTX
*do_log_ctx(void)
484 if (tmp_do_log_ctx
== NULL
) {
485 tmp_do_log_ctx
= talloc_named_const(NULL
, 0, "do_log_ctx");
487 return tmp_do_log_ctx
;
490 static void do_log(vfs_op_type op
, bool success
, vfs_handle_struct
*handle
,
491 const char *format
, ...)
494 char *audit_pre
= NULL
;
499 if (success
&& (!log_success(handle
, op
)))
502 if (!success
&& (!log_failure(handle
, op
)))
506 fstrcpy(err_msg
, "ok");
508 fstr_sprintf(err_msg
, "fail (%s)", strerror(errno
));
510 va_start(ap
, format
);
511 op_msg
= talloc_vasprintf(talloc_tos(), format
, ap
);
519 * Specify the facility to interoperate with other syslog callers
520 * (smbd for example).
522 priority
= audit_syslog_priority(handle
) |
523 audit_syslog_facility(handle
);
525 audit_pre
= audit_prefix(talloc_tos(), handle
->conn
);
526 syslog(priority
, "%s|%s|%s|%s\n",
527 audit_pre
? audit_pre
: "",
528 audit_opname(op
), err_msg
, op_msg
);
531 TALLOC_FREE(audit_pre
);
533 TALLOC_FREE(tmp_do_log_ctx
);
537 * Return a string using the do_log_ctx()
539 static const char *smb_fname_str_do_log(const struct smb_filename
*smb_fname
)
544 if (smb_fname
== NULL
) {
547 status
= get_full_smb_filename(do_log_ctx(), smb_fname
, &fname
);
548 if (!NT_STATUS_IS_OK(status
)) {
555 * Return an fsp debug string using the do_log_ctx()
557 static const char *fsp_str_do_log(const struct files_struct
*fsp
)
559 return smb_fname_str_do_log(fsp
->fsp_name
);
562 /* Implementation of vfs_ops. Pass everything on to the default
563 operation but log event first. */
565 static int smb_full_audit_connect(vfs_handle_struct
*handle
,
566 const char *svc
, const char *user
)
569 struct vfs_full_audit_private_data
*pd
= NULL
;
571 result
= SMB_VFS_NEXT_CONNECT(handle
, svc
, user
);
576 pd
= talloc_zero(handle
, struct vfs_full_audit_private_data
);
578 SMB_VFS_NEXT_DISCONNECT(handle
);
583 openlog("smbd_audit", 0, audit_syslog_facility(handle
));
586 pd
->success_ops
= init_bitmap(
587 pd
, lp_parm_string_list(SNUM(handle
->conn
), "full_audit",
589 pd
->failure_ops
= init_bitmap(
590 pd
, lp_parm_string_list(SNUM(handle
->conn
), "full_audit",
593 /* Store the private data. */
594 SMB_VFS_HANDLE_SET_DATA(handle
, pd
, NULL
,
595 struct vfs_full_audit_private_data
, return -1);
597 do_log(SMB_VFS_OP_CONNECT
, True
, handle
,
603 static void smb_full_audit_disconnect(vfs_handle_struct
*handle
)
605 SMB_VFS_NEXT_DISCONNECT(handle
);
607 do_log(SMB_VFS_OP_DISCONNECT
, True
, handle
,
608 "%s", lp_servicename(talloc_tos(), SNUM(handle
->conn
)));
610 /* The bitmaps will be disconnected when the private
614 static uint64_t smb_full_audit_disk_free(vfs_handle_struct
*handle
,
616 bool small_query
, uint64_t *bsize
,
617 uint64_t *dfree
, uint64_t *dsize
)
621 result
= SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
, bsize
,
624 /* Don't have a reasonable notion of failure here */
626 do_log(SMB_VFS_OP_DISK_FREE
, True
, handle
, "%s", path
);
631 static int smb_full_audit_get_quota(struct vfs_handle_struct
*handle
,
632 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
637 result
= SMB_VFS_NEXT_GET_QUOTA(handle
, qtype
, id
, qt
);
639 do_log(SMB_VFS_OP_GET_QUOTA
, (result
>= 0), handle
, "");
645 static int smb_full_audit_set_quota(struct vfs_handle_struct
*handle
,
646 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
651 result
= SMB_VFS_NEXT_SET_QUOTA(handle
, qtype
, id
, qt
);
653 do_log(SMB_VFS_OP_SET_QUOTA
, (result
>= 0), handle
, "");
658 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct
*handle
,
659 struct files_struct
*fsp
,
660 struct shadow_copy_data
*shadow_copy_data
,
665 result
= SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle
, fsp
, shadow_copy_data
, labels
);
667 do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA
, (result
>= 0), handle
, "");
672 static int smb_full_audit_statvfs(struct vfs_handle_struct
*handle
,
674 struct vfs_statvfs_struct
*statbuf
)
678 result
= SMB_VFS_NEXT_STATVFS(handle
, path
, statbuf
);
680 do_log(SMB_VFS_OP_STATVFS
, (result
>= 0), handle
, "");
685 static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct
*handle
, enum timestamp_set_resolution
*p_ts_res
)
689 result
= SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
);
691 do_log(SMB_VFS_OP_FS_CAPABILITIES
, true, handle
, "");
696 static DIR *smb_full_audit_opendir(vfs_handle_struct
*handle
,
697 const char *fname
, const char *mask
, uint32 attr
)
701 result
= SMB_VFS_NEXT_OPENDIR(handle
, fname
, mask
, attr
);
703 do_log(SMB_VFS_OP_OPENDIR
, (result
!= NULL
), handle
, "%s", fname
);
708 static DIR *smb_full_audit_fdopendir(vfs_handle_struct
*handle
,
709 files_struct
*fsp
, const char *mask
, uint32 attr
)
713 result
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
715 do_log(SMB_VFS_OP_FDOPENDIR
, (result
!= NULL
), handle
, "%s",
716 fsp_str_do_log(fsp
));
721 static struct dirent
*smb_full_audit_readdir(vfs_handle_struct
*handle
,
722 DIR *dirp
, SMB_STRUCT_STAT
*sbuf
)
724 struct dirent
*result
;
726 result
= SMB_VFS_NEXT_READDIR(handle
, dirp
, sbuf
);
728 /* This operation has no reasonable error condition
729 * (End of dir is also failure), so always succeed.
731 do_log(SMB_VFS_OP_READDIR
, True
, handle
, "");
736 static void smb_full_audit_seekdir(vfs_handle_struct
*handle
,
737 DIR *dirp
, long offset
)
739 SMB_VFS_NEXT_SEEKDIR(handle
, dirp
, offset
);
741 do_log(SMB_VFS_OP_SEEKDIR
, True
, handle
, "");
744 static long smb_full_audit_telldir(vfs_handle_struct
*handle
,
749 result
= SMB_VFS_NEXT_TELLDIR(handle
, dirp
);
751 do_log(SMB_VFS_OP_TELLDIR
, True
, handle
, "");
756 static void smb_full_audit_rewinddir(vfs_handle_struct
*handle
,
759 SMB_VFS_NEXT_REWINDDIR(handle
, dirp
);
761 do_log(SMB_VFS_OP_REWINDDIR
, True
, handle
, "");
764 static int smb_full_audit_mkdir(vfs_handle_struct
*handle
,
765 const char *path
, mode_t mode
)
769 result
= SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
771 do_log(SMB_VFS_OP_MKDIR
, (result
>= 0), handle
, "%s", path
);
776 static int smb_full_audit_rmdir(vfs_handle_struct
*handle
,
781 result
= SMB_VFS_NEXT_RMDIR(handle
, path
);
783 do_log(SMB_VFS_OP_RMDIR
, (result
>= 0), handle
, "%s", path
);
788 static int smb_full_audit_closedir(vfs_handle_struct
*handle
,
793 result
= SMB_VFS_NEXT_CLOSEDIR(handle
, dirp
);
795 do_log(SMB_VFS_OP_CLOSEDIR
, (result
>= 0), handle
, "");
800 static void smb_full_audit_init_search_op(vfs_handle_struct
*handle
,
803 SMB_VFS_NEXT_INIT_SEARCH_OP(handle
, dirp
);
805 do_log(SMB_VFS_OP_INIT_SEARCH_OP
, True
, handle
, "");
808 static int smb_full_audit_open(vfs_handle_struct
*handle
,
809 struct smb_filename
*smb_fname
,
810 files_struct
*fsp
, int flags
, mode_t mode
)
814 result
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
816 do_log(SMB_VFS_OP_OPEN
, (result
>= 0), handle
, "%s|%s",
817 ((flags
& O_WRONLY
) || (flags
& O_RDWR
))?"w":"r",
818 smb_fname_str_do_log(smb_fname
));
823 static NTSTATUS
smb_full_audit_create_file(vfs_handle_struct
*handle
,
824 struct smb_request
*req
,
825 uint16_t root_dir_fid
,
826 struct smb_filename
*smb_fname
,
827 uint32_t access_mask
,
828 uint32_t share_access
,
829 uint32_t create_disposition
,
830 uint32_t create_options
,
831 uint32_t file_attributes
,
832 uint32_t oplock_request
,
833 uint64_t allocation_size
,
834 uint32_t private_flags
,
835 struct security_descriptor
*sd
,
836 struct ea_list
*ea_list
,
837 files_struct
**result_fsp
,
841 const char* str_create_disposition
;
843 switch (create_disposition
) {
845 str_create_disposition
= "supersede";
847 case FILE_OVERWRITE_IF
:
848 str_create_disposition
= "overwrite_if";
851 str_create_disposition
= "open";
854 str_create_disposition
= "overwrite";
857 str_create_disposition
= "create";
860 str_create_disposition
= "open_if";
863 str_create_disposition
= "unknown";
866 result
= SMB_VFS_NEXT_CREATE_FILE(
869 root_dir_fid
, /* root_dir_fid */
870 smb_fname
, /* fname */
871 access_mask
, /* access_mask */
872 share_access
, /* share_access */
873 create_disposition
, /* create_disposition*/
874 create_options
, /* create_options */
875 file_attributes
, /* file_attributes */
876 oplock_request
, /* oplock_request */
877 allocation_size
, /* allocation_size */
880 ea_list
, /* ea_list */
881 result_fsp
, /* result */
884 do_log(SMB_VFS_OP_CREATE_FILE
, (NT_STATUS_IS_OK(result
)), handle
,
885 "0x%x|%s|%s|%s", access_mask
,
886 create_options
& FILE_DIRECTORY_FILE
? "dir" : "file",
887 str_create_disposition
, smb_fname_str_do_log(smb_fname
));
892 static int smb_full_audit_close(vfs_handle_struct
*handle
, files_struct
*fsp
)
896 result
= SMB_VFS_NEXT_CLOSE(handle
, fsp
);
898 do_log(SMB_VFS_OP_CLOSE
, (result
>= 0), handle
, "%s",
899 fsp_str_do_log(fsp
));
904 static ssize_t
smb_full_audit_read(vfs_handle_struct
*handle
, files_struct
*fsp
,
905 void *data
, size_t n
)
909 result
= SMB_VFS_NEXT_READ(handle
, fsp
, data
, n
);
911 do_log(SMB_VFS_OP_READ
, (result
>= 0), handle
, "%s",
912 fsp_str_do_log(fsp
));
917 static ssize_t
smb_full_audit_pread(vfs_handle_struct
*handle
, files_struct
*fsp
,
918 void *data
, size_t n
, off_t offset
)
922 result
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
924 do_log(SMB_VFS_OP_PREAD
, (result
>= 0), handle
, "%s",
925 fsp_str_do_log(fsp
));
930 struct smb_full_audit_pread_state
{
931 vfs_handle_struct
*handle
;
937 static void smb_full_audit_pread_done(struct tevent_req
*subreq
);
939 static struct tevent_req
*smb_full_audit_pread_send(
940 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
941 struct tevent_context
*ev
, struct files_struct
*fsp
,
942 void *data
, size_t n
, off_t offset
)
944 struct tevent_req
*req
, *subreq
;
945 struct smb_full_audit_pread_state
*state
;
947 req
= tevent_req_create(mem_ctx
, &state
,
948 struct smb_full_audit_pread_state
);
950 do_log(SMB_VFS_OP_PREAD_SEND
, false, handle
, "%s",
951 fsp_str_do_log(fsp
));
954 state
->handle
= handle
;
957 subreq
= SMB_VFS_NEXT_PREAD_SEND(state
, ev
, handle
, fsp
, data
,
959 if (tevent_req_nomem(subreq
, req
)) {
960 do_log(SMB_VFS_OP_PREAD_SEND
, false, handle
, "%s",
961 fsp_str_do_log(fsp
));
962 return tevent_req_post(req
, ev
);
964 tevent_req_set_callback(subreq
, smb_full_audit_pread_done
, req
);
966 do_log(SMB_VFS_OP_PREAD_SEND
, true, handle
, "%s", fsp_str_do_log(fsp
));
970 static void smb_full_audit_pread_done(struct tevent_req
*subreq
)
972 struct tevent_req
*req
= tevent_req_callback_data(
973 subreq
, struct tevent_req
);
974 struct smb_full_audit_pread_state
*state
= tevent_req_data(
975 req
, struct smb_full_audit_pread_state
);
977 state
->ret
= SMB_VFS_PREAD_RECV(subreq
, &state
->err
);
979 tevent_req_done(req
);
982 static ssize_t
smb_full_audit_pread_recv(struct tevent_req
*req
, int *err
)
984 struct smb_full_audit_pread_state
*state
= tevent_req_data(
985 req
, struct smb_full_audit_pread_state
);
987 if (tevent_req_is_unix_error(req
, err
)) {
988 do_log(SMB_VFS_OP_PREAD_RECV
, false, state
->handle
, "%s",
989 fsp_str_do_log(state
->fsp
));
993 do_log(SMB_VFS_OP_PREAD_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
994 fsp_str_do_log(state
->fsp
));
1000 static ssize_t
smb_full_audit_write(vfs_handle_struct
*handle
, files_struct
*fsp
,
1001 const void *data
, size_t n
)
1005 result
= SMB_VFS_NEXT_WRITE(handle
, fsp
, data
, n
);
1007 do_log(SMB_VFS_OP_WRITE
, (result
>= 0), handle
, "%s",
1008 fsp_str_do_log(fsp
));
1013 static ssize_t
smb_full_audit_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
,
1014 const void *data
, size_t n
,
1019 result
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
1021 do_log(SMB_VFS_OP_PWRITE
, (result
>= 0), handle
, "%s",
1022 fsp_str_do_log(fsp
));
1027 struct smb_full_audit_pwrite_state
{
1028 vfs_handle_struct
*handle
;
1034 static void smb_full_audit_pwrite_done(struct tevent_req
*subreq
);
1036 static struct tevent_req
*smb_full_audit_pwrite_send(
1037 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
1038 struct tevent_context
*ev
, struct files_struct
*fsp
,
1039 const void *data
, size_t n
, off_t offset
)
1041 struct tevent_req
*req
, *subreq
;
1042 struct smb_full_audit_pwrite_state
*state
;
1044 req
= tevent_req_create(mem_ctx
, &state
,
1045 struct smb_full_audit_pwrite_state
);
1047 do_log(SMB_VFS_OP_PWRITE_SEND
, false, handle
, "%s",
1048 fsp_str_do_log(fsp
));
1051 state
->handle
= handle
;
1054 subreq
= SMB_VFS_NEXT_PWRITE_SEND(state
, ev
, handle
, fsp
, data
,
1056 if (tevent_req_nomem(subreq
, req
)) {
1057 do_log(SMB_VFS_OP_PWRITE_SEND
, false, handle
, "%s",
1058 fsp_str_do_log(fsp
));
1059 return tevent_req_post(req
, ev
);
1061 tevent_req_set_callback(subreq
, smb_full_audit_pwrite_done
, req
);
1063 do_log(SMB_VFS_OP_PWRITE_SEND
, true, handle
, "%s",
1064 fsp_str_do_log(fsp
));
1068 static void smb_full_audit_pwrite_done(struct tevent_req
*subreq
)
1070 struct tevent_req
*req
= tevent_req_callback_data(
1071 subreq
, struct tevent_req
);
1072 struct smb_full_audit_pwrite_state
*state
= tevent_req_data(
1073 req
, struct smb_full_audit_pwrite_state
);
1075 state
->ret
= SMB_VFS_PWRITE_RECV(subreq
, &state
->err
);
1076 TALLOC_FREE(subreq
);
1077 tevent_req_done(req
);
1080 static ssize_t
smb_full_audit_pwrite_recv(struct tevent_req
*req
, int *err
)
1082 struct smb_full_audit_pwrite_state
*state
= tevent_req_data(
1083 req
, struct smb_full_audit_pwrite_state
);
1085 if (tevent_req_is_unix_error(req
, err
)) {
1086 do_log(SMB_VFS_OP_PWRITE_RECV
, false, state
->handle
, "%s",
1087 fsp_str_do_log(state
->fsp
));
1091 do_log(SMB_VFS_OP_PWRITE_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
1092 fsp_str_do_log(state
->fsp
));
1098 static off_t
smb_full_audit_lseek(vfs_handle_struct
*handle
, files_struct
*fsp
,
1099 off_t offset
, int whence
)
1103 result
= SMB_VFS_NEXT_LSEEK(handle
, fsp
, offset
, whence
);
1105 do_log(SMB_VFS_OP_LSEEK
, (result
!= (ssize_t
)-1), handle
,
1106 "%s", fsp_str_do_log(fsp
));
1111 static ssize_t
smb_full_audit_sendfile(vfs_handle_struct
*handle
, int tofd
,
1112 files_struct
*fromfsp
,
1113 const DATA_BLOB
*hdr
, off_t offset
,
1118 result
= SMB_VFS_NEXT_SENDFILE(handle
, tofd
, fromfsp
, hdr
, offset
, n
);
1120 do_log(SMB_VFS_OP_SENDFILE
, (result
>= 0), handle
,
1121 "%s", fsp_str_do_log(fromfsp
));
1126 static ssize_t
smb_full_audit_recvfile(vfs_handle_struct
*handle
, int fromfd
,
1127 files_struct
*tofsp
,
1133 result
= SMB_VFS_NEXT_RECVFILE(handle
, fromfd
, tofsp
, offset
, n
);
1135 do_log(SMB_VFS_OP_RECVFILE
, (result
>= 0), handle
,
1136 "%s", fsp_str_do_log(tofsp
));
1141 static int smb_full_audit_rename(vfs_handle_struct
*handle
,
1142 const struct smb_filename
*smb_fname_src
,
1143 const struct smb_filename
*smb_fname_dst
)
1147 result
= SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
, smb_fname_dst
);
1149 do_log(SMB_VFS_OP_RENAME
, (result
>= 0), handle
, "%s|%s",
1150 smb_fname_str_do_log(smb_fname_src
),
1151 smb_fname_str_do_log(smb_fname_dst
));
1156 static int smb_full_audit_fsync(vfs_handle_struct
*handle
, files_struct
*fsp
)
1160 result
= SMB_VFS_NEXT_FSYNC(handle
, fsp
);
1162 do_log(SMB_VFS_OP_FSYNC
, (result
>= 0), handle
, "%s",
1163 fsp_str_do_log(fsp
));
1168 struct smb_full_audit_fsync_state
{
1169 vfs_handle_struct
*handle
;
1175 static void smb_full_audit_fsync_done(struct tevent_req
*subreq
);
1177 static struct tevent_req
*smb_full_audit_fsync_send(
1178 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
1179 struct tevent_context
*ev
, struct files_struct
*fsp
)
1181 struct tevent_req
*req
, *subreq
;
1182 struct smb_full_audit_fsync_state
*state
;
1184 req
= tevent_req_create(mem_ctx
, &state
,
1185 struct smb_full_audit_fsync_state
);
1187 do_log(SMB_VFS_OP_FSYNC_SEND
, false, handle
, "%s",
1188 fsp_str_do_log(fsp
));
1191 state
->handle
= handle
;
1194 subreq
= SMB_VFS_NEXT_FSYNC_SEND(state
, ev
, handle
, fsp
);
1195 if (tevent_req_nomem(subreq
, req
)) {
1196 do_log(SMB_VFS_OP_FSYNC_SEND
, false, handle
, "%s",
1197 fsp_str_do_log(fsp
));
1198 return tevent_req_post(req
, ev
);
1200 tevent_req_set_callback(subreq
, smb_full_audit_fsync_done
, req
);
1202 do_log(SMB_VFS_OP_FSYNC_SEND
, true, handle
, "%s", fsp_str_do_log(fsp
));
1206 static void smb_full_audit_fsync_done(struct tevent_req
*subreq
)
1208 struct tevent_req
*req
= tevent_req_callback_data(
1209 subreq
, struct tevent_req
);
1210 struct smb_full_audit_fsync_state
*state
= tevent_req_data(
1211 req
, struct smb_full_audit_fsync_state
);
1213 state
->ret
= SMB_VFS_FSYNC_RECV(subreq
, &state
->err
);
1214 TALLOC_FREE(subreq
);
1215 tevent_req_done(req
);
1218 static int smb_full_audit_fsync_recv(struct tevent_req
*req
, int *err
)
1220 struct smb_full_audit_fsync_state
*state
= tevent_req_data(
1221 req
, struct smb_full_audit_fsync_state
);
1223 if (tevent_req_is_unix_error(req
, err
)) {
1224 do_log(SMB_VFS_OP_FSYNC_RECV
, false, state
->handle
, "%s",
1225 fsp_str_do_log(state
->fsp
));
1229 do_log(SMB_VFS_OP_FSYNC_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
1230 fsp_str_do_log(state
->fsp
));
1236 static int smb_full_audit_stat(vfs_handle_struct
*handle
,
1237 struct smb_filename
*smb_fname
)
1241 result
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1243 do_log(SMB_VFS_OP_STAT
, (result
>= 0), handle
, "%s",
1244 smb_fname_str_do_log(smb_fname
));
1249 static int smb_full_audit_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
,
1250 SMB_STRUCT_STAT
*sbuf
)
1254 result
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1256 do_log(SMB_VFS_OP_FSTAT
, (result
>= 0), handle
, "%s",
1257 fsp_str_do_log(fsp
));
1262 static int smb_full_audit_lstat(vfs_handle_struct
*handle
,
1263 struct smb_filename
*smb_fname
)
1267 result
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1269 do_log(SMB_VFS_OP_LSTAT
, (result
>= 0), handle
, "%s",
1270 smb_fname_str_do_log(smb_fname
));
1275 static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct
*handle
,
1276 files_struct
*fsp
, const SMB_STRUCT_STAT
*sbuf
)
1280 result
= SMB_VFS_NEXT_GET_ALLOC_SIZE(handle
, fsp
, sbuf
);
1282 do_log(SMB_VFS_OP_GET_ALLOC_SIZE
, (result
!= (uint64_t)-1), handle
,
1288 static int smb_full_audit_unlink(vfs_handle_struct
*handle
,
1289 const struct smb_filename
*smb_fname
)
1293 result
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
1295 do_log(SMB_VFS_OP_UNLINK
, (result
>= 0), handle
, "%s",
1296 smb_fname_str_do_log(smb_fname
));
1301 static int smb_full_audit_chmod(vfs_handle_struct
*handle
,
1302 const char *path
, mode_t mode
)
1306 result
= SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1308 do_log(SMB_VFS_OP_CHMOD
, (result
>= 0), handle
, "%s|%o", path
, mode
);
1313 static int smb_full_audit_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
,
1318 result
= SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
1320 do_log(SMB_VFS_OP_FCHMOD
, (result
>= 0), handle
,
1321 "%s|%o", fsp_str_do_log(fsp
), mode
);
1326 static int smb_full_audit_chown(vfs_handle_struct
*handle
,
1327 const char *path
, uid_t uid
, gid_t gid
)
1331 result
= SMB_VFS_NEXT_CHOWN(handle
, path
, uid
, gid
);
1333 do_log(SMB_VFS_OP_CHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1334 path
, (long int)uid
, (long int)gid
);
1339 static int smb_full_audit_fchown(vfs_handle_struct
*handle
, files_struct
*fsp
,
1340 uid_t uid
, gid_t gid
)
1344 result
= SMB_VFS_NEXT_FCHOWN(handle
, fsp
, uid
, gid
);
1346 do_log(SMB_VFS_OP_FCHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1347 fsp_str_do_log(fsp
), (long int)uid
, (long int)gid
);
1352 static int smb_full_audit_lchown(vfs_handle_struct
*handle
,
1353 const char *path
, uid_t uid
, gid_t gid
)
1357 result
= SMB_VFS_NEXT_LCHOWN(handle
, path
, uid
, gid
);
1359 do_log(SMB_VFS_OP_LCHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1360 path
, (long int)uid
, (long int)gid
);
1365 static int smb_full_audit_chdir(vfs_handle_struct
*handle
,
1370 result
= SMB_VFS_NEXT_CHDIR(handle
, path
);
1372 do_log(SMB_VFS_OP_CHDIR
, (result
>= 0), handle
, "chdir|%s", path
);
1377 static char *smb_full_audit_getwd(vfs_handle_struct
*handle
)
1381 result
= SMB_VFS_NEXT_GETWD(handle
);
1383 do_log(SMB_VFS_OP_GETWD
, (result
!= NULL
), handle
, "%s",
1384 result
== NULL
? "" : result
);
1389 static int smb_full_audit_ntimes(vfs_handle_struct
*handle
,
1390 const struct smb_filename
*smb_fname
,
1391 struct smb_file_time
*ft
)
1395 result
= SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1397 do_log(SMB_VFS_OP_NTIMES
, (result
>= 0), handle
, "%s",
1398 smb_fname_str_do_log(smb_fname
));
1403 static int smb_full_audit_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1408 result
= SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1410 do_log(SMB_VFS_OP_FTRUNCATE
, (result
>= 0), handle
,
1411 "%s", fsp_str_do_log(fsp
));
1416 static int smb_full_audit_fallocate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1417 enum vfs_fallocate_mode mode
,
1423 result
= SMB_VFS_NEXT_FALLOCATE(handle
, fsp
, mode
, offset
, len
);
1425 do_log(SMB_VFS_OP_FALLOCATE
, (result
>= 0), handle
,
1426 "%s", fsp_str_do_log(fsp
));
1431 static bool smb_full_audit_lock(vfs_handle_struct
*handle
, files_struct
*fsp
,
1432 int op
, off_t offset
, off_t count
, int type
)
1436 result
= SMB_VFS_NEXT_LOCK(handle
, fsp
, op
, offset
, count
, type
);
1438 do_log(SMB_VFS_OP_LOCK
, result
, handle
, "%s", fsp_str_do_log(fsp
));
1443 static int smb_full_audit_kernel_flock(struct vfs_handle_struct
*handle
,
1444 struct files_struct
*fsp
,
1445 uint32 share_mode
, uint32 access_mask
)
1449 result
= SMB_VFS_NEXT_KERNEL_FLOCK(handle
, fsp
, share_mode
, access_mask
);
1451 do_log(SMB_VFS_OP_KERNEL_FLOCK
, (result
>= 0), handle
, "%s",
1452 fsp_str_do_log(fsp
));
1457 static int smb_full_audit_linux_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
1462 result
= SMB_VFS_NEXT_LINUX_SETLEASE(handle
, fsp
, leasetype
);
1464 do_log(SMB_VFS_OP_LINUX_SETLEASE
, (result
>= 0), handle
, "%s",
1465 fsp_str_do_log(fsp
));
1470 static bool smb_full_audit_getlock(vfs_handle_struct
*handle
, files_struct
*fsp
,
1471 off_t
*poffset
, off_t
*pcount
, int *ptype
, pid_t
*ppid
)
1475 result
= SMB_VFS_NEXT_GETLOCK(handle
, fsp
, poffset
, pcount
, ptype
, ppid
);
1477 do_log(SMB_VFS_OP_GETLOCK
, result
, handle
, "%s", fsp_str_do_log(fsp
));
1482 static int smb_full_audit_symlink(vfs_handle_struct
*handle
,
1483 const char *oldpath
, const char *newpath
)
1487 result
= SMB_VFS_NEXT_SYMLINK(handle
, oldpath
, newpath
);
1489 do_log(SMB_VFS_OP_SYMLINK
, (result
>= 0), handle
,
1490 "%s|%s", oldpath
, newpath
);
1495 static int smb_full_audit_readlink(vfs_handle_struct
*handle
,
1496 const char *path
, char *buf
, size_t bufsiz
)
1500 result
= SMB_VFS_NEXT_READLINK(handle
, path
, buf
, bufsiz
);
1502 do_log(SMB_VFS_OP_READLINK
, (result
>= 0), handle
, "%s", path
);
1507 static int smb_full_audit_link(vfs_handle_struct
*handle
,
1508 const char *oldpath
, const char *newpath
)
1512 result
= SMB_VFS_NEXT_LINK(handle
, oldpath
, newpath
);
1514 do_log(SMB_VFS_OP_LINK
, (result
>= 0), handle
,
1515 "%s|%s", oldpath
, newpath
);
1520 static int smb_full_audit_mknod(vfs_handle_struct
*handle
,
1521 const char *pathname
, mode_t mode
, SMB_DEV_T dev
)
1525 result
= SMB_VFS_NEXT_MKNOD(handle
, pathname
, mode
, dev
);
1527 do_log(SMB_VFS_OP_MKNOD
, (result
>= 0), handle
, "%s", pathname
);
1532 static char *smb_full_audit_realpath(vfs_handle_struct
*handle
,
1537 result
= SMB_VFS_NEXT_REALPATH(handle
, path
);
1539 do_log(SMB_VFS_OP_REALPATH
, (result
!= NULL
), handle
, "%s", path
);
1544 static NTSTATUS
smb_full_audit_notify_watch(struct vfs_handle_struct
*handle
,
1545 struct sys_notify_context
*ctx
,
1548 uint32_t *subdir_filter
,
1549 void (*callback
)(struct sys_notify_context
*ctx
,
1551 struct notify_event
*ev
),
1552 void *private_data
, void *handle_p
)
1556 result
= SMB_VFS_NEXT_NOTIFY_WATCH(handle
, ctx
, path
,
1557 filter
, subdir_filter
, callback
,
1558 private_data
, handle_p
);
1560 do_log(SMB_VFS_OP_NOTIFY_WATCH
, NT_STATUS_IS_OK(result
), handle
, "");
1565 static int smb_full_audit_chflags(vfs_handle_struct
*handle
,
1566 const char *path
, unsigned int flags
)
1570 result
= SMB_VFS_NEXT_CHFLAGS(handle
, path
, flags
);
1572 do_log(SMB_VFS_OP_CHFLAGS
, (result
!= 0), handle
, "%s", path
);
1577 static struct file_id
smb_full_audit_file_id_create(struct vfs_handle_struct
*handle
,
1578 const SMB_STRUCT_STAT
*sbuf
)
1580 struct file_id id_zero
;
1581 struct file_id result
;
1583 ZERO_STRUCT(id_zero
);
1585 result
= SMB_VFS_NEXT_FILE_ID_CREATE(handle
, sbuf
);
1587 do_log(SMB_VFS_OP_FILE_ID_CREATE
,
1588 !file_id_equal(&id_zero
, &result
),
1589 handle
, "%s", file_id_string_tos(&result
));
1594 static NTSTATUS
smb_full_audit_streaminfo(vfs_handle_struct
*handle
,
1595 struct files_struct
*fsp
,
1597 TALLOC_CTX
*mem_ctx
,
1598 unsigned int *pnum_streams
,
1599 struct stream_struct
**pstreams
)
1603 result
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, fname
, mem_ctx
,
1604 pnum_streams
, pstreams
);
1606 do_log(SMB_VFS_OP_STREAMINFO
, NT_STATUS_IS_OK(result
), handle
,
1612 static int smb_full_audit_get_real_filename(struct vfs_handle_struct
*handle
,
1615 TALLOC_CTX
*mem_ctx
,
1620 result
= SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
, mem_ctx
,
1623 do_log(SMB_VFS_OP_GET_REAL_FILENAME
, (result
== 0), handle
,
1624 "%s/%s->%s", path
, name
, (result
== 0) ? "" : *found_name
);
1629 static const char *smb_full_audit_connectpath(vfs_handle_struct
*handle
,
1634 result
= SMB_VFS_NEXT_CONNECTPATH(handle
, fname
);
1636 do_log(SMB_VFS_OP_CONNECTPATH
, result
!= NULL
, handle
,
1642 static NTSTATUS
smb_full_audit_brl_lock_windows(struct vfs_handle_struct
*handle
,
1643 struct byte_range_lock
*br_lck
,
1644 struct lock_struct
*plock
,
1646 struct blocking_lock_record
*blr
)
1650 result
= SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle
, br_lck
, plock
,
1651 blocking_lock
, blr
);
1653 do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS
, NT_STATUS_IS_OK(result
), handle
,
1654 "%s:%llu-%llu. type=%d. blocking=%d", fsp_str_do_log(br_lck
->fsp
),
1655 plock
->start
, plock
->size
, plock
->lock_type
, blocking_lock
);
1660 static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct
*handle
,
1661 struct messaging_context
*msg_ctx
,
1662 struct byte_range_lock
*br_lck
,
1663 const struct lock_struct
*plock
)
1667 result
= SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle
, msg_ctx
, br_lck
,
1670 do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS
, (result
== 0), handle
,
1671 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck
->fsp
), plock
->start
,
1672 plock
->size
, plock
->lock_type
);
1677 static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct
*handle
,
1678 struct byte_range_lock
*br_lck
,
1679 struct lock_struct
*plock
,
1680 struct blocking_lock_record
*blr
)
1684 result
= SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle
, br_lck
, plock
, blr
);
1686 do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS
, (result
== 0), handle
,
1687 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck
->fsp
), plock
->start
,
1688 plock
->size
, plock
->lock_type
);
1693 static bool smb_full_audit_strict_lock(struct vfs_handle_struct
*handle
,
1694 struct files_struct
*fsp
,
1695 struct lock_struct
*plock
)
1699 result
= SMB_VFS_NEXT_STRICT_LOCK(handle
, fsp
, plock
);
1701 do_log(SMB_VFS_OP_STRICT_LOCK
, result
, handle
,
1702 "%s:%llu-%llu:%d", fsp_str_do_log(fsp
), plock
->start
,
1703 plock
->size
, plock
->lock_type
);
1708 static void smb_full_audit_strict_unlock(struct vfs_handle_struct
*handle
,
1709 struct files_struct
*fsp
,
1710 struct lock_struct
*plock
)
1712 SMB_VFS_NEXT_STRICT_UNLOCK(handle
, fsp
, plock
);
1714 do_log(SMB_VFS_OP_STRICT_UNLOCK
, true, handle
,
1715 "%s:%llu-%llu:%d", fsp_str_do_log(fsp
), plock
->start
,
1716 plock
->size
, plock
->lock_type
);
1719 static NTSTATUS
smb_full_audit_translate_name(struct vfs_handle_struct
*handle
,
1721 enum vfs_translate_direction direction
,
1722 TALLOC_CTX
*mem_ctx
,
1727 result
= SMB_VFS_NEXT_TRANSLATE_NAME(handle
, name
, direction
, mem_ctx
,
1730 do_log(SMB_VFS_OP_TRANSLATE_NAME
, NT_STATUS_IS_OK(result
), handle
, "");
1735 static NTSTATUS
smb_full_audit_fget_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1736 uint32 security_info
,
1737 TALLOC_CTX
*mem_ctx
,
1738 struct security_descriptor
**ppdesc
)
1742 result
= SMB_VFS_NEXT_FGET_NT_ACL(handle
, fsp
, security_info
,
1745 do_log(SMB_VFS_OP_FGET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1746 "%s", fsp_str_do_log(fsp
));
1751 static NTSTATUS
smb_full_audit_get_nt_acl(vfs_handle_struct
*handle
,
1753 uint32 security_info
,
1754 TALLOC_CTX
*mem_ctx
,
1755 struct security_descriptor
**ppdesc
)
1759 result
= SMB_VFS_NEXT_GET_NT_ACL(handle
, name
, security_info
,
1762 do_log(SMB_VFS_OP_GET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1768 static NTSTATUS
smb_full_audit_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1769 uint32 security_info_sent
,
1770 const struct security_descriptor
*psd
)
1774 result
= SMB_VFS_NEXT_FSET_NT_ACL(handle
, fsp
, security_info_sent
, psd
);
1776 do_log(SMB_VFS_OP_FSET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
, "%s",
1777 fsp_str_do_log(fsp
));
1782 static int smb_full_audit_chmod_acl(vfs_handle_struct
*handle
,
1783 const char *path
, mode_t mode
)
1787 result
= SMB_VFS_NEXT_CHMOD_ACL(handle
, path
, mode
);
1789 do_log(SMB_VFS_OP_CHMOD_ACL
, (result
>= 0), handle
,
1790 "%s|%o", path
, mode
);
1795 static int smb_full_audit_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1800 result
= SMB_VFS_NEXT_FCHMOD_ACL(handle
, fsp
, mode
);
1802 do_log(SMB_VFS_OP_FCHMOD_ACL
, (result
>= 0), handle
,
1803 "%s|%o", fsp_str_do_log(fsp
), mode
);
1808 static SMB_ACL_T
smb_full_audit_sys_acl_get_file(vfs_handle_struct
*handle
,
1810 SMB_ACL_TYPE_T type
,
1811 TALLOC_CTX
*mem_ctx
)
1815 result
= SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
, type
, mem_ctx
);
1817 do_log(SMB_VFS_OP_SYS_ACL_GET_FILE
, (result
!= NULL
), handle
,
1823 static SMB_ACL_T
smb_full_audit_sys_acl_get_fd(vfs_handle_struct
*handle
,
1824 files_struct
*fsp
, TALLOC_CTX
*mem_ctx
)
1828 result
= SMB_VFS_NEXT_SYS_ACL_GET_FD(handle
, fsp
, mem_ctx
);
1830 do_log(SMB_VFS_OP_SYS_ACL_GET_FD
, (result
!= NULL
), handle
,
1831 "%s", fsp_str_do_log(fsp
));
1836 static int smb_full_audit_sys_acl_blob_get_file(vfs_handle_struct
*handle
,
1838 SMB_ACL_TYPE_T type
,
1839 TALLOC_CTX
*mem_ctx
,
1840 char **blob_description
,
1845 result
= SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FILE(handle
, path_p
, type
, mem_ctx
, blob_description
, blob
);
1847 do_log(SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE
, (result
>= 0), handle
,
1853 static int smb_full_audit_sys_acl_blob_get_fd(vfs_handle_struct
*handle
,
1855 TALLOC_CTX
*mem_ctx
,
1856 char **blob_description
,
1861 result
= SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle
, fsp
, mem_ctx
, blob_description
, blob
);
1863 do_log(SMB_VFS_OP_SYS_ACL_BLOB_GET_FD
, (result
>= 0), handle
,
1864 "%s", fsp_str_do_log(fsp
));
1869 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct
*handle
,
1871 const char *name
, SMB_ACL_TYPE_T acltype
,
1876 result
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
, acltype
,
1879 do_log(SMB_VFS_OP_SYS_ACL_SET_FILE
, (result
>= 0), handle
,
1885 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
1890 result
= SMB_VFS_NEXT_SYS_ACL_SET_FD(handle
, fsp
, theacl
);
1892 do_log(SMB_VFS_OP_SYS_ACL_SET_FD
, (result
>= 0), handle
,
1893 "%s", fsp_str_do_log(fsp
));
1898 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1904 result
= SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, path
);
1906 do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, (result
>= 0), handle
,
1912 static ssize_t
smb_full_audit_getxattr(struct vfs_handle_struct
*handle
,
1914 const char *name
, void *value
, size_t size
)
1918 result
= SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
, size
);
1920 do_log(SMB_VFS_OP_GETXATTR
, (result
>= 0), handle
,
1921 "%s|%s", path
, name
);
1926 static ssize_t
smb_full_audit_fgetxattr(struct vfs_handle_struct
*handle
,
1927 struct files_struct
*fsp
,
1928 const char *name
, void *value
, size_t size
)
1932 result
= SMB_VFS_NEXT_FGETXATTR(handle
, fsp
, name
, value
, size
);
1934 do_log(SMB_VFS_OP_FGETXATTR
, (result
>= 0), handle
,
1935 "%s|%s", fsp_str_do_log(fsp
), name
);
1940 static ssize_t
smb_full_audit_listxattr(struct vfs_handle_struct
*handle
,
1941 const char *path
, char *list
, size_t size
)
1945 result
= SMB_VFS_NEXT_LISTXATTR(handle
, path
, list
, size
);
1947 do_log(SMB_VFS_OP_LISTXATTR
, (result
>= 0), handle
, "%s", path
);
1952 static ssize_t
smb_full_audit_flistxattr(struct vfs_handle_struct
*handle
,
1953 struct files_struct
*fsp
, char *list
,
1958 result
= SMB_VFS_NEXT_FLISTXATTR(handle
, fsp
, list
, size
);
1960 do_log(SMB_VFS_OP_FLISTXATTR
, (result
>= 0), handle
,
1961 "%s", fsp_str_do_log(fsp
));
1966 static int smb_full_audit_removexattr(struct vfs_handle_struct
*handle
,
1972 result
= SMB_VFS_NEXT_REMOVEXATTR(handle
, path
, name
);
1974 do_log(SMB_VFS_OP_REMOVEXATTR
, (result
>= 0), handle
,
1975 "%s|%s", path
, name
);
1980 static int smb_full_audit_fremovexattr(struct vfs_handle_struct
*handle
,
1981 struct files_struct
*fsp
,
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
);
1994 static int smb_full_audit_setxattr(struct vfs_handle_struct
*handle
,
1996 const char *name
, const void *value
, size_t size
,
2001 result
= SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
, size
,
2004 do_log(SMB_VFS_OP_SETXATTR
, (result
>= 0), handle
,
2005 "%s|%s", path
, name
);
2010 static int smb_full_audit_fsetxattr(struct vfs_handle_struct
*handle
,
2011 struct files_struct
*fsp
, const char *name
,
2012 const void *value
, size_t size
, int flags
)
2016 result
= SMB_VFS_NEXT_FSETXATTR(handle
, fsp
, name
, value
, size
, flags
);
2018 do_log(SMB_VFS_OP_FSETXATTR
, (result
>= 0), handle
,
2019 "%s|%s", fsp_str_do_log(fsp
), name
);
2024 static bool smb_full_audit_aio_force(struct vfs_handle_struct
*handle
,
2025 struct files_struct
*fsp
)
2029 result
= SMB_VFS_NEXT_AIO_FORCE(handle
, fsp
);
2030 do_log(SMB_VFS_OP_AIO_FORCE
, result
, handle
,
2031 "%s", fsp_str_do_log(fsp
));
2036 static bool smb_full_audit_is_offline(struct vfs_handle_struct
*handle
,
2037 const struct smb_filename
*fname
,
2038 SMB_STRUCT_STAT
*sbuf
)
2042 result
= SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
2043 do_log(SMB_VFS_OP_IS_OFFLINE
, result
, handle
, "%s",
2044 smb_fname_str_do_log(fname
));
2048 static int smb_full_audit_set_offline(struct vfs_handle_struct
*handle
,
2049 const struct smb_filename
*fname
)
2053 result
= SMB_VFS_NEXT_SET_OFFLINE(handle
, fname
);
2054 do_log(SMB_VFS_OP_SET_OFFLINE
, result
>= 0, handle
, "%s",
2055 smb_fname_str_do_log(fname
));
2059 static struct vfs_fn_pointers vfs_full_audit_fns
= {
2061 /* Disk operations */
2063 .connect_fn
= smb_full_audit_connect
,
2064 .disconnect_fn
= smb_full_audit_disconnect
,
2065 .disk_free_fn
= smb_full_audit_disk_free
,
2066 .get_quota_fn
= smb_full_audit_get_quota
,
2067 .set_quota_fn
= smb_full_audit_set_quota
,
2068 .get_shadow_copy_data_fn
= smb_full_audit_get_shadow_copy_data
,
2069 .statvfs_fn
= smb_full_audit_statvfs
,
2070 .fs_capabilities_fn
= smb_full_audit_fs_capabilities
,
2071 .opendir_fn
= smb_full_audit_opendir
,
2072 .fdopendir_fn
= smb_full_audit_fdopendir
,
2073 .readdir_fn
= smb_full_audit_readdir
,
2074 .seekdir_fn
= smb_full_audit_seekdir
,
2075 .telldir_fn
= smb_full_audit_telldir
,
2076 .rewind_dir_fn
= smb_full_audit_rewinddir
,
2077 .mkdir_fn
= smb_full_audit_mkdir
,
2078 .rmdir_fn
= smb_full_audit_rmdir
,
2079 .closedir_fn
= smb_full_audit_closedir
,
2080 .init_search_op_fn
= smb_full_audit_init_search_op
,
2081 .open_fn
= smb_full_audit_open
,
2082 .create_file_fn
= smb_full_audit_create_file
,
2083 .close_fn
= smb_full_audit_close
,
2084 .read_fn
= smb_full_audit_read
,
2085 .pread_fn
= smb_full_audit_pread
,
2086 .pread_send_fn
= smb_full_audit_pread_send
,
2087 .pread_recv_fn
= smb_full_audit_pread_recv
,
2088 .write_fn
= smb_full_audit_write
,
2089 .pwrite_fn
= smb_full_audit_pwrite
,
2090 .pwrite_send_fn
= smb_full_audit_pwrite_send
,
2091 .pwrite_recv_fn
= smb_full_audit_pwrite_recv
,
2092 .lseek_fn
= smb_full_audit_lseek
,
2093 .sendfile_fn
= smb_full_audit_sendfile
,
2094 .recvfile_fn
= smb_full_audit_recvfile
,
2095 .rename_fn
= smb_full_audit_rename
,
2096 .fsync_fn
= smb_full_audit_fsync
,
2097 .fsync_send_fn
= smb_full_audit_fsync_send
,
2098 .fsync_recv_fn
= smb_full_audit_fsync_recv
,
2099 .stat_fn
= smb_full_audit_stat
,
2100 .fstat_fn
= smb_full_audit_fstat
,
2101 .lstat_fn
= smb_full_audit_lstat
,
2102 .get_alloc_size_fn
= smb_full_audit_get_alloc_size
,
2103 .unlink_fn
= smb_full_audit_unlink
,
2104 .chmod_fn
= smb_full_audit_chmod
,
2105 .fchmod_fn
= smb_full_audit_fchmod
,
2106 .chown_fn
= smb_full_audit_chown
,
2107 .fchown_fn
= smb_full_audit_fchown
,
2108 .lchown_fn
= smb_full_audit_lchown
,
2109 .chdir_fn
= smb_full_audit_chdir
,
2110 .getwd_fn
= smb_full_audit_getwd
,
2111 .ntimes_fn
= smb_full_audit_ntimes
,
2112 .ftruncate_fn
= smb_full_audit_ftruncate
,
2113 .fallocate_fn
= smb_full_audit_fallocate
,
2114 .lock_fn
= smb_full_audit_lock
,
2115 .kernel_flock_fn
= smb_full_audit_kernel_flock
,
2116 .linux_setlease_fn
= smb_full_audit_linux_setlease
,
2117 .getlock_fn
= smb_full_audit_getlock
,
2118 .symlink_fn
= smb_full_audit_symlink
,
2119 .readlink_fn
= smb_full_audit_readlink
,
2120 .link_fn
= smb_full_audit_link
,
2121 .mknod_fn
= smb_full_audit_mknod
,
2122 .realpath_fn
= smb_full_audit_realpath
,
2123 .notify_watch_fn
= smb_full_audit_notify_watch
,
2124 .chflags_fn
= smb_full_audit_chflags
,
2125 .file_id_create_fn
= smb_full_audit_file_id_create
,
2126 .streaminfo_fn
= smb_full_audit_streaminfo
,
2127 .get_real_filename_fn
= smb_full_audit_get_real_filename
,
2128 .connectpath_fn
= smb_full_audit_connectpath
,
2129 .brl_lock_windows_fn
= smb_full_audit_brl_lock_windows
,
2130 .brl_unlock_windows_fn
= smb_full_audit_brl_unlock_windows
,
2131 .brl_cancel_windows_fn
= smb_full_audit_brl_cancel_windows
,
2132 .strict_lock_fn
= smb_full_audit_strict_lock
,
2133 .strict_unlock_fn
= smb_full_audit_strict_unlock
,
2134 .translate_name_fn
= smb_full_audit_translate_name
,
2135 .fget_nt_acl_fn
= smb_full_audit_fget_nt_acl
,
2136 .get_nt_acl_fn
= smb_full_audit_get_nt_acl
,
2137 .fset_nt_acl_fn
= smb_full_audit_fset_nt_acl
,
2138 .chmod_acl_fn
= smb_full_audit_chmod_acl
,
2139 .fchmod_acl_fn
= smb_full_audit_fchmod_acl
,
2140 .sys_acl_get_file_fn
= smb_full_audit_sys_acl_get_file
,
2141 .sys_acl_get_fd_fn
= smb_full_audit_sys_acl_get_fd
,
2142 .sys_acl_blob_get_file_fn
= smb_full_audit_sys_acl_blob_get_file
,
2143 .sys_acl_blob_get_fd_fn
= smb_full_audit_sys_acl_blob_get_fd
,
2144 .sys_acl_set_file_fn
= smb_full_audit_sys_acl_set_file
,
2145 .sys_acl_set_fd_fn
= smb_full_audit_sys_acl_set_fd
,
2146 .sys_acl_delete_def_file_fn
= smb_full_audit_sys_acl_delete_def_file
,
2147 .getxattr_fn
= smb_full_audit_getxattr
,
2148 .fgetxattr_fn
= smb_full_audit_fgetxattr
,
2149 .listxattr_fn
= smb_full_audit_listxattr
,
2150 .flistxattr_fn
= smb_full_audit_flistxattr
,
2151 .removexattr_fn
= smb_full_audit_removexattr
,
2152 .fremovexattr_fn
= smb_full_audit_fremovexattr
,
2153 .setxattr_fn
= smb_full_audit_setxattr
,
2154 .fsetxattr_fn
= smb_full_audit_fsetxattr
,
2155 .aio_force_fn
= smb_full_audit_aio_force
,
2156 .is_offline_fn
= smb_full_audit_is_offline
,
2157 .set_offline_fn
= smb_full_audit_set_offline
,
2160 NTSTATUS
vfs_full_audit_init(void)
2162 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
2163 "full_audit", &vfs_full_audit_fns
);
2165 if (!NT_STATUS_IS_OK(ret
))
2168 vfs_full_audit_debug_level
= debug_add_class("full_audit");
2169 if (vfs_full_audit_debug_level
== -1) {
2170 vfs_full_audit_debug_level
= DBGC_VFS
;
2171 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2174 DEBUG(10, ("vfs_full_audit: Debug class number of "
2175 "'full_audit': %d\n", vfs_full_audit_debug_level
));