Yay ! Remove a VFS entry. Removed the set_nt_acl() call,
[Samba/gebeck_regimport.git] / source / modules / vfs_full_audit.c
blob19a1d02de47996e8821e5aab30b15a6489e57028
1 /*
2 * Auditing VFS module for samba. Log selected file operations to syslog
3 * facility.
5 * Copyright (C) Tim Potter, 1999-2000
6 * Copyright (C) Alexander Bokovoy, 2002
7 * Copyright (C) John H Terpstra, 2003
8 * Copyright (C) Stefan (metze) Metzmacher, 2003
9 * Copyright (C) Volker Lendecke, 2004
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <http://www.gnu.org/licenses/>.
26 * This module implements parseable logging for all Samba VFS operations.
28 * You use it as follows:
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
37 * vfs op can be "all" which means log all operations.
38 * vfs op can be "none" which means no logging.
40 * This leads to syslog entries of the form:
41 * smbd_audit: nobody|192.168.234.1|opendir|ok|.
42 * smbd_audit: nobody|192.168.234.1|open|fail (File not found)|r|x.txt
44 * where "nobody" is the connected username and "192.168.234.1" is the
45 * client's IP address.
47 * Options:
49 * prefix: A macro expansion template prepended to the syslog entry.
51 * success: A list of VFS operations for which a successful completion should
52 * be logged. Defaults to no logging at all. The special operation "all" logs
53 * - you guessed it - everything.
55 * failure: A list of VFS operations for which failure to complete should be
56 * logged. Defaults to logging everything.
60 #include "includes.h"
62 extern userdom_struct current_user_info;
64 static int vfs_full_audit_debug_level = DBGC_VFS;
66 struct vfs_full_audit_private_data {
67 struct bitmap *success_ops;
68 struct bitmap *failure_ops;
71 #undef DBGC_CLASS
72 #define DBGC_CLASS vfs_full_audit_debug_level
74 /* Function prototypes */
76 static int smb_full_audit_connect(vfs_handle_struct *handle,
77 const char *svc, const char *user);
78 static void smb_full_audit_disconnect(vfs_handle_struct *handle);
79 static SMB_BIG_UINT smb_full_audit_disk_free(vfs_handle_struct *handle,
80 const char *path,
81 bool small_query, SMB_BIG_UINT *bsize,
82 SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize);
83 static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
84 enum SMB_QUOTA_TYPE qtype, unid_t id,
85 SMB_DISK_QUOTA *qt);
86 static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
87 enum SMB_QUOTA_TYPE qtype, unid_t id,
88 SMB_DISK_QUOTA *qt);
89 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
90 struct files_struct *fsp,
91 SHADOW_COPY_DATA *shadow_copy_data, bool labels);
92 static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
93 const char *path,
94 struct vfs_statvfs_struct *statbuf);
96 static SMB_STRUCT_DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
97 const char *fname, const char *mask, uint32 attr);
98 static SMB_STRUCT_DIRENT *smb_full_audit_readdir(vfs_handle_struct *handle,
99 SMB_STRUCT_DIR *dirp);
100 static void smb_full_audit_seekdir(vfs_handle_struct *handle,
101 SMB_STRUCT_DIR *dirp, long offset);
102 static long smb_full_audit_telldir(vfs_handle_struct *handle,
103 SMB_STRUCT_DIR *dirp);
104 static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
105 SMB_STRUCT_DIR *dirp);
106 static int smb_full_audit_mkdir(vfs_handle_struct *handle,
107 const char *path, mode_t mode);
108 static int smb_full_audit_rmdir(vfs_handle_struct *handle,
109 const char *path);
110 static int smb_full_audit_closedir(vfs_handle_struct *handle,
111 SMB_STRUCT_DIR *dirp);
112 static int smb_full_audit_open(vfs_handle_struct *handle,
113 const char *fname, files_struct *fsp, int flags, mode_t mode);
114 static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp);
115 static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
116 void *data, size_t n);
117 static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
118 void *data, size_t n, SMB_OFF_T offset);
119 static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
120 const void *data, size_t n);
121 static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
122 const void *data, size_t n,
123 SMB_OFF_T offset);
124 static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
125 SMB_OFF_T offset, int whence);
126 static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
127 files_struct *fromfsp,
128 const DATA_BLOB *hdr, SMB_OFF_T offset,
129 size_t n);
130 static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
131 files_struct *tofsp,
132 SMB_OFF_T offset,
133 size_t n);
134 static int smb_full_audit_rename(vfs_handle_struct *handle,
135 const char *oldname, const char *newname);
136 static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp);
137 static int smb_full_audit_stat(vfs_handle_struct *handle,
138 const char *fname, SMB_STRUCT_STAT *sbuf);
139 static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
140 SMB_STRUCT_STAT *sbuf);
141 static int smb_full_audit_lstat(vfs_handle_struct *handle,
142 const char *path, SMB_STRUCT_STAT *sbuf);
143 static int smb_full_audit_unlink(vfs_handle_struct *handle,
144 const char *path);
145 static int smb_full_audit_chmod(vfs_handle_struct *handle,
146 const char *path, mode_t mode);
147 static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
148 mode_t mode);
149 static int smb_full_audit_chown(vfs_handle_struct *handle,
150 const char *path, uid_t uid, gid_t gid);
151 static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
152 uid_t uid, gid_t gid);
153 static int smb_full_audit_lchown(vfs_handle_struct *handle,
154 const char *path, uid_t uid, gid_t gid);
155 static int smb_full_audit_chdir(vfs_handle_struct *handle,
156 const char *path);
157 static char *smb_full_audit_getwd(vfs_handle_struct *handle,
158 char *path);
159 static int smb_full_audit_ntimes(vfs_handle_struct *handle,
160 const char *path, const struct timespec ts[2]);
161 static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
162 SMB_OFF_T len);
163 static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
164 int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
165 static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
166 struct files_struct *fsp,
167 uint32 share_mode);
168 static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
169 int leasetype);
170 static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
171 SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid);
172 static int smb_full_audit_symlink(vfs_handle_struct *handle,
173 const char *oldpath, const char *newpath);
174 static int smb_full_audit_readlink(vfs_handle_struct *handle,
175 const char *path, char *buf, size_t bufsiz);
176 static int smb_full_audit_link(vfs_handle_struct *handle,
177 const char *oldpath, const char *newpath);
178 static int smb_full_audit_mknod(vfs_handle_struct *handle,
179 const char *pathname, mode_t mode, SMB_DEV_T dev);
180 static char *smb_full_audit_realpath(vfs_handle_struct *handle,
181 const char *path, char *resolved_path);
182 static NTSTATUS smb_full_audit_notify_watch(struct vfs_handle_struct *handle,
183 struct sys_notify_context *ctx,
184 struct notify_entry *e,
185 void (*callback)(struct sys_notify_context *ctx,
186 void *private_data,
187 struct notify_event *ev),
188 void *private_data, void *handle_p);
189 static int smb_full_audit_chflags(vfs_handle_struct *handle,
190 const char *path, unsigned int flags);
191 static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
192 SMB_DEV_T dev, SMB_INO_T inode);
193 static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
194 uint32 security_info,
195 SEC_DESC **ppdesc);
196 static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
197 const char *name, uint32 security_info,
198 SEC_DESC **ppdesc);
199 static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
200 uint32 security_info_sent,
201 SEC_DESC *psd);
202 static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
203 const char *path, mode_t mode);
204 static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
205 mode_t mode);
206 static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct *handle,
207 SMB_ACL_T theacl, int entry_id,
208 SMB_ACL_ENTRY_T *entry_p);
209 static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct *handle,
210 SMB_ACL_ENTRY_T entry_d,
211 SMB_ACL_TAG_T *tag_type_p);
212 static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct *handle,
213 SMB_ACL_ENTRY_T entry_d,
214 SMB_ACL_PERMSET_T *permset_p);
215 static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct *handle,
216 SMB_ACL_ENTRY_T entry_d);
217 static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
218 const char *path_p,
219 SMB_ACL_TYPE_T type);
220 static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
221 files_struct *fsp);
222 static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct *handle,
223 SMB_ACL_PERMSET_T permset);
224 static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct *handle,
225 SMB_ACL_PERMSET_T permset,
226 SMB_ACL_PERM_T perm);
227 static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct *handle,
228 SMB_ACL_T theacl,
229 ssize_t *plen);
230 static SMB_ACL_T smb_full_audit_sys_acl_init(vfs_handle_struct *handle,
231 int count);
232 static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct *handle,
233 SMB_ACL_T *pacl,
234 SMB_ACL_ENTRY_T *pentry);
235 static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct *handle,
236 SMB_ACL_ENTRY_T entry,
237 SMB_ACL_TAG_T tagtype);
238 static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct *handle,
239 SMB_ACL_ENTRY_T entry,
240 void *qual);
241 static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct *handle,
242 SMB_ACL_ENTRY_T entry,
243 SMB_ACL_PERMSET_T permset);
244 static int smb_full_audit_sys_acl_valid(vfs_handle_struct *handle,
245 SMB_ACL_T theacl );
246 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
247 const char *name, SMB_ACL_TYPE_T acltype,
248 SMB_ACL_T theacl);
249 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
250 SMB_ACL_T theacl);
251 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
252 const char *path);
253 static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct *handle,
254 SMB_ACL_PERMSET_T permset,
255 SMB_ACL_PERM_T perm);
256 static int smb_full_audit_sys_acl_free_text(vfs_handle_struct *handle,
257 char *text);
258 static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct *handle,
259 SMB_ACL_T posix_acl);
260 static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct *handle,
261 void *qualifier,
262 SMB_ACL_TAG_T tagtype);
263 static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
264 const char *path,
265 const char *name, void *value, size_t size);
266 static ssize_t smb_full_audit_lgetxattr(struct vfs_handle_struct *handle,
267 const char *path, const char *name,
268 void *value, size_t size);
269 static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
270 struct files_struct *fsp,
271 const char *name, void *value, size_t size);
272 static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
273 const char *path, char *list, size_t size);
274 static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
275 const char *path, char *list, size_t size);
276 static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
277 struct files_struct *fsp, char *list,
278 size_t size);
279 static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
280 const char *path,
281 const char *name);
282 static int smb_full_audit_lremovexattr(struct vfs_handle_struct *handle,
283 const char *path,
284 const char *name);
285 static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
286 struct files_struct *fsp,
287 const char *name);
288 static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
289 const char *path,
290 const char *name, const void *value, size_t size,
291 int flags);
292 static int smb_full_audit_lsetxattr(struct vfs_handle_struct *handle,
293 const char *path,
294 const char *name, const void *value, size_t size,
295 int flags);
296 static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
297 struct files_struct *fsp, const char *name,
298 const void *value, size_t size, int flags);
300 static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
301 static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
302 static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
303 static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
304 static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
305 static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb);
306 static int smb_full_audit_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts);
308 /* VFS operations */
310 static vfs_op_tuple audit_op_tuples[] = {
312 /* Disk operations */
314 {SMB_VFS_OP(smb_full_audit_connect), SMB_VFS_OP_CONNECT,
315 SMB_VFS_LAYER_LOGGER},
316 {SMB_VFS_OP(smb_full_audit_disconnect), SMB_VFS_OP_DISCONNECT,
317 SMB_VFS_LAYER_LOGGER},
318 {SMB_VFS_OP(smb_full_audit_disk_free), SMB_VFS_OP_DISK_FREE,
319 SMB_VFS_LAYER_LOGGER},
320 {SMB_VFS_OP(smb_full_audit_get_quota), SMB_VFS_OP_GET_QUOTA,
321 SMB_VFS_LAYER_LOGGER},
322 {SMB_VFS_OP(smb_full_audit_set_quota), SMB_VFS_OP_SET_QUOTA,
323 SMB_VFS_LAYER_LOGGER},
324 {SMB_VFS_OP(smb_full_audit_get_shadow_copy_data), SMB_VFS_OP_GET_SHADOW_COPY_DATA,
325 SMB_VFS_LAYER_LOGGER},
326 {SMB_VFS_OP(smb_full_audit_statvfs), SMB_VFS_OP_STATVFS,
327 SMB_VFS_LAYER_LOGGER},
329 /* Directory operations */
331 {SMB_VFS_OP(smb_full_audit_opendir), SMB_VFS_OP_OPENDIR,
332 SMB_VFS_LAYER_LOGGER},
333 {SMB_VFS_OP(smb_full_audit_readdir), SMB_VFS_OP_READDIR,
334 SMB_VFS_LAYER_LOGGER},
335 {SMB_VFS_OP(smb_full_audit_seekdir), SMB_VFS_OP_SEEKDIR,
336 SMB_VFS_LAYER_LOGGER},
337 {SMB_VFS_OP(smb_full_audit_telldir), SMB_VFS_OP_TELLDIR,
338 SMB_VFS_LAYER_LOGGER},
339 {SMB_VFS_OP(smb_full_audit_rewinddir), SMB_VFS_OP_REWINDDIR,
340 SMB_VFS_LAYER_LOGGER},
341 {SMB_VFS_OP(smb_full_audit_mkdir), SMB_VFS_OP_MKDIR,
342 SMB_VFS_LAYER_LOGGER},
343 {SMB_VFS_OP(smb_full_audit_rmdir), SMB_VFS_OP_RMDIR,
344 SMB_VFS_LAYER_LOGGER},
345 {SMB_VFS_OP(smb_full_audit_closedir), SMB_VFS_OP_CLOSEDIR,
346 SMB_VFS_LAYER_LOGGER},
348 /* File operations */
350 {SMB_VFS_OP(smb_full_audit_open), SMB_VFS_OP_OPEN,
351 SMB_VFS_LAYER_LOGGER},
352 {SMB_VFS_OP(smb_full_audit_close), SMB_VFS_OP_CLOSE,
353 SMB_VFS_LAYER_LOGGER},
354 {SMB_VFS_OP(smb_full_audit_read), SMB_VFS_OP_READ,
355 SMB_VFS_LAYER_LOGGER},
356 {SMB_VFS_OP(smb_full_audit_pread), SMB_VFS_OP_PREAD,
357 SMB_VFS_LAYER_LOGGER},
358 {SMB_VFS_OP(smb_full_audit_write), SMB_VFS_OP_WRITE,
359 SMB_VFS_LAYER_LOGGER},
360 {SMB_VFS_OP(smb_full_audit_pwrite), SMB_VFS_OP_PWRITE,
361 SMB_VFS_LAYER_LOGGER},
362 {SMB_VFS_OP(smb_full_audit_lseek), SMB_VFS_OP_LSEEK,
363 SMB_VFS_LAYER_LOGGER},
364 {SMB_VFS_OP(smb_full_audit_sendfile), SMB_VFS_OP_SENDFILE,
365 SMB_VFS_LAYER_LOGGER},
366 {SMB_VFS_OP(smb_full_audit_recvfile), SMB_VFS_OP_RECVFILE,
367 SMB_VFS_LAYER_LOGGER},
368 {SMB_VFS_OP(smb_full_audit_rename), SMB_VFS_OP_RENAME,
369 SMB_VFS_LAYER_LOGGER},
370 {SMB_VFS_OP(smb_full_audit_fsync), SMB_VFS_OP_FSYNC,
371 SMB_VFS_LAYER_LOGGER},
372 {SMB_VFS_OP(smb_full_audit_stat), SMB_VFS_OP_STAT,
373 SMB_VFS_LAYER_LOGGER},
374 {SMB_VFS_OP(smb_full_audit_fstat), SMB_VFS_OP_FSTAT,
375 SMB_VFS_LAYER_LOGGER},
376 {SMB_VFS_OP(smb_full_audit_lstat), SMB_VFS_OP_LSTAT,
377 SMB_VFS_LAYER_LOGGER},
378 {SMB_VFS_OP(smb_full_audit_unlink), SMB_VFS_OP_UNLINK,
379 SMB_VFS_LAYER_LOGGER},
380 {SMB_VFS_OP(smb_full_audit_chmod), SMB_VFS_OP_CHMOD,
381 SMB_VFS_LAYER_LOGGER},
382 {SMB_VFS_OP(smb_full_audit_fchmod), SMB_VFS_OP_FCHMOD,
383 SMB_VFS_LAYER_LOGGER},
384 {SMB_VFS_OP(smb_full_audit_chown), SMB_VFS_OP_CHOWN,
385 SMB_VFS_LAYER_LOGGER},
386 {SMB_VFS_OP(smb_full_audit_fchown), SMB_VFS_OP_FCHOWN,
387 SMB_VFS_LAYER_LOGGER},
388 {SMB_VFS_OP(smb_full_audit_lchown), SMB_VFS_OP_LCHOWN,
389 SMB_VFS_LAYER_LOGGER},
390 {SMB_VFS_OP(smb_full_audit_chdir), SMB_VFS_OP_CHDIR,
391 SMB_VFS_LAYER_LOGGER},
392 {SMB_VFS_OP(smb_full_audit_getwd), SMB_VFS_OP_GETWD,
393 SMB_VFS_LAYER_LOGGER},
394 {SMB_VFS_OP(smb_full_audit_ntimes), SMB_VFS_OP_NTIMES,
395 SMB_VFS_LAYER_LOGGER},
396 {SMB_VFS_OP(smb_full_audit_ftruncate), SMB_VFS_OP_FTRUNCATE,
397 SMB_VFS_LAYER_LOGGER},
398 {SMB_VFS_OP(smb_full_audit_lock), SMB_VFS_OP_LOCK,
399 SMB_VFS_LAYER_LOGGER},
400 {SMB_VFS_OP(smb_full_audit_kernel_flock), SMB_VFS_OP_KERNEL_FLOCK,
401 SMB_VFS_LAYER_LOGGER},
402 {SMB_VFS_OP(smb_full_audit_linux_setlease), SMB_VFS_OP_LINUX_SETLEASE,
403 SMB_VFS_LAYER_LOGGER},
404 {SMB_VFS_OP(smb_full_audit_getlock), SMB_VFS_OP_GETLOCK,
405 SMB_VFS_LAYER_LOGGER},
406 {SMB_VFS_OP(smb_full_audit_symlink), SMB_VFS_OP_SYMLINK,
407 SMB_VFS_LAYER_LOGGER},
408 {SMB_VFS_OP(smb_full_audit_readlink), SMB_VFS_OP_READLINK,
409 SMB_VFS_LAYER_LOGGER},
410 {SMB_VFS_OP(smb_full_audit_link), SMB_VFS_OP_LINK,
411 SMB_VFS_LAYER_LOGGER},
412 {SMB_VFS_OP(smb_full_audit_mknod), SMB_VFS_OP_MKNOD,
413 SMB_VFS_LAYER_LOGGER},
414 {SMB_VFS_OP(smb_full_audit_realpath), SMB_VFS_OP_REALPATH,
415 SMB_VFS_LAYER_LOGGER},
416 {SMB_VFS_OP(smb_full_audit_notify_watch),SMB_VFS_OP_NOTIFY_WATCH,
417 SMB_VFS_LAYER_LOGGER},
418 {SMB_VFS_OP(smb_full_audit_chflags), SMB_VFS_OP_CHFLAGS,
419 SMB_VFS_LAYER_LOGGER},
420 {SMB_VFS_OP(smb_full_audit_file_id_create), SMB_VFS_OP_FILE_ID_CREATE,
421 SMB_VFS_LAYER_LOGGER},
423 /* NT ACL operations. */
425 {SMB_VFS_OP(smb_full_audit_fget_nt_acl), SMB_VFS_OP_FGET_NT_ACL,
426 SMB_VFS_LAYER_LOGGER},
427 {SMB_VFS_OP(smb_full_audit_get_nt_acl), SMB_VFS_OP_GET_NT_ACL,
428 SMB_VFS_LAYER_LOGGER},
429 {SMB_VFS_OP(smb_full_audit_fset_nt_acl), SMB_VFS_OP_FSET_NT_ACL,
430 SMB_VFS_LAYER_LOGGER},
432 /* POSIX ACL operations. */
434 {SMB_VFS_OP(smb_full_audit_chmod_acl), SMB_VFS_OP_CHMOD_ACL,
435 SMB_VFS_LAYER_LOGGER},
436 {SMB_VFS_OP(smb_full_audit_fchmod_acl), SMB_VFS_OP_FCHMOD_ACL,
437 SMB_VFS_LAYER_LOGGER},
438 {SMB_VFS_OP(smb_full_audit_sys_acl_get_entry), SMB_VFS_OP_SYS_ACL_GET_ENTRY,
439 SMB_VFS_LAYER_LOGGER},
440 {SMB_VFS_OP(smb_full_audit_sys_acl_get_tag_type), SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE,
441 SMB_VFS_LAYER_LOGGER},
442 {SMB_VFS_OP(smb_full_audit_sys_acl_get_permset), SMB_VFS_OP_SYS_ACL_GET_PERMSET,
443 SMB_VFS_LAYER_LOGGER},
444 {SMB_VFS_OP(smb_full_audit_sys_acl_get_qualifier), SMB_VFS_OP_SYS_ACL_GET_QUALIFIER,
445 SMB_VFS_LAYER_LOGGER},
446 {SMB_VFS_OP(smb_full_audit_sys_acl_get_file), SMB_VFS_OP_SYS_ACL_GET_FILE,
447 SMB_VFS_LAYER_LOGGER},
448 {SMB_VFS_OP(smb_full_audit_sys_acl_get_fd), SMB_VFS_OP_SYS_ACL_GET_FD,
449 SMB_VFS_LAYER_LOGGER},
450 {SMB_VFS_OP(smb_full_audit_sys_acl_clear_perms), SMB_VFS_OP_SYS_ACL_CLEAR_PERMS,
451 SMB_VFS_LAYER_LOGGER},
452 {SMB_VFS_OP(smb_full_audit_sys_acl_add_perm), SMB_VFS_OP_SYS_ACL_ADD_PERM,
453 SMB_VFS_LAYER_LOGGER},
454 {SMB_VFS_OP(smb_full_audit_sys_acl_to_text), SMB_VFS_OP_SYS_ACL_TO_TEXT,
455 SMB_VFS_LAYER_LOGGER},
456 {SMB_VFS_OP(smb_full_audit_sys_acl_init), SMB_VFS_OP_SYS_ACL_INIT,
457 SMB_VFS_LAYER_LOGGER},
458 {SMB_VFS_OP(smb_full_audit_sys_acl_create_entry), SMB_VFS_OP_SYS_ACL_CREATE_ENTRY,
459 SMB_VFS_LAYER_LOGGER},
460 {SMB_VFS_OP(smb_full_audit_sys_acl_set_tag_type), SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE,
461 SMB_VFS_LAYER_LOGGER},
462 {SMB_VFS_OP(smb_full_audit_sys_acl_set_qualifier), SMB_VFS_OP_SYS_ACL_SET_QUALIFIER,
463 SMB_VFS_LAYER_LOGGER},
464 {SMB_VFS_OP(smb_full_audit_sys_acl_set_permset), SMB_VFS_OP_SYS_ACL_SET_PERMSET,
465 SMB_VFS_LAYER_LOGGER},
466 {SMB_VFS_OP(smb_full_audit_sys_acl_valid), SMB_VFS_OP_SYS_ACL_VALID,
467 SMB_VFS_LAYER_LOGGER},
468 {SMB_VFS_OP(smb_full_audit_sys_acl_set_file), SMB_VFS_OP_SYS_ACL_SET_FILE,
469 SMB_VFS_LAYER_LOGGER},
470 {SMB_VFS_OP(smb_full_audit_sys_acl_set_fd), SMB_VFS_OP_SYS_ACL_SET_FD,
471 SMB_VFS_LAYER_LOGGER},
472 {SMB_VFS_OP(smb_full_audit_sys_acl_delete_def_file), SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
473 SMB_VFS_LAYER_LOGGER},
474 {SMB_VFS_OP(smb_full_audit_sys_acl_get_perm), SMB_VFS_OP_SYS_ACL_GET_PERM,
475 SMB_VFS_LAYER_LOGGER},
476 {SMB_VFS_OP(smb_full_audit_sys_acl_free_text), SMB_VFS_OP_SYS_ACL_FREE_TEXT,
477 SMB_VFS_LAYER_LOGGER},
478 {SMB_VFS_OP(smb_full_audit_sys_acl_free_acl), SMB_VFS_OP_SYS_ACL_FREE_ACL,
479 SMB_VFS_LAYER_LOGGER},
480 {SMB_VFS_OP(smb_full_audit_sys_acl_free_qualifier), SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER,
481 SMB_VFS_LAYER_LOGGER},
483 /* EA operations. */
485 {SMB_VFS_OP(smb_full_audit_getxattr), SMB_VFS_OP_GETXATTR,
486 SMB_VFS_LAYER_LOGGER},
487 {SMB_VFS_OP(smb_full_audit_lgetxattr), SMB_VFS_OP_LGETXATTR,
488 SMB_VFS_LAYER_LOGGER},
489 {SMB_VFS_OP(smb_full_audit_fgetxattr), SMB_VFS_OP_FGETXATTR,
490 SMB_VFS_LAYER_LOGGER},
491 {SMB_VFS_OP(smb_full_audit_listxattr), SMB_VFS_OP_LISTXATTR,
492 SMB_VFS_LAYER_LOGGER},
493 {SMB_VFS_OP(smb_full_audit_llistxattr), SMB_VFS_OP_LLISTXATTR,
494 SMB_VFS_LAYER_LOGGER},
495 {SMB_VFS_OP(smb_full_audit_flistxattr), SMB_VFS_OP_FLISTXATTR,
496 SMB_VFS_LAYER_LOGGER},
497 {SMB_VFS_OP(smb_full_audit_removexattr), SMB_VFS_OP_REMOVEXATTR,
498 SMB_VFS_LAYER_LOGGER},
499 {SMB_VFS_OP(smb_full_audit_lremovexattr), SMB_VFS_OP_LREMOVEXATTR,
500 SMB_VFS_LAYER_LOGGER},
501 {SMB_VFS_OP(smb_full_audit_fremovexattr), SMB_VFS_OP_FREMOVEXATTR,
502 SMB_VFS_LAYER_LOGGER},
503 {SMB_VFS_OP(smb_full_audit_setxattr), SMB_VFS_OP_SETXATTR,
504 SMB_VFS_LAYER_LOGGER},
505 {SMB_VFS_OP(smb_full_audit_lsetxattr), SMB_VFS_OP_LSETXATTR,
506 SMB_VFS_LAYER_LOGGER},
507 {SMB_VFS_OP(smb_full_audit_fsetxattr), SMB_VFS_OP_FSETXATTR,
508 SMB_VFS_LAYER_LOGGER},
510 {SMB_VFS_OP(smb_full_audit_aio_read), SMB_VFS_OP_AIO_READ,
511 SMB_VFS_LAYER_LOGGER},
512 {SMB_VFS_OP(smb_full_audit_aio_write), SMB_VFS_OP_AIO_WRITE,
513 SMB_VFS_LAYER_LOGGER},
514 {SMB_VFS_OP(smb_full_audit_aio_return), SMB_VFS_OP_AIO_RETURN,
515 SMB_VFS_LAYER_LOGGER},
516 {SMB_VFS_OP(smb_full_audit_aio_cancel), SMB_VFS_OP_AIO_CANCEL,
517 SMB_VFS_LAYER_LOGGER},
518 {SMB_VFS_OP(smb_full_audit_aio_error), SMB_VFS_OP_AIO_ERROR,
519 SMB_VFS_LAYER_LOGGER},
520 {SMB_VFS_OP(smb_full_audit_aio_fsync), SMB_VFS_OP_AIO_FSYNC,
521 SMB_VFS_LAYER_LOGGER},
522 {SMB_VFS_OP(smb_full_audit_aio_suspend),SMB_VFS_OP_AIO_SUSPEND,
523 SMB_VFS_LAYER_LOGGER},
525 /* Finish VFS operations definition */
527 {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP,
528 SMB_VFS_LAYER_NOOP}
531 /* The following array *must* be in the same order as defined in vfs.h */
533 static struct {
534 vfs_op_type type;
535 const char *name;
536 } vfs_op_names[] = {
537 { SMB_VFS_OP_CONNECT, "connect" },
538 { SMB_VFS_OP_DISCONNECT, "disconnect" },
539 { SMB_VFS_OP_DISK_FREE, "disk_free" },
540 { SMB_VFS_OP_GET_QUOTA, "get_quota" },
541 { SMB_VFS_OP_SET_QUOTA, "set_quota" },
542 { SMB_VFS_OP_GET_SHADOW_COPY_DATA, "get_shadow_copy_data" },
543 { SMB_VFS_OP_STATVFS, "statvfs" },
544 { SMB_VFS_OP_FS_CAPABILITIES, "fs_capabilities" },
545 { SMB_VFS_OP_OPENDIR, "opendir" },
546 { SMB_VFS_OP_READDIR, "readdir" },
547 { SMB_VFS_OP_SEEKDIR, "seekdir" },
548 { SMB_VFS_OP_TELLDIR, "telldir" },
549 { SMB_VFS_OP_REWINDDIR, "rewinddir" },
550 { SMB_VFS_OP_MKDIR, "mkdir" },
551 { SMB_VFS_OP_RMDIR, "rmdir" },
552 { SMB_VFS_OP_CLOSEDIR, "closedir" },
553 { SMB_VFS_OP_OPEN, "open" },
554 { SMB_VFS_OP_CLOSE, "close" },
555 { SMB_VFS_OP_READ, "read" },
556 { SMB_VFS_OP_PREAD, "pread" },
557 { SMB_VFS_OP_WRITE, "write" },
558 { SMB_VFS_OP_PWRITE, "pwrite" },
559 { SMB_VFS_OP_LSEEK, "lseek" },
560 { SMB_VFS_OP_SENDFILE, "sendfile" },
561 { SMB_VFS_OP_RENAME, "rename" },
562 { SMB_VFS_OP_FSYNC, "fsync" },
563 { SMB_VFS_OP_STAT, "stat" },
564 { SMB_VFS_OP_FSTAT, "fstat" },
565 { SMB_VFS_OP_LSTAT, "lstat" },
566 { SMB_VFS_OP_UNLINK, "unlink" },
567 { SMB_VFS_OP_CHMOD, "chmod" },
568 { SMB_VFS_OP_FCHMOD, "fchmod" },
569 { SMB_VFS_OP_CHOWN, "chown" },
570 { SMB_VFS_OP_FCHOWN, "fchown" },
571 { SMB_VFS_OP_LCHOWN, "lchown" },
572 { SMB_VFS_OP_CHDIR, "chdir" },
573 { SMB_VFS_OP_GETWD, "getwd" },
574 { SMB_VFS_OP_NTIMES, "ntimes" },
575 { SMB_VFS_OP_FTRUNCATE, "ftruncate" },
576 { SMB_VFS_OP_LOCK, "lock" },
577 { SMB_VFS_OP_KERNEL_FLOCK, "kernel_flock" },
578 { SMB_VFS_OP_LINUX_SETLEASE, "linux_setlease" },
579 { SMB_VFS_OP_GETLOCK, "getlock" },
580 { SMB_VFS_OP_SYMLINK, "symlink" },
581 { SMB_VFS_OP_READLINK, "readlink" },
582 { SMB_VFS_OP_LINK, "link" },
583 { SMB_VFS_OP_MKNOD, "mknod" },
584 { SMB_VFS_OP_REALPATH, "realpath" },
585 { SMB_VFS_OP_NOTIFY_WATCH, "notify_watch" },
586 { SMB_VFS_OP_CHFLAGS, "chflags" },
587 { SMB_VFS_OP_FILE_ID_CREATE, "file_id_create" },
588 { SMB_VFS_OP_FGET_NT_ACL, "fget_nt_acl" },
589 { SMB_VFS_OP_GET_NT_ACL, "get_nt_acl" },
590 { SMB_VFS_OP_FSET_NT_ACL, "fset_nt_acl" },
591 { SMB_VFS_OP_CHMOD_ACL, "chmod_acl" },
592 { SMB_VFS_OP_FCHMOD_ACL, "fchmod_acl" },
593 { SMB_VFS_OP_SYS_ACL_GET_ENTRY, "sys_acl_get_entry" },
594 { SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, "sys_acl_get_tag_type" },
595 { SMB_VFS_OP_SYS_ACL_GET_PERMSET, "sys_acl_get_permset" },
596 { SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, "sys_acl_get_qualifier" },
597 { SMB_VFS_OP_SYS_ACL_GET_FILE, "sys_acl_get_file" },
598 { SMB_VFS_OP_SYS_ACL_GET_FD, "sys_acl_get_fd" },
599 { SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, "sys_acl_clear_perms" },
600 { SMB_VFS_OP_SYS_ACL_ADD_PERM, "sys_acl_add_perm" },
601 { SMB_VFS_OP_SYS_ACL_TO_TEXT, "sys_acl_to_text" },
602 { SMB_VFS_OP_SYS_ACL_INIT, "sys_acl_init" },
603 { SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, "sys_acl_create_entry" },
604 { SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, "sys_acl_set_tag_type" },
605 { SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, "sys_acl_set_qualifier" },
606 { SMB_VFS_OP_SYS_ACL_SET_PERMSET, "sys_acl_set_permset" },
607 { SMB_VFS_OP_SYS_ACL_VALID, "sys_acl_valid" },
608 { SMB_VFS_OP_SYS_ACL_SET_FILE, "sys_acl_set_file" },
609 { SMB_VFS_OP_SYS_ACL_SET_FD, "sys_acl_set_fd" },
610 { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, "sys_acl_delete_def_file" },
611 { SMB_VFS_OP_SYS_ACL_GET_PERM, "sys_acl_get_perm" },
612 { SMB_VFS_OP_SYS_ACL_FREE_TEXT, "sys_acl_free_text" },
613 { SMB_VFS_OP_SYS_ACL_FREE_ACL, "sys_acl_free_acl" },
614 { SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, "sys_acl_free_qualifier" },
615 { SMB_VFS_OP_GETXATTR, "getxattr" },
616 { SMB_VFS_OP_LGETXATTR, "lgetxattr" },
617 { SMB_VFS_OP_FGETXATTR, "fgetxattr" },
618 { SMB_VFS_OP_LISTXATTR, "listxattr" },
619 { SMB_VFS_OP_LLISTXATTR, "llistxattr" },
620 { SMB_VFS_OP_FLISTXATTR, "flistxattr" },
621 { SMB_VFS_OP_REMOVEXATTR, "removexattr" },
622 { SMB_VFS_OP_LREMOVEXATTR, "lremovexattr" },
623 { SMB_VFS_OP_FREMOVEXATTR, "fremovexattr" },
624 { SMB_VFS_OP_SETXATTR, "setxattr" },
625 { SMB_VFS_OP_LSETXATTR, "lsetxattr" },
626 { SMB_VFS_OP_FSETXATTR, "fsetxattr" },
627 { SMB_VFS_OP_AIO_READ, "aio_read" },
628 { SMB_VFS_OP_AIO_WRITE, "aio_write" },
629 { SMB_VFS_OP_AIO_RETURN,"aio_return" },
630 { SMB_VFS_OP_AIO_CANCEL,"aio_cancel" },
631 { SMB_VFS_OP_AIO_ERROR, "aio_error" },
632 { SMB_VFS_OP_AIO_FSYNC, "aio_fsync" },
633 { SMB_VFS_OP_AIO_SUSPEND,"aio_suspend" },
634 { SMB_VFS_OP_AIO_FORCE, "aio_force" },
635 { SMB_VFS_OP_IS_OFFLINE, "aio_is_offline" },
636 { SMB_VFS_OP_SET_OFFLINE, "aio_set_offline" },
637 { SMB_VFS_OP_LAST, NULL }
640 static int audit_syslog_facility(vfs_handle_struct *handle)
642 static const struct enum_list enum_log_facilities[] = {
643 { LOG_USER, "USER" },
644 { LOG_LOCAL0, "LOCAL0" },
645 { LOG_LOCAL1, "LOCAL1" },
646 { LOG_LOCAL2, "LOCAL2" },
647 { LOG_LOCAL3, "LOCAL3" },
648 { LOG_LOCAL4, "LOCAL4" },
649 { LOG_LOCAL5, "LOCAL5" },
650 { LOG_LOCAL6, "LOCAL6" },
651 { LOG_LOCAL7, "LOCAL7" }
654 int facility;
656 facility = lp_parm_enum(SNUM(handle->conn), "full_audit", "facility", enum_log_facilities, LOG_USER);
658 return facility;
661 static int audit_syslog_priority(vfs_handle_struct *handle)
663 static const struct enum_list enum_log_priorities[] = {
664 { LOG_EMERG, "EMERG" },
665 { LOG_ALERT, "ALERT" },
666 { LOG_CRIT, "CRIT" },
667 { LOG_ERR, "ERR" },
668 { LOG_WARNING, "WARNING" },
669 { LOG_NOTICE, "NOTICE" },
670 { LOG_INFO, "INFO" },
671 { LOG_DEBUG, "DEBUG" }
674 int priority;
676 priority = lp_parm_enum(SNUM(handle->conn), "full_audit", "priority",
677 enum_log_priorities, LOG_NOTICE);
678 if (priority == -1) {
679 priority = LOG_WARNING;
682 return priority;
685 static char *audit_prefix(TALLOC_CTX *ctx, connection_struct *conn)
687 char *prefix = NULL;
689 prefix = talloc_strdup(ctx,
690 lp_parm_const_string(SNUM(conn), "full_audit",
691 "prefix", "%u|%I"));
692 if (!prefix) {
693 return NULL;
695 return talloc_sub_advanced(ctx,
696 lp_servicename(SNUM(conn)), conn->user,
697 conn->connectpath, conn->gid,
698 get_current_username(),
699 current_user_info.domain,
700 prefix);
703 static bool log_success(vfs_handle_struct *handle, vfs_op_type op)
705 struct vfs_full_audit_private_data *pd = NULL;
707 SMB_VFS_HANDLE_GET_DATA(handle, pd,
708 struct vfs_full_audit_private_data,
709 return True);
711 if (pd->success_ops == NULL) {
712 return True;
715 return bitmap_query(pd->success_ops, op);
718 static bool log_failure(vfs_handle_struct *handle, vfs_op_type op)
720 struct vfs_full_audit_private_data *pd = NULL;
722 SMB_VFS_HANDLE_GET_DATA(handle, pd,
723 struct vfs_full_audit_private_data,
724 return True);
726 if (pd->failure_ops == NULL)
727 return True;
729 return bitmap_query(pd->failure_ops, op);
732 static void init_bitmap(struct bitmap **bm, const char **ops)
734 bool log_all = False;
736 if (*bm != NULL)
737 return;
739 *bm = bitmap_allocate(SMB_VFS_OP_LAST);
741 if (*bm == NULL) {
742 DEBUG(0, ("Could not alloc bitmap -- "
743 "defaulting to logging everything\n"));
744 return;
747 while (*ops != NULL) {
748 int i;
749 bool found = False;
751 if (strequal(*ops, "all")) {
752 log_all = True;
753 break;
756 if (strequal(*ops, "none")) {
757 break;
760 for (i=0; i<SMB_VFS_OP_LAST; i++) {
761 if (vfs_op_names[i].name == NULL) {
762 smb_panic("vfs_full_audit.c: name table not "
763 "in sync with vfs.h\n");
766 if (strequal(*ops, vfs_op_names[i].name)) {
767 bitmap_set(*bm, i);
768 found = True;
771 if (!found) {
772 DEBUG(0, ("Could not find opname %s, logging all\n",
773 *ops));
774 log_all = True;
775 break;
777 ops += 1;
780 if (log_all) {
781 /* The query functions default to True */
782 bitmap_free(*bm);
783 *bm = NULL;
787 static const char *audit_opname(vfs_op_type op)
789 if (op >= SMB_VFS_OP_LAST)
790 return "INVALID VFS OP";
791 return vfs_op_names[op].name;
794 static void do_log(vfs_op_type op, bool success, vfs_handle_struct *handle,
795 const char *format, ...)
797 fstring err_msg;
798 char *audit_pre = NULL;
799 va_list ap;
800 char *op_msg = NULL;
802 if (success && (!log_success(handle, op)))
803 return;
805 if (!success && (!log_failure(handle, op)))
806 return;
808 if (success)
809 fstrcpy(err_msg, "ok");
810 else
811 fstr_sprintf(err_msg, "fail (%s)", strerror(errno));
813 va_start(ap, format);
814 op_msg = talloc_vasprintf(NULL, format, ap);
815 va_end(ap);
817 if (!op_msg) {
818 return;
821 audit_pre = audit_prefix(NULL, handle->conn);
822 syslog(audit_syslog_priority(handle), "%s|%s|%s|%s\n",
823 audit_pre ? audit_pre : "",
824 audit_opname(op), err_msg, op_msg);
826 TALLOC_FREE(audit_pre);
827 TALLOC_FREE(op_msg);
829 return;
832 /* Free function for the private data. */
834 static void free_private_data(void **p_data)
836 struct vfs_full_audit_private_data *pd = *(struct vfs_full_audit_private_data **)p_data;
838 if (pd->success_ops) {
839 bitmap_free(pd->success_ops);
841 if (pd->failure_ops) {
842 bitmap_free(pd->failure_ops);
844 SAFE_FREE(pd);
845 *p_data = NULL;
848 /* Implementation of vfs_ops. Pass everything on to the default
849 operation but log event first. */
851 static int smb_full_audit_connect(vfs_handle_struct *handle,
852 const char *svc, const char *user)
854 int result;
855 struct vfs_full_audit_private_data *pd = NULL;
856 const char *none[] = { NULL };
857 const char *all [] = { "all" };
859 if (!handle) {
860 return -1;
863 pd = SMB_MALLOC_P(struct vfs_full_audit_private_data);
864 if (!pd) {
865 return -1;
867 ZERO_STRUCTP(pd);
869 openlog("smbd_audit", 0, audit_syslog_facility(handle));
871 init_bitmap(&pd->success_ops,
872 lp_parm_string_list(SNUM(handle->conn), "full_audit", "success",
873 none));
874 init_bitmap(&pd->failure_ops,
875 lp_parm_string_list(SNUM(handle->conn), "full_audit", "failure",
876 all));
878 /* Store the private data. */
879 SMB_VFS_HANDLE_SET_DATA(handle, pd, free_private_data,
880 struct vfs_full_audit_private_data, return -1);
882 result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
884 do_log(SMB_VFS_OP_CONNECT, True, handle,
885 "%s", svc);
887 return result;
890 static void smb_full_audit_disconnect(vfs_handle_struct *handle)
892 SMB_VFS_NEXT_DISCONNECT(handle);
894 do_log(SMB_VFS_OP_DISCONNECT, True, handle,
895 "%s", lp_servicename(SNUM(handle->conn)));
897 /* The bitmaps will be disconnected when the private
898 data is deleted. */
900 return;
903 static SMB_BIG_UINT smb_full_audit_disk_free(vfs_handle_struct *handle,
904 const char *path,
905 bool small_query, SMB_BIG_UINT *bsize,
906 SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize)
908 SMB_BIG_UINT result;
910 result = SMB_VFS_NEXT_DISK_FREE(handle, path, small_query, bsize,
911 dfree, dsize);
913 /* Don't have a reasonable notion of failure here */
915 do_log(SMB_VFS_OP_DISK_FREE, True, handle, "%s", path);
917 return result;
920 static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
921 enum SMB_QUOTA_TYPE qtype, unid_t id,
922 SMB_DISK_QUOTA *qt)
924 int result;
926 result = SMB_VFS_NEXT_GET_QUOTA(handle, qtype, id, qt);
928 do_log(SMB_VFS_OP_GET_QUOTA, (result >= 0), handle, "");
930 return result;
934 static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
935 enum SMB_QUOTA_TYPE qtype, unid_t id,
936 SMB_DISK_QUOTA *qt)
938 int result;
940 result = SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, qt);
942 do_log(SMB_VFS_OP_SET_QUOTA, (result >= 0), handle, "");
944 return result;
947 static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
948 struct files_struct *fsp,
949 SHADOW_COPY_DATA *shadow_copy_data, bool labels)
951 int result;
953 result = SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle, fsp, shadow_copy_data, labels);
955 do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA, (result >= 0), handle, "");
957 return result;
960 static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
961 const char *path,
962 struct vfs_statvfs_struct *statbuf)
964 int result;
966 result = SMB_VFS_NEXT_STATVFS(handle, path, statbuf);
968 do_log(SMB_VFS_OP_STATVFS, (result >= 0), handle, "");
970 return result;
973 static SMB_STRUCT_DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
974 const char *fname, const char *mask, uint32 attr)
976 SMB_STRUCT_DIR *result;
978 result = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
980 do_log(SMB_VFS_OP_OPENDIR, (result != NULL), handle, "%s", fname);
982 return result;
985 static SMB_STRUCT_DIRENT *smb_full_audit_readdir(vfs_handle_struct *handle,
986 SMB_STRUCT_DIR *dirp)
988 SMB_STRUCT_DIRENT *result;
990 result = SMB_VFS_NEXT_READDIR(handle, dirp);
992 /* This operation has no reasonable error condition
993 * (End of dir is also failure), so always succeed.
995 do_log(SMB_VFS_OP_READDIR, True, handle, "");
997 return result;
1000 static void smb_full_audit_seekdir(vfs_handle_struct *handle,
1001 SMB_STRUCT_DIR *dirp, long offset)
1003 SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
1005 do_log(SMB_VFS_OP_SEEKDIR, True, handle, "");
1006 return;
1009 static long smb_full_audit_telldir(vfs_handle_struct *handle,
1010 SMB_STRUCT_DIR *dirp)
1012 long result;
1014 result = SMB_VFS_NEXT_TELLDIR(handle, dirp);
1016 do_log(SMB_VFS_OP_TELLDIR, True, handle, "");
1018 return result;
1021 static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
1022 SMB_STRUCT_DIR *dirp)
1024 SMB_VFS_NEXT_REWINDDIR(handle, dirp);
1026 do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
1027 return;
1030 static int smb_full_audit_mkdir(vfs_handle_struct *handle,
1031 const char *path, mode_t mode)
1033 int result;
1035 result = SMB_VFS_NEXT_MKDIR(handle, path, mode);
1037 do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s", path);
1039 return result;
1042 static int smb_full_audit_rmdir(vfs_handle_struct *handle,
1043 const char *path)
1045 int result;
1047 result = SMB_VFS_NEXT_RMDIR(handle, path);
1049 do_log(SMB_VFS_OP_RMDIR, (result >= 0), handle, "%s", path);
1051 return result;
1054 static int smb_full_audit_closedir(vfs_handle_struct *handle,
1055 SMB_STRUCT_DIR *dirp)
1057 int result;
1059 result = SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
1061 do_log(SMB_VFS_OP_CLOSEDIR, (result >= 0), handle, "");
1063 return result;
1066 static int smb_full_audit_open(vfs_handle_struct *handle,
1067 const char *fname, files_struct *fsp, int flags, mode_t mode)
1069 int result;
1071 result = SMB_VFS_NEXT_OPEN(handle, fname, fsp, flags, mode);
1073 do_log(SMB_VFS_OP_OPEN, (result >= 0), handle, "%s|%s",
1074 ((flags & O_WRONLY) || (flags & O_RDWR))?"w":"r",
1075 fname);
1077 return result;
1080 static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp)
1082 int result;
1084 result = SMB_VFS_NEXT_CLOSE(handle, fsp);
1086 do_log(SMB_VFS_OP_CLOSE, (result >= 0), handle, "%s", fsp->fsp_name);
1088 return result;
1091 static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
1092 void *data, size_t n)
1094 ssize_t result;
1096 result = SMB_VFS_NEXT_READ(handle, fsp, data, n);
1098 do_log(SMB_VFS_OP_READ, (result >= 0), handle, "%s", fsp->fsp_name);
1100 return result;
1103 static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
1104 void *data, size_t n, SMB_OFF_T offset)
1106 ssize_t result;
1108 result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
1110 do_log(SMB_VFS_OP_PREAD, (result >= 0), handle, "%s", fsp->fsp_name);
1112 return result;
1115 static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
1116 const void *data, size_t n)
1118 ssize_t result;
1120 result = SMB_VFS_NEXT_WRITE(handle, fsp, data, n);
1122 do_log(SMB_VFS_OP_WRITE, (result >= 0), handle, "%s", fsp->fsp_name);
1124 return result;
1127 static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
1128 const void *data, size_t n,
1129 SMB_OFF_T offset)
1131 ssize_t result;
1133 result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
1135 do_log(SMB_VFS_OP_PWRITE, (result >= 0), handle, "%s", fsp->fsp_name);
1137 return result;
1140 static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
1141 SMB_OFF_T offset, int whence)
1143 ssize_t result;
1145 result = SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
1147 do_log(SMB_VFS_OP_LSEEK, (result != (ssize_t)-1), handle,
1148 "%s", fsp->fsp_name);
1150 return result;
1153 static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
1154 files_struct *fromfsp,
1155 const DATA_BLOB *hdr, SMB_OFF_T offset,
1156 size_t n)
1158 ssize_t result;
1160 result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
1162 do_log(SMB_VFS_OP_SENDFILE, (result >= 0), handle,
1163 "%s", fromfsp->fsp_name);
1165 return result;
1168 static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
1169 files_struct *tofsp,
1170 SMB_OFF_T offset,
1171 size_t n)
1173 ssize_t result;
1175 result = SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
1177 do_log(SMB_VFS_OP_RECVFILE, (result >= 0), handle,
1178 "%s", tofsp->fsp_name);
1180 return result;
1183 static int smb_full_audit_rename(vfs_handle_struct *handle,
1184 const char *oldname, const char *newname)
1186 int result;
1188 result = SMB_VFS_NEXT_RENAME(handle, oldname, newname);
1190 do_log(SMB_VFS_OP_RENAME, (result >= 0), handle, "%s|%s", oldname, newname);
1192 return result;
1195 static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp)
1197 int result;
1199 result = SMB_VFS_NEXT_FSYNC(handle, fsp);
1201 do_log(SMB_VFS_OP_FSYNC, (result >= 0), handle, "%s", fsp->fsp_name);
1203 return result;
1206 static int smb_full_audit_stat(vfs_handle_struct *handle,
1207 const char *fname, SMB_STRUCT_STAT *sbuf)
1209 int result;
1211 result = SMB_VFS_NEXT_STAT(handle, fname, sbuf);
1213 do_log(SMB_VFS_OP_STAT, (result >= 0), handle, "%s", fname);
1215 return result;
1218 static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
1219 SMB_STRUCT_STAT *sbuf)
1221 int result;
1223 result = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
1225 do_log(SMB_VFS_OP_FSTAT, (result >= 0), handle, "%s", fsp->fsp_name);
1227 return result;
1230 static int smb_full_audit_lstat(vfs_handle_struct *handle,
1231 const char *path, SMB_STRUCT_STAT *sbuf)
1233 int result;
1235 result = SMB_VFS_NEXT_LSTAT(handle, path, sbuf);
1237 do_log(SMB_VFS_OP_LSTAT, (result >= 0), handle, "%s", path);
1239 return result;
1242 static int smb_full_audit_unlink(vfs_handle_struct *handle,
1243 const char *path)
1245 int result;
1247 result = SMB_VFS_NEXT_UNLINK(handle, path);
1249 do_log(SMB_VFS_OP_UNLINK, (result >= 0), handle, "%s", path);
1251 return result;
1254 static int smb_full_audit_chmod(vfs_handle_struct *handle,
1255 const char *path, mode_t mode)
1257 int result;
1259 result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
1261 do_log(SMB_VFS_OP_CHMOD, (result >= 0), handle, "%s|%o", path, mode);
1263 return result;
1266 static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
1267 mode_t mode)
1269 int result;
1271 result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
1273 do_log(SMB_VFS_OP_FCHMOD, (result >= 0), handle,
1274 "%s|%o", fsp->fsp_name, mode);
1276 return result;
1279 static int smb_full_audit_chown(vfs_handle_struct *handle,
1280 const char *path, uid_t uid, gid_t gid)
1282 int result;
1284 result = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
1286 do_log(SMB_VFS_OP_CHOWN, (result >= 0), handle, "%s|%ld|%ld",
1287 path, (long int)uid, (long int)gid);
1289 return result;
1292 static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
1293 uid_t uid, gid_t gid)
1295 int result;
1297 result = SMB_VFS_NEXT_FCHOWN(handle, fsp, uid, gid);
1299 do_log(SMB_VFS_OP_FCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1300 fsp->fsp_name, (long int)uid, (long int)gid);
1302 return result;
1305 static int smb_full_audit_lchown(vfs_handle_struct *handle,
1306 const char *path, uid_t uid, gid_t gid)
1308 int result;
1310 result = SMB_VFS_NEXT_LCHOWN(handle, path, uid, gid);
1312 do_log(SMB_VFS_OP_LCHOWN, (result >= 0), handle, "%s|%ld|%ld",
1313 path, (long int)uid, (long int)gid);
1315 return result;
1318 static int smb_full_audit_chdir(vfs_handle_struct *handle,
1319 const char *path)
1321 int result;
1323 result = SMB_VFS_NEXT_CHDIR(handle, path);
1325 do_log(SMB_VFS_OP_CHDIR, (result >= 0), handle, "chdir|%s", path);
1327 return result;
1330 static char *smb_full_audit_getwd(vfs_handle_struct *handle,
1331 char *path)
1333 char *result;
1335 result = SMB_VFS_NEXT_GETWD(handle, path);
1337 do_log(SMB_VFS_OP_GETWD, (result != NULL), handle, "%s", path);
1339 return result;
1342 static int smb_full_audit_ntimes(vfs_handle_struct *handle,
1343 const char *path, const struct timespec ts[2])
1345 int result;
1347 result = SMB_VFS_NEXT_NTIMES(handle, path, ts);
1349 do_log(SMB_VFS_OP_NTIMES, (result >= 0), handle, "%s", path);
1351 return result;
1354 static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
1355 SMB_OFF_T len)
1357 int result;
1359 result = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
1361 do_log(SMB_VFS_OP_FTRUNCATE, (result >= 0), handle,
1362 "%s", fsp->fsp_name);
1364 return result;
1367 static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
1368 int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
1370 bool result;
1372 result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
1374 do_log(SMB_VFS_OP_LOCK, result, handle, "%s", fsp->fsp_name);
1376 return result;
1379 static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
1380 struct files_struct *fsp,
1381 uint32 share_mode)
1383 int result;
1385 result = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_mode);
1387 do_log(SMB_VFS_OP_KERNEL_FLOCK, (result >= 0), handle, "%s",
1388 fsp->fsp_name);
1390 return result;
1393 static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
1394 int leasetype)
1396 int result;
1398 result = SMB_VFS_NEXT_LINUX_SETLEASE(handle, fsp, leasetype);
1400 do_log(SMB_VFS_OP_LINUX_SETLEASE, (result >= 0), handle, "%s",
1401 fsp->fsp_name);
1403 return result;
1406 static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
1407 SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid)
1409 bool result;
1411 result = SMB_VFS_NEXT_GETLOCK(handle, fsp, poffset, pcount, ptype, ppid);
1413 do_log(SMB_VFS_OP_GETLOCK, result, handle, "%s", fsp->fsp_name);
1415 return result;
1418 static int smb_full_audit_symlink(vfs_handle_struct *handle,
1419 const char *oldpath, const char *newpath)
1421 int result;
1423 result = SMB_VFS_NEXT_SYMLINK(handle, oldpath, newpath);
1425 do_log(SMB_VFS_OP_SYMLINK, (result >= 0), handle,
1426 "%s|%s", oldpath, newpath);
1428 return result;
1431 static int smb_full_audit_readlink(vfs_handle_struct *handle,
1432 const char *path, char *buf, size_t bufsiz)
1434 int result;
1436 result = SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
1438 do_log(SMB_VFS_OP_READLINK, (result >= 0), handle, "%s", path);
1440 return result;
1443 static int smb_full_audit_link(vfs_handle_struct *handle,
1444 const char *oldpath, const char *newpath)
1446 int result;
1448 result = SMB_VFS_NEXT_LINK(handle, oldpath, newpath);
1450 do_log(SMB_VFS_OP_LINK, (result >= 0), handle,
1451 "%s|%s", oldpath, newpath);
1453 return result;
1456 static int smb_full_audit_mknod(vfs_handle_struct *handle,
1457 const char *pathname, mode_t mode, SMB_DEV_T dev)
1459 int result;
1461 result = SMB_VFS_NEXT_MKNOD(handle, pathname, mode, dev);
1463 do_log(SMB_VFS_OP_MKNOD, (result >= 0), handle, "%s", pathname);
1465 return result;
1468 static char *smb_full_audit_realpath(vfs_handle_struct *handle,
1469 const char *path, char *resolved_path)
1471 char *result;
1473 result = SMB_VFS_NEXT_REALPATH(handle, path, resolved_path);
1475 do_log(SMB_VFS_OP_REALPATH, (result != NULL), handle, "%s", path);
1477 return result;
1480 static NTSTATUS smb_full_audit_notify_watch(struct vfs_handle_struct *handle,
1481 struct sys_notify_context *ctx,
1482 struct notify_entry *e,
1483 void (*callback)(struct sys_notify_context *ctx,
1484 void *private_data,
1485 struct notify_event *ev),
1486 void *private_data, void *handle_p)
1488 NTSTATUS result;
1490 result = SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, e, callback, private_data, handle_p);
1492 do_log(SMB_VFS_OP_NOTIFY_WATCH, NT_STATUS_IS_OK(result), handle, "");
1494 return result;
1497 static int smb_full_audit_chflags(vfs_handle_struct *handle,
1498 const char *path, unsigned int flags)
1500 int result;
1502 result = SMB_VFS_NEXT_CHFLAGS(handle, path, flags);
1504 do_log(SMB_VFS_OP_CHFLAGS, (result != 0), handle, "%s", path);
1506 return result;
1509 static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
1510 SMB_DEV_T dev, SMB_INO_T inode)
1512 struct file_id id_zero;
1513 struct file_id result;
1515 ZERO_STRUCT(id_zero);
1517 result = SMB_VFS_NEXT_FILE_ID_CREATE(handle, dev, inode);
1519 do_log(SMB_VFS_OP_FILE_ID_CREATE,
1520 !file_id_equal(&id_zero, &result),
1521 handle, "%s", file_id_string_tos(&result));
1523 return result;
1526 static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1527 uint32 security_info,
1528 SEC_DESC **ppdesc)
1530 NTSTATUS result;
1532 result = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info, ppdesc);
1534 do_log(SMB_VFS_OP_FGET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1535 "%s", fsp->fsp_name);
1537 return result;
1540 static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle,
1541 files_struct *fsp,
1542 const char *name,
1543 uint32 security_info,
1544 SEC_DESC **ppdesc)
1546 NTSTATUS result;
1548 result = SMB_VFS_NEXT_GET_NT_ACL(handle, name, security_info, ppdesc);
1550 do_log(SMB_VFS_OP_GET_NT_ACL, NT_STATUS_IS_OK(result), handle,
1551 "%s", fsp->fsp_name);
1553 return result;
1556 static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
1557 uint32 security_info_sent,
1558 SEC_DESC *psd)
1560 NTSTATUS result;
1562 result = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
1564 do_log(SMB_VFS_OP_FSET_NT_ACL, NT_STATUS_IS_OK(result), handle, "%s", fsp->fsp_name);
1566 return result;
1569 static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
1570 const char *path, mode_t mode)
1572 int result;
1574 result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
1576 do_log(SMB_VFS_OP_CHMOD_ACL, (result >= 0), handle,
1577 "%s|%o", path, mode);
1579 return result;
1582 static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
1583 mode_t mode)
1585 int result;
1587 result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
1589 do_log(SMB_VFS_OP_FCHMOD_ACL, (result >= 0), handle,
1590 "%s|%o", fsp->fsp_name, mode);
1592 return result;
1595 static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct *handle,
1597 SMB_ACL_T theacl, int entry_id,
1598 SMB_ACL_ENTRY_T *entry_p)
1600 int result;
1602 result = SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id,
1603 entry_p);
1605 do_log(SMB_VFS_OP_SYS_ACL_GET_ENTRY, (result >= 0), handle,
1606 "");
1608 return result;
1611 static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct *handle,
1613 SMB_ACL_ENTRY_T entry_d,
1614 SMB_ACL_TAG_T *tag_type_p)
1616 int result;
1618 result = SMB_VFS_NEXT_SYS_ACL_GET_TAG_TYPE(handle, entry_d,
1619 tag_type_p);
1621 do_log(SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, (result >= 0), handle,
1622 "");
1624 return result;
1627 static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct *handle,
1629 SMB_ACL_ENTRY_T entry_d,
1630 SMB_ACL_PERMSET_T *permset_p)
1632 int result;
1634 result = SMB_VFS_NEXT_SYS_ACL_GET_PERMSET(handle, entry_d,
1635 permset_p);
1637 do_log(SMB_VFS_OP_SYS_ACL_GET_PERMSET, (result >= 0), handle,
1638 "");
1640 return result;
1643 static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct *handle,
1645 SMB_ACL_ENTRY_T entry_d)
1647 void *result;
1649 result = SMB_VFS_NEXT_SYS_ACL_GET_QUALIFIER(handle, entry_d);
1651 do_log(SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, (result != NULL), handle,
1652 "");
1654 return result;
1657 static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
1658 const char *path_p,
1659 SMB_ACL_TYPE_T type)
1661 SMB_ACL_T result;
1663 result = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, path_p, type);
1665 do_log(SMB_VFS_OP_SYS_ACL_GET_FILE, (result != NULL), handle,
1666 "%s", path_p);
1668 return result;
1671 static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
1672 files_struct *fsp)
1674 SMB_ACL_T result;
1676 result = SMB_VFS_NEXT_SYS_ACL_GET_FD(handle, fsp);
1678 do_log(SMB_VFS_OP_SYS_ACL_GET_FD, (result != NULL), handle,
1679 "%s", fsp->fsp_name);
1681 return result;
1684 static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct *handle,
1686 SMB_ACL_PERMSET_T permset)
1688 int result;
1690 result = SMB_VFS_NEXT_SYS_ACL_CLEAR_PERMS(handle, permset);
1692 do_log(SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, (result >= 0), handle,
1693 "");
1695 return result;
1698 static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct *handle,
1700 SMB_ACL_PERMSET_T permset,
1701 SMB_ACL_PERM_T perm)
1703 int result;
1705 result = SMB_VFS_NEXT_SYS_ACL_ADD_PERM(handle, permset, perm);
1707 do_log(SMB_VFS_OP_SYS_ACL_ADD_PERM, (result >= 0), handle,
1708 "");
1710 return result;
1713 static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct *handle,
1714 SMB_ACL_T theacl,
1715 ssize_t *plen)
1717 char * result;
1719 result = SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen);
1721 do_log(SMB_VFS_OP_SYS_ACL_TO_TEXT, (result != NULL), handle,
1722 "");
1724 return result;
1727 static SMB_ACL_T smb_full_audit_sys_acl_init(vfs_handle_struct *handle,
1729 int count)
1731 SMB_ACL_T result;
1733 result = SMB_VFS_NEXT_SYS_ACL_INIT(handle, count);
1735 do_log(SMB_VFS_OP_SYS_ACL_INIT, (result != NULL), handle,
1736 "");
1738 return result;
1741 static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct *handle,
1742 SMB_ACL_T *pacl,
1743 SMB_ACL_ENTRY_T *pentry)
1745 int result;
1747 result = SMB_VFS_NEXT_SYS_ACL_CREATE_ENTRY(handle, pacl, pentry);
1749 do_log(SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, (result >= 0), handle,
1750 "");
1752 return result;
1755 static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct *handle,
1757 SMB_ACL_ENTRY_T entry,
1758 SMB_ACL_TAG_T tagtype)
1760 int result;
1762 result = SMB_VFS_NEXT_SYS_ACL_SET_TAG_TYPE(handle, entry,
1763 tagtype);
1765 do_log(SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, (result >= 0), handle,
1766 "");
1768 return result;
1771 static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct *handle,
1773 SMB_ACL_ENTRY_T entry,
1774 void *qual)
1776 int result;
1778 result = SMB_VFS_NEXT_SYS_ACL_SET_QUALIFIER(handle, entry, qual);
1780 do_log(SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, (result >= 0), handle,
1781 "");
1783 return result;
1786 static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct *handle,
1788 SMB_ACL_ENTRY_T entry,
1789 SMB_ACL_PERMSET_T permset)
1791 int result;
1793 result = SMB_VFS_NEXT_SYS_ACL_SET_PERMSET(handle, entry, permset);
1795 do_log(SMB_VFS_OP_SYS_ACL_SET_PERMSET, (result >= 0), handle,
1796 "");
1798 return result;
1801 static int smb_full_audit_sys_acl_valid(vfs_handle_struct *handle,
1803 SMB_ACL_T theacl )
1805 int result;
1807 result = SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl);
1809 do_log(SMB_VFS_OP_SYS_ACL_VALID, (result >= 0), handle,
1810 "");
1812 return result;
1815 static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
1817 const char *name, SMB_ACL_TYPE_T acltype,
1818 SMB_ACL_T theacl)
1820 int result;
1822 result = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype,
1823 theacl);
1825 do_log(SMB_VFS_OP_SYS_ACL_SET_FILE, (result >= 0), handle,
1826 "%s", name);
1828 return result;
1831 static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
1832 SMB_ACL_T theacl)
1834 int result;
1836 result = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
1838 do_log(SMB_VFS_OP_SYS_ACL_SET_FD, (result >= 0), handle,
1839 "%s", fsp->fsp_name);
1841 return result;
1844 static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
1846 const char *path)
1848 int result;
1850 result = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, path);
1852 do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, (result >= 0), handle,
1853 "%s", path);
1855 return result;
1858 static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct *handle,
1860 SMB_ACL_PERMSET_T permset,
1861 SMB_ACL_PERM_T perm)
1863 int result;
1865 result = SMB_VFS_NEXT_SYS_ACL_GET_PERM(handle, permset, perm);
1867 do_log(SMB_VFS_OP_SYS_ACL_GET_PERM, (result >= 0), handle,
1868 "");
1870 return result;
1873 static int smb_full_audit_sys_acl_free_text(vfs_handle_struct *handle,
1875 char *text)
1877 int result;
1879 result = SMB_VFS_NEXT_SYS_ACL_FREE_TEXT(handle, text);
1881 do_log(SMB_VFS_OP_SYS_ACL_FREE_TEXT, (result >= 0), handle,
1882 "");
1884 return result;
1887 static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct *handle,
1889 SMB_ACL_T posix_acl)
1891 int result;
1893 result = SMB_VFS_NEXT_SYS_ACL_FREE_ACL(handle, posix_acl);
1895 do_log(SMB_VFS_OP_SYS_ACL_FREE_ACL, (result >= 0), handle,
1896 "");
1898 return result;
1901 static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct *handle,
1902 void *qualifier,
1903 SMB_ACL_TAG_T tagtype)
1905 int result;
1907 result = SMB_VFS_NEXT_SYS_ACL_FREE_QUALIFIER(handle, qualifier,
1908 tagtype);
1910 do_log(SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, (result >= 0), handle,
1911 "");
1913 return result;
1916 static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
1917 const char *path,
1918 const char *name, void *value, size_t size)
1920 ssize_t result;
1922 result = SMB_VFS_NEXT_GETXATTR(handle, path, name, value, size);
1924 do_log(SMB_VFS_OP_GETXATTR, (result >= 0), handle,
1925 "%s|%s", path, name);
1927 return result;
1930 static ssize_t smb_full_audit_lgetxattr(struct vfs_handle_struct *handle,
1931 const char *path, const char *name,
1932 void *value, size_t size)
1934 ssize_t result;
1936 result = SMB_VFS_NEXT_LGETXATTR(handle, path, name, value, size);
1938 do_log(SMB_VFS_OP_LGETXATTR, (result >= 0), handle,
1939 "%s|%s", path, name);
1941 return result;
1944 static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
1945 struct files_struct *fsp,
1946 const char *name, void *value, size_t size)
1948 ssize_t result;
1950 result = SMB_VFS_NEXT_FGETXATTR(handle, fsp, name, value, size);
1952 do_log(SMB_VFS_OP_FGETXATTR, (result >= 0), handle,
1953 "%s|%s", fsp->fsp_name, name);
1955 return result;
1958 static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
1959 const char *path, char *list, size_t size)
1961 ssize_t result;
1963 result = SMB_VFS_NEXT_LISTXATTR(handle, path, list, size);
1965 do_log(SMB_VFS_OP_LISTXATTR, (result >= 0), handle, "%s", path);
1967 return result;
1970 static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
1971 const char *path, char *list, size_t size)
1973 ssize_t result;
1975 result = SMB_VFS_NEXT_LLISTXATTR(handle, path, list, size);
1977 do_log(SMB_VFS_OP_LLISTXATTR, (result >= 0), handle, "%s", path);
1979 return result;
1982 static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
1983 struct files_struct *fsp, char *list,
1984 size_t size)
1986 ssize_t result;
1988 result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
1990 do_log(SMB_VFS_OP_FLISTXATTR, (result >= 0), handle,
1991 "%s", fsp->fsp_name);
1993 return result;
1996 static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
1997 const char *path,
1998 const char *name)
2000 int result;
2002 result = SMB_VFS_NEXT_REMOVEXATTR(handle, path, name);
2004 do_log(SMB_VFS_OP_REMOVEXATTR, (result >= 0), handle,
2005 "%s|%s", path, name);
2007 return result;
2010 static int smb_full_audit_lremovexattr(struct vfs_handle_struct *handle,
2011 const char *path,
2012 const char *name)
2014 int result;
2016 result = SMB_VFS_NEXT_LREMOVEXATTR(handle, path, name);
2018 do_log(SMB_VFS_OP_LREMOVEXATTR, (result >= 0), handle,
2019 "%s|%s", path, name);
2021 return result;
2024 static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
2025 struct files_struct *fsp,
2026 const char *name)
2028 int result;
2030 result = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
2032 do_log(SMB_VFS_OP_FREMOVEXATTR, (result >= 0), handle,
2033 "%s|%s", fsp->fsp_name, name);
2035 return result;
2038 static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
2039 const char *path,
2040 const char *name, const void *value, size_t size,
2041 int flags)
2043 int result;
2045 result = SMB_VFS_NEXT_SETXATTR(handle, path, name, value, size,
2046 flags);
2048 do_log(SMB_VFS_OP_SETXATTR, (result >= 0), handle,
2049 "%s|%s", path, name);
2051 return result;
2054 static int smb_full_audit_lsetxattr(struct vfs_handle_struct *handle,
2055 const char *path,
2056 const char *name, const void *value, size_t size,
2057 int flags)
2059 int result;
2061 result = SMB_VFS_NEXT_LSETXATTR(handle, path, name, value, size,
2062 flags);
2064 do_log(SMB_VFS_OP_LSETXATTR, (result >= 0), handle,
2065 "%s|%s", path, name);
2067 return result;
2070 static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
2071 struct files_struct *fsp, const char *name,
2072 const void *value, size_t size, int flags)
2074 int result;
2076 result = SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags);
2078 do_log(SMB_VFS_OP_FSETXATTR, (result >= 0), handle,
2079 "%s|%s", fsp->fsp_name, name);
2081 return result;
2084 static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2086 int result;
2088 result = SMB_VFS_NEXT_AIO_READ(handle, fsp, aiocb);
2089 do_log(SMB_VFS_OP_AIO_READ, (result >= 0), handle,
2090 "%s", fsp->fsp_name);
2092 return result;
2095 static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2097 int result;
2099 result = SMB_VFS_NEXT_AIO_WRITE(handle, fsp, aiocb);
2100 do_log(SMB_VFS_OP_AIO_WRITE, (result >= 0), handle,
2101 "%s", fsp->fsp_name);
2103 return result;
2106 static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2108 int result;
2110 result = SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);
2111 do_log(SMB_VFS_OP_AIO_RETURN, (result >= 0), handle,
2112 "%s", fsp->fsp_name);
2114 return result;
2117 static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2119 int result;
2121 result = SMB_VFS_NEXT_AIO_CANCEL(handle, fsp, aiocb);
2122 do_log(SMB_VFS_OP_AIO_CANCEL, (result >= 0), handle,
2123 "%s", fsp->fsp_name);
2125 return result;
2128 static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
2130 int result;
2132 result = SMB_VFS_NEXT_AIO_ERROR(handle, fsp, aiocb);
2133 do_log(SMB_VFS_OP_AIO_ERROR, (result >= 0), handle,
2134 "%s", fsp->fsp_name);
2136 return result;
2139 static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
2141 int result;
2143 result = SMB_VFS_NEXT_AIO_FSYNC(handle, fsp, op, aiocb);
2144 do_log(SMB_VFS_OP_AIO_FSYNC, (result >= 0), handle,
2145 "%s", fsp->fsp_name);
2147 return result;
2150 static int smb_full_audit_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts)
2152 int result;
2154 result = SMB_VFS_NEXT_AIO_SUSPEND(handle, fsp, aiocb, n, ts);
2155 do_log(SMB_VFS_OP_AIO_SUSPEND, (result >= 0), handle,
2156 "%s", fsp->fsp_name);
2158 return result;
2162 NTSTATUS vfs_full_audit_init(void);
2163 NTSTATUS vfs_full_audit_init(void)
2165 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
2166 "full_audit", audit_op_tuples);
2168 if (!NT_STATUS_IS_OK(ret))
2169 return ret;
2171 vfs_full_audit_debug_level = debug_add_class("full_audit");
2172 if (vfs_full_audit_debug_level == -1) {
2173 vfs_full_audit_debug_level = DBGC_VFS;
2174 DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
2175 "class!\n"));
2176 } else {
2177 DEBUG(10, ("vfs_full_audit: Debug class number of "
2178 "'full_audit': %d\n", vfs_full_audit_debug_level));
2181 return ret;