2004-04-29 16:11:59 +04:00
/*
* Auditing VFS module for samba . Log selected file operations to syslog
* facility .
*
* Copyright ( C ) Tim Potter , 1999 - 2000
* Copyright ( C ) Alexander Bokovoy , 2002
* Copyright ( C ) John H Terpstra , 2003
* Copyright ( C ) Stefan ( metze ) Metzmacher , 2003
* Copyright ( C ) Volker Lendecke , 2004
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
* the Free Software Foundation ; either version 3 of the License , or
2004-04-29 16:11:59 +04:00
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2007-07-10 09:23:25 +04:00
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
2004-04-29 16:11:59 +04:00
*/
2004-04-29 17:07:34 +04:00
/*
* This module implements parseable logging for all Samba VFS operations .
*
* You use it as follows :
*
* [ tmp ]
* path = / tmp
* vfs objects = full_audit
* full_audit : prefix = % u | % I
2019-09-16 17:22:37 +03:00
* full_audit : success = open opendir create_file
2004-04-29 17:07:34 +04:00
* full_audit : failure = all
*
2006-01-19 03:34:48 +03:00
* vfs op can be " all " which means log all operations .
* vfs op can be " none " which means no logging .
*
2004-04-29 17:07:34 +04:00
* This leads to syslog entries of the form :
2019-09-16 17:22:37 +03:00
* smbd_audit : nobody | 192.168 .234 .1 | opendir | ok | / tmp
* smbd_audit : nobody | 192.168 .234 .1 | create_file | fail ( No such file or directory ) | 0x1 | file | open | / ts / doesNotExist
* smbd_audit : nobody | 192.168 .234 .1 | open | ok | w | / tmp / file . txt
* smbd_audit : nobody | 192.168 .234 .1 | create_file | ok | 0x3 | file | open | / tmp / file . txt
2004-04-29 17:07:34 +04:00
*
* where " nobody " is the connected username and " 192.168.234.1 " is the
* client ' s IP address .
*
* Options :
*
* prefix : A macro expansion template prepended to the syslog entry .
*
* success : A list of VFS operations for which a successful completion should
* be logged . Defaults to no logging at all . The special operation " all " logs
* - you guessed it - everything .
*
* failure : A list of VFS operations for which failure to complete should be
* logged . Defaults to logging everything .
*/
2004-04-29 16:11:59 +04:00
# include "includes.h"
2011-02-26 01:20:06 +03:00
# include "system/filesys.h"
2011-02-25 18:19:10 +03:00
# include "system/syslog.h"
2011-03-23 00:34:22 +03:00
# include "smbd/smbd.h"
2010-08-05 17:14:04 +04:00
# include "../librpc/gen_ndr/ndr_netlogon.h"
2011-03-24 16:15:54 +03:00
# include "auth.h"
2011-03-25 15:42:42 +03:00
# include "ntioctl.h"
2011-06-29 09:33:54 +04:00
# include "lib/param/loadparm.h"
2011-07-07 15:04:31 +04:00
# include "lib/util/bitmap.h"
2012-07-09 19:17:25 +04:00
# include "lib/util/tevent_unix.h"
2014-08-07 14:53:33 +04:00
# include "libcli/security/sddl.h"
# include "passdb/machine_sid.h"
2018-03-15 15:08:55 +03:00
# include "lib/util/tevent_ntstatus.h"
2020-08-07 21:17:34 +03:00
# include "lib/util/string_wrappers.h"
2021-11-10 22:18:07 +03:00
# include "source3/lib/substitute.h"
2004-04-29 16:11:59 +04:00
static int vfs_full_audit_debug_level = DBGC_VFS ;
2006-01-19 03:34:48 +03:00
struct vfs_full_audit_private_data {
struct bitmap * success_ops ;
struct bitmap * failure_ops ;
2014-08-07 14:34:18 +04:00
int syslog_facility ;
2014-08-07 14:34:18 +04:00
int syslog_priority ;
2014-08-07 14:53:33 +04:00
bool log_secdesc ;
2014-08-07 14:44:01 +04:00
bool do_syslog ;
2006-01-19 03:34:48 +03:00
} ;
2004-04-29 16:11:59 +04:00
# undef DBGC_CLASS
# define DBGC_CLASS vfs_full_audit_debug_level
2009-07-24 18:43:02 +04:00
typedef enum _vfs_op_type {
SMB_VFS_OP_NOOP = - 1 ,
/* Disk operations */
SMB_VFS_OP_CONNECT = 0 ,
SMB_VFS_OP_DISCONNECT ,
SMB_VFS_OP_DISK_FREE ,
SMB_VFS_OP_GET_QUOTA ,
SMB_VFS_OP_SET_QUOTA ,
SMB_VFS_OP_GET_SHADOW_COPY_DATA ,
SMB_VFS_OP_STATVFS ,
SMB_VFS_OP_FS_CAPABILITIES ,
2016-04-05 02:24:10 +03:00
SMB_VFS_OP_GET_DFS_REFERRALS ,
2020-01-10 00:33:23 +03:00
SMB_VFS_OP_CREATE_DFS_PATHAT ,
2020-02-11 21:02:18 +03:00
SMB_VFS_OP_READ_DFS_PATHAT ,
2009-07-24 18:43:02 +04:00
/* Directory operations */
2011-02-09 02:07:48 +03:00
SMB_VFS_OP_FDOPENDIR ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_READDIR ,
SMB_VFS_OP_SEEKDIR ,
SMB_VFS_OP_TELLDIR ,
SMB_VFS_OP_REWINDDIR ,
2019-09-05 01:48:23 +03:00
SMB_VFS_OP_MKDIRAT ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_CLOSEDIR ,
/* File operations */
SMB_VFS_OP_OPEN ,
2020-05-21 00:02:39 +03:00
SMB_VFS_OP_OPENAT ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_CREATE_FILE ,
SMB_VFS_OP_CLOSE ,
SMB_VFS_OP_READ ,
SMB_VFS_OP_PREAD ,
2012-07-09 19:17:25 +04:00
SMB_VFS_OP_PREAD_SEND ,
SMB_VFS_OP_PREAD_RECV ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_WRITE ,
SMB_VFS_OP_PWRITE ,
2012-07-09 19:17:25 +04:00
SMB_VFS_OP_PWRITE_SEND ,
SMB_VFS_OP_PWRITE_RECV ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_LSEEK ,
SMB_VFS_OP_SENDFILE ,
SMB_VFS_OP_RECVFILE ,
2019-08-10 00:25:21 +03:00
SMB_VFS_OP_RENAMEAT ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_FSYNC ,
2012-07-13 12:22:25 +04:00
SMB_VFS_OP_FSYNC_SEND ,
SMB_VFS_OP_FSYNC_RECV ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_STAT ,
SMB_VFS_OP_FSTAT ,
SMB_VFS_OP_LSTAT ,
2022-01-06 17:59:05 +03:00
SMB_VFS_OP_FSTATAT ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_GET_ALLOC_SIZE ,
2019-09-12 20:50:06 +03:00
SMB_VFS_OP_UNLINKAT ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_FCHMOD ,
SMB_VFS_OP_FCHOWN ,
SMB_VFS_OP_LCHOWN ,
SMB_VFS_OP_CHDIR ,
SMB_VFS_OP_GETWD ,
SMB_VFS_OP_NTIMES ,
2021-04-13 13:07:52 +03:00
SMB_VFS_OP_FNTIMES ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_FTRUNCATE ,
2010-12-18 10:08:01 +03:00
SMB_VFS_OP_FALLOCATE ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_LOCK ,
2021-09-21 01:15:39 +03:00
SMB_VFS_OP_FILESYSTEM_SHAREMODE ,
2019-09-27 08:49:37 +03:00
SMB_VFS_OP_FCNTL ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_LINUX_SETLEASE ,
SMB_VFS_OP_GETLOCK ,
2019-08-30 23:48:03 +03:00
SMB_VFS_OP_SYMLINKAT ,
2019-08-23 00:21:23 +03:00
SMB_VFS_OP_READLINKAT ,
2019-08-14 21:45:35 +03:00
SMB_VFS_OP_LINKAT ,
2019-08-21 21:36:48 +03:00
SMB_VFS_OP_MKNODAT ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_REALPATH ,
2021-06-10 18:31:40 +03:00
SMB_VFS_OP_FCHFLAGS ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_FILE_ID_CREATE ,
2019-06-29 15:08:04 +03:00
SMB_VFS_OP_FS_FILE_ID ,
2021-05-08 02:11:46 +03:00
SMB_VFS_OP_FSTREAMINFO ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_GET_REAL_FILENAME ,
SMB_VFS_OP_CONNECTPATH ,
SMB_VFS_OP_BRL_LOCK_WINDOWS ,
SMB_VFS_OP_BRL_UNLOCK_WINDOWS ,
2017-07-09 15:34:10 +03:00
SMB_VFS_OP_STRICT_LOCK_CHECK ,
2009-08-27 01:56:09 +04:00
SMB_VFS_OP_TRANSLATE_NAME ,
2021-05-26 20:39:43 +03:00
SMB_VFS_OP_PARENT_PATHNAME ,
2016-04-05 02:25:47 +03:00
SMB_VFS_OP_FSCTL ,
2017-06-03 13:57:59 +03:00
SMB_VFS_OP_OFFLOAD_READ_SEND ,
SMB_VFS_OP_OFFLOAD_READ_RECV ,
2017-06-04 14:50:33 +03:00
SMB_VFS_OP_OFFLOAD_WRITE_SEND ,
SMB_VFS_OP_OFFLOAD_WRITE_RECV ,
2020-10-13 13:02:34 +03:00
SMB_VFS_OP_FGET_COMPRESSION ,
2013-11-18 17:54:30 +04:00
SMB_VFS_OP_SET_COMPRESSION ,
2016-04-05 02:22:06 +03:00
SMB_VFS_OP_SNAP_CHECK_PATH ,
SMB_VFS_OP_SNAP_CREATE ,
SMB_VFS_OP_SNAP_DELETE ,
2009-07-24 18:43:02 +04:00
2016-03-20 22:51:32 +03:00
/* DOS attribute operations. */
2018-03-15 15:08:55 +03:00
SMB_VFS_OP_GET_DOS_ATTRIBUTES_SEND ,
SMB_VFS_OP_GET_DOS_ATTRIBUTES_RECV ,
2016-03-20 22:51:32 +03:00
SMB_VFS_OP_FGET_DOS_ATTRIBUTES ,
SMB_VFS_OP_FSET_DOS_ATTRIBUTES ,
2009-07-24 18:43:02 +04:00
/* NT ACL operations. */
SMB_VFS_OP_FGET_NT_ACL ,
SMB_VFS_OP_FSET_NT_ACL ,
2016-04-05 02:27:05 +03:00
SMB_VFS_OP_AUDIT_FILE ,
2009-07-24 18:43:02 +04:00
/* POSIX ACL operations. */
SMB_VFS_OP_SYS_ACL_GET_FD ,
2012-09-10 06:44:01 +04:00
SMB_VFS_OP_SYS_ACL_BLOB_GET_FD ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_SYS_ACL_SET_FD ,
2021-05-15 00:20:50 +03:00
SMB_VFS_OP_SYS_ACL_DELETE_DEF_FD ,
2009-07-24 18:43:02 +04:00
/* EA operations. */
2018-03-13 10:14:53 +03:00
SMB_VFS_OP_GETXATTRAT_SEND ,
SMB_VFS_OP_GETXATTRAT_RECV ,
2009-07-24 18:43:02 +04:00
SMB_VFS_OP_FGETXATTR ,
SMB_VFS_OP_FLISTXATTR ,
SMB_VFS_OP_REMOVEXATTR ,
SMB_VFS_OP_FREMOVEXATTR ,
SMB_VFS_OP_FSETXATTR ,
/* aio operations */
SMB_VFS_OP_AIO_FORCE ,
/* offline operations */
SMB_VFS_OP_IS_OFFLINE ,
SMB_VFS_OP_SET_OFFLINE ,
2016-04-05 02:29:32 +03:00
/* Durable handle operations. */
SMB_VFS_OP_DURABLE_COOKIE ,
SMB_VFS_OP_DURABLE_DISCONNECT ,
SMB_VFS_OP_DURABLE_RECONNECT ,
2016-04-05 02:22:06 +03:00
2021-05-10 13:38:58 +03:00
SMB_VFS_OP_FREADDIR_ATTR ,
2016-04-05 02:22:06 +03:00
2009-07-24 18:43:02 +04:00
/* This should always be last enum value */
SMB_VFS_OP_LAST
} vfs_op_type ;
2012-09-27 14:34:53 +04:00
/* The following array *must* be in the same order as defined in vfs_op_type */
2004-04-29 16:11:59 +04:00
static struct {
vfs_op_type type ;
const char * name ;
} vfs_op_names [ ] = {
{ SMB_VFS_OP_CONNECT , " connect " } ,
{ SMB_VFS_OP_DISCONNECT , " disconnect " } ,
{ SMB_VFS_OP_DISK_FREE , " disk_free " } ,
{ SMB_VFS_OP_GET_QUOTA , " get_quota " } ,
{ SMB_VFS_OP_SET_QUOTA , " set_quota " } ,
{ SMB_VFS_OP_GET_SHADOW_COPY_DATA , " get_shadow_copy_data " } ,
2005-10-20 21:33:17 +04:00
{ SMB_VFS_OP_STATVFS , " statvfs " } ,
2008-03-21 12:20:53 +03:00
{ SMB_VFS_OP_FS_CAPABILITIES , " fs_capabilities " } ,
2016-04-05 02:24:10 +03:00
{ SMB_VFS_OP_GET_DFS_REFERRALS , " get_dfs_referrals " } ,
2020-01-10 00:33:23 +03:00
{ SMB_VFS_OP_CREATE_DFS_PATHAT , " create_dfs_pathat " } ,
2020-02-11 21:02:18 +03:00
{ SMB_VFS_OP_READ_DFS_PATHAT , " read_dfs_pathat " } ,
2011-02-09 02:07:48 +03:00
{ SMB_VFS_OP_FDOPENDIR , " fdopendir " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_READDIR , " readdir " } ,
2005-05-13 16:05:14 +04:00
{ SMB_VFS_OP_SEEKDIR , " seekdir " } ,
{ SMB_VFS_OP_TELLDIR , " telldir " } ,
{ SMB_VFS_OP_REWINDDIR , " rewinddir " } ,
2019-09-05 01:48:23 +03:00
{ SMB_VFS_OP_MKDIRAT , " mkdirat " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_CLOSEDIR , " closedir " } ,
{ SMB_VFS_OP_OPEN , " open " } ,
2020-05-21 00:02:39 +03:00
{ SMB_VFS_OP_OPENAT , " openat " } ,
2009-01-05 15:08:07 +03:00
{ SMB_VFS_OP_CREATE_FILE , " create_file " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_CLOSE , " close " } ,
{ SMB_VFS_OP_READ , " read " } ,
{ SMB_VFS_OP_PREAD , " pread " } ,
2012-07-09 19:17:25 +04:00
{ SMB_VFS_OP_PREAD_SEND , " pread_send " } ,
{ SMB_VFS_OP_PREAD_RECV , " pread_recv " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_WRITE , " write " } ,
{ SMB_VFS_OP_PWRITE , " pwrite " } ,
2012-09-27 13:50:22 +04:00
{ SMB_VFS_OP_PWRITE_SEND , " pwrite_send " } ,
{ SMB_VFS_OP_PWRITE_RECV , " pwrite_recv " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_LSEEK , " lseek " } ,
{ SMB_VFS_OP_SENDFILE , " sendfile " } ,
2008-07-04 16:51:01 +04:00
{ SMB_VFS_OP_RECVFILE , " recvfile " } ,
2019-08-10 00:25:21 +03:00
{ SMB_VFS_OP_RENAMEAT , " renameat " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_FSYNC , " fsync " } ,
2012-07-13 12:22:25 +04:00
{ SMB_VFS_OP_FSYNC_SEND , " fsync_send " } ,
{ SMB_VFS_OP_FSYNC_RECV , " fsync_recv " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_STAT , " stat " } ,
{ SMB_VFS_OP_FSTAT , " fstat " } ,
{ SMB_VFS_OP_LSTAT , " lstat " } ,
2022-01-06 17:59:05 +03:00
{ SMB_VFS_OP_FSTATAT , " fstatat " } ,
2009-01-27 02:39:40 +03:00
{ SMB_VFS_OP_GET_ALLOC_SIZE , " get_alloc_size " } ,
2019-09-12 20:50:06 +03:00
{ SMB_VFS_OP_UNLINKAT , " unlinkat " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_FCHMOD , " fchmod " } ,
{ SMB_VFS_OP_FCHOWN , " fchown " } ,
2007-05-24 03:55:12 +04:00
{ SMB_VFS_OP_LCHOWN , " lchown " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_CHDIR , " chdir " } ,
{ SMB_VFS_OP_GETWD , " getwd " } ,
2007-03-06 02:40:03 +03:00
{ SMB_VFS_OP_NTIMES , " ntimes " } ,
2021-04-13 13:07:52 +03:00
{ SMB_VFS_OP_FNTIMES , " fntimes " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_FTRUNCATE , " ftruncate " } ,
2010-12-18 10:08:01 +03:00
{ SMB_VFS_OP_FALLOCATE , " fallocate " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_LOCK , " lock " } ,
2021-09-21 01:15:39 +03:00
{ SMB_VFS_OP_FILESYSTEM_SHAREMODE , " filesystem_sharemode " } ,
2020-04-10 23:27:18 +03:00
{ SMB_VFS_OP_FCNTL , " fcntl " } ,
2007-02-14 05:37:14 +03:00
{ SMB_VFS_OP_LINUX_SETLEASE , " linux_setlease " } ,
2006-04-10 19:33:04 +04:00
{ SMB_VFS_OP_GETLOCK , " getlock " } ,
2019-08-30 23:48:03 +03:00
{ SMB_VFS_OP_SYMLINKAT , " symlinkat " } ,
2019-08-23 00:21:23 +03:00
{ SMB_VFS_OP_READLINKAT , " readlinkat " } ,
2019-08-14 21:45:35 +03:00
{ SMB_VFS_OP_LINKAT , " linkat " } ,
2019-08-21 21:36:48 +03:00
{ SMB_VFS_OP_MKNODAT , " mknodat " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_REALPATH , " realpath " } ,
2021-06-10 18:31:40 +03:00
{ SMB_VFS_OP_FCHFLAGS , " fchflags " } ,
2007-08-02 13:19:04 +04:00
{ SMB_VFS_OP_FILE_ID_CREATE , " file_id_create " } ,
2019-06-29 15:08:04 +03:00
{ SMB_VFS_OP_FS_FILE_ID , " fs_file_id " } ,
2021-05-08 02:11:46 +03:00
{ SMB_VFS_OP_FSTREAMINFO , " fstreaminfo " } ,
2009-01-05 14:58:23 +03:00
{ SMB_VFS_OP_GET_REAL_FILENAME , " get_real_filename " } ,
2009-05-28 21:20:14 +04:00
{ SMB_VFS_OP_CONNECTPATH , " connectpath " } ,
2009-02-10 08:51:29 +03:00
{ SMB_VFS_OP_BRL_LOCK_WINDOWS , " brl_lock_windows " } ,
{ SMB_VFS_OP_BRL_UNLOCK_WINDOWS , " brl_unlock_windows " } ,
2017-07-09 15:34:10 +03:00
{ SMB_VFS_OP_STRICT_LOCK_CHECK , " strict_lock_check " } ,
2009-08-27 01:56:09 +04:00
{ SMB_VFS_OP_TRANSLATE_NAME , " translate_name " } ,
2021-05-26 20:39:43 +03:00
{ SMB_VFS_OP_PARENT_PATHNAME , " parent_pathname " } ,
2016-04-05 02:25:47 +03:00
{ SMB_VFS_OP_FSCTL , " fsctl " } ,
2017-06-03 13:57:59 +03:00
{ SMB_VFS_OP_OFFLOAD_READ_SEND , " offload_read_send " } ,
{ SMB_VFS_OP_OFFLOAD_READ_RECV , " offload_read_recv " } ,
2017-06-04 14:50:33 +03:00
{ SMB_VFS_OP_OFFLOAD_WRITE_SEND , " offload_write_send " } ,
{ SMB_VFS_OP_OFFLOAD_WRITE_RECV , " offload_write_recv " } ,
2020-10-13 13:02:34 +03:00
{ SMB_VFS_OP_FGET_COMPRESSION , " fget_compression " } ,
2013-11-18 17:54:30 +04:00
{ SMB_VFS_OP_SET_COMPRESSION , " set_compression " } ,
2016-04-05 02:22:06 +03:00
{ SMB_VFS_OP_SNAP_CHECK_PATH , " snap_check_path " } ,
{ SMB_VFS_OP_SNAP_CREATE , " snap_create " } ,
{ SMB_VFS_OP_SNAP_DELETE , " snap_delete " } ,
2018-03-15 15:08:55 +03:00
{ SMB_VFS_OP_GET_DOS_ATTRIBUTES_SEND , " get_dos_attributes_send " } ,
{ SMB_VFS_OP_GET_DOS_ATTRIBUTES_RECV , " get_dos_attributes_recv " } ,
2016-03-20 22:51:32 +03:00
{ SMB_VFS_OP_FGET_DOS_ATTRIBUTES , " fget_dos_attributes " } ,
{ SMB_VFS_OP_FSET_DOS_ATTRIBUTES , " fset_dos_attributes " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_FGET_NT_ACL , " fget_nt_acl " } ,
{ SMB_VFS_OP_FSET_NT_ACL , " fset_nt_acl " } ,
2016-04-05 02:27:05 +03:00
{ SMB_VFS_OP_AUDIT_FILE , " audit_file " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_SYS_ACL_GET_FD , " sys_acl_get_fd " } ,
2012-09-10 06:44:01 +04:00
{ SMB_VFS_OP_SYS_ACL_BLOB_GET_FD , " sys_acl_blob_get_fd " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_SYS_ACL_SET_FD , " sys_acl_set_fd " } ,
2021-05-15 00:20:50 +03:00
{ SMB_VFS_OP_SYS_ACL_DELETE_DEF_FD , " sys_acl_delete_def_fd " } ,
2018-03-13 10:14:53 +03:00
{ SMB_VFS_OP_GETXATTRAT_SEND , " getxattrat_send " } ,
{ SMB_VFS_OP_GETXATTRAT_RECV , " getxattrat_recv " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_FGETXATTR , " fgetxattr " } ,
{ SMB_VFS_OP_FLISTXATTR , " flistxattr " } ,
{ SMB_VFS_OP_REMOVEXATTR , " removexattr " } ,
{ SMB_VFS_OP_FREMOVEXATTR , " fremovexattr " } ,
{ SMB_VFS_OP_FSETXATTR , " fsetxattr " } ,
2008-03-21 12:20:53 +03:00
{ SMB_VFS_OP_AIO_FORCE , " aio_force " } ,
2011-02-25 16:28:30 +03:00
{ SMB_VFS_OP_IS_OFFLINE , " is_offline " } ,
{ SMB_VFS_OP_SET_OFFLINE , " set_offline " } ,
2016-04-05 02:29:32 +03:00
{ SMB_VFS_OP_DURABLE_COOKIE , " durable_cookie " } ,
{ SMB_VFS_OP_DURABLE_DISCONNECT , " durable_disconnect " } ,
{ SMB_VFS_OP_DURABLE_RECONNECT , " durable_reconnect " } ,
2021-05-10 13:38:58 +03:00
{ SMB_VFS_OP_FREADDIR_ATTR , " freaddir_attr " } ,
2004-04-29 16:11:59 +04:00
{ SMB_VFS_OP_LAST , NULL }
2009-02-10 23:14:39 +03:00
} ;
2004-04-29 16:11:59 +04:00
static int audit_syslog_facility ( vfs_handle_struct * handle )
{
2005-09-29 19:57:21 +04:00
static const struct enum_list enum_log_facilities [ ] = {
2018-07-10 00:57:59 +03:00
# ifdef LOG_AUTH
{ LOG_AUTH , " AUTH " } ,
# endif
# ifdef LOG_AUTHPRIV
{ LOG_AUTHPRIV , " AUTHPRIV " } ,
# endif
# ifdef LOG_AUDIT
{ LOG_AUDIT , " AUDIT " } ,
# endif
# ifdef LOG_CONSOLE
{ LOG_CONSOLE , " CONSOLE " } ,
# endif
# ifdef LOG_CRON
{ LOG_CRON , " CRON " } ,
# endif
# ifdef LOG_DAEMON
{ LOG_DAEMON , " DAEMON " } ,
# endif
# ifdef LOG_FTP
{ LOG_FTP , " FTP " } ,
# endif
# ifdef LOG_INSTALL
{ LOG_INSTALL , " INSTALL " } ,
# endif
# ifdef LOG_KERN
{ LOG_KERN , " KERN " } ,
# endif
# ifdef LOG_LAUNCHD
{ LOG_LAUNCHD , " LAUNCHD " } ,
# endif
# ifdef LOG_LFMT
{ LOG_LFMT , " LFMT " } ,
# endif
# ifdef LOG_LPR
{ LOG_LPR , " LPR " } ,
# endif
# ifdef LOG_MAIL
{ LOG_MAIL , " MAIL " } ,
# endif
# ifdef LOG_MEGASAFE
{ LOG_MEGASAFE , " MEGASAFE " } ,
# endif
# ifdef LOG_NETINFO
{ LOG_NETINFO , " NETINFO " } ,
# endif
# ifdef LOG_NEWS
{ LOG_NEWS , " NEWS " } ,
# endif
# ifdef LOG_NFACILITIES
{ LOG_NFACILITIES , " NFACILITIES " } ,
# endif
2018-07-02 02:05:36 +03:00
# ifdef LOG_NTP
2018-07-10 00:57:59 +03:00
{ LOG_NTP , " NTP " } ,
# endif
# ifdef LOG_RAS
{ LOG_RAS , " RAS " } ,
# endif
# ifdef LOG_REMOTEAUTH
{ LOG_REMOTEAUTH , " REMOTEAUTH " } ,
2018-07-02 02:05:36 +03:00
# endif
# ifdef LOG_SECURITY
2018-07-10 00:57:59 +03:00
{ LOG_SECURITY , " SECURITY " } ,
# endif
# ifdef LOG_SYSLOG
{ LOG_SYSLOG , " SYSLOG " } ,
# endif
# ifdef LOG_USER
{ LOG_USER , " USER " } ,
# endif
# ifdef LOG_UUCP
{ LOG_UUCP , " UUCP " } ,
2018-07-02 02:05:36 +03:00
# endif
2018-07-10 00:57:59 +03:00
{ LOG_LOCAL0 , " LOCAL0 " } ,
{ LOG_LOCAL1 , " LOCAL1 " } ,
{ LOG_LOCAL2 , " LOCAL2 " } ,
{ LOG_LOCAL3 , " LOCAL3 " } ,
{ LOG_LOCAL4 , " LOCAL4 " } ,
{ LOG_LOCAL5 , " LOCAL5 " } ,
{ LOG_LOCAL6 , " LOCAL6 " } ,
{ LOG_LOCAL7 , " LOCAL7 " } ,
{ - 1 , NULL }
2005-09-29 19:57:21 +04:00
} ;
int facility ;
facility = lp_parm_enum ( SNUM ( handle - > conn ) , " full_audit " , " facility " , enum_log_facilities , LOG_USER ) ;
return facility ;
2004-04-29 16:11:59 +04:00
}
static int audit_syslog_priority ( vfs_handle_struct * handle )
{
2005-09-29 19:57:21 +04:00
static const struct enum_list enum_log_priorities [ ] = {
{ LOG_EMERG , " EMERG " } ,
{ LOG_ALERT , " ALERT " } ,
{ LOG_CRIT , " CRIT " } ,
{ LOG_ERR , " ERR " } ,
{ LOG_WARNING , " WARNING " } ,
{ LOG_NOTICE , " NOTICE " } ,
{ LOG_INFO , " INFO " } ,
2011-05-24 19:19:52 +04:00
{ LOG_DEBUG , " DEBUG " } ,
2018-07-02 02:05:36 +03:00
{ - 1 , NULL }
2005-09-29 19:57:21 +04:00
} ;
int priority ;
2008-03-23 19:50:55 +03:00
priority = lp_parm_enum ( SNUM ( handle - > conn ) , " full_audit " , " priority " ,
enum_log_priorities , LOG_NOTICE ) ;
if ( priority = = - 1 ) {
priority = LOG_WARNING ;
}
2005-09-29 19:57:21 +04:00
return priority ;
2004-04-29 16:11:59 +04:00
}
2007-11-17 04:07:11 +03:00
static char * audit_prefix ( TALLOC_CTX * ctx , connection_struct * conn )
2004-04-29 16:11:59 +04:00
{
2019-11-07 13:01:05 +03:00
const struct loadparm_substitution * lp_sub =
loadparm_s3_global_substitution ( ) ;
2007-11-17 04:07:11 +03:00
char * prefix = NULL ;
2009-01-05 15:32:53 +03:00
char * result ;
2004-04-29 16:11:59 +04:00
2007-11-17 04:07:11 +03:00
prefix = talloc_strdup ( ctx ,
lp_parm_const_string ( SNUM ( conn ) , " full_audit " ,
2004-04-29 16:11:59 +04:00
" prefix " , " %u|%I " ) ) ;
2007-11-17 04:07:11 +03:00
if ( ! prefix ) {
return NULL ;
}
2019-10-31 14:45:44 +03:00
result = talloc_sub_full ( ctx ,
2019-11-07 13:01:05 +03:00
lp_servicename ( talloc_tos ( ) , lp_sub , SNUM ( conn ) ) ,
2011-07-15 09:55:31 +04:00
conn - > session_info - > unix_info - > unix_name ,
2008-05-08 17:53:55 +04:00
conn - > connectpath ,
2011-07-15 08:59:14 +04:00
conn - > session_info - > unix_token - > gid ,
2011-07-15 09:55:31 +04:00
conn - > session_info - > unix_info - > sanitized_username ,
2011-07-18 06:58:25 +04:00
conn - > session_info - > info - > domain_name ,
2007-11-17 04:07:11 +03:00
prefix ) ;
2009-01-05 15:32:53 +03:00
TALLOC_FREE ( prefix ) ;
return result ;
2004-04-29 16:11:59 +04:00
}
2014-08-07 14:23:25 +04:00
static bool log_success ( struct vfs_full_audit_private_data * pd , vfs_op_type op )
2004-04-29 16:11:59 +04:00
{
2006-01-19 03:34:48 +03:00
if ( pd - > success_ops = = NULL ) {
2004-04-29 16:11:59 +04:00
return True ;
2006-01-19 03:34:48 +03:00
}
2004-04-29 16:11:59 +04:00
2006-01-19 03:34:48 +03:00
return bitmap_query ( pd - > success_ops , op ) ;
2004-04-29 16:11:59 +04:00
}
2014-08-07 14:23:25 +04:00
static bool log_failure ( struct vfs_full_audit_private_data * pd , vfs_op_type op )
2004-04-29 16:11:59 +04:00
{
2006-01-19 03:34:48 +03:00
if ( pd - > failure_ops = = NULL )
2004-04-29 16:11:59 +04:00
return True ;
2006-01-19 03:34:48 +03:00
return bitmap_query ( pd - > failure_ops , op ) ;
2004-04-29 16:11:59 +04:00
}
2010-03-28 16:26:53 +04:00
static struct bitmap * init_bitmap ( TALLOC_CTX * mem_ctx , const char * * ops )
2004-04-29 16:11:59 +04:00
{
2010-03-28 16:26:53 +04:00
struct bitmap * bm ;
2004-04-29 16:11:59 +04:00
2010-02-18 17:13:59 +03:00
if ( ops = = NULL ) {
2010-03-28 16:26:53 +04:00
return NULL ;
2010-02-18 17:13:59 +03:00
}
2004-04-29 16:11:59 +04:00
2010-03-28 16:26:53 +04:00
bm = bitmap_talloc ( mem_ctx , SMB_VFS_OP_LAST ) ;
if ( bm = = NULL ) {
2004-04-29 16:11:59 +04:00
DEBUG ( 0 , ( " Could not alloc bitmap -- "
" defaulting to logging everything \n " ) ) ;
2010-03-28 16:26:53 +04:00
return NULL ;
2004-04-29 16:11:59 +04:00
}
2010-02-18 17:13:59 +03:00
for ( ; * ops ! = NULL ; ops + = 1 ) {
2004-04-29 16:11:59 +04:00
int i ;
2010-02-18 17:13:59 +03:00
bool neg = false ;
const char * op ;
2004-04-29 16:11:59 +04:00
if ( strequal ( * ops , " all " ) ) {
2010-02-18 17:13:59 +03:00
for ( i = 0 ; i < SMB_VFS_OP_LAST ; i + + ) {
2010-03-28 16:26:53 +04:00
bitmap_set ( bm , i ) ;
2010-02-18 17:13:59 +03:00
}
continue ;
2004-04-29 16:11:59 +04:00
}
2006-01-19 03:34:48 +03:00
if ( strequal ( * ops , " none " ) ) {
break ;
}
2010-02-18 17:13:59 +03:00
op = ops [ 0 ] ;
if ( op [ 0 ] = = ' ! ' ) {
neg = true ;
op + = 1 ;
}
2004-04-29 16:11:59 +04:00
for ( i = 0 ; i < SMB_VFS_OP_LAST ; i + + ) {
2012-09-27 14:34:53 +04:00
if ( ( vfs_op_names [ i ] . name = = NULL )
| | ( vfs_op_names [ i ] . type ! = i ) ) {
2005-05-13 16:05:14 +04:00
smb_panic ( " vfs_full_audit.c: name table not "
2012-09-27 14:34:53 +04:00
" in sync with vfs_op_type enums \n " ) ;
2005-05-13 16:05:14 +04:00
}
2010-02-18 17:13:59 +03:00
if ( strequal ( op , vfs_op_names [ i ] . name ) ) {
if ( neg ) {
2010-03-28 16:26:53 +04:00
bitmap_clear ( bm , i ) ;
2010-02-18 17:13:59 +03:00
} else {
2010-03-28 16:26:53 +04:00
bitmap_set ( bm , i ) ;
2010-02-18 17:13:59 +03:00
}
break ;
2004-04-29 16:11:59 +04:00
}
}
2010-02-18 17:13:59 +03:00
if ( i = = SMB_VFS_OP_LAST ) {
2004-04-29 16:11:59 +04:00
DEBUG ( 0 , ( " Could not find opname %s, logging all \n " ,
* ops ) ) ;
2010-03-28 16:26:53 +04:00
TALLOC_FREE ( bm ) ;
return NULL ;
2004-04-29 16:11:59 +04:00
}
}
2010-03-28 16:26:53 +04:00
return bm ;
2004-04-29 16:11:59 +04:00
}
static const char * audit_opname ( vfs_op_type op )
{
if ( op > = SMB_VFS_OP_LAST )
return " INVALID VFS OP " ;
return vfs_op_names [ op ] . name ;
}
2009-07-01 10:08:02 +04:00
static TALLOC_CTX * tmp_do_log_ctx ;
/*
* Get us a temporary talloc context usable just for DEBUG arguments
*/
static TALLOC_CTX * do_log_ctx ( void )
{
if ( tmp_do_log_ctx = = NULL ) {
tmp_do_log_ctx = talloc_named_const ( NULL , 0 , " do_log_ctx " ) ;
}
return tmp_do_log_ctx ;
}
2017-11-19 21:44:06 +03:00
static void do_log ( vfs_op_type op , bool success , vfs_handle_struct * handle ,
const char * format , . . . ) PRINTF_ATTRIBUTE ( 4 , 5 ) ;
2007-10-19 04:40:25 +04:00
static void do_log ( vfs_op_type op , bool success , vfs_handle_struct * handle ,
2004-04-29 16:11:59 +04:00
const char * format , . . . )
{
2014-08-07 14:23:25 +04:00
struct vfs_full_audit_private_data * pd ;
2004-04-29 16:11:59 +04:00
fstring err_msg ;
2007-11-17 04:07:11 +03:00
char * audit_pre = NULL ;
2004-04-29 16:11:59 +04:00
va_list ap ;
2007-11-17 04:07:11 +03:00
char * op_msg = NULL ;
2004-04-29 16:11:59 +04:00
2014-08-07 14:23:25 +04:00
SMB_VFS_HANDLE_GET_DATA ( handle , pd ,
struct vfs_full_audit_private_data ,
return ; ) ;
if ( success & & ( ! log_success ( pd , op ) ) )
2009-07-01 10:08:02 +04:00
goto out ;
2004-04-29 16:11:59 +04:00
2014-08-07 14:23:25 +04:00
if ( ! success & & ( ! log_failure ( pd , op ) ) )
2009-07-01 10:08:02 +04:00
goto out ;
2004-04-29 16:11:59 +04:00
if ( success )
fstrcpy ( err_msg , " ok " ) ;
else
fstr_sprintf ( err_msg , " fail (%s) " , strerror ( errno ) ) ;
va_start ( ap , format ) ;
2009-01-05 15:33:20 +03:00
op_msg = talloc_vasprintf ( talloc_tos ( ) , format , ap ) ;
2004-04-29 16:11:59 +04:00
va_end ( ap ) ;
2007-11-17 04:07:11 +03:00
if ( ! op_msg ) {
2009-07-01 10:08:02 +04:00
goto out ;
2007-11-17 04:07:11 +03:00
}
2009-01-05 15:33:20 +03:00
audit_pre = audit_prefix ( talloc_tos ( ) , handle - > conn ) ;
2007-11-17 04:07:11 +03:00
2014-08-07 14:44:01 +04:00
if ( pd - > do_syslog ) {
int priority ;
/*
* Specify the facility to interoperate with other syslog
* callers ( smbd for example ) .
*/
priority = pd - > syslog_priority | pd - > syslog_facility ;
syslog ( priority , " %s|%s|%s|%s \n " ,
audit_pre ? audit_pre : " " ,
audit_opname ( op ) , err_msg , op_msg ) ;
} else {
DEBUG ( 1 , ( " %s|%s|%s|%s \n " ,
audit_pre ? audit_pre : " " ,
audit_opname ( op ) , err_msg , op_msg ) ) ;
}
2009-07-01 10:08:02 +04:00
out :
2007-11-17 04:07:11 +03:00
TALLOC_FREE ( audit_pre ) ;
TALLOC_FREE ( op_msg ) ;
2009-07-01 10:08:02 +04:00
TALLOC_FREE ( tmp_do_log_ctx ) ;
2004-04-29 16:11:59 +04:00
}
2009-07-01 10:08:02 +04:00
/**
* Return a string using the do_log_ctx ( )
*/
2019-08-15 15:43:07 +03:00
static const char * smb_fname_str_do_log ( struct connection_struct * conn ,
2018-08-24 23:17:24 +03:00
const struct smb_filename * smb_fname )
2009-07-01 10:08:02 +04:00
{
char * fname = NULL ;
NTSTATUS status ;
if ( smb_fname = = NULL ) {
return " " ;
}
2018-08-24 23:37:27 +03:00
if ( smb_fname - > base_name [ 0 ] ! = ' / ' ) {
char * abs_name = NULL ;
struct smb_filename * fname_copy = cp_smb_filename (
do_log_ctx ( ) ,
smb_fname ) ;
if ( fname_copy = = NULL ) {
return " " ;
}
if ( ! ISDOT ( smb_fname - > base_name ) ) {
abs_name = talloc_asprintf ( do_log_ctx ( ) ,
" %s/%s " ,
2019-08-15 16:53:32 +03:00
conn - > cwd_fsp - > fsp_name - > base_name ,
2018-08-24 23:37:27 +03:00
smb_fname - > base_name ) ;
} else {
abs_name = talloc_strdup ( do_log_ctx ( ) ,
2019-08-15 16:53:32 +03:00
conn - > cwd_fsp - > fsp_name - > base_name ) ;
2018-08-24 23:37:27 +03:00
}
if ( abs_name = = NULL ) {
return " " ;
}
fname_copy - > base_name = abs_name ;
smb_fname = fname_copy ;
}
2009-07-01 10:08:02 +04:00
status = get_full_smb_filename ( do_log_ctx ( ) , smb_fname , & fname ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
return " " ;
}
return fname ;
}
2009-07-11 05:11:32 +04:00
/**
* Return an fsp debug string using the do_log_ctx ( )
*/
static const char * fsp_str_do_log ( const struct files_struct * fsp )
{
2019-08-15 15:43:07 +03:00
return smb_fname_str_do_log ( fsp - > conn , fsp - > fsp_name ) ;
2009-07-11 05:11:32 +04:00
}
2009-07-01 10:08:02 +04:00
2004-04-29 16:11:59 +04:00
/* Implementation of vfs_ops. Pass everything on to the default
operation but log event first . */
2006-07-11 22:01:26 +04:00
static int smb_full_audit_connect ( vfs_handle_struct * handle ,
2004-04-29 16:11:59 +04:00
const char * svc , const char * user )
{
int result ;
2018-06-22 07:19:42 +03:00
const char * none [ ] = { " none " } ;
2006-01-19 03:34:48 +03:00
struct vfs_full_audit_private_data * pd = NULL ;
2004-04-29 16:11:59 +04:00
2009-12-01 02:53:04 +03:00
result = SMB_VFS_NEXT_CONNECT ( handle , svc , user ) ;
if ( result < 0 ) {
return result ;
2006-03-13 21:42:57 +03:00
}
2011-06-07 05:44:43 +04:00
pd = talloc_zero ( handle , struct vfs_full_audit_private_data ) ;
2006-01-19 03:34:48 +03:00
if ( ! pd ) {
2009-12-01 02:53:04 +03:00
SMB_VFS_NEXT_DISCONNECT ( handle ) ;
2006-01-19 03:34:48 +03:00
return - 1 ;
}
2014-08-07 14:34:18 +04:00
pd - > syslog_facility = audit_syslog_facility ( handle ) ;
if ( pd - > syslog_facility = = - 1 ) {
DEBUG ( 1 , ( " %s: Unknown facility %s \n " , __func__ ,
lp_parm_const_string ( SNUM ( handle - > conn ) ,
" full_audit " , " facility " ,
" USER " ) ) ) ;
SMB_VFS_NEXT_DISCONNECT ( handle ) ;
return - 1 ;
}
2014-08-07 14:34:18 +04:00
pd - > syslog_priority = audit_syslog_priority ( handle ) ;
2014-08-07 14:53:33 +04:00
pd - > log_secdesc = lp_parm_bool ( SNUM ( handle - > conn ) ,
" full_audit " , " log_secdesc " , false ) ;
2014-08-07 14:44:01 +04:00
pd - > do_syslog = lp_parm_bool ( SNUM ( handle - > conn ) ,
" full_audit " , " syslog " , true ) ;
2011-05-25 23:28:39 +04:00
# ifdef WITH_SYSLOG
2014-08-07 14:44:01 +04:00
if ( pd - > do_syslog ) {
openlog ( " smbd_audit " , 0 , pd - > syslog_facility ) ;
}
2009-08-26 05:38:14 +04:00
# endif
2004-04-29 16:11:59 +04:00
2010-03-28 16:26:53 +04:00
pd - > success_ops = init_bitmap (
pd , lp_parm_string_list ( SNUM ( handle - > conn ) , " full_audit " ,
2018-06-22 07:19:42 +03:00
" success " , none ) ) ;
2010-03-28 16:26:53 +04:00
pd - > failure_ops = init_bitmap (
pd , lp_parm_string_list ( SNUM ( handle - > conn ) , " full_audit " ,
2018-06-22 07:19:42 +03:00
" failure " , none ) ) ;
2004-04-29 16:11:59 +04:00
2006-01-19 03:34:48 +03:00
/* Store the private data. */
2010-03-28 16:26:53 +04:00
SMB_VFS_HANDLE_SET_DATA ( handle , pd , NULL ,
2006-01-19 03:34:48 +03:00
struct vfs_full_audit_private_data , return - 1 ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_CONNECT , True , handle ,
" %s " , svc ) ;
2009-12-01 02:53:04 +03:00
return 0 ;
2004-04-29 16:11:59 +04:00
}
2006-07-11 22:01:26 +04:00
static void smb_full_audit_disconnect ( vfs_handle_struct * handle )
2004-04-29 16:11:59 +04:00
{
2019-11-07 13:01:05 +03:00
const struct loadparm_substitution * lp_sub =
loadparm_s3_global_substitution ( ) ;
2006-07-11 22:01:26 +04:00
SMB_VFS_NEXT_DISCONNECT ( handle ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_DISCONNECT , True , handle ,
2019-11-07 13:01:05 +03:00
" %s " , lp_servicename ( talloc_tos ( ) , lp_sub , SNUM ( handle - > conn ) ) ) ;
2004-04-29 16:11:59 +04:00
2006-01-19 03:34:48 +03:00
/* The bitmaps will be disconnected when the private
data is deleted . */
2004-04-29 16:11:59 +04:00
}
2008-10-14 03:59:36 +04:00
static uint64_t smb_full_audit_disk_free ( vfs_handle_struct * handle ,
2017-05-23 20:40:47 +03:00
const struct smb_filename * smb_fname ,
uint64_t * bsize ,
uint64_t * dfree ,
uint64_t * dsize )
2004-04-29 16:11:59 +04:00
{
2008-10-14 03:59:36 +04:00
uint64_t result ;
2004-04-29 16:11:59 +04:00
2017-05-23 20:40:47 +03:00
result = SMB_VFS_NEXT_DISK_FREE ( handle , smb_fname , bsize , dfree , dsize ) ;
2004-04-29 16:11:59 +04:00
/* Don't have a reasonable notion of failure here */
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_DISK_FREE ,
True ,
handle ,
" %s " ,
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2004-08-31 19:11:41 +04:00
static int smb_full_audit_get_quota ( struct vfs_handle_struct * handle ,
2017-06-01 21:45:25 +03:00
const struct smb_filename * smb_fname ,
enum SMB_QUOTA_TYPE qtype ,
unid_t id ,
SMB_DISK_QUOTA * qt )
2004-04-29 16:11:59 +04:00
{
int result ;
2017-06-01 21:45:25 +03:00
result = SMB_VFS_NEXT_GET_QUOTA ( handle , smb_fname , qtype , id , qt ) ;
2004-04-29 16:11:59 +04:00
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_GET_QUOTA ,
( result > = 0 ) ,
handle ,
" %s " ,
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2004-08-31 19:11:41 +04:00
static int smb_full_audit_set_quota ( struct vfs_handle_struct * handle ,
2004-04-29 16:11:59 +04:00
enum SMB_QUOTA_TYPE qtype , unid_t id ,
SMB_DISK_QUOTA * qt )
{
int result ;
2006-07-11 22:01:26 +04:00
result = SMB_VFS_NEXT_SET_QUOTA ( handle , qtype , id , qt ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_SET_QUOTA , ( result > = 0 ) , handle , " " ) ;
return result ;
}
2005-03-16 03:40:28 +03:00
static int smb_full_audit_get_shadow_copy_data ( struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
2011-05-30 14:06:31 +04:00
struct shadow_copy_data * shadow_copy_data ,
bool labels )
2005-03-16 03:40:28 +03:00
{
int result ;
result = SMB_VFS_NEXT_GET_SHADOW_COPY_DATA ( handle , fsp , shadow_copy_data , labels ) ;
do_log ( SMB_VFS_OP_GET_SHADOW_COPY_DATA , ( result > = 0 ) , handle , " " ) ;
return result ;
}
2005-10-20 21:33:17 +04:00
static int smb_full_audit_statvfs ( struct vfs_handle_struct * handle ,
2017-06-03 01:26:06 +03:00
const struct smb_filename * smb_fname ,
2005-10-20 21:33:17 +04:00
struct vfs_statvfs_struct * statbuf )
{
int result ;
2017-06-03 01:26:06 +03:00
result = SMB_VFS_NEXT_STATVFS ( handle , smb_fname , statbuf ) ;
2005-10-20 21:33:17 +04:00
do_log ( SMB_VFS_OP_STATVFS , ( result > = 0 ) , handle , " " ) ;
return result ;
}
2009-08-25 07:57:37 +04:00
static uint32_t smb_full_audit_fs_capabilities ( struct vfs_handle_struct * handle , enum timestamp_set_resolution * p_ts_res )
2009-02-10 23:14:39 +03:00
{
int result ;
2009-08-25 07:57:37 +04:00
result = SMB_VFS_NEXT_FS_CAPABILITIES ( handle , p_ts_res ) ;
2009-02-10 23:14:39 +03:00
do_log ( SMB_VFS_OP_FS_CAPABILITIES , true , handle , " " ) ;
return result ;
}
2016-04-05 02:24:10 +03:00
static NTSTATUS smb_full_audit_get_dfs_referrals (
struct vfs_handle_struct * handle ,
struct dfs_GetDFSReferral * r )
{
NTSTATUS status ;
status = SMB_VFS_NEXT_GET_DFS_REFERRALS ( handle , r ) ;
do_log ( SMB_VFS_OP_GET_DFS_REFERRALS , NT_STATUS_IS_OK ( status ) ,
handle , " " ) ;
return status ;
}
2020-01-10 00:33:23 +03:00
static NTSTATUS smb_full_audit_create_dfs_pathat ( struct vfs_handle_struct * handle ,
struct files_struct * dirfsp ,
const struct smb_filename * smb_fname ,
const struct referral * reflist ,
size_t referral_count )
{
NTSTATUS status ;
2021-03-17 07:49:14 +03:00
struct smb_filename * full_fname = NULL ;
full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dirfsp ,
smb_fname ) ;
if ( full_fname = = NULL ) {
return NT_STATUS_NO_MEMORY ;
}
2020-01-10 00:33:23 +03:00
status = SMB_VFS_NEXT_CREATE_DFS_PATHAT ( handle ,
dirfsp ,
smb_fname ,
reflist ,
referral_count ) ;
do_log ( SMB_VFS_OP_CREATE_DFS_PATHAT ,
NT_STATUS_IS_OK ( status ) ,
handle ,
" %s " ,
2021-03-17 07:49:14 +03:00
smb_fname_str_do_log ( handle - > conn , full_fname ) ) ;
2020-01-10 00:33:23 +03:00
2021-03-17 07:49:14 +03:00
TALLOC_FREE ( full_fname ) ;
2020-01-10 00:33:23 +03:00
return status ;
}
2020-02-11 21:02:18 +03:00
static NTSTATUS smb_full_audit_read_dfs_pathat ( struct vfs_handle_struct * handle ,
TALLOC_CTX * mem_ctx ,
struct files_struct * dirfsp ,
2020-05-30 02:32:12 +03:00
struct smb_filename * smb_fname ,
2020-02-11 21:02:18 +03:00
struct referral * * ppreflist ,
size_t * preferral_count )
{
2021-07-13 03:01:34 +03:00
struct smb_filename * full_fname = NULL ;
2020-02-11 21:02:18 +03:00
NTSTATUS status ;
2021-07-13 03:01:34 +03:00
full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dirfsp ,
smb_fname ) ;
if ( full_fname = = NULL ) {
return NT_STATUS_NO_MEMORY ;
}
2020-02-11 21:02:18 +03:00
status = SMB_VFS_NEXT_READ_DFS_PATHAT ( handle ,
mem_ctx ,
dirfsp ,
smb_fname ,
ppreflist ,
preferral_count ) ;
do_log ( SMB_VFS_OP_READ_DFS_PATHAT ,
NT_STATUS_IS_OK ( status ) ,
handle ,
" %s " ,
2021-07-13 03:01:34 +03:00
smb_fname_str_do_log ( handle - > conn , full_fname ) ) ;
2020-02-11 21:02:18 +03:00
2021-07-13 03:01:34 +03:00
TALLOC_FREE ( full_fname ) ;
2020-02-11 21:02:18 +03:00
return status ;
}
2012-04-10 05:16:57 +04:00
static NTSTATUS smb_full_audit_snap_check_path ( struct vfs_handle_struct * handle ,
TALLOC_CTX * mem_ctx ,
const char * service_path ,
char * * base_volume )
{
NTSTATUS status ;
status = SMB_VFS_NEXT_SNAP_CHECK_PATH ( handle , mem_ctx , service_path ,
base_volume ) ;
do_log ( SMB_VFS_OP_SNAP_CHECK_PATH , NT_STATUS_IS_OK ( status ) ,
handle , " " ) ;
return status ;
}
static NTSTATUS smb_full_audit_snap_create ( struct vfs_handle_struct * handle ,
TALLOC_CTX * mem_ctx ,
const char * base_volume ,
time_t * tstamp ,
bool rw ,
char * * base_path ,
char * * snap_path )
{
NTSTATUS status ;
status = SMB_VFS_NEXT_SNAP_CREATE ( handle , mem_ctx , base_volume , tstamp ,
rw , base_path , snap_path ) ;
do_log ( SMB_VFS_OP_SNAP_CREATE , NT_STATUS_IS_OK ( status ) , handle , " " ) ;
return status ;
}
static NTSTATUS smb_full_audit_snap_delete ( struct vfs_handle_struct * handle ,
TALLOC_CTX * mem_ctx ,
char * base_path ,
char * snap_path )
{
NTSTATUS status ;
status = SMB_VFS_NEXT_SNAP_DELETE ( handle , mem_ctx , base_path ,
snap_path ) ;
do_log ( SMB_VFS_OP_SNAP_DELETE , NT_STATUS_IS_OK ( status ) , handle , " " ) ;
return status ;
}
2012-03-28 06:22:03 +04:00
static DIR * smb_full_audit_fdopendir ( vfs_handle_struct * handle ,
2015-05-01 06:16:18 +03:00
files_struct * fsp , const char * mask , uint32_t attr )
2011-02-09 02:07:48 +03:00
{
2012-03-28 06:22:03 +04:00
DIR * result ;
2011-02-09 02:07:48 +03:00
result = SMB_VFS_NEXT_FDOPENDIR ( handle , fsp , mask , attr ) ;
do_log ( SMB_VFS_OP_FDOPENDIR , ( result ! = NULL ) , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return result ;
}
2012-03-28 06:18:14 +04:00
static struct dirent * smb_full_audit_readdir ( vfs_handle_struct * handle ,
2020-11-22 15:57:27 +03:00
struct files_struct * dirfsp ,
DIR * dirp ,
SMB_STRUCT_STAT * sbuf )
2004-04-29 16:11:59 +04:00
{
2012-03-28 06:18:14 +04:00
struct dirent * result ;
2004-04-29 16:11:59 +04:00
2020-11-22 15:57:27 +03:00
result = SMB_VFS_NEXT_READDIR ( handle , dirfsp , dirp , sbuf ) ;
2004-04-29 16:11:59 +04:00
/* This operation has no reasonable error condition
* ( End of dir is also failure ) , so always succeed .
*/
do_log ( SMB_VFS_OP_READDIR , True , handle , " " ) ;
return result ;
}
2006-07-11 22:01:26 +04:00
static void smb_full_audit_seekdir ( vfs_handle_struct * handle ,
2012-03-28 06:22:03 +04:00
DIR * dirp , long offset )
2004-11-11 02:02:48 +03:00
{
2006-07-11 22:01:26 +04:00
SMB_VFS_NEXT_SEEKDIR ( handle , dirp , offset ) ;
2004-11-11 02:02:48 +03:00
do_log ( SMB_VFS_OP_SEEKDIR , True , handle , " " ) ;
}
2006-07-11 22:01:26 +04:00
static long smb_full_audit_telldir ( vfs_handle_struct * handle ,
2012-03-28 06:22:03 +04:00
DIR * dirp )
2004-11-11 02:02:48 +03:00
{
long result ;
2006-07-11 22:01:26 +04:00
result = SMB_VFS_NEXT_TELLDIR ( handle , dirp ) ;
2004-11-11 02:02:48 +03:00
2005-09-15 15:02:03 +04:00
do_log ( SMB_VFS_OP_TELLDIR , True , handle , " " ) ;
2004-11-11 02:02:48 +03:00
return result ;
}
2006-07-11 22:01:26 +04:00
static void smb_full_audit_rewinddir ( vfs_handle_struct * handle ,
2012-03-28 06:22:03 +04:00
DIR * dirp )
2004-11-11 02:02:48 +03:00
{
2006-07-11 22:01:26 +04:00
SMB_VFS_NEXT_REWINDDIR ( handle , dirp ) ;
2004-11-11 02:02:48 +03:00
do_log ( SMB_VFS_OP_REWINDDIR , True , handle , " " ) ;
}
2019-09-05 01:48:23 +03:00
static int smb_full_audit_mkdirat ( vfs_handle_struct * handle ,
struct files_struct * dirfsp ,
const struct smb_filename * smb_fname ,
mode_t mode )
{
2020-12-14 17:55:04 +03:00
struct smb_filename * full_fname = NULL ;
2019-09-05 01:48:23 +03:00
int result ;
2020-12-14 17:55:04 +03:00
full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dirfsp ,
smb_fname ) ;
if ( full_fname = = NULL ) {
errno = ENOMEM ;
return - 1 ;
}
2019-09-05 01:48:23 +03:00
result = SMB_VFS_NEXT_MKDIRAT ( handle ,
dirfsp ,
smb_fname ,
mode ) ;
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_MKDIRAT ,
( result > = 0 ) ,
handle ,
" %s " ,
2020-12-14 17:55:04 +03:00
smb_fname_str_do_log ( handle - > conn , full_fname ) ) ;
TALLOC_FREE ( full_fname ) ;
2019-09-05 01:48:23 +03:00
return result ;
}
2006-07-11 22:01:26 +04:00
static int smb_full_audit_closedir ( vfs_handle_struct * handle ,
2012-03-28 06:22:03 +04:00
DIR * dirp )
2004-04-29 16:11:59 +04:00
{
int result ;
2006-07-11 22:01:26 +04:00
result = SMB_VFS_NEXT_CLOSEDIR ( handle , dirp ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_CLOSEDIR , ( result > = 0 ) , handle , " " ) ;
return result ;
}
2020-05-21 00:02:39 +03:00
static int smb_full_audit_openat ( vfs_handle_struct * handle ,
const struct files_struct * dirfsp ,
const struct smb_filename * smb_fname ,
struct files_struct * fsp ,
int flags ,
mode_t mode )
{
int result ;
result = SMB_VFS_NEXT_OPENAT ( handle , dirfsp , smb_fname , fsp , flags , mode ) ;
do_log ( SMB_VFS_OP_OPENAT , ( result > = 0 ) , handle , " %s|%s " ,
( ( flags & O_WRONLY ) | | ( flags & O_RDWR ) ) ? " w " : " r " ,
fsp_str_do_log ( fsp ) ) ;
return result ;
}
2008-11-24 01:37:37 +03:00
static NTSTATUS smb_full_audit_create_file ( vfs_handle_struct * handle ,
struct smb_request * req ,
2009-06-12 23:54:11 +04:00
struct smb_filename * smb_fname ,
2008-11-24 01:37:37 +03:00
uint32_t access_mask ,
uint32_t share_access ,
uint32_t create_disposition ,
uint32_t create_options ,
uint32_t file_attributes ,
uint32_t oplock_request ,
2019-08-07 23:00:11 +03:00
const struct smb2_lease * lease ,
2008-11-24 01:37:37 +03:00
uint64_t allocation_size ,
2010-03-06 02:10:30 +03:00
uint32_t private_flags ,
2008-11-24 01:37:37 +03:00
struct security_descriptor * sd ,
struct ea_list * ea_list ,
files_struct * * result_fsp ,
2014-11-26 16:12:51 +03:00
int * pinfo ,
const struct smb2_create_blobs * in_context_blobs ,
struct smb2_create_blobs * out_context_blobs )
2008-11-24 01:37:37 +03:00
{
NTSTATUS result ;
2009-08-26 05:38:07 +04:00
const char * str_create_disposition ;
switch ( create_disposition ) {
case FILE_SUPERSEDE :
str_create_disposition = " supersede " ;
break ;
case FILE_OVERWRITE_IF :
str_create_disposition = " overwrite_if " ;
break ;
case FILE_OPEN :
str_create_disposition = " open " ;
break ;
case FILE_OVERWRITE :
str_create_disposition = " overwrite " ;
break ;
case FILE_CREATE :
str_create_disposition = " create " ;
break ;
case FILE_OPEN_IF :
str_create_disposition = " open_if " ;
break ;
default :
str_create_disposition = " unknown " ;
}
2008-11-24 01:37:37 +03:00
result = SMB_VFS_NEXT_CREATE_FILE (
handle , /* handle */
req , /* req */
2009-06-12 23:54:11 +04:00
smb_fname , /* fname */
2008-11-24 01:37:37 +03:00
access_mask , /* access_mask */
share_access , /* share_access */
create_disposition , /* create_disposition*/
create_options , /* create_options */
file_attributes , /* file_attributes */
oplock_request , /* oplock_request */
2013-08-21 17:56:14 +04:00
lease , /* lease */
2008-11-24 01:37:37 +03:00
allocation_size , /* allocation_size */
2010-03-06 02:10:30 +03:00
private_flags ,
2008-11-24 01:37:37 +03:00
sd , /* sd */
ea_list , /* ea_list */
result_fsp , /* result */
2014-11-26 16:12:51 +03:00
pinfo , /* pinfo */
in_context_blobs , out_context_blobs ) ; /* create context */
2008-11-24 01:37:37 +03:00
2009-08-26 05:38:07 +04:00
do_log ( SMB_VFS_OP_CREATE_FILE , ( NT_STATUS_IS_OK ( result ) ) , handle ,
" 0x%x|%s|%s|%s " , access_mask ,
create_options & FILE_DIRECTORY_FILE ? " dir " : " file " ,
2018-08-24 23:17:24 +03:00
str_create_disposition ,
2019-08-15 15:43:07 +03:00
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
2008-11-24 01:37:37 +03:00
return result ;
}
2008-01-11 16:19:28 +03:00
static int smb_full_audit_close ( vfs_handle_struct * handle , files_struct * fsp )
2004-04-29 16:11:59 +04:00
{
int result ;
2008-01-11 16:19:28 +03:00
result = SMB_VFS_NEXT_CLOSE ( handle , fsp ) ;
2004-04-29 16:11:59 +04:00
2009-07-11 05:11:32 +04:00
do_log ( SMB_VFS_OP_CLOSE , ( result > = 0 ) , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2004-08-31 19:11:41 +04:00
static ssize_t smb_full_audit_pread ( vfs_handle_struct * handle , files_struct * fsp ,
2012-04-05 08:53:08 +04:00
void * data , size_t n , off_t offset )
2004-04-29 16:11:59 +04:00
{
ssize_t result ;
2008-01-07 02:14:19 +03:00
result = SMB_VFS_NEXT_PREAD ( handle , fsp , data , n , offset ) ;
2004-04-29 16:11:59 +04:00
2009-07-11 05:11:32 +04:00
do_log ( SMB_VFS_OP_PREAD , ( result > = 0 ) , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2012-07-09 19:17:25 +04:00
struct smb_full_audit_pread_state {
vfs_handle_struct * handle ;
files_struct * fsp ;
ssize_t ret ;
2016-02-26 12:54:01 +03:00
struct vfs_aio_state vfs_aio_state ;
2012-07-09 19:17:25 +04:00
} ;
static void smb_full_audit_pread_done ( struct tevent_req * subreq ) ;
static struct tevent_req * smb_full_audit_pread_send (
struct vfs_handle_struct * handle , TALLOC_CTX * mem_ctx ,
struct tevent_context * ev , struct files_struct * fsp ,
void * data , size_t n , off_t offset )
{
struct tevent_req * req , * subreq ;
struct smb_full_audit_pread_state * state ;
req = tevent_req_create ( mem_ctx , & state ,
struct smb_full_audit_pread_state ) ;
if ( req = = NULL ) {
do_log ( SMB_VFS_OP_PREAD_SEND , false , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return NULL ;
}
state - > handle = handle ;
state - > fsp = fsp ;
subreq = SMB_VFS_NEXT_PREAD_SEND ( state , ev , handle , fsp , data ,
n , offset ) ;
if ( tevent_req_nomem ( subreq , req ) ) {
do_log ( SMB_VFS_OP_PREAD_SEND , false , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return tevent_req_post ( req , ev ) ;
}
tevent_req_set_callback ( subreq , smb_full_audit_pread_done , req ) ;
do_log ( SMB_VFS_OP_PREAD_SEND , true , handle , " %s " , fsp_str_do_log ( fsp ) ) ;
return req ;
}
static void smb_full_audit_pread_done ( struct tevent_req * subreq )
{
struct tevent_req * req = tevent_req_callback_data (
subreq , struct tevent_req ) ;
struct smb_full_audit_pread_state * state = tevent_req_data (
req , struct smb_full_audit_pread_state ) ;
2016-02-26 12:54:01 +03:00
state - > ret = SMB_VFS_PREAD_RECV ( subreq , & state - > vfs_aio_state ) ;
2012-07-09 19:17:25 +04:00
TALLOC_FREE ( subreq ) ;
tevent_req_done ( req ) ;
}
2016-02-26 12:54:01 +03:00
static ssize_t smb_full_audit_pread_recv ( struct tevent_req * req ,
struct vfs_aio_state * vfs_aio_state )
2012-07-09 19:17:25 +04:00
{
struct smb_full_audit_pread_state * state = tevent_req_data (
req , struct smb_full_audit_pread_state ) ;
2016-02-26 12:54:01 +03:00
if ( tevent_req_is_unix_error ( req , & vfs_aio_state - > error ) ) {
2012-07-09 19:17:25 +04:00
do_log ( SMB_VFS_OP_PREAD_RECV , false , state - > handle , " %s " ,
fsp_str_do_log ( state - > fsp ) ) ;
return - 1 ;
}
do_log ( SMB_VFS_OP_PREAD_RECV , ( state - > ret > = 0 ) , state - > handle , " %s " ,
fsp_str_do_log ( state - > fsp ) ) ;
2016-02-26 12:54:01 +03:00
* vfs_aio_state = state - > vfs_aio_state ;
2012-07-09 19:17:25 +04:00
return state - > ret ;
}
2004-08-31 19:11:41 +04:00
static ssize_t smb_full_audit_pwrite ( vfs_handle_struct * handle , files_struct * fsp ,
2008-01-07 11:23:04 +03:00
const void * data , size_t n ,
2012-04-05 08:53:08 +04:00
off_t offset )
2004-04-29 16:11:59 +04:00
{
ssize_t result ;
2008-01-07 11:23:04 +03:00
result = SMB_VFS_NEXT_PWRITE ( handle , fsp , data , n , offset ) ;
2004-04-29 16:11:59 +04:00
2009-07-11 05:11:32 +04:00
do_log ( SMB_VFS_OP_PWRITE , ( result > = 0 ) , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2012-07-09 19:17:25 +04:00
struct smb_full_audit_pwrite_state {
vfs_handle_struct * handle ;
files_struct * fsp ;
ssize_t ret ;
2016-02-26 12:54:01 +03:00
struct vfs_aio_state vfs_aio_state ;
2012-07-09 19:17:25 +04:00
} ;
static void smb_full_audit_pwrite_done ( struct tevent_req * subreq ) ;
static struct tevent_req * smb_full_audit_pwrite_send (
struct vfs_handle_struct * handle , TALLOC_CTX * mem_ctx ,
struct tevent_context * ev , struct files_struct * fsp ,
const void * data , size_t n , off_t offset )
{
struct tevent_req * req , * subreq ;
struct smb_full_audit_pwrite_state * state ;
req = tevent_req_create ( mem_ctx , & state ,
struct smb_full_audit_pwrite_state ) ;
if ( req = = NULL ) {
do_log ( SMB_VFS_OP_PWRITE_SEND , false , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return NULL ;
}
state - > handle = handle ;
state - > fsp = fsp ;
subreq = SMB_VFS_NEXT_PWRITE_SEND ( state , ev , handle , fsp , data ,
n , offset ) ;
if ( tevent_req_nomem ( subreq , req ) ) {
do_log ( SMB_VFS_OP_PWRITE_SEND , false , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return tevent_req_post ( req , ev ) ;
}
tevent_req_set_callback ( subreq , smb_full_audit_pwrite_done , req ) ;
do_log ( SMB_VFS_OP_PWRITE_SEND , true , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return req ;
}
static void smb_full_audit_pwrite_done ( struct tevent_req * subreq )
{
struct tevent_req * req = tevent_req_callback_data (
subreq , struct tevent_req ) ;
struct smb_full_audit_pwrite_state * state = tevent_req_data (
req , struct smb_full_audit_pwrite_state ) ;
2016-02-26 12:54:01 +03:00
state - > ret = SMB_VFS_PWRITE_RECV ( subreq , & state - > vfs_aio_state ) ;
2012-07-09 19:17:25 +04:00
TALLOC_FREE ( subreq ) ;
tevent_req_done ( req ) ;
}
2016-02-26 12:54:01 +03:00
static ssize_t smb_full_audit_pwrite_recv ( struct tevent_req * req ,
struct vfs_aio_state * vfs_aio_state )
2012-07-09 19:17:25 +04:00
{
struct smb_full_audit_pwrite_state * state = tevent_req_data (
req , struct smb_full_audit_pwrite_state ) ;
2016-02-26 12:54:01 +03:00
if ( tevent_req_is_unix_error ( req , & vfs_aio_state - > error ) ) {
2012-07-09 19:17:25 +04:00
do_log ( SMB_VFS_OP_PWRITE_RECV , false , state - > handle , " %s " ,
fsp_str_do_log ( state - > fsp ) ) ;
return - 1 ;
}
do_log ( SMB_VFS_OP_PWRITE_RECV , ( state - > ret > = 0 ) , state - > handle , " %s " ,
fsp_str_do_log ( state - > fsp ) ) ;
2016-02-26 12:54:01 +03:00
* vfs_aio_state = state - > vfs_aio_state ;
2012-07-09 19:17:25 +04:00
return state - > ret ;
}
2012-04-05 08:53:08 +04:00
static off_t smb_full_audit_lseek ( vfs_handle_struct * handle , files_struct * fsp ,
off_t offset , int whence )
2004-04-29 16:11:59 +04:00
{
ssize_t result ;
2008-01-07 12:15:08 +03:00
result = SMB_VFS_NEXT_LSEEK ( handle , fsp , offset , whence ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_LSEEK , ( result ! = ( ssize_t ) - 1 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2004-08-31 19:11:41 +04:00
static ssize_t smb_full_audit_sendfile ( vfs_handle_struct * handle , int tofd ,
2008-01-11 02:51:19 +03:00
files_struct * fromfsp ,
2012-04-05 08:53:08 +04:00
const DATA_BLOB * hdr , off_t offset ,
2004-04-29 16:11:59 +04:00
size_t n )
{
ssize_t result ;
2008-01-11 02:51:19 +03:00
result = SMB_VFS_NEXT_SENDFILE ( handle , tofd , fromfsp , hdr , offset , n ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_SENDFILE , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( fromfsp ) ) ;
2007-10-30 03:16:13 +03:00
return result ;
}
static ssize_t smb_full_audit_recvfile ( vfs_handle_struct * handle , int fromfd ,
2008-01-11 03:26:54 +03:00
files_struct * tofsp ,
2012-04-05 08:53:08 +04:00
off_t offset ,
2007-10-30 03:16:13 +03:00
size_t n )
{
ssize_t result ;
2008-01-11 03:26:54 +03:00
result = SMB_VFS_NEXT_RECVFILE ( handle , fromfd , tofsp , offset , n ) ;
2007-10-30 03:16:13 +03:00
do_log ( SMB_VFS_OP_RECVFILE , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( tofsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2019-08-10 00:25:21 +03:00
static int smb_full_audit_renameat ( vfs_handle_struct * handle ,
files_struct * srcfsp ,
const struct smb_filename * smb_fname_src ,
files_struct * dstfsp ,
const struct smb_filename * smb_fname_dst )
{
int result ;
2021-06-17 19:44:38 +03:00
int saved_errno ;
struct smb_filename * full_fname_src = NULL ;
struct smb_filename * full_fname_dst = NULL ;
full_fname_src = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
srcfsp ,
smb_fname_src ) ;
if ( full_fname_src = = NULL ) {
errno = ENOMEM ;
return - 1 ;
}
full_fname_dst = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dstfsp ,
smb_fname_dst ) ;
if ( full_fname_dst = = NULL ) {
TALLOC_FREE ( full_fname_src ) ;
errno = ENOMEM ;
return - 1 ;
}
2019-08-10 00:25:21 +03:00
result = SMB_VFS_NEXT_RENAMEAT ( handle ,
srcfsp ,
smb_fname_src ,
dstfsp ,
smb_fname_dst ) ;
2021-06-17 19:44:38 +03:00
if ( result = = - 1 ) {
saved_errno = errno ;
}
2019-08-10 00:25:21 +03:00
do_log ( SMB_VFS_OP_RENAMEAT , ( result > = 0 ) , handle , " %s|%s " ,
2021-06-17 19:44:38 +03:00
smb_fname_str_do_log ( handle - > conn , full_fname_src ) ,
smb_fname_str_do_log ( handle - > conn , full_fname_dst ) ) ;
2019-08-10 00:25:21 +03:00
2021-06-17 19:44:38 +03:00
TALLOC_FREE ( full_fname_src ) ;
TALLOC_FREE ( full_fname_dst ) ;
if ( result = = - 1 ) {
errno = saved_errno ;
}
2019-08-10 00:25:21 +03:00
return result ;
}
2012-07-13 12:22:25 +04:00
struct smb_full_audit_fsync_state {
vfs_handle_struct * handle ;
files_struct * fsp ;
int ret ;
2016-02-26 12:54:01 +03:00
struct vfs_aio_state vfs_aio_state ;
2012-07-13 12:22:25 +04:00
} ;
static void smb_full_audit_fsync_done ( struct tevent_req * subreq ) ;
static struct tevent_req * smb_full_audit_fsync_send (
struct vfs_handle_struct * handle , TALLOC_CTX * mem_ctx ,
struct tevent_context * ev , struct files_struct * fsp )
{
struct tevent_req * req , * subreq ;
struct smb_full_audit_fsync_state * state ;
req = tevent_req_create ( mem_ctx , & state ,
struct smb_full_audit_fsync_state ) ;
if ( req = = NULL ) {
do_log ( SMB_VFS_OP_FSYNC_SEND , false , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return NULL ;
}
state - > handle = handle ;
state - > fsp = fsp ;
subreq = SMB_VFS_NEXT_FSYNC_SEND ( state , ev , handle , fsp ) ;
if ( tevent_req_nomem ( subreq , req ) ) {
do_log ( SMB_VFS_OP_FSYNC_SEND , false , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return tevent_req_post ( req , ev ) ;
}
tevent_req_set_callback ( subreq , smb_full_audit_fsync_done , req ) ;
do_log ( SMB_VFS_OP_FSYNC_SEND , true , handle , " %s " , fsp_str_do_log ( fsp ) ) ;
return req ;
}
static void smb_full_audit_fsync_done ( struct tevent_req * subreq )
{
struct tevent_req * req = tevent_req_callback_data (
subreq , struct tevent_req ) ;
struct smb_full_audit_fsync_state * state = tevent_req_data (
req , struct smb_full_audit_fsync_state ) ;
2016-02-26 12:54:01 +03:00
state - > ret = SMB_VFS_FSYNC_RECV ( subreq , & state - > vfs_aio_state ) ;
2012-07-13 12:22:25 +04:00
TALLOC_FREE ( subreq ) ;
tevent_req_done ( req ) ;
}
2016-02-26 12:54:01 +03:00
static int smb_full_audit_fsync_recv ( struct tevent_req * req ,
struct vfs_aio_state * vfs_aio_state )
2012-07-13 12:22:25 +04:00
{
struct smb_full_audit_fsync_state * state = tevent_req_data (
req , struct smb_full_audit_fsync_state ) ;
2016-02-26 12:54:01 +03:00
if ( tevent_req_is_unix_error ( req , & vfs_aio_state - > error ) ) {
2012-07-13 12:22:25 +04:00
do_log ( SMB_VFS_OP_FSYNC_RECV , false , state - > handle , " %s " ,
fsp_str_do_log ( state - > fsp ) ) ;
return - 1 ;
}
do_log ( SMB_VFS_OP_FSYNC_RECV , ( state - > ret > = 0 ) , state - > handle , " %s " ,
fsp_str_do_log ( state - > fsp ) ) ;
2016-02-26 12:54:01 +03:00
* vfs_aio_state = state - > vfs_aio_state ;
2012-07-13 12:22:25 +04:00
return state - > ret ;
}
2006-07-11 22:01:26 +04:00
static int smb_full_audit_stat ( vfs_handle_struct * handle ,
2009-06-23 02:26:56 +04:00
struct smb_filename * smb_fname )
2004-04-29 16:11:59 +04:00
{
int result ;
2009-06-23 02:26:56 +04:00
result = SMB_VFS_NEXT_STAT ( handle , smb_fname ) ;
2004-04-29 16:11:59 +04:00
2009-06-23 02:26:56 +04:00
do_log ( SMB_VFS_OP_STAT , ( result > = 0 ) , handle , " %s " ,
2019-08-15 15:43:07 +03:00
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2008-01-07 15:21:26 +03:00
static int smb_full_audit_fstat ( vfs_handle_struct * handle , files_struct * fsp ,
2004-04-29 16:11:59 +04:00
SMB_STRUCT_STAT * sbuf )
{
int result ;
2008-01-07 15:21:26 +03:00
result = SMB_VFS_NEXT_FSTAT ( handle , fsp , sbuf ) ;
2004-04-29 16:11:59 +04:00
2009-07-11 05:11:32 +04:00
do_log ( SMB_VFS_OP_FSTAT , ( result > = 0 ) , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2006-07-11 22:01:26 +04:00
static int smb_full_audit_lstat ( vfs_handle_struct * handle ,
2009-06-23 02:26:56 +04:00
struct smb_filename * smb_fname )
2004-04-29 16:11:59 +04:00
{
int result ;
2009-06-23 02:26:56 +04:00
result = SMB_VFS_NEXT_LSTAT ( handle , smb_fname ) ;
2004-04-29 16:11:59 +04:00
2009-06-23 02:26:56 +04:00
do_log ( SMB_VFS_OP_LSTAT , ( result > = 0 ) , handle , " %s " ,
2019-08-15 15:43:07 +03:00
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2022-01-06 17:59:05 +03:00
static int smb_full_audit_fstatat (
struct vfs_handle_struct * handle ,
const struct files_struct * dirfsp ,
const struct smb_filename * smb_fname ,
SMB_STRUCT_STAT * sbuf ,
int flags )
{
int result ;
result = SMB_VFS_NEXT_FSTATAT ( handle , dirfsp , smb_fname , sbuf , flags ) ;
do_log ( SMB_VFS_OP_FSTATAT ,
( result > = 0 ) ,
handle ,
" %s/%s " ,
fsp_str_do_log ( dirfsp ) ,
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
return result ;
}
2009-07-19 04:32:44 +04:00
static uint64_t smb_full_audit_get_alloc_size ( vfs_handle_struct * handle ,
2009-01-27 02:39:40 +03:00
files_struct * fsp , const SMB_STRUCT_STAT * sbuf )
{
2010-04-06 00:50:59 +04:00
uint64_t result ;
2009-01-27 02:39:40 +03:00
result = SMB_VFS_NEXT_GET_ALLOC_SIZE ( handle , fsp , sbuf ) ;
2010-04-06 00:50:59 +04:00
do_log ( SMB_VFS_OP_GET_ALLOC_SIZE , ( result ! = ( uint64_t ) - 1 ) , handle ,
2017-11-19 21:44:06 +03:00
" %llu " , ( unsigned long long ) result ) ;
2009-01-27 02:39:40 +03:00
return result ;
}
2019-09-12 20:50:06 +03:00
static int smb_full_audit_unlinkat ( vfs_handle_struct * handle ,
struct files_struct * dirfsp ,
const struct smb_filename * smb_fname ,
int flags )
{
2021-01-20 17:02:03 +03:00
struct smb_filename * full_fname = NULL ;
2019-09-12 20:50:06 +03:00
int result ;
2021-01-20 17:02:03 +03:00
full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dirfsp ,
smb_fname ) ;
if ( full_fname = = NULL ) {
return - 1 ;
}
2019-09-12 20:50:06 +03:00
result = SMB_VFS_NEXT_UNLINKAT ( handle ,
dirfsp ,
smb_fname ,
flags ) ;
do_log ( SMB_VFS_OP_UNLINKAT , ( result > = 0 ) , handle , " %s " ,
2021-01-20 17:02:03 +03:00
smb_fname_str_do_log ( handle - > conn , full_fname ) ) ;
2019-09-12 20:50:06 +03:00
2021-01-20 17:02:03 +03:00
TALLOC_FREE ( full_fname ) ;
2019-09-12 20:50:06 +03:00
return result ;
}
2008-01-07 15:44:37 +03:00
static int smb_full_audit_fchmod ( vfs_handle_struct * handle , files_struct * fsp ,
2004-04-29 16:11:59 +04:00
mode_t mode )
{
int result ;
2008-01-07 15:44:37 +03:00
result = SMB_VFS_NEXT_FCHMOD ( handle , fsp , mode ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_FCHMOD , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s|%o " , fsp_str_do_log ( fsp ) , mode ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2008-01-07 16:26:00 +03:00
static int smb_full_audit_fchown ( vfs_handle_struct * handle , files_struct * fsp ,
2004-04-29 16:11:59 +04:00
uid_t uid , gid_t gid )
{
int result ;
2008-01-07 16:26:00 +03:00
result = SMB_VFS_NEXT_FCHOWN ( handle , fsp , uid , gid ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_FCHOWN , ( result > = 0 ) , handle , " %s|%ld|%ld " ,
2009-07-11 05:11:32 +04:00
fsp_str_do_log ( fsp ) , ( long int ) uid , ( long int ) gid ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2007-05-24 03:55:12 +04:00
static int smb_full_audit_lchown ( vfs_handle_struct * handle ,
2016-03-04 01:34:57 +03:00
const struct smb_filename * smb_fname ,
uid_t uid ,
gid_t gid )
2007-05-24 03:55:12 +04:00
{
int result ;
2016-03-04 01:34:57 +03:00
result = SMB_VFS_NEXT_LCHOWN ( handle , smb_fname , uid , gid ) ;
2007-05-24 03:55:12 +04:00
do_log ( SMB_VFS_OP_LCHOWN , ( result > = 0 ) , handle , " %s|%ld|%ld " ,
2016-03-04 01:34:57 +03:00
smb_fname - > base_name , ( long int ) uid , ( long int ) gid ) ;
2007-05-24 03:55:12 +04:00
return result ;
}
2006-07-11 22:01:26 +04:00
static int smb_full_audit_chdir ( vfs_handle_struct * handle ,
2017-06-29 21:29:33 +03:00
const struct smb_filename * smb_fname )
2004-04-29 16:11:59 +04:00
{
int result ;
2017-06-29 21:29:33 +03:00
result = SMB_VFS_NEXT_CHDIR ( handle , smb_fname ) ;
2004-04-29 16:11:59 +04:00
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_CHDIR ,
( result > = 0 ) ,
handle ,
" chdir|%s " ,
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2017-06-30 00:32:47 +03:00
static struct smb_filename * smb_full_audit_getwd ( vfs_handle_struct * handle ,
TALLOC_CTX * ctx )
2004-04-29 16:11:59 +04:00
{
2017-06-30 00:32:47 +03:00
struct smb_filename * result ;
2004-04-29 16:11:59 +04:00
2017-06-30 00:32:47 +03:00
result = SMB_VFS_NEXT_GETWD ( handle , ctx ) ;
2004-04-29 16:11:59 +04:00
2011-06-01 03:36:06 +04:00
do_log ( SMB_VFS_OP_GETWD , ( result ! = NULL ) , handle , " %s " ,
2017-06-30 00:32:47 +03:00
result = = NULL ? " " : result - > base_name ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2021-04-13 13:07:52 +03:00
static int smb_full_audit_fntimes ( vfs_handle_struct * handle ,
files_struct * fsp ,
struct smb_file_time * ft )
{
int result ;
time_t create_time = convert_timespec_to_time_t ( ft - > create_time ) ;
time_t atime = convert_timespec_to_time_t ( ft - > atime ) ;
time_t mtime = convert_timespec_to_time_t ( ft - > mtime ) ;
time_t ctime = convert_timespec_to_time_t ( ft - > ctime ) ;
const char * create_time_str = " " ;
const char * atime_str = " " ;
const char * mtime_str = " " ;
const char * ctime_str = " " ;
TALLOC_CTX * frame = talloc_stackframe ( ) ;
if ( frame = = NULL ) {
errno = ENOMEM ;
return - 1 ;
}
result = SMB_VFS_NEXT_FNTIMES ( handle , fsp , ft ) ;
if ( create_time > 0 ) {
create_time_str = timestring ( frame , create_time ) ;
}
if ( atime > 0 ) {
atime_str = timestring ( frame , atime ) ;
}
if ( mtime > 0 ) {
mtime_str = timestring ( frame , mtime ) ;
}
if ( ctime > 0 ) {
ctime_str = timestring ( frame , ctime ) ;
}
do_log ( SMB_VFS_OP_FNTIMES ,
( result > = 0 ) ,
handle ,
" %s|%s|%s|%s|%s " ,
fsp_str_do_log ( fsp ) ,
create_time_str ,
atime_str ,
mtime_str ,
ctime_str ) ;
TALLOC_FREE ( frame ) ;
return result ;
}
2004-08-31 19:11:41 +04:00
static int smb_full_audit_ftruncate ( vfs_handle_struct * handle , files_struct * fsp ,
2012-04-05 08:53:08 +04:00
off_t len )
2004-04-29 16:11:59 +04:00
{
int result ;
2008-01-07 17:55:09 +03:00
result = SMB_VFS_NEXT_FTRUNCATE ( handle , fsp , len ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_FTRUNCATE , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2010-12-18 10:08:01 +03:00
static int smb_full_audit_fallocate ( vfs_handle_struct * handle , files_struct * fsp ,
2015-02-09 20:21:59 +03:00
uint32_t mode ,
2012-04-05 08:53:08 +04:00
off_t offset ,
off_t len )
2010-12-03 03:25:59 +03:00
{
int result ;
2010-12-18 10:08:01 +03:00
result = SMB_VFS_NEXT_FALLOCATE ( handle , fsp , mode , offset , len ) ;
2010-12-03 03:25:59 +03:00
2010-12-18 10:08:01 +03:00
do_log ( SMB_VFS_OP_FALLOCATE , ( result > = 0 ) , handle ,
2010-12-03 03:25:59 +03:00
" %s " , fsp_str_do_log ( fsp ) ) ;
return result ;
}
2008-01-07 18:38:23 +03:00
static bool smb_full_audit_lock ( vfs_handle_struct * handle , files_struct * fsp ,
2012-04-05 08:53:08 +04:00
int op , off_t offset , off_t count , int type )
2004-04-29 16:11:59 +04:00
{
2007-10-19 04:40:25 +04:00
bool result ;
2004-04-29 16:11:59 +04:00
2008-01-07 18:38:23 +03:00
result = SMB_VFS_NEXT_LOCK ( handle , fsp , op , offset , count , type ) ;
2004-04-29 16:11:59 +04:00
2009-07-11 05:11:32 +04:00
do_log ( SMB_VFS_OP_LOCK , result , handle , " %s " , fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2021-09-21 01:15:39 +03:00
static int smb_full_audit_filesystem_sharemode ( struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
uint32_t share_access ,
uint32_t access_mask )
2006-12-06 13:21:20 +03:00
{
int result ;
2021-09-21 00:51:02 +03:00
result = SMB_VFS_NEXT_FILESYSTEM_SHAREMODE ( handle ,
fsp ,
share_access ,
access_mask ) ;
2006-12-06 13:21:20 +03:00
2021-09-21 01:15:39 +03:00
do_log ( SMB_VFS_OP_FILESYSTEM_SHAREMODE , ( result > = 0 ) , handle , " %s " ,
2009-07-11 05:11:32 +04:00
fsp_str_do_log ( fsp ) ) ;
2006-12-06 13:21:20 +03:00
return result ;
}
2019-09-27 08:49:37 +03:00
static int smb_full_audit_fcntl ( struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
int cmd , va_list cmd_arg )
{
void * arg ;
va_list dup_cmd_arg ;
int result ;
va_copy ( dup_cmd_arg , cmd_arg ) ;
arg = va_arg ( dup_cmd_arg , void * ) ;
result = SMB_VFS_NEXT_FCNTL ( handle , fsp , cmd , arg ) ;
va_end ( dup_cmd_arg ) ;
do_log ( SMB_VFS_OP_FCNTL , ( result > = 0 ) , handle , " %s " ,
fsp_str_do_log ( fsp ) ) ;
return result ;
}
2007-02-14 05:37:14 +03:00
static int smb_full_audit_linux_setlease ( vfs_handle_struct * handle , files_struct * fsp ,
2008-01-07 23:47:53 +03:00
int leasetype )
2007-02-14 05:37:14 +03:00
{
int result ;
2008-01-07 23:47:53 +03:00
result = SMB_VFS_NEXT_LINUX_SETLEASE ( handle , fsp , leasetype ) ;
2007-02-14 05:37:14 +03:00
do_log ( SMB_VFS_OP_LINUX_SETLEASE , ( result > = 0 ) , handle , " %s " ,
2009-07-11 05:11:32 +04:00
fsp_str_do_log ( fsp ) ) ;
2007-02-14 05:37:14 +03:00
return result ;
}
2008-01-08 00:18:50 +03:00
static bool smb_full_audit_getlock ( vfs_handle_struct * handle , files_struct * fsp ,
2012-04-05 08:53:08 +04:00
off_t * poffset , off_t * pcount , int * ptype , pid_t * ppid )
2006-04-10 19:33:04 +04:00
{
2007-10-19 04:40:25 +04:00
bool result ;
2006-04-10 19:33:04 +04:00
2008-01-08 00:18:50 +03:00
result = SMB_VFS_NEXT_GETLOCK ( handle , fsp , poffset , pcount , ptype , ppid ) ;
2006-04-10 19:33:04 +04:00
2009-07-11 05:11:32 +04:00
do_log ( SMB_VFS_OP_GETLOCK , result , handle , " %s " , fsp_str_do_log ( fsp ) ) ;
2006-04-10 19:33:04 +04:00
return result ;
}
2019-08-30 23:48:03 +03:00
static int smb_full_audit_symlinkat ( vfs_handle_struct * handle ,
2020-04-30 20:30:50 +03:00
const struct smb_filename * link_contents ,
2019-08-30 23:48:03 +03:00
struct files_struct * dirfsp ,
const struct smb_filename * new_smb_fname )
{
2021-01-25 23:02:48 +03:00
struct smb_filename * full_fname = NULL ;
2019-08-30 23:48:03 +03:00
int result ;
2021-01-25 23:02:48 +03:00
full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dirfsp ,
new_smb_fname ) ;
if ( full_fname = = NULL ) {
return - 1 ;
}
2019-08-30 23:48:03 +03:00
result = SMB_VFS_NEXT_SYMLINKAT ( handle ,
link_contents ,
dirfsp ,
new_smb_fname ) ;
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_SYMLINKAT ,
( result > = 0 ) ,
handle ,
" %s|%s " ,
2020-04-30 20:30:50 +03:00
link_contents - > base_name ,
2021-01-25 23:02:48 +03:00
smb_fname_str_do_log ( handle - > conn , full_fname ) ) ;
TALLOC_FREE ( full_fname ) ;
2019-08-30 23:48:03 +03:00
return result ;
}
2019-08-23 00:21:23 +03:00
static int smb_full_audit_readlinkat ( vfs_handle_struct * handle ,
2020-10-13 16:19:30 +03:00
const struct files_struct * dirfsp ,
2019-08-23 00:21:23 +03:00
const struct smb_filename * smb_fname ,
char * buf ,
size_t bufsiz )
{
2021-02-11 21:59:18 +03:00
struct smb_filename * full_fname = NULL ;
2019-08-23 00:21:23 +03:00
int result ;
2021-02-11 21:59:18 +03:00
full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dirfsp ,
smb_fname ) ;
if ( full_fname = = NULL ) {
return - 1 ;
}
2019-08-23 00:21:23 +03:00
result = SMB_VFS_NEXT_READLINKAT ( handle ,
dirfsp ,
smb_fname ,
buf ,
bufsiz ) ;
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_READLINKAT ,
( result > = 0 ) ,
handle ,
" %s " ,
2021-02-11 21:59:18 +03:00
smb_fname_str_do_log ( handle - > conn , full_fname ) ) ;
TALLOC_FREE ( full_fname ) ;
2019-08-23 00:21:23 +03:00
return result ;
}
2019-08-14 21:45:35 +03:00
static int smb_full_audit_linkat ( vfs_handle_struct * handle ,
files_struct * srcfsp ,
const struct smb_filename * old_smb_fname ,
files_struct * dstfsp ,
const struct smb_filename * new_smb_fname ,
int flags )
{
2021-02-02 00:08:46 +03:00
struct smb_filename * old_full_fname = NULL ;
struct smb_filename * new_full_fname = NULL ;
2019-08-14 21:45:35 +03:00
int result ;
2021-02-02 00:08:46 +03:00
old_full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
srcfsp ,
old_smb_fname ) ;
if ( old_full_fname = = NULL ) {
return - 1 ;
}
new_full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dstfsp ,
new_smb_fname ) ;
if ( new_full_fname = = NULL ) {
TALLOC_FREE ( old_full_fname ) ;
return - 1 ;
}
2019-08-14 21:45:35 +03:00
result = SMB_VFS_NEXT_LINKAT ( handle ,
srcfsp ,
old_smb_fname ,
dstfsp ,
new_smb_fname ,
flags ) ;
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_LINKAT ,
( result > = 0 ) ,
handle ,
" %s|%s " ,
2021-02-02 00:08:46 +03:00
smb_fname_str_do_log ( handle - > conn , old_full_fname ) ,
smb_fname_str_do_log ( handle - > conn , new_full_fname ) ) ;
TALLOC_FREE ( old_full_fname ) ;
TALLOC_FREE ( new_full_fname ) ;
2019-08-14 21:45:35 +03:00
return result ;
}
2019-08-21 21:36:48 +03:00
static int smb_full_audit_mknodat ( vfs_handle_struct * handle ,
files_struct * dirfsp ,
const struct smb_filename * smb_fname ,
mode_t mode ,
SMB_DEV_T dev )
{
2021-01-20 22:51:16 +03:00
struct smb_filename * full_fname = NULL ;
2019-08-21 21:36:48 +03:00
int result ;
2021-01-20 22:51:16 +03:00
full_fname = full_path_from_dirfsp_atname ( talloc_tos ( ) ,
dirfsp ,
smb_fname ) ;
if ( full_fname = = NULL ) {
return - 1 ;
}
2019-08-21 21:36:48 +03:00
result = SMB_VFS_NEXT_MKNODAT ( handle ,
dirfsp ,
smb_fname ,
mode ,
dev ) ;
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_MKNODAT ,
( result > = 0 ) ,
handle ,
" %s " ,
2021-01-20 22:51:16 +03:00
smb_fname_str_do_log ( handle - > conn , full_fname ) ) ;
TALLOC_FREE ( full_fname ) ;
2019-08-21 21:36:48 +03:00
return result ;
}
2017-06-30 21:32:59 +03:00
static struct smb_filename * smb_full_audit_realpath ( vfs_handle_struct * handle ,
TALLOC_CTX * ctx ,
const struct smb_filename * smb_fname )
2004-04-29 16:11:59 +04:00
{
2017-06-30 21:32:59 +03:00
struct smb_filename * result_fname = NULL ;
2004-04-29 16:11:59 +04:00
2017-06-30 21:32:59 +03:00
result_fname = SMB_VFS_NEXT_REALPATH ( handle , ctx , smb_fname ) ;
2004-04-29 16:11:59 +04:00
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_REALPATH ,
( result_fname ! = NULL ) ,
handle ,
" %s " ,
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
2004-04-29 16:11:59 +04:00
2017-06-30 21:32:59 +03:00
return result_fname ;
2004-04-29 16:11:59 +04:00
}
2021-06-10 18:31:40 +03:00
static int smb_full_audit_fchflags ( vfs_handle_struct * handle ,
struct files_struct * fsp ,
unsigned int flags )
{
int result ;
result = SMB_VFS_NEXT_FCHFLAGS ( handle , fsp , flags ) ;
do_log ( SMB_VFS_OP_FCHFLAGS ,
( result ! = 0 ) ,
handle ,
" %s " ,
smb_fname_str_do_log ( handle - > conn , fsp - > fsp_name ) ) ;
return result ;
}
2007-08-02 13:19:04 +04:00
static struct file_id smb_full_audit_file_id_create ( struct vfs_handle_struct * handle ,
2009-02-16 10:38:53 +03:00
const SMB_STRUCT_STAT * sbuf )
2007-08-02 13:19:04 +04:00
{
2019-11-05 23:54:21 +03:00
struct file_id id_zero = { 0 } ;
2007-08-02 13:19:04 +04:00
struct file_id result ;
2019-11-04 09:39:48 +03:00
struct file_id_buf idbuf ;
2007-08-02 13:19:04 +04:00
2009-02-16 10:38:53 +03:00
result = SMB_VFS_NEXT_FILE_ID_CREATE ( handle , sbuf ) ;
2007-08-02 13:19:04 +04:00
do_log ( SMB_VFS_OP_FILE_ID_CREATE ,
! file_id_equal ( & id_zero , & result ) ,
2019-11-04 09:39:48 +03:00
handle ,
" %s " ,
file_id_str_buf ( result , & idbuf ) ) ;
2007-08-02 13:19:04 +04:00
return result ;
}
2019-06-29 15:08:04 +03:00
static uint64_t smb_full_audit_fs_file_id ( struct vfs_handle_struct * handle ,
const SMB_STRUCT_STAT * sbuf )
{
uint64_t result ;
result = SMB_VFS_NEXT_FS_FILE_ID ( handle , sbuf ) ;
do_log ( SMB_VFS_OP_FS_FILE_ID ,
result ! = 0 ,
handle , " % " PRIu64 , result ) ;
return result ;
}
2008-06-07 11:04:03 +04:00
2021-05-08 02:11:46 +03:00
static NTSTATUS smb_full_audit_fstreaminfo ( vfs_handle_struct * handle ,
struct files_struct * fsp ,
TALLOC_CTX * mem_ctx ,
unsigned int * pnum_streams ,
struct stream_struct * * pstreams )
{
NTSTATUS result ;
result = SMB_VFS_NEXT_FSTREAMINFO ( handle , fsp , mem_ctx ,
pnum_streams , pstreams ) ;
do_log ( SMB_VFS_OP_FSTREAMINFO ,
NT_STATUS_IS_OK ( result ) ,
handle ,
" %s " ,
smb_fname_str_do_log ( handle - > conn , fsp - > fsp_name ) ) ;
return result ;
}
2022-03-07 20:00:20 +03:00
static NTSTATUS smb_full_audit_get_real_filename (
struct vfs_handle_struct * handle ,
const struct smb_filename * path ,
const char * name ,
TALLOC_CTX * mem_ctx ,
char * * found_name )
2009-01-05 14:58:23 +03:00
{
2022-03-07 20:00:20 +03:00
NTSTATUS result ;
2009-01-05 14:58:23 +03:00
result = SMB_VFS_NEXT_GET_REAL_FILENAME ( handle , path , name , mem_ctx ,
found_name ) ;
2022-03-07 20:00:20 +03:00
do_log ( SMB_VFS_OP_GET_REAL_FILENAME ,
NT_STATUS_IS_OK ( result ) ,
handle ,
2020-04-30 17:40:28 +03:00
" %s/%s->%s " ,
2022-03-07 20:00:20 +03:00
path - > base_name ,
name ,
NT_STATUS_IS_OK ( result ) ? * found_name : " " ) ;
2009-01-05 14:58:23 +03:00
return result ;
}
2009-05-28 21:20:14 +04:00
static const char * smb_full_audit_connectpath ( vfs_handle_struct * handle ,
2017-06-30 23:37:03 +03:00
const struct smb_filename * smb_fname )
2009-05-28 21:20:14 +04:00
{
const char * result ;
2017-06-30 23:37:03 +03:00
result = SMB_VFS_NEXT_CONNECTPATH ( handle , smb_fname ) ;
2009-05-28 21:20:14 +04:00
2019-09-16 17:22:37 +03:00
do_log ( SMB_VFS_OP_CONNECTPATH ,
result ! = NULL ,
handle ,
" %s " ,
smb_fname_str_do_log ( handle - > conn , smb_fname ) ) ;
2009-05-28 21:20:14 +04:00
return result ;
}
2009-02-10 08:51:29 +03:00
static NTSTATUS smb_full_audit_brl_lock_windows ( struct vfs_handle_struct * handle ,
struct byte_range_lock * br_lck ,
2019-07-01 15:55:42 +03:00
struct lock_struct * plock )
2009-02-10 08:51:29 +03:00
{
NTSTATUS result ;
2019-07-01 15:55:42 +03:00
result = SMB_VFS_NEXT_BRL_LOCK_WINDOWS ( handle , br_lck , plock ) ;
2009-02-10 08:51:29 +03:00
do_log ( SMB_VFS_OP_BRL_LOCK_WINDOWS , NT_STATUS_IS_OK ( result ) , handle ,
2019-07-01 15:55:42 +03:00
" %s:%llu-%llu. type=%d. " ,
2013-09-10 21:41:32 +04:00
fsp_str_do_log ( brl_fsp ( br_lck ) ) ,
2017-11-19 21:44:06 +03:00
( unsigned long long ) plock - > start ,
( unsigned long long ) plock - > size ,
2019-07-01 15:55:42 +03:00
plock - > lock_type ) ;
2009-02-10 08:51:29 +03:00
return result ;
}
static bool smb_full_audit_brl_unlock_windows ( struct vfs_handle_struct * handle ,
struct byte_range_lock * br_lck ,
const struct lock_struct * plock )
{
bool result ;
2019-07-01 16:25:27 +03:00
result = SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS ( handle , br_lck , plock ) ;
2009-02-10 08:51:29 +03:00
do_log ( SMB_VFS_OP_BRL_UNLOCK_WINDOWS , ( result = = 0 ) , handle ,
2013-09-10 21:41:32 +04:00
" %s:%llu-%llu:%d " , fsp_str_do_log ( brl_fsp ( br_lck ) ) ,
2017-11-19 21:44:06 +03:00
( unsigned long long ) plock - > start ,
( unsigned long long ) plock - > size ,
plock - > lock_type ) ;
2009-02-10 08:51:29 +03:00
return result ;
}
2017-07-09 15:34:10 +03:00
static bool smb_full_audit_strict_lock_check ( struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
struct lock_struct * plock )
2009-03-14 00:15:28 +03:00
{
bool result ;
2017-07-09 15:34:10 +03:00
result = SMB_VFS_NEXT_STRICT_LOCK_CHECK ( handle , fsp , plock ) ;
2009-03-14 00:15:28 +03:00
2017-07-09 15:34:10 +03:00
do_log ( SMB_VFS_OP_STRICT_LOCK_CHECK , result , handle ,
2017-11-19 21:44:06 +03:00
" %s:%llu-%llu:%d " , fsp_str_do_log ( fsp ) ,
( unsigned long long ) plock - > start ,
( unsigned long long ) plock - > size ,
plock - > lock_type ) ;
2009-03-14 00:15:28 +03:00
return result ;
}
2009-11-16 11:49:23 +03:00
static NTSTATUS smb_full_audit_translate_name ( struct vfs_handle_struct * handle ,
const char * name ,
enum vfs_translate_direction direction ,
TALLOC_CTX * mem_ctx ,
char * * mapped_name )
2009-08-27 01:56:09 +04:00
{
NTSTATUS result ;
2009-11-16 11:49:23 +03:00
result = SMB_VFS_NEXT_TRANSLATE_NAME ( handle , name , direction , mem_ctx ,
mapped_name ) ;
2009-08-27 01:56:09 +04:00
do_log ( SMB_VFS_OP_TRANSLATE_NAME , NT_STATUS_IS_OK ( result ) , handle , " " ) ;
return result ;
}
2021-05-26 20:39:43 +03:00
static NTSTATUS smb_full_audit_parent_pathname ( struct vfs_handle_struct * handle ,
TALLOC_CTX * mem_ctx ,
const struct smb_filename * smb_fname_in ,
struct smb_filename * * parent_dir_out ,
struct smb_filename * * atname_out )
{
NTSTATUS result ;
result = SMB_VFS_NEXT_PARENT_PATHNAME ( handle ,
mem_ctx ,
smb_fname_in ,
parent_dir_out ,
atname_out ) ;
do_log ( SMB_VFS_OP_CONNECTPATH ,
NT_STATUS_IS_OK ( result ) ,
handle ,
" %s " ,
smb_fname_str_do_log ( handle - > conn , smb_fname_in ) ) ;
return result ;
}
2016-04-05 02:25:47 +03:00
static NTSTATUS smb_full_audit_fsctl ( struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
TALLOC_CTX * ctx ,
uint32_t function ,
uint16_t req_flags ,
const uint8_t * _in_data ,
uint32_t in_len ,
uint8_t * * _out_data ,
uint32_t max_out_len ,
uint32_t * out_len )
{
NTSTATUS result ;
result = SMB_VFS_NEXT_FSCTL ( handle ,
fsp ,
ctx ,
function ,
req_flags ,
_in_data ,
in_len ,
_out_data ,
max_out_len ,
out_len ) ;
do_log ( SMB_VFS_OP_FSCTL , NT_STATUS_IS_OK ( result ) , handle , " " ) ;
return result ;
}
2017-06-03 13:57:59 +03:00
static struct tevent_req * smb_full_audit_offload_read_send (
TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
uint32_t fsctl ,
uint32_t ttl ,
off_t offset ,
size_t to_copy )
{
struct tevent_req * req = NULL ;
req = SMB_VFS_NEXT_OFFLOAD_READ_SEND ( mem_ctx , ev , handle , fsp ,
fsctl , ttl , offset , to_copy ) ;
do_log ( SMB_VFS_OP_OFFLOAD_READ_SEND , req , handle , " " ) ;
return req ;
}
static NTSTATUS smb_full_audit_offload_read_recv (
struct tevent_req * req ,
struct vfs_handle_struct * handle ,
TALLOC_CTX * mem_ctx ,
2021-06-22 21:13:02 +03:00
uint32_t * flags ,
uint64_t * xferlen ,
2017-06-03 13:57:59 +03:00
DATA_BLOB * _token_blob )
{
NTSTATUS status ;
status = SMB_VFS_NEXT_OFFLOAD_READ_RECV ( req , handle , mem_ctx ,
2021-06-22 21:13:02 +03:00
flags , xferlen , _token_blob ) ;
2017-06-03 13:57:59 +03:00
do_log ( SMB_VFS_OP_OFFLOAD_READ_RECV , NT_STATUS_IS_OK ( status ) , handle , " " ) ;
return status ;
}
2017-06-04 14:50:33 +03:00
static struct tevent_req * smb_full_audit_offload_write_send ( struct vfs_handle_struct * handle ,
2013-01-15 20:22:59 +04:00
TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
2017-06-09 14:02:49 +03:00
uint32_t fsctl ,
DATA_BLOB * token ,
off_t transfer_offset ,
2013-01-15 20:22:59 +04:00
struct files_struct * dest_fsp ,
off_t dest_off ,
2017-06-10 10:05:55 +03:00
off_t num )
2013-01-15 20:22:59 +04:00
{
struct tevent_req * req ;
2017-06-09 14:02:49 +03:00
req = SMB_VFS_NEXT_OFFLOAD_WRITE_SEND ( handle , mem_ctx , ev ,
fsctl , token , transfer_offset ,
2017-06-10 10:05:55 +03:00
dest_fsp , dest_off , num ) ;
2013-01-15 20:22:59 +04:00
2017-06-04 14:50:33 +03:00
do_log ( SMB_VFS_OP_OFFLOAD_WRITE_SEND , req , handle , " " ) ;
2013-01-15 20:22:59 +04:00
return req ;
}
2017-06-04 14:50:33 +03:00
static NTSTATUS smb_full_audit_offload_write_recv ( struct vfs_handle_struct * handle ,
2013-01-15 20:22:59 +04:00
struct tevent_req * req ,
off_t * copied )
{
NTSTATUS result ;
2017-06-04 14:50:33 +03:00
result = SMB_VFS_NEXT_OFFLOAD_WRITE_RECV ( handle , req , copied ) ;
2013-01-15 20:22:59 +04:00
2017-06-04 14:50:33 +03:00
do_log ( SMB_VFS_OP_OFFLOAD_WRITE_RECV , NT_STATUS_IS_OK ( result ) , handle , " " ) ;
2013-01-15 20:22:59 +04:00
return result ;
}
2020-10-13 13:02:34 +03:00
static NTSTATUS smb_full_audit_fget_compression ( vfs_handle_struct * handle ,
2013-11-18 17:54:30 +04:00
TALLOC_CTX * mem_ctx ,
struct files_struct * fsp ,
uint16_t * _compression_fmt )
{
NTSTATUS result ;
2020-10-13 13:02:34 +03:00
result = SMB_VFS_NEXT_FGET_COMPRESSION ( handle , mem_ctx , fsp ,
2013-11-18 17:54:30 +04:00
_compression_fmt ) ;
2020-10-13 13:02:34 +03:00
do_log ( SMB_VFS_OP_FGET_COMPRESSION , NT_STATUS_IS_OK ( result ) , handle ,
2013-11-18 17:54:30 +04:00
" %s " ,
2020-10-13 13:02:34 +03:00
fsp_str_do_log ( fsp ) ) ;
2013-11-18 17:54:30 +04:00
return result ;
}
static NTSTATUS smb_full_audit_set_compression ( vfs_handle_struct * handle ,
TALLOC_CTX * mem_ctx ,
struct files_struct * fsp ,
uint16_t compression_fmt )
{
NTSTATUS result ;
result = SMB_VFS_NEXT_SET_COMPRESSION ( handle , mem_ctx , fsp ,
compression_fmt ) ;
do_log ( SMB_VFS_OP_SET_COMPRESSION , NT_STATUS_IS_OK ( result ) , handle ,
" %s " , fsp_str_do_log ( fsp ) ) ;
return result ;
}
2021-05-10 13:38:58 +03:00
static NTSTATUS smb_full_audit_freaddir_attr ( struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
TALLOC_CTX * mem_ctx ,
struct readdir_attr_data * * pattr_data )
{
NTSTATUS status ;
status = SMB_VFS_NEXT_FREADDIR_ATTR ( handle , fsp , mem_ctx , pattr_data ) ;
do_log ( SMB_VFS_OP_FREADDIR_ATTR ,
NT_STATUS_IS_OK ( status ) ,
handle ,
" %s " ,
fsp_str_do_log ( fsp ) ) ;
return status ;
}
2018-03-15 15:08:55 +03:00
struct smb_full_audit_get_dos_attributes_state {
struct vfs_aio_state aio_state ;
vfs_handle_struct * handle ;
files_struct * dir_fsp ;
const struct smb_filename * smb_fname ;
uint32_t dosmode ;
} ;
static void smb_full_audit_get_dos_attributes_done ( struct tevent_req * subreq ) ;
static struct tevent_req * smb_full_audit_get_dos_attributes_send (
TALLOC_CTX * mem_ctx ,
2018-12-28 14:12:20 +03:00
struct tevent_context * ev ,
2018-03-15 15:08:55 +03:00
struct vfs_handle_struct * handle ,
files_struct * dir_fsp ,
struct smb_filename * smb_fname )
{
struct tevent_req * req = NULL ;
struct smb_full_audit_get_dos_attributes_state * state = NULL ;
struct tevent_req * subreq = NULL ;
req = tevent_req_create ( mem_ctx , & state ,
struct smb_full_audit_get_dos_attributes_state ) ;
if ( req = = NULL ) {
do_log ( SMB_VFS_OP_GET_DOS_ATTRIBUTES_SEND ,
false ,
handle ,
" %s/%s " ,
fsp_str_do_log ( dir_fsp ) ,
smb_fname - > base_name ) ;
return NULL ;
}
* state = ( struct smb_full_audit_get_dos_attributes_state ) {
. handle = handle ,
. dir_fsp = dir_fsp ,
. smb_fname = smb_fname ,
} ;
subreq = SMB_VFS_NEXT_GET_DOS_ATTRIBUTES_SEND ( mem_ctx ,
2018-12-28 14:12:20 +03:00
ev ,
2018-03-15 15:08:55 +03:00
handle ,
dir_fsp ,
smb_fname ) ;
if ( tevent_req_nomem ( subreq , req ) ) {
do_log ( SMB_VFS_OP_GET_DOS_ATTRIBUTES_SEND ,
false ,
handle ,
" %s/%s " ,
fsp_str_do_log ( dir_fsp ) ,
smb_fname - > base_name ) ;
return tevent_req_post ( req , ev ) ;
}
tevent_req_set_callback ( subreq ,
smb_full_audit_get_dos_attributes_done ,
req ) ;
do_log ( SMB_VFS_OP_GET_DOS_ATTRIBUTES_SEND ,
true ,
handle ,
" %s/%s " ,
fsp_str_do_log ( dir_fsp ) ,
smb_fname - > base_name ) ;
return req ;
}
static void smb_full_audit_get_dos_attributes_done ( struct tevent_req * subreq )
{
struct tevent_req * req =
tevent_req_callback_data ( subreq ,
struct tevent_req ) ;
struct smb_full_audit_get_dos_attributes_state * state =
tevent_req_data ( req ,
struct smb_full_audit_get_dos_attributes_state ) ;
NTSTATUS status ;
status = SMB_VFS_NEXT_GET_DOS_ATTRIBUTES_RECV ( subreq ,
& state - > aio_state ,
& state - > dosmode ) ;
TALLOC_FREE ( subreq ) ;
if ( tevent_req_nterror ( req , status ) ) {
return ;
}
tevent_req_done ( req ) ;
return ;
}
static NTSTATUS smb_full_audit_get_dos_attributes_recv ( struct tevent_req * req ,
struct vfs_aio_state * aio_state ,
uint32_t * dosmode )
{
struct smb_full_audit_get_dos_attributes_state * state =
tevent_req_data ( req ,
struct smb_full_audit_get_dos_attributes_state ) ;
NTSTATUS status ;
if ( tevent_req_is_nterror ( req , & status ) ) {
do_log ( SMB_VFS_OP_GET_DOS_ATTRIBUTES_RECV ,
false ,
state - > handle ,
" %s/%s " ,
fsp_str_do_log ( state - > dir_fsp ) ,
state - > smb_fname - > base_name ) ;
tevent_req_received ( req ) ;
return status ;
}
do_log ( SMB_VFS_OP_GET_DOS_ATTRIBUTES_RECV ,
true ,
state - > handle ,
" %s/%s " ,
fsp_str_do_log ( state - > dir_fsp ) ,
state - > smb_fname - > base_name ) ;
* aio_state = state - > aio_state ;
* dosmode = state - > dosmode ;
tevent_req_received ( req ) ;
return NT_STATUS_OK ;
}
2016-03-20 22:51:32 +03:00
static NTSTATUS smb_full_audit_fget_dos_attributes (
struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
uint32_t * dosmode )
{
NTSTATUS status ;
status = SMB_VFS_NEXT_FGET_DOS_ATTRIBUTES ( handle ,
fsp ,
dosmode ) ;
do_log ( SMB_VFS_OP_FGET_DOS_ATTRIBUTES ,
NT_STATUS_IS_OK ( status ) ,
handle ,
" %s " ,
fsp_str_do_log ( fsp ) ) ;
return status ;
}
static NTSTATUS smb_full_audit_fset_dos_attributes (
struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
uint32_t dosmode )
{
NTSTATUS status ;
status = SMB_VFS_NEXT_FSET_DOS_ATTRIBUTES ( handle ,
fsp ,
dosmode ) ;
do_log ( SMB_VFS_OP_FSET_DOS_ATTRIBUTES ,
NT_STATUS_IS_OK ( status ) ,
handle ,
" %s " ,
fsp_str_do_log ( fsp ) ) ;
return status ;
}
2007-10-13 23:06:49 +04:00
static NTSTATUS smb_full_audit_fget_nt_acl ( vfs_handle_struct * handle , files_struct * fsp ,
2015-05-01 06:16:18 +03:00
uint32_t security_info ,
2012-10-10 04:50:27 +04:00
TALLOC_CTX * mem_ctx ,
struct security_descriptor * * ppdesc )
2004-04-29 16:11:59 +04:00
{
2007-10-13 23:06:49 +04:00
NTSTATUS result ;
2004-04-29 16:11:59 +04:00
2012-10-10 04:50:27 +04:00
result = SMB_VFS_NEXT_FGET_NT_ACL ( handle , fsp , security_info ,
mem_ctx , ppdesc ) ;
2004-04-29 16:11:59 +04:00
2007-10-13 23:06:49 +04:00
do_log ( SMB_VFS_OP_FGET_NT_ACL , NT_STATUS_IS_OK ( result ) , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2007-06-27 02:49:10 +04:00
static NTSTATUS smb_full_audit_fset_nt_acl ( vfs_handle_struct * handle , files_struct * fsp ,
2015-05-01 06:16:18 +03:00
uint32_t security_info_sent ,
2010-05-18 12:29:34 +04:00
const struct security_descriptor * psd )
2004-04-29 16:11:59 +04:00
{
2014-08-07 14:53:33 +04:00
struct vfs_full_audit_private_data * pd ;
2007-06-27 02:49:10 +04:00
NTSTATUS result ;
2014-08-07 14:53:33 +04:00
char * sd = NULL ;
SMB_VFS_HANDLE_GET_DATA ( handle , pd ,
struct vfs_full_audit_private_data ,
return NT_STATUS_INTERNAL_ERROR ) ;
if ( pd - > log_secdesc ) {
sd = sddl_encode ( talloc_tos ( ) , psd , get_global_sam_sid ( ) ) ;
}
2004-04-29 16:11:59 +04:00
2008-01-06 20:48:02 +03:00
result = SMB_VFS_NEXT_FSET_NT_ACL ( handle , fsp , security_info_sent , psd ) ;
2004-04-29 16:11:59 +04:00
2014-08-07 14:53:33 +04:00
do_log ( SMB_VFS_OP_FSET_NT_ACL , NT_STATUS_IS_OK ( result ) , handle ,
" %s [%s] " , fsp_str_do_log ( fsp ) , sd ? sd : " " ) ;
TALLOC_FREE ( sd ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2016-04-05 02:27:05 +03:00
static NTSTATUS smb_full_audit_audit_file ( struct vfs_handle_struct * handle ,
struct smb_filename * file ,
struct security_acl * sacl ,
uint32_t access_requested ,
uint32_t access_denied )
{
NTSTATUS result ;
result = SMB_VFS_NEXT_AUDIT_FILE ( handle ,
file ,
sacl ,
access_requested ,
access_denied ) ;
do_log ( SMB_VFS_OP_AUDIT_FILE , NT_STATUS_IS_OK ( result ) , handle ,
2018-08-24 23:17:24 +03:00
" %s " ,
2019-08-15 15:43:07 +03:00
smb_fname_str_do_log ( handle - > conn , file ) ) ;
2016-04-05 02:27:05 +03:00
return result ;
}
2004-08-31 19:11:41 +04:00
static SMB_ACL_T smb_full_audit_sys_acl_get_fd ( vfs_handle_struct * handle ,
2021-05-14 17:26:46 +03:00
files_struct * fsp ,
SMB_ACL_TYPE_T type ,
TALLOC_CTX * mem_ctx )
2004-04-29 16:11:59 +04:00
{
SMB_ACL_T result ;
2021-05-14 17:26:46 +03:00
result = SMB_VFS_NEXT_SYS_ACL_GET_FD ( handle ,
fsp ,
type ,
mem_ctx ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_SYS_ACL_GET_FD , ( result ! = NULL ) , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2012-09-10 06:44:01 +04:00
static int smb_full_audit_sys_acl_blob_get_fd ( vfs_handle_struct * handle ,
2012-09-20 10:35:27 +04:00
files_struct * fsp ,
TALLOC_CTX * mem_ctx ,
2012-09-10 06:44:01 +04:00
char * * blob_description ,
DATA_BLOB * blob )
{
2012-09-20 10:35:27 +04:00
int result ;
2012-09-10 06:44:01 +04:00
2012-09-20 10:35:27 +04:00
result = SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD ( handle , fsp , mem_ctx , blob_description , blob ) ;
2012-09-10 06:44:01 +04:00
2012-09-20 10:35:27 +04:00
do_log ( SMB_VFS_OP_SYS_ACL_BLOB_GET_FD , ( result > = 0 ) , handle ,
2012-09-10 06:44:01 +04:00
" %s " , fsp_str_do_log ( fsp ) ) ;
return result ;
}
2020-12-14 18:28:26 +03:00
static int smb_full_audit_sys_acl_set_fd ( vfs_handle_struct * handle ,
struct files_struct * fsp ,
SMB_ACL_TYPE_T type ,
SMB_ACL_T theacl )
2004-04-29 16:11:59 +04:00
{
int result ;
2020-12-14 18:28:26 +03:00
result = SMB_VFS_NEXT_SYS_ACL_SET_FD ( handle , fsp , type , theacl ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_SYS_ACL_SET_FD , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2021-05-15 00:20:50 +03:00
static int smb_full_audit_sys_acl_delete_def_fd ( vfs_handle_struct * handle ,
struct files_struct * fsp )
{
int result ;
result = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FD ( handle , fsp ) ;
do_log ( SMB_VFS_OP_SYS_ACL_DELETE_DEF_FD ,
( result > = 0 ) ,
handle ,
" %s " ,
fsp_str_do_log ( fsp ) ) ;
return result ;
}
2018-03-13 10:14:53 +03:00
struct smb_full_audit_getxattrat_state {
struct vfs_aio_state aio_state ;
vfs_handle_struct * handle ;
files_struct * dir_fsp ;
const struct smb_filename * smb_fname ;
const char * xattr_name ;
ssize_t xattr_size ;
uint8_t * xattr_value ;
} ;
static void smb_full_audit_getxattrat_done ( struct tevent_req * subreq ) ;
static struct tevent_req * smb_full_audit_getxattrat_send (
TALLOC_CTX * mem_ctx ,
2018-12-27 18:32:46 +03:00
struct tevent_context * ev ,
2018-03-13 10:14:53 +03:00
struct vfs_handle_struct * handle ,
files_struct * dir_fsp ,
const struct smb_filename * smb_fname ,
const char * xattr_name ,
size_t alloc_hint )
{
struct tevent_req * req = NULL ;
struct tevent_req * subreq = NULL ;
struct smb_full_audit_getxattrat_state * state = NULL ;
req = tevent_req_create ( mem_ctx , & state ,
struct smb_full_audit_getxattrat_state ) ;
if ( req = = NULL ) {
do_log ( SMB_VFS_OP_GETXATTRAT_SEND ,
false ,
handle ,
" %s/%s|%s " ,
fsp_str_do_log ( dir_fsp ) ,
smb_fname - > base_name ,
xattr_name ) ;
return NULL ;
}
* state = ( struct smb_full_audit_getxattrat_state ) {
. handle = handle ,
. dir_fsp = dir_fsp ,
. smb_fname = smb_fname ,
. xattr_name = xattr_name ,
} ;
subreq = SMB_VFS_NEXT_GETXATTRAT_SEND ( state ,
2018-12-27 18:32:46 +03:00
ev ,
2018-03-13 10:14:53 +03:00
handle ,
dir_fsp ,
smb_fname ,
xattr_name ,
alloc_hint ) ;
if ( tevent_req_nomem ( subreq , req ) ) {
do_log ( SMB_VFS_OP_GETXATTRAT_SEND ,
false ,
handle ,
" %s/%s|%s " ,
fsp_str_do_log ( dir_fsp ) ,
smb_fname - > base_name ,
xattr_name ) ;
return tevent_req_post ( req , ev ) ;
}
tevent_req_set_callback ( subreq , smb_full_audit_getxattrat_done , req ) ;
do_log ( SMB_VFS_OP_GETXATTRAT_SEND ,
true ,
handle ,
" %s/%s|%s " ,
fsp_str_do_log ( dir_fsp ) ,
smb_fname - > base_name ,
xattr_name ) ;
return req ;
}
static void smb_full_audit_getxattrat_done ( struct tevent_req * subreq )
{
struct tevent_req * req = tevent_req_callback_data (
subreq , struct tevent_req ) ;
struct smb_full_audit_getxattrat_state * state = tevent_req_data (
req , struct smb_full_audit_getxattrat_state ) ;
state - > xattr_size = SMB_VFS_NEXT_GETXATTRAT_RECV ( subreq ,
& state - > aio_state ,
state ,
& state - > xattr_value ) ;
TALLOC_FREE ( subreq ) ;
if ( state - > xattr_size = = - 1 ) {
tevent_req_error ( req , state - > aio_state . error ) ;
return ;
}
tevent_req_done ( req ) ;
}
static ssize_t smb_full_audit_getxattrat_recv ( struct tevent_req * req ,
struct vfs_aio_state * aio_state ,
TALLOC_CTX * mem_ctx ,
uint8_t * * xattr_value )
{
struct smb_full_audit_getxattrat_state * state = tevent_req_data (
req , struct smb_full_audit_getxattrat_state ) ;
ssize_t xattr_size ;
if ( tevent_req_is_unix_error ( req , & aio_state - > error ) ) {
do_log ( SMB_VFS_OP_GETXATTRAT_RECV ,
false ,
state - > handle ,
" %s/%s|%s " ,
fsp_str_do_log ( state - > dir_fsp ) ,
state - > smb_fname - > base_name ,
state - > xattr_name ) ;
tevent_req_received ( req ) ;
return - 1 ;
}
do_log ( SMB_VFS_OP_GETXATTRAT_RECV ,
true ,
state - > handle ,
" %s/%s|%s " ,
fsp_str_do_log ( state - > dir_fsp ) ,
state - > smb_fname - > base_name ,
state - > xattr_name ) ;
* aio_state = state - > aio_state ;
xattr_size = state - > xattr_size ;
if ( xattr_value ! = NULL ) {
* xattr_value = talloc_move ( mem_ctx , & state - > xattr_value ) ;
}
tevent_req_received ( req ) ;
return xattr_size ;
}
2004-08-31 19:11:41 +04:00
static ssize_t smb_full_audit_fgetxattr ( struct vfs_handle_struct * handle ,
2008-01-08 12:00:47 +03:00
struct files_struct * fsp ,
2004-04-29 16:11:59 +04:00
const char * name , void * value , size_t size )
{
ssize_t result ;
2008-01-08 12:00:47 +03:00
result = SMB_VFS_NEXT_FGETXATTR ( handle , fsp , name , value , size ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_FGETXATTR , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s|%s " , fsp_str_do_log ( fsp ) , name ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2004-08-31 19:11:41 +04:00
static ssize_t smb_full_audit_flistxattr ( struct vfs_handle_struct * handle ,
2008-01-08 12:51:40 +03:00
struct files_struct * fsp , char * list ,
2004-04-29 16:11:59 +04:00
size_t size )
{
ssize_t result ;
2008-01-08 12:51:40 +03:00
result = SMB_VFS_NEXT_FLISTXATTR ( handle , fsp , list , size ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_FLISTXATTR , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( fsp ) ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2004-08-31 19:11:41 +04:00
static int smb_full_audit_fremovexattr ( struct vfs_handle_struct * handle ,
2008-01-08 13:29:09 +03:00
struct files_struct * fsp ,
2004-04-29 16:11:59 +04:00
const char * name )
{
int result ;
2008-01-08 13:29:09 +03:00
result = SMB_VFS_NEXT_FREMOVEXATTR ( handle , fsp , name ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_FREMOVEXATTR , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s|%s " , fsp_str_do_log ( fsp ) , name ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2004-08-31 19:11:41 +04:00
static int smb_full_audit_fsetxattr ( struct vfs_handle_struct * handle ,
2008-01-08 13:47:33 +03:00
struct files_struct * fsp , const char * name ,
2004-04-29 16:11:59 +04:00
const void * value , size_t size , int flags )
{
int result ;
2008-01-08 13:47:33 +03:00
result = SMB_VFS_NEXT_FSETXATTR ( handle , fsp , name , value , size , flags ) ;
2004-04-29 16:11:59 +04:00
do_log ( SMB_VFS_OP_FSETXATTR , ( result > = 0 ) , handle ,
2009-07-11 05:11:32 +04:00
" %s|%s " , fsp_str_do_log ( fsp ) , name ) ;
2004-04-29 16:11:59 +04:00
return result ;
}
2009-02-10 23:14:39 +03:00
static bool smb_full_audit_aio_force ( struct vfs_handle_struct * handle ,
struct files_struct * fsp )
{
bool result ;
result = SMB_VFS_NEXT_AIO_FORCE ( handle , fsp ) ;
do_log ( SMB_VFS_OP_AIO_FORCE , result , handle ,
2009-07-11 05:11:32 +04:00
" %s " , fsp_str_do_log ( fsp ) ) ;
2009-02-10 23:14:39 +03:00
return result ;
}
2005-06-28 02:53:56 +04:00
2016-04-05 02:29:32 +03:00
static NTSTATUS smb_full_audit_durable_cookie ( struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
TALLOC_CTX * mem_ctx ,
DATA_BLOB * cookie )
{
NTSTATUS result ;
result = SMB_VFS_NEXT_DURABLE_COOKIE ( handle ,
fsp ,
mem_ctx ,
cookie ) ;
do_log ( SMB_VFS_OP_DURABLE_COOKIE , NT_STATUS_IS_OK ( result ) , handle ,
" %s " , fsp_str_do_log ( fsp ) ) ;
return result ;
}
static NTSTATUS smb_full_audit_durable_disconnect (
struct vfs_handle_struct * handle ,
struct files_struct * fsp ,
const DATA_BLOB old_cookie ,
TALLOC_CTX * mem_ctx ,
DATA_BLOB * new_cookie )
{
NTSTATUS result ;
result = SMB_VFS_NEXT_DURABLE_DISCONNECT ( handle ,
fsp ,
old_cookie ,
mem_ctx ,
new_cookie ) ;
do_log ( SMB_VFS_OP_DURABLE_DISCONNECT , NT_STATUS_IS_OK ( result ) , handle ,
" %s " , fsp_str_do_log ( fsp ) ) ;
return result ;
}
static NTSTATUS smb_full_audit_durable_reconnect (
struct vfs_handle_struct * handle ,
struct smb_request * smb1req ,
struct smbXsrv_open * op ,
const DATA_BLOB old_cookie ,
TALLOC_CTX * mem_ctx ,
struct files_struct * * fsp ,
DATA_BLOB * new_cookie )
{
NTSTATUS result ;
result = SMB_VFS_NEXT_DURABLE_RECONNECT ( handle ,
smb1req ,
op ,
old_cookie ,
mem_ctx ,
fsp ,
new_cookie ) ;
do_log ( SMB_VFS_OP_DURABLE_RECONNECT ,
NT_STATUS_IS_OK ( result ) ,
handle ,
" " ) ;
return result ;
}
2009-07-24 04:28:58 +04:00
static struct vfs_fn_pointers vfs_full_audit_fns = {
2009-07-01 09:44:39 +04:00
/* Disk operations */
2009-07-24 04:28:58 +04:00
. connect_fn = smb_full_audit_connect ,
2011-12-04 08:45:04 +04:00
. disconnect_fn = smb_full_audit_disconnect ,
. disk_free_fn = smb_full_audit_disk_free ,
. get_quota_fn = smb_full_audit_get_quota ,
. set_quota_fn = smb_full_audit_set_quota ,
. get_shadow_copy_data_fn = smb_full_audit_get_shadow_copy_data ,
. statvfs_fn = smb_full_audit_statvfs ,
. fs_capabilities_fn = smb_full_audit_fs_capabilities ,
2016-04-05 02:24:10 +03:00
. get_dfs_referrals_fn = smb_full_audit_get_dfs_referrals ,
2020-01-10 00:33:23 +03:00
. create_dfs_pathat_fn = smb_full_audit_create_dfs_pathat ,
2020-02-11 21:02:18 +03:00
. read_dfs_pathat_fn = smb_full_audit_read_dfs_pathat ,
2011-12-04 08:45:04 +04:00
. fdopendir_fn = smb_full_audit_fdopendir ,
. readdir_fn = smb_full_audit_readdir ,
. seekdir_fn = smb_full_audit_seekdir ,
. telldir_fn = smb_full_audit_telldir ,
. rewind_dir_fn = smb_full_audit_rewinddir ,
2019-09-05 01:48:23 +03:00
. mkdirat_fn = smb_full_audit_mkdirat ,
2011-12-04 08:45:04 +04:00
. closedir_fn = smb_full_audit_closedir ,
2020-05-21 00:02:39 +03:00
. openat_fn = smb_full_audit_openat ,
2011-12-04 08:45:04 +04:00
. create_file_fn = smb_full_audit_create_file ,
2009-07-24 04:28:58 +04:00
. close_fn = smb_full_audit_close ,
2011-12-04 08:45:04 +04:00
. pread_fn = smb_full_audit_pread ,
2012-07-09 19:17:25 +04:00
. pread_send_fn = smb_full_audit_pread_send ,
. pread_recv_fn = smb_full_audit_pread_recv ,
2011-12-04 08:45:04 +04:00
. pwrite_fn = smb_full_audit_pwrite ,
2012-07-09 19:17:25 +04:00
. pwrite_send_fn = smb_full_audit_pwrite_send ,
. pwrite_recv_fn = smb_full_audit_pwrite_recv ,
2011-12-04 08:45:04 +04:00
. lseek_fn = smb_full_audit_lseek ,
. sendfile_fn = smb_full_audit_sendfile ,
. recvfile_fn = smb_full_audit_recvfile ,
2019-08-10 00:25:21 +03:00
. renameat_fn = smb_full_audit_renameat ,
2012-07-13 12:22:25 +04:00
. fsync_send_fn = smb_full_audit_fsync_send ,
. fsync_recv_fn = smb_full_audit_fsync_recv ,
2011-12-04 08:45:04 +04:00
. stat_fn = smb_full_audit_stat ,
. fstat_fn = smb_full_audit_fstat ,
. lstat_fn = smb_full_audit_lstat ,
2022-01-06 17:59:05 +03:00
. fstatat_fn = smb_full_audit_fstatat ,
2011-12-04 08:45:04 +04:00
. get_alloc_size_fn = smb_full_audit_get_alloc_size ,
2019-09-12 20:50:06 +03:00
. unlinkat_fn = smb_full_audit_unlinkat ,
2011-12-04 08:45:04 +04:00
. fchmod_fn = smb_full_audit_fchmod ,
. fchown_fn = smb_full_audit_fchown ,
. lchown_fn = smb_full_audit_lchown ,
. chdir_fn = smb_full_audit_chdir ,
. getwd_fn = smb_full_audit_getwd ,
2021-04-13 13:07:52 +03:00
. fntimes_fn = smb_full_audit_fntimes ,
2011-12-04 08:45:04 +04:00
. ftruncate_fn = smb_full_audit_ftruncate ,
. fallocate_fn = smb_full_audit_fallocate ,
. lock_fn = smb_full_audit_lock ,
2021-09-21 01:15:39 +03:00
. filesystem_sharemode_fn = smb_full_audit_filesystem_sharemode ,
2019-09-27 08:49:37 +03:00
. fcntl_fn = smb_full_audit_fcntl ,
2011-12-04 08:45:04 +04:00
. linux_setlease_fn = smb_full_audit_linux_setlease ,
. getlock_fn = smb_full_audit_getlock ,
2019-08-30 23:48:03 +03:00
. symlinkat_fn = smb_full_audit_symlinkat ,
2019-08-23 00:21:23 +03:00
. readlinkat_fn = smb_full_audit_readlinkat ,
2019-08-14 21:45:35 +03:00
. linkat_fn = smb_full_audit_linkat ,
2019-08-21 21:36:48 +03:00
. mknodat_fn = smb_full_audit_mknodat ,
2011-12-04 08:45:04 +04:00
. realpath_fn = smb_full_audit_realpath ,
2021-06-10 18:31:40 +03:00
. fchflags_fn = smb_full_audit_fchflags ,
2011-12-04 08:45:04 +04:00
. file_id_create_fn = smb_full_audit_file_id_create ,
2019-06-29 15:08:04 +03:00
. fs_file_id_fn = smb_full_audit_fs_file_id ,
2017-06-03 13:57:59 +03:00
. offload_read_send_fn = smb_full_audit_offload_read_send ,
. offload_read_recv_fn = smb_full_audit_offload_read_recv ,
2017-06-04 14:50:33 +03:00
. offload_write_send_fn = smb_full_audit_offload_write_send ,
. offload_write_recv_fn = smb_full_audit_offload_write_recv ,
2020-10-13 13:02:34 +03:00
. fget_compression_fn = smb_full_audit_fget_compression ,
2016-04-05 02:22:06 +03:00
. set_compression_fn = smb_full_audit_set_compression ,
. snap_check_path_fn = smb_full_audit_snap_check_path ,
. snap_create_fn = smb_full_audit_snap_create ,
. snap_delete_fn = smb_full_audit_snap_delete ,
2021-05-08 02:11:46 +03:00
. fstreaminfo_fn = smb_full_audit_fstreaminfo ,
2011-12-04 08:45:04 +04:00
. get_real_filename_fn = smb_full_audit_get_real_filename ,
. connectpath_fn = smb_full_audit_connectpath ,
. brl_lock_windows_fn = smb_full_audit_brl_lock_windows ,
. brl_unlock_windows_fn = smb_full_audit_brl_unlock_windows ,
2017-07-09 15:34:10 +03:00
. strict_lock_check_fn = smb_full_audit_strict_lock_check ,
2011-12-04 08:45:04 +04:00
. translate_name_fn = smb_full_audit_translate_name ,
2021-05-26 20:39:43 +03:00
. parent_pathname_fn = smb_full_audit_parent_pathname ,
2016-04-05 02:25:47 +03:00
. fsctl_fn = smb_full_audit_fsctl ,
2018-03-15 15:08:55 +03:00
. get_dos_attributes_send_fn = smb_full_audit_get_dos_attributes_send ,
. get_dos_attributes_recv_fn = smb_full_audit_get_dos_attributes_recv ,
2016-03-20 22:51:32 +03:00
. fget_dos_attributes_fn = smb_full_audit_fget_dos_attributes ,
. fset_dos_attributes_fn = smb_full_audit_fset_dos_attributes ,
2011-12-04 08:45:04 +04:00
. fget_nt_acl_fn = smb_full_audit_fget_nt_acl ,
. fset_nt_acl_fn = smb_full_audit_fset_nt_acl ,
2016-04-05 02:27:05 +03:00
. audit_file_fn = smb_full_audit_audit_file ,
2011-12-04 08:45:04 +04:00
. sys_acl_get_fd_fn = smb_full_audit_sys_acl_get_fd ,
2012-09-20 10:35:27 +04:00
. sys_acl_blob_get_fd_fn = smb_full_audit_sys_acl_blob_get_fd ,
2011-12-04 08:45:04 +04:00
. sys_acl_set_fd_fn = smb_full_audit_sys_acl_set_fd ,
2021-05-15 00:20:50 +03:00
. sys_acl_delete_def_fd_fn = smb_full_audit_sys_acl_delete_def_fd ,
2018-03-13 10:14:53 +03:00
. getxattrat_send_fn = smb_full_audit_getxattrat_send ,
. getxattrat_recv_fn = smb_full_audit_getxattrat_recv ,
2011-12-04 08:45:04 +04:00
. fgetxattr_fn = smb_full_audit_fgetxattr ,
. flistxattr_fn = smb_full_audit_flistxattr ,
. fremovexattr_fn = smb_full_audit_fremovexattr ,
. fsetxattr_fn = smb_full_audit_fsetxattr ,
. aio_force_fn = smb_full_audit_aio_force ,
2016-04-05 02:29:32 +03:00
. durable_cookie_fn = smb_full_audit_durable_cookie ,
. durable_disconnect_fn = smb_full_audit_durable_disconnect ,
. durable_reconnect_fn = smb_full_audit_durable_reconnect ,
2021-05-10 13:38:58 +03:00
. freaddir_attr_fn = smb_full_audit_freaddir_attr ,
2009-07-01 09:44:39 +04:00
} ;
2015-08-13 19:16:20 +03:00
static_decl_vfs ;
2017-04-20 22:24:43 +03:00
NTSTATUS vfs_full_audit_init ( TALLOC_CTX * ctx )
2004-04-29 16:11:59 +04:00
{
2016-04-01 08:30:14 +03:00
NTSTATUS ret ;
smb_vfs_assert_all_fns ( & vfs_full_audit_fns , " full_audit " ) ;
ret = smb_register_vfs ( SMB_VFS_INTERFACE_VERSION , " full_audit " ,
& vfs_full_audit_fns ) ;
2004-04-29 16:11:59 +04:00
if ( ! NT_STATUS_IS_OK ( ret ) )
return ret ;
vfs_full_audit_debug_level = debug_add_class ( " full_audit " ) ;
if ( vfs_full_audit_debug_level = = - 1 ) {
vfs_full_audit_debug_level = DBGC_VFS ;
DEBUG ( 0 , ( " vfs_full_audit: Couldn't register custom debugging "
" class! \n " ) ) ;
} else {
DEBUG ( 10 , ( " vfs_full_audit: Debug class number of "
" 'full_audit': %d \n " , vfs_full_audit_debug_level ) ) ;
}
return ret ;
}