| 1 | /*
|
|---|
| 2 | * Auditing VFS module for samba. Log selected file operations to syslog
|
|---|
| 3 | * facility.
|
|---|
| 4 | *
|
|---|
| 5 | * Copyright (C) Tim Potter, 1999-2000
|
|---|
| 6 | * Copyright (C) Alexander Bokovoy, 2002
|
|---|
| 7 | * Copyright (C) John H Terpstra, 2003
|
|---|
| 8 | * Copyright (C) Stefan (metze) Metzmacher, 2003
|
|---|
| 9 | * Copyright (C) Volker Lendecke, 2004
|
|---|
| 10 | *
|
|---|
| 11 | * This program is free software; you can redistribute it and/or modify
|
|---|
| 12 | * it under the terms of the GNU General Public License as published by
|
|---|
| 13 | * the Free Software Foundation; either version 3 of the License, or
|
|---|
| 14 | * (at your option) any later version.
|
|---|
| 15 | *
|
|---|
| 16 | * This program is distributed in the hope that it will be useful,
|
|---|
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 19 | * GNU General Public License for more details.
|
|---|
| 20 | *
|
|---|
| 21 | * You should have received a copy of the GNU General Public License
|
|---|
| 22 | * along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|---|
| 23 | */
|
|---|
| 24 |
|
|---|
| 25 | /*
|
|---|
| 26 | * This module implements parseable logging for all Samba VFS operations.
|
|---|
| 27 | *
|
|---|
| 28 | * You use it as follows:
|
|---|
| 29 | *
|
|---|
| 30 | * [tmp]
|
|---|
| 31 | * path = /tmp
|
|---|
| 32 | * vfs objects = full_audit
|
|---|
| 33 | * full_audit:prefix = %u|%I
|
|---|
| 34 | * full_audit:success = open opendir
|
|---|
| 35 | * full_audit:failure = all
|
|---|
| 36 | *
|
|---|
| 37 | * vfs op can be "all" which means log all operations.
|
|---|
| 38 | * vfs op can be "none" which means no logging.
|
|---|
| 39 | *
|
|---|
| 40 | * This leads to syslog entries of the form:
|
|---|
| 41 | * smbd_audit: nobody|192.168.234.1|opendir|ok|.
|
|---|
| 42 | * smbd_audit: nobody|192.168.234.1|open|fail (File not found)|r|x.txt
|
|---|
| 43 | *
|
|---|
| 44 | * where "nobody" is the connected username and "192.168.234.1" is the
|
|---|
| 45 | * client's IP address.
|
|---|
| 46 | *
|
|---|
| 47 | * Options:
|
|---|
| 48 | *
|
|---|
| 49 | * prefix: A macro expansion template prepended to the syslog entry.
|
|---|
| 50 | *
|
|---|
| 51 | * success: A list of VFS operations for which a successful completion should
|
|---|
| 52 | * be logged. Defaults to no logging at all. The special operation "all" logs
|
|---|
| 53 | * - you guessed it - everything.
|
|---|
| 54 | *
|
|---|
| 55 | * failure: A list of VFS operations for which failure to complete should be
|
|---|
| 56 | * logged. Defaults to logging everything.
|
|---|
| 57 | */
|
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 | #include "includes.h"
|
|---|
| 61 | #include "system/filesys.h"
|
|---|
| 62 | #include "system/syslog.h"
|
|---|
| 63 | #include "smbd/smbd.h"
|
|---|
| 64 | #include "../librpc/gen_ndr/ndr_netlogon.h"
|
|---|
| 65 | #include "auth.h"
|
|---|
| 66 | #include "ntioctl.h"
|
|---|
| 67 | #include "lib/param/loadparm.h"
|
|---|
| 68 | #include "lib/util/bitmap.h"
|
|---|
| 69 | #include "lib/util/tevent_unix.h"
|
|---|
| 70 | #include "libcli/security/sddl.h"
|
|---|
| 71 | #include "passdb/machine_sid.h"
|
|---|
| 72 |
|
|---|
| 73 | static int vfs_full_audit_debug_level = DBGC_VFS;
|
|---|
| 74 |
|
|---|
| 75 | struct vfs_full_audit_private_data {
|
|---|
| 76 | struct bitmap *success_ops;
|
|---|
| 77 | struct bitmap *failure_ops;
|
|---|
| 78 | int syslog_facility;
|
|---|
| 79 | int syslog_priority;
|
|---|
| 80 | bool log_secdesc;
|
|---|
| 81 | bool do_syslog;
|
|---|
| 82 | };
|
|---|
| 83 |
|
|---|
| 84 | #undef DBGC_CLASS
|
|---|
| 85 | #define DBGC_CLASS vfs_full_audit_debug_level
|
|---|
| 86 |
|
|---|
| 87 | typedef enum _vfs_op_type {
|
|---|
| 88 | SMB_VFS_OP_NOOP = -1,
|
|---|
| 89 |
|
|---|
| 90 | /* Disk operations */
|
|---|
| 91 |
|
|---|
| 92 | SMB_VFS_OP_CONNECT = 0,
|
|---|
| 93 | SMB_VFS_OP_DISCONNECT,
|
|---|
| 94 | SMB_VFS_OP_DISK_FREE,
|
|---|
| 95 | SMB_VFS_OP_GET_QUOTA,
|
|---|
| 96 | SMB_VFS_OP_SET_QUOTA,
|
|---|
| 97 | SMB_VFS_OP_GET_SHADOW_COPY_DATA,
|
|---|
| 98 | SMB_VFS_OP_STATVFS,
|
|---|
| 99 | SMB_VFS_OP_FS_CAPABILITIES,
|
|---|
| 100 | SMB_VFS_OP_SNAP_CHECK_PATH,
|
|---|
| 101 | SMB_VFS_OP_SNAP_CREATE,
|
|---|
| 102 | SMB_VFS_OP_SNAP_DELETE,
|
|---|
| 103 |
|
|---|
| 104 | /* Directory operations */
|
|---|
| 105 |
|
|---|
| 106 | SMB_VFS_OP_OPENDIR,
|
|---|
| 107 | SMB_VFS_OP_FDOPENDIR,
|
|---|
| 108 | SMB_VFS_OP_READDIR,
|
|---|
| 109 | SMB_VFS_OP_SEEKDIR,
|
|---|
| 110 | SMB_VFS_OP_TELLDIR,
|
|---|
| 111 | SMB_VFS_OP_REWINDDIR,
|
|---|
| 112 | SMB_VFS_OP_MKDIR,
|
|---|
| 113 | SMB_VFS_OP_RMDIR,
|
|---|
| 114 | SMB_VFS_OP_CLOSEDIR,
|
|---|
| 115 | SMB_VFS_OP_INIT_SEARCH_OP,
|
|---|
| 116 |
|
|---|
| 117 | /* File operations */
|
|---|
| 118 |
|
|---|
| 119 | SMB_VFS_OP_OPEN,
|
|---|
| 120 | SMB_VFS_OP_CREATE_FILE,
|
|---|
| 121 | SMB_VFS_OP_CLOSE,
|
|---|
| 122 | SMB_VFS_OP_READ,
|
|---|
| 123 | SMB_VFS_OP_PREAD,
|
|---|
| 124 | SMB_VFS_OP_PREAD_SEND,
|
|---|
| 125 | SMB_VFS_OP_PREAD_RECV,
|
|---|
| 126 | SMB_VFS_OP_WRITE,
|
|---|
| 127 | SMB_VFS_OP_PWRITE,
|
|---|
| 128 | SMB_VFS_OP_PWRITE_SEND,
|
|---|
| 129 | SMB_VFS_OP_PWRITE_RECV,
|
|---|
| 130 | SMB_VFS_OP_LSEEK,
|
|---|
| 131 | SMB_VFS_OP_SENDFILE,
|
|---|
| 132 | SMB_VFS_OP_RECVFILE,
|
|---|
| 133 | SMB_VFS_OP_RENAME,
|
|---|
| 134 | SMB_VFS_OP_FSYNC,
|
|---|
| 135 | SMB_VFS_OP_FSYNC_SEND,
|
|---|
| 136 | SMB_VFS_OP_FSYNC_RECV,
|
|---|
| 137 | SMB_VFS_OP_STAT,
|
|---|
| 138 | SMB_VFS_OP_FSTAT,
|
|---|
| 139 | SMB_VFS_OP_LSTAT,
|
|---|
| 140 | SMB_VFS_OP_GET_ALLOC_SIZE,
|
|---|
| 141 | SMB_VFS_OP_UNLINK,
|
|---|
| 142 | SMB_VFS_OP_CHMOD,
|
|---|
| 143 | SMB_VFS_OP_FCHMOD,
|
|---|
| 144 | SMB_VFS_OP_CHOWN,
|
|---|
| 145 | SMB_VFS_OP_FCHOWN,
|
|---|
| 146 | SMB_VFS_OP_LCHOWN,
|
|---|
| 147 | SMB_VFS_OP_CHDIR,
|
|---|
| 148 | SMB_VFS_OP_GETWD,
|
|---|
| 149 | SMB_VFS_OP_NTIMES,
|
|---|
| 150 | SMB_VFS_OP_FTRUNCATE,
|
|---|
| 151 | SMB_VFS_OP_FALLOCATE,
|
|---|
| 152 | SMB_VFS_OP_LOCK,
|
|---|
| 153 | SMB_VFS_OP_KERNEL_FLOCK,
|
|---|
| 154 | SMB_VFS_OP_LINUX_SETLEASE,
|
|---|
| 155 | SMB_VFS_OP_GETLOCK,
|
|---|
| 156 | SMB_VFS_OP_SYMLINK,
|
|---|
| 157 | SMB_VFS_OP_READLINK,
|
|---|
| 158 | SMB_VFS_OP_LINK,
|
|---|
| 159 | SMB_VFS_OP_MKNOD,
|
|---|
| 160 | SMB_VFS_OP_REALPATH,
|
|---|
| 161 | SMB_VFS_OP_CHFLAGS,
|
|---|
| 162 | SMB_VFS_OP_FILE_ID_CREATE,
|
|---|
| 163 | SMB_VFS_OP_STREAMINFO,
|
|---|
| 164 | SMB_VFS_OP_GET_REAL_FILENAME,
|
|---|
| 165 | SMB_VFS_OP_CONNECTPATH,
|
|---|
| 166 | SMB_VFS_OP_BRL_LOCK_WINDOWS,
|
|---|
| 167 | SMB_VFS_OP_BRL_UNLOCK_WINDOWS,
|
|---|
| 168 | SMB_VFS_OP_BRL_CANCEL_WINDOWS,
|
|---|
| 169 | SMB_VFS_OP_STRICT_LOCK,
|
|---|
| 170 | SMB_VFS_OP_STRICT_UNLOCK,
|
|---|
| 171 | SMB_VFS_OP_TRANSLATE_NAME,
|
|---|
| 172 | SMB_VFS_OP_COPY_CHUNK_SEND,
|
|---|
| 173 | SMB_VFS_OP_COPY_CHUNK_RECV,
|
|---|
| 174 | SMB_VFS_OP_GET_COMPRESSION,
|
|---|
| 175 | SMB_VFS_OP_SET_COMPRESSION,
|
|---|
| 176 | SMB_VFS_OP_READDIR_ATTR,
|
|---|
| 177 |
|
|---|
| 178 | /* NT ACL operations. */
|
|---|
| 179 |
|
|---|
| 180 | SMB_VFS_OP_FGET_NT_ACL,
|
|---|
| 181 | SMB_VFS_OP_GET_NT_ACL,
|
|---|
| 182 | SMB_VFS_OP_FSET_NT_ACL,
|
|---|
| 183 |
|
|---|
| 184 | /* POSIX ACL operations. */
|
|---|
| 185 |
|
|---|
| 186 | SMB_VFS_OP_CHMOD_ACL,
|
|---|
| 187 | SMB_VFS_OP_FCHMOD_ACL,
|
|---|
| 188 |
|
|---|
| 189 | SMB_VFS_OP_SYS_ACL_GET_FILE,
|
|---|
| 190 | SMB_VFS_OP_SYS_ACL_GET_FD,
|
|---|
| 191 | SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE,
|
|---|
| 192 | SMB_VFS_OP_SYS_ACL_BLOB_GET_FD,
|
|---|
| 193 | SMB_VFS_OP_SYS_ACL_SET_FILE,
|
|---|
| 194 | SMB_VFS_OP_SYS_ACL_SET_FD,
|
|---|
| 195 | SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
|
|---|
| 196 |
|
|---|
| 197 | /* EA operations. */
|
|---|
| 198 | SMB_VFS_OP_GETXATTR,
|
|---|
| 199 | SMB_VFS_OP_FGETXATTR,
|
|---|
| 200 | SMB_VFS_OP_LISTXATTR,
|
|---|
| 201 | SMB_VFS_OP_FLISTXATTR,
|
|---|
| 202 | SMB_VFS_OP_REMOVEXATTR,
|
|---|
| 203 | SMB_VFS_OP_FREMOVEXATTR,
|
|---|
| 204 | SMB_VFS_OP_SETXATTR,
|
|---|
| 205 | SMB_VFS_OP_FSETXATTR,
|
|---|
| 206 |
|
|---|
| 207 | /* aio operations */
|
|---|
| 208 | SMB_VFS_OP_AIO_FORCE,
|
|---|
| 209 |
|
|---|
| 210 | /* offline operations */
|
|---|
| 211 | SMB_VFS_OP_IS_OFFLINE,
|
|---|
| 212 | SMB_VFS_OP_SET_OFFLINE,
|
|---|
| 213 |
|
|---|
| 214 | /* This should always be last enum value */
|
|---|
| 215 |
|
|---|
| 216 | SMB_VFS_OP_LAST
|
|---|
| 217 | } vfs_op_type;
|
|---|
| 218 |
|
|---|
| 219 | /* The following array *must* be in the same order as defined in vfs_op_type */
|
|---|
| 220 |
|
|---|
| 221 | static struct {
|
|---|
| 222 | vfs_op_type type;
|
|---|
| 223 | const char *name;
|
|---|
| 224 | } vfs_op_names[] = {
|
|---|
| 225 | { SMB_VFS_OP_CONNECT, "connect" },
|
|---|
| 226 | { SMB_VFS_OP_DISCONNECT, "disconnect" },
|
|---|
| 227 | { SMB_VFS_OP_DISK_FREE, "disk_free" },
|
|---|
| 228 | { SMB_VFS_OP_GET_QUOTA, "get_quota" },
|
|---|
| 229 | { SMB_VFS_OP_SET_QUOTA, "set_quota" },
|
|---|
| 230 | { SMB_VFS_OP_GET_SHADOW_COPY_DATA, "get_shadow_copy_data" },
|
|---|
| 231 | { SMB_VFS_OP_STATVFS, "statvfs" },
|
|---|
| 232 | { SMB_VFS_OP_FS_CAPABILITIES, "fs_capabilities" },
|
|---|
| 233 | { SMB_VFS_OP_SNAP_CHECK_PATH, "snap_check_path" },
|
|---|
| 234 | { SMB_VFS_OP_SNAP_CREATE, "snap_create" },
|
|---|
| 235 | { SMB_VFS_OP_SNAP_DELETE, "snap_delete" },
|
|---|
| 236 | { SMB_VFS_OP_OPENDIR, "opendir" },
|
|---|
| 237 | { SMB_VFS_OP_FDOPENDIR, "fdopendir" },
|
|---|
| 238 | { SMB_VFS_OP_READDIR, "readdir" },
|
|---|
| 239 | { SMB_VFS_OP_SEEKDIR, "seekdir" },
|
|---|
| 240 | { SMB_VFS_OP_TELLDIR, "telldir" },
|
|---|
| 241 | { SMB_VFS_OP_REWINDDIR, "rewinddir" },
|
|---|
| 242 | { SMB_VFS_OP_MKDIR, "mkdir" },
|
|---|
| 243 | { SMB_VFS_OP_RMDIR, "rmdir" },
|
|---|
| 244 | { SMB_VFS_OP_CLOSEDIR, "closedir" },
|
|---|
| 245 | { SMB_VFS_OP_INIT_SEARCH_OP, "init_search_op" },
|
|---|
| 246 | { SMB_VFS_OP_OPEN, "open" },
|
|---|
| 247 | { SMB_VFS_OP_CREATE_FILE, "create_file" },
|
|---|
| 248 | { SMB_VFS_OP_CLOSE, "close" },
|
|---|
| 249 | { SMB_VFS_OP_READ, "read" },
|
|---|
| 250 | { SMB_VFS_OP_PREAD, "pread" },
|
|---|
| 251 | { SMB_VFS_OP_PREAD_SEND, "pread_send" },
|
|---|
| 252 | { SMB_VFS_OP_PREAD_RECV, "pread_recv" },
|
|---|
| 253 | { SMB_VFS_OP_WRITE, "write" },
|
|---|
| 254 | { SMB_VFS_OP_PWRITE, "pwrite" },
|
|---|
| 255 | { SMB_VFS_OP_PWRITE_SEND, "pwrite_send" },
|
|---|
| 256 | { SMB_VFS_OP_PWRITE_RECV, "pwrite_recv" },
|
|---|
| 257 | { SMB_VFS_OP_LSEEK, "lseek" },
|
|---|
| 258 | { SMB_VFS_OP_SENDFILE, "sendfile" },
|
|---|
| 259 | { SMB_VFS_OP_RECVFILE, "recvfile" },
|
|---|
| 260 | { SMB_VFS_OP_RENAME, "rename" },
|
|---|
| 261 | { SMB_VFS_OP_FSYNC, "fsync" },
|
|---|
| 262 | { SMB_VFS_OP_FSYNC_SEND, "fsync_send" },
|
|---|
| 263 | { SMB_VFS_OP_FSYNC_RECV, "fsync_recv" },
|
|---|
| 264 | { SMB_VFS_OP_STAT, "stat" },
|
|---|
| 265 | { SMB_VFS_OP_FSTAT, "fstat" },
|
|---|
| 266 | { SMB_VFS_OP_LSTAT, "lstat" },
|
|---|
| 267 | { SMB_VFS_OP_GET_ALLOC_SIZE, "get_alloc_size" },
|
|---|
| 268 | { SMB_VFS_OP_UNLINK, "unlink" },
|
|---|
| 269 | { SMB_VFS_OP_CHMOD, "chmod" },
|
|---|
| 270 | { SMB_VFS_OP_FCHMOD, "fchmod" },
|
|---|
| 271 | { SMB_VFS_OP_CHOWN, "chown" },
|
|---|
| 272 | { SMB_VFS_OP_FCHOWN, "fchown" },
|
|---|
| 273 | { SMB_VFS_OP_LCHOWN, "lchown" },
|
|---|
| 274 | { SMB_VFS_OP_CHDIR, "chdir" },
|
|---|
| 275 | { SMB_VFS_OP_GETWD, "getwd" },
|
|---|
| 276 | { SMB_VFS_OP_NTIMES, "ntimes" },
|
|---|
| 277 | { SMB_VFS_OP_FTRUNCATE, "ftruncate" },
|
|---|
| 278 | { SMB_VFS_OP_FALLOCATE,"fallocate" },
|
|---|
| 279 | { SMB_VFS_OP_LOCK, "lock" },
|
|---|
| 280 | { SMB_VFS_OP_KERNEL_FLOCK, "kernel_flock" },
|
|---|
| 281 | { SMB_VFS_OP_LINUX_SETLEASE, "linux_setlease" },
|
|---|
| 282 | { SMB_VFS_OP_GETLOCK, "getlock" },
|
|---|
| 283 | { SMB_VFS_OP_SYMLINK, "symlink" },
|
|---|
| 284 | { SMB_VFS_OP_READLINK, "readlink" },
|
|---|
| 285 | { SMB_VFS_OP_LINK, "link" },
|
|---|
| 286 | { SMB_VFS_OP_MKNOD, "mknod" },
|
|---|
| 287 | { SMB_VFS_OP_REALPATH, "realpath" },
|
|---|
| 288 | { SMB_VFS_OP_CHFLAGS, "chflags" },
|
|---|
| 289 | { SMB_VFS_OP_FILE_ID_CREATE, "file_id_create" },
|
|---|
| 290 | { SMB_VFS_OP_STREAMINFO, "streaminfo" },
|
|---|
| 291 | { SMB_VFS_OP_GET_REAL_FILENAME, "get_real_filename" },
|
|---|
| 292 | { SMB_VFS_OP_CONNECTPATH, "connectpath" },
|
|---|
| 293 | { SMB_VFS_OP_BRL_LOCK_WINDOWS, "brl_lock_windows" },
|
|---|
| 294 | { SMB_VFS_OP_BRL_UNLOCK_WINDOWS, "brl_unlock_windows" },
|
|---|
| 295 | { SMB_VFS_OP_BRL_CANCEL_WINDOWS, "brl_cancel_windows" },
|
|---|
| 296 | { SMB_VFS_OP_STRICT_LOCK, "strict_lock" },
|
|---|
| 297 | { SMB_VFS_OP_STRICT_UNLOCK, "strict_unlock" },
|
|---|
| 298 | { SMB_VFS_OP_TRANSLATE_NAME, "translate_name" },
|
|---|
| 299 | { SMB_VFS_OP_COPY_CHUNK_SEND, "copy_chunk_send" },
|
|---|
| 300 | { SMB_VFS_OP_COPY_CHUNK_RECV, "copy_chunk_recv" },
|
|---|
| 301 | { SMB_VFS_OP_GET_COMPRESSION, "get_compression" },
|
|---|
| 302 | { SMB_VFS_OP_SET_COMPRESSION, "set_compression" },
|
|---|
| 303 | { SMB_VFS_OP_READDIR_ATTR, "readdir_attr" },
|
|---|
| 304 | { SMB_VFS_OP_FGET_NT_ACL, "fget_nt_acl" },
|
|---|
| 305 | { SMB_VFS_OP_GET_NT_ACL, "get_nt_acl" },
|
|---|
| 306 | { SMB_VFS_OP_FSET_NT_ACL, "fset_nt_acl" },
|
|---|
| 307 | { SMB_VFS_OP_CHMOD_ACL, "chmod_acl" },
|
|---|
| 308 | { SMB_VFS_OP_FCHMOD_ACL, "fchmod_acl" },
|
|---|
| 309 | { SMB_VFS_OP_SYS_ACL_GET_FILE, "sys_acl_get_file" },
|
|---|
| 310 | { SMB_VFS_OP_SYS_ACL_GET_FD, "sys_acl_get_fd" },
|
|---|
| 311 | { SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE, "sys_acl_blob_get_file" },
|
|---|
| 312 | { SMB_VFS_OP_SYS_ACL_BLOB_GET_FD, "sys_acl_blob_get_fd" },
|
|---|
| 313 | { SMB_VFS_OP_SYS_ACL_SET_FILE, "sys_acl_set_file" },
|
|---|
| 314 | { SMB_VFS_OP_SYS_ACL_SET_FD, "sys_acl_set_fd" },
|
|---|
| 315 | { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, "sys_acl_delete_def_file" },
|
|---|
| 316 | { SMB_VFS_OP_GETXATTR, "getxattr" },
|
|---|
| 317 | { SMB_VFS_OP_FGETXATTR, "fgetxattr" },
|
|---|
| 318 | { SMB_VFS_OP_LISTXATTR, "listxattr" },
|
|---|
| 319 | { SMB_VFS_OP_FLISTXATTR, "flistxattr" },
|
|---|
| 320 | { SMB_VFS_OP_REMOVEXATTR, "removexattr" },
|
|---|
| 321 | { SMB_VFS_OP_FREMOVEXATTR, "fremovexattr" },
|
|---|
| 322 | { SMB_VFS_OP_SETXATTR, "setxattr" },
|
|---|
| 323 | { SMB_VFS_OP_FSETXATTR, "fsetxattr" },
|
|---|
| 324 | { SMB_VFS_OP_AIO_FORCE, "aio_force" },
|
|---|
| 325 | { SMB_VFS_OP_IS_OFFLINE, "is_offline" },
|
|---|
| 326 | { SMB_VFS_OP_SET_OFFLINE, "set_offline" },
|
|---|
| 327 | { SMB_VFS_OP_LAST, NULL }
|
|---|
| 328 | };
|
|---|
| 329 |
|
|---|
| 330 | static int audit_syslog_facility(vfs_handle_struct *handle)
|
|---|
| 331 | {
|
|---|
| 332 | static const struct enum_list enum_log_facilities[] = {
|
|---|
| 333 | { LOG_USER, "USER" },
|
|---|
| 334 | { LOG_LOCAL0, "LOCAL0" },
|
|---|
| 335 | { LOG_LOCAL1, "LOCAL1" },
|
|---|
| 336 | { LOG_LOCAL2, "LOCAL2" },
|
|---|
| 337 | { LOG_LOCAL3, "LOCAL3" },
|
|---|
| 338 | { LOG_LOCAL4, "LOCAL4" },
|
|---|
| 339 | { LOG_LOCAL5, "LOCAL5" },
|
|---|
| 340 | { LOG_LOCAL6, "LOCAL6" },
|
|---|
| 341 | { LOG_LOCAL7, "LOCAL7" },
|
|---|
| 342 | { -1, NULL}
|
|---|
| 343 | };
|
|---|
| 344 |
|
|---|
| 345 | int facility;
|
|---|
| 346 |
|
|---|
| 347 | facility = lp_parm_enum(SNUM(handle->conn), "full_audit", "facility", enum_log_facilities, LOG_USER);
|
|---|
| 348 |
|
|---|
| 349 | return facility;
|
|---|
| 350 | }
|
|---|
| 351 |
|
|---|
| 352 | static int audit_syslog_priority(vfs_handle_struct *handle)
|
|---|
| 353 | {
|
|---|
| 354 | static const struct enum_list enum_log_priorities[] = {
|
|---|
| 355 | { LOG_EMERG, "EMERG" },
|
|---|
| 356 | { LOG_ALERT, "ALERT" },
|
|---|
| 357 | { LOG_CRIT, "CRIT" },
|
|---|
| 358 | { LOG_ERR, "ERR" },
|
|---|
| 359 | { LOG_WARNING, "WARNING" },
|
|---|
| 360 | { LOG_NOTICE, "NOTICE" },
|
|---|
| 361 | { LOG_INFO, "INFO" },
|
|---|
| 362 | { LOG_DEBUG, "DEBUG" },
|
|---|
| 363 | { -1, NULL}
|
|---|
| 364 | };
|
|---|
| 365 |
|
|---|
| 366 | int priority;
|
|---|
| 367 |
|
|---|
| 368 | priority = lp_parm_enum(SNUM(handle->conn), "full_audit", "priority",
|
|---|
| 369 | enum_log_priorities, LOG_NOTICE);
|
|---|
| 370 | if (priority == -1) {
|
|---|
| 371 | priority = LOG_WARNING;
|
|---|
| 372 | }
|
|---|
| 373 |
|
|---|
| 374 | return priority;
|
|---|
| 375 | }
|
|---|
| 376 |
|
|---|
| 377 | static char *audit_prefix(TALLOC_CTX *ctx, connection_struct *conn)
|
|---|
| 378 | {
|
|---|
| 379 | char *prefix = NULL;
|
|---|
| 380 | char *result;
|
|---|
| 381 |
|
|---|
| 382 | prefix = talloc_strdup(ctx,
|
|---|
| 383 | lp_parm_const_string(SNUM(conn), "full_audit",
|
|---|
| 384 | "prefix", "%u|%I"));
|
|---|
| 385 | if (!prefix) {
|
|---|
| 386 | return NULL;
|
|---|
| 387 | }
|
|---|
| 388 | result = talloc_sub_advanced(ctx,
|
|---|
| 389 | lp_servicename(talloc_tos(), SNUM(conn)),
|
|---|
| 390 | conn->session_info->unix_info->unix_name,
|
|---|
| 391 | conn->connectpath,
|
|---|
| 392 | conn->session_info->unix_token->gid,
|
|---|
| 393 | conn->session_info->unix_info->sanitized_username,
|
|---|
| 394 | conn->session_info->info->domain_name,
|
|---|
| 395 | prefix);
|
|---|
| 396 | TALLOC_FREE(prefix);
|
|---|
| 397 | return result;
|
|---|
| 398 | }
|
|---|
| 399 |
|
|---|
| 400 | static bool log_success(struct vfs_full_audit_private_data *pd, vfs_op_type op)
|
|---|
| 401 | {
|
|---|
| 402 | if (pd->success_ops == NULL) {
|
|---|
| 403 | return True;
|
|---|
| 404 | }
|
|---|
| 405 |
|
|---|
| 406 | return bitmap_query(pd->success_ops, op);
|
|---|
| 407 | }
|
|---|
| 408 |
|
|---|
| 409 | static bool log_failure(struct vfs_full_audit_private_data *pd, vfs_op_type op)
|
|---|
| 410 | {
|
|---|
| 411 | if (pd->failure_ops == NULL)
|
|---|
| 412 | return True;
|
|---|
| 413 |
|
|---|
| 414 | return bitmap_query(pd->failure_ops, op);
|
|---|
| 415 | }
|
|---|
| 416 |
|
|---|
| 417 | static struct bitmap *init_bitmap(TALLOC_CTX *mem_ctx, const char **ops)
|
|---|
| 418 | {
|
|---|
| 419 | struct bitmap *bm;
|
|---|
| 420 |
|
|---|
| 421 | if (ops == NULL) {
|
|---|
| 422 | return NULL;
|
|---|
| 423 | }
|
|---|
| 424 |
|
|---|
| 425 | bm = bitmap_talloc(mem_ctx, SMB_VFS_OP_LAST);
|
|---|
| 426 | if (bm == NULL) {
|
|---|
| 427 | DEBUG(0, ("Could not alloc bitmap -- "
|
|---|
| 428 | "defaulting to logging everything\n"));
|
|---|
| 429 | return NULL;
|
|---|
| 430 | }
|
|---|
| 431 |
|
|---|
| 432 | for (; *ops != NULL; ops += 1) {
|
|---|
| 433 | int i;
|
|---|
| 434 | bool neg = false;
|
|---|
| 435 | const char *op;
|
|---|
| 436 |
|
|---|
| 437 | if (strequal(*ops, "all")) {
|
|---|
| 438 | for (i=0; i<SMB_VFS_OP_LAST; i++) {
|
|---|
| 439 | bitmap_set(bm, i);
|
|---|
| 440 | }
|
|---|
| 441 | continue;
|
|---|
| 442 | }
|
|---|
| 443 |
|
|---|
| 444 | if (strequal(*ops, "none")) {
|
|---|
| 445 | break;
|
|---|
| 446 | }
|
|---|
| 447 |
|
|---|
| 448 | op = ops[0];
|
|---|
| 449 | if (op[0] == '!') {
|
|---|
| 450 | neg = true;
|
|---|
| 451 | op += 1;
|
|---|
| 452 | }
|
|---|
| 453 |
|
|---|
| 454 | for (i=0; i<SMB_VFS_OP_LAST; i++) {
|
|---|
| 455 | if ((vfs_op_names[i].name == NULL)
|
|---|
| 456 | || (vfs_op_names[i].type != i)) {
|
|---|
| 457 | smb_panic("vfs_full_audit.c: name table not "
|
|---|
| 458 | "in sync with vfs_op_type enums\n");
|
|---|
| 459 | }
|
|---|
| 460 | if (strequal(op, vfs_op_names[i].name)) {
|
|---|
| 461 | if (neg) {
|
|---|
| 462 | bitmap_clear(bm, i);
|
|---|
| 463 | } else {
|
|---|
| 464 | bitmap_set(bm, i);
|
|---|
| 465 | }
|
|---|
| 466 | break;
|
|---|
| 467 | }
|
|---|
| 468 | }
|
|---|
| 469 | if (i == SMB_VFS_OP_LAST) {
|
|---|
| 470 | DEBUG(0, ("Could not find opname %s, logging all\n",
|
|---|
| 471 | *ops));
|
|---|
| 472 | TALLOC_FREE(bm);
|
|---|
| 473 | return NULL;
|
|---|
| 474 | }
|
|---|
| 475 | }
|
|---|
| 476 | return bm;
|
|---|
| 477 | }
|
|---|
| 478 |
|
|---|
| 479 | static const char *audit_opname(vfs_op_type op)
|
|---|
| 480 | {
|
|---|
| 481 | if (op >= SMB_VFS_OP_LAST)
|
|---|
| 482 | return "INVALID VFS OP";
|
|---|
| 483 | return vfs_op_names[op].name;
|
|---|
| 484 | }
|
|---|
| 485 |
|
|---|
| 486 | static TALLOC_CTX *tmp_do_log_ctx;
|
|---|
| 487 | /*
|
|---|
| 488 | * Get us a temporary talloc context usable just for DEBUG arguments
|
|---|
| 489 | */
|
|---|
| 490 | static TALLOC_CTX *do_log_ctx(void)
|
|---|
| 491 | {
|
|---|
| 492 | if (tmp_do_log_ctx == NULL) {
|
|---|
| 493 | tmp_do_log_ctx = talloc_named_const(NULL, 0, "do_log_ctx");
|
|---|
| 494 | }
|
|---|
| 495 | return tmp_do_log_ctx;
|
|---|
| 496 | }
|
|---|
| 497 |
|
|---|
| 498 | static void do_log(vfs_op_type op, bool success, vfs_handle_struct *handle,
|
|---|
| 499 | const char *format, ...)
|
|---|
| 500 | {
|
|---|
| 501 | struct vfs_full_audit_private_data *pd;
|
|---|
| 502 | fstring err_msg;
|
|---|
| 503 | char *audit_pre = NULL;
|
|---|
| 504 | va_list ap;
|
|---|
| 505 | char *op_msg = NULL;
|
|---|
| 506 |
|
|---|
| 507 | SMB_VFS_HANDLE_GET_DATA(handle, pd,
|
|---|
| 508 | struct vfs_full_audit_private_data,
|
|---|
| 509 | return;);
|
|---|
| 510 |
|
|---|
| 511 | if (success && (!log_success(pd, op)))
|
|---|
| 512 | goto out;
|
|---|
| 513 |
|
|---|
| 514 | if (!success && (!log_failure(pd, op)))
|
|---|
| 515 | goto out;
|
|---|
| 516 |
|
|---|
| 517 | if (success)
|
|---|
| 518 | fstrcpy(err_msg, "ok");
|
|---|
| 519 | else
|
|---|
| 520 | fstr_sprintf(err_msg, "fail (%s)", strerror(errno));
|
|---|
| 521 |
|
|---|
| 522 | va_start(ap, format);
|
|---|
| 523 | op_msg = talloc_vasprintf(talloc_tos(), format, ap);
|
|---|
| 524 | va_end(ap);
|
|---|
| 525 |
|
|---|
| 526 | if (!op_msg) {
|
|---|
| 527 | goto out;
|
|---|
| 528 | }
|
|---|
| 529 |
|
|---|
| 530 | audit_pre = audit_prefix(talloc_tos(), handle->conn);
|
|---|
| 531 |
|
|---|
| 532 | if (pd->do_syslog) {
|
|---|
| 533 | int priority;
|
|---|
| 534 |
|
|---|
| 535 | /*
|
|---|
| 536 | * Specify the facility to interoperate with other syslog
|
|---|
| 537 | * callers (smbd for example).
|
|---|
| 538 | */
|
|---|
| 539 | priority = pd->syslog_priority | pd->syslog_facility;
|
|---|
| 540 |
|
|---|
| 541 | syslog(priority, "%s|%s|%s|%s\n",
|
|---|
| 542 | audit_pre ? audit_pre : "",
|
|---|
| 543 | audit_opname(op), err_msg, op_msg);
|
|---|
| 544 | } else {
|
|---|
| 545 | DEBUG(1, ("%s|%s|%s|%s\n",
|
|---|
| 546 | audit_pre ? audit_pre : "",
|
|---|
| 547 | audit_opname(op), err_msg, op_msg));
|
|---|
| 548 | }
|
|---|
| 549 | out:
|
|---|
| 550 | TALLOC_FREE(audit_pre);
|
|---|
| 551 | TALLOC_FREE(op_msg);
|
|---|
| 552 | TALLOC_FREE(tmp_do_log_ctx);
|
|---|
| 553 | }
|
|---|
| 554 |
|
|---|
| 555 | /**
|
|---|
| 556 | * Return a string using the do_log_ctx()
|
|---|
| 557 | */
|
|---|
| 558 | static const char *smb_fname_str_do_log(const struct smb_filename *smb_fname)
|
|---|
| 559 | {
|
|---|
| 560 | char *fname = NULL;
|
|---|
| 561 | NTSTATUS status;
|
|---|
| 562 |
|
|---|
| 563 | if (smb_fname == NULL) {
|
|---|
| 564 | return "";
|
|---|
| 565 | }
|
|---|
| 566 | status = get_full_smb_filename(do_log_ctx(), smb_fname, &fname);
|
|---|
| 567 | if (!NT_STATUS_IS_OK(status)) {
|
|---|
| 568 | return "";
|
|---|
| 569 | }
|
|---|
| 570 | return fname;
|
|---|
| 571 | }
|
|---|
| 572 |
|
|---|
| 573 | /**
|
|---|
| 574 | * Return an fsp debug string using the do_log_ctx()
|
|---|
| 575 | */
|
|---|
| 576 | static const char *fsp_str_do_log(const struct files_struct *fsp)
|
|---|
| 577 | {
|
|---|
| 578 | return smb_fname_str_do_log(fsp->fsp_name);
|
|---|
| 579 | }
|
|---|
| 580 |
|
|---|
| 581 | /* Implementation of vfs_ops. Pass everything on to the default
|
|---|
| 582 | operation but log event first. */
|
|---|
| 583 |
|
|---|
| 584 | static int smb_full_audit_connect(vfs_handle_struct *handle,
|
|---|
| 585 | const char *svc, const char *user)
|
|---|
| 586 | {
|
|---|
| 587 | int result;
|
|---|
| 588 | struct vfs_full_audit_private_data *pd = NULL;
|
|---|
| 589 |
|
|---|
| 590 | result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
|
|---|
| 591 | if (result < 0) {
|
|---|
| 592 | return result;
|
|---|
| 593 | }
|
|---|
| 594 |
|
|---|
| 595 | pd = talloc_zero(handle, struct vfs_full_audit_private_data);
|
|---|
| 596 | if (!pd) {
|
|---|
| 597 | SMB_VFS_NEXT_DISCONNECT(handle);
|
|---|
| 598 | return -1;
|
|---|
| 599 | }
|
|---|
| 600 |
|
|---|
| 601 | pd->syslog_facility = audit_syslog_facility(handle);
|
|---|
| 602 | if (pd->syslog_facility == -1) {
|
|---|
| 603 | DEBUG(1, ("%s: Unknown facility %s\n", __func__,
|
|---|
| 604 | lp_parm_const_string(SNUM(handle->conn),
|
|---|
| 605 | "full_audit", "facility",
|
|---|
| 606 | "USER")));
|
|---|
| 607 | SMB_VFS_NEXT_DISCONNECT(handle);
|
|---|
| 608 | return -1;
|
|---|
| 609 | }
|
|---|
| 610 |
|
|---|
| 611 | pd->syslog_priority = audit_syslog_priority(handle);
|
|---|
| 612 |
|
|---|
| 613 | pd->log_secdesc = lp_parm_bool(SNUM(handle->conn),
|
|---|
| 614 | "full_audit", "log_secdesc", false);
|
|---|
| 615 |
|
|---|
| 616 | pd->do_syslog = lp_parm_bool(SNUM(handle->conn),
|
|---|
| 617 | "full_audit", "syslog", true);
|
|---|
| 618 |
|
|---|
| 619 | #ifdef WITH_SYSLOG
|
|---|
| 620 | if (pd->do_syslog) {
|
|---|
| 621 | openlog("smbd_audit", 0, pd->syslog_facility);
|
|---|
| 622 | }
|
|---|
| 623 | #endif
|
|---|
| 624 |
|
|---|
| 625 | pd->success_ops = init_bitmap(
|
|---|
| 626 | pd, lp_parm_string_list(SNUM(handle->conn), "full_audit",
|
|---|
| 627 | "success", NULL));
|
|---|
| 628 | pd->failure_ops = init_bitmap(
|
|---|
| 629 | pd, lp_parm_string_list(SNUM(handle->conn), "full_audit",
|
|---|
| 630 | "failure", NULL));
|
|---|
| 631 |
|
|---|
| 632 | /* Store the private data. */
|
|---|
| 633 | SMB_VFS_HANDLE_SET_DATA(handle, pd, NULL,
|
|---|
| 634 | struct vfs_full_audit_private_data, return -1);
|
|---|
| 635 |
|
|---|
| 636 | do_log(SMB_VFS_OP_CONNECT, True, handle,
|
|---|
| 637 | "%s", svc);
|
|---|
| 638 |
|
|---|
| 639 | return 0;
|
|---|
| 640 | }
|
|---|
| 641 |
|
|---|
| 642 | static void smb_full_audit_disconnect(vfs_handle_struct *handle)
|
|---|
| 643 | {
|
|---|
| 644 | SMB_VFS_NEXT_DISCONNECT(handle);
|
|---|
| 645 |
|
|---|
| 646 | do_log(SMB_VFS_OP_DISCONNECT, True, handle,
|
|---|
| 647 | "%s", lp_servicename(talloc_tos(), SNUM(handle->conn)));
|
|---|
| 648 |
|
|---|
| 649 | /* The bitmaps will be disconnected when the private
|
|---|
| 650 | data is deleted. */
|
|---|
| 651 | }
|
|---|
| 652 |
|
|---|
| 653 | static uint64_t smb_full_audit_disk_free(vfs_handle_struct *handle,
|
|---|
| 654 | const char *path, uint64_t *bsize,
|
|---|
| 655 | uint64_t *dfree, uint64_t *dsize)
|
|---|
| 656 | {
|
|---|
| 657 | uint64_t result;
|
|---|
| 658 |
|
|---|
| 659 | result = SMB_VFS_NEXT_DISK_FREE(handle, path, bsize, dfree, dsize);
|
|---|
| 660 |
|
|---|
| 661 | /* Don't have a reasonable notion of failure here */
|
|---|
| 662 |
|
|---|
| 663 | do_log(SMB_VFS_OP_DISK_FREE, True, handle, "%s", path);
|
|---|
| 664 |
|
|---|
| 665 | return result;
|
|---|
| 666 | }
|
|---|
| 667 |
|
|---|
| 668 | static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
|
|---|
| 669 | const char *path, enum SMB_QUOTA_TYPE qtype,
|
|---|
| 670 | unid_t id, SMB_DISK_QUOTA *qt)
|
|---|
| 671 | {
|
|---|
| 672 | int result;
|
|---|
| 673 |
|
|---|
| 674 | result = SMB_VFS_NEXT_GET_QUOTA(handle, path, qtype, id, qt);
|
|---|
| 675 |
|
|---|
| 676 | do_log(SMB_VFS_OP_GET_QUOTA, (result >= 0), handle, "%s", path);
|
|---|
| 677 |
|
|---|
| 678 | return result;
|
|---|
| 679 | }
|
|---|
| 680 |
|
|---|
| 681 | static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
|
|---|
| 682 | enum SMB_QUOTA_TYPE qtype, unid_t id,
|
|---|
| 683 | SMB_DISK_QUOTA *qt)
|
|---|
| 684 | {
|
|---|
| 685 | int result;
|
|---|
| 686 |
|
|---|
| 687 | result = SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, qt);
|
|---|
| 688 |
|
|---|
| 689 | do_log(SMB_VFS_OP_SET_QUOTA, (result >= 0), handle, "");
|
|---|
| 690 |
|
|---|
| 691 | return result;
|
|---|
| 692 | }
|
|---|
| 693 |
|
|---|
| 694 | static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
|
|---|
| 695 | struct files_struct *fsp,
|
|---|
| 696 | struct shadow_copy_data *shadow_copy_data,
|
|---|
| 697 | bool labels)
|
|---|
| 698 | {
|
|---|
| 699 | int result;
|
|---|
| 700 |
|
|---|
| 701 | result = SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle, fsp, shadow_copy_data, labels);
|
|---|
| 702 |
|
|---|
| 703 | do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA, (result >= 0), handle, "");
|
|---|
| 704 |
|
|---|
| 705 | return result;
|
|---|
| 706 | }
|
|---|
| 707 |
|
|---|
| 708 | static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
|
|---|
| 709 | const char *path,
|
|---|
| 710 | struct vfs_statvfs_struct *statbuf)
|
|---|
| 711 | {
|
|---|
| 712 | int result;
|
|---|
| 713 |
|
|---|
| 714 | result = SMB_VFS_NEXT_STATVFS(handle, path, statbuf);
|
|---|
| 715 |
|
|---|
| 716 | do_log(SMB_VFS_OP_STATVFS, (result >= 0), handle, "");
|
|---|
| 717 |
|
|---|
| 718 | return result;
|
|---|
| 719 | }
|
|---|
| 720 |
|
|---|
| 721 | static uint32_t smb_full_audit_fs_capabilities(struct vfs_handle_struct *handle, enum timestamp_set_resolution *p_ts_res)
|
|---|
| 722 | {
|
|---|
| 723 | int result;
|
|---|
| 724 |
|
|---|
| 725 | result = SMB_VFS_NEXT_FS_CAPABILITIES(handle, p_ts_res);
|
|---|
| 726 |
|
|---|
| 727 | do_log(SMB_VFS_OP_FS_CAPABILITIES, true, handle, "");
|
|---|
| 728 |
|
|---|
| 729 | return result;
|
|---|
| 730 | }
|
|---|
| 731 |
|
|---|
| 732 | static NTSTATUS smb_full_audit_snap_check_path(struct vfs_handle_struct *handle,
|
|---|
| 733 | TALLOC_CTX *mem_ctx,
|
|---|
| 734 | const char *service_path,
|
|---|
| 735 | char **base_volume)
|
|---|
| 736 | {
|
|---|
| 737 | NTSTATUS status;
|
|---|
| 738 |
|
|---|
| 739 | status = SMB_VFS_NEXT_SNAP_CHECK_PATH(handle, mem_ctx, service_path,
|
|---|
| 740 | base_volume);
|
|---|
| 741 | do_log(SMB_VFS_OP_SNAP_CHECK_PATH, NT_STATUS_IS_OK(status),
|
|---|
| 742 | handle, "");
|
|---|
| 743 |
|
|---|
| 744 | return status;
|
|---|
| 745 | }
|
|---|
| 746 |
|
|---|
| 747 | static NTSTATUS smb_full_audit_snap_create(struct vfs_handle_struct *handle,
|
|---|
| 748 | TALLOC_CTX *mem_ctx,
|
|---|
| 749 | const char *base_volume,
|
|---|
| 750 | time_t *tstamp,
|
|---|
| 751 | bool rw,
|
|---|
| 752 | char **base_path,
|
|---|
| 753 | char **snap_path)
|
|---|
| 754 | {
|
|---|
| 755 | NTSTATUS status;
|
|---|
| 756 |
|
|---|
| 757 | status = SMB_VFS_NEXT_SNAP_CREATE(handle, mem_ctx, base_volume, tstamp,
|
|---|
| 758 | rw, base_path, snap_path);
|
|---|
| 759 | do_log(SMB_VFS_OP_SNAP_CREATE, NT_STATUS_IS_OK(status), handle, "");
|
|---|
| 760 |
|
|---|
| 761 | return status;
|
|---|
| 762 | }
|
|---|
| 763 |
|
|---|
| 764 | static NTSTATUS smb_full_audit_snap_delete(struct vfs_handle_struct *handle,
|
|---|
| 765 | TALLOC_CTX *mem_ctx,
|
|---|
| 766 | char *base_path,
|
|---|
| 767 | char *snap_path)
|
|---|
| 768 | {
|
|---|
| 769 | NTSTATUS status;
|
|---|
| 770 |
|
|---|
| 771 | status = SMB_VFS_NEXT_SNAP_DELETE(handle, mem_ctx, base_path,
|
|---|
| 772 | snap_path);
|
|---|
| 773 | do_log(SMB_VFS_OP_SNAP_DELETE, NT_STATUS_IS_OK(status), handle, "");
|
|---|
| 774 |
|
|---|
| 775 | return status;
|
|---|
| 776 | }
|
|---|
| 777 |
|
|---|
| 778 | static DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
|
|---|
| 779 | const char *fname, const char *mask, uint32_t attr)
|
|---|
| 780 | {
|
|---|
| 781 | DIR *result;
|
|---|
| 782 |
|
|---|
| 783 | result = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
|
|---|
| 784 |
|
|---|
| 785 | do_log(SMB_VFS_OP_OPENDIR, (result != NULL), handle, "%s", fname);
|
|---|
| 786 |
|
|---|
| 787 | return result;
|
|---|
| 788 | }
|
|---|
| 789 |
|
|---|
| 790 | static DIR *smb_full_audit_fdopendir(vfs_handle_struct *handle,
|
|---|
| 791 | files_struct *fsp, const char *mask, uint32_t attr)
|
|---|
| 792 | {
|
|---|
| 793 | DIR *result;
|
|---|
| 794 |
|
|---|
| 795 | result = SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask, attr);
|
|---|
| 796 |
|
|---|
| 797 | do_log(SMB_VFS_OP_FDOPENDIR, (result != NULL), handle, "%s",
|
|---|
| 798 | fsp_str_do_log(fsp));
|
|---|
| 799 |
|
|---|
| 800 | return result;
|
|---|
| 801 | }
|
|---|
| 802 |
|
|---|
| 803 | static struct dirent *smb_full_audit_readdir(vfs_handle_struct *handle,
|
|---|
| 804 | DIR *dirp, SMB_STRUCT_STAT *sbuf)
|
|---|
| 805 | {
|
|---|
| 806 | struct dirent *result;
|
|---|
| 807 |
|
|---|
| 808 | result = SMB_VFS_NEXT_READDIR(handle, dirp, sbuf);
|
|---|
| 809 |
|
|---|
| 810 | /* This operation has no reasonable error condition
|
|---|
| 811 | * (End of dir is also failure), so always succeed.
|
|---|
| 812 | */
|
|---|
| 813 | do_log(SMB_VFS_OP_READDIR, True, handle, "");
|
|---|
| 814 |
|
|---|
| 815 | return result;
|
|---|
| 816 | }
|
|---|
| 817 |
|
|---|
| 818 | static void smb_full_audit_seekdir(vfs_handle_struct *handle,
|
|---|
| 819 | DIR *dirp, long offset)
|
|---|
| 820 | {
|
|---|
| 821 | SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
|
|---|
| 822 |
|
|---|
| 823 | do_log(SMB_VFS_OP_SEEKDIR, True, handle, "");
|
|---|
| 824 | }
|
|---|
| 825 |
|
|---|
| 826 | static long smb_full_audit_telldir(vfs_handle_struct *handle,
|
|---|
| 827 | DIR *dirp)
|
|---|
| 828 | {
|
|---|
| 829 | long result;
|
|---|
| 830 |
|
|---|
| 831 | result = SMB_VFS_NEXT_TELLDIR(handle, dirp);
|
|---|
| 832 |
|
|---|
| 833 | do_log(SMB_VFS_OP_TELLDIR, True, handle, "");
|
|---|
| 834 |
|
|---|
| 835 | return result;
|
|---|
| 836 | }
|
|---|
| 837 |
|
|---|
| 838 | static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
|
|---|
| 839 | DIR *dirp)
|
|---|
| 840 | {
|
|---|
| 841 | SMB_VFS_NEXT_REWINDDIR(handle, dirp);
|
|---|
| 842 |
|
|---|
| 843 | do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
|
|---|
| 844 | }
|
|---|
| 845 |
|
|---|
| 846 | static int smb_full_audit_mkdir(vfs_handle_struct *handle,
|
|---|
| 847 | const char *path, mode_t mode)
|
|---|
| 848 | {
|
|---|
| 849 | int result;
|
|---|
| 850 |
|
|---|
| 851 | result = SMB_VFS_NEXT_MKDIR(handle, path, mode);
|
|---|
| 852 |
|
|---|
| 853 | do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s", path);
|
|---|
| 854 |
|
|---|
| 855 | return result;
|
|---|
| 856 | }
|
|---|
| 857 |
|
|---|
| 858 | static int smb_full_audit_rmdir(vfs_handle_struct *handle,
|
|---|
| 859 | const char *path)
|
|---|
| 860 | {
|
|---|
| 861 | int result;
|
|---|
| 862 |
|
|---|
| 863 | result = SMB_VFS_NEXT_RMDIR(handle, path);
|
|---|
| 864 |
|
|---|
| 865 | do_log(SMB_VFS_OP_RMDIR, (result >= 0), handle, "%s", path);
|
|---|
| 866 |
|
|---|
| 867 | return result;
|
|---|
| 868 | }
|
|---|
| 869 |
|
|---|
| 870 | static int smb_full_audit_closedir(vfs_handle_struct *handle,
|
|---|
| 871 | DIR *dirp)
|
|---|
| 872 | {
|
|---|
| 873 | int result;
|
|---|
| 874 |
|
|---|
| 875 | result = SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
|
|---|
| 876 |
|
|---|
| 877 | do_log(SMB_VFS_OP_CLOSEDIR, (result >= 0), handle, "");
|
|---|
| 878 |
|
|---|
| 879 | return result;
|
|---|
| 880 | }
|
|---|
| 881 |
|
|---|
| 882 | static void smb_full_audit_init_search_op(vfs_handle_struct *handle,
|
|---|
| 883 | DIR *dirp)
|
|---|
| 884 | {
|
|---|
| 885 | SMB_VFS_NEXT_INIT_SEARCH_OP(handle, dirp);
|
|---|
| 886 |
|
|---|
| 887 | do_log(SMB_VFS_OP_INIT_SEARCH_OP, True, handle, "");
|
|---|
| 888 | }
|
|---|
| 889 |
|
|---|
| 890 | static int smb_full_audit_open(vfs_handle_struct *handle,
|
|---|
| 891 | struct smb_filename *smb_fname,
|
|---|
| 892 | files_struct *fsp, int flags, mode_t mode)
|
|---|
| 893 | {
|
|---|
| 894 | int result;
|
|---|
| 895 |
|
|---|
| 896 | result = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
|
|---|
| 897 |
|
|---|
| 898 | do_log(SMB_VFS_OP_OPEN, (result >= 0), handle, "%s|%s",
|
|---|
| 899 | ((flags & O_WRONLY) || (flags & O_RDWR))?"w":"r",
|
|---|
| 900 | smb_fname_str_do_log(smb_fname));
|
|---|
| 901 |
|
|---|
| 902 | return result;
|
|---|
| 903 | }
|
|---|
| 904 |
|
|---|
| 905 | static NTSTATUS smb_full_audit_create_file(vfs_handle_struct *handle,
|
|---|
| 906 | struct smb_request *req,
|
|---|
| 907 | uint16_t root_dir_fid,
|
|---|
| 908 | struct smb_filename *smb_fname,
|
|---|
| 909 | uint32_t access_mask,
|
|---|
| 910 | uint32_t share_access,
|
|---|
| 911 | uint32_t create_disposition,
|
|---|
| 912 | uint32_t create_options,
|
|---|
| 913 | uint32_t file_attributes,
|
|---|
| 914 | uint32_t oplock_request,
|
|---|
| 915 | struct smb2_lease *lease,
|
|---|
| 916 | uint64_t allocation_size,
|
|---|
| 917 | uint32_t private_flags,
|
|---|
| 918 | struct security_descriptor *sd,
|
|---|
| 919 | struct ea_list *ea_list,
|
|---|
| 920 | files_struct **result_fsp,
|
|---|
| 921 | int *pinfo,
|
|---|
| 922 | const struct smb2_create_blobs *in_context_blobs,
|
|---|
| 923 | struct smb2_create_blobs *out_context_blobs)
|
|---|
| 924 | {
|
|---|
| 925 | NTSTATUS result;
|
|---|
| 926 | const char* str_create_disposition;
|
|---|
| 927 |
|
|---|
| 928 | switch (create_disposition) {
|
|---|
| 929 | case FILE_SUPERSEDE:
|
|---|
| 930 | str_create_disposition = "supersede";
|
|---|
| 931 | break;
|
|---|
| 932 | case FILE_OVERWRITE_IF:
|
|---|
| 933 | str_create_disposition = "overwrite_if";
|
|---|
| 934 | break;
|
|---|
| 935 | case FILE_OPEN:
|
|---|
| 936 | str_create_disposition = "open";
|
|---|
| 937 | break;
|
|---|
| 938 | case FILE_OVERWRITE:
|
|---|
| 939 | str_create_disposition = "overwrite";
|
|---|
| 940 | break;
|
|---|
| 941 | case FILE_CREATE:
|
|---|
| 942 | str_create_disposition = "create";
|
|---|
| 943 | break;
|
|---|
| 944 | case FILE_OPEN_IF:
|
|---|
| 945 | str_create_disposition = "open_if";
|
|---|
| 946 | break;
|
|---|
| 947 | default:
|
|---|
| 948 | str_create_disposition = "unknown";
|
|---|
| 949 | }
|
|---|
| 950 |
|
|---|
| 951 | result = SMB_VFS_NEXT_CREATE_FILE(
|
|---|
| 952 | handle, /* handle */
|
|---|
| 953 | req, /* req */
|
|---|
| 954 | root_dir_fid, /* root_dir_fid */
|
|---|
| 955 | smb_fname, /* fname */
|
|---|
| 956 | access_mask, /* access_mask */
|
|---|
| 957 | share_access, /* share_access */
|
|---|
| 958 | create_disposition, /* create_disposition*/
|
|---|
| 959 | create_options, /* create_options */
|
|---|
| 960 | file_attributes, /* file_attributes */
|
|---|
| 961 | oplock_request, /* oplock_request */
|
|---|
| 962 | lease, /* lease */
|
|---|
| 963 | allocation_size, /* allocation_size */
|
|---|
| 964 | private_flags,
|
|---|
| 965 | sd, /* sd */
|
|---|
| 966 | ea_list, /* ea_list */
|
|---|
| 967 | result_fsp, /* result */
|
|---|
| 968 | pinfo, /* pinfo */
|
|---|
| 969 | in_context_blobs, out_context_blobs); /* create context */
|
|---|
| 970 |
|
|---|
| 971 | do_log(SMB_VFS_OP_CREATE_FILE, (NT_STATUS_IS_OK(result)), handle,
|
|---|
| 972 | "0x%x|%s|%s|%s", access_mask,
|
|---|
| 973 | create_options & FILE_DIRECTORY_FILE ? "dir" : "file",
|
|---|
| 974 | str_create_disposition, smb_fname_str_do_log(smb_fname));
|
|---|
| 975 |
|
|---|
| 976 | return result;
|
|---|
| 977 | }
|
|---|
| 978 |
|
|---|
| 979 | static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp)
|
|---|
| 980 | {
|
|---|
| 981 | int result;
|
|---|
| 982 |
|
|---|
| 983 | result = SMB_VFS_NEXT_CLOSE(handle, fsp);
|
|---|
| 984 |
|
|---|
| 985 | do_log(SMB_VFS_OP_CLOSE, (result >= 0), handle, "%s",
|
|---|
| 986 | fsp_str_do_log(fsp));
|
|---|
| 987 |
|
|---|
| 988 | return result;
|
|---|
| 989 | }
|
|---|
| 990 |
|
|---|
| 991 | static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 992 | void *data, size_t n)
|
|---|
| 993 | {
|
|---|
| 994 | ssize_t result;
|
|---|
| 995 |
|
|---|
| 996 | result = SMB_VFS_NEXT_READ(handle, fsp, data, n);
|
|---|
| 997 |
|
|---|
| 998 | do_log(SMB_VFS_OP_READ, (result >= 0), handle, "%s",
|
|---|
| 999 | fsp_str_do_log(fsp));
|
|---|
| 1000 |
|
|---|
| 1001 | return result;
|
|---|
| 1002 | }
|
|---|
| 1003 |
|
|---|
| 1004 | static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1005 | void *data, size_t n, off_t offset)
|
|---|
| 1006 | {
|
|---|
| 1007 | ssize_t result;
|
|---|
| 1008 |
|
|---|
| 1009 | result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
|
|---|
| 1010 |
|
|---|
| 1011 | do_log(SMB_VFS_OP_PREAD, (result >= 0), handle, "%s",
|
|---|
| 1012 | fsp_str_do_log(fsp));
|
|---|
| 1013 |
|
|---|
| 1014 | return result;
|
|---|
| 1015 | }
|
|---|
| 1016 |
|
|---|
| 1017 | struct smb_full_audit_pread_state {
|
|---|
| 1018 | vfs_handle_struct *handle;
|
|---|
| 1019 | files_struct *fsp;
|
|---|
| 1020 | ssize_t ret;
|
|---|
| 1021 | int err;
|
|---|
| 1022 | };
|
|---|
| 1023 |
|
|---|
| 1024 | static void smb_full_audit_pread_done(struct tevent_req *subreq);
|
|---|
| 1025 |
|
|---|
| 1026 | static struct tevent_req *smb_full_audit_pread_send(
|
|---|
| 1027 | struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
|
|---|
| 1028 | struct tevent_context *ev, struct files_struct *fsp,
|
|---|
| 1029 | void *data, size_t n, off_t offset)
|
|---|
| 1030 | {
|
|---|
| 1031 | struct tevent_req *req, *subreq;
|
|---|
| 1032 | struct smb_full_audit_pread_state *state;
|
|---|
| 1033 |
|
|---|
| 1034 | req = tevent_req_create(mem_ctx, &state,
|
|---|
| 1035 | struct smb_full_audit_pread_state);
|
|---|
| 1036 | if (req == NULL) {
|
|---|
| 1037 | do_log(SMB_VFS_OP_PREAD_SEND, false, handle, "%s",
|
|---|
| 1038 | fsp_str_do_log(fsp));
|
|---|
| 1039 | return NULL;
|
|---|
| 1040 | }
|
|---|
| 1041 | state->handle = handle;
|
|---|
| 1042 | state->fsp = fsp;
|
|---|
| 1043 |
|
|---|
| 1044 | subreq = SMB_VFS_NEXT_PREAD_SEND(state, ev, handle, fsp, data,
|
|---|
| 1045 | n, offset);
|
|---|
| 1046 | if (tevent_req_nomem(subreq, req)) {
|
|---|
| 1047 | do_log(SMB_VFS_OP_PREAD_SEND, false, handle, "%s",
|
|---|
| 1048 | fsp_str_do_log(fsp));
|
|---|
| 1049 | return tevent_req_post(req, ev);
|
|---|
| 1050 | }
|
|---|
| 1051 | tevent_req_set_callback(subreq, smb_full_audit_pread_done, req);
|
|---|
| 1052 |
|
|---|
| 1053 | do_log(SMB_VFS_OP_PREAD_SEND, true, handle, "%s", fsp_str_do_log(fsp));
|
|---|
| 1054 | return req;
|
|---|
| 1055 | }
|
|---|
| 1056 |
|
|---|
| 1057 | static void smb_full_audit_pread_done(struct tevent_req *subreq)
|
|---|
| 1058 | {
|
|---|
| 1059 | struct tevent_req *req = tevent_req_callback_data(
|
|---|
| 1060 | subreq, struct tevent_req);
|
|---|
| 1061 | struct smb_full_audit_pread_state *state = tevent_req_data(
|
|---|
| 1062 | req, struct smb_full_audit_pread_state);
|
|---|
| 1063 |
|
|---|
| 1064 | state->ret = SMB_VFS_PREAD_RECV(subreq, &state->err);
|
|---|
| 1065 | TALLOC_FREE(subreq);
|
|---|
| 1066 | tevent_req_done(req);
|
|---|
| 1067 | }
|
|---|
| 1068 |
|
|---|
| 1069 | static ssize_t smb_full_audit_pread_recv(struct tevent_req *req, int *err)
|
|---|
| 1070 | {
|
|---|
| 1071 | struct smb_full_audit_pread_state *state = tevent_req_data(
|
|---|
| 1072 | req, struct smb_full_audit_pread_state);
|
|---|
| 1073 |
|
|---|
| 1074 | if (tevent_req_is_unix_error(req, err)) {
|
|---|
| 1075 | do_log(SMB_VFS_OP_PREAD_RECV, false, state->handle, "%s",
|
|---|
| 1076 | fsp_str_do_log(state->fsp));
|
|---|
| 1077 | return -1;
|
|---|
| 1078 | }
|
|---|
| 1079 |
|
|---|
| 1080 | do_log(SMB_VFS_OP_PREAD_RECV, (state->ret >= 0), state->handle, "%s",
|
|---|
| 1081 | fsp_str_do_log(state->fsp));
|
|---|
| 1082 |
|
|---|
| 1083 | *err = state->err;
|
|---|
| 1084 | return state->ret;
|
|---|
| 1085 | }
|
|---|
| 1086 |
|
|---|
| 1087 | static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1088 | const void *data, size_t n)
|
|---|
| 1089 | {
|
|---|
| 1090 | ssize_t result;
|
|---|
| 1091 |
|
|---|
| 1092 | result = SMB_VFS_NEXT_WRITE(handle, fsp, data, n);
|
|---|
| 1093 |
|
|---|
| 1094 | do_log(SMB_VFS_OP_WRITE, (result >= 0), handle, "%s",
|
|---|
| 1095 | fsp_str_do_log(fsp));
|
|---|
| 1096 |
|
|---|
| 1097 | return result;
|
|---|
| 1098 | }
|
|---|
| 1099 |
|
|---|
| 1100 | static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1101 | const void *data, size_t n,
|
|---|
| 1102 | off_t offset)
|
|---|
| 1103 | {
|
|---|
| 1104 | ssize_t result;
|
|---|
| 1105 |
|
|---|
| 1106 | result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
|
|---|
| 1107 |
|
|---|
| 1108 | do_log(SMB_VFS_OP_PWRITE, (result >= 0), handle, "%s",
|
|---|
| 1109 | fsp_str_do_log(fsp));
|
|---|
| 1110 |
|
|---|
| 1111 | return result;
|
|---|
| 1112 | }
|
|---|
| 1113 |
|
|---|
| 1114 | struct smb_full_audit_pwrite_state {
|
|---|
| 1115 | vfs_handle_struct *handle;
|
|---|
| 1116 | files_struct *fsp;
|
|---|
| 1117 | ssize_t ret;
|
|---|
| 1118 | int err;
|
|---|
| 1119 | };
|
|---|
| 1120 |
|
|---|
| 1121 | static void smb_full_audit_pwrite_done(struct tevent_req *subreq);
|
|---|
| 1122 |
|
|---|
| 1123 | static struct tevent_req *smb_full_audit_pwrite_send(
|
|---|
| 1124 | struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
|
|---|
| 1125 | struct tevent_context *ev, struct files_struct *fsp,
|
|---|
| 1126 | const void *data, size_t n, off_t offset)
|
|---|
| 1127 | {
|
|---|
| 1128 | struct tevent_req *req, *subreq;
|
|---|
| 1129 | struct smb_full_audit_pwrite_state *state;
|
|---|
| 1130 |
|
|---|
| 1131 | req = tevent_req_create(mem_ctx, &state,
|
|---|
| 1132 | struct smb_full_audit_pwrite_state);
|
|---|
| 1133 | if (req == NULL) {
|
|---|
| 1134 | do_log(SMB_VFS_OP_PWRITE_SEND, false, handle, "%s",
|
|---|
| 1135 | fsp_str_do_log(fsp));
|
|---|
| 1136 | return NULL;
|
|---|
| 1137 | }
|
|---|
| 1138 | state->handle = handle;
|
|---|
| 1139 | state->fsp = fsp;
|
|---|
| 1140 |
|
|---|
| 1141 | subreq = SMB_VFS_NEXT_PWRITE_SEND(state, ev, handle, fsp, data,
|
|---|
| 1142 | n, offset);
|
|---|
| 1143 | if (tevent_req_nomem(subreq, req)) {
|
|---|
| 1144 | do_log(SMB_VFS_OP_PWRITE_SEND, false, handle, "%s",
|
|---|
| 1145 | fsp_str_do_log(fsp));
|
|---|
| 1146 | return tevent_req_post(req, ev);
|
|---|
| 1147 | }
|
|---|
| 1148 | tevent_req_set_callback(subreq, smb_full_audit_pwrite_done, req);
|
|---|
| 1149 |
|
|---|
| 1150 | do_log(SMB_VFS_OP_PWRITE_SEND, true, handle, "%s",
|
|---|
| 1151 | fsp_str_do_log(fsp));
|
|---|
| 1152 | return req;
|
|---|
| 1153 | }
|
|---|
| 1154 |
|
|---|
| 1155 | static void smb_full_audit_pwrite_done(struct tevent_req *subreq)
|
|---|
| 1156 | {
|
|---|
| 1157 | struct tevent_req *req = tevent_req_callback_data(
|
|---|
| 1158 | subreq, struct tevent_req);
|
|---|
| 1159 | struct smb_full_audit_pwrite_state *state = tevent_req_data(
|
|---|
| 1160 | req, struct smb_full_audit_pwrite_state);
|
|---|
| 1161 |
|
|---|
| 1162 | state->ret = SMB_VFS_PWRITE_RECV(subreq, &state->err);
|
|---|
| 1163 | TALLOC_FREE(subreq);
|
|---|
| 1164 | tevent_req_done(req);
|
|---|
| 1165 | }
|
|---|
| 1166 |
|
|---|
| 1167 | static ssize_t smb_full_audit_pwrite_recv(struct tevent_req *req, int *err)
|
|---|
| 1168 | {
|
|---|
| 1169 | struct smb_full_audit_pwrite_state *state = tevent_req_data(
|
|---|
| 1170 | req, struct smb_full_audit_pwrite_state);
|
|---|
| 1171 |
|
|---|
| 1172 | if (tevent_req_is_unix_error(req, err)) {
|
|---|
| 1173 | do_log(SMB_VFS_OP_PWRITE_RECV, false, state->handle, "%s",
|
|---|
| 1174 | fsp_str_do_log(state->fsp));
|
|---|
| 1175 | return -1;
|
|---|
| 1176 | }
|
|---|
| 1177 |
|
|---|
| 1178 | do_log(SMB_VFS_OP_PWRITE_RECV, (state->ret >= 0), state->handle, "%s",
|
|---|
| 1179 | fsp_str_do_log(state->fsp));
|
|---|
| 1180 |
|
|---|
| 1181 | *err = state->err;
|
|---|
| 1182 | return state->ret;
|
|---|
| 1183 | }
|
|---|
| 1184 |
|
|---|
| 1185 | static off_t smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1186 | off_t offset, int whence)
|
|---|
| 1187 | {
|
|---|
| 1188 | ssize_t result;
|
|---|
| 1189 |
|
|---|
| 1190 | result = SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
|
|---|
| 1191 |
|
|---|
| 1192 | do_log(SMB_VFS_OP_LSEEK, (result != (ssize_t)-1), handle,
|
|---|
| 1193 | "%s", fsp_str_do_log(fsp));
|
|---|
| 1194 |
|
|---|
| 1195 | return result;
|
|---|
| 1196 | }
|
|---|
| 1197 |
|
|---|
| 1198 | static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
|
|---|
| 1199 | files_struct *fromfsp,
|
|---|
| 1200 | const DATA_BLOB *hdr, off_t offset,
|
|---|
| 1201 | size_t n)
|
|---|
| 1202 | {
|
|---|
| 1203 | ssize_t result;
|
|---|
| 1204 |
|
|---|
| 1205 | result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
|
|---|
| 1206 |
|
|---|
| 1207 | do_log(SMB_VFS_OP_SENDFILE, (result >= 0), handle,
|
|---|
| 1208 | "%s", fsp_str_do_log(fromfsp));
|
|---|
| 1209 |
|
|---|
| 1210 | return result;
|
|---|
| 1211 | }
|
|---|
| 1212 |
|
|---|
| 1213 | static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
|
|---|
| 1214 | files_struct *tofsp,
|
|---|
| 1215 | off_t offset,
|
|---|
| 1216 | size_t n)
|
|---|
| 1217 | {
|
|---|
| 1218 | ssize_t result;
|
|---|
| 1219 |
|
|---|
| 1220 | result = SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
|
|---|
| 1221 |
|
|---|
| 1222 | do_log(SMB_VFS_OP_RECVFILE, (result >= 0), handle,
|
|---|
| 1223 | "%s", fsp_str_do_log(tofsp));
|
|---|
| 1224 |
|
|---|
| 1225 | return result;
|
|---|
| 1226 | }
|
|---|
| 1227 |
|
|---|
| 1228 | static int smb_full_audit_rename(vfs_handle_struct *handle,
|
|---|
| 1229 | const struct smb_filename *smb_fname_src,
|
|---|
| 1230 | const struct smb_filename *smb_fname_dst)
|
|---|
| 1231 | {
|
|---|
| 1232 | int result;
|
|---|
| 1233 |
|
|---|
| 1234 | result = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
|
|---|
| 1235 |
|
|---|
| 1236 | do_log(SMB_VFS_OP_RENAME, (result >= 0), handle, "%s|%s",
|
|---|
| 1237 | smb_fname_str_do_log(smb_fname_src),
|
|---|
| 1238 | smb_fname_str_do_log(smb_fname_dst));
|
|---|
| 1239 |
|
|---|
| 1240 | return result;
|
|---|
| 1241 | }
|
|---|
| 1242 |
|
|---|
| 1243 | static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp)
|
|---|
| 1244 | {
|
|---|
| 1245 | int result;
|
|---|
| 1246 |
|
|---|
| 1247 | result = SMB_VFS_NEXT_FSYNC(handle, fsp);
|
|---|
| 1248 |
|
|---|
| 1249 | do_log(SMB_VFS_OP_FSYNC, (result >= 0), handle, "%s",
|
|---|
| 1250 | fsp_str_do_log(fsp));
|
|---|
| 1251 |
|
|---|
| 1252 | return result;
|
|---|
| 1253 | }
|
|---|
| 1254 |
|
|---|
| 1255 | struct smb_full_audit_fsync_state {
|
|---|
| 1256 | vfs_handle_struct *handle;
|
|---|
| 1257 | files_struct *fsp;
|
|---|
| 1258 | int ret;
|
|---|
| 1259 | int err;
|
|---|
| 1260 | };
|
|---|
| 1261 |
|
|---|
| 1262 | static void smb_full_audit_fsync_done(struct tevent_req *subreq);
|
|---|
| 1263 |
|
|---|
| 1264 | static struct tevent_req *smb_full_audit_fsync_send(
|
|---|
| 1265 | struct vfs_handle_struct *handle, TALLOC_CTX *mem_ctx,
|
|---|
| 1266 | struct tevent_context *ev, struct files_struct *fsp)
|
|---|
| 1267 | {
|
|---|
| 1268 | struct tevent_req *req, *subreq;
|
|---|
| 1269 | struct smb_full_audit_fsync_state *state;
|
|---|
| 1270 |
|
|---|
| 1271 | req = tevent_req_create(mem_ctx, &state,
|
|---|
| 1272 | struct smb_full_audit_fsync_state);
|
|---|
| 1273 | if (req == NULL) {
|
|---|
| 1274 | do_log(SMB_VFS_OP_FSYNC_SEND, false, handle, "%s",
|
|---|
| 1275 | fsp_str_do_log(fsp));
|
|---|
| 1276 | return NULL;
|
|---|
| 1277 | }
|
|---|
| 1278 | state->handle = handle;
|
|---|
| 1279 | state->fsp = fsp;
|
|---|
| 1280 |
|
|---|
| 1281 | subreq = SMB_VFS_NEXT_FSYNC_SEND(state, ev, handle, fsp);
|
|---|
| 1282 | if (tevent_req_nomem(subreq, req)) {
|
|---|
| 1283 | do_log(SMB_VFS_OP_FSYNC_SEND, false, handle, "%s",
|
|---|
| 1284 | fsp_str_do_log(fsp));
|
|---|
| 1285 | return tevent_req_post(req, ev);
|
|---|
| 1286 | }
|
|---|
| 1287 | tevent_req_set_callback(subreq, smb_full_audit_fsync_done, req);
|
|---|
| 1288 |
|
|---|
| 1289 | do_log(SMB_VFS_OP_FSYNC_SEND, true, handle, "%s", fsp_str_do_log(fsp));
|
|---|
| 1290 | return req;
|
|---|
| 1291 | }
|
|---|
| 1292 |
|
|---|
| 1293 | static void smb_full_audit_fsync_done(struct tevent_req *subreq)
|
|---|
| 1294 | {
|
|---|
| 1295 | struct tevent_req *req = tevent_req_callback_data(
|
|---|
| 1296 | subreq, struct tevent_req);
|
|---|
| 1297 | struct smb_full_audit_fsync_state *state = tevent_req_data(
|
|---|
| 1298 | req, struct smb_full_audit_fsync_state);
|
|---|
| 1299 |
|
|---|
| 1300 | state->ret = SMB_VFS_FSYNC_RECV(subreq, &state->err);
|
|---|
| 1301 | TALLOC_FREE(subreq);
|
|---|
| 1302 | tevent_req_done(req);
|
|---|
| 1303 | }
|
|---|
| 1304 |
|
|---|
| 1305 | static int smb_full_audit_fsync_recv(struct tevent_req *req, int *err)
|
|---|
| 1306 | {
|
|---|
| 1307 | struct smb_full_audit_fsync_state *state = tevent_req_data(
|
|---|
| 1308 | req, struct smb_full_audit_fsync_state);
|
|---|
| 1309 |
|
|---|
| 1310 | if (tevent_req_is_unix_error(req, err)) {
|
|---|
| 1311 | do_log(SMB_VFS_OP_FSYNC_RECV, false, state->handle, "%s",
|
|---|
| 1312 | fsp_str_do_log(state->fsp));
|
|---|
| 1313 | return -1;
|
|---|
| 1314 | }
|
|---|
| 1315 |
|
|---|
| 1316 | do_log(SMB_VFS_OP_FSYNC_RECV, (state->ret >= 0), state->handle, "%s",
|
|---|
| 1317 | fsp_str_do_log(state->fsp));
|
|---|
| 1318 |
|
|---|
| 1319 | *err = state->err;
|
|---|
| 1320 | return state->ret;
|
|---|
| 1321 | }
|
|---|
| 1322 |
|
|---|
| 1323 | static int smb_full_audit_stat(vfs_handle_struct *handle,
|
|---|
| 1324 | struct smb_filename *smb_fname)
|
|---|
| 1325 | {
|
|---|
| 1326 | int result;
|
|---|
| 1327 |
|
|---|
| 1328 | result = SMB_VFS_NEXT_STAT(handle, smb_fname);
|
|---|
| 1329 |
|
|---|
| 1330 | do_log(SMB_VFS_OP_STAT, (result >= 0), handle, "%s",
|
|---|
| 1331 | smb_fname_str_do_log(smb_fname));
|
|---|
| 1332 |
|
|---|
| 1333 | return result;
|
|---|
| 1334 | }
|
|---|
| 1335 |
|
|---|
| 1336 | static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1337 | SMB_STRUCT_STAT *sbuf)
|
|---|
| 1338 | {
|
|---|
| 1339 | int result;
|
|---|
| 1340 |
|
|---|
| 1341 | result = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
|
|---|
| 1342 |
|
|---|
| 1343 | do_log(SMB_VFS_OP_FSTAT, (result >= 0), handle, "%s",
|
|---|
| 1344 | fsp_str_do_log(fsp));
|
|---|
| 1345 |
|
|---|
| 1346 | return result;
|
|---|
| 1347 | }
|
|---|
| 1348 |
|
|---|
| 1349 | static int smb_full_audit_lstat(vfs_handle_struct *handle,
|
|---|
| 1350 | struct smb_filename *smb_fname)
|
|---|
| 1351 | {
|
|---|
| 1352 | int result;
|
|---|
| 1353 |
|
|---|
| 1354 | result = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
|
|---|
| 1355 |
|
|---|
| 1356 | do_log(SMB_VFS_OP_LSTAT, (result >= 0), handle, "%s",
|
|---|
| 1357 | smb_fname_str_do_log(smb_fname));
|
|---|
| 1358 |
|
|---|
| 1359 | return result;
|
|---|
| 1360 | }
|
|---|
| 1361 |
|
|---|
| 1362 | static uint64_t smb_full_audit_get_alloc_size(vfs_handle_struct *handle,
|
|---|
| 1363 | files_struct *fsp, const SMB_STRUCT_STAT *sbuf)
|
|---|
| 1364 | {
|
|---|
| 1365 | uint64_t result;
|
|---|
| 1366 |
|
|---|
| 1367 | result = SMB_VFS_NEXT_GET_ALLOC_SIZE(handle, fsp, sbuf);
|
|---|
| 1368 |
|
|---|
| 1369 | do_log(SMB_VFS_OP_GET_ALLOC_SIZE, (result != (uint64_t)-1), handle,
|
|---|
| 1370 | "%llu", result);
|
|---|
| 1371 |
|
|---|
| 1372 | return result;
|
|---|
| 1373 | }
|
|---|
| 1374 |
|
|---|
| 1375 | static int smb_full_audit_unlink(vfs_handle_struct *handle,
|
|---|
| 1376 | const struct smb_filename *smb_fname)
|
|---|
| 1377 | {
|
|---|
| 1378 | int result;
|
|---|
| 1379 |
|
|---|
| 1380 | result = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
|
|---|
| 1381 |
|
|---|
| 1382 | do_log(SMB_VFS_OP_UNLINK, (result >= 0), handle, "%s",
|
|---|
| 1383 | smb_fname_str_do_log(smb_fname));
|
|---|
| 1384 |
|
|---|
| 1385 | return result;
|
|---|
| 1386 | }
|
|---|
| 1387 |
|
|---|
| 1388 | static int smb_full_audit_chmod(vfs_handle_struct *handle,
|
|---|
| 1389 | const char *path, mode_t mode)
|
|---|
| 1390 | {
|
|---|
| 1391 | int result;
|
|---|
| 1392 |
|
|---|
| 1393 | result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
|
|---|
| 1394 |
|
|---|
| 1395 | do_log(SMB_VFS_OP_CHMOD, (result >= 0), handle, "%s|%o", path, mode);
|
|---|
| 1396 |
|
|---|
| 1397 | return result;
|
|---|
| 1398 | }
|
|---|
| 1399 |
|
|---|
| 1400 | static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1401 | mode_t mode)
|
|---|
| 1402 | {
|
|---|
| 1403 | int result;
|
|---|
| 1404 |
|
|---|
| 1405 | result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
|
|---|
| 1406 |
|
|---|
| 1407 | do_log(SMB_VFS_OP_FCHMOD, (result >= 0), handle,
|
|---|
| 1408 | "%s|%o", fsp_str_do_log(fsp), mode);
|
|---|
| 1409 |
|
|---|
| 1410 | return result;
|
|---|
| 1411 | }
|
|---|
| 1412 |
|
|---|
| 1413 | static int smb_full_audit_chown(vfs_handle_struct *handle,
|
|---|
| 1414 | const char *path, uid_t uid, gid_t gid)
|
|---|
| 1415 | {
|
|---|
| 1416 | int result;
|
|---|
| 1417 |
|
|---|
| 1418 | result = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
|
|---|
| 1419 |
|
|---|
| 1420 | do_log(SMB_VFS_OP_CHOWN, (result >= 0), handle, "%s|%ld|%ld",
|
|---|
| 1421 | path, (long int)uid, (long int)gid);
|
|---|
| 1422 |
|
|---|
| 1423 | return result;
|
|---|
| 1424 | }
|
|---|
| 1425 |
|
|---|
| 1426 | static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1427 | uid_t uid, gid_t gid)
|
|---|
| 1428 | {
|
|---|
| 1429 | int result;
|
|---|
| 1430 |
|
|---|
| 1431 | result = SMB_VFS_NEXT_FCHOWN(handle, fsp, uid, gid);
|
|---|
| 1432 |
|
|---|
| 1433 | do_log(SMB_VFS_OP_FCHOWN, (result >= 0), handle, "%s|%ld|%ld",
|
|---|
| 1434 | fsp_str_do_log(fsp), (long int)uid, (long int)gid);
|
|---|
| 1435 |
|
|---|
| 1436 | return result;
|
|---|
| 1437 | }
|
|---|
| 1438 |
|
|---|
| 1439 | static int smb_full_audit_lchown(vfs_handle_struct *handle,
|
|---|
| 1440 | const char *path, uid_t uid, gid_t gid)
|
|---|
| 1441 | {
|
|---|
| 1442 | int result;
|
|---|
| 1443 |
|
|---|
| 1444 | result = SMB_VFS_NEXT_LCHOWN(handle, path, uid, gid);
|
|---|
| 1445 |
|
|---|
| 1446 | do_log(SMB_VFS_OP_LCHOWN, (result >= 0), handle, "%s|%ld|%ld",
|
|---|
| 1447 | path, (long int)uid, (long int)gid);
|
|---|
| 1448 |
|
|---|
| 1449 | return result;
|
|---|
| 1450 | }
|
|---|
| 1451 |
|
|---|
| 1452 | static int smb_full_audit_chdir(vfs_handle_struct *handle,
|
|---|
| 1453 | const char *path)
|
|---|
| 1454 | {
|
|---|
| 1455 | int result;
|
|---|
| 1456 |
|
|---|
| 1457 | result = SMB_VFS_NEXT_CHDIR(handle, path);
|
|---|
| 1458 |
|
|---|
| 1459 | do_log(SMB_VFS_OP_CHDIR, (result >= 0), handle, "chdir|%s", path);
|
|---|
| 1460 |
|
|---|
| 1461 | return result;
|
|---|
| 1462 | }
|
|---|
| 1463 |
|
|---|
| 1464 | static char *smb_full_audit_getwd(vfs_handle_struct *handle)
|
|---|
| 1465 | {
|
|---|
| 1466 | char *result;
|
|---|
| 1467 |
|
|---|
| 1468 | result = SMB_VFS_NEXT_GETWD(handle);
|
|---|
| 1469 |
|
|---|
| 1470 | do_log(SMB_VFS_OP_GETWD, (result != NULL), handle, "%s",
|
|---|
| 1471 | result == NULL? "" : result);
|
|---|
| 1472 |
|
|---|
| 1473 | return result;
|
|---|
| 1474 | }
|
|---|
| 1475 |
|
|---|
| 1476 | static int smb_full_audit_ntimes(vfs_handle_struct *handle,
|
|---|
| 1477 | const struct smb_filename *smb_fname,
|
|---|
| 1478 | struct smb_file_time *ft)
|
|---|
| 1479 | {
|
|---|
| 1480 | int result;
|
|---|
| 1481 |
|
|---|
| 1482 | result = SMB_VFS_NEXT_NTIMES(handle, smb_fname, ft);
|
|---|
| 1483 |
|
|---|
| 1484 | do_log(SMB_VFS_OP_NTIMES, (result >= 0), handle, "%s",
|
|---|
| 1485 | smb_fname_str_do_log(smb_fname));
|
|---|
| 1486 |
|
|---|
| 1487 | return result;
|
|---|
| 1488 | }
|
|---|
| 1489 |
|
|---|
| 1490 | static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1491 | off_t len)
|
|---|
| 1492 | {
|
|---|
| 1493 | int result;
|
|---|
| 1494 |
|
|---|
| 1495 | result = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
|
|---|
| 1496 |
|
|---|
| 1497 | do_log(SMB_VFS_OP_FTRUNCATE, (result >= 0), handle,
|
|---|
| 1498 | "%s", fsp_str_do_log(fsp));
|
|---|
| 1499 |
|
|---|
| 1500 | return result;
|
|---|
| 1501 | }
|
|---|
| 1502 |
|
|---|
| 1503 | static int smb_full_audit_fallocate(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1504 | uint32_t mode,
|
|---|
| 1505 | off_t offset,
|
|---|
| 1506 | off_t len)
|
|---|
| 1507 | {
|
|---|
| 1508 | int result;
|
|---|
| 1509 |
|
|---|
| 1510 | result = SMB_VFS_NEXT_FALLOCATE(handle, fsp, mode, offset, len);
|
|---|
| 1511 |
|
|---|
| 1512 | do_log(SMB_VFS_OP_FALLOCATE, (result >= 0), handle,
|
|---|
| 1513 | "%s", fsp_str_do_log(fsp));
|
|---|
| 1514 |
|
|---|
| 1515 | return result;
|
|---|
| 1516 | }
|
|---|
| 1517 |
|
|---|
| 1518 | static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1519 | int op, off_t offset, off_t count, int type)
|
|---|
| 1520 | {
|
|---|
| 1521 | bool result;
|
|---|
| 1522 |
|
|---|
| 1523 | result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
|
|---|
| 1524 |
|
|---|
| 1525 | do_log(SMB_VFS_OP_LOCK, result, handle, "%s", fsp_str_do_log(fsp));
|
|---|
| 1526 |
|
|---|
| 1527 | return result;
|
|---|
| 1528 | }
|
|---|
| 1529 |
|
|---|
| 1530 | static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
|
|---|
| 1531 | struct files_struct *fsp,
|
|---|
| 1532 | uint32_t share_mode, uint32_t access_mask)
|
|---|
| 1533 | {
|
|---|
| 1534 | int result;
|
|---|
| 1535 |
|
|---|
| 1536 | result = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_mode, access_mask);
|
|---|
| 1537 |
|
|---|
| 1538 | do_log(SMB_VFS_OP_KERNEL_FLOCK, (result >= 0), handle, "%s",
|
|---|
| 1539 | fsp_str_do_log(fsp));
|
|---|
| 1540 |
|
|---|
| 1541 | return result;
|
|---|
| 1542 | }
|
|---|
| 1543 |
|
|---|
| 1544 | static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1545 | int leasetype)
|
|---|
| 1546 | {
|
|---|
| 1547 | int result;
|
|---|
| 1548 |
|
|---|
| 1549 | result = SMB_VFS_NEXT_LINUX_SETLEASE(handle, fsp, leasetype);
|
|---|
| 1550 |
|
|---|
| 1551 | do_log(SMB_VFS_OP_LINUX_SETLEASE, (result >= 0), handle, "%s",
|
|---|
| 1552 | fsp_str_do_log(fsp));
|
|---|
| 1553 |
|
|---|
| 1554 | return result;
|
|---|
| 1555 | }
|
|---|
| 1556 |
|
|---|
| 1557 | static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1558 | off_t *poffset, off_t *pcount, int *ptype, pid_t *ppid)
|
|---|
| 1559 | {
|
|---|
| 1560 | bool result;
|
|---|
| 1561 |
|
|---|
| 1562 | result = SMB_VFS_NEXT_GETLOCK(handle, fsp, poffset, pcount, ptype, ppid);
|
|---|
| 1563 |
|
|---|
| 1564 | do_log(SMB_VFS_OP_GETLOCK, result, handle, "%s", fsp_str_do_log(fsp));
|
|---|
| 1565 |
|
|---|
| 1566 | return result;
|
|---|
| 1567 | }
|
|---|
| 1568 |
|
|---|
| 1569 | static int smb_full_audit_symlink(vfs_handle_struct *handle,
|
|---|
| 1570 | const char *oldpath, const char *newpath)
|
|---|
| 1571 | {
|
|---|
| 1572 | int result;
|
|---|
| 1573 |
|
|---|
| 1574 | result = SMB_VFS_NEXT_SYMLINK(handle, oldpath, newpath);
|
|---|
| 1575 |
|
|---|
| 1576 | do_log(SMB_VFS_OP_SYMLINK, (result >= 0), handle,
|
|---|
| 1577 | "%s|%s", oldpath, newpath);
|
|---|
| 1578 |
|
|---|
| 1579 | return result;
|
|---|
| 1580 | }
|
|---|
| 1581 |
|
|---|
| 1582 | static int smb_full_audit_readlink(vfs_handle_struct *handle,
|
|---|
| 1583 | const char *path, char *buf, size_t bufsiz)
|
|---|
| 1584 | {
|
|---|
| 1585 | int result;
|
|---|
| 1586 |
|
|---|
| 1587 | result = SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
|
|---|
| 1588 |
|
|---|
| 1589 | do_log(SMB_VFS_OP_READLINK, (result >= 0), handle, "%s", path);
|
|---|
| 1590 |
|
|---|
| 1591 | return result;
|
|---|
| 1592 | }
|
|---|
| 1593 |
|
|---|
| 1594 | static int smb_full_audit_link(vfs_handle_struct *handle,
|
|---|
| 1595 | const char *oldpath, const char *newpath)
|
|---|
| 1596 | {
|
|---|
| 1597 | int result;
|
|---|
| 1598 |
|
|---|
| 1599 | result = SMB_VFS_NEXT_LINK(handle, oldpath, newpath);
|
|---|
| 1600 |
|
|---|
| 1601 | do_log(SMB_VFS_OP_LINK, (result >= 0), handle,
|
|---|
| 1602 | "%s|%s", oldpath, newpath);
|
|---|
| 1603 |
|
|---|
| 1604 | return result;
|
|---|
| 1605 | }
|
|---|
| 1606 |
|
|---|
| 1607 | static int smb_full_audit_mknod(vfs_handle_struct *handle,
|
|---|
| 1608 | const char *pathname, mode_t mode, SMB_DEV_T dev)
|
|---|
| 1609 | {
|
|---|
| 1610 | int result;
|
|---|
| 1611 |
|
|---|
| 1612 | result = SMB_VFS_NEXT_MKNOD(handle, pathname, mode, dev);
|
|---|
| 1613 |
|
|---|
| 1614 | do_log(SMB_VFS_OP_MKNOD, (result >= 0), handle, "%s", pathname);
|
|---|
| 1615 |
|
|---|
| 1616 | return result;
|
|---|
| 1617 | }
|
|---|
| 1618 |
|
|---|
| 1619 | static char *smb_full_audit_realpath(vfs_handle_struct *handle,
|
|---|
| 1620 | const char *path)
|
|---|
| 1621 | {
|
|---|
| 1622 | char *result;
|
|---|
| 1623 |
|
|---|
| 1624 | result = SMB_VFS_NEXT_REALPATH(handle, path);
|
|---|
| 1625 |
|
|---|
| 1626 | do_log(SMB_VFS_OP_REALPATH, (result != NULL), handle, "%s", path);
|
|---|
| 1627 |
|
|---|
| 1628 | return result;
|
|---|
| 1629 | }
|
|---|
| 1630 |
|
|---|
| 1631 | static int smb_full_audit_chflags(vfs_handle_struct *handle,
|
|---|
| 1632 | const char *path, unsigned int flags)
|
|---|
| 1633 | {
|
|---|
| 1634 | int result;
|
|---|
| 1635 |
|
|---|
| 1636 | result = SMB_VFS_NEXT_CHFLAGS(handle, path, flags);
|
|---|
| 1637 |
|
|---|
| 1638 | do_log(SMB_VFS_OP_CHFLAGS, (result != 0), handle, "%s", path);
|
|---|
| 1639 |
|
|---|
| 1640 | return result;
|
|---|
| 1641 | }
|
|---|
| 1642 |
|
|---|
| 1643 | static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
|
|---|
| 1644 | const SMB_STRUCT_STAT *sbuf)
|
|---|
| 1645 | {
|
|---|
| 1646 | struct file_id id_zero;
|
|---|
| 1647 | struct file_id result;
|
|---|
| 1648 |
|
|---|
| 1649 | ZERO_STRUCT(id_zero);
|
|---|
| 1650 |
|
|---|
| 1651 | result = SMB_VFS_NEXT_FILE_ID_CREATE(handle, sbuf);
|
|---|
| 1652 |
|
|---|
| 1653 | do_log(SMB_VFS_OP_FILE_ID_CREATE,
|
|---|
| 1654 | !file_id_equal(&id_zero, &result),
|
|---|
| 1655 | handle, "%s", file_id_string_tos(&result));
|
|---|
| 1656 |
|
|---|
| 1657 | return result;
|
|---|
| 1658 | }
|
|---|
| 1659 |
|
|---|
| 1660 | static NTSTATUS smb_full_audit_streaminfo(vfs_handle_struct *handle,
|
|---|
| 1661 | struct files_struct *fsp,
|
|---|
| 1662 | const char *fname,
|
|---|
| 1663 | TALLOC_CTX *mem_ctx,
|
|---|
| 1664 | unsigned int *pnum_streams,
|
|---|
| 1665 | struct stream_struct **pstreams)
|
|---|
| 1666 | {
|
|---|
| 1667 | NTSTATUS result;
|
|---|
| 1668 |
|
|---|
| 1669 | result = SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx,
|
|---|
| 1670 | pnum_streams, pstreams);
|
|---|
| 1671 |
|
|---|
| 1672 | do_log(SMB_VFS_OP_STREAMINFO, NT_STATUS_IS_OK(result), handle,
|
|---|
| 1673 | "%s", fname);
|
|---|
| 1674 |
|
|---|
| 1675 | return result;
|
|---|
| 1676 | }
|
|---|
| 1677 |
|
|---|
| 1678 | static int smb_full_audit_get_real_filename(struct vfs_handle_struct *handle,
|
|---|
| 1679 | const char *path,
|
|---|
| 1680 | const char *name,
|
|---|
| 1681 | TALLOC_CTX *mem_ctx,
|
|---|
| 1682 | char **found_name)
|
|---|
| 1683 | {
|
|---|
| 1684 | int result;
|
|---|
| 1685 |
|
|---|
| 1686 | result = SMB_VFS_NEXT_GET_REAL_FILENAME(handle, path, name, mem_ctx,
|
|---|
| 1687 | found_name);
|
|---|
| 1688 |
|
|---|
| 1689 | do_log(SMB_VFS_OP_GET_REAL_FILENAME, (result == 0), handle,
|
|---|
| 1690 | "%s/%s->%s", path, name, (result == 0) ? "" : *found_name);
|
|---|
| 1691 |
|
|---|
| 1692 | return result;
|
|---|
| 1693 | }
|
|---|
| 1694 |
|
|---|
| 1695 | static const char *smb_full_audit_connectpath(vfs_handle_struct *handle,
|
|---|
| 1696 | const char *fname)
|
|---|
| 1697 | {
|
|---|
| 1698 | const char *result;
|
|---|
| 1699 |
|
|---|
| 1700 | result = SMB_VFS_NEXT_CONNECTPATH(handle, fname);
|
|---|
| 1701 |
|
|---|
| 1702 | do_log(SMB_VFS_OP_CONNECTPATH, result != NULL, handle,
|
|---|
| 1703 | "%s", fname);
|
|---|
| 1704 |
|
|---|
| 1705 | return result;
|
|---|
| 1706 | }
|
|---|
| 1707 |
|
|---|
| 1708 | static NTSTATUS smb_full_audit_brl_lock_windows(struct vfs_handle_struct *handle,
|
|---|
| 1709 | struct byte_range_lock *br_lck,
|
|---|
| 1710 | struct lock_struct *plock,
|
|---|
| 1711 | bool blocking_lock)
|
|---|
| 1712 | {
|
|---|
| 1713 | NTSTATUS result;
|
|---|
| 1714 |
|
|---|
| 1715 | result = SMB_VFS_NEXT_BRL_LOCK_WINDOWS(handle, br_lck, plock,
|
|---|
| 1716 | blocking_lock);
|
|---|
| 1717 |
|
|---|
| 1718 | do_log(SMB_VFS_OP_BRL_LOCK_WINDOWS, NT_STATUS_IS_OK(result), handle,
|
|---|
| 1719 | "%s:%llu-%llu. type=%d. blocking=%d",
|
|---|
| 1720 | fsp_str_do_log(brl_fsp(br_lck)),
|
|---|
| 1721 | plock->start, plock->size, plock->lock_type, blocking_lock);
|
|---|
| 1722 |
|
|---|
| 1723 | return result;
|
|---|
| 1724 | }
|
|---|
| 1725 |
|
|---|
| 1726 | static bool smb_full_audit_brl_unlock_windows(struct vfs_handle_struct *handle,
|
|---|
| 1727 | struct messaging_context *msg_ctx,
|
|---|
| 1728 | struct byte_range_lock *br_lck,
|
|---|
| 1729 | const struct lock_struct *plock)
|
|---|
| 1730 | {
|
|---|
| 1731 | bool result;
|
|---|
| 1732 |
|
|---|
| 1733 | result = SMB_VFS_NEXT_BRL_UNLOCK_WINDOWS(handle, msg_ctx, br_lck,
|
|---|
| 1734 | plock);
|
|---|
| 1735 |
|
|---|
| 1736 | do_log(SMB_VFS_OP_BRL_UNLOCK_WINDOWS, (result == 0), handle,
|
|---|
| 1737 | "%s:%llu-%llu:%d", fsp_str_do_log(brl_fsp(br_lck)),
|
|---|
| 1738 | plock->start,
|
|---|
| 1739 | plock->size, plock->lock_type);
|
|---|
| 1740 |
|
|---|
| 1741 | return result;
|
|---|
| 1742 | }
|
|---|
| 1743 |
|
|---|
| 1744 | static bool smb_full_audit_brl_cancel_windows(struct vfs_handle_struct *handle,
|
|---|
| 1745 | struct byte_range_lock *br_lck,
|
|---|
| 1746 | struct lock_struct *plock)
|
|---|
| 1747 | {
|
|---|
| 1748 | bool result;
|
|---|
| 1749 |
|
|---|
| 1750 | result = SMB_VFS_NEXT_BRL_CANCEL_WINDOWS(handle, br_lck, plock);
|
|---|
| 1751 |
|
|---|
| 1752 | do_log(SMB_VFS_OP_BRL_CANCEL_WINDOWS, (result == 0), handle,
|
|---|
| 1753 | "%s:%llu-%llu:%d", fsp_str_do_log(brl_fsp(br_lck)),
|
|---|
| 1754 | plock->start,
|
|---|
| 1755 | plock->size, plock->lock_type);
|
|---|
| 1756 |
|
|---|
| 1757 | return result;
|
|---|
| 1758 | }
|
|---|
| 1759 |
|
|---|
| 1760 | static bool smb_full_audit_strict_lock(struct vfs_handle_struct *handle,
|
|---|
| 1761 | struct files_struct *fsp,
|
|---|
| 1762 | struct lock_struct *plock)
|
|---|
| 1763 | {
|
|---|
| 1764 | bool result;
|
|---|
| 1765 |
|
|---|
| 1766 | result = SMB_VFS_NEXT_STRICT_LOCK(handle, fsp, plock);
|
|---|
| 1767 |
|
|---|
| 1768 | do_log(SMB_VFS_OP_STRICT_LOCK, result, handle,
|
|---|
| 1769 | "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
|
|---|
| 1770 | plock->size, plock->lock_type);
|
|---|
| 1771 |
|
|---|
| 1772 | return result;
|
|---|
| 1773 | }
|
|---|
| 1774 |
|
|---|
| 1775 | static void smb_full_audit_strict_unlock(struct vfs_handle_struct *handle,
|
|---|
| 1776 | struct files_struct *fsp,
|
|---|
| 1777 | struct lock_struct *plock)
|
|---|
| 1778 | {
|
|---|
| 1779 | SMB_VFS_NEXT_STRICT_UNLOCK(handle, fsp, plock);
|
|---|
| 1780 |
|
|---|
| 1781 | do_log(SMB_VFS_OP_STRICT_UNLOCK, true, handle,
|
|---|
| 1782 | "%s:%llu-%llu:%d", fsp_str_do_log(fsp), plock->start,
|
|---|
| 1783 | plock->size, plock->lock_type);
|
|---|
| 1784 | }
|
|---|
| 1785 |
|
|---|
| 1786 | static NTSTATUS smb_full_audit_translate_name(struct vfs_handle_struct *handle,
|
|---|
| 1787 | const char *name,
|
|---|
| 1788 | enum vfs_translate_direction direction,
|
|---|
| 1789 | TALLOC_CTX *mem_ctx,
|
|---|
| 1790 | char **mapped_name)
|
|---|
| 1791 | {
|
|---|
| 1792 | NTSTATUS result;
|
|---|
| 1793 |
|
|---|
| 1794 | result = SMB_VFS_NEXT_TRANSLATE_NAME(handle, name, direction, mem_ctx,
|
|---|
| 1795 | mapped_name);
|
|---|
| 1796 |
|
|---|
| 1797 | do_log(SMB_VFS_OP_TRANSLATE_NAME, NT_STATUS_IS_OK(result), handle, "");
|
|---|
| 1798 |
|
|---|
| 1799 | return result;
|
|---|
| 1800 | }
|
|---|
| 1801 |
|
|---|
| 1802 | static struct tevent_req *smb_full_audit_copy_chunk_send(struct vfs_handle_struct *handle,
|
|---|
| 1803 | TALLOC_CTX *mem_ctx,
|
|---|
| 1804 | struct tevent_context *ev,
|
|---|
| 1805 | struct files_struct *src_fsp,
|
|---|
| 1806 | off_t src_off,
|
|---|
| 1807 | struct files_struct *dest_fsp,
|
|---|
| 1808 | off_t dest_off,
|
|---|
| 1809 | off_t num)
|
|---|
| 1810 | {
|
|---|
| 1811 | struct tevent_req *req;
|
|---|
| 1812 |
|
|---|
| 1813 | req = SMB_VFS_NEXT_COPY_CHUNK_SEND(handle, mem_ctx, ev, src_fsp,
|
|---|
| 1814 | src_off, dest_fsp, dest_off, num);
|
|---|
| 1815 |
|
|---|
| 1816 | do_log(SMB_VFS_OP_COPY_CHUNK_SEND, req, handle, "");
|
|---|
| 1817 |
|
|---|
| 1818 | return req;
|
|---|
| 1819 | }
|
|---|
| 1820 |
|
|---|
| 1821 | static NTSTATUS smb_full_audit_copy_chunk_recv(struct vfs_handle_struct *handle,
|
|---|
| 1822 | struct tevent_req *req,
|
|---|
| 1823 | off_t *copied)
|
|---|
| 1824 | {
|
|---|
| 1825 | NTSTATUS result;
|
|---|
| 1826 |
|
|---|
| 1827 | result = SMB_VFS_NEXT_COPY_CHUNK_RECV(handle, req, copied);
|
|---|
| 1828 |
|
|---|
| 1829 | do_log(SMB_VFS_OP_COPY_CHUNK_RECV, NT_STATUS_IS_OK(result), handle, "");
|
|---|
| 1830 |
|
|---|
| 1831 | return result;
|
|---|
| 1832 | }
|
|---|
| 1833 |
|
|---|
| 1834 | static NTSTATUS smb_full_audit_get_compression(vfs_handle_struct *handle,
|
|---|
| 1835 | TALLOC_CTX *mem_ctx,
|
|---|
| 1836 | struct files_struct *fsp,
|
|---|
| 1837 | struct smb_filename *smb_fname,
|
|---|
| 1838 | uint16_t *_compression_fmt)
|
|---|
| 1839 | {
|
|---|
| 1840 | NTSTATUS result;
|
|---|
| 1841 |
|
|---|
| 1842 | result = SMB_VFS_NEXT_GET_COMPRESSION(handle, mem_ctx, fsp, smb_fname,
|
|---|
| 1843 | _compression_fmt);
|
|---|
| 1844 |
|
|---|
| 1845 | do_log(SMB_VFS_OP_GET_COMPRESSION, NT_STATUS_IS_OK(result), handle,
|
|---|
| 1846 | "%s",
|
|---|
| 1847 | (fsp ? fsp_str_do_log(fsp) : smb_fname_str_do_log(smb_fname)));
|
|---|
| 1848 |
|
|---|
| 1849 | return result;
|
|---|
| 1850 | }
|
|---|
| 1851 |
|
|---|
| 1852 | static NTSTATUS smb_full_audit_set_compression(vfs_handle_struct *handle,
|
|---|
| 1853 | TALLOC_CTX *mem_ctx,
|
|---|
| 1854 | struct files_struct *fsp,
|
|---|
| 1855 | uint16_t compression_fmt)
|
|---|
| 1856 | {
|
|---|
| 1857 | NTSTATUS result;
|
|---|
| 1858 |
|
|---|
| 1859 | result = SMB_VFS_NEXT_SET_COMPRESSION(handle, mem_ctx, fsp,
|
|---|
| 1860 | compression_fmt);
|
|---|
| 1861 |
|
|---|
| 1862 | do_log(SMB_VFS_OP_SET_COMPRESSION, NT_STATUS_IS_OK(result), handle,
|
|---|
| 1863 | "%s", fsp_str_do_log(fsp));
|
|---|
| 1864 |
|
|---|
| 1865 | return result;
|
|---|
| 1866 | }
|
|---|
| 1867 |
|
|---|
| 1868 | static NTSTATUS smb_full_audit_readdir_attr(struct vfs_handle_struct *handle,
|
|---|
| 1869 | const struct smb_filename *fname,
|
|---|
| 1870 | TALLOC_CTX *mem_ctx,
|
|---|
| 1871 | struct readdir_attr_data **pattr_data)
|
|---|
| 1872 | {
|
|---|
| 1873 | NTSTATUS status;
|
|---|
| 1874 |
|
|---|
| 1875 | status = SMB_VFS_NEXT_READDIR_ATTR(handle, fname, mem_ctx, pattr_data);
|
|---|
| 1876 |
|
|---|
| 1877 | do_log(SMB_VFS_OP_READDIR_ATTR, NT_STATUS_IS_OK(status), handle, "%s",
|
|---|
| 1878 | smb_fname_str_do_log(fname));
|
|---|
| 1879 |
|
|---|
| 1880 | return status;
|
|---|
| 1881 | }
|
|---|
| 1882 |
|
|---|
| 1883 | static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1884 | uint32_t security_info,
|
|---|
| 1885 | TALLOC_CTX *mem_ctx,
|
|---|
| 1886 | struct security_descriptor **ppdesc)
|
|---|
| 1887 | {
|
|---|
| 1888 | NTSTATUS result;
|
|---|
| 1889 |
|
|---|
| 1890 | result = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info,
|
|---|
| 1891 | mem_ctx, ppdesc);
|
|---|
| 1892 |
|
|---|
| 1893 | do_log(SMB_VFS_OP_FGET_NT_ACL, NT_STATUS_IS_OK(result), handle,
|
|---|
| 1894 | "%s", fsp_str_do_log(fsp));
|
|---|
| 1895 |
|
|---|
| 1896 | return result;
|
|---|
| 1897 | }
|
|---|
| 1898 |
|
|---|
| 1899 | static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle,
|
|---|
| 1900 | const char *name,
|
|---|
| 1901 | uint32_t security_info,
|
|---|
| 1902 | TALLOC_CTX *mem_ctx,
|
|---|
| 1903 | struct security_descriptor **ppdesc)
|
|---|
| 1904 | {
|
|---|
| 1905 | NTSTATUS result;
|
|---|
| 1906 |
|
|---|
| 1907 | result = SMB_VFS_NEXT_GET_NT_ACL(handle, name, security_info,
|
|---|
| 1908 | mem_ctx, ppdesc);
|
|---|
| 1909 |
|
|---|
| 1910 | do_log(SMB_VFS_OP_GET_NT_ACL, NT_STATUS_IS_OK(result), handle,
|
|---|
| 1911 | "%s", name);
|
|---|
| 1912 |
|
|---|
| 1913 | return result;
|
|---|
| 1914 | }
|
|---|
| 1915 |
|
|---|
| 1916 | static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1917 | uint32_t security_info_sent,
|
|---|
| 1918 | const struct security_descriptor *psd)
|
|---|
| 1919 | {
|
|---|
| 1920 | struct vfs_full_audit_private_data *pd;
|
|---|
| 1921 | NTSTATUS result;
|
|---|
| 1922 | char *sd = NULL;
|
|---|
| 1923 |
|
|---|
| 1924 | SMB_VFS_HANDLE_GET_DATA(handle, pd,
|
|---|
| 1925 | struct vfs_full_audit_private_data,
|
|---|
| 1926 | return NT_STATUS_INTERNAL_ERROR);
|
|---|
| 1927 |
|
|---|
| 1928 | if (pd->log_secdesc) {
|
|---|
| 1929 | sd = sddl_encode(talloc_tos(), psd, get_global_sam_sid());
|
|---|
| 1930 | }
|
|---|
| 1931 |
|
|---|
| 1932 | result = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
|
|---|
| 1933 |
|
|---|
| 1934 | do_log(SMB_VFS_OP_FSET_NT_ACL, NT_STATUS_IS_OK(result), handle,
|
|---|
| 1935 | "%s [%s]", fsp_str_do_log(fsp), sd ? sd : "");
|
|---|
| 1936 |
|
|---|
| 1937 | TALLOC_FREE(sd);
|
|---|
| 1938 |
|
|---|
| 1939 | return result;
|
|---|
| 1940 | }
|
|---|
| 1941 |
|
|---|
| 1942 | static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
|
|---|
| 1943 | const char *path, mode_t mode)
|
|---|
| 1944 | {
|
|---|
| 1945 | int result;
|
|---|
| 1946 |
|
|---|
| 1947 | result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
|
|---|
| 1948 |
|
|---|
| 1949 | do_log(SMB_VFS_OP_CHMOD_ACL, (result >= 0), handle,
|
|---|
| 1950 | "%s|%o", path, mode);
|
|---|
| 1951 |
|
|---|
| 1952 | return result;
|
|---|
| 1953 | }
|
|---|
| 1954 |
|
|---|
| 1955 | static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 1956 | mode_t mode)
|
|---|
| 1957 | {
|
|---|
| 1958 | int result;
|
|---|
| 1959 |
|
|---|
| 1960 | result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
|
|---|
| 1961 |
|
|---|
| 1962 | do_log(SMB_VFS_OP_FCHMOD_ACL, (result >= 0), handle,
|
|---|
| 1963 | "%s|%o", fsp_str_do_log(fsp), mode);
|
|---|
| 1964 |
|
|---|
| 1965 | return result;
|
|---|
| 1966 | }
|
|---|
| 1967 |
|
|---|
| 1968 | static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
|
|---|
| 1969 | const char *path_p,
|
|---|
| 1970 | SMB_ACL_TYPE_T type,
|
|---|
| 1971 | TALLOC_CTX *mem_ctx)
|
|---|
| 1972 | {
|
|---|
| 1973 | SMB_ACL_T result;
|
|---|
| 1974 |
|
|---|
| 1975 | result = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, path_p, type, mem_ctx);
|
|---|
| 1976 |
|
|---|
| 1977 | do_log(SMB_VFS_OP_SYS_ACL_GET_FILE, (result != NULL), handle,
|
|---|
| 1978 | "%s", path_p);
|
|---|
| 1979 |
|
|---|
| 1980 | return result;
|
|---|
| 1981 | }
|
|---|
| 1982 |
|
|---|
| 1983 | static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
|
|---|
| 1984 | files_struct *fsp, TALLOC_CTX *mem_ctx)
|
|---|
| 1985 | {
|
|---|
| 1986 | SMB_ACL_T result;
|
|---|
| 1987 |
|
|---|
| 1988 | result = SMB_VFS_NEXT_SYS_ACL_GET_FD(handle, fsp, mem_ctx);
|
|---|
| 1989 |
|
|---|
| 1990 | do_log(SMB_VFS_OP_SYS_ACL_GET_FD, (result != NULL), handle,
|
|---|
| 1991 | "%s", fsp_str_do_log(fsp));
|
|---|
| 1992 |
|
|---|
| 1993 | return result;
|
|---|
| 1994 | }
|
|---|
| 1995 |
|
|---|
| 1996 | static int smb_full_audit_sys_acl_blob_get_file(vfs_handle_struct *handle,
|
|---|
| 1997 | const char *path_p,
|
|---|
| 1998 | TALLOC_CTX *mem_ctx,
|
|---|
| 1999 | char **blob_description,
|
|---|
| 2000 | DATA_BLOB *blob)
|
|---|
| 2001 | {
|
|---|
| 2002 | int result;
|
|---|
| 2003 |
|
|---|
| 2004 | result = SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FILE(handle, path_p, mem_ctx, blob_description, blob);
|
|---|
| 2005 |
|
|---|
| 2006 | do_log(SMB_VFS_OP_SYS_ACL_BLOB_GET_FILE, (result >= 0), handle,
|
|---|
| 2007 | "%s", path_p);
|
|---|
| 2008 |
|
|---|
| 2009 | return result;
|
|---|
| 2010 | }
|
|---|
| 2011 |
|
|---|
| 2012 | static int smb_full_audit_sys_acl_blob_get_fd(vfs_handle_struct *handle,
|
|---|
| 2013 | files_struct *fsp,
|
|---|
| 2014 | TALLOC_CTX *mem_ctx,
|
|---|
| 2015 | char **blob_description,
|
|---|
| 2016 | DATA_BLOB *blob)
|
|---|
| 2017 | {
|
|---|
| 2018 | int result;
|
|---|
| 2019 |
|
|---|
| 2020 | result = SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle, fsp, mem_ctx, blob_description, blob);
|
|---|
| 2021 |
|
|---|
| 2022 | do_log(SMB_VFS_OP_SYS_ACL_BLOB_GET_FD, (result >= 0), handle,
|
|---|
| 2023 | "%s", fsp_str_do_log(fsp));
|
|---|
| 2024 |
|
|---|
| 2025 | return result;
|
|---|
| 2026 | }
|
|---|
| 2027 |
|
|---|
| 2028 | static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
|
|---|
| 2029 |
|
|---|
| 2030 | const char *name, SMB_ACL_TYPE_T acltype,
|
|---|
| 2031 | SMB_ACL_T theacl)
|
|---|
| 2032 | {
|
|---|
| 2033 | int result;
|
|---|
| 2034 |
|
|---|
| 2035 | result = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype,
|
|---|
| 2036 | theacl);
|
|---|
| 2037 |
|
|---|
| 2038 | do_log(SMB_VFS_OP_SYS_ACL_SET_FILE, (result >= 0), handle,
|
|---|
| 2039 | "%s", name);
|
|---|
| 2040 |
|
|---|
| 2041 | return result;
|
|---|
| 2042 | }
|
|---|
| 2043 |
|
|---|
| 2044 | static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
|
|---|
| 2045 | SMB_ACL_T theacl)
|
|---|
| 2046 | {
|
|---|
| 2047 | int result;
|
|---|
| 2048 |
|
|---|
| 2049 | result = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
|
|---|
| 2050 |
|
|---|
| 2051 | do_log(SMB_VFS_OP_SYS_ACL_SET_FD, (result >= 0), handle,
|
|---|
| 2052 | "%s", fsp_str_do_log(fsp));
|
|---|
| 2053 |
|
|---|
| 2054 | return result;
|
|---|
| 2055 | }
|
|---|
| 2056 |
|
|---|
| 2057 | static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
|
|---|
| 2058 |
|
|---|
| 2059 | const char *path)
|
|---|
| 2060 | {
|
|---|
| 2061 | int result;
|
|---|
| 2062 |
|
|---|
| 2063 | result = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, path);
|
|---|
| 2064 |
|
|---|
| 2065 | do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, (result >= 0), handle,
|
|---|
| 2066 | "%s", path);
|
|---|
| 2067 |
|
|---|
| 2068 | return result;
|
|---|
| 2069 | }
|
|---|
| 2070 |
|
|---|
| 2071 | static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
|
|---|
| 2072 | const char *path,
|
|---|
| 2073 | const char *name, void *value, size_t size)
|
|---|
| 2074 | {
|
|---|
| 2075 | ssize_t result;
|
|---|
| 2076 |
|
|---|
| 2077 | result = SMB_VFS_NEXT_GETXATTR(handle, path, name, value, size);
|
|---|
| 2078 |
|
|---|
| 2079 | do_log(SMB_VFS_OP_GETXATTR, (result >= 0), handle,
|
|---|
| 2080 | "%s|%s", path, name);
|
|---|
| 2081 |
|
|---|
| 2082 | return result;
|
|---|
| 2083 | }
|
|---|
| 2084 |
|
|---|
| 2085 | static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
|
|---|
| 2086 | struct files_struct *fsp,
|
|---|
| 2087 | const char *name, void *value, size_t size)
|
|---|
| 2088 | {
|
|---|
| 2089 | ssize_t result;
|
|---|
| 2090 |
|
|---|
| 2091 | result = SMB_VFS_NEXT_FGETXATTR(handle, fsp, name, value, size);
|
|---|
| 2092 |
|
|---|
| 2093 | do_log(SMB_VFS_OP_FGETXATTR, (result >= 0), handle,
|
|---|
| 2094 | "%s|%s", fsp_str_do_log(fsp), name);
|
|---|
| 2095 |
|
|---|
| 2096 | return result;
|
|---|
| 2097 | }
|
|---|
| 2098 |
|
|---|
| 2099 | static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
|
|---|
| 2100 | const char *path, char *list, size_t size)
|
|---|
| 2101 | {
|
|---|
| 2102 | ssize_t result;
|
|---|
| 2103 |
|
|---|
| 2104 | result = SMB_VFS_NEXT_LISTXATTR(handle, path, list, size);
|
|---|
| 2105 |
|
|---|
| 2106 | do_log(SMB_VFS_OP_LISTXATTR, (result >= 0), handle, "%s", path);
|
|---|
| 2107 |
|
|---|
| 2108 | return result;
|
|---|
| 2109 | }
|
|---|
| 2110 |
|
|---|
| 2111 | static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
|
|---|
| 2112 | struct files_struct *fsp, char *list,
|
|---|
| 2113 | size_t size)
|
|---|
| 2114 | {
|
|---|
| 2115 | ssize_t result;
|
|---|
| 2116 |
|
|---|
| 2117 | result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
|
|---|
| 2118 |
|
|---|
| 2119 | do_log(SMB_VFS_OP_FLISTXATTR, (result >= 0), handle,
|
|---|
| 2120 | "%s", fsp_str_do_log(fsp));
|
|---|
| 2121 |
|
|---|
| 2122 | return result;
|
|---|
| 2123 | }
|
|---|
| 2124 |
|
|---|
| 2125 | static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
|
|---|
| 2126 | const char *path,
|
|---|
| 2127 | const char *name)
|
|---|
| 2128 | {
|
|---|
| 2129 | int result;
|
|---|
| 2130 |
|
|---|
| 2131 | result = SMB_VFS_NEXT_REMOVEXATTR(handle, path, name);
|
|---|
| 2132 |
|
|---|
| 2133 | do_log(SMB_VFS_OP_REMOVEXATTR, (result >= 0), handle,
|
|---|
| 2134 | "%s|%s", path, name);
|
|---|
| 2135 |
|
|---|
| 2136 | return result;
|
|---|
| 2137 | }
|
|---|
| 2138 |
|
|---|
| 2139 | static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
|
|---|
| 2140 | struct files_struct *fsp,
|
|---|
| 2141 | const char *name)
|
|---|
| 2142 | {
|
|---|
| 2143 | int result;
|
|---|
| 2144 |
|
|---|
| 2145 | result = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
|
|---|
| 2146 |
|
|---|
| 2147 | do_log(SMB_VFS_OP_FREMOVEXATTR, (result >= 0), handle,
|
|---|
| 2148 | "%s|%s", fsp_str_do_log(fsp), name);
|
|---|
| 2149 |
|
|---|
| 2150 | return result;
|
|---|
| 2151 | }
|
|---|
| 2152 |
|
|---|
| 2153 | static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
|
|---|
| 2154 | const char *path,
|
|---|
| 2155 | const char *name, const void *value, size_t size,
|
|---|
| 2156 | int flags)
|
|---|
| 2157 | {
|
|---|
| 2158 | int result;
|
|---|
| 2159 |
|
|---|
| 2160 | result = SMB_VFS_NEXT_SETXATTR(handle, path, name, value, size,
|
|---|
| 2161 | flags);
|
|---|
| 2162 |
|
|---|
| 2163 | do_log(SMB_VFS_OP_SETXATTR, (result >= 0), handle,
|
|---|
| 2164 | "%s|%s", path, name);
|
|---|
| 2165 |
|
|---|
| 2166 | return result;
|
|---|
| 2167 | }
|
|---|
| 2168 |
|
|---|
| 2169 | static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
|
|---|
| 2170 | struct files_struct *fsp, const char *name,
|
|---|
| 2171 | const void *value, size_t size, int flags)
|
|---|
| 2172 | {
|
|---|
| 2173 | int result;
|
|---|
| 2174 |
|
|---|
| 2175 | result = SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags);
|
|---|
| 2176 |
|
|---|
| 2177 | do_log(SMB_VFS_OP_FSETXATTR, (result >= 0), handle,
|
|---|
| 2178 | "%s|%s", fsp_str_do_log(fsp), name);
|
|---|
| 2179 |
|
|---|
| 2180 | return result;
|
|---|
| 2181 | }
|
|---|
| 2182 |
|
|---|
| 2183 | static bool smb_full_audit_aio_force(struct vfs_handle_struct *handle,
|
|---|
| 2184 | struct files_struct *fsp)
|
|---|
| 2185 | {
|
|---|
| 2186 | bool result;
|
|---|
| 2187 |
|
|---|
| 2188 | result = SMB_VFS_NEXT_AIO_FORCE(handle, fsp);
|
|---|
| 2189 | do_log(SMB_VFS_OP_AIO_FORCE, result, handle,
|
|---|
| 2190 | "%s", fsp_str_do_log(fsp));
|
|---|
| 2191 |
|
|---|
| 2192 | return result;
|
|---|
| 2193 | }
|
|---|
| 2194 |
|
|---|
| 2195 | static bool smb_full_audit_is_offline(struct vfs_handle_struct *handle,
|
|---|
| 2196 | const struct smb_filename *fname,
|
|---|
| 2197 | SMB_STRUCT_STAT *sbuf)
|
|---|
| 2198 | {
|
|---|
| 2199 | bool result;
|
|---|
| 2200 |
|
|---|
| 2201 | result = SMB_VFS_NEXT_IS_OFFLINE(handle, fname, sbuf);
|
|---|
| 2202 | do_log(SMB_VFS_OP_IS_OFFLINE, result, handle, "%s",
|
|---|
| 2203 | smb_fname_str_do_log(fname));
|
|---|
| 2204 | return result;
|
|---|
| 2205 | }
|
|---|
| 2206 |
|
|---|
| 2207 | static int smb_full_audit_set_offline(struct vfs_handle_struct *handle,
|
|---|
| 2208 | const struct smb_filename *fname)
|
|---|
| 2209 | {
|
|---|
| 2210 | int result;
|
|---|
| 2211 |
|
|---|
| 2212 | result = SMB_VFS_NEXT_SET_OFFLINE(handle, fname);
|
|---|
| 2213 | do_log(SMB_VFS_OP_SET_OFFLINE, result >= 0, handle, "%s",
|
|---|
| 2214 | smb_fname_str_do_log(fname));
|
|---|
| 2215 | return result;
|
|---|
| 2216 | }
|
|---|
| 2217 |
|
|---|
| 2218 | static struct vfs_fn_pointers vfs_full_audit_fns = {
|
|---|
| 2219 |
|
|---|
| 2220 | /* Disk operations */
|
|---|
| 2221 |
|
|---|
| 2222 | .connect_fn = smb_full_audit_connect,
|
|---|
| 2223 | .disconnect_fn = smb_full_audit_disconnect,
|
|---|
| 2224 | .disk_free_fn = smb_full_audit_disk_free,
|
|---|
| 2225 | .get_quota_fn = smb_full_audit_get_quota,
|
|---|
| 2226 | .set_quota_fn = smb_full_audit_set_quota,
|
|---|
| 2227 | .get_shadow_copy_data_fn = smb_full_audit_get_shadow_copy_data,
|
|---|
| 2228 | .statvfs_fn = smb_full_audit_statvfs,
|
|---|
| 2229 | .fs_capabilities_fn = smb_full_audit_fs_capabilities,
|
|---|
| 2230 | .snap_check_path_fn = smb_full_audit_snap_check_path,
|
|---|
| 2231 | .snap_create_fn = smb_full_audit_snap_create,
|
|---|
| 2232 | .snap_delete_fn = smb_full_audit_snap_delete,
|
|---|
| 2233 | .opendir_fn = smb_full_audit_opendir,
|
|---|
| 2234 | .fdopendir_fn = smb_full_audit_fdopendir,
|
|---|
| 2235 | .readdir_fn = smb_full_audit_readdir,
|
|---|
| 2236 | .seekdir_fn = smb_full_audit_seekdir,
|
|---|
| 2237 | .telldir_fn = smb_full_audit_telldir,
|
|---|
| 2238 | .rewind_dir_fn = smb_full_audit_rewinddir,
|
|---|
| 2239 | .mkdir_fn = smb_full_audit_mkdir,
|
|---|
| 2240 | .rmdir_fn = smb_full_audit_rmdir,
|
|---|
| 2241 | .closedir_fn = smb_full_audit_closedir,
|
|---|
| 2242 | .init_search_op_fn = smb_full_audit_init_search_op,
|
|---|
| 2243 | .open_fn = smb_full_audit_open,
|
|---|
| 2244 | .create_file_fn = smb_full_audit_create_file,
|
|---|
| 2245 | .close_fn = smb_full_audit_close,
|
|---|
| 2246 | .read_fn = smb_full_audit_read,
|
|---|
| 2247 | .pread_fn = smb_full_audit_pread,
|
|---|
| 2248 | .pread_send_fn = smb_full_audit_pread_send,
|
|---|
| 2249 | .pread_recv_fn = smb_full_audit_pread_recv,
|
|---|
| 2250 | .write_fn = smb_full_audit_write,
|
|---|
| 2251 | .pwrite_fn = smb_full_audit_pwrite,
|
|---|
| 2252 | .pwrite_send_fn = smb_full_audit_pwrite_send,
|
|---|
| 2253 | .pwrite_recv_fn = smb_full_audit_pwrite_recv,
|
|---|
| 2254 | .lseek_fn = smb_full_audit_lseek,
|
|---|
| 2255 | .sendfile_fn = smb_full_audit_sendfile,
|
|---|
| 2256 | .recvfile_fn = smb_full_audit_recvfile,
|
|---|
| 2257 | .rename_fn = smb_full_audit_rename,
|
|---|
| 2258 | .fsync_fn = smb_full_audit_fsync,
|
|---|
| 2259 | .fsync_send_fn = smb_full_audit_fsync_send,
|
|---|
| 2260 | .fsync_recv_fn = smb_full_audit_fsync_recv,
|
|---|
| 2261 | .stat_fn = smb_full_audit_stat,
|
|---|
| 2262 | .fstat_fn = smb_full_audit_fstat,
|
|---|
| 2263 | .lstat_fn = smb_full_audit_lstat,
|
|---|
| 2264 | .get_alloc_size_fn = smb_full_audit_get_alloc_size,
|
|---|
| 2265 | .unlink_fn = smb_full_audit_unlink,
|
|---|
| 2266 | .chmod_fn = smb_full_audit_chmod,
|
|---|
| 2267 | .fchmod_fn = smb_full_audit_fchmod,
|
|---|
| 2268 | .chown_fn = smb_full_audit_chown,
|
|---|
| 2269 | .fchown_fn = smb_full_audit_fchown,
|
|---|
| 2270 | .lchown_fn = smb_full_audit_lchown,
|
|---|
| 2271 | .chdir_fn = smb_full_audit_chdir,
|
|---|
| 2272 | .getwd_fn = smb_full_audit_getwd,
|
|---|
| 2273 | .ntimes_fn = smb_full_audit_ntimes,
|
|---|
| 2274 | .ftruncate_fn = smb_full_audit_ftruncate,
|
|---|
| 2275 | .fallocate_fn = smb_full_audit_fallocate,
|
|---|
| 2276 | .lock_fn = smb_full_audit_lock,
|
|---|
| 2277 | .kernel_flock_fn = smb_full_audit_kernel_flock,
|
|---|
| 2278 | .linux_setlease_fn = smb_full_audit_linux_setlease,
|
|---|
| 2279 | .getlock_fn = smb_full_audit_getlock,
|
|---|
| 2280 | .symlink_fn = smb_full_audit_symlink,
|
|---|
| 2281 | .readlink_fn = smb_full_audit_readlink,
|
|---|
| 2282 | .link_fn = smb_full_audit_link,
|
|---|
| 2283 | .mknod_fn = smb_full_audit_mknod,
|
|---|
| 2284 | .realpath_fn = smb_full_audit_realpath,
|
|---|
| 2285 | .chflags_fn = smb_full_audit_chflags,
|
|---|
| 2286 | .file_id_create_fn = smb_full_audit_file_id_create,
|
|---|
| 2287 | .streaminfo_fn = smb_full_audit_streaminfo,
|
|---|
| 2288 | .get_real_filename_fn = smb_full_audit_get_real_filename,
|
|---|
| 2289 | .connectpath_fn = smb_full_audit_connectpath,
|
|---|
| 2290 | .brl_lock_windows_fn = smb_full_audit_brl_lock_windows,
|
|---|
| 2291 | .brl_unlock_windows_fn = smb_full_audit_brl_unlock_windows,
|
|---|
| 2292 | .brl_cancel_windows_fn = smb_full_audit_brl_cancel_windows,
|
|---|
| 2293 | .strict_lock_fn = smb_full_audit_strict_lock,
|
|---|
| 2294 | .strict_unlock_fn = smb_full_audit_strict_unlock,
|
|---|
| 2295 | .translate_name_fn = smb_full_audit_translate_name,
|
|---|
| 2296 | .copy_chunk_send_fn = smb_full_audit_copy_chunk_send,
|
|---|
| 2297 | .copy_chunk_recv_fn = smb_full_audit_copy_chunk_recv,
|
|---|
| 2298 | .get_compression_fn = smb_full_audit_get_compression,
|
|---|
| 2299 | .set_compression_fn = smb_full_audit_set_compression,
|
|---|
| 2300 | .readdir_attr_fn = smb_full_audit_readdir_attr,
|
|---|
| 2301 | .fget_nt_acl_fn = smb_full_audit_fget_nt_acl,
|
|---|
| 2302 | .get_nt_acl_fn = smb_full_audit_get_nt_acl,
|
|---|
| 2303 | .fset_nt_acl_fn = smb_full_audit_fset_nt_acl,
|
|---|
| 2304 | .chmod_acl_fn = smb_full_audit_chmod_acl,
|
|---|
| 2305 | .fchmod_acl_fn = smb_full_audit_fchmod_acl,
|
|---|
| 2306 | .sys_acl_get_file_fn = smb_full_audit_sys_acl_get_file,
|
|---|
| 2307 | .sys_acl_get_fd_fn = smb_full_audit_sys_acl_get_fd,
|
|---|
| 2308 | .sys_acl_blob_get_file_fn = smb_full_audit_sys_acl_blob_get_file,
|
|---|
| 2309 | .sys_acl_blob_get_fd_fn = smb_full_audit_sys_acl_blob_get_fd,
|
|---|
| 2310 | .sys_acl_set_file_fn = smb_full_audit_sys_acl_set_file,
|
|---|
| 2311 | .sys_acl_set_fd_fn = smb_full_audit_sys_acl_set_fd,
|
|---|
| 2312 | .sys_acl_delete_def_file_fn = smb_full_audit_sys_acl_delete_def_file,
|
|---|
| 2313 | .getxattr_fn = smb_full_audit_getxattr,
|
|---|
| 2314 | .fgetxattr_fn = smb_full_audit_fgetxattr,
|
|---|
| 2315 | .listxattr_fn = smb_full_audit_listxattr,
|
|---|
| 2316 | .flistxattr_fn = smb_full_audit_flistxattr,
|
|---|
| 2317 | .removexattr_fn = smb_full_audit_removexattr,
|
|---|
| 2318 | .fremovexattr_fn = smb_full_audit_fremovexattr,
|
|---|
| 2319 | .setxattr_fn = smb_full_audit_setxattr,
|
|---|
| 2320 | .fsetxattr_fn = smb_full_audit_fsetxattr,
|
|---|
| 2321 | .aio_force_fn = smb_full_audit_aio_force,
|
|---|
| 2322 | .is_offline_fn = smb_full_audit_is_offline,
|
|---|
| 2323 | .set_offline_fn = smb_full_audit_set_offline,
|
|---|
| 2324 | };
|
|---|
| 2325 |
|
|---|
| 2326 | static_decl_vfs;
|
|---|
| 2327 | NTSTATUS vfs_full_audit_init(void)
|
|---|
| 2328 | {
|
|---|
| 2329 | NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
|
|---|
| 2330 | "full_audit", &vfs_full_audit_fns);
|
|---|
| 2331 |
|
|---|
| 2332 | if (!NT_STATUS_IS_OK(ret))
|
|---|
| 2333 | return ret;
|
|---|
| 2334 |
|
|---|
| 2335 | vfs_full_audit_debug_level = debug_add_class("full_audit");
|
|---|
| 2336 | if (vfs_full_audit_debug_level == -1) {
|
|---|
| 2337 | vfs_full_audit_debug_level = DBGC_VFS;
|
|---|
| 2338 | DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
|
|---|
| 2339 | "class!\n"));
|
|---|
| 2340 | } else {
|
|---|
| 2341 | DEBUG(10, ("vfs_full_audit: Debug class number of "
|
|---|
| 2342 | "'full_audit': %d\n", vfs_full_audit_debug_level));
|
|---|
| 2343 | }
|
|---|
| 2344 |
|
|---|
| 2345 | return ret;
|
|---|
| 2346 | }
|
|---|