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"
70 #include "libcli/security/sddl.h"
71 #include "passdb/machine_sid.h"
73 static int vfs_full_audit_debug_level
= DBGC_VFS
;
75 struct vfs_full_audit_private_data
{
76 struct bitmap
*success_ops
;
77 struct bitmap
*failure_ops
;
85 #define DBGC_CLASS vfs_full_audit_debug_level
87 typedef enum _vfs_op_type
{
92 SMB_VFS_OP_CONNECT
= 0,
93 SMB_VFS_OP_DISCONNECT
,
97 SMB_VFS_OP_GET_SHADOW_COPY_DATA
,
99 SMB_VFS_OP_FS_CAPABILITIES
,
101 /* Directory operations */
104 SMB_VFS_OP_FDOPENDIR
,
108 SMB_VFS_OP_REWINDDIR
,
112 SMB_VFS_OP_INIT_SEARCH_OP
,
114 /* File operations */
117 SMB_VFS_OP_CREATE_FILE
,
121 SMB_VFS_OP_PREAD_SEND
,
122 SMB_VFS_OP_PREAD_RECV
,
125 SMB_VFS_OP_PWRITE_SEND
,
126 SMB_VFS_OP_PWRITE_RECV
,
132 SMB_VFS_OP_FSYNC_SEND
,
133 SMB_VFS_OP_FSYNC_RECV
,
137 SMB_VFS_OP_GET_ALLOC_SIZE
,
147 SMB_VFS_OP_FTRUNCATE
,
148 SMB_VFS_OP_FALLOCATE
,
150 SMB_VFS_OP_KERNEL_FLOCK
,
151 SMB_VFS_OP_LINUX_SETLEASE
,
158 SMB_VFS_OP_NOTIFY_WATCH
,
160 SMB_VFS_OP_FILE_ID_CREATE
,
161 SMB_VFS_OP_STREAMINFO
,
162 SMB_VFS_OP_GET_REAL_FILENAME
,
163 SMB_VFS_OP_CONNECTPATH
,
164 SMB_VFS_OP_BRL_LOCK_WINDOWS
,
165 SMB_VFS_OP_BRL_UNLOCK_WINDOWS
,
166 SMB_VFS_OP_BRL_CANCEL_WINDOWS
,
167 SMB_VFS_OP_STRICT_LOCK
,
168 SMB_VFS_OP_STRICT_UNLOCK
,
169 SMB_VFS_OP_TRANSLATE_NAME
,
170 SMB_VFS_OP_COPY_CHUNK_SEND
,
171 SMB_VFS_OP_COPY_CHUNK_RECV
,
172 SMB_VFS_OP_GET_COMPRESSION
,
173 SMB_VFS_OP_SET_COMPRESSION
,
174 SMB_VFS_OP_READDIR_ATTR
,
176 /* NT ACL operations. */
178 SMB_VFS_OP_FGET_NT_ACL
,
179 SMB_VFS_OP_GET_NT_ACL
,
180 SMB_VFS_OP_FSET_NT_ACL
,
182 /* POSIX ACL operations. */
184 SMB_VFS_OP_CHMOD_ACL
,
185 SMB_VFS_OP_FCHMOD_ACL
,
187 SMB_VFS_OP_SYS_ACL_GET_FILE
,
188 SMB_VFS_OP_SYS_ACL_GET_FD
,
189 SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE
,
190 SMB_VFS_OP_SYS_ACL_BLOB_GET_FD
,
191 SMB_VFS_OP_SYS_ACL_SET_FILE
,
192 SMB_VFS_OP_SYS_ACL_SET_FD
,
193 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
,
197 SMB_VFS_OP_FGETXATTR
,
198 SMB_VFS_OP_LISTXATTR
,
199 SMB_VFS_OP_FLISTXATTR
,
200 SMB_VFS_OP_REMOVEXATTR
,
201 SMB_VFS_OP_FREMOVEXATTR
,
203 SMB_VFS_OP_FSETXATTR
,
206 SMB_VFS_OP_AIO_FORCE
,
208 /* offline operations */
209 SMB_VFS_OP_IS_OFFLINE
,
210 SMB_VFS_OP_SET_OFFLINE
,
212 /* This should always be last enum value */
217 /* The following array *must* be in the same order as defined in vfs_op_type */
223 { SMB_VFS_OP_CONNECT
, "connect" },
224 { SMB_VFS_OP_DISCONNECT
, "disconnect" },
225 { SMB_VFS_OP_DISK_FREE
, "disk_free" },
226 { SMB_VFS_OP_GET_QUOTA
, "get_quota" },
227 { SMB_VFS_OP_SET_QUOTA
, "set_quota" },
228 { SMB_VFS_OP_GET_SHADOW_COPY_DATA
, "get_shadow_copy_data" },
229 { SMB_VFS_OP_STATVFS
, "statvfs" },
230 { SMB_VFS_OP_FS_CAPABILITIES
, "fs_capabilities" },
231 { SMB_VFS_OP_OPENDIR
, "opendir" },
232 { SMB_VFS_OP_FDOPENDIR
, "fdopendir" },
233 { SMB_VFS_OP_READDIR
, "readdir" },
234 { SMB_VFS_OP_SEEKDIR
, "seekdir" },
235 { SMB_VFS_OP_TELLDIR
, "telldir" },
236 { SMB_VFS_OP_REWINDDIR
, "rewinddir" },
237 { SMB_VFS_OP_MKDIR
, "mkdir" },
238 { SMB_VFS_OP_RMDIR
, "rmdir" },
239 { SMB_VFS_OP_CLOSEDIR
, "closedir" },
240 { SMB_VFS_OP_INIT_SEARCH_OP
, "init_search_op" },
241 { SMB_VFS_OP_OPEN
, "open" },
242 { SMB_VFS_OP_CREATE_FILE
, "create_file" },
243 { SMB_VFS_OP_CLOSE
, "close" },
244 { SMB_VFS_OP_READ
, "read" },
245 { SMB_VFS_OP_PREAD
, "pread" },
246 { SMB_VFS_OP_PREAD_SEND
, "pread_send" },
247 { SMB_VFS_OP_PREAD_RECV
, "pread_recv" },
248 { SMB_VFS_OP_WRITE
, "write" },
249 { SMB_VFS_OP_PWRITE
, "pwrite" },
250 { SMB_VFS_OP_PWRITE_SEND
, "pwrite_send" },
251 { SMB_VFS_OP_PWRITE_RECV
, "pwrite_recv" },
252 { SMB_VFS_OP_LSEEK
, "lseek" },
253 { SMB_VFS_OP_SENDFILE
, "sendfile" },
254 { SMB_VFS_OP_RECVFILE
, "recvfile" },
255 { SMB_VFS_OP_RENAME
, "rename" },
256 { SMB_VFS_OP_FSYNC
, "fsync" },
257 { SMB_VFS_OP_FSYNC_SEND
, "fsync_send" },
258 { SMB_VFS_OP_FSYNC_RECV
, "fsync_recv" },
259 { SMB_VFS_OP_STAT
, "stat" },
260 { SMB_VFS_OP_FSTAT
, "fstat" },
261 { SMB_VFS_OP_LSTAT
, "lstat" },
262 { SMB_VFS_OP_GET_ALLOC_SIZE
, "get_alloc_size" },
263 { SMB_VFS_OP_UNLINK
, "unlink" },
264 { SMB_VFS_OP_CHMOD
, "chmod" },
265 { SMB_VFS_OP_FCHMOD
, "fchmod" },
266 { SMB_VFS_OP_CHOWN
, "chown" },
267 { SMB_VFS_OP_FCHOWN
, "fchown" },
268 { SMB_VFS_OP_LCHOWN
, "lchown" },
269 { SMB_VFS_OP_CHDIR
, "chdir" },
270 { SMB_VFS_OP_GETWD
, "getwd" },
271 { SMB_VFS_OP_NTIMES
, "ntimes" },
272 { SMB_VFS_OP_FTRUNCATE
, "ftruncate" },
273 { SMB_VFS_OP_FALLOCATE
,"fallocate" },
274 { SMB_VFS_OP_LOCK
, "lock" },
275 { SMB_VFS_OP_KERNEL_FLOCK
, "kernel_flock" },
276 { SMB_VFS_OP_LINUX_SETLEASE
, "linux_setlease" },
277 { SMB_VFS_OP_GETLOCK
, "getlock" },
278 { SMB_VFS_OP_SYMLINK
, "symlink" },
279 { SMB_VFS_OP_READLINK
, "readlink" },
280 { SMB_VFS_OP_LINK
, "link" },
281 { SMB_VFS_OP_MKNOD
, "mknod" },
282 { SMB_VFS_OP_REALPATH
, "realpath" },
283 { SMB_VFS_OP_NOTIFY_WATCH
, "notify_watch" },
284 { SMB_VFS_OP_CHFLAGS
, "chflags" },
285 { SMB_VFS_OP_FILE_ID_CREATE
, "file_id_create" },
286 { SMB_VFS_OP_STREAMINFO
, "streaminfo" },
287 { SMB_VFS_OP_GET_REAL_FILENAME
, "get_real_filename" },
288 { SMB_VFS_OP_CONNECTPATH
, "connectpath" },
289 { SMB_VFS_OP_BRL_LOCK_WINDOWS
, "brl_lock_windows" },
290 { SMB_VFS_OP_BRL_UNLOCK_WINDOWS
, "brl_unlock_windows" },
291 { SMB_VFS_OP_BRL_CANCEL_WINDOWS
, "brl_cancel_windows" },
292 { SMB_VFS_OP_STRICT_LOCK
, "strict_lock" },
293 { SMB_VFS_OP_STRICT_UNLOCK
, "strict_unlock" },
294 { SMB_VFS_OP_TRANSLATE_NAME
, "translate_name" },
295 { SMB_VFS_OP_COPY_CHUNK_SEND
, "copy_chunk_send" },
296 { SMB_VFS_OP_COPY_CHUNK_RECV
, "copy_chunk_recv" },
297 { SMB_VFS_OP_GET_COMPRESSION
, "get_compression" },
298 { SMB_VFS_OP_SET_COMPRESSION
, "set_compression" },
299 { SMB_VFS_OP_READDIR_ATTR
, "readdir_attr" },
300 { SMB_VFS_OP_FGET_NT_ACL
, "fget_nt_acl" },
301 { SMB_VFS_OP_GET_NT_ACL
, "get_nt_acl" },
302 { SMB_VFS_OP_FSET_NT_ACL
, "fset_nt_acl" },
303 { SMB_VFS_OP_CHMOD_ACL
, "chmod_acl" },
304 { SMB_VFS_OP_FCHMOD_ACL
, "fchmod_acl" },
305 { SMB_VFS_OP_SYS_ACL_GET_FILE
, "sys_acl_get_file" },
306 { SMB_VFS_OP_SYS_ACL_GET_FD
, "sys_acl_get_fd" },
307 { SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE
, "sys_acl_blob_get_file" },
308 { SMB_VFS_OP_SYS_ACL_BLOB_GET_FD
, "sys_acl_blob_get_fd" },
309 { SMB_VFS_OP_SYS_ACL_SET_FILE
, "sys_acl_set_file" },
310 { SMB_VFS_OP_SYS_ACL_SET_FD
, "sys_acl_set_fd" },
311 { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, "sys_acl_delete_def_file" },
312 { SMB_VFS_OP_GETXATTR
, "getxattr" },
313 { SMB_VFS_OP_FGETXATTR
, "fgetxattr" },
314 { SMB_VFS_OP_LISTXATTR
, "listxattr" },
315 { SMB_VFS_OP_FLISTXATTR
, "flistxattr" },
316 { SMB_VFS_OP_REMOVEXATTR
, "removexattr" },
317 { SMB_VFS_OP_FREMOVEXATTR
, "fremovexattr" },
318 { SMB_VFS_OP_SETXATTR
, "setxattr" },
319 { SMB_VFS_OP_FSETXATTR
, "fsetxattr" },
320 { SMB_VFS_OP_AIO_FORCE
, "aio_force" },
321 { SMB_VFS_OP_IS_OFFLINE
, "is_offline" },
322 { SMB_VFS_OP_SET_OFFLINE
, "set_offline" },
323 { SMB_VFS_OP_LAST
, NULL
}
326 static int audit_syslog_facility(vfs_handle_struct
*handle
)
328 static const struct enum_list enum_log_facilities
[] = {
329 { LOG_USER
, "USER" },
330 { LOG_LOCAL0
, "LOCAL0" },
331 { LOG_LOCAL1
, "LOCAL1" },
332 { LOG_LOCAL2
, "LOCAL2" },
333 { LOG_LOCAL3
, "LOCAL3" },
334 { LOG_LOCAL4
, "LOCAL4" },
335 { LOG_LOCAL5
, "LOCAL5" },
336 { LOG_LOCAL6
, "LOCAL6" },
337 { LOG_LOCAL7
, "LOCAL7" },
343 facility
= lp_parm_enum(SNUM(handle
->conn
), "full_audit", "facility", enum_log_facilities
, LOG_USER
);
348 static int audit_syslog_priority(vfs_handle_struct
*handle
)
350 static const struct enum_list enum_log_priorities
[] = {
351 { LOG_EMERG
, "EMERG" },
352 { LOG_ALERT
, "ALERT" },
353 { LOG_CRIT
, "CRIT" },
355 { LOG_WARNING
, "WARNING" },
356 { LOG_NOTICE
, "NOTICE" },
357 { LOG_INFO
, "INFO" },
358 { LOG_DEBUG
, "DEBUG" },
364 priority
= lp_parm_enum(SNUM(handle
->conn
), "full_audit", "priority",
365 enum_log_priorities
, LOG_NOTICE
);
366 if (priority
== -1) {
367 priority
= LOG_WARNING
;
373 static char *audit_prefix(TALLOC_CTX
*ctx
, connection_struct
*conn
)
378 prefix
= talloc_strdup(ctx
,
379 lp_parm_const_string(SNUM(conn
), "full_audit",
384 result
= talloc_sub_advanced(ctx
,
385 lp_servicename(talloc_tos(), SNUM(conn
)),
386 conn
->session_info
->unix_info
->unix_name
,
388 conn
->session_info
->unix_token
->gid
,
389 conn
->session_info
->unix_info
->sanitized_username
,
390 conn
->session_info
->info
->domain_name
,
396 static bool log_success(struct vfs_full_audit_private_data
*pd
, vfs_op_type op
)
398 if (pd
->success_ops
== NULL
) {
402 return bitmap_query(pd
->success_ops
, op
);
405 static bool log_failure(struct vfs_full_audit_private_data
*pd
, vfs_op_type op
)
407 if (pd
->failure_ops
== NULL
)
410 return bitmap_query(pd
->failure_ops
, op
);
413 static struct bitmap
*init_bitmap(TALLOC_CTX
*mem_ctx
, const char **ops
)
421 bm
= bitmap_talloc(mem_ctx
, SMB_VFS_OP_LAST
);
423 DEBUG(0, ("Could not alloc bitmap -- "
424 "defaulting to logging everything\n"));
428 for (; *ops
!= NULL
; ops
+= 1) {
433 if (strequal(*ops
, "all")) {
434 for (i
=0; i
<SMB_VFS_OP_LAST
; i
++) {
440 if (strequal(*ops
, "none")) {
450 for (i
=0; i
<SMB_VFS_OP_LAST
; i
++) {
451 if ((vfs_op_names
[i
].name
== NULL
)
452 || (vfs_op_names
[i
].type
!= i
)) {
453 smb_panic("vfs_full_audit.c: name table not "
454 "in sync with vfs_op_type enums\n");
456 if (strequal(op
, vfs_op_names
[i
].name
)) {
465 if (i
== SMB_VFS_OP_LAST
) {
466 DEBUG(0, ("Could not find opname %s, logging all\n",
475 static const char *audit_opname(vfs_op_type op
)
477 if (op
>= SMB_VFS_OP_LAST
)
478 return "INVALID VFS OP";
479 return vfs_op_names
[op
].name
;
482 static TALLOC_CTX
*tmp_do_log_ctx
;
484 * Get us a temporary talloc context usable just for DEBUG arguments
486 static TALLOC_CTX
*do_log_ctx(void)
488 if (tmp_do_log_ctx
== NULL
) {
489 tmp_do_log_ctx
= talloc_named_const(NULL
, 0, "do_log_ctx");
491 return tmp_do_log_ctx
;
494 static void do_log(vfs_op_type op
, bool success
, vfs_handle_struct
*handle
,
495 const char *format
, ...)
497 struct vfs_full_audit_private_data
*pd
;
499 char *audit_pre
= NULL
;
503 SMB_VFS_HANDLE_GET_DATA(handle
, pd
,
504 struct vfs_full_audit_private_data
,
507 if (success
&& (!log_success(pd
, op
)))
510 if (!success
&& (!log_failure(pd
, op
)))
514 fstrcpy(err_msg
, "ok");
516 fstr_sprintf(err_msg
, "fail (%s)", strerror(errno
));
518 va_start(ap
, format
);
519 op_msg
= talloc_vasprintf(talloc_tos(), format
, ap
);
526 audit_pre
= audit_prefix(talloc_tos(), handle
->conn
);
532 * Specify the facility to interoperate with other syslog
533 * callers (smbd for example).
535 priority
= pd
->syslog_priority
| pd
->syslog_facility
;
537 syslog(priority
, "%s|%s|%s|%s\n",
538 audit_pre
? audit_pre
: "",
539 audit_opname(op
), err_msg
, op_msg
);
541 DEBUG(1, ("%s|%s|%s|%s\n",
542 audit_pre
? audit_pre
: "",
543 audit_opname(op
), err_msg
, op_msg
));
546 TALLOC_FREE(audit_pre
);
548 TALLOC_FREE(tmp_do_log_ctx
);
552 * Return a string using the do_log_ctx()
554 static const char *smb_fname_str_do_log(const struct smb_filename
*smb_fname
)
559 if (smb_fname
== NULL
) {
562 status
= get_full_smb_filename(do_log_ctx(), smb_fname
, &fname
);
563 if (!NT_STATUS_IS_OK(status
)) {
570 * Return an fsp debug string using the do_log_ctx()
572 static const char *fsp_str_do_log(const struct files_struct
*fsp
)
574 return smb_fname_str_do_log(fsp
->fsp_name
);
577 /* Implementation of vfs_ops. Pass everything on to the default
578 operation but log event first. */
580 static int smb_full_audit_connect(vfs_handle_struct
*handle
,
581 const char *svc
, const char *user
)
584 struct vfs_full_audit_private_data
*pd
= NULL
;
586 result
= SMB_VFS_NEXT_CONNECT(handle
, svc
, user
);
591 pd
= talloc_zero(handle
, struct vfs_full_audit_private_data
);
593 SMB_VFS_NEXT_DISCONNECT(handle
);
597 pd
->syslog_facility
= audit_syslog_facility(handle
);
598 if (pd
->syslog_facility
== -1) {
599 DEBUG(1, ("%s: Unknown facility %s\n", __func__
,
600 lp_parm_const_string(SNUM(handle
->conn
),
601 "full_audit", "facility",
603 SMB_VFS_NEXT_DISCONNECT(handle
);
607 pd
->syslog_priority
= audit_syslog_priority(handle
);
609 pd
->log_secdesc
= lp_parm_bool(SNUM(handle
->conn
),
610 "full_audit", "log_secdesc", false);
612 pd
->do_syslog
= lp_parm_bool(SNUM(handle
->conn
),
613 "full_audit", "syslog", true);
617 openlog("smbd_audit", 0, pd
->syslog_facility
);
621 pd
->success_ops
= init_bitmap(
622 pd
, lp_parm_string_list(SNUM(handle
->conn
), "full_audit",
624 pd
->failure_ops
= init_bitmap(
625 pd
, lp_parm_string_list(SNUM(handle
->conn
), "full_audit",
628 /* Store the private data. */
629 SMB_VFS_HANDLE_SET_DATA(handle
, pd
, NULL
,
630 struct vfs_full_audit_private_data
, return -1);
632 do_log(SMB_VFS_OP_CONNECT
, True
, handle
,
638 static void smb_full_audit_disconnect(vfs_handle_struct
*handle
)
640 SMB_VFS_NEXT_DISCONNECT(handle
);
642 do_log(SMB_VFS_OP_DISCONNECT
, True
, handle
,
643 "%s", lp_servicename(talloc_tos(), SNUM(handle
->conn
)));
645 /* The bitmaps will be disconnected when the private
649 static uint64_t smb_full_audit_disk_free(vfs_handle_struct
*handle
,
651 bool small_query
, uint64_t *bsize
,
652 uint64_t *dfree
, uint64_t *dsize
)
656 result
= SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
, bsize
,
659 /* Don't have a reasonable notion of failure here */
661 do_log(SMB_VFS_OP_DISK_FREE
, True
, handle
, "%s", path
);
666 static int smb_full_audit_get_quota(struct vfs_handle_struct
*handle
,
667 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
672 result
= SMB_VFS_NEXT_GET_QUOTA(handle
, qtype
, id
, qt
);
674 do_log(SMB_VFS_OP_GET_QUOTA
, (result
>= 0), handle
, "");
680 static int smb_full_audit_set_quota(struct vfs_handle_struct
*handle
,
681 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
686 result
= SMB_VFS_NEXT_SET_QUOTA(handle
, qtype
, id
, qt
);
688 do_log(SMB_VFS_OP_SET_QUOTA
, (result
>= 0), handle
, "");
693 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct
*handle
,
694 struct files_struct
*fsp
,
695 struct shadow_copy_data
*shadow_copy_data
,
700 result
= SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle
, fsp
, shadow_copy_data
, labels
);
702 do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA
, (result
>= 0), handle
, "");
707 static int smb_full_audit_statvfs(struct vfs_handle_struct
*handle
,
709 struct vfs_statvfs_struct
*statbuf
)
713 result
= SMB_VFS_NEXT_STATVFS(handle
, path
, statbuf
);
715 do_log(SMB_VFS_OP_STATVFS
, (result
>= 0), handle
, "");
720 static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct
*handle
, enum timestamp_set_resolution
*p_ts_res
)
724 result
= SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
);
726 do_log(SMB_VFS_OP_FS_CAPABILITIES
, true, handle
, "");
731 static DIR *smb_full_audit_opendir(vfs_handle_struct
*handle
,
732 const char *fname
, const char *mask
, uint32 attr
)
736 result
= SMB_VFS_NEXT_OPENDIR(handle
, fname
, mask
, attr
);
738 do_log(SMB_VFS_OP_OPENDIR
, (result
!= NULL
), handle
, "%s", fname
);
743 static DIR *smb_full_audit_fdopendir(vfs_handle_struct
*handle
,
744 files_struct
*fsp
, const char *mask
, uint32 attr
)
748 result
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
750 do_log(SMB_VFS_OP_FDOPENDIR
, (result
!= NULL
), handle
, "%s",
751 fsp_str_do_log(fsp
));
756 static struct dirent
*smb_full_audit_readdir(vfs_handle_struct
*handle
,
757 DIR *dirp
, SMB_STRUCT_STAT
*sbuf
)
759 struct dirent
*result
;
761 result
= SMB_VFS_NEXT_READDIR(handle
, dirp
, sbuf
);
763 /* This operation has no reasonable error condition
764 * (End of dir is also failure), so always succeed.
766 do_log(SMB_VFS_OP_READDIR
, True
, handle
, "");
771 static void smb_full_audit_seekdir(vfs_handle_struct
*handle
,
772 DIR *dirp
, long offset
)
774 SMB_VFS_NEXT_SEEKDIR(handle
, dirp
, offset
);
776 do_log(SMB_VFS_OP_SEEKDIR
, True
, handle
, "");
779 static long smb_full_audit_telldir(vfs_handle_struct
*handle
,
784 result
= SMB_VFS_NEXT_TELLDIR(handle
, dirp
);
786 do_log(SMB_VFS_OP_TELLDIR
, True
, handle
, "");
791 static void smb_full_audit_rewinddir(vfs_handle_struct
*handle
,
794 SMB_VFS_NEXT_REWINDDIR(handle
, dirp
);
796 do_log(SMB_VFS_OP_REWINDDIR
, True
, handle
, "");
799 static int smb_full_audit_mkdir(vfs_handle_struct
*handle
,
800 const char *path
, mode_t mode
)
804 result
= SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
806 do_log(SMB_VFS_OP_MKDIR
, (result
>= 0), handle
, "%s", path
);
811 static int smb_full_audit_rmdir(vfs_handle_struct
*handle
,
816 result
= SMB_VFS_NEXT_RMDIR(handle
, path
);
818 do_log(SMB_VFS_OP_RMDIR
, (result
>= 0), handle
, "%s", path
);
823 static int smb_full_audit_closedir(vfs_handle_struct
*handle
,
828 result
= SMB_VFS_NEXT_CLOSEDIR(handle
, dirp
);
830 do_log(SMB_VFS_OP_CLOSEDIR
, (result
>= 0), handle
, "");
835 static void smb_full_audit_init_search_op(vfs_handle_struct
*handle
,
838 SMB_VFS_NEXT_INIT_SEARCH_OP(handle
, dirp
);
840 do_log(SMB_VFS_OP_INIT_SEARCH_OP
, True
, handle
, "");
843 static int smb_full_audit_open(vfs_handle_struct
*handle
,
844 struct smb_filename
*smb_fname
,
845 files_struct
*fsp
, int flags
, mode_t mode
)
849 result
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
851 do_log(SMB_VFS_OP_OPEN
, (result
>= 0), handle
, "%s|%s",
852 ((flags
& O_WRONLY
) || (flags
& O_RDWR
))?"w":"r",
853 smb_fname_str_do_log(smb_fname
));
858 static NTSTATUS
smb_full_audit_create_file(vfs_handle_struct
*handle
,
859 struct smb_request
*req
,
860 uint16_t root_dir_fid
,
861 struct smb_filename
*smb_fname
,
862 uint32_t access_mask
,
863 uint32_t share_access
,
864 uint32_t create_disposition
,
865 uint32_t create_options
,
866 uint32_t file_attributes
,
867 uint32_t oplock_request
,
868 struct smb2_lease
*lease
,
869 uint64_t allocation_size
,
870 uint32_t private_flags
,
871 struct security_descriptor
*sd
,
872 struct ea_list
*ea_list
,
873 files_struct
**result_fsp
,
875 const struct smb2_create_blobs
*in_context_blobs
,
876 struct smb2_create_blobs
*out_context_blobs
)
879 const char* str_create_disposition
;
881 switch (create_disposition
) {
883 str_create_disposition
= "supersede";
885 case FILE_OVERWRITE_IF
:
886 str_create_disposition
= "overwrite_if";
889 str_create_disposition
= "open";
892 str_create_disposition
= "overwrite";
895 str_create_disposition
= "create";
898 str_create_disposition
= "open_if";
901 str_create_disposition
= "unknown";
904 result
= SMB_VFS_NEXT_CREATE_FILE(
907 root_dir_fid
, /* root_dir_fid */
908 smb_fname
, /* fname */
909 access_mask
, /* access_mask */
910 share_access
, /* share_access */
911 create_disposition
, /* create_disposition*/
912 create_options
, /* create_options */
913 file_attributes
, /* file_attributes */
914 oplock_request
, /* oplock_request */
916 allocation_size
, /* allocation_size */
919 ea_list
, /* ea_list */
920 result_fsp
, /* result */
922 in_context_blobs
, out_context_blobs
); /* create context */
924 do_log(SMB_VFS_OP_CREATE_FILE
, (NT_STATUS_IS_OK(result
)), handle
,
925 "0x%x|%s|%s|%s", access_mask
,
926 create_options
& FILE_DIRECTORY_FILE
? "dir" : "file",
927 str_create_disposition
, smb_fname_str_do_log(smb_fname
));
932 static int smb_full_audit_close(vfs_handle_struct
*handle
, files_struct
*fsp
)
936 result
= SMB_VFS_NEXT_CLOSE(handle
, fsp
);
938 do_log(SMB_VFS_OP_CLOSE
, (result
>= 0), handle
, "%s",
939 fsp_str_do_log(fsp
));
944 static ssize_t
smb_full_audit_read(vfs_handle_struct
*handle
, files_struct
*fsp
,
945 void *data
, size_t n
)
949 result
= SMB_VFS_NEXT_READ(handle
, fsp
, data
, n
);
951 do_log(SMB_VFS_OP_READ
, (result
>= 0), handle
, "%s",
952 fsp_str_do_log(fsp
));
957 static ssize_t
smb_full_audit_pread(vfs_handle_struct
*handle
, files_struct
*fsp
,
958 void *data
, size_t n
, off_t offset
)
962 result
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
964 do_log(SMB_VFS_OP_PREAD
, (result
>= 0), handle
, "%s",
965 fsp_str_do_log(fsp
));
970 struct smb_full_audit_pread_state
{
971 vfs_handle_struct
*handle
;
977 static void smb_full_audit_pread_done(struct tevent_req
*subreq
);
979 static struct tevent_req
*smb_full_audit_pread_send(
980 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
981 struct tevent_context
*ev
, struct files_struct
*fsp
,
982 void *data
, size_t n
, off_t offset
)
984 struct tevent_req
*req
, *subreq
;
985 struct smb_full_audit_pread_state
*state
;
987 req
= tevent_req_create(mem_ctx
, &state
,
988 struct smb_full_audit_pread_state
);
990 do_log(SMB_VFS_OP_PREAD_SEND
, false, handle
, "%s",
991 fsp_str_do_log(fsp
));
994 state
->handle
= handle
;
997 subreq
= SMB_VFS_NEXT_PREAD_SEND(state
, ev
, handle
, fsp
, data
,
999 if (tevent_req_nomem(subreq
, req
)) {
1000 do_log(SMB_VFS_OP_PREAD_SEND
, false, handle
, "%s",
1001 fsp_str_do_log(fsp
));
1002 return tevent_req_post(req
, ev
);
1004 tevent_req_set_callback(subreq
, smb_full_audit_pread_done
, req
);
1006 do_log(SMB_VFS_OP_PREAD_SEND
, true, handle
, "%s", fsp_str_do_log(fsp
));
1010 static void smb_full_audit_pread_done(struct tevent_req
*subreq
)
1012 struct tevent_req
*req
= tevent_req_callback_data(
1013 subreq
, struct tevent_req
);
1014 struct smb_full_audit_pread_state
*state
= tevent_req_data(
1015 req
, struct smb_full_audit_pread_state
);
1017 state
->ret
= SMB_VFS_PREAD_RECV(subreq
, &state
->err
);
1018 TALLOC_FREE(subreq
);
1019 tevent_req_done(req
);
1022 static ssize_t
smb_full_audit_pread_recv(struct tevent_req
*req
, int *err
)
1024 struct smb_full_audit_pread_state
*state
= tevent_req_data(
1025 req
, struct smb_full_audit_pread_state
);
1027 if (tevent_req_is_unix_error(req
, err
)) {
1028 do_log(SMB_VFS_OP_PREAD_RECV
, false, state
->handle
, "%s",
1029 fsp_str_do_log(state
->fsp
));
1033 do_log(SMB_VFS_OP_PREAD_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
1034 fsp_str_do_log(state
->fsp
));
1040 static ssize_t
smb_full_audit_write(vfs_handle_struct
*handle
, files_struct
*fsp
,
1041 const void *data
, size_t n
)
1045 result
= SMB_VFS_NEXT_WRITE(handle
, fsp
, data
, n
);
1047 do_log(SMB_VFS_OP_WRITE
, (result
>= 0), handle
, "%s",
1048 fsp_str_do_log(fsp
));
1053 static ssize_t
smb_full_audit_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
,
1054 const void *data
, size_t n
,
1059 result
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
1061 do_log(SMB_VFS_OP_PWRITE
, (result
>= 0), handle
, "%s",
1062 fsp_str_do_log(fsp
));
1067 struct smb_full_audit_pwrite_state
{
1068 vfs_handle_struct
*handle
;
1074 static void smb_full_audit_pwrite_done(struct tevent_req
*subreq
);
1076 static struct tevent_req
*smb_full_audit_pwrite_send(
1077 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
1078 struct tevent_context
*ev
, struct files_struct
*fsp
,
1079 const void *data
, size_t n
, off_t offset
)
1081 struct tevent_req
*req
, *subreq
;
1082 struct smb_full_audit_pwrite_state
*state
;
1084 req
= tevent_req_create(mem_ctx
, &state
,
1085 struct smb_full_audit_pwrite_state
);
1087 do_log(SMB_VFS_OP_PWRITE_SEND
, false, handle
, "%s",
1088 fsp_str_do_log(fsp
));
1091 state
->handle
= handle
;
1094 subreq
= SMB_VFS_NEXT_PWRITE_SEND(state
, ev
, handle
, fsp
, data
,
1096 if (tevent_req_nomem(subreq
, req
)) {
1097 do_log(SMB_VFS_OP_PWRITE_SEND
, false, handle
, "%s",
1098 fsp_str_do_log(fsp
));
1099 return tevent_req_post(req
, ev
);
1101 tevent_req_set_callback(subreq
, smb_full_audit_pwrite_done
, req
);
1103 do_log(SMB_VFS_OP_PWRITE_SEND
, true, handle
, "%s",
1104 fsp_str_do_log(fsp
));
1108 static void smb_full_audit_pwrite_done(struct tevent_req
*subreq
)
1110 struct tevent_req
*req
= tevent_req_callback_data(
1111 subreq
, struct tevent_req
);
1112 struct smb_full_audit_pwrite_state
*state
= tevent_req_data(
1113 req
, struct smb_full_audit_pwrite_state
);
1115 state
->ret
= SMB_VFS_PWRITE_RECV(subreq
, &state
->err
);
1116 TALLOC_FREE(subreq
);
1117 tevent_req_done(req
);
1120 static ssize_t
smb_full_audit_pwrite_recv(struct tevent_req
*req
, int *err
)
1122 struct smb_full_audit_pwrite_state
*state
= tevent_req_data(
1123 req
, struct smb_full_audit_pwrite_state
);
1125 if (tevent_req_is_unix_error(req
, err
)) {
1126 do_log(SMB_VFS_OP_PWRITE_RECV
, false, state
->handle
, "%s",
1127 fsp_str_do_log(state
->fsp
));
1131 do_log(SMB_VFS_OP_PWRITE_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
1132 fsp_str_do_log(state
->fsp
));
1138 static off_t
smb_full_audit_lseek(vfs_handle_struct
*handle
, files_struct
*fsp
,
1139 off_t offset
, int whence
)
1143 result
= SMB_VFS_NEXT_LSEEK(handle
, fsp
, offset
, whence
);
1145 do_log(SMB_VFS_OP_LSEEK
, (result
!= (ssize_t
)-1), handle
,
1146 "%s", fsp_str_do_log(fsp
));
1151 static ssize_t
smb_full_audit_sendfile(vfs_handle_struct
*handle
, int tofd
,
1152 files_struct
*fromfsp
,
1153 const DATA_BLOB
*hdr
, off_t offset
,
1158 result
= SMB_VFS_NEXT_SENDFILE(handle
, tofd
, fromfsp
, hdr
, offset
, n
);
1160 do_log(SMB_VFS_OP_SENDFILE
, (result
>= 0), handle
,
1161 "%s", fsp_str_do_log(fromfsp
));
1166 static ssize_t
smb_full_audit_recvfile(vfs_handle_struct
*handle
, int fromfd
,
1167 files_struct
*tofsp
,
1173 result
= SMB_VFS_NEXT_RECVFILE(handle
, fromfd
, tofsp
, offset
, n
);
1175 do_log(SMB_VFS_OP_RECVFILE
, (result
>= 0), handle
,
1176 "%s", fsp_str_do_log(tofsp
));
1181 static int smb_full_audit_rename(vfs_handle_struct
*handle
,
1182 const struct smb_filename
*smb_fname_src
,
1183 const struct smb_filename
*smb_fname_dst
)
1187 result
= SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
, smb_fname_dst
);
1189 do_log(SMB_VFS_OP_RENAME
, (result
>= 0), handle
, "%s|%s",
1190 smb_fname_str_do_log(smb_fname_src
),
1191 smb_fname_str_do_log(smb_fname_dst
));
1196 static int smb_full_audit_fsync(vfs_handle_struct
*handle
, files_struct
*fsp
)
1200 result
= SMB_VFS_NEXT_FSYNC(handle
, fsp
);
1202 do_log(SMB_VFS_OP_FSYNC
, (result
>= 0), handle
, "%s",
1203 fsp_str_do_log(fsp
));
1208 struct smb_full_audit_fsync_state
{
1209 vfs_handle_struct
*handle
;
1215 static void smb_full_audit_fsync_done(struct tevent_req
*subreq
);
1217 static struct tevent_req
*smb_full_audit_fsync_send(
1218 struct vfs_handle_struct
*handle
, TALLOC_CTX
*mem_ctx
,
1219 struct tevent_context
*ev
, struct files_struct
*fsp
)
1221 struct tevent_req
*req
, *subreq
;
1222 struct smb_full_audit_fsync_state
*state
;
1224 req
= tevent_req_create(mem_ctx
, &state
,
1225 struct smb_full_audit_fsync_state
);
1227 do_log(SMB_VFS_OP_FSYNC_SEND
, false, handle
, "%s",
1228 fsp_str_do_log(fsp
));
1231 state
->handle
= handle
;
1234 subreq
= SMB_VFS_NEXT_FSYNC_SEND(state
, ev
, handle
, fsp
);
1235 if (tevent_req_nomem(subreq
, req
)) {
1236 do_log(SMB_VFS_OP_FSYNC_SEND
, false, handle
, "%s",
1237 fsp_str_do_log(fsp
));
1238 return tevent_req_post(req
, ev
);
1240 tevent_req_set_callback(subreq
, smb_full_audit_fsync_done
, req
);
1242 do_log(SMB_VFS_OP_FSYNC_SEND
, true, handle
, "%s", fsp_str_do_log(fsp
));
1246 static void smb_full_audit_fsync_done(struct tevent_req
*subreq
)
1248 struct tevent_req
*req
= tevent_req_callback_data(
1249 subreq
, struct tevent_req
);
1250 struct smb_full_audit_fsync_state
*state
= tevent_req_data(
1251 req
, struct smb_full_audit_fsync_state
);
1253 state
->ret
= SMB_VFS_FSYNC_RECV(subreq
, &state
->err
);
1254 TALLOC_FREE(subreq
);
1255 tevent_req_done(req
);
1258 static int smb_full_audit_fsync_recv(struct tevent_req
*req
, int *err
)
1260 struct smb_full_audit_fsync_state
*state
= tevent_req_data(
1261 req
, struct smb_full_audit_fsync_state
);
1263 if (tevent_req_is_unix_error(req
, err
)) {
1264 do_log(SMB_VFS_OP_FSYNC_RECV
, false, state
->handle
, "%s",
1265 fsp_str_do_log(state
->fsp
));
1269 do_log(SMB_VFS_OP_FSYNC_RECV
, (state
->ret
>= 0), state
->handle
, "%s",
1270 fsp_str_do_log(state
->fsp
));
1276 static int smb_full_audit_stat(vfs_handle_struct
*handle
,
1277 struct smb_filename
*smb_fname
)
1281 result
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1283 do_log(SMB_VFS_OP_STAT
, (result
>= 0), handle
, "%s",
1284 smb_fname_str_do_log(smb_fname
));
1289 static int smb_full_audit_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
,
1290 SMB_STRUCT_STAT
*sbuf
)
1294 result
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1296 do_log(SMB_VFS_OP_FSTAT
, (result
>= 0), handle
, "%s",
1297 fsp_str_do_log(fsp
));
1302 static int smb_full_audit_lstat(vfs_handle_struct
*handle
,
1303 struct smb_filename
*smb_fname
)
1307 result
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1309 do_log(SMB_VFS_OP_LSTAT
, (result
>= 0), handle
, "%s",
1310 smb_fname_str_do_log(smb_fname
));
1315 static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct
*handle
,
1316 files_struct
*fsp
, const SMB_STRUCT_STAT
*sbuf
)
1320 result
= SMB_VFS_NEXT_GET_ALLOC_SIZE(handle
, fsp
, sbuf
);
1322 do_log(SMB_VFS_OP_GET_ALLOC_SIZE
, (result
!= (uint64_t)-1), handle
,
1328 static int smb_full_audit_unlink(vfs_handle_struct
*handle
,
1329 const struct smb_filename
*smb_fname
)
1333 result
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
1335 do_log(SMB_VFS_OP_UNLINK
, (result
>= 0), handle
, "%s",
1336 smb_fname_str_do_log(smb_fname
));
1341 static int smb_full_audit_chmod(vfs_handle_struct
*handle
,
1342 const char *path
, mode_t mode
)
1346 result
= SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1348 do_log(SMB_VFS_OP_CHMOD
, (result
>= 0), handle
, "%s|%o", path
, mode
);
1353 static int smb_full_audit_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
,
1358 result
= SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
1360 do_log(SMB_VFS_OP_FCHMOD
, (result
>= 0), handle
,
1361 "%s|%o", fsp_str_do_log(fsp
), mode
);
1366 static int smb_full_audit_chown(vfs_handle_struct
*handle
,
1367 const char *path
, uid_t uid
, gid_t gid
)
1371 result
= SMB_VFS_NEXT_CHOWN(handle
, path
, uid
, gid
);
1373 do_log(SMB_VFS_OP_CHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1374 path
, (long int)uid
, (long int)gid
);
1379 static int smb_full_audit_fchown(vfs_handle_struct
*handle
, files_struct
*fsp
,
1380 uid_t uid
, gid_t gid
)
1384 result
= SMB_VFS_NEXT_FCHOWN(handle
, fsp
, uid
, gid
);
1386 do_log(SMB_VFS_OP_FCHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1387 fsp_str_do_log(fsp
), (long int)uid
, (long int)gid
);
1392 static int smb_full_audit_lchown(vfs_handle_struct
*handle
,
1393 const char *path
, uid_t uid
, gid_t gid
)
1397 result
= SMB_VFS_NEXT_LCHOWN(handle
, path
, uid
, gid
);
1399 do_log(SMB_VFS_OP_LCHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1400 path
, (long int)uid
, (long int)gid
);
1405 static int smb_full_audit_chdir(vfs_handle_struct
*handle
,
1410 result
= SMB_VFS_NEXT_CHDIR(handle
, path
);
1412 do_log(SMB_VFS_OP_CHDIR
, (result
>= 0), handle
, "chdir|%s", path
);
1417 static char *smb_full_audit_getwd(vfs_handle_struct
*handle
)
1421 result
= SMB_VFS_NEXT_GETWD(handle
);
1423 do_log(SMB_VFS_OP_GETWD
, (result
!= NULL
), handle
, "%s",
1424 result
== NULL
? "" : result
);
1429 static int smb_full_audit_ntimes(vfs_handle_struct
*handle
,
1430 const struct smb_filename
*smb_fname
,
1431 struct smb_file_time
*ft
)
1435 result
= SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1437 do_log(SMB_VFS_OP_NTIMES
, (result
>= 0), handle
, "%s",
1438 smb_fname_str_do_log(smb_fname
));
1443 static int smb_full_audit_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1448 result
= SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1450 do_log(SMB_VFS_OP_FTRUNCATE
, (result
>= 0), handle
,
1451 "%s", fsp_str_do_log(fsp
));
1456 static int smb_full_audit_fallocate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1457 enum vfs_fallocate_mode mode
,
1463 result
= SMB_VFS_NEXT_FALLOCATE(handle
, fsp
, mode
, offset
, len
);
1465 do_log(SMB_VFS_OP_FALLOCATE
, (result
>= 0), handle
,
1466 "%s", fsp_str_do_log(fsp
));
1471 static bool smb_full_audit_lock(vfs_handle_struct
*handle
, files_struct
*fsp
,
1472 int op
, off_t offset
, off_t count
, int type
)
1476 result
= SMB_VFS_NEXT_LOCK(handle
, fsp
, op
, offset
, count
, type
);
1478 do_log(SMB_VFS_OP_LOCK
, result
, handle
, "%s", fsp_str_do_log(fsp
));
1483 static int smb_full_audit_kernel_flock(struct vfs_handle_struct
*handle
,
1484 struct files_struct
*fsp
,
1485 uint32 share_mode
, uint32 access_mask
)
1489 result
= SMB_VFS_NEXT_KERNEL_FLOCK(handle
, fsp
, share_mode
, access_mask
);
1491 do_log(SMB_VFS_OP_KERNEL_FLOCK
, (result
>= 0), handle
, "%s",
1492 fsp_str_do_log(fsp
));
1497 static int smb_full_audit_linux_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
1502 result
= SMB_VFS_NEXT_LINUX_SETLEASE(handle
, fsp
, leasetype
);
1504 do_log(SMB_VFS_OP_LINUX_SETLEASE
, (result
>= 0), handle
, "%s",
1505 fsp_str_do_log(fsp
));
1510 static bool smb_full_audit_getlock(vfs_handle_struct
*handle
, files_struct
*fsp
,
1511 off_t
*poffset
, off_t
*pcount
, int *ptype
, pid_t
*ppid
)
1515 result
= SMB_VFS_NEXT_GETLOCK(handle
, fsp
, poffset
, pcount
, ptype
, ppid
);
1517 do_log(SMB_VFS_OP_GETLOCK
, result
, handle
, "%s", fsp_str_do_log(fsp
));
1522 static int smb_full_audit_symlink(vfs_handle_struct
*handle
,
1523 const char *oldpath
, const char *newpath
)
1527 result
= SMB_VFS_NEXT_SYMLINK(handle
, oldpath
, newpath
);
1529 do_log(SMB_VFS_OP_SYMLINK
, (result
>= 0), handle
,
1530 "%s|%s", oldpath
, newpath
);
1535 static int smb_full_audit_readlink(vfs_handle_struct
*handle
,
1536 const char *path
, char *buf
, size_t bufsiz
)
1540 result
= SMB_VFS_NEXT_READLINK(handle
, path
, buf
, bufsiz
);
1542 do_log(SMB_VFS_OP_READLINK
, (result
>= 0), handle
, "%s", path
);
1547 static int smb_full_audit_link(vfs_handle_struct
*handle
,
1548 const char *oldpath
, const char *newpath
)
1552 result
= SMB_VFS_NEXT_LINK(handle
, oldpath
, newpath
);
1554 do_log(SMB_VFS_OP_LINK
, (result
>= 0), handle
,
1555 "%s|%s", oldpath
, newpath
);
1560 static int smb_full_audit_mknod(vfs_handle_struct
*handle
,
1561 const char *pathname
, mode_t mode
, SMB_DEV_T dev
)
1565 result
= SMB_VFS_NEXT_MKNOD(handle
, pathname
, mode
, dev
);
1567 do_log(SMB_VFS_OP_MKNOD
, (result
>= 0), handle
, "%s", pathname
);
1572 static char *smb_full_audit_realpath(vfs_handle_struct
*handle
,
1577 result
= SMB_VFS_NEXT_REALPATH(handle
, path
);
1579 do_log(SMB_VFS_OP_REALPATH
, (result
!= NULL
), handle
, "%s", path
);
1584 static NTSTATUS
smb_full_audit_notify_watch(struct vfs_handle_struct
*handle
,
1585 struct sys_notify_context
*ctx
,
1588 uint32_t *subdir_filter
,
1589 void (*callback
)(struct sys_notify_context
*ctx
,
1591 struct notify_event
*ev
),
1592 void *private_data
, void *handle_p
)
1596 result
= SMB_VFS_NEXT_NOTIFY_WATCH(handle
, ctx
, path
,
1597 filter
, subdir_filter
, callback
,
1598 private_data
, handle_p
);
1600 do_log(SMB_VFS_OP_NOTIFY_WATCH
, NT_STATUS_IS_OK(result
), handle
, "");
1605 static int smb_full_audit_chflags(vfs_handle_struct
*handle
,
1606 const char *path
, unsigned int flags
)
1610 result
= SMB_VFS_NEXT_CHFLAGS(handle
, path
, flags
);
1612 do_log(SMB_VFS_OP_CHFLAGS
, (result
!= 0), handle
, "%s", path
);
1617 static struct file_id
smb_full_audit_file_id_create(struct vfs_handle_struct
*handle
,
1618 const SMB_STRUCT_STAT
*sbuf
)
1620 struct file_id id_zero
;
1621 struct file_id result
;
1623 ZERO_STRUCT(id_zero
);
1625 result
= SMB_VFS_NEXT_FILE_ID_CREATE(handle
, sbuf
);
1627 do_log(SMB_VFS_OP_FILE_ID_CREATE
,
1628 !file_id_equal(&id_zero
, &result
),
1629 handle
, "%s", file_id_string_tos(&result
));
1634 static NTSTATUS
smb_full_audit_streaminfo(vfs_handle_struct
*handle
,
1635 struct files_struct
*fsp
,
1637 TALLOC_CTX
*mem_ctx
,
1638 unsigned int *pnum_streams
,
1639 struct stream_struct
**pstreams
)
1643 result
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, fname
, mem_ctx
,
1644 pnum_streams
, pstreams
);
1646 do_log(SMB_VFS_OP_STREAMINFO
, NT_STATUS_IS_OK(result
), handle
,
1652 static int smb_full_audit_get_real_filename(struct vfs_handle_struct
*handle
,
1655 TALLOC_CTX
*mem_ctx
,
1660 result
= SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
, mem_ctx
,
1663 do_log(SMB_VFS_OP_GET_REAL_FILENAME
, (result
== 0), handle
,
1664 "%s/%s->%s", path
, name
, (result
== 0) ? "" : *found_name
);
1669 static const char *smb_full_audit_connectpath(vfs_handle_struct
*handle
,
1674 result
= SMB_VFS_NEXT_CONNECTPATH(handle
, fname
);
1676 do_log(SMB_VFS_OP_CONNECTPATH
, result
!= NULL
, handle
,
1682 static NTSTATUS
smb_full_audit_brl_lock_windows(struct vfs_handle_struct
*handle
,
1683 struct byte_range_lock
*br_lck
,
1684 struct lock_struct
*plock
,
1689 result
= SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle
, br_lck
, plock
,
1692 do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS
, NT_STATUS_IS_OK(result
), handle
,
1693 "%s:%llu-%llu. type=%d. blocking=%d",
1694 fsp_str_do_log(brl_fsp(br_lck
)),
1695 plock
->start
, plock
->size
, plock
->lock_type
, blocking_lock
);
1700 static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct
*handle
,
1701 struct messaging_context
*msg_ctx
,
1702 struct byte_range_lock
*br_lck
,
1703 const struct lock_struct
*plock
)
1707 result
= SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle
, msg_ctx
, br_lck
,
1710 do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS
, (result
== 0), handle
,
1711 "%s:%llu-%llu:%d", fsp_str_do_log(brl_fsp(br_lck
)),
1713 plock
->size
, plock
->lock_type
);
1718 static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct
*handle
,
1719 struct byte_range_lock
*br_lck
,
1720 struct lock_struct
*plock
)
1724 result
= SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle
, br_lck
, plock
);
1726 do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS
, (result
== 0), handle
,
1727 "%s:%llu-%llu:%d", fsp_str_do_log(brl_fsp(br_lck
)),
1729 plock
->size
, plock
->lock_type
);
1734 static bool smb_full_audit_strict_lock(struct vfs_handle_struct
*handle
,
1735 struct files_struct
*fsp
,
1736 struct lock_struct
*plock
)
1740 result
= SMB_VFS_NEXT_STRICT_LOCK(handle
, fsp
, plock
);
1742 do_log(SMB_VFS_OP_STRICT_LOCK
, result
, handle
,
1743 "%s:%llu-%llu:%d", fsp_str_do_log(fsp
), plock
->start
,
1744 plock
->size
, plock
->lock_type
);
1749 static void smb_full_audit_strict_unlock(struct vfs_handle_struct
*handle
,
1750 struct files_struct
*fsp
,
1751 struct lock_struct
*plock
)
1753 SMB_VFS_NEXT_STRICT_UNLOCK(handle
, fsp
, plock
);
1755 do_log(SMB_VFS_OP_STRICT_UNLOCK
, true, handle
,
1756 "%s:%llu-%llu:%d", fsp_str_do_log(fsp
), plock
->start
,
1757 plock
->size
, plock
->lock_type
);
1760 static NTSTATUS
smb_full_audit_translate_name(struct vfs_handle_struct
*handle
,
1762 enum vfs_translate_direction direction
,
1763 TALLOC_CTX
*mem_ctx
,
1768 result
= SMB_VFS_NEXT_TRANSLATE_NAME(handle
, name
, direction
, mem_ctx
,
1771 do_log(SMB_VFS_OP_TRANSLATE_NAME
, NT_STATUS_IS_OK(result
), handle
, "");
1776 static struct tevent_req
*smb_full_audit_copy_chunk_send(struct vfs_handle_struct
*handle
,
1777 TALLOC_CTX
*mem_ctx
,
1778 struct tevent_context
*ev
,
1779 struct files_struct
*src_fsp
,
1781 struct files_struct
*dest_fsp
,
1785 struct tevent_req
*req
;
1787 req
= SMB_VFS_NEXT_COPY_CHUNK_SEND(handle
, mem_ctx
, ev
, src_fsp
,
1788 src_off
, dest_fsp
, dest_off
, num
);
1790 do_log(SMB_VFS_OP_COPY_CHUNK_SEND
, req
, handle
, "");
1795 static NTSTATUS
smb_full_audit_copy_chunk_recv(struct vfs_handle_struct
*handle
,
1796 struct tevent_req
*req
,
1801 result
= SMB_VFS_NEXT_COPY_CHUNK_RECV(handle
, req
, copied
);
1803 do_log(SMB_VFS_OP_COPY_CHUNK_RECV
, NT_STATUS_IS_OK(result
), handle
, "");
1808 static NTSTATUS
smb_full_audit_get_compression(vfs_handle_struct
*handle
,
1809 TALLOC_CTX
*mem_ctx
,
1810 struct files_struct
*fsp
,
1811 struct smb_filename
*smb_fname
,
1812 uint16_t *_compression_fmt
)
1816 result
= SMB_VFS_NEXT_GET_COMPRESSION(handle
, mem_ctx
, fsp
, smb_fname
,
1819 do_log(SMB_VFS_OP_GET_COMPRESSION
, NT_STATUS_IS_OK(result
), handle
,
1821 (fsp
? fsp_str_do_log(fsp
) : smb_fname_str_do_log(smb_fname
)));
1826 static NTSTATUS
smb_full_audit_set_compression(vfs_handle_struct
*handle
,
1827 TALLOC_CTX
*mem_ctx
,
1828 struct files_struct
*fsp
,
1829 uint16_t compression_fmt
)
1833 result
= SMB_VFS_NEXT_SET_COMPRESSION(handle
, mem_ctx
, fsp
,
1836 do_log(SMB_VFS_OP_SET_COMPRESSION
, NT_STATUS_IS_OK(result
), handle
,
1837 "%s", fsp_str_do_log(fsp
));
1842 static NTSTATUS
smb_full_audit_readdir_attr(struct vfs_handle_struct
*handle
,
1843 const struct smb_filename
*fname
,
1844 TALLOC_CTX
*mem_ctx
,
1845 struct readdir_attr_data
**pattr_data
)
1849 status
= SMB_VFS_NEXT_READDIR_ATTR(handle
, fname
, mem_ctx
, pattr_data
);
1851 do_log(SMB_VFS_OP_READDIR_ATTR
, NT_STATUS_IS_OK(status
), handle
, "%s",
1852 smb_fname_str_do_log(fname
));
1857 static NTSTATUS
smb_full_audit_fget_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1858 uint32 security_info
,
1859 TALLOC_CTX
*mem_ctx
,
1860 struct security_descriptor
**ppdesc
)
1864 result
= SMB_VFS_NEXT_FGET_NT_ACL(handle
, fsp
, security_info
,
1867 do_log(SMB_VFS_OP_FGET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1868 "%s", fsp_str_do_log(fsp
));
1873 static NTSTATUS
smb_full_audit_get_nt_acl(vfs_handle_struct
*handle
,
1875 uint32 security_info
,
1876 TALLOC_CTX
*mem_ctx
,
1877 struct security_descriptor
**ppdesc
)
1881 result
= SMB_VFS_NEXT_GET_NT_ACL(handle
, name
, security_info
,
1884 do_log(SMB_VFS_OP_GET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1890 static NTSTATUS
smb_full_audit_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1891 uint32 security_info_sent
,
1892 const struct security_descriptor
*psd
)
1894 struct vfs_full_audit_private_data
*pd
;
1898 SMB_VFS_HANDLE_GET_DATA(handle
, pd
,
1899 struct vfs_full_audit_private_data
,
1900 return NT_STATUS_INTERNAL_ERROR
);
1902 if (pd
->log_secdesc
) {
1903 sd
= sddl_encode(talloc_tos(), psd
, get_global_sam_sid());
1906 result
= SMB_VFS_NEXT_FSET_NT_ACL(handle
, fsp
, security_info_sent
, psd
);
1908 do_log(SMB_VFS_OP_FSET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1909 "%s [%s]", fsp_str_do_log(fsp
), sd
? sd
: "");
1916 static int smb_full_audit_chmod_acl(vfs_handle_struct
*handle
,
1917 const char *path
, mode_t mode
)
1921 result
= SMB_VFS_NEXT_CHMOD_ACL(handle
, path
, mode
);
1923 do_log(SMB_VFS_OP_CHMOD_ACL
, (result
>= 0), handle
,
1924 "%s|%o", path
, mode
);
1929 static int smb_full_audit_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1934 result
= SMB_VFS_NEXT_FCHMOD_ACL(handle
, fsp
, mode
);
1936 do_log(SMB_VFS_OP_FCHMOD_ACL
, (result
>= 0), handle
,
1937 "%s|%o", fsp_str_do_log(fsp
), mode
);
1942 static SMB_ACL_T
smb_full_audit_sys_acl_get_file(vfs_handle_struct
*handle
,
1944 SMB_ACL_TYPE_T type
,
1945 TALLOC_CTX
*mem_ctx
)
1949 result
= SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
, type
, mem_ctx
);
1951 do_log(SMB_VFS_OP_SYS_ACL_GET_FILE
, (result
!= NULL
), handle
,
1957 static SMB_ACL_T
smb_full_audit_sys_acl_get_fd(vfs_handle_struct
*handle
,
1958 files_struct
*fsp
, TALLOC_CTX
*mem_ctx
)
1962 result
= SMB_VFS_NEXT_SYS_ACL_GET_FD(handle
, fsp
, mem_ctx
);
1964 do_log(SMB_VFS_OP_SYS_ACL_GET_FD
, (result
!= NULL
), handle
,
1965 "%s", fsp_str_do_log(fsp
));
1970 static int smb_full_audit_sys_acl_blob_get_file(vfs_handle_struct
*handle
,
1972 TALLOC_CTX
*mem_ctx
,
1973 char **blob_description
,
1978 result
= SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FILE(handle
, path_p
, mem_ctx
, blob_description
, blob
);
1980 do_log(SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE
, (result
>= 0), handle
,
1986 static int smb_full_audit_sys_acl_blob_get_fd(vfs_handle_struct
*handle
,
1988 TALLOC_CTX
*mem_ctx
,
1989 char **blob_description
,
1994 result
= SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle
, fsp
, mem_ctx
, blob_description
, blob
);
1996 do_log(SMB_VFS_OP_SYS_ACL_BLOB_GET_FD
, (result
>= 0), handle
,
1997 "%s", fsp_str_do_log(fsp
));
2002 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct
*handle
,
2004 const char *name
, SMB_ACL_TYPE_T acltype
,
2009 result
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
, acltype
,
2012 do_log(SMB_VFS_OP_SYS_ACL_SET_FILE
, (result
>= 0), handle
,
2018 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
2023 result
= SMB_VFS_NEXT_SYS_ACL_SET_FD(handle
, fsp
, theacl
);
2025 do_log(SMB_VFS_OP_SYS_ACL_SET_FD
, (result
>= 0), handle
,
2026 "%s", fsp_str_do_log(fsp
));
2031 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
2037 result
= SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, path
);
2039 do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, (result
>= 0), handle
,
2045 static ssize_t
smb_full_audit_getxattr(struct vfs_handle_struct
*handle
,
2047 const char *name
, void *value
, size_t size
)
2051 result
= SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
, size
);
2053 do_log(SMB_VFS_OP_GETXATTR
, (result
>= 0), handle
,
2054 "%s|%s", path
, name
);
2059 static ssize_t
smb_full_audit_fgetxattr(struct vfs_handle_struct
*handle
,
2060 struct files_struct
*fsp
,
2061 const char *name
, void *value
, size_t size
)
2065 result
= SMB_VFS_NEXT_FGETXATTR(handle
, fsp
, name
, value
, size
);
2067 do_log(SMB_VFS_OP_FGETXATTR
, (result
>= 0), handle
,
2068 "%s|%s", fsp_str_do_log(fsp
), name
);
2073 static ssize_t
smb_full_audit_listxattr(struct vfs_handle_struct
*handle
,
2074 const char *path
, char *list
, size_t size
)
2078 result
= SMB_VFS_NEXT_LISTXATTR(handle
, path
, list
, size
);
2080 do_log(SMB_VFS_OP_LISTXATTR
, (result
>= 0), handle
, "%s", path
);
2085 static ssize_t
smb_full_audit_flistxattr(struct vfs_handle_struct
*handle
,
2086 struct files_struct
*fsp
, char *list
,
2091 result
= SMB_VFS_NEXT_FLISTXATTR(handle
, fsp
, list
, size
);
2093 do_log(SMB_VFS_OP_FLISTXATTR
, (result
>= 0), handle
,
2094 "%s", fsp_str_do_log(fsp
));
2099 static int smb_full_audit_removexattr(struct vfs_handle_struct
*handle
,
2105 result
= SMB_VFS_NEXT_REMOVEXATTR(handle
, path
, name
);
2107 do_log(SMB_VFS_OP_REMOVEXATTR
, (result
>= 0), handle
,
2108 "%s|%s", path
, name
);
2113 static int smb_full_audit_fremovexattr(struct vfs_handle_struct
*handle
,
2114 struct files_struct
*fsp
,
2119 result
= SMB_VFS_NEXT_FREMOVEXATTR(handle
, fsp
, name
);
2121 do_log(SMB_VFS_OP_FREMOVEXATTR
, (result
>= 0), handle
,
2122 "%s|%s", fsp_str_do_log(fsp
), name
);
2127 static int smb_full_audit_setxattr(struct vfs_handle_struct
*handle
,
2129 const char *name
, const void *value
, size_t size
,
2134 result
= SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
, size
,
2137 do_log(SMB_VFS_OP_SETXATTR
, (result
>= 0), handle
,
2138 "%s|%s", path
, name
);
2143 static int smb_full_audit_fsetxattr(struct vfs_handle_struct
*handle
,
2144 struct files_struct
*fsp
, const char *name
,
2145 const void *value
, size_t size
, int flags
)
2149 result
= SMB_VFS_NEXT_FSETXATTR(handle
, fsp
, name
, value
, size
, flags
);
2151 do_log(SMB_VFS_OP_FSETXATTR
, (result
>= 0), handle
,
2152 "%s|%s", fsp_str_do_log(fsp
), name
);
2157 static bool smb_full_audit_aio_force(struct vfs_handle_struct
*handle
,
2158 struct files_struct
*fsp
)
2162 result
= SMB_VFS_NEXT_AIO_FORCE(handle
, fsp
);
2163 do_log(SMB_VFS_OP_AIO_FORCE
, result
, handle
,
2164 "%s", fsp_str_do_log(fsp
));
2169 static bool smb_full_audit_is_offline(struct vfs_handle_struct
*handle
,
2170 const struct smb_filename
*fname
,
2171 SMB_STRUCT_STAT
*sbuf
)
2175 result
= SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
2176 do_log(SMB_VFS_OP_IS_OFFLINE
, result
, handle
, "%s",
2177 smb_fname_str_do_log(fname
));
2181 static int smb_full_audit_set_offline(struct vfs_handle_struct
*handle
,
2182 const struct smb_filename
*fname
)
2186 result
= SMB_VFS_NEXT_SET_OFFLINE(handle
, fname
);
2187 do_log(SMB_VFS_OP_SET_OFFLINE
, result
>= 0, handle
, "%s",
2188 smb_fname_str_do_log(fname
));
2192 static struct vfs_fn_pointers vfs_full_audit_fns
= {
2194 /* Disk operations */
2196 .connect_fn
= smb_full_audit_connect
,
2197 .disconnect_fn
= smb_full_audit_disconnect
,
2198 .disk_free_fn
= smb_full_audit_disk_free
,
2199 .get_quota_fn
= smb_full_audit_get_quota
,
2200 .set_quota_fn
= smb_full_audit_set_quota
,
2201 .get_shadow_copy_data_fn
= smb_full_audit_get_shadow_copy_data
,
2202 .statvfs_fn
= smb_full_audit_statvfs
,
2203 .fs_capabilities_fn
= smb_full_audit_fs_capabilities
,
2204 .opendir_fn
= smb_full_audit_opendir
,
2205 .fdopendir_fn
= smb_full_audit_fdopendir
,
2206 .readdir_fn
= smb_full_audit_readdir
,
2207 .seekdir_fn
= smb_full_audit_seekdir
,
2208 .telldir_fn
= smb_full_audit_telldir
,
2209 .rewind_dir_fn
= smb_full_audit_rewinddir
,
2210 .mkdir_fn
= smb_full_audit_mkdir
,
2211 .rmdir_fn
= smb_full_audit_rmdir
,
2212 .closedir_fn
= smb_full_audit_closedir
,
2213 .init_search_op_fn
= smb_full_audit_init_search_op
,
2214 .open_fn
= smb_full_audit_open
,
2215 .create_file_fn
= smb_full_audit_create_file
,
2216 .close_fn
= smb_full_audit_close
,
2217 .read_fn
= smb_full_audit_read
,
2218 .pread_fn
= smb_full_audit_pread
,
2219 .pread_send_fn
= smb_full_audit_pread_send
,
2220 .pread_recv_fn
= smb_full_audit_pread_recv
,
2221 .write_fn
= smb_full_audit_write
,
2222 .pwrite_fn
= smb_full_audit_pwrite
,
2223 .pwrite_send_fn
= smb_full_audit_pwrite_send
,
2224 .pwrite_recv_fn
= smb_full_audit_pwrite_recv
,
2225 .lseek_fn
= smb_full_audit_lseek
,
2226 .sendfile_fn
= smb_full_audit_sendfile
,
2227 .recvfile_fn
= smb_full_audit_recvfile
,
2228 .rename_fn
= smb_full_audit_rename
,
2229 .fsync_fn
= smb_full_audit_fsync
,
2230 .fsync_send_fn
= smb_full_audit_fsync_send
,
2231 .fsync_recv_fn
= smb_full_audit_fsync_recv
,
2232 .stat_fn
= smb_full_audit_stat
,
2233 .fstat_fn
= smb_full_audit_fstat
,
2234 .lstat_fn
= smb_full_audit_lstat
,
2235 .get_alloc_size_fn
= smb_full_audit_get_alloc_size
,
2236 .unlink_fn
= smb_full_audit_unlink
,
2237 .chmod_fn
= smb_full_audit_chmod
,
2238 .fchmod_fn
= smb_full_audit_fchmod
,
2239 .chown_fn
= smb_full_audit_chown
,
2240 .fchown_fn
= smb_full_audit_fchown
,
2241 .lchown_fn
= smb_full_audit_lchown
,
2242 .chdir_fn
= smb_full_audit_chdir
,
2243 .getwd_fn
= smb_full_audit_getwd
,
2244 .ntimes_fn
= smb_full_audit_ntimes
,
2245 .ftruncate_fn
= smb_full_audit_ftruncate
,
2246 .fallocate_fn
= smb_full_audit_fallocate
,
2247 .lock_fn
= smb_full_audit_lock
,
2248 .kernel_flock_fn
= smb_full_audit_kernel_flock
,
2249 .linux_setlease_fn
= smb_full_audit_linux_setlease
,
2250 .getlock_fn
= smb_full_audit_getlock
,
2251 .symlink_fn
= smb_full_audit_symlink
,
2252 .readlink_fn
= smb_full_audit_readlink
,
2253 .link_fn
= smb_full_audit_link
,
2254 .mknod_fn
= smb_full_audit_mknod
,
2255 .realpath_fn
= smb_full_audit_realpath
,
2256 .notify_watch_fn
= smb_full_audit_notify_watch
,
2257 .chflags_fn
= smb_full_audit_chflags
,
2258 .file_id_create_fn
= smb_full_audit_file_id_create
,
2259 .streaminfo_fn
= smb_full_audit_streaminfo
,
2260 .get_real_filename_fn
= smb_full_audit_get_real_filename
,
2261 .connectpath_fn
= smb_full_audit_connectpath
,
2262 .brl_lock_windows_fn
= smb_full_audit_brl_lock_windows
,
2263 .brl_unlock_windows_fn
= smb_full_audit_brl_unlock_windows
,
2264 .brl_cancel_windows_fn
= smb_full_audit_brl_cancel_windows
,
2265 .strict_lock_fn
= smb_full_audit_strict_lock
,
2266 .strict_unlock_fn
= smb_full_audit_strict_unlock
,
2267 .translate_name_fn
= smb_full_audit_translate_name
,
2268 .copy_chunk_send_fn
= smb_full_audit_copy_chunk_send
,
2269 .copy_chunk_recv_fn
= smb_full_audit_copy_chunk_recv
,
2270 .get_compression_fn
= smb_full_audit_get_compression
,
2271 .set_compression_fn
= smb_full_audit_set_compression
,
2272 .readdir_attr_fn
= smb_full_audit_readdir_attr
,
2273 .fget_nt_acl_fn
= smb_full_audit_fget_nt_acl
,
2274 .get_nt_acl_fn
= smb_full_audit_get_nt_acl
,
2275 .fset_nt_acl_fn
= smb_full_audit_fset_nt_acl
,
2276 .chmod_acl_fn
= smb_full_audit_chmod_acl
,
2277 .fchmod_acl_fn
= smb_full_audit_fchmod_acl
,
2278 .sys_acl_get_file_fn
= smb_full_audit_sys_acl_get_file
,
2279 .sys_acl_get_fd_fn
= smb_full_audit_sys_acl_get_fd
,
2280 .sys_acl_blob_get_file_fn
= smb_full_audit_sys_acl_blob_get_file
,
2281 .sys_acl_blob_get_fd_fn
= smb_full_audit_sys_acl_blob_get_fd
,
2282 .sys_acl_set_file_fn
= smb_full_audit_sys_acl_set_file
,
2283 .sys_acl_set_fd_fn
= smb_full_audit_sys_acl_set_fd
,
2284 .sys_acl_delete_def_file_fn
= smb_full_audit_sys_acl_delete_def_file
,
2285 .getxattr_fn
= smb_full_audit_getxattr
,
2286 .fgetxattr_fn
= smb_full_audit_fgetxattr
,
2287 .listxattr_fn
= smb_full_audit_listxattr
,
2288 .flistxattr_fn
= smb_full_audit_flistxattr
,
2289 .removexattr_fn
= smb_full_audit_removexattr
,
2290 .fremovexattr_fn
= smb_full_audit_fremovexattr
,
2291 .setxattr_fn
= smb_full_audit_setxattr
,
2292 .fsetxattr_fn
= smb_full_audit_fsetxattr
,
2293 .aio_force_fn
= smb_full_audit_aio_force
,
2294 .is_offline_fn
= smb_full_audit_is_offline
,
2295 .set_offline_fn
= smb_full_audit_set_offline
,
2298 NTSTATUS
vfs_full_audit_init(void)
2300 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
2301 "full_audit", &vfs_full_audit_fns
);
2303 if (!NT_STATUS_IS_OK(ret
))
2306 vfs_full_audit_debug_level
= debug_add_class("full_audit");
2307 if (vfs_full_audit_debug_level
== -1) {
2308 vfs_full_audit_debug_level
= DBGC_VFS
;
2309 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2312 DEBUG(10, ("vfs_full_audit: Debug class number of "
2313 "'full_audit': %d\n", vfs_full_audit_debug_level
));