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"
70 static int vfs_full_audit_debug_level
= DBGC_VFS
;
72 struct vfs_full_audit_private_data
{
73 struct bitmap
*success_ops
;
74 struct bitmap
*failure_ops
;
78 #define DBGC_CLASS vfs_full_audit_debug_level
80 typedef enum _vfs_op_type
{
85 SMB_VFS_OP_CONNECT
= 0,
86 SMB_VFS_OP_DISCONNECT
,
90 SMB_VFS_OP_GET_SHADOW_COPY_DATA
,
92 SMB_VFS_OP_FS_CAPABILITIES
,
94 /* Directory operations */
101 SMB_VFS_OP_REWINDDIR
,
105 SMB_VFS_OP_INIT_SEARCH_OP
,
107 /* File operations */
110 SMB_VFS_OP_CREATE_FILE
,
124 SMB_VFS_OP_GET_ALLOC_SIZE
,
134 SMB_VFS_OP_FTRUNCATE
,
135 SMB_VFS_OP_FALLOCATE
,
137 SMB_VFS_OP_KERNEL_FLOCK
,
138 SMB_VFS_OP_LINUX_SETLEASE
,
145 SMB_VFS_OP_NOTIFY_WATCH
,
147 SMB_VFS_OP_FILE_ID_CREATE
,
148 SMB_VFS_OP_STREAMINFO
,
149 SMB_VFS_OP_GET_REAL_FILENAME
,
150 SMB_VFS_OP_CONNECTPATH
,
151 SMB_VFS_OP_BRL_LOCK_WINDOWS
,
152 SMB_VFS_OP_BRL_UNLOCK_WINDOWS
,
153 SMB_VFS_OP_BRL_CANCEL_WINDOWS
,
154 SMB_VFS_OP_STRICT_LOCK
,
155 SMB_VFS_OP_STRICT_UNLOCK
,
156 SMB_VFS_OP_TRANSLATE_NAME
,
158 /* NT ACL operations. */
160 SMB_VFS_OP_FGET_NT_ACL
,
161 SMB_VFS_OP_GET_NT_ACL
,
162 SMB_VFS_OP_FSET_NT_ACL
,
164 /* POSIX ACL operations. */
166 SMB_VFS_OP_CHMOD_ACL
,
167 SMB_VFS_OP_FCHMOD_ACL
,
169 SMB_VFS_OP_SYS_ACL_GET_ENTRY
,
170 SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE
,
171 SMB_VFS_OP_SYS_ACL_GET_PERMSET
,
172 SMB_VFS_OP_SYS_ACL_GET_QUALIFIER
,
173 SMB_VFS_OP_SYS_ACL_GET_FILE
,
174 SMB_VFS_OP_SYS_ACL_GET_FD
,
175 SMB_VFS_OP_SYS_ACL_CLEAR_PERMS
,
176 SMB_VFS_OP_SYS_ACL_ADD_PERM
,
177 SMB_VFS_OP_SYS_ACL_TO_TEXT
,
178 SMB_VFS_OP_SYS_ACL_INIT
,
179 SMB_VFS_OP_SYS_ACL_CREATE_ENTRY
,
180 SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE
,
181 SMB_VFS_OP_SYS_ACL_SET_QUALIFIER
,
182 SMB_VFS_OP_SYS_ACL_SET_PERMSET
,
183 SMB_VFS_OP_SYS_ACL_VALID
,
184 SMB_VFS_OP_SYS_ACL_SET_FILE
,
185 SMB_VFS_OP_SYS_ACL_SET_FD
,
186 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
,
187 SMB_VFS_OP_SYS_ACL_GET_PERM
,
188 SMB_VFS_OP_SYS_ACL_FREE_TEXT
,
189 SMB_VFS_OP_SYS_ACL_FREE_ACL
,
190 SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER
,
194 SMB_VFS_OP_LGETXATTR
,
195 SMB_VFS_OP_FGETXATTR
,
196 SMB_VFS_OP_LISTXATTR
,
197 SMB_VFS_OP_LLISTXATTR
,
198 SMB_VFS_OP_FLISTXATTR
,
199 SMB_VFS_OP_REMOVEXATTR
,
200 SMB_VFS_OP_LREMOVEXATTR
,
201 SMB_VFS_OP_FREMOVEXATTR
,
203 SMB_VFS_OP_LSETXATTR
,
204 SMB_VFS_OP_FSETXATTR
,
208 SMB_VFS_OP_AIO_WRITE
,
209 SMB_VFS_OP_AIO_RETURN
,
210 SMB_VFS_OP_AIO_CANCEL
,
211 SMB_VFS_OP_AIO_ERROR
,
212 SMB_VFS_OP_AIO_FSYNC
,
213 SMB_VFS_OP_AIO_SUSPEND
,
214 SMB_VFS_OP_AIO_FORCE
,
216 /* offline operations */
217 SMB_VFS_OP_IS_OFFLINE
,
218 SMB_VFS_OP_SET_OFFLINE
,
220 /* This should always be last enum value */
225 /* The following array *must* be in the same order as defined in vfs.h */
231 { SMB_VFS_OP_CONNECT
, "connect" },
232 { SMB_VFS_OP_DISCONNECT
, "disconnect" },
233 { SMB_VFS_OP_DISK_FREE
, "disk_free" },
234 { SMB_VFS_OP_GET_QUOTA
, "get_quota" },
235 { SMB_VFS_OP_SET_QUOTA
, "set_quota" },
236 { SMB_VFS_OP_GET_SHADOW_COPY_DATA
, "get_shadow_copy_data" },
237 { SMB_VFS_OP_STATVFS
, "statvfs" },
238 { SMB_VFS_OP_FS_CAPABILITIES
, "fs_capabilities" },
239 { SMB_VFS_OP_OPENDIR
, "opendir" },
240 { SMB_VFS_OP_FDOPENDIR
, "fdopendir" },
241 { SMB_VFS_OP_READDIR
, "readdir" },
242 { SMB_VFS_OP_SEEKDIR
, "seekdir" },
243 { SMB_VFS_OP_TELLDIR
, "telldir" },
244 { SMB_VFS_OP_REWINDDIR
, "rewinddir" },
245 { SMB_VFS_OP_MKDIR
, "mkdir" },
246 { SMB_VFS_OP_RMDIR
, "rmdir" },
247 { SMB_VFS_OP_CLOSEDIR
, "closedir" },
248 { SMB_VFS_OP_INIT_SEARCH_OP
, "init_search_op" },
249 { SMB_VFS_OP_OPEN
, "open" },
250 { SMB_VFS_OP_CREATE_FILE
, "create_file" },
251 { SMB_VFS_OP_CLOSE
, "close" },
252 { SMB_VFS_OP_READ
, "read" },
253 { SMB_VFS_OP_PREAD
, "pread" },
254 { SMB_VFS_OP_WRITE
, "write" },
255 { SMB_VFS_OP_PWRITE
, "pwrite" },
256 { SMB_VFS_OP_LSEEK
, "lseek" },
257 { SMB_VFS_OP_SENDFILE
, "sendfile" },
258 { SMB_VFS_OP_RECVFILE
, "recvfile" },
259 { SMB_VFS_OP_RENAME
, "rename" },
260 { SMB_VFS_OP_FSYNC
, "fsync" },
261 { SMB_VFS_OP_STAT
, "stat" },
262 { SMB_VFS_OP_FSTAT
, "fstat" },
263 { SMB_VFS_OP_LSTAT
, "lstat" },
264 { SMB_VFS_OP_GET_ALLOC_SIZE
, "get_alloc_size" },
265 { SMB_VFS_OP_UNLINK
, "unlink" },
266 { SMB_VFS_OP_CHMOD
, "chmod" },
267 { SMB_VFS_OP_FCHMOD
, "fchmod" },
268 { SMB_VFS_OP_CHOWN
, "chown" },
269 { SMB_VFS_OP_FCHOWN
, "fchown" },
270 { SMB_VFS_OP_LCHOWN
, "lchown" },
271 { SMB_VFS_OP_CHDIR
, "chdir" },
272 { SMB_VFS_OP_GETWD
, "getwd" },
273 { SMB_VFS_OP_NTIMES
, "ntimes" },
274 { SMB_VFS_OP_FTRUNCATE
, "ftruncate" },
275 { SMB_VFS_OP_FALLOCATE
,"fallocate" },
276 { SMB_VFS_OP_LOCK
, "lock" },
277 { SMB_VFS_OP_KERNEL_FLOCK
, "kernel_flock" },
278 { SMB_VFS_OP_LINUX_SETLEASE
, "linux_setlease" },
279 { SMB_VFS_OP_GETLOCK
, "getlock" },
280 { SMB_VFS_OP_SYMLINK
, "symlink" },
281 { SMB_VFS_OP_READLINK
, "readlink" },
282 { SMB_VFS_OP_LINK
, "link" },
283 { SMB_VFS_OP_MKNOD
, "mknod" },
284 { SMB_VFS_OP_REALPATH
, "realpath" },
285 { SMB_VFS_OP_NOTIFY_WATCH
, "notify_watch" },
286 { SMB_VFS_OP_CHFLAGS
, "chflags" },
287 { SMB_VFS_OP_FILE_ID_CREATE
, "file_id_create" },
288 { SMB_VFS_OP_STREAMINFO
, "streaminfo" },
289 { SMB_VFS_OP_GET_REAL_FILENAME
, "get_real_filename" },
290 { SMB_VFS_OP_CONNECTPATH
, "connectpath" },
291 { SMB_VFS_OP_BRL_LOCK_WINDOWS
, "brl_lock_windows" },
292 { SMB_VFS_OP_BRL_UNLOCK_WINDOWS
, "brl_unlock_windows" },
293 { SMB_VFS_OP_BRL_CANCEL_WINDOWS
, "brl_cancel_windows" },
294 { SMB_VFS_OP_STRICT_LOCK
, "strict_lock" },
295 { SMB_VFS_OP_STRICT_UNLOCK
, "strict_unlock" },
296 { SMB_VFS_OP_TRANSLATE_NAME
, "translate_name" },
297 { SMB_VFS_OP_FGET_NT_ACL
, "fget_nt_acl" },
298 { SMB_VFS_OP_GET_NT_ACL
, "get_nt_acl" },
299 { SMB_VFS_OP_FSET_NT_ACL
, "fset_nt_acl" },
300 { SMB_VFS_OP_CHMOD_ACL
, "chmod_acl" },
301 { SMB_VFS_OP_FCHMOD_ACL
, "fchmod_acl" },
302 { SMB_VFS_OP_SYS_ACL_GET_ENTRY
, "sys_acl_get_entry" },
303 { SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE
, "sys_acl_get_tag_type" },
304 { SMB_VFS_OP_SYS_ACL_GET_PERMSET
, "sys_acl_get_permset" },
305 { SMB_VFS_OP_SYS_ACL_GET_QUALIFIER
, "sys_acl_get_qualifier" },
306 { SMB_VFS_OP_SYS_ACL_GET_FILE
, "sys_acl_get_file" },
307 { SMB_VFS_OP_SYS_ACL_GET_FD
, "sys_acl_get_fd" },
308 { SMB_VFS_OP_SYS_ACL_CLEAR_PERMS
, "sys_acl_clear_perms" },
309 { SMB_VFS_OP_SYS_ACL_ADD_PERM
, "sys_acl_add_perm" },
310 { SMB_VFS_OP_SYS_ACL_TO_TEXT
, "sys_acl_to_text" },
311 { SMB_VFS_OP_SYS_ACL_INIT
, "sys_acl_init" },
312 { SMB_VFS_OP_SYS_ACL_CREATE_ENTRY
, "sys_acl_create_entry" },
313 { SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE
, "sys_acl_set_tag_type" },
314 { SMB_VFS_OP_SYS_ACL_SET_QUALIFIER
, "sys_acl_set_qualifier" },
315 { SMB_VFS_OP_SYS_ACL_SET_PERMSET
, "sys_acl_set_permset" },
316 { SMB_VFS_OP_SYS_ACL_VALID
, "sys_acl_valid" },
317 { SMB_VFS_OP_SYS_ACL_SET_FILE
, "sys_acl_set_file" },
318 { SMB_VFS_OP_SYS_ACL_SET_FD
, "sys_acl_set_fd" },
319 { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, "sys_acl_delete_def_file" },
320 { SMB_VFS_OP_SYS_ACL_GET_PERM
, "sys_acl_get_perm" },
321 { SMB_VFS_OP_SYS_ACL_FREE_TEXT
, "sys_acl_free_text" },
322 { SMB_VFS_OP_SYS_ACL_FREE_ACL
, "sys_acl_free_acl" },
323 { SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER
, "sys_acl_free_qualifier" },
324 { SMB_VFS_OP_GETXATTR
, "getxattr" },
325 { SMB_VFS_OP_LGETXATTR
, "lgetxattr" },
326 { SMB_VFS_OP_FGETXATTR
, "fgetxattr" },
327 { SMB_VFS_OP_LISTXATTR
, "listxattr" },
328 { SMB_VFS_OP_LLISTXATTR
, "llistxattr" },
329 { SMB_VFS_OP_FLISTXATTR
, "flistxattr" },
330 { SMB_VFS_OP_REMOVEXATTR
, "removexattr" },
331 { SMB_VFS_OP_LREMOVEXATTR
, "lremovexattr" },
332 { SMB_VFS_OP_FREMOVEXATTR
, "fremovexattr" },
333 { SMB_VFS_OP_SETXATTR
, "setxattr" },
334 { SMB_VFS_OP_LSETXATTR
, "lsetxattr" },
335 { SMB_VFS_OP_FSETXATTR
, "fsetxattr" },
336 { SMB_VFS_OP_AIO_READ
, "aio_read" },
337 { SMB_VFS_OP_AIO_WRITE
, "aio_write" },
338 { SMB_VFS_OP_AIO_RETURN
,"aio_return" },
339 { SMB_VFS_OP_AIO_CANCEL
,"aio_cancel" },
340 { SMB_VFS_OP_AIO_ERROR
, "aio_error" },
341 { SMB_VFS_OP_AIO_FSYNC
, "aio_fsync" },
342 { SMB_VFS_OP_AIO_SUSPEND
,"aio_suspend" },
343 { SMB_VFS_OP_AIO_FORCE
, "aio_force" },
344 { SMB_VFS_OP_IS_OFFLINE
, "is_offline" },
345 { SMB_VFS_OP_SET_OFFLINE
, "set_offline" },
346 { SMB_VFS_OP_LAST
, NULL
}
349 static int audit_syslog_facility(vfs_handle_struct
*handle
)
351 static const struct enum_list enum_log_facilities
[] = {
352 { LOG_USER
, "USER" },
353 { LOG_LOCAL0
, "LOCAL0" },
354 { LOG_LOCAL1
, "LOCAL1" },
355 { LOG_LOCAL2
, "LOCAL2" },
356 { LOG_LOCAL3
, "LOCAL3" },
357 { LOG_LOCAL4
, "LOCAL4" },
358 { LOG_LOCAL5
, "LOCAL5" },
359 { LOG_LOCAL6
, "LOCAL6" },
360 { LOG_LOCAL7
, "LOCAL7" },
366 facility
= lp_parm_enum(SNUM(handle
->conn
), "full_audit", "facility", enum_log_facilities
, LOG_USER
);
371 static int audit_syslog_priority(vfs_handle_struct
*handle
)
373 static const struct enum_list enum_log_priorities
[] = {
374 { LOG_EMERG
, "EMERG" },
375 { LOG_ALERT
, "ALERT" },
376 { LOG_CRIT
, "CRIT" },
378 { LOG_WARNING
, "WARNING" },
379 { LOG_NOTICE
, "NOTICE" },
380 { LOG_INFO
, "INFO" },
381 { LOG_DEBUG
, "DEBUG" },
387 priority
= lp_parm_enum(SNUM(handle
->conn
), "full_audit", "priority",
388 enum_log_priorities
, LOG_NOTICE
);
389 if (priority
== -1) {
390 priority
= LOG_WARNING
;
396 static char *audit_prefix(TALLOC_CTX
*ctx
, connection_struct
*conn
)
401 prefix
= talloc_strdup(ctx
,
402 lp_parm_const_string(SNUM(conn
), "full_audit",
407 result
= talloc_sub_advanced(ctx
,
408 lp_servicename(SNUM(conn
)),
409 conn
->session_info
->unix_info
->unix_name
,
411 conn
->session_info
->unix_token
->gid
,
412 conn
->session_info
->unix_info
->sanitized_username
,
413 conn
->session_info
->info
->domain_name
,
419 static bool log_success(vfs_handle_struct
*handle
, vfs_op_type op
)
421 struct vfs_full_audit_private_data
*pd
= NULL
;
423 SMB_VFS_HANDLE_GET_DATA(handle
, pd
,
424 struct vfs_full_audit_private_data
,
427 if (pd
->success_ops
== NULL
) {
431 return bitmap_query(pd
->success_ops
, op
);
434 static bool log_failure(vfs_handle_struct
*handle
, vfs_op_type op
)
436 struct vfs_full_audit_private_data
*pd
= NULL
;
438 SMB_VFS_HANDLE_GET_DATA(handle
, pd
,
439 struct vfs_full_audit_private_data
,
442 if (pd
->failure_ops
== NULL
)
445 return bitmap_query(pd
->failure_ops
, op
);
448 static struct bitmap
*init_bitmap(TALLOC_CTX
*mem_ctx
, const char **ops
)
456 bm
= bitmap_talloc(mem_ctx
, SMB_VFS_OP_LAST
);
458 DEBUG(0, ("Could not alloc bitmap -- "
459 "defaulting to logging everything\n"));
463 for (; *ops
!= NULL
; ops
+= 1) {
468 if (strequal(*ops
, "all")) {
469 for (i
=0; i
<SMB_VFS_OP_LAST
; i
++) {
475 if (strequal(*ops
, "none")) {
485 for (i
=0; i
<SMB_VFS_OP_LAST
; i
++) {
486 if (vfs_op_names
[i
].name
== NULL
) {
487 smb_panic("vfs_full_audit.c: name table not "
488 "in sync with vfs.h\n");
490 if (strequal(op
, vfs_op_names
[i
].name
)) {
499 if (i
== SMB_VFS_OP_LAST
) {
500 DEBUG(0, ("Could not find opname %s, logging all\n",
509 static const char *audit_opname(vfs_op_type op
)
511 if (op
>= SMB_VFS_OP_LAST
)
512 return "INVALID VFS OP";
513 return vfs_op_names
[op
].name
;
516 static TALLOC_CTX
*tmp_do_log_ctx
;
518 * Get us a temporary talloc context usable just for DEBUG arguments
520 static TALLOC_CTX
*do_log_ctx(void)
522 if (tmp_do_log_ctx
== NULL
) {
523 tmp_do_log_ctx
= talloc_named_const(NULL
, 0, "do_log_ctx");
525 return tmp_do_log_ctx
;
528 static void do_log(vfs_op_type op
, bool success
, vfs_handle_struct
*handle
,
529 const char *format
, ...)
532 char *audit_pre
= NULL
;
537 if (success
&& (!log_success(handle
, op
)))
540 if (!success
&& (!log_failure(handle
, op
)))
544 fstrcpy(err_msg
, "ok");
546 fstr_sprintf(err_msg
, "fail (%s)", strerror(errno
));
548 va_start(ap
, format
);
549 op_msg
= talloc_vasprintf(talloc_tos(), format
, ap
);
557 * Specify the facility to interoperate with other syslog callers
558 * (smbd for example).
560 priority
= audit_syslog_priority(handle
) |
561 audit_syslog_facility(handle
);
563 audit_pre
= audit_prefix(talloc_tos(), handle
->conn
);
564 syslog(priority
, "%s|%s|%s|%s\n",
565 audit_pre
? audit_pre
: "",
566 audit_opname(op
), err_msg
, op_msg
);
569 TALLOC_FREE(audit_pre
);
571 TALLOC_FREE(tmp_do_log_ctx
);
577 * Return a string using the do_log_ctx()
579 static const char *smb_fname_str_do_log(const struct smb_filename
*smb_fname
)
584 if (smb_fname
== NULL
) {
587 status
= get_full_smb_filename(do_log_ctx(), smb_fname
, &fname
);
588 if (!NT_STATUS_IS_OK(status
)) {
595 * Return an fsp debug string using the do_log_ctx()
597 static const char *fsp_str_do_log(const struct files_struct
*fsp
)
599 return smb_fname_str_do_log(fsp
->fsp_name
);
602 /* Implementation of vfs_ops. Pass everything on to the default
603 operation but log event first. */
605 static int smb_full_audit_connect(vfs_handle_struct
*handle
,
606 const char *svc
, const char *user
)
609 struct vfs_full_audit_private_data
*pd
= NULL
;
611 result
= SMB_VFS_NEXT_CONNECT(handle
, svc
, user
);
616 pd
= talloc_zero(handle
, struct vfs_full_audit_private_data
);
618 SMB_VFS_NEXT_DISCONNECT(handle
);
623 openlog("smbd_audit", 0, audit_syslog_facility(handle
));
626 pd
->success_ops
= init_bitmap(
627 pd
, lp_parm_string_list(SNUM(handle
->conn
), "full_audit",
629 pd
->failure_ops
= init_bitmap(
630 pd
, lp_parm_string_list(SNUM(handle
->conn
), "full_audit",
633 /* Store the private data. */
634 SMB_VFS_HANDLE_SET_DATA(handle
, pd
, NULL
,
635 struct vfs_full_audit_private_data
, return -1);
637 do_log(SMB_VFS_OP_CONNECT
, True
, handle
,
643 static void smb_full_audit_disconnect(vfs_handle_struct
*handle
)
645 SMB_VFS_NEXT_DISCONNECT(handle
);
647 do_log(SMB_VFS_OP_DISCONNECT
, True
, handle
,
648 "%s", lp_servicename(SNUM(handle
->conn
)));
650 /* The bitmaps will be disconnected when the private
656 static uint64_t smb_full_audit_disk_free(vfs_handle_struct
*handle
,
658 bool small_query
, uint64_t *bsize
,
659 uint64_t *dfree
, uint64_t *dsize
)
663 result
= SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
, bsize
,
666 /* Don't have a reasonable notion of failure here */
668 do_log(SMB_VFS_OP_DISK_FREE
, True
, handle
, "%s", path
);
673 static int smb_full_audit_get_quota(struct vfs_handle_struct
*handle
,
674 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
679 result
= SMB_VFS_NEXT_GET_QUOTA(handle
, qtype
, id
, qt
);
681 do_log(SMB_VFS_OP_GET_QUOTA
, (result
>= 0), handle
, "");
687 static int smb_full_audit_set_quota(struct vfs_handle_struct
*handle
,
688 enum SMB_QUOTA_TYPE qtype
, unid_t id
,
693 result
= SMB_VFS_NEXT_SET_QUOTA(handle
, qtype
, id
, qt
);
695 do_log(SMB_VFS_OP_SET_QUOTA
, (result
>= 0), handle
, "");
700 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct
*handle
,
701 struct files_struct
*fsp
,
702 struct shadow_copy_data
*shadow_copy_data
,
707 result
= SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle
, fsp
, shadow_copy_data
, labels
);
709 do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA
, (result
>= 0), handle
, "");
714 static int smb_full_audit_statvfs(struct vfs_handle_struct
*handle
,
716 struct vfs_statvfs_struct
*statbuf
)
720 result
= SMB_VFS_NEXT_STATVFS(handle
, path
, statbuf
);
722 do_log(SMB_VFS_OP_STATVFS
, (result
>= 0), handle
, "");
727 static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct
*handle
, enum timestamp_set_resolution
*p_ts_res
)
731 result
= SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
);
733 do_log(SMB_VFS_OP_FS_CAPABILITIES
, true, handle
, "");
738 static SMB_STRUCT_DIR
*smb_full_audit_opendir(vfs_handle_struct
*handle
,
739 const char *fname
, const char *mask
, uint32 attr
)
741 SMB_STRUCT_DIR
*result
;
743 result
= SMB_VFS_NEXT_OPENDIR(handle
, fname
, mask
, attr
);
745 do_log(SMB_VFS_OP_OPENDIR
, (result
!= NULL
), handle
, "%s", fname
);
750 static SMB_STRUCT_DIR
*smb_full_audit_fdopendir(vfs_handle_struct
*handle
,
751 files_struct
*fsp
, const char *mask
, uint32 attr
)
753 SMB_STRUCT_DIR
*result
;
755 result
= SMB_VFS_NEXT_FDOPENDIR(handle
, fsp
, mask
, attr
);
757 do_log(SMB_VFS_OP_FDOPENDIR
, (result
!= NULL
), handle
, "%s",
758 fsp_str_do_log(fsp
));
763 static SMB_STRUCT_DIRENT
*smb_full_audit_readdir(vfs_handle_struct
*handle
,
764 SMB_STRUCT_DIR
*dirp
, SMB_STRUCT_STAT
*sbuf
)
766 SMB_STRUCT_DIRENT
*result
;
768 result
= SMB_VFS_NEXT_READDIR(handle
, dirp
, sbuf
);
770 /* This operation has no reasonable error condition
771 * (End of dir is also failure), so always succeed.
773 do_log(SMB_VFS_OP_READDIR
, True
, handle
, "");
778 static void smb_full_audit_seekdir(vfs_handle_struct
*handle
,
779 SMB_STRUCT_DIR
*dirp
, long offset
)
781 SMB_VFS_NEXT_SEEKDIR(handle
, dirp
, offset
);
783 do_log(SMB_VFS_OP_SEEKDIR
, True
, handle
, "");
787 static long smb_full_audit_telldir(vfs_handle_struct
*handle
,
788 SMB_STRUCT_DIR
*dirp
)
792 result
= SMB_VFS_NEXT_TELLDIR(handle
, dirp
);
794 do_log(SMB_VFS_OP_TELLDIR
, True
, handle
, "");
799 static void smb_full_audit_rewinddir(vfs_handle_struct
*handle
,
800 SMB_STRUCT_DIR
*dirp
)
802 SMB_VFS_NEXT_REWINDDIR(handle
, dirp
);
804 do_log(SMB_VFS_OP_REWINDDIR
, True
, handle
, "");
808 static int smb_full_audit_mkdir(vfs_handle_struct
*handle
,
809 const char *path
, mode_t mode
)
813 result
= SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
815 do_log(SMB_VFS_OP_MKDIR
, (result
>= 0), handle
, "%s", path
);
820 static int smb_full_audit_rmdir(vfs_handle_struct
*handle
,
825 result
= SMB_VFS_NEXT_RMDIR(handle
, path
);
827 do_log(SMB_VFS_OP_RMDIR
, (result
>= 0), handle
, "%s", path
);
832 static int smb_full_audit_closedir(vfs_handle_struct
*handle
,
833 SMB_STRUCT_DIR
*dirp
)
837 result
= SMB_VFS_NEXT_CLOSEDIR(handle
, dirp
);
839 do_log(SMB_VFS_OP_CLOSEDIR
, (result
>= 0), handle
, "");
844 static void smb_full_audit_init_search_op(vfs_handle_struct
*handle
,
845 SMB_STRUCT_DIR
*dirp
)
847 SMB_VFS_NEXT_INIT_SEARCH_OP(handle
, dirp
);
849 do_log(SMB_VFS_OP_INIT_SEARCH_OP
, True
, handle
, "");
853 static int smb_full_audit_open(vfs_handle_struct
*handle
,
854 struct smb_filename
*smb_fname
,
855 files_struct
*fsp
, int flags
, mode_t mode
)
859 result
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
861 do_log(SMB_VFS_OP_OPEN
, (result
>= 0), handle
, "%s|%s",
862 ((flags
& O_WRONLY
) || (flags
& O_RDWR
))?"w":"r",
863 smb_fname_str_do_log(smb_fname
));
868 static NTSTATUS
smb_full_audit_create_file(vfs_handle_struct
*handle
,
869 struct smb_request
*req
,
870 uint16_t root_dir_fid
,
871 struct smb_filename
*smb_fname
,
872 uint32_t access_mask
,
873 uint32_t share_access
,
874 uint32_t create_disposition
,
875 uint32_t create_options
,
876 uint32_t file_attributes
,
877 uint32_t oplock_request
,
878 uint64_t allocation_size
,
879 uint32_t private_flags
,
880 struct security_descriptor
*sd
,
881 struct ea_list
*ea_list
,
882 files_struct
**result_fsp
,
886 const char* str_create_disposition
;
888 switch (create_disposition
) {
890 str_create_disposition
= "supersede";
892 case FILE_OVERWRITE_IF
:
893 str_create_disposition
= "overwrite_if";
896 str_create_disposition
= "open";
899 str_create_disposition
= "overwrite";
902 str_create_disposition
= "create";
905 str_create_disposition
= "open_if";
908 str_create_disposition
= "unknown";
911 result
= SMB_VFS_NEXT_CREATE_FILE(
914 root_dir_fid
, /* root_dir_fid */
915 smb_fname
, /* fname */
916 access_mask
, /* access_mask */
917 share_access
, /* share_access */
918 create_disposition
, /* create_disposition*/
919 create_options
, /* create_options */
920 file_attributes
, /* file_attributes */
921 oplock_request
, /* oplock_request */
922 allocation_size
, /* allocation_size */
925 ea_list
, /* ea_list */
926 result_fsp
, /* result */
929 do_log(SMB_VFS_OP_CREATE_FILE
, (NT_STATUS_IS_OK(result
)), handle
,
930 "0x%x|%s|%s|%s", access_mask
,
931 create_options
& FILE_DIRECTORY_FILE
? "dir" : "file",
932 str_create_disposition
, smb_fname_str_do_log(smb_fname
));
937 static int smb_full_audit_close(vfs_handle_struct
*handle
, files_struct
*fsp
)
941 result
= SMB_VFS_NEXT_CLOSE(handle
, fsp
);
943 do_log(SMB_VFS_OP_CLOSE
, (result
>= 0), handle
, "%s",
944 fsp_str_do_log(fsp
));
949 static ssize_t
smb_full_audit_read(vfs_handle_struct
*handle
, files_struct
*fsp
,
950 void *data
, size_t n
)
954 result
= SMB_VFS_NEXT_READ(handle
, fsp
, data
, n
);
956 do_log(SMB_VFS_OP_READ
, (result
>= 0), handle
, "%s",
957 fsp_str_do_log(fsp
));
962 static ssize_t
smb_full_audit_pread(vfs_handle_struct
*handle
, files_struct
*fsp
,
963 void *data
, size_t n
, SMB_OFF_T offset
)
967 result
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
969 do_log(SMB_VFS_OP_PREAD
, (result
>= 0), handle
, "%s",
970 fsp_str_do_log(fsp
));
975 static ssize_t
smb_full_audit_write(vfs_handle_struct
*handle
, files_struct
*fsp
,
976 const void *data
, size_t n
)
980 result
= SMB_VFS_NEXT_WRITE(handle
, fsp
, data
, n
);
982 do_log(SMB_VFS_OP_WRITE
, (result
>= 0), handle
, "%s",
983 fsp_str_do_log(fsp
));
988 static ssize_t
smb_full_audit_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
,
989 const void *data
, size_t n
,
994 result
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
996 do_log(SMB_VFS_OP_PWRITE
, (result
>= 0), handle
, "%s",
997 fsp_str_do_log(fsp
));
1002 static SMB_OFF_T
smb_full_audit_lseek(vfs_handle_struct
*handle
, files_struct
*fsp
,
1003 SMB_OFF_T offset
, int whence
)
1007 result
= SMB_VFS_NEXT_LSEEK(handle
, fsp
, offset
, whence
);
1009 do_log(SMB_VFS_OP_LSEEK
, (result
!= (ssize_t
)-1), handle
,
1010 "%s", fsp_str_do_log(fsp
));
1015 static ssize_t
smb_full_audit_sendfile(vfs_handle_struct
*handle
, int tofd
,
1016 files_struct
*fromfsp
,
1017 const DATA_BLOB
*hdr
, SMB_OFF_T offset
,
1022 result
= SMB_VFS_NEXT_SENDFILE(handle
, tofd
, fromfsp
, hdr
, offset
, n
);
1024 do_log(SMB_VFS_OP_SENDFILE
, (result
>= 0), handle
,
1025 "%s", fsp_str_do_log(fromfsp
));
1030 static ssize_t
smb_full_audit_recvfile(vfs_handle_struct
*handle
, int fromfd
,
1031 files_struct
*tofsp
,
1037 result
= SMB_VFS_NEXT_RECVFILE(handle
, fromfd
, tofsp
, offset
, n
);
1039 do_log(SMB_VFS_OP_RECVFILE
, (result
>= 0), handle
,
1040 "%s", fsp_str_do_log(tofsp
));
1045 static int smb_full_audit_rename(vfs_handle_struct
*handle
,
1046 const struct smb_filename
*smb_fname_src
,
1047 const struct smb_filename
*smb_fname_dst
)
1051 result
= SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
, smb_fname_dst
);
1053 do_log(SMB_VFS_OP_RENAME
, (result
>= 0), handle
, "%s|%s",
1054 smb_fname_str_do_log(smb_fname_src
),
1055 smb_fname_str_do_log(smb_fname_dst
));
1060 static int smb_full_audit_fsync(vfs_handle_struct
*handle
, files_struct
*fsp
)
1064 result
= SMB_VFS_NEXT_FSYNC(handle
, fsp
);
1066 do_log(SMB_VFS_OP_FSYNC
, (result
>= 0), handle
, "%s",
1067 fsp_str_do_log(fsp
));
1072 static int smb_full_audit_stat(vfs_handle_struct
*handle
,
1073 struct smb_filename
*smb_fname
)
1077 result
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1079 do_log(SMB_VFS_OP_STAT
, (result
>= 0), handle
, "%s",
1080 smb_fname_str_do_log(smb_fname
));
1085 static int smb_full_audit_fstat(vfs_handle_struct
*handle
, files_struct
*fsp
,
1086 SMB_STRUCT_STAT
*sbuf
)
1090 result
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1092 do_log(SMB_VFS_OP_FSTAT
, (result
>= 0), handle
, "%s",
1093 fsp_str_do_log(fsp
));
1098 static int smb_full_audit_lstat(vfs_handle_struct
*handle
,
1099 struct smb_filename
*smb_fname
)
1103 result
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1105 do_log(SMB_VFS_OP_LSTAT
, (result
>= 0), handle
, "%s",
1106 smb_fname_str_do_log(smb_fname
));
1111 static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct
*handle
,
1112 files_struct
*fsp
, const SMB_STRUCT_STAT
*sbuf
)
1116 result
= SMB_VFS_NEXT_GET_ALLOC_SIZE(handle
, fsp
, sbuf
);
1118 do_log(SMB_VFS_OP_GET_ALLOC_SIZE
, (result
!= (uint64_t)-1), handle
,
1124 static int smb_full_audit_unlink(vfs_handle_struct
*handle
,
1125 const struct smb_filename
*smb_fname
)
1129 result
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
1131 do_log(SMB_VFS_OP_UNLINK
, (result
>= 0), handle
, "%s",
1132 smb_fname_str_do_log(smb_fname
));
1137 static int smb_full_audit_chmod(vfs_handle_struct
*handle
,
1138 const char *path
, mode_t mode
)
1142 result
= SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1144 do_log(SMB_VFS_OP_CHMOD
, (result
>= 0), handle
, "%s|%o", path
, mode
);
1149 static int smb_full_audit_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
,
1154 result
= SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
1156 do_log(SMB_VFS_OP_FCHMOD
, (result
>= 0), handle
,
1157 "%s|%o", fsp_str_do_log(fsp
), mode
);
1162 static int smb_full_audit_chown(vfs_handle_struct
*handle
,
1163 const char *path
, uid_t uid
, gid_t gid
)
1167 result
= SMB_VFS_NEXT_CHOWN(handle
, path
, uid
, gid
);
1169 do_log(SMB_VFS_OP_CHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1170 path
, (long int)uid
, (long int)gid
);
1175 static int smb_full_audit_fchown(vfs_handle_struct
*handle
, files_struct
*fsp
,
1176 uid_t uid
, gid_t gid
)
1180 result
= SMB_VFS_NEXT_FCHOWN(handle
, fsp
, uid
, gid
);
1182 do_log(SMB_VFS_OP_FCHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1183 fsp_str_do_log(fsp
), (long int)uid
, (long int)gid
);
1188 static int smb_full_audit_lchown(vfs_handle_struct
*handle
,
1189 const char *path
, uid_t uid
, gid_t gid
)
1193 result
= SMB_VFS_NEXT_LCHOWN(handle
, path
, uid
, gid
);
1195 do_log(SMB_VFS_OP_LCHOWN
, (result
>= 0), handle
, "%s|%ld|%ld",
1196 path
, (long int)uid
, (long int)gid
);
1201 static int smb_full_audit_chdir(vfs_handle_struct
*handle
,
1206 result
= SMB_VFS_NEXT_CHDIR(handle
, path
);
1208 do_log(SMB_VFS_OP_CHDIR
, (result
>= 0), handle
, "chdir|%s", path
);
1213 static char *smb_full_audit_getwd(vfs_handle_struct
*handle
)
1217 result
= SMB_VFS_NEXT_GETWD(handle
);
1219 do_log(SMB_VFS_OP_GETWD
, (result
!= NULL
), handle
, "%s",
1220 result
== NULL
? "" : result
);
1225 static int smb_full_audit_ntimes(vfs_handle_struct
*handle
,
1226 const struct smb_filename
*smb_fname
,
1227 struct smb_file_time
*ft
)
1231 result
= SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1233 do_log(SMB_VFS_OP_NTIMES
, (result
>= 0), handle
, "%s",
1234 smb_fname_str_do_log(smb_fname
));
1239 static int smb_full_audit_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1244 result
= SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1246 do_log(SMB_VFS_OP_FTRUNCATE
, (result
>= 0), handle
,
1247 "%s", fsp_str_do_log(fsp
));
1252 static int smb_full_audit_fallocate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1253 enum vfs_fallocate_mode mode
,
1259 result
= SMB_VFS_NEXT_FALLOCATE(handle
, fsp
, mode
, offset
, len
);
1261 do_log(SMB_VFS_OP_FALLOCATE
, (result
>= 0), handle
,
1262 "%s", fsp_str_do_log(fsp
));
1267 static bool smb_full_audit_lock(vfs_handle_struct
*handle
, files_struct
*fsp
,
1268 int op
, SMB_OFF_T offset
, SMB_OFF_T count
, int type
)
1272 result
= SMB_VFS_NEXT_LOCK(handle
, fsp
, op
, offset
, count
, type
);
1274 do_log(SMB_VFS_OP_LOCK
, result
, handle
, "%s", fsp_str_do_log(fsp
));
1279 static int smb_full_audit_kernel_flock(struct vfs_handle_struct
*handle
,
1280 struct files_struct
*fsp
,
1281 uint32 share_mode
, uint32 access_mask
)
1285 result
= SMB_VFS_NEXT_KERNEL_FLOCK(handle
, fsp
, share_mode
, access_mask
);
1287 do_log(SMB_VFS_OP_KERNEL_FLOCK
, (result
>= 0), handle
, "%s",
1288 fsp_str_do_log(fsp
));
1293 static int smb_full_audit_linux_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
1298 result
= SMB_VFS_NEXT_LINUX_SETLEASE(handle
, fsp
, leasetype
);
1300 do_log(SMB_VFS_OP_LINUX_SETLEASE
, (result
>= 0), handle
, "%s",
1301 fsp_str_do_log(fsp
));
1306 static bool smb_full_audit_getlock(vfs_handle_struct
*handle
, files_struct
*fsp
,
1307 SMB_OFF_T
*poffset
, SMB_OFF_T
*pcount
, int *ptype
, pid_t
*ppid
)
1311 result
= SMB_VFS_NEXT_GETLOCK(handle
, fsp
, poffset
, pcount
, ptype
, ppid
);
1313 do_log(SMB_VFS_OP_GETLOCK
, result
, handle
, "%s", fsp_str_do_log(fsp
));
1318 static int smb_full_audit_symlink(vfs_handle_struct
*handle
,
1319 const char *oldpath
, const char *newpath
)
1323 result
= SMB_VFS_NEXT_SYMLINK(handle
, oldpath
, newpath
);
1325 do_log(SMB_VFS_OP_SYMLINK
, (result
>= 0), handle
,
1326 "%s|%s", oldpath
, newpath
);
1331 static int smb_full_audit_readlink(vfs_handle_struct
*handle
,
1332 const char *path
, char *buf
, size_t bufsiz
)
1336 result
= SMB_VFS_NEXT_READLINK(handle
, path
, buf
, bufsiz
);
1338 do_log(SMB_VFS_OP_READLINK
, (result
>= 0), handle
, "%s", path
);
1343 static int smb_full_audit_link(vfs_handle_struct
*handle
,
1344 const char *oldpath
, const char *newpath
)
1348 result
= SMB_VFS_NEXT_LINK(handle
, oldpath
, newpath
);
1350 do_log(SMB_VFS_OP_LINK
, (result
>= 0), handle
,
1351 "%s|%s", oldpath
, newpath
);
1356 static int smb_full_audit_mknod(vfs_handle_struct
*handle
,
1357 const char *pathname
, mode_t mode
, SMB_DEV_T dev
)
1361 result
= SMB_VFS_NEXT_MKNOD(handle
, pathname
, mode
, dev
);
1363 do_log(SMB_VFS_OP_MKNOD
, (result
>= 0), handle
, "%s", pathname
);
1368 static char *smb_full_audit_realpath(vfs_handle_struct
*handle
,
1373 result
= SMB_VFS_NEXT_REALPATH(handle
, path
);
1375 do_log(SMB_VFS_OP_REALPATH
, (result
!= NULL
), handle
, "%s", path
);
1380 static NTSTATUS
smb_full_audit_notify_watch(struct vfs_handle_struct
*handle
,
1381 struct sys_notify_context
*ctx
,
1382 struct notify_entry
*e
,
1383 void (*callback
)(struct sys_notify_context
*ctx
,
1385 struct notify_event
*ev
),
1386 void *private_data
, void *handle_p
)
1390 result
= SMB_VFS_NEXT_NOTIFY_WATCH(handle
, ctx
, e
, callback
, private_data
, handle_p
);
1392 do_log(SMB_VFS_OP_NOTIFY_WATCH
, NT_STATUS_IS_OK(result
), handle
, "");
1397 static int smb_full_audit_chflags(vfs_handle_struct
*handle
,
1398 const char *path
, unsigned int flags
)
1402 result
= SMB_VFS_NEXT_CHFLAGS(handle
, path
, flags
);
1404 do_log(SMB_VFS_OP_CHFLAGS
, (result
!= 0), handle
, "%s", path
);
1409 static struct file_id
smb_full_audit_file_id_create(struct vfs_handle_struct
*handle
,
1410 const SMB_STRUCT_STAT
*sbuf
)
1412 struct file_id id_zero
;
1413 struct file_id result
;
1415 ZERO_STRUCT(id_zero
);
1417 result
= SMB_VFS_NEXT_FILE_ID_CREATE(handle
, sbuf
);
1419 do_log(SMB_VFS_OP_FILE_ID_CREATE
,
1420 !file_id_equal(&id_zero
, &result
),
1421 handle
, "%s", file_id_string_tos(&result
));
1426 static NTSTATUS
smb_full_audit_streaminfo(vfs_handle_struct
*handle
,
1427 struct files_struct
*fsp
,
1429 TALLOC_CTX
*mem_ctx
,
1430 unsigned int *pnum_streams
,
1431 struct stream_struct
**pstreams
)
1435 result
= SMB_VFS_NEXT_STREAMINFO(handle
, fsp
, fname
, mem_ctx
,
1436 pnum_streams
, pstreams
);
1438 do_log(SMB_VFS_OP_STREAMINFO
, NT_STATUS_IS_OK(result
), handle
,
1444 static int smb_full_audit_get_real_filename(struct vfs_handle_struct
*handle
,
1447 TALLOC_CTX
*mem_ctx
,
1452 result
= SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
, mem_ctx
,
1455 do_log(SMB_VFS_OP_GET_REAL_FILENAME
, (result
== 0), handle
,
1456 "%s/%s->%s", path
, name
, (result
== 0) ? "" : *found_name
);
1461 static const char *smb_full_audit_connectpath(vfs_handle_struct
*handle
,
1466 result
= SMB_VFS_NEXT_CONNECTPATH(handle
, fname
);
1468 do_log(SMB_VFS_OP_CONNECTPATH
, result
!= NULL
, handle
,
1474 static NTSTATUS
smb_full_audit_brl_lock_windows(struct vfs_handle_struct
*handle
,
1475 struct byte_range_lock
*br_lck
,
1476 struct lock_struct
*plock
,
1478 struct blocking_lock_record
*blr
)
1482 result
= SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle
, br_lck
, plock
,
1483 blocking_lock
, blr
);
1485 do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS
, NT_STATUS_IS_OK(result
), handle
,
1486 "%s:%llu-%llu. type=%d. blocking=%d", fsp_str_do_log(br_lck
->fsp
),
1487 plock
->start
, plock
->size
, plock
->lock_type
, blocking_lock
);
1492 static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct
*handle
,
1493 struct messaging_context
*msg_ctx
,
1494 struct byte_range_lock
*br_lck
,
1495 const struct lock_struct
*plock
)
1499 result
= SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle
, msg_ctx
, br_lck
,
1502 do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS
, (result
== 0), handle
,
1503 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck
->fsp
), plock
->start
,
1504 plock
->size
, plock
->lock_type
);
1509 static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct
*handle
,
1510 struct byte_range_lock
*br_lck
,
1511 struct lock_struct
*plock
,
1512 struct blocking_lock_record
*blr
)
1516 result
= SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle
, br_lck
, plock
, blr
);
1518 do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS
, (result
== 0), handle
,
1519 "%s:%llu-%llu:%d", fsp_str_do_log(br_lck
->fsp
), plock
->start
,
1525 static bool smb_full_audit_strict_lock(struct vfs_handle_struct
*handle
,
1526 struct files_struct
*fsp
,
1527 struct lock_struct
*plock
)
1531 result
= SMB_VFS_NEXT_STRICT_LOCK(handle
, fsp
, plock
);
1533 do_log(SMB_VFS_OP_STRICT_LOCK
, result
, handle
,
1534 "%s:%llu-%llu:%d", fsp_str_do_log(fsp
), plock
->start
,
1540 static void smb_full_audit_strict_unlock(struct vfs_handle_struct
*handle
,
1541 struct files_struct
*fsp
,
1542 struct lock_struct
*plock
)
1544 SMB_VFS_NEXT_STRICT_UNLOCK(handle
, fsp
, plock
);
1546 do_log(SMB_VFS_OP_STRICT_UNLOCK
, true, handle
,
1547 "%s:%llu-%llu:%d", fsp_str_do_log(fsp
), plock
->start
,
1553 static NTSTATUS
smb_full_audit_translate_name(struct vfs_handle_struct
*handle
,
1555 enum vfs_translate_direction direction
,
1556 TALLOC_CTX
*mem_ctx
,
1561 result
= SMB_VFS_NEXT_TRANSLATE_NAME(handle
, name
, direction
, mem_ctx
,
1564 do_log(SMB_VFS_OP_TRANSLATE_NAME
, NT_STATUS_IS_OK(result
), handle
, "");
1569 static NTSTATUS
smb_full_audit_fget_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1570 uint32 security_info
,
1571 struct security_descriptor
**ppdesc
)
1575 result
= SMB_VFS_NEXT_FGET_NT_ACL(handle
, fsp
, security_info
, ppdesc
);
1577 do_log(SMB_VFS_OP_FGET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1578 "%s", fsp_str_do_log(fsp
));
1583 static NTSTATUS
smb_full_audit_get_nt_acl(vfs_handle_struct
*handle
,
1585 uint32 security_info
,
1586 struct security_descriptor
**ppdesc
)
1590 result
= SMB_VFS_NEXT_GET_NT_ACL(handle
, name
, security_info
, ppdesc
);
1592 do_log(SMB_VFS_OP_GET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
,
1598 static NTSTATUS
smb_full_audit_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1599 uint32 security_info_sent
,
1600 const struct security_descriptor
*psd
)
1604 result
= SMB_VFS_NEXT_FSET_NT_ACL(handle
, fsp
, security_info_sent
, psd
);
1606 do_log(SMB_VFS_OP_FSET_NT_ACL
, NT_STATUS_IS_OK(result
), handle
, "%s",
1607 fsp_str_do_log(fsp
));
1612 static int smb_full_audit_chmod_acl(vfs_handle_struct
*handle
,
1613 const char *path
, mode_t mode
)
1617 result
= SMB_VFS_NEXT_CHMOD_ACL(handle
, path
, mode
);
1619 do_log(SMB_VFS_OP_CHMOD_ACL
, (result
>= 0), handle
,
1620 "%s|%o", path
, mode
);
1625 static int smb_full_audit_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
1630 result
= SMB_VFS_NEXT_FCHMOD_ACL(handle
, fsp
, mode
);
1632 do_log(SMB_VFS_OP_FCHMOD_ACL
, (result
>= 0), handle
,
1633 "%s|%o", fsp_str_do_log(fsp
), mode
);
1638 static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct
*handle
,
1640 SMB_ACL_T theacl
, int entry_id
,
1641 SMB_ACL_ENTRY_T
*entry_p
)
1645 result
= SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle
, theacl
, entry_id
,
1648 do_log(SMB_VFS_OP_SYS_ACL_GET_ENTRY
, (result
>= 0), handle
,
1654 static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct
*handle
,
1656 SMB_ACL_ENTRY_T entry_d
,
1657 SMB_ACL_TAG_T
*tag_type_p
)
1661 result
= SMB_VFS_NEXT_SYS_ACL_GET_TAG_TYPE(handle
, entry_d
,
1664 do_log(SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE
, (result
>= 0), handle
,
1670 static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct
*handle
,
1672 SMB_ACL_ENTRY_T entry_d
,
1673 SMB_ACL_PERMSET_T
*permset_p
)
1677 result
= SMB_VFS_NEXT_SYS_ACL_GET_PERMSET(handle
, entry_d
,
1680 do_log(SMB_VFS_OP_SYS_ACL_GET_PERMSET
, (result
>= 0), handle
,
1686 static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct
*handle
,
1688 SMB_ACL_ENTRY_T entry_d
)
1692 result
= SMB_VFS_NEXT_SYS_ACL_GET_QUALIFIER(handle
, entry_d
);
1694 do_log(SMB_VFS_OP_SYS_ACL_GET_QUALIFIER
, (result
!= NULL
), handle
,
1700 static SMB_ACL_T
smb_full_audit_sys_acl_get_file(vfs_handle_struct
*handle
,
1702 SMB_ACL_TYPE_T type
)
1706 result
= SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
, type
);
1708 do_log(SMB_VFS_OP_SYS_ACL_GET_FILE
, (result
!= NULL
), handle
,
1714 static SMB_ACL_T
smb_full_audit_sys_acl_get_fd(vfs_handle_struct
*handle
,
1719 result
= SMB_VFS_NEXT_SYS_ACL_GET_FD(handle
, fsp
);
1721 do_log(SMB_VFS_OP_SYS_ACL_GET_FD
, (result
!= NULL
), handle
,
1722 "%s", fsp_str_do_log(fsp
));
1727 static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct
*handle
,
1729 SMB_ACL_PERMSET_T permset
)
1733 result
= SMB_VFS_NEXT_SYS_ACL_CLEAR_PERMS(handle
, permset
);
1735 do_log(SMB_VFS_OP_SYS_ACL_CLEAR_PERMS
, (result
>= 0), handle
,
1741 static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct
*handle
,
1743 SMB_ACL_PERMSET_T permset
,
1744 SMB_ACL_PERM_T perm
)
1748 result
= SMB_VFS_NEXT_SYS_ACL_ADD_PERM(handle
, permset
, perm
);
1750 do_log(SMB_VFS_OP_SYS_ACL_ADD_PERM
, (result
>= 0), handle
,
1756 static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct
*handle
,
1762 result
= SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle
, theacl
, plen
);
1764 do_log(SMB_VFS_OP_SYS_ACL_TO_TEXT
, (result
!= NULL
), handle
,
1770 static SMB_ACL_T
smb_full_audit_sys_acl_init(vfs_handle_struct
*handle
,
1776 result
= SMB_VFS_NEXT_SYS_ACL_INIT(handle
, count
);
1778 do_log(SMB_VFS_OP_SYS_ACL_INIT
, (result
!= NULL
), handle
,
1784 static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct
*handle
,
1786 SMB_ACL_ENTRY_T
*pentry
)
1790 result
= SMB_VFS_NEXT_SYS_ACL_CREATE_ENTRY(handle
, pacl
, pentry
);
1792 do_log(SMB_VFS_OP_SYS_ACL_CREATE_ENTRY
, (result
>= 0), handle
,
1798 static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct
*handle
,
1800 SMB_ACL_ENTRY_T entry
,
1801 SMB_ACL_TAG_T tagtype
)
1805 result
= SMB_VFS_NEXT_SYS_ACL_SET_TAG_TYPE(handle
, entry
,
1808 do_log(SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE
, (result
>= 0), handle
,
1814 static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct
*handle
,
1816 SMB_ACL_ENTRY_T entry
,
1821 result
= SMB_VFS_NEXT_SYS_ACL_SET_QUALIFIER(handle
, entry
, qual
);
1823 do_log(SMB_VFS_OP_SYS_ACL_SET_QUALIFIER
, (result
>= 0), handle
,
1829 static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct
*handle
,
1831 SMB_ACL_ENTRY_T entry
,
1832 SMB_ACL_PERMSET_T permset
)
1836 result
= SMB_VFS_NEXT_SYS_ACL_SET_PERMSET(handle
, entry
, permset
);
1838 do_log(SMB_VFS_OP_SYS_ACL_SET_PERMSET
, (result
>= 0), handle
,
1844 static int smb_full_audit_sys_acl_valid(vfs_handle_struct
*handle
,
1850 result
= SMB_VFS_NEXT_SYS_ACL_VALID(handle
, theacl
);
1852 do_log(SMB_VFS_OP_SYS_ACL_VALID
, (result
>= 0), handle
,
1858 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct
*handle
,
1860 const char *name
, SMB_ACL_TYPE_T acltype
,
1865 result
= SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
, acltype
,
1868 do_log(SMB_VFS_OP_SYS_ACL_SET_FILE
, (result
>= 0), handle
,
1874 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
1879 result
= SMB_VFS_NEXT_SYS_ACL_SET_FD(handle
, fsp
, theacl
);
1881 do_log(SMB_VFS_OP_SYS_ACL_SET_FD
, (result
>= 0), handle
,
1882 "%s", fsp_str_do_log(fsp
));
1887 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1893 result
= SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, path
);
1895 do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
, (result
>= 0), handle
,
1901 static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct
*handle
,
1903 SMB_ACL_PERMSET_T permset
,
1904 SMB_ACL_PERM_T perm
)
1908 result
= SMB_VFS_NEXT_SYS_ACL_GET_PERM(handle
, permset
, perm
);
1910 do_log(SMB_VFS_OP_SYS_ACL_GET_PERM
, (result
>= 0), handle
,
1916 static int smb_full_audit_sys_acl_free_text(vfs_handle_struct
*handle
,
1922 result
= SMB_VFS_NEXT_SYS_ACL_FREE_TEXT(handle
, text
);
1924 do_log(SMB_VFS_OP_SYS_ACL_FREE_TEXT
, (result
>= 0), handle
,
1930 static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct
*handle
,
1932 SMB_ACL_T posix_acl
)
1936 result
= SMB_VFS_NEXT_SYS_ACL_FREE_ACL(handle
, posix_acl
);
1938 do_log(SMB_VFS_OP_SYS_ACL_FREE_ACL
, (result
>= 0), handle
,
1944 static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct
*handle
,
1946 SMB_ACL_TAG_T tagtype
)
1950 result
= SMB_VFS_NEXT_SYS_ACL_FREE_QUALIFIER(handle
, qualifier
,
1953 do_log(SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER
, (result
>= 0), handle
,
1959 static ssize_t
smb_full_audit_getxattr(struct vfs_handle_struct
*handle
,
1961 const char *name
, void *value
, size_t size
)
1965 result
= SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
, size
);
1967 do_log(SMB_VFS_OP_GETXATTR
, (result
>= 0), handle
,
1968 "%s|%s", path
, name
);
1973 static ssize_t
smb_full_audit_lgetxattr(struct vfs_handle_struct
*handle
,
1974 const char *path
, const char *name
,
1975 void *value
, size_t size
)
1979 result
= SMB_VFS_NEXT_LGETXATTR(handle
, path
, name
, value
, size
);
1981 do_log(SMB_VFS_OP_LGETXATTR
, (result
>= 0), handle
,
1982 "%s|%s", path
, name
);
1987 static ssize_t
smb_full_audit_fgetxattr(struct vfs_handle_struct
*handle
,
1988 struct files_struct
*fsp
,
1989 const char *name
, void *value
, size_t size
)
1993 result
= SMB_VFS_NEXT_FGETXATTR(handle
, fsp
, name
, value
, size
);
1995 do_log(SMB_VFS_OP_FGETXATTR
, (result
>= 0), handle
,
1996 "%s|%s", fsp_str_do_log(fsp
), name
);
2001 static ssize_t
smb_full_audit_listxattr(struct vfs_handle_struct
*handle
,
2002 const char *path
, char *list
, size_t size
)
2006 result
= SMB_VFS_NEXT_LISTXATTR(handle
, path
, list
, size
);
2008 do_log(SMB_VFS_OP_LISTXATTR
, (result
>= 0), handle
, "%s", path
);
2013 static ssize_t
smb_full_audit_llistxattr(struct vfs_handle_struct
*handle
,
2014 const char *path
, char *list
, size_t size
)
2018 result
= SMB_VFS_NEXT_LLISTXATTR(handle
, path
, list
, size
);
2020 do_log(SMB_VFS_OP_LLISTXATTR
, (result
>= 0), handle
, "%s", path
);
2025 static ssize_t
smb_full_audit_flistxattr(struct vfs_handle_struct
*handle
,
2026 struct files_struct
*fsp
, char *list
,
2031 result
= SMB_VFS_NEXT_FLISTXATTR(handle
, fsp
, list
, size
);
2033 do_log(SMB_VFS_OP_FLISTXATTR
, (result
>= 0), handle
,
2034 "%s", fsp_str_do_log(fsp
));
2039 static int smb_full_audit_removexattr(struct vfs_handle_struct
*handle
,
2045 result
= SMB_VFS_NEXT_REMOVEXATTR(handle
, path
, name
);
2047 do_log(SMB_VFS_OP_REMOVEXATTR
, (result
>= 0), handle
,
2048 "%s|%s", path
, name
);
2053 static int smb_full_audit_lremovexattr(struct vfs_handle_struct
*handle
,
2059 result
= SMB_VFS_NEXT_LREMOVEXATTR(handle
, path
, name
);
2061 do_log(SMB_VFS_OP_LREMOVEXATTR
, (result
>= 0), handle
,
2062 "%s|%s", path
, name
);
2067 static int smb_full_audit_fremovexattr(struct vfs_handle_struct
*handle
,
2068 struct files_struct
*fsp
,
2073 result
= SMB_VFS_NEXT_FREMOVEXATTR(handle
, fsp
, name
);
2075 do_log(SMB_VFS_OP_FREMOVEXATTR
, (result
>= 0), handle
,
2076 "%s|%s", fsp_str_do_log(fsp
), name
);
2081 static int smb_full_audit_setxattr(struct vfs_handle_struct
*handle
,
2083 const char *name
, const void *value
, size_t size
,
2088 result
= SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
, size
,
2091 do_log(SMB_VFS_OP_SETXATTR
, (result
>= 0), handle
,
2092 "%s|%s", path
, name
);
2097 static int smb_full_audit_lsetxattr(struct vfs_handle_struct
*handle
,
2099 const char *name
, const void *value
, size_t size
,
2104 result
= SMB_VFS_NEXT_LSETXATTR(handle
, path
, name
, value
, size
,
2107 do_log(SMB_VFS_OP_LSETXATTR
, (result
>= 0), handle
,
2108 "%s|%s", path
, name
);
2113 static int smb_full_audit_fsetxattr(struct vfs_handle_struct
*handle
,
2114 struct files_struct
*fsp
, const char *name
,
2115 const void *value
, size_t size
, int flags
)
2119 result
= SMB_VFS_NEXT_FSETXATTR(handle
, fsp
, name
, value
, size
, flags
);
2121 do_log(SMB_VFS_OP_FSETXATTR
, (result
>= 0), handle
,
2122 "%s|%s", fsp_str_do_log(fsp
), name
);
2127 static int smb_full_audit_aio_read(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
2131 result
= SMB_VFS_NEXT_AIO_READ(handle
, fsp
, aiocb
);
2132 do_log(SMB_VFS_OP_AIO_READ
, (result
>= 0), handle
,
2133 "%s", fsp_str_do_log(fsp
));
2138 static int smb_full_audit_aio_write(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
2142 result
= SMB_VFS_NEXT_AIO_WRITE(handle
, fsp
, aiocb
);
2143 do_log(SMB_VFS_OP_AIO_WRITE
, (result
>= 0), handle
,
2144 "%s", fsp_str_do_log(fsp
));
2149 static ssize_t
smb_full_audit_aio_return(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
2153 result
= SMB_VFS_NEXT_AIO_RETURN(handle
, fsp
, aiocb
);
2154 do_log(SMB_VFS_OP_AIO_RETURN
, (result
>= 0), handle
,
2155 "%s", fsp_str_do_log(fsp
));
2160 static int smb_full_audit_aio_cancel(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
2164 result
= SMB_VFS_NEXT_AIO_CANCEL(handle
, fsp
, aiocb
);
2165 do_log(SMB_VFS_OP_AIO_CANCEL
, (result
>= 0), handle
,
2166 "%s", fsp_str_do_log(fsp
));
2171 static int smb_full_audit_aio_error(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, SMB_STRUCT_AIOCB
*aiocb
)
2175 result
= SMB_VFS_NEXT_AIO_ERROR(handle
, fsp
, aiocb
);
2176 do_log(SMB_VFS_OP_AIO_ERROR
, (result
>= 0), handle
,
2177 "%s", fsp_str_do_log(fsp
));
2182 static int smb_full_audit_aio_fsync(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, int op
, SMB_STRUCT_AIOCB
*aiocb
)
2186 result
= SMB_VFS_NEXT_AIO_FSYNC(handle
, fsp
, op
, aiocb
);
2187 do_log(SMB_VFS_OP_AIO_FSYNC
, (result
>= 0), handle
,
2188 "%s", fsp_str_do_log(fsp
));
2193 static int smb_full_audit_aio_suspend(struct vfs_handle_struct
*handle
, struct files_struct
*fsp
, const SMB_STRUCT_AIOCB
* const aiocb
[], int n
, const struct timespec
*ts
)
2197 result
= SMB_VFS_NEXT_AIO_SUSPEND(handle
, fsp
, aiocb
, n
, ts
);
2198 do_log(SMB_VFS_OP_AIO_SUSPEND
, (result
>= 0), handle
,
2199 "%s", fsp_str_do_log(fsp
));
2204 static bool smb_full_audit_aio_force(struct vfs_handle_struct
*handle
,
2205 struct files_struct
*fsp
)
2209 result
= SMB_VFS_NEXT_AIO_FORCE(handle
, fsp
);
2210 do_log(SMB_VFS_OP_AIO_FORCE
, result
, handle
,
2211 "%s", fsp_str_do_log(fsp
));
2216 static bool smb_full_audit_is_offline(struct vfs_handle_struct
*handle
,
2217 const struct smb_filename
*fname
,
2218 SMB_STRUCT_STAT
*sbuf
)
2222 result
= SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
2223 do_log(SMB_VFS_OP_IS_OFFLINE
, result
, handle
, "%s",
2224 smb_fname_str_do_log(fname
));
2228 static int smb_full_audit_set_offline(struct vfs_handle_struct
*handle
,
2229 const struct smb_filename
*fname
)
2233 result
= SMB_VFS_NEXT_SET_OFFLINE(handle
, fname
);
2234 do_log(SMB_VFS_OP_SET_OFFLINE
, result
>= 0, handle
, "%s",
2235 smb_fname_str_do_log(fname
));
2239 static struct vfs_fn_pointers vfs_full_audit_fns
= {
2241 /* Disk operations */
2243 .connect_fn
= smb_full_audit_connect
,
2244 .disconnect
= smb_full_audit_disconnect
,
2245 .disk_free
= smb_full_audit_disk_free
,
2246 .get_quota
= smb_full_audit_get_quota
,
2247 .set_quota
= smb_full_audit_set_quota
,
2248 .get_shadow_copy_data
= smb_full_audit_get_shadow_copy_data
,
2249 .statvfs
= smb_full_audit_statvfs
,
2250 .fs_capabilities
= smb_full_audit_fs_capabilities
,
2251 .opendir
= smb_full_audit_opendir
,
2252 .fdopendir
= smb_full_audit_fdopendir
,
2253 .readdir
= smb_full_audit_readdir
,
2254 .seekdir
= smb_full_audit_seekdir
,
2255 .telldir
= smb_full_audit_telldir
,
2256 .rewind_dir
= smb_full_audit_rewinddir
,
2257 .mkdir
= smb_full_audit_mkdir
,
2258 .rmdir
= smb_full_audit_rmdir
,
2259 .closedir
= smb_full_audit_closedir
,
2260 .init_search_op
= smb_full_audit_init_search_op
,
2261 .open_fn
= smb_full_audit_open
,
2262 .create_file
= smb_full_audit_create_file
,
2263 .close_fn
= smb_full_audit_close
,
2264 .vfs_read
= smb_full_audit_read
,
2265 .pread
= smb_full_audit_pread
,
2266 .write
= smb_full_audit_write
,
2267 .pwrite
= smb_full_audit_pwrite
,
2268 .lseek
= smb_full_audit_lseek
,
2269 .sendfile
= smb_full_audit_sendfile
,
2270 .recvfile
= smb_full_audit_recvfile
,
2271 .rename
= smb_full_audit_rename
,
2272 .fsync
= smb_full_audit_fsync
,
2273 .stat
= smb_full_audit_stat
,
2274 .fstat
= smb_full_audit_fstat
,
2275 .lstat
= smb_full_audit_lstat
,
2276 .get_alloc_size
= smb_full_audit_get_alloc_size
,
2277 .unlink
= smb_full_audit_unlink
,
2278 .chmod
= smb_full_audit_chmod
,
2279 .fchmod
= smb_full_audit_fchmod
,
2280 .chown
= smb_full_audit_chown
,
2281 .fchown
= smb_full_audit_fchown
,
2282 .lchown
= smb_full_audit_lchown
,
2283 .chdir
= smb_full_audit_chdir
,
2284 .getwd
= smb_full_audit_getwd
,
2285 .ntimes
= smb_full_audit_ntimes
,
2286 .ftruncate
= smb_full_audit_ftruncate
,
2287 .fallocate
= smb_full_audit_fallocate
,
2288 .lock
= smb_full_audit_lock
,
2289 .kernel_flock
= smb_full_audit_kernel_flock
,
2290 .linux_setlease
= smb_full_audit_linux_setlease
,
2291 .getlock
= smb_full_audit_getlock
,
2292 .symlink
= smb_full_audit_symlink
,
2293 .vfs_readlink
= smb_full_audit_readlink
,
2294 .link
= smb_full_audit_link
,
2295 .mknod
= smb_full_audit_mknod
,
2296 .realpath
= smb_full_audit_realpath
,
2297 .notify_watch
= smb_full_audit_notify_watch
,
2298 .chflags
= smb_full_audit_chflags
,
2299 .file_id_create
= smb_full_audit_file_id_create
,
2300 .streaminfo
= smb_full_audit_streaminfo
,
2301 .get_real_filename
= smb_full_audit_get_real_filename
,
2302 .connectpath
= smb_full_audit_connectpath
,
2303 .brl_lock_windows
= smb_full_audit_brl_lock_windows
,
2304 .brl_unlock_windows
= smb_full_audit_brl_unlock_windows
,
2305 .brl_cancel_windows
= smb_full_audit_brl_cancel_windows
,
2306 .strict_lock
= smb_full_audit_strict_lock
,
2307 .strict_unlock
= smb_full_audit_strict_unlock
,
2308 .translate_name
= smb_full_audit_translate_name
,
2309 .fget_nt_acl
= smb_full_audit_fget_nt_acl
,
2310 .get_nt_acl
= smb_full_audit_get_nt_acl
,
2311 .fset_nt_acl
= smb_full_audit_fset_nt_acl
,
2312 .chmod_acl
= smb_full_audit_chmod_acl
,
2313 .fchmod_acl
= smb_full_audit_fchmod_acl
,
2314 .sys_acl_get_entry
= smb_full_audit_sys_acl_get_entry
,
2315 .sys_acl_get_tag_type
= smb_full_audit_sys_acl_get_tag_type
,
2316 .sys_acl_get_permset
= smb_full_audit_sys_acl_get_permset
,
2317 .sys_acl_get_qualifier
= smb_full_audit_sys_acl_get_qualifier
,
2318 .sys_acl_get_file
= smb_full_audit_sys_acl_get_file
,
2319 .sys_acl_get_fd
= smb_full_audit_sys_acl_get_fd
,
2320 .sys_acl_clear_perms
= smb_full_audit_sys_acl_clear_perms
,
2321 .sys_acl_add_perm
= smb_full_audit_sys_acl_add_perm
,
2322 .sys_acl_to_text
= smb_full_audit_sys_acl_to_text
,
2323 .sys_acl_init
= smb_full_audit_sys_acl_init
,
2324 .sys_acl_create_entry
= smb_full_audit_sys_acl_create_entry
,
2325 .sys_acl_set_tag_type
= smb_full_audit_sys_acl_set_tag_type
,
2326 .sys_acl_set_qualifier
= smb_full_audit_sys_acl_set_qualifier
,
2327 .sys_acl_set_permset
= smb_full_audit_sys_acl_set_permset
,
2328 .sys_acl_valid
= smb_full_audit_sys_acl_valid
,
2329 .sys_acl_set_file
= smb_full_audit_sys_acl_set_file
,
2330 .sys_acl_set_fd
= smb_full_audit_sys_acl_set_fd
,
2331 .sys_acl_delete_def_file
= smb_full_audit_sys_acl_delete_def_file
,
2332 .sys_acl_get_perm
= smb_full_audit_sys_acl_get_perm
,
2333 .sys_acl_free_text
= smb_full_audit_sys_acl_free_text
,
2334 .sys_acl_free_acl
= smb_full_audit_sys_acl_free_acl
,
2335 .sys_acl_free_qualifier
= smb_full_audit_sys_acl_free_qualifier
,
2336 .getxattr
= smb_full_audit_getxattr
,
2337 .lgetxattr
= smb_full_audit_lgetxattr
,
2338 .fgetxattr
= smb_full_audit_fgetxattr
,
2339 .listxattr
= smb_full_audit_listxattr
,
2340 .llistxattr
= smb_full_audit_llistxattr
,
2341 .flistxattr
= smb_full_audit_flistxattr
,
2342 .removexattr
= smb_full_audit_removexattr
,
2343 .lremovexattr
= smb_full_audit_lremovexattr
,
2344 .fremovexattr
= smb_full_audit_fremovexattr
,
2345 .setxattr
= smb_full_audit_setxattr
,
2346 .lsetxattr
= smb_full_audit_lsetxattr
,
2347 .fsetxattr
= smb_full_audit_fsetxattr
,
2348 .aio_read
= smb_full_audit_aio_read
,
2349 .aio_write
= smb_full_audit_aio_write
,
2350 .aio_return_fn
= smb_full_audit_aio_return
,
2351 .aio_cancel
= smb_full_audit_aio_cancel
,
2352 .aio_error_fn
= smb_full_audit_aio_error
,
2353 .aio_fsync
= smb_full_audit_aio_fsync
,
2354 .aio_suspend
= smb_full_audit_aio_suspend
,
2355 .aio_force
= smb_full_audit_aio_force
,
2356 .is_offline
= smb_full_audit_is_offline
,
2357 .set_offline
= smb_full_audit_set_offline
,
2360 NTSTATUS
vfs_full_audit_init(void)
2362 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
2363 "full_audit", &vfs_full_audit_fns
);
2365 if (!NT_STATUS_IS_OK(ret
))
2368 vfs_full_audit_debug_level
= debug_add_class("full_audit");
2369 if (vfs_full_audit_debug_level
== -1) {
2370 vfs_full_audit_debug_level
= DBGC_VFS
;
2371 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2374 DEBUG(10, ("vfs_full_audit: Debug class number of "
2375 "'full_audit': %d\n", vfs_full_audit_debug_level
));