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 |
|
---|
62 | static int vfs_full_audit_debug_level = DBGC_VFS;
|
---|
63 |
|
---|
64 | struct vfs_full_audit_private_data {
|
---|
65 | struct bitmap *success_ops;
|
---|
66 | struct bitmap *failure_ops;
|
---|
67 | };
|
---|
68 |
|
---|
69 | #undef DBGC_CLASS
|
---|
70 | #define DBGC_CLASS vfs_full_audit_debug_level
|
---|
71 |
|
---|
72 | /* Function prototypes */
|
---|
73 |
|
---|
74 | static int smb_full_audit_connect(vfs_handle_struct *handle,
|
---|
75 | const char *svc, const char *user);
|
---|
76 | static void smb_full_audit_disconnect(vfs_handle_struct *handle);
|
---|
77 | static SMB_BIG_UINT smb_full_audit_disk_free(vfs_handle_struct *handle,
|
---|
78 | const char *path,
|
---|
79 | bool small_query, SMB_BIG_UINT *bsize,
|
---|
80 | SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize);
|
---|
81 | static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
|
---|
82 | enum SMB_QUOTA_TYPE qtype, unid_t id,
|
---|
83 | SMB_DISK_QUOTA *qt);
|
---|
84 | static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
|
---|
85 | enum SMB_QUOTA_TYPE qtype, unid_t id,
|
---|
86 | SMB_DISK_QUOTA *qt);
|
---|
87 | static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
|
---|
88 | struct files_struct *fsp,
|
---|
89 | SHADOW_COPY_DATA *shadow_copy_data, bool labels);
|
---|
90 | static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
|
---|
91 | const char *path,
|
---|
92 | struct vfs_statvfs_struct *statbuf);
|
---|
93 |
|
---|
94 | static SMB_STRUCT_DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
|
---|
95 | const char *fname, const char *mask, uint32 attr);
|
---|
96 | static SMB_STRUCT_DIRENT *smb_full_audit_readdir(vfs_handle_struct *handle,
|
---|
97 | SMB_STRUCT_DIR *dirp);
|
---|
98 | static void smb_full_audit_seekdir(vfs_handle_struct *handle,
|
---|
99 | SMB_STRUCT_DIR *dirp, long offset);
|
---|
100 | static long smb_full_audit_telldir(vfs_handle_struct *handle,
|
---|
101 | SMB_STRUCT_DIR *dirp);
|
---|
102 | static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
|
---|
103 | SMB_STRUCT_DIR *dirp);
|
---|
104 | static int smb_full_audit_mkdir(vfs_handle_struct *handle,
|
---|
105 | const char *path, mode_t mode);
|
---|
106 | static int smb_full_audit_rmdir(vfs_handle_struct *handle,
|
---|
107 | const char *path);
|
---|
108 | static int smb_full_audit_closedir(vfs_handle_struct *handle,
|
---|
109 | SMB_STRUCT_DIR *dirp);
|
---|
110 | static int smb_full_audit_open(vfs_handle_struct *handle,
|
---|
111 | const char *fname, files_struct *fsp, int flags, mode_t mode);
|
---|
112 | static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp);
|
---|
113 | static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
|
---|
114 | void *data, size_t n);
|
---|
115 | static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
|
---|
116 | void *data, size_t n, SMB_OFF_T offset);
|
---|
117 | static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
|
---|
118 | const void *data, size_t n);
|
---|
119 | static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
|
---|
120 | const void *data, size_t n,
|
---|
121 | SMB_OFF_T offset);
|
---|
122 | static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
|
---|
123 | SMB_OFF_T offset, int whence);
|
---|
124 | static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
|
---|
125 | files_struct *fromfsp,
|
---|
126 | const DATA_BLOB *hdr, SMB_OFF_T offset,
|
---|
127 | size_t n);
|
---|
128 | static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
|
---|
129 | files_struct *tofsp,
|
---|
130 | SMB_OFF_T offset,
|
---|
131 | size_t n);
|
---|
132 | static int smb_full_audit_rename(vfs_handle_struct *handle,
|
---|
133 | const char *oldname, const char *newname);
|
---|
134 | static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp);
|
---|
135 | static int smb_full_audit_stat(vfs_handle_struct *handle,
|
---|
136 | const char *fname, SMB_STRUCT_STAT *sbuf);
|
---|
137 | static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
|
---|
138 | SMB_STRUCT_STAT *sbuf);
|
---|
139 | static int smb_full_audit_lstat(vfs_handle_struct *handle,
|
---|
140 | const char *path, SMB_STRUCT_STAT *sbuf);
|
---|
141 | static int smb_full_audit_unlink(vfs_handle_struct *handle,
|
---|
142 | const char *path);
|
---|
143 | static int smb_full_audit_chmod(vfs_handle_struct *handle,
|
---|
144 | const char *path, mode_t mode);
|
---|
145 | static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
|
---|
146 | mode_t mode);
|
---|
147 | static int smb_full_audit_chown(vfs_handle_struct *handle,
|
---|
148 | const char *path, uid_t uid, gid_t gid);
|
---|
149 | static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
|
---|
150 | uid_t uid, gid_t gid);
|
---|
151 | static int smb_full_audit_lchown(vfs_handle_struct *handle,
|
---|
152 | const char *path, uid_t uid, gid_t gid);
|
---|
153 | static int smb_full_audit_chdir(vfs_handle_struct *handle,
|
---|
154 | const char *path);
|
---|
155 | static char *smb_full_audit_getwd(vfs_handle_struct *handle,
|
---|
156 | char *path);
|
---|
157 | static int smb_full_audit_ntimes(vfs_handle_struct *handle,
|
---|
158 | const char *path, const struct timespec ts[2]);
|
---|
159 | static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
|
---|
160 | SMB_OFF_T len);
|
---|
161 | static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
|
---|
162 | int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
|
---|
163 | static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
|
---|
164 | struct files_struct *fsp,
|
---|
165 | uint32 share_mode);
|
---|
166 | static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
|
---|
167 | int leasetype);
|
---|
168 | static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
|
---|
169 | SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid);
|
---|
170 | static int smb_full_audit_symlink(vfs_handle_struct *handle,
|
---|
171 | const char *oldpath, const char *newpath);
|
---|
172 | static int smb_full_audit_readlink(vfs_handle_struct *handle,
|
---|
173 | const char *path, char *buf, size_t bufsiz);
|
---|
174 | static int smb_full_audit_link(vfs_handle_struct *handle,
|
---|
175 | const char *oldpath, const char *newpath);
|
---|
176 | static int smb_full_audit_mknod(vfs_handle_struct *handle,
|
---|
177 | const char *pathname, mode_t mode, SMB_DEV_T dev);
|
---|
178 | static char *smb_full_audit_realpath(vfs_handle_struct *handle,
|
---|
179 | const char *path, char *resolved_path);
|
---|
180 | static NTSTATUS smb_full_audit_notify_watch(struct vfs_handle_struct *handle,
|
---|
181 | struct sys_notify_context *ctx,
|
---|
182 | struct notify_entry *e,
|
---|
183 | void (*callback)(struct sys_notify_context *ctx,
|
---|
184 | void *private_data,
|
---|
185 | struct notify_event *ev),
|
---|
186 | void *private_data, void *handle_p);
|
---|
187 | static int smb_full_audit_chflags(vfs_handle_struct *handle,
|
---|
188 | const char *path, unsigned int flags);
|
---|
189 | static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
|
---|
190 | SMB_DEV_T dev, SMB_INO_T inode);
|
---|
191 | static NTSTATUS smb_full_audit_streaminfo(vfs_handle_struct *handle,
|
---|
192 | struct files_struct *fsp,
|
---|
193 | const char *fname,
|
---|
194 | TALLOC_CTX *mem_ctx,
|
---|
195 | unsigned int *pnum_streams,
|
---|
196 | struct stream_struct **pstreams);
|
---|
197 | static int smb_full_audit_get_real_filename(struct vfs_handle_struct *handle,
|
---|
198 | const char *path,
|
---|
199 | const char *name,
|
---|
200 | TALLOC_CTX *mem_ctx,
|
---|
201 | char **found_name);
|
---|
202 | static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
|
---|
203 | uint32 security_info,
|
---|
204 | SEC_DESC **ppdesc);
|
---|
205 | static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle,
|
---|
206 | const char *name, uint32 security_info,
|
---|
207 | SEC_DESC **ppdesc);
|
---|
208 | static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
|
---|
209 | uint32 security_info_sent,
|
---|
210 | const SEC_DESC *psd);
|
---|
211 | static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
|
---|
212 | const char *path, mode_t mode);
|
---|
213 | static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
|
---|
214 | mode_t mode);
|
---|
215 | static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct *handle,
|
---|
216 | SMB_ACL_T theacl, int entry_id,
|
---|
217 | SMB_ACL_ENTRY_T *entry_p);
|
---|
218 | static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct *handle,
|
---|
219 | SMB_ACL_ENTRY_T entry_d,
|
---|
220 | SMB_ACL_TAG_T *tag_type_p);
|
---|
221 | static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct *handle,
|
---|
222 | SMB_ACL_ENTRY_T entry_d,
|
---|
223 | SMB_ACL_PERMSET_T *permset_p);
|
---|
224 | static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct *handle,
|
---|
225 | SMB_ACL_ENTRY_T entry_d);
|
---|
226 | static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
|
---|
227 | const char *path_p,
|
---|
228 | SMB_ACL_TYPE_T type);
|
---|
229 | static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
|
---|
230 | files_struct *fsp);
|
---|
231 | static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct *handle,
|
---|
232 | SMB_ACL_PERMSET_T permset);
|
---|
233 | static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct *handle,
|
---|
234 | SMB_ACL_PERMSET_T permset,
|
---|
235 | SMB_ACL_PERM_T perm);
|
---|
236 | static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct *handle,
|
---|
237 | SMB_ACL_T theacl,
|
---|
238 | ssize_t *plen);
|
---|
239 | static SMB_ACL_T smb_full_audit_sys_acl_init(vfs_handle_struct *handle,
|
---|
240 | int count);
|
---|
241 | static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct *handle,
|
---|
242 | SMB_ACL_T *pacl,
|
---|
243 | SMB_ACL_ENTRY_T *pentry);
|
---|
244 | static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct *handle,
|
---|
245 | SMB_ACL_ENTRY_T entry,
|
---|
246 | SMB_ACL_TAG_T tagtype);
|
---|
247 | static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct *handle,
|
---|
248 | SMB_ACL_ENTRY_T entry,
|
---|
249 | void *qual);
|
---|
250 | static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct *handle,
|
---|
251 | SMB_ACL_ENTRY_T entry,
|
---|
252 | SMB_ACL_PERMSET_T permset);
|
---|
253 | static int smb_full_audit_sys_acl_valid(vfs_handle_struct *handle,
|
---|
254 | SMB_ACL_T theacl );
|
---|
255 | static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
|
---|
256 | const char *name, SMB_ACL_TYPE_T acltype,
|
---|
257 | SMB_ACL_T theacl);
|
---|
258 | static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
|
---|
259 | SMB_ACL_T theacl);
|
---|
260 | static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
|
---|
261 | const char *path);
|
---|
262 | static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct *handle,
|
---|
263 | SMB_ACL_PERMSET_T permset,
|
---|
264 | SMB_ACL_PERM_T perm);
|
---|
265 | static int smb_full_audit_sys_acl_free_text(vfs_handle_struct *handle,
|
---|
266 | char *text);
|
---|
267 | static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct *handle,
|
---|
268 | SMB_ACL_T posix_acl);
|
---|
269 | static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct *handle,
|
---|
270 | void *qualifier,
|
---|
271 | SMB_ACL_TAG_T tagtype);
|
---|
272 | static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
|
---|
273 | const char *path,
|
---|
274 | const char *name, void *value, size_t size);
|
---|
275 | static ssize_t smb_full_audit_lgetxattr(struct vfs_handle_struct *handle,
|
---|
276 | const char *path, const char *name,
|
---|
277 | void *value, size_t size);
|
---|
278 | static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
|
---|
279 | struct files_struct *fsp,
|
---|
280 | const char *name, void *value, size_t size);
|
---|
281 | static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
|
---|
282 | const char *path, char *list, size_t size);
|
---|
283 | static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
|
---|
284 | const char *path, char *list, size_t size);
|
---|
285 | static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
|
---|
286 | struct files_struct *fsp, char *list,
|
---|
287 | size_t size);
|
---|
288 | static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
|
---|
289 | const char *path,
|
---|
290 | const char *name);
|
---|
291 | static int smb_full_audit_lremovexattr(struct vfs_handle_struct *handle,
|
---|
292 | const char *path,
|
---|
293 | const char *name);
|
---|
294 | static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
|
---|
295 | struct files_struct *fsp,
|
---|
296 | const char *name);
|
---|
297 | static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
|
---|
298 | const char *path,
|
---|
299 | const char *name, const void *value, size_t size,
|
---|
300 | int flags);
|
---|
301 | static int smb_full_audit_lsetxattr(struct vfs_handle_struct *handle,
|
---|
302 | const char *path,
|
---|
303 | const char *name, const void *value, size_t size,
|
---|
304 | int flags);
|
---|
305 | static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
|
---|
306 | struct files_struct *fsp, const char *name,
|
---|
307 | const void *value, size_t size, int flags);
|
---|
308 |
|
---|
309 | static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
|
---|
310 | static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
|
---|
311 | static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
|
---|
312 | static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
|
---|
313 | static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb);
|
---|
314 | static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb);
|
---|
315 | 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);
|
---|
316 |
|
---|
317 | /* VFS operations */
|
---|
318 |
|
---|
319 | static vfs_op_tuple audit_op_tuples[] = {
|
---|
320 |
|
---|
321 | /* Disk operations */
|
---|
322 |
|
---|
323 | {SMB_VFS_OP(smb_full_audit_connect), SMB_VFS_OP_CONNECT,
|
---|
324 | SMB_VFS_LAYER_LOGGER},
|
---|
325 | {SMB_VFS_OP(smb_full_audit_disconnect), SMB_VFS_OP_DISCONNECT,
|
---|
326 | SMB_VFS_LAYER_LOGGER},
|
---|
327 | {SMB_VFS_OP(smb_full_audit_disk_free), SMB_VFS_OP_DISK_FREE,
|
---|
328 | SMB_VFS_LAYER_LOGGER},
|
---|
329 | {SMB_VFS_OP(smb_full_audit_get_quota), SMB_VFS_OP_GET_QUOTA,
|
---|
330 | SMB_VFS_LAYER_LOGGER},
|
---|
331 | {SMB_VFS_OP(smb_full_audit_set_quota), SMB_VFS_OP_SET_QUOTA,
|
---|
332 | SMB_VFS_LAYER_LOGGER},
|
---|
333 | {SMB_VFS_OP(smb_full_audit_get_shadow_copy_data), SMB_VFS_OP_GET_SHADOW_COPY_DATA,
|
---|
334 | SMB_VFS_LAYER_LOGGER},
|
---|
335 | {SMB_VFS_OP(smb_full_audit_statvfs), SMB_VFS_OP_STATVFS,
|
---|
336 | SMB_VFS_LAYER_LOGGER},
|
---|
337 |
|
---|
338 | /* Directory operations */
|
---|
339 |
|
---|
340 | {SMB_VFS_OP(smb_full_audit_opendir), SMB_VFS_OP_OPENDIR,
|
---|
341 | SMB_VFS_LAYER_LOGGER},
|
---|
342 | {SMB_VFS_OP(smb_full_audit_readdir), SMB_VFS_OP_READDIR,
|
---|
343 | SMB_VFS_LAYER_LOGGER},
|
---|
344 | {SMB_VFS_OP(smb_full_audit_seekdir), SMB_VFS_OP_SEEKDIR,
|
---|
345 | SMB_VFS_LAYER_LOGGER},
|
---|
346 | {SMB_VFS_OP(smb_full_audit_telldir), SMB_VFS_OP_TELLDIR,
|
---|
347 | SMB_VFS_LAYER_LOGGER},
|
---|
348 | {SMB_VFS_OP(smb_full_audit_rewinddir), SMB_VFS_OP_REWINDDIR,
|
---|
349 | SMB_VFS_LAYER_LOGGER},
|
---|
350 | {SMB_VFS_OP(smb_full_audit_mkdir), SMB_VFS_OP_MKDIR,
|
---|
351 | SMB_VFS_LAYER_LOGGER},
|
---|
352 | {SMB_VFS_OP(smb_full_audit_rmdir), SMB_VFS_OP_RMDIR,
|
---|
353 | SMB_VFS_LAYER_LOGGER},
|
---|
354 | {SMB_VFS_OP(smb_full_audit_closedir), SMB_VFS_OP_CLOSEDIR,
|
---|
355 | SMB_VFS_LAYER_LOGGER},
|
---|
356 |
|
---|
357 | /* File operations */
|
---|
358 |
|
---|
359 | {SMB_VFS_OP(smb_full_audit_open), SMB_VFS_OP_OPEN,
|
---|
360 | SMB_VFS_LAYER_LOGGER},
|
---|
361 | {SMB_VFS_OP(smb_full_audit_close), SMB_VFS_OP_CLOSE,
|
---|
362 | SMB_VFS_LAYER_LOGGER},
|
---|
363 | {SMB_VFS_OP(smb_full_audit_read), SMB_VFS_OP_READ,
|
---|
364 | SMB_VFS_LAYER_LOGGER},
|
---|
365 | {SMB_VFS_OP(smb_full_audit_pread), SMB_VFS_OP_PREAD,
|
---|
366 | SMB_VFS_LAYER_LOGGER},
|
---|
367 | {SMB_VFS_OP(smb_full_audit_write), SMB_VFS_OP_WRITE,
|
---|
368 | SMB_VFS_LAYER_LOGGER},
|
---|
369 | {SMB_VFS_OP(smb_full_audit_pwrite), SMB_VFS_OP_PWRITE,
|
---|
370 | SMB_VFS_LAYER_LOGGER},
|
---|
371 | {SMB_VFS_OP(smb_full_audit_lseek), SMB_VFS_OP_LSEEK,
|
---|
372 | SMB_VFS_LAYER_LOGGER},
|
---|
373 | {SMB_VFS_OP(smb_full_audit_sendfile), SMB_VFS_OP_SENDFILE,
|
---|
374 | SMB_VFS_LAYER_LOGGER},
|
---|
375 | {SMB_VFS_OP(smb_full_audit_recvfile), SMB_VFS_OP_RECVFILE,
|
---|
376 | SMB_VFS_LAYER_LOGGER},
|
---|
377 | {SMB_VFS_OP(smb_full_audit_rename), SMB_VFS_OP_RENAME,
|
---|
378 | SMB_VFS_LAYER_LOGGER},
|
---|
379 | {SMB_VFS_OP(smb_full_audit_fsync), SMB_VFS_OP_FSYNC,
|
---|
380 | SMB_VFS_LAYER_LOGGER},
|
---|
381 | {SMB_VFS_OP(smb_full_audit_stat), SMB_VFS_OP_STAT,
|
---|
382 | SMB_VFS_LAYER_LOGGER},
|
---|
383 | {SMB_VFS_OP(smb_full_audit_fstat), SMB_VFS_OP_FSTAT,
|
---|
384 | SMB_VFS_LAYER_LOGGER},
|
---|
385 | {SMB_VFS_OP(smb_full_audit_lstat), SMB_VFS_OP_LSTAT,
|
---|
386 | SMB_VFS_LAYER_LOGGER},
|
---|
387 | {SMB_VFS_OP(smb_full_audit_unlink), SMB_VFS_OP_UNLINK,
|
---|
388 | SMB_VFS_LAYER_LOGGER},
|
---|
389 | {SMB_VFS_OP(smb_full_audit_chmod), SMB_VFS_OP_CHMOD,
|
---|
390 | SMB_VFS_LAYER_LOGGER},
|
---|
391 | {SMB_VFS_OP(smb_full_audit_fchmod), SMB_VFS_OP_FCHMOD,
|
---|
392 | SMB_VFS_LAYER_LOGGER},
|
---|
393 | {SMB_VFS_OP(smb_full_audit_chown), SMB_VFS_OP_CHOWN,
|
---|
394 | SMB_VFS_LAYER_LOGGER},
|
---|
395 | {SMB_VFS_OP(smb_full_audit_fchown), SMB_VFS_OP_FCHOWN,
|
---|
396 | SMB_VFS_LAYER_LOGGER},
|
---|
397 | {SMB_VFS_OP(smb_full_audit_lchown), SMB_VFS_OP_LCHOWN,
|
---|
398 | SMB_VFS_LAYER_LOGGER},
|
---|
399 | {SMB_VFS_OP(smb_full_audit_chdir), SMB_VFS_OP_CHDIR,
|
---|
400 | SMB_VFS_LAYER_LOGGER},
|
---|
401 | {SMB_VFS_OP(smb_full_audit_getwd), SMB_VFS_OP_GETWD,
|
---|
402 | SMB_VFS_LAYER_LOGGER},
|
---|
403 | {SMB_VFS_OP(smb_full_audit_ntimes), SMB_VFS_OP_NTIMES,
|
---|
404 | SMB_VFS_LAYER_LOGGER},
|
---|
405 | {SMB_VFS_OP(smb_full_audit_ftruncate), SMB_VFS_OP_FTRUNCATE,
|
---|
406 | SMB_VFS_LAYER_LOGGER},
|
---|
407 | {SMB_VFS_OP(smb_full_audit_lock), SMB_VFS_OP_LOCK,
|
---|
408 | SMB_VFS_LAYER_LOGGER},
|
---|
409 | {SMB_VFS_OP(smb_full_audit_kernel_flock), SMB_VFS_OP_KERNEL_FLOCK,
|
---|
410 | SMB_VFS_LAYER_LOGGER},
|
---|
411 | {SMB_VFS_OP(smb_full_audit_linux_setlease), SMB_VFS_OP_LINUX_SETLEASE,
|
---|
412 | SMB_VFS_LAYER_LOGGER},
|
---|
413 | {SMB_VFS_OP(smb_full_audit_getlock), SMB_VFS_OP_GETLOCK,
|
---|
414 | SMB_VFS_LAYER_LOGGER},
|
---|
415 | {SMB_VFS_OP(smb_full_audit_symlink), SMB_VFS_OP_SYMLINK,
|
---|
416 | SMB_VFS_LAYER_LOGGER},
|
---|
417 | {SMB_VFS_OP(smb_full_audit_readlink), SMB_VFS_OP_READLINK,
|
---|
418 | SMB_VFS_LAYER_LOGGER},
|
---|
419 | {SMB_VFS_OP(smb_full_audit_link), SMB_VFS_OP_LINK,
|
---|
420 | SMB_VFS_LAYER_LOGGER},
|
---|
421 | {SMB_VFS_OP(smb_full_audit_mknod), SMB_VFS_OP_MKNOD,
|
---|
422 | SMB_VFS_LAYER_LOGGER},
|
---|
423 | {SMB_VFS_OP(smb_full_audit_realpath), SMB_VFS_OP_REALPATH,
|
---|
424 | SMB_VFS_LAYER_LOGGER},
|
---|
425 | {SMB_VFS_OP(smb_full_audit_notify_watch),SMB_VFS_OP_NOTIFY_WATCH,
|
---|
426 | SMB_VFS_LAYER_LOGGER},
|
---|
427 | {SMB_VFS_OP(smb_full_audit_chflags), SMB_VFS_OP_CHFLAGS,
|
---|
428 | SMB_VFS_LAYER_LOGGER},
|
---|
429 | {SMB_VFS_OP(smb_full_audit_file_id_create), SMB_VFS_OP_FILE_ID_CREATE,
|
---|
430 | SMB_VFS_LAYER_LOGGER},
|
---|
431 | {SMB_VFS_OP(smb_full_audit_streaminfo), SMB_VFS_OP_STREAMINFO,
|
---|
432 | SMB_VFS_LAYER_LOGGER},
|
---|
433 | {SMB_VFS_OP(smb_full_audit_get_real_filename), SMB_VFS_OP_GET_REAL_FILENAME,
|
---|
434 | SMB_VFS_LAYER_LOGGER},
|
---|
435 |
|
---|
436 | /* NT ACL operations. */
|
---|
437 |
|
---|
438 | {SMB_VFS_OP(smb_full_audit_fget_nt_acl), SMB_VFS_OP_FGET_NT_ACL,
|
---|
439 | SMB_VFS_LAYER_LOGGER},
|
---|
440 | {SMB_VFS_OP(smb_full_audit_get_nt_acl), SMB_VFS_OP_GET_NT_ACL,
|
---|
441 | SMB_VFS_LAYER_LOGGER},
|
---|
442 | {SMB_VFS_OP(smb_full_audit_fset_nt_acl), SMB_VFS_OP_FSET_NT_ACL,
|
---|
443 | SMB_VFS_LAYER_LOGGER},
|
---|
444 |
|
---|
445 | /* POSIX ACL operations. */
|
---|
446 |
|
---|
447 | {SMB_VFS_OP(smb_full_audit_chmod_acl), SMB_VFS_OP_CHMOD_ACL,
|
---|
448 | SMB_VFS_LAYER_LOGGER},
|
---|
449 | {SMB_VFS_OP(smb_full_audit_fchmod_acl), SMB_VFS_OP_FCHMOD_ACL,
|
---|
450 | SMB_VFS_LAYER_LOGGER},
|
---|
451 | {SMB_VFS_OP(smb_full_audit_sys_acl_get_entry), SMB_VFS_OP_SYS_ACL_GET_ENTRY,
|
---|
452 | SMB_VFS_LAYER_LOGGER},
|
---|
453 | {SMB_VFS_OP(smb_full_audit_sys_acl_get_tag_type), SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE,
|
---|
454 | SMB_VFS_LAYER_LOGGER},
|
---|
455 | {SMB_VFS_OP(smb_full_audit_sys_acl_get_permset), SMB_VFS_OP_SYS_ACL_GET_PERMSET,
|
---|
456 | SMB_VFS_LAYER_LOGGER},
|
---|
457 | {SMB_VFS_OP(smb_full_audit_sys_acl_get_qualifier), SMB_VFS_OP_SYS_ACL_GET_QUALIFIER,
|
---|
458 | SMB_VFS_LAYER_LOGGER},
|
---|
459 | {SMB_VFS_OP(smb_full_audit_sys_acl_get_file), SMB_VFS_OP_SYS_ACL_GET_FILE,
|
---|
460 | SMB_VFS_LAYER_LOGGER},
|
---|
461 | {SMB_VFS_OP(smb_full_audit_sys_acl_get_fd), SMB_VFS_OP_SYS_ACL_GET_FD,
|
---|
462 | SMB_VFS_LAYER_LOGGER},
|
---|
463 | {SMB_VFS_OP(smb_full_audit_sys_acl_clear_perms), SMB_VFS_OP_SYS_ACL_CLEAR_PERMS,
|
---|
464 | SMB_VFS_LAYER_LOGGER},
|
---|
465 | {SMB_VFS_OP(smb_full_audit_sys_acl_add_perm), SMB_VFS_OP_SYS_ACL_ADD_PERM,
|
---|
466 | SMB_VFS_LAYER_LOGGER},
|
---|
467 | {SMB_VFS_OP(smb_full_audit_sys_acl_to_text), SMB_VFS_OP_SYS_ACL_TO_TEXT,
|
---|
468 | SMB_VFS_LAYER_LOGGER},
|
---|
469 | {SMB_VFS_OP(smb_full_audit_sys_acl_init), SMB_VFS_OP_SYS_ACL_INIT,
|
---|
470 | SMB_VFS_LAYER_LOGGER},
|
---|
471 | {SMB_VFS_OP(smb_full_audit_sys_acl_create_entry), SMB_VFS_OP_SYS_ACL_CREATE_ENTRY,
|
---|
472 | SMB_VFS_LAYER_LOGGER},
|
---|
473 | {SMB_VFS_OP(smb_full_audit_sys_acl_set_tag_type), SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE,
|
---|
474 | SMB_VFS_LAYER_LOGGER},
|
---|
475 | {SMB_VFS_OP(smb_full_audit_sys_acl_set_qualifier), SMB_VFS_OP_SYS_ACL_SET_QUALIFIER,
|
---|
476 | SMB_VFS_LAYER_LOGGER},
|
---|
477 | {SMB_VFS_OP(smb_full_audit_sys_acl_set_permset), SMB_VFS_OP_SYS_ACL_SET_PERMSET,
|
---|
478 | SMB_VFS_LAYER_LOGGER},
|
---|
479 | {SMB_VFS_OP(smb_full_audit_sys_acl_valid), SMB_VFS_OP_SYS_ACL_VALID,
|
---|
480 | SMB_VFS_LAYER_LOGGER},
|
---|
481 | {SMB_VFS_OP(smb_full_audit_sys_acl_set_file), SMB_VFS_OP_SYS_ACL_SET_FILE,
|
---|
482 | SMB_VFS_LAYER_LOGGER},
|
---|
483 | {SMB_VFS_OP(smb_full_audit_sys_acl_set_fd), SMB_VFS_OP_SYS_ACL_SET_FD,
|
---|
484 | SMB_VFS_LAYER_LOGGER},
|
---|
485 | {SMB_VFS_OP(smb_full_audit_sys_acl_delete_def_file), SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE,
|
---|
486 | SMB_VFS_LAYER_LOGGER},
|
---|
487 | {SMB_VFS_OP(smb_full_audit_sys_acl_get_perm), SMB_VFS_OP_SYS_ACL_GET_PERM,
|
---|
488 | SMB_VFS_LAYER_LOGGER},
|
---|
489 | {SMB_VFS_OP(smb_full_audit_sys_acl_free_text), SMB_VFS_OP_SYS_ACL_FREE_TEXT,
|
---|
490 | SMB_VFS_LAYER_LOGGER},
|
---|
491 | {SMB_VFS_OP(smb_full_audit_sys_acl_free_acl), SMB_VFS_OP_SYS_ACL_FREE_ACL,
|
---|
492 | SMB_VFS_LAYER_LOGGER},
|
---|
493 | {SMB_VFS_OP(smb_full_audit_sys_acl_free_qualifier), SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER,
|
---|
494 | SMB_VFS_LAYER_LOGGER},
|
---|
495 |
|
---|
496 | /* EA operations. */
|
---|
497 |
|
---|
498 | {SMB_VFS_OP(smb_full_audit_getxattr), SMB_VFS_OP_GETXATTR,
|
---|
499 | SMB_VFS_LAYER_LOGGER},
|
---|
500 | {SMB_VFS_OP(smb_full_audit_lgetxattr), SMB_VFS_OP_LGETXATTR,
|
---|
501 | SMB_VFS_LAYER_LOGGER},
|
---|
502 | {SMB_VFS_OP(smb_full_audit_fgetxattr), SMB_VFS_OP_FGETXATTR,
|
---|
503 | SMB_VFS_LAYER_LOGGER},
|
---|
504 | {SMB_VFS_OP(smb_full_audit_listxattr), SMB_VFS_OP_LISTXATTR,
|
---|
505 | SMB_VFS_LAYER_LOGGER},
|
---|
506 | {SMB_VFS_OP(smb_full_audit_llistxattr), SMB_VFS_OP_LLISTXATTR,
|
---|
507 | SMB_VFS_LAYER_LOGGER},
|
---|
508 | {SMB_VFS_OP(smb_full_audit_flistxattr), SMB_VFS_OP_FLISTXATTR,
|
---|
509 | SMB_VFS_LAYER_LOGGER},
|
---|
510 | {SMB_VFS_OP(smb_full_audit_removexattr), SMB_VFS_OP_REMOVEXATTR,
|
---|
511 | SMB_VFS_LAYER_LOGGER},
|
---|
512 | {SMB_VFS_OP(smb_full_audit_lremovexattr), SMB_VFS_OP_LREMOVEXATTR,
|
---|
513 | SMB_VFS_LAYER_LOGGER},
|
---|
514 | {SMB_VFS_OP(smb_full_audit_fremovexattr), SMB_VFS_OP_FREMOVEXATTR,
|
---|
515 | SMB_VFS_LAYER_LOGGER},
|
---|
516 | {SMB_VFS_OP(smb_full_audit_setxattr), SMB_VFS_OP_SETXATTR,
|
---|
517 | SMB_VFS_LAYER_LOGGER},
|
---|
518 | {SMB_VFS_OP(smb_full_audit_lsetxattr), SMB_VFS_OP_LSETXATTR,
|
---|
519 | SMB_VFS_LAYER_LOGGER},
|
---|
520 | {SMB_VFS_OP(smb_full_audit_fsetxattr), SMB_VFS_OP_FSETXATTR,
|
---|
521 | SMB_VFS_LAYER_LOGGER},
|
---|
522 |
|
---|
523 | {SMB_VFS_OP(smb_full_audit_aio_read), SMB_VFS_OP_AIO_READ,
|
---|
524 | SMB_VFS_LAYER_LOGGER},
|
---|
525 | {SMB_VFS_OP(smb_full_audit_aio_write), SMB_VFS_OP_AIO_WRITE,
|
---|
526 | SMB_VFS_LAYER_LOGGER},
|
---|
527 | {SMB_VFS_OP(smb_full_audit_aio_return), SMB_VFS_OP_AIO_RETURN,
|
---|
528 | SMB_VFS_LAYER_LOGGER},
|
---|
529 | {SMB_VFS_OP(smb_full_audit_aio_cancel), SMB_VFS_OP_AIO_CANCEL,
|
---|
530 | SMB_VFS_LAYER_LOGGER},
|
---|
531 | {SMB_VFS_OP(smb_full_audit_aio_error), SMB_VFS_OP_AIO_ERROR,
|
---|
532 | SMB_VFS_LAYER_LOGGER},
|
---|
533 | {SMB_VFS_OP(smb_full_audit_aio_fsync), SMB_VFS_OP_AIO_FSYNC,
|
---|
534 | SMB_VFS_LAYER_LOGGER},
|
---|
535 | {SMB_VFS_OP(smb_full_audit_aio_suspend),SMB_VFS_OP_AIO_SUSPEND,
|
---|
536 | SMB_VFS_LAYER_LOGGER},
|
---|
537 |
|
---|
538 | /* Finish VFS operations definition */
|
---|
539 |
|
---|
540 | {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP,
|
---|
541 | SMB_VFS_LAYER_NOOP}
|
---|
542 | };
|
---|
543 |
|
---|
544 | /* The following array *must* be in the same order as defined in vfs.h */
|
---|
545 |
|
---|
546 | static struct {
|
---|
547 | vfs_op_type type;
|
---|
548 | const char *name;
|
---|
549 | } vfs_op_names[] = {
|
---|
550 | { SMB_VFS_OP_CONNECT, "connect" },
|
---|
551 | { SMB_VFS_OP_DISCONNECT, "disconnect" },
|
---|
552 | { SMB_VFS_OP_DISK_FREE, "disk_free" },
|
---|
553 | { SMB_VFS_OP_GET_QUOTA, "get_quota" },
|
---|
554 | { SMB_VFS_OP_SET_QUOTA, "set_quota" },
|
---|
555 | { SMB_VFS_OP_GET_SHADOW_COPY_DATA, "get_shadow_copy_data" },
|
---|
556 | { SMB_VFS_OP_STATVFS, "statvfs" },
|
---|
557 | { SMB_VFS_OP_FS_CAPABILITIES, "fs_capabilities" },
|
---|
558 | { SMB_VFS_OP_OPENDIR, "opendir" },
|
---|
559 | { SMB_VFS_OP_READDIR, "readdir" },
|
---|
560 | { SMB_VFS_OP_SEEKDIR, "seekdir" },
|
---|
561 | { SMB_VFS_OP_TELLDIR, "telldir" },
|
---|
562 | { SMB_VFS_OP_REWINDDIR, "rewinddir" },
|
---|
563 | { SMB_VFS_OP_MKDIR, "mkdir" },
|
---|
564 | { SMB_VFS_OP_RMDIR, "rmdir" },
|
---|
565 | { SMB_VFS_OP_CLOSEDIR, "closedir" },
|
---|
566 | { SMB_VFS_OP_OPEN, "open" },
|
---|
567 | { SMB_VFS_OP_CLOSE, "close" },
|
---|
568 | { SMB_VFS_OP_READ, "read" },
|
---|
569 | { SMB_VFS_OP_PREAD, "pread" },
|
---|
570 | { SMB_VFS_OP_WRITE, "write" },
|
---|
571 | { SMB_VFS_OP_PWRITE, "pwrite" },
|
---|
572 | { SMB_VFS_OP_LSEEK, "lseek" },
|
---|
573 | { SMB_VFS_OP_SENDFILE, "sendfile" },
|
---|
574 | { SMB_VFS_OP_RECVFILE, "recvfile" },
|
---|
575 | { SMB_VFS_OP_RENAME, "rename" },
|
---|
576 | { SMB_VFS_OP_FSYNC, "fsync" },
|
---|
577 | { SMB_VFS_OP_STAT, "stat" },
|
---|
578 | { SMB_VFS_OP_FSTAT, "fstat" },
|
---|
579 | { SMB_VFS_OP_LSTAT, "lstat" },
|
---|
580 | { SMB_VFS_OP_UNLINK, "unlink" },
|
---|
581 | { SMB_VFS_OP_CHMOD, "chmod" },
|
---|
582 | { SMB_VFS_OP_FCHMOD, "fchmod" },
|
---|
583 | { SMB_VFS_OP_CHOWN, "chown" },
|
---|
584 | { SMB_VFS_OP_FCHOWN, "fchown" },
|
---|
585 | { SMB_VFS_OP_LCHOWN, "lchown" },
|
---|
586 | { SMB_VFS_OP_CHDIR, "chdir" },
|
---|
587 | { SMB_VFS_OP_GETWD, "getwd" },
|
---|
588 | { SMB_VFS_OP_NTIMES, "ntimes" },
|
---|
589 | { SMB_VFS_OP_FTRUNCATE, "ftruncate" },
|
---|
590 | { SMB_VFS_OP_LOCK, "lock" },
|
---|
591 | { SMB_VFS_OP_KERNEL_FLOCK, "kernel_flock" },
|
---|
592 | { SMB_VFS_OP_LINUX_SETLEASE, "linux_setlease" },
|
---|
593 | { SMB_VFS_OP_GETLOCK, "getlock" },
|
---|
594 | { SMB_VFS_OP_SYMLINK, "symlink" },
|
---|
595 | { SMB_VFS_OP_READLINK, "readlink" },
|
---|
596 | { SMB_VFS_OP_LINK, "link" },
|
---|
597 | { SMB_VFS_OP_MKNOD, "mknod" },
|
---|
598 | { SMB_VFS_OP_REALPATH, "realpath" },
|
---|
599 | { SMB_VFS_OP_NOTIFY_WATCH, "notify_watch" },
|
---|
600 | { SMB_VFS_OP_CHFLAGS, "chflags" },
|
---|
601 | { SMB_VFS_OP_FILE_ID_CREATE, "file_id_create" },
|
---|
602 | { SMB_VFS_OP_STREAMINFO, "streaminfo" },
|
---|
603 | { SMB_VFS_OP_GET_REAL_FILENAME, "get_real_filename" },
|
---|
604 | { SMB_VFS_OP_FGET_NT_ACL, "fget_nt_acl" },
|
---|
605 | { SMB_VFS_OP_GET_NT_ACL, "get_nt_acl" },
|
---|
606 | { SMB_VFS_OP_FSET_NT_ACL, "fset_nt_acl" },
|
---|
607 | { SMB_VFS_OP_CHMOD_ACL, "chmod_acl" },
|
---|
608 | { SMB_VFS_OP_FCHMOD_ACL, "fchmod_acl" },
|
---|
609 | { SMB_VFS_OP_SYS_ACL_GET_ENTRY, "sys_acl_get_entry" },
|
---|
610 | { SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, "sys_acl_get_tag_type" },
|
---|
611 | { SMB_VFS_OP_SYS_ACL_GET_PERMSET, "sys_acl_get_permset" },
|
---|
612 | { SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, "sys_acl_get_qualifier" },
|
---|
613 | { SMB_VFS_OP_SYS_ACL_GET_FILE, "sys_acl_get_file" },
|
---|
614 | { SMB_VFS_OP_SYS_ACL_GET_FD, "sys_acl_get_fd" },
|
---|
615 | { SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, "sys_acl_clear_perms" },
|
---|
616 | { SMB_VFS_OP_SYS_ACL_ADD_PERM, "sys_acl_add_perm" },
|
---|
617 | { SMB_VFS_OP_SYS_ACL_TO_TEXT, "sys_acl_to_text" },
|
---|
618 | { SMB_VFS_OP_SYS_ACL_INIT, "sys_acl_init" },
|
---|
619 | { SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, "sys_acl_create_entry" },
|
---|
620 | { SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, "sys_acl_set_tag_type" },
|
---|
621 | { SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, "sys_acl_set_qualifier" },
|
---|
622 | { SMB_VFS_OP_SYS_ACL_SET_PERMSET, "sys_acl_set_permset" },
|
---|
623 | { SMB_VFS_OP_SYS_ACL_VALID, "sys_acl_valid" },
|
---|
624 | { SMB_VFS_OP_SYS_ACL_SET_FILE, "sys_acl_set_file" },
|
---|
625 | { SMB_VFS_OP_SYS_ACL_SET_FD, "sys_acl_set_fd" },
|
---|
626 | { SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, "sys_acl_delete_def_file" },
|
---|
627 | { SMB_VFS_OP_SYS_ACL_GET_PERM, "sys_acl_get_perm" },
|
---|
628 | { SMB_VFS_OP_SYS_ACL_FREE_TEXT, "sys_acl_free_text" },
|
---|
629 | { SMB_VFS_OP_SYS_ACL_FREE_ACL, "sys_acl_free_acl" },
|
---|
630 | { SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, "sys_acl_free_qualifier" },
|
---|
631 | { SMB_VFS_OP_GETXATTR, "getxattr" },
|
---|
632 | { SMB_VFS_OP_LGETXATTR, "lgetxattr" },
|
---|
633 | { SMB_VFS_OP_FGETXATTR, "fgetxattr" },
|
---|
634 | { SMB_VFS_OP_LISTXATTR, "listxattr" },
|
---|
635 | { SMB_VFS_OP_LLISTXATTR, "llistxattr" },
|
---|
636 | { SMB_VFS_OP_FLISTXATTR, "flistxattr" },
|
---|
637 | { SMB_VFS_OP_REMOVEXATTR, "removexattr" },
|
---|
638 | { SMB_VFS_OP_LREMOVEXATTR, "lremovexattr" },
|
---|
639 | { SMB_VFS_OP_FREMOVEXATTR, "fremovexattr" },
|
---|
640 | { SMB_VFS_OP_SETXATTR, "setxattr" },
|
---|
641 | { SMB_VFS_OP_LSETXATTR, "lsetxattr" },
|
---|
642 | { SMB_VFS_OP_FSETXATTR, "fsetxattr" },
|
---|
643 | { SMB_VFS_OP_AIO_READ, "aio_read" },
|
---|
644 | { SMB_VFS_OP_AIO_WRITE, "aio_write" },
|
---|
645 | { SMB_VFS_OP_AIO_RETURN,"aio_return" },
|
---|
646 | { SMB_VFS_OP_AIO_CANCEL,"aio_cancel" },
|
---|
647 | { SMB_VFS_OP_AIO_ERROR, "aio_error" },
|
---|
648 | { SMB_VFS_OP_AIO_FSYNC, "aio_fsync" },
|
---|
649 | { SMB_VFS_OP_AIO_SUSPEND,"aio_suspend" },
|
---|
650 | { SMB_VFS_OP_AIO_FORCE, "aio_force" },
|
---|
651 | { SMB_VFS_OP_IS_OFFLINE, "aio_is_offline" },
|
---|
652 | { SMB_VFS_OP_SET_OFFLINE, "aio_set_offline" },
|
---|
653 | { SMB_VFS_OP_LAST, NULL }
|
---|
654 | };
|
---|
655 |
|
---|
656 | static int audit_syslog_facility(vfs_handle_struct *handle)
|
---|
657 | {
|
---|
658 | static const struct enum_list enum_log_facilities[] = {
|
---|
659 | { LOG_USER, "USER" },
|
---|
660 | { LOG_LOCAL0, "LOCAL0" },
|
---|
661 | { LOG_LOCAL1, "LOCAL1" },
|
---|
662 | { LOG_LOCAL2, "LOCAL2" },
|
---|
663 | { LOG_LOCAL3, "LOCAL3" },
|
---|
664 | { LOG_LOCAL4, "LOCAL4" },
|
---|
665 | { LOG_LOCAL5, "LOCAL5" },
|
---|
666 | { LOG_LOCAL6, "LOCAL6" },
|
---|
667 | { LOG_LOCAL7, "LOCAL7" }
|
---|
668 | };
|
---|
669 |
|
---|
670 | int facility;
|
---|
671 |
|
---|
672 | facility = lp_parm_enum(SNUM(handle->conn), "full_audit", "facility", enum_log_facilities, LOG_USER);
|
---|
673 |
|
---|
674 | return facility;
|
---|
675 | }
|
---|
676 |
|
---|
677 | static int audit_syslog_priority(vfs_handle_struct *handle)
|
---|
678 | {
|
---|
679 | static const struct enum_list enum_log_priorities[] = {
|
---|
680 | { LOG_EMERG, "EMERG" },
|
---|
681 | { LOG_ALERT, "ALERT" },
|
---|
682 | { LOG_CRIT, "CRIT" },
|
---|
683 | { LOG_ERR, "ERR" },
|
---|
684 | { LOG_WARNING, "WARNING" },
|
---|
685 | { LOG_NOTICE, "NOTICE" },
|
---|
686 | { LOG_INFO, "INFO" },
|
---|
687 | { LOG_DEBUG, "DEBUG" }
|
---|
688 | };
|
---|
689 |
|
---|
690 | int priority;
|
---|
691 |
|
---|
692 | priority = lp_parm_enum(SNUM(handle->conn), "full_audit", "priority",
|
---|
693 | enum_log_priorities, LOG_NOTICE);
|
---|
694 | if (priority == -1) {
|
---|
695 | priority = LOG_WARNING;
|
---|
696 | }
|
---|
697 |
|
---|
698 | return priority;
|
---|
699 | }
|
---|
700 |
|
---|
701 | static char *audit_prefix(TALLOC_CTX *ctx, connection_struct *conn)
|
---|
702 | {
|
---|
703 | char *prefix = NULL;
|
---|
704 | char *result;
|
---|
705 |
|
---|
706 | prefix = talloc_strdup(ctx,
|
---|
707 | lp_parm_const_string(SNUM(conn), "full_audit",
|
---|
708 | "prefix", "%u|%I"));
|
---|
709 | if (!prefix) {
|
---|
710 | return NULL;
|
---|
711 | }
|
---|
712 | result = talloc_sub_advanced(ctx,
|
---|
713 | lp_servicename(SNUM(conn)),
|
---|
714 | conn->server_info->unix_name,
|
---|
715 | conn->connectpath,
|
---|
716 | conn->server_info->utok.gid,
|
---|
717 | conn->server_info->sanitized_username,
|
---|
718 | pdb_get_domain(conn->server_info->sam_account),
|
---|
719 | prefix);
|
---|
720 | TALLOC_FREE(prefix);
|
---|
721 | return result;
|
---|
722 | }
|
---|
723 |
|
---|
724 | static bool log_success(vfs_handle_struct *handle, vfs_op_type op)
|
---|
725 | {
|
---|
726 | struct vfs_full_audit_private_data *pd = NULL;
|
---|
727 |
|
---|
728 | SMB_VFS_HANDLE_GET_DATA(handle, pd,
|
---|
729 | struct vfs_full_audit_private_data,
|
---|
730 | return True);
|
---|
731 |
|
---|
732 | if (pd->success_ops == NULL) {
|
---|
733 | return True;
|
---|
734 | }
|
---|
735 |
|
---|
736 | return bitmap_query(pd->success_ops, op);
|
---|
737 | }
|
---|
738 |
|
---|
739 | static bool log_failure(vfs_handle_struct *handle, vfs_op_type op)
|
---|
740 | {
|
---|
741 | struct vfs_full_audit_private_data *pd = NULL;
|
---|
742 |
|
---|
743 | SMB_VFS_HANDLE_GET_DATA(handle, pd,
|
---|
744 | struct vfs_full_audit_private_data,
|
---|
745 | return True);
|
---|
746 |
|
---|
747 | if (pd->failure_ops == NULL)
|
---|
748 | return True;
|
---|
749 |
|
---|
750 | return bitmap_query(pd->failure_ops, op);
|
---|
751 | }
|
---|
752 |
|
---|
753 | static void init_bitmap(struct bitmap **bm, const char **ops)
|
---|
754 | {
|
---|
755 | bool log_all = False;
|
---|
756 |
|
---|
757 | if (*bm != NULL)
|
---|
758 | return;
|
---|
759 |
|
---|
760 | *bm = bitmap_allocate(SMB_VFS_OP_LAST);
|
---|
761 |
|
---|
762 | if (*bm == NULL) {
|
---|
763 | DEBUG(0, ("Could not alloc bitmap -- "
|
---|
764 | "defaulting to logging everything\n"));
|
---|
765 | return;
|
---|
766 | }
|
---|
767 |
|
---|
768 | while (*ops != NULL) {
|
---|
769 | int i;
|
---|
770 | bool found = False;
|
---|
771 |
|
---|
772 | if (strequal(*ops, "all")) {
|
---|
773 | log_all = True;
|
---|
774 | break;
|
---|
775 | }
|
---|
776 |
|
---|
777 | if (strequal(*ops, "none")) {
|
---|
778 | break;
|
---|
779 | }
|
---|
780 |
|
---|
781 | for (i=0; i<SMB_VFS_OP_LAST; i++) {
|
---|
782 | if (vfs_op_names[i].name == NULL) {
|
---|
783 | smb_panic("vfs_full_audit.c: name table not "
|
---|
784 | "in sync with vfs.h\n");
|
---|
785 | }
|
---|
786 |
|
---|
787 | if (strequal(*ops, vfs_op_names[i].name)) {
|
---|
788 | bitmap_set(*bm, i);
|
---|
789 | found = True;
|
---|
790 | }
|
---|
791 | }
|
---|
792 | if (!found) {
|
---|
793 | DEBUG(0, ("Could not find opname %s, logging all\n",
|
---|
794 | *ops));
|
---|
795 | log_all = True;
|
---|
796 | break;
|
---|
797 | }
|
---|
798 | ops += 1;
|
---|
799 | }
|
---|
800 |
|
---|
801 | if (log_all) {
|
---|
802 | /* The query functions default to True */
|
---|
803 | bitmap_free(*bm);
|
---|
804 | *bm = NULL;
|
---|
805 | }
|
---|
806 | }
|
---|
807 |
|
---|
808 | static const char *audit_opname(vfs_op_type op)
|
---|
809 | {
|
---|
810 | if (op >= SMB_VFS_OP_LAST)
|
---|
811 | return "INVALID VFS OP";
|
---|
812 | return vfs_op_names[op].name;
|
---|
813 | }
|
---|
814 |
|
---|
815 | static void do_log(vfs_op_type op, bool success, vfs_handle_struct *handle,
|
---|
816 | const char *format, ...)
|
---|
817 | {
|
---|
818 | fstring err_msg;
|
---|
819 | char *audit_pre = NULL;
|
---|
820 | va_list ap;
|
---|
821 | char *op_msg = NULL;
|
---|
822 |
|
---|
823 | if (success && (!log_success(handle, op)))
|
---|
824 | return;
|
---|
825 |
|
---|
826 | if (!success && (!log_failure(handle, op)))
|
---|
827 | return;
|
---|
828 |
|
---|
829 | if (success)
|
---|
830 | fstrcpy(err_msg, "ok");
|
---|
831 | else
|
---|
832 | fstr_sprintf(err_msg, "fail (%s)", strerror(errno));
|
---|
833 |
|
---|
834 | va_start(ap, format);
|
---|
835 | op_msg = talloc_vasprintf(NULL, format, ap);
|
---|
836 | va_end(ap);
|
---|
837 |
|
---|
838 | if (!op_msg) {
|
---|
839 | return;
|
---|
840 | }
|
---|
841 |
|
---|
842 | audit_pre = audit_prefix(NULL, handle->conn);
|
---|
843 | syslog(audit_syslog_priority(handle), "%s|%s|%s|%s\n",
|
---|
844 | audit_pre ? audit_pre : "",
|
---|
845 | audit_opname(op), err_msg, op_msg);
|
---|
846 |
|
---|
847 | TALLOC_FREE(audit_pre);
|
---|
848 | TALLOC_FREE(op_msg);
|
---|
849 |
|
---|
850 | return;
|
---|
851 | }
|
---|
852 |
|
---|
853 | /* Free function for the private data. */
|
---|
854 |
|
---|
855 | static void free_private_data(void **p_data)
|
---|
856 | {
|
---|
857 | struct vfs_full_audit_private_data *pd = *(struct vfs_full_audit_private_data **)p_data;
|
---|
858 |
|
---|
859 | if (pd->success_ops) {
|
---|
860 | bitmap_free(pd->success_ops);
|
---|
861 | }
|
---|
862 | if (pd->failure_ops) {
|
---|
863 | bitmap_free(pd->failure_ops);
|
---|
864 | }
|
---|
865 | SAFE_FREE(pd);
|
---|
866 | *p_data = NULL;
|
---|
867 | }
|
---|
868 |
|
---|
869 | /* Implementation of vfs_ops. Pass everything on to the default
|
---|
870 | operation but log event first. */
|
---|
871 |
|
---|
872 | static int smb_full_audit_connect(vfs_handle_struct *handle,
|
---|
873 | const char *svc, const char *user)
|
---|
874 | {
|
---|
875 | int result;
|
---|
876 | struct vfs_full_audit_private_data *pd = NULL;
|
---|
877 | const char *none[] = { NULL };
|
---|
878 | const char *all [] = { "all" };
|
---|
879 |
|
---|
880 | if (!handle) {
|
---|
881 | return -1;
|
---|
882 | }
|
---|
883 |
|
---|
884 | pd = SMB_MALLOC_P(struct vfs_full_audit_private_data);
|
---|
885 | if (!pd) {
|
---|
886 | return -1;
|
---|
887 | }
|
---|
888 | ZERO_STRUCTP(pd);
|
---|
889 |
|
---|
890 | openlog("smbd_audit", 0, audit_syslog_facility(handle));
|
---|
891 |
|
---|
892 | init_bitmap(&pd->success_ops,
|
---|
893 | lp_parm_string_list(SNUM(handle->conn), "full_audit", "success",
|
---|
894 | none));
|
---|
895 | init_bitmap(&pd->failure_ops,
|
---|
896 | lp_parm_string_list(SNUM(handle->conn), "full_audit", "failure",
|
---|
897 | all));
|
---|
898 |
|
---|
899 | /* Store the private data. */
|
---|
900 | SMB_VFS_HANDLE_SET_DATA(handle, pd, free_private_data,
|
---|
901 | struct vfs_full_audit_private_data, return -1);
|
---|
902 |
|
---|
903 | result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
|
---|
904 |
|
---|
905 | do_log(SMB_VFS_OP_CONNECT, True, handle,
|
---|
906 | "%s", svc);
|
---|
907 |
|
---|
908 | return result;
|
---|
909 | }
|
---|
910 |
|
---|
911 | static void smb_full_audit_disconnect(vfs_handle_struct *handle)
|
---|
912 | {
|
---|
913 | SMB_VFS_NEXT_DISCONNECT(handle);
|
---|
914 |
|
---|
915 | do_log(SMB_VFS_OP_DISCONNECT, True, handle,
|
---|
916 | "%s", lp_servicename(SNUM(handle->conn)));
|
---|
917 |
|
---|
918 | /* The bitmaps will be disconnected when the private
|
---|
919 | data is deleted. */
|
---|
920 |
|
---|
921 | return;
|
---|
922 | }
|
---|
923 |
|
---|
924 | static SMB_BIG_UINT smb_full_audit_disk_free(vfs_handle_struct *handle,
|
---|
925 | const char *path,
|
---|
926 | bool small_query, SMB_BIG_UINT *bsize,
|
---|
927 | SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize)
|
---|
928 | {
|
---|
929 | SMB_BIG_UINT result;
|
---|
930 |
|
---|
931 | result = SMB_VFS_NEXT_DISK_FREE(handle, path, small_query, bsize,
|
---|
932 | dfree, dsize);
|
---|
933 |
|
---|
934 | /* Don't have a reasonable notion of failure here */
|
---|
935 |
|
---|
936 | do_log(SMB_VFS_OP_DISK_FREE, True, handle, "%s", path);
|
---|
937 |
|
---|
938 | return result;
|
---|
939 | }
|
---|
940 |
|
---|
941 | static int smb_full_audit_get_quota(struct vfs_handle_struct *handle,
|
---|
942 | enum SMB_QUOTA_TYPE qtype, unid_t id,
|
---|
943 | SMB_DISK_QUOTA *qt)
|
---|
944 | {
|
---|
945 | int result;
|
---|
946 |
|
---|
947 | result = SMB_VFS_NEXT_GET_QUOTA(handle, qtype, id, qt);
|
---|
948 |
|
---|
949 | do_log(SMB_VFS_OP_GET_QUOTA, (result >= 0), handle, "");
|
---|
950 |
|
---|
951 | return result;
|
---|
952 | }
|
---|
953 |
|
---|
954 |
|
---|
955 | static int smb_full_audit_set_quota(struct vfs_handle_struct *handle,
|
---|
956 | enum SMB_QUOTA_TYPE qtype, unid_t id,
|
---|
957 | SMB_DISK_QUOTA *qt)
|
---|
958 | {
|
---|
959 | int result;
|
---|
960 |
|
---|
961 | result = SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, qt);
|
---|
962 |
|
---|
963 | do_log(SMB_VFS_OP_SET_QUOTA, (result >= 0), handle, "");
|
---|
964 |
|
---|
965 | return result;
|
---|
966 | }
|
---|
967 |
|
---|
968 | static int smb_full_audit_get_shadow_copy_data(struct vfs_handle_struct *handle,
|
---|
969 | struct files_struct *fsp,
|
---|
970 | SHADOW_COPY_DATA *shadow_copy_data, bool labels)
|
---|
971 | {
|
---|
972 | int result;
|
---|
973 |
|
---|
974 | result = SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle, fsp, shadow_copy_data, labels);
|
---|
975 |
|
---|
976 | do_log(SMB_VFS_OP_GET_SHADOW_COPY_DATA, (result >= 0), handle, "");
|
---|
977 |
|
---|
978 | return result;
|
---|
979 | }
|
---|
980 |
|
---|
981 | static int smb_full_audit_statvfs(struct vfs_handle_struct *handle,
|
---|
982 | const char *path,
|
---|
983 | struct vfs_statvfs_struct *statbuf)
|
---|
984 | {
|
---|
985 | int result;
|
---|
986 |
|
---|
987 | result = SMB_VFS_NEXT_STATVFS(handle, path, statbuf);
|
---|
988 |
|
---|
989 | do_log(SMB_VFS_OP_STATVFS, (result >= 0), handle, "");
|
---|
990 |
|
---|
991 | return result;
|
---|
992 | }
|
---|
993 |
|
---|
994 | static SMB_STRUCT_DIR *smb_full_audit_opendir(vfs_handle_struct *handle,
|
---|
995 | const char *fname, const char *mask, uint32 attr)
|
---|
996 | {
|
---|
997 | SMB_STRUCT_DIR *result;
|
---|
998 |
|
---|
999 | result = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
|
---|
1000 |
|
---|
1001 | do_log(SMB_VFS_OP_OPENDIR, (result != NULL), handle, "%s", fname);
|
---|
1002 |
|
---|
1003 | return result;
|
---|
1004 | }
|
---|
1005 |
|
---|
1006 | static SMB_STRUCT_DIRENT *smb_full_audit_readdir(vfs_handle_struct *handle,
|
---|
1007 | SMB_STRUCT_DIR *dirp)
|
---|
1008 | {
|
---|
1009 | SMB_STRUCT_DIRENT *result;
|
---|
1010 |
|
---|
1011 | result = SMB_VFS_NEXT_READDIR(handle, dirp);
|
---|
1012 |
|
---|
1013 | /* This operation has no reasonable error condition
|
---|
1014 | * (End of dir is also failure), so always succeed.
|
---|
1015 | */
|
---|
1016 | do_log(SMB_VFS_OP_READDIR, True, handle, "");
|
---|
1017 |
|
---|
1018 | return result;
|
---|
1019 | }
|
---|
1020 |
|
---|
1021 | static void smb_full_audit_seekdir(vfs_handle_struct *handle,
|
---|
1022 | SMB_STRUCT_DIR *dirp, long offset)
|
---|
1023 | {
|
---|
1024 | SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
|
---|
1025 |
|
---|
1026 | do_log(SMB_VFS_OP_SEEKDIR, True, handle, "");
|
---|
1027 | return;
|
---|
1028 | }
|
---|
1029 |
|
---|
1030 | static long smb_full_audit_telldir(vfs_handle_struct *handle,
|
---|
1031 | SMB_STRUCT_DIR *dirp)
|
---|
1032 | {
|
---|
1033 | long result;
|
---|
1034 |
|
---|
1035 | result = SMB_VFS_NEXT_TELLDIR(handle, dirp);
|
---|
1036 |
|
---|
1037 | do_log(SMB_VFS_OP_TELLDIR, True, handle, "");
|
---|
1038 |
|
---|
1039 | return result;
|
---|
1040 | }
|
---|
1041 |
|
---|
1042 | static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
|
---|
1043 | SMB_STRUCT_DIR *dirp)
|
---|
1044 | {
|
---|
1045 | SMB_VFS_NEXT_REWINDDIR(handle, dirp);
|
---|
1046 |
|
---|
1047 | do_log(SMB_VFS_OP_REWINDDIR, True, handle, "");
|
---|
1048 | return;
|
---|
1049 | }
|
---|
1050 |
|
---|
1051 | static int smb_full_audit_mkdir(vfs_handle_struct *handle,
|
---|
1052 | const char *path, mode_t mode)
|
---|
1053 | {
|
---|
1054 | int result;
|
---|
1055 |
|
---|
1056 | result = SMB_VFS_NEXT_MKDIR(handle, path, mode);
|
---|
1057 |
|
---|
1058 | do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s", path);
|
---|
1059 |
|
---|
1060 | return result;
|
---|
1061 | }
|
---|
1062 |
|
---|
1063 | static int smb_full_audit_rmdir(vfs_handle_struct *handle,
|
---|
1064 | const char *path)
|
---|
1065 | {
|
---|
1066 | int result;
|
---|
1067 |
|
---|
1068 | result = SMB_VFS_NEXT_RMDIR(handle, path);
|
---|
1069 |
|
---|
1070 | do_log(SMB_VFS_OP_RMDIR, (result >= 0), handle, "%s", path);
|
---|
1071 |
|
---|
1072 | return result;
|
---|
1073 | }
|
---|
1074 |
|
---|
1075 | static int smb_full_audit_closedir(vfs_handle_struct *handle,
|
---|
1076 | SMB_STRUCT_DIR *dirp)
|
---|
1077 | {
|
---|
1078 | int result;
|
---|
1079 |
|
---|
1080 | result = SMB_VFS_NEXT_CLOSEDIR(handle, dirp);
|
---|
1081 |
|
---|
1082 | do_log(SMB_VFS_OP_CLOSEDIR, (result >= 0), handle, "");
|
---|
1083 |
|
---|
1084 | return result;
|
---|
1085 | }
|
---|
1086 |
|
---|
1087 | static int smb_full_audit_open(vfs_handle_struct *handle,
|
---|
1088 | const char *fname, files_struct *fsp, int flags, mode_t mode)
|
---|
1089 | {
|
---|
1090 | int result;
|
---|
1091 |
|
---|
1092 | result = SMB_VFS_NEXT_OPEN(handle, fname, fsp, flags, mode);
|
---|
1093 |
|
---|
1094 | do_log(SMB_VFS_OP_OPEN, (result >= 0), handle, "%s|%s",
|
---|
1095 | ((flags & O_WRONLY) || (flags & O_RDWR))?"w":"r",
|
---|
1096 | fname);
|
---|
1097 |
|
---|
1098 | return result;
|
---|
1099 | }
|
---|
1100 |
|
---|
1101 | static int smb_full_audit_close(vfs_handle_struct *handle, files_struct *fsp)
|
---|
1102 | {
|
---|
1103 | int result;
|
---|
1104 |
|
---|
1105 | result = SMB_VFS_NEXT_CLOSE(handle, fsp);
|
---|
1106 |
|
---|
1107 | do_log(SMB_VFS_OP_CLOSE, (result >= 0), handle, "%s", fsp->fsp_name);
|
---|
1108 |
|
---|
1109 | return result;
|
---|
1110 | }
|
---|
1111 |
|
---|
1112 | static ssize_t smb_full_audit_read(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1113 | void *data, size_t n)
|
---|
1114 | {
|
---|
1115 | ssize_t result;
|
---|
1116 |
|
---|
1117 | result = SMB_VFS_NEXT_READ(handle, fsp, data, n);
|
---|
1118 |
|
---|
1119 | do_log(SMB_VFS_OP_READ, (result >= 0), handle, "%s", fsp->fsp_name);
|
---|
1120 |
|
---|
1121 | return result;
|
---|
1122 | }
|
---|
1123 |
|
---|
1124 | static ssize_t smb_full_audit_pread(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1125 | void *data, size_t n, SMB_OFF_T offset)
|
---|
1126 | {
|
---|
1127 | ssize_t result;
|
---|
1128 |
|
---|
1129 | result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
|
---|
1130 |
|
---|
1131 | do_log(SMB_VFS_OP_PREAD, (result >= 0), handle, "%s", fsp->fsp_name);
|
---|
1132 |
|
---|
1133 | return result;
|
---|
1134 | }
|
---|
1135 |
|
---|
1136 | static ssize_t smb_full_audit_write(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1137 | const void *data, size_t n)
|
---|
1138 | {
|
---|
1139 | ssize_t result;
|
---|
1140 |
|
---|
1141 | result = SMB_VFS_NEXT_WRITE(handle, fsp, data, n);
|
---|
1142 |
|
---|
1143 | do_log(SMB_VFS_OP_WRITE, (result >= 0), handle, "%s", fsp->fsp_name);
|
---|
1144 |
|
---|
1145 | return result;
|
---|
1146 | }
|
---|
1147 |
|
---|
1148 | static ssize_t smb_full_audit_pwrite(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1149 | const void *data, size_t n,
|
---|
1150 | SMB_OFF_T offset)
|
---|
1151 | {
|
---|
1152 | ssize_t result;
|
---|
1153 |
|
---|
1154 | result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
|
---|
1155 |
|
---|
1156 | do_log(SMB_VFS_OP_PWRITE, (result >= 0), handle, "%s", fsp->fsp_name);
|
---|
1157 |
|
---|
1158 | return result;
|
---|
1159 | }
|
---|
1160 |
|
---|
1161 | static SMB_OFF_T smb_full_audit_lseek(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1162 | SMB_OFF_T offset, int whence)
|
---|
1163 | {
|
---|
1164 | ssize_t result;
|
---|
1165 |
|
---|
1166 | result = SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
|
---|
1167 |
|
---|
1168 | do_log(SMB_VFS_OP_LSEEK, (result != (ssize_t)-1), handle,
|
---|
1169 | "%s", fsp->fsp_name);
|
---|
1170 |
|
---|
1171 | return result;
|
---|
1172 | }
|
---|
1173 |
|
---|
1174 | static ssize_t smb_full_audit_sendfile(vfs_handle_struct *handle, int tofd,
|
---|
1175 | files_struct *fromfsp,
|
---|
1176 | const DATA_BLOB *hdr, SMB_OFF_T offset,
|
---|
1177 | size_t n)
|
---|
1178 | {
|
---|
1179 | ssize_t result;
|
---|
1180 |
|
---|
1181 | result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
|
---|
1182 |
|
---|
1183 | do_log(SMB_VFS_OP_SENDFILE, (result >= 0), handle,
|
---|
1184 | "%s", fromfsp->fsp_name);
|
---|
1185 |
|
---|
1186 | return result;
|
---|
1187 | }
|
---|
1188 |
|
---|
1189 | static ssize_t smb_full_audit_recvfile(vfs_handle_struct *handle, int fromfd,
|
---|
1190 | files_struct *tofsp,
|
---|
1191 | SMB_OFF_T offset,
|
---|
1192 | size_t n)
|
---|
1193 | {
|
---|
1194 | ssize_t result;
|
---|
1195 |
|
---|
1196 | result = SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
|
---|
1197 |
|
---|
1198 | do_log(SMB_VFS_OP_RECVFILE, (result >= 0), handle,
|
---|
1199 | "%s", tofsp->fsp_name);
|
---|
1200 |
|
---|
1201 | return result;
|
---|
1202 | }
|
---|
1203 |
|
---|
1204 | static int smb_full_audit_rename(vfs_handle_struct *handle,
|
---|
1205 | const char *oldname, const char *newname)
|
---|
1206 | {
|
---|
1207 | int result;
|
---|
1208 |
|
---|
1209 | result = SMB_VFS_NEXT_RENAME(handle, oldname, newname);
|
---|
1210 |
|
---|
1211 | do_log(SMB_VFS_OP_RENAME, (result >= 0), handle, "%s|%s", oldname, newname);
|
---|
1212 |
|
---|
1213 | return result;
|
---|
1214 | }
|
---|
1215 |
|
---|
1216 | static int smb_full_audit_fsync(vfs_handle_struct *handle, files_struct *fsp)
|
---|
1217 | {
|
---|
1218 | int result;
|
---|
1219 |
|
---|
1220 | result = SMB_VFS_NEXT_FSYNC(handle, fsp);
|
---|
1221 |
|
---|
1222 | do_log(SMB_VFS_OP_FSYNC, (result >= 0), handle, "%s", fsp->fsp_name);
|
---|
1223 |
|
---|
1224 | return result;
|
---|
1225 | }
|
---|
1226 |
|
---|
1227 | static int smb_full_audit_stat(vfs_handle_struct *handle,
|
---|
1228 | const char *fname, SMB_STRUCT_STAT *sbuf)
|
---|
1229 | {
|
---|
1230 | int result;
|
---|
1231 |
|
---|
1232 | result = SMB_VFS_NEXT_STAT(handle, fname, sbuf);
|
---|
1233 |
|
---|
1234 | do_log(SMB_VFS_OP_STAT, (result >= 0), handle, "%s", fname);
|
---|
1235 |
|
---|
1236 | return result;
|
---|
1237 | }
|
---|
1238 |
|
---|
1239 | static int smb_full_audit_fstat(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1240 | SMB_STRUCT_STAT *sbuf)
|
---|
1241 | {
|
---|
1242 | int result;
|
---|
1243 |
|
---|
1244 | result = SMB_VFS_NEXT_FSTAT(handle, fsp, sbuf);
|
---|
1245 |
|
---|
1246 | do_log(SMB_VFS_OP_FSTAT, (result >= 0), handle, "%s", fsp->fsp_name);
|
---|
1247 |
|
---|
1248 | return result;
|
---|
1249 | }
|
---|
1250 |
|
---|
1251 | static int smb_full_audit_lstat(vfs_handle_struct *handle,
|
---|
1252 | const char *path, SMB_STRUCT_STAT *sbuf)
|
---|
1253 | {
|
---|
1254 | int result;
|
---|
1255 |
|
---|
1256 | result = SMB_VFS_NEXT_LSTAT(handle, path, sbuf);
|
---|
1257 |
|
---|
1258 | do_log(SMB_VFS_OP_LSTAT, (result >= 0), handle, "%s", path);
|
---|
1259 |
|
---|
1260 | return result;
|
---|
1261 | }
|
---|
1262 |
|
---|
1263 | static int smb_full_audit_unlink(vfs_handle_struct *handle,
|
---|
1264 | const char *path)
|
---|
1265 | {
|
---|
1266 | int result;
|
---|
1267 |
|
---|
1268 | result = SMB_VFS_NEXT_UNLINK(handle, path);
|
---|
1269 |
|
---|
1270 | do_log(SMB_VFS_OP_UNLINK, (result >= 0), handle, "%s", path);
|
---|
1271 |
|
---|
1272 | return result;
|
---|
1273 | }
|
---|
1274 |
|
---|
1275 | static int smb_full_audit_chmod(vfs_handle_struct *handle,
|
---|
1276 | const char *path, mode_t mode)
|
---|
1277 | {
|
---|
1278 | int result;
|
---|
1279 |
|
---|
1280 | result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
|
---|
1281 |
|
---|
1282 | do_log(SMB_VFS_OP_CHMOD, (result >= 0), handle, "%s|%o", path, mode);
|
---|
1283 |
|
---|
1284 | return result;
|
---|
1285 | }
|
---|
1286 |
|
---|
1287 | static int smb_full_audit_fchmod(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1288 | mode_t mode)
|
---|
1289 | {
|
---|
1290 | int result;
|
---|
1291 |
|
---|
1292 | result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
|
---|
1293 |
|
---|
1294 | do_log(SMB_VFS_OP_FCHMOD, (result >= 0), handle,
|
---|
1295 | "%s|%o", fsp->fsp_name, mode);
|
---|
1296 |
|
---|
1297 | return result;
|
---|
1298 | }
|
---|
1299 |
|
---|
1300 | static int smb_full_audit_chown(vfs_handle_struct *handle,
|
---|
1301 | const char *path, uid_t uid, gid_t gid)
|
---|
1302 | {
|
---|
1303 | int result;
|
---|
1304 |
|
---|
1305 | result = SMB_VFS_NEXT_CHOWN(handle, path, uid, gid);
|
---|
1306 |
|
---|
1307 | do_log(SMB_VFS_OP_CHOWN, (result >= 0), handle, "%s|%ld|%ld",
|
---|
1308 | path, (long int)uid, (long int)gid);
|
---|
1309 |
|
---|
1310 | return result;
|
---|
1311 | }
|
---|
1312 |
|
---|
1313 | static int smb_full_audit_fchown(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1314 | uid_t uid, gid_t gid)
|
---|
1315 | {
|
---|
1316 | int result;
|
---|
1317 |
|
---|
1318 | result = SMB_VFS_NEXT_FCHOWN(handle, fsp, uid, gid);
|
---|
1319 |
|
---|
1320 | do_log(SMB_VFS_OP_FCHOWN, (result >= 0), handle, "%s|%ld|%ld",
|
---|
1321 | fsp->fsp_name, (long int)uid, (long int)gid);
|
---|
1322 |
|
---|
1323 | return result;
|
---|
1324 | }
|
---|
1325 |
|
---|
1326 | static int smb_full_audit_lchown(vfs_handle_struct *handle,
|
---|
1327 | const char *path, uid_t uid, gid_t gid)
|
---|
1328 | {
|
---|
1329 | int result;
|
---|
1330 |
|
---|
1331 | result = SMB_VFS_NEXT_LCHOWN(handle, path, uid, gid);
|
---|
1332 |
|
---|
1333 | do_log(SMB_VFS_OP_LCHOWN, (result >= 0), handle, "%s|%ld|%ld",
|
---|
1334 | path, (long int)uid, (long int)gid);
|
---|
1335 |
|
---|
1336 | return result;
|
---|
1337 | }
|
---|
1338 |
|
---|
1339 | static int smb_full_audit_chdir(vfs_handle_struct *handle,
|
---|
1340 | const char *path)
|
---|
1341 | {
|
---|
1342 | int result;
|
---|
1343 |
|
---|
1344 | result = SMB_VFS_NEXT_CHDIR(handle, path);
|
---|
1345 |
|
---|
1346 | do_log(SMB_VFS_OP_CHDIR, (result >= 0), handle, "chdir|%s", path);
|
---|
1347 |
|
---|
1348 | return result;
|
---|
1349 | }
|
---|
1350 |
|
---|
1351 | static char *smb_full_audit_getwd(vfs_handle_struct *handle,
|
---|
1352 | char *path)
|
---|
1353 | {
|
---|
1354 | char *result;
|
---|
1355 |
|
---|
1356 | result = SMB_VFS_NEXT_GETWD(handle, path);
|
---|
1357 |
|
---|
1358 | do_log(SMB_VFS_OP_GETWD, (result != NULL), handle, "%s", path);
|
---|
1359 |
|
---|
1360 | return result;
|
---|
1361 | }
|
---|
1362 |
|
---|
1363 | static int smb_full_audit_ntimes(vfs_handle_struct *handle,
|
---|
1364 | const char *path, const struct timespec ts[2])
|
---|
1365 | {
|
---|
1366 | int result;
|
---|
1367 |
|
---|
1368 | result = SMB_VFS_NEXT_NTIMES(handle, path, ts);
|
---|
1369 |
|
---|
1370 | do_log(SMB_VFS_OP_NTIMES, (result >= 0), handle, "%s", path);
|
---|
1371 |
|
---|
1372 | return result;
|
---|
1373 | }
|
---|
1374 |
|
---|
1375 | static int smb_full_audit_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1376 | SMB_OFF_T len)
|
---|
1377 | {
|
---|
1378 | int result;
|
---|
1379 |
|
---|
1380 | result = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
|
---|
1381 |
|
---|
1382 | do_log(SMB_VFS_OP_FTRUNCATE, (result >= 0), handle,
|
---|
1383 | "%s", fsp->fsp_name);
|
---|
1384 |
|
---|
1385 | return result;
|
---|
1386 | }
|
---|
1387 |
|
---|
1388 | static bool smb_full_audit_lock(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1389 | int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
|
---|
1390 | {
|
---|
1391 | bool result;
|
---|
1392 |
|
---|
1393 | result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
|
---|
1394 |
|
---|
1395 | do_log(SMB_VFS_OP_LOCK, result, handle, "%s", fsp->fsp_name);
|
---|
1396 |
|
---|
1397 | return result;
|
---|
1398 | }
|
---|
1399 |
|
---|
1400 | static int smb_full_audit_kernel_flock(struct vfs_handle_struct *handle,
|
---|
1401 | struct files_struct *fsp,
|
---|
1402 | uint32 share_mode)
|
---|
1403 | {
|
---|
1404 | int result;
|
---|
1405 |
|
---|
1406 | result = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_mode);
|
---|
1407 |
|
---|
1408 | do_log(SMB_VFS_OP_KERNEL_FLOCK, (result >= 0), handle, "%s",
|
---|
1409 | fsp->fsp_name);
|
---|
1410 |
|
---|
1411 | return result;
|
---|
1412 | }
|
---|
1413 |
|
---|
1414 | static int smb_full_audit_linux_setlease(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1415 | int leasetype)
|
---|
1416 | {
|
---|
1417 | int result;
|
---|
1418 |
|
---|
1419 | result = SMB_VFS_NEXT_LINUX_SETLEASE(handle, fsp, leasetype);
|
---|
1420 |
|
---|
1421 | do_log(SMB_VFS_OP_LINUX_SETLEASE, (result >= 0), handle, "%s",
|
---|
1422 | fsp->fsp_name);
|
---|
1423 |
|
---|
1424 | return result;
|
---|
1425 | }
|
---|
1426 |
|
---|
1427 | static bool smb_full_audit_getlock(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1428 | SMB_OFF_T *poffset, SMB_OFF_T *pcount, int *ptype, pid_t *ppid)
|
---|
1429 | {
|
---|
1430 | bool result;
|
---|
1431 |
|
---|
1432 | result = SMB_VFS_NEXT_GETLOCK(handle, fsp, poffset, pcount, ptype, ppid);
|
---|
1433 |
|
---|
1434 | do_log(SMB_VFS_OP_GETLOCK, result, handle, "%s", fsp->fsp_name);
|
---|
1435 |
|
---|
1436 | return result;
|
---|
1437 | }
|
---|
1438 |
|
---|
1439 | static int smb_full_audit_symlink(vfs_handle_struct *handle,
|
---|
1440 | const char *oldpath, const char *newpath)
|
---|
1441 | {
|
---|
1442 | int result;
|
---|
1443 |
|
---|
1444 | result = SMB_VFS_NEXT_SYMLINK(handle, oldpath, newpath);
|
---|
1445 |
|
---|
1446 | do_log(SMB_VFS_OP_SYMLINK, (result >= 0), handle,
|
---|
1447 | "%s|%s", oldpath, newpath);
|
---|
1448 |
|
---|
1449 | return result;
|
---|
1450 | }
|
---|
1451 |
|
---|
1452 | static int smb_full_audit_readlink(vfs_handle_struct *handle,
|
---|
1453 | const char *path, char *buf, size_t bufsiz)
|
---|
1454 | {
|
---|
1455 | int result;
|
---|
1456 |
|
---|
1457 | result = SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
|
---|
1458 |
|
---|
1459 | do_log(SMB_VFS_OP_READLINK, (result >= 0), handle, "%s", path);
|
---|
1460 |
|
---|
1461 | return result;
|
---|
1462 | }
|
---|
1463 |
|
---|
1464 | static int smb_full_audit_link(vfs_handle_struct *handle,
|
---|
1465 | const char *oldpath, const char *newpath)
|
---|
1466 | {
|
---|
1467 | int result;
|
---|
1468 |
|
---|
1469 | result = SMB_VFS_NEXT_LINK(handle, oldpath, newpath);
|
---|
1470 |
|
---|
1471 | do_log(SMB_VFS_OP_LINK, (result >= 0), handle,
|
---|
1472 | "%s|%s", oldpath, newpath);
|
---|
1473 |
|
---|
1474 | return result;
|
---|
1475 | }
|
---|
1476 |
|
---|
1477 | static int smb_full_audit_mknod(vfs_handle_struct *handle,
|
---|
1478 | const char *pathname, mode_t mode, SMB_DEV_T dev)
|
---|
1479 | {
|
---|
1480 | int result;
|
---|
1481 |
|
---|
1482 | result = SMB_VFS_NEXT_MKNOD(handle, pathname, mode, dev);
|
---|
1483 |
|
---|
1484 | do_log(SMB_VFS_OP_MKNOD, (result >= 0), handle, "%s", pathname);
|
---|
1485 |
|
---|
1486 | return result;
|
---|
1487 | }
|
---|
1488 |
|
---|
1489 | static char *smb_full_audit_realpath(vfs_handle_struct *handle,
|
---|
1490 | const char *path, char *resolved_path)
|
---|
1491 | {
|
---|
1492 | char *result;
|
---|
1493 |
|
---|
1494 | result = SMB_VFS_NEXT_REALPATH(handle, path, resolved_path);
|
---|
1495 |
|
---|
1496 | do_log(SMB_VFS_OP_REALPATH, (result != NULL), handle, "%s", path);
|
---|
1497 |
|
---|
1498 | return result;
|
---|
1499 | }
|
---|
1500 |
|
---|
1501 | static NTSTATUS smb_full_audit_notify_watch(struct vfs_handle_struct *handle,
|
---|
1502 | struct sys_notify_context *ctx,
|
---|
1503 | struct notify_entry *e,
|
---|
1504 | void (*callback)(struct sys_notify_context *ctx,
|
---|
1505 | void *private_data,
|
---|
1506 | struct notify_event *ev),
|
---|
1507 | void *private_data, void *handle_p)
|
---|
1508 | {
|
---|
1509 | NTSTATUS result;
|
---|
1510 |
|
---|
1511 | result = SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, e, callback, private_data, handle_p);
|
---|
1512 |
|
---|
1513 | do_log(SMB_VFS_OP_NOTIFY_WATCH, NT_STATUS_IS_OK(result), handle, "");
|
---|
1514 |
|
---|
1515 | return result;
|
---|
1516 | }
|
---|
1517 |
|
---|
1518 | static int smb_full_audit_chflags(vfs_handle_struct *handle,
|
---|
1519 | const char *path, unsigned int flags)
|
---|
1520 | {
|
---|
1521 | int result;
|
---|
1522 |
|
---|
1523 | result = SMB_VFS_NEXT_CHFLAGS(handle, path, flags);
|
---|
1524 |
|
---|
1525 | do_log(SMB_VFS_OP_CHFLAGS, (result != 0), handle, "%s", path);
|
---|
1526 |
|
---|
1527 | return result;
|
---|
1528 | }
|
---|
1529 |
|
---|
1530 | static struct file_id smb_full_audit_file_id_create(struct vfs_handle_struct *handle,
|
---|
1531 | SMB_DEV_T dev, SMB_INO_T inode)
|
---|
1532 | {
|
---|
1533 | struct file_id id_zero;
|
---|
1534 | struct file_id result;
|
---|
1535 |
|
---|
1536 | ZERO_STRUCT(id_zero);
|
---|
1537 |
|
---|
1538 | result = SMB_VFS_NEXT_FILE_ID_CREATE(handle, dev, inode);
|
---|
1539 |
|
---|
1540 | do_log(SMB_VFS_OP_FILE_ID_CREATE,
|
---|
1541 | !file_id_equal(&id_zero, &result),
|
---|
1542 | handle, "%s", file_id_string_tos(&result));
|
---|
1543 |
|
---|
1544 | return result;
|
---|
1545 | }
|
---|
1546 |
|
---|
1547 | static NTSTATUS smb_full_audit_streaminfo(vfs_handle_struct *handle,
|
---|
1548 | struct files_struct *fsp,
|
---|
1549 | const char *fname,
|
---|
1550 | TALLOC_CTX *mem_ctx,
|
---|
1551 | unsigned int *pnum_streams,
|
---|
1552 | struct stream_struct **pstreams)
|
---|
1553 | {
|
---|
1554 | NTSTATUS result;
|
---|
1555 |
|
---|
1556 | result = SMB_VFS_NEXT_STREAMINFO(handle, fsp, fname, mem_ctx,
|
---|
1557 | pnum_streams, pstreams);
|
---|
1558 |
|
---|
1559 | do_log(SMB_VFS_OP_STREAMINFO, NT_STATUS_IS_OK(result), handle,
|
---|
1560 | "%s", fname);
|
---|
1561 |
|
---|
1562 | return result;
|
---|
1563 | }
|
---|
1564 |
|
---|
1565 | static int smb_full_audit_get_real_filename(struct vfs_handle_struct *handle,
|
---|
1566 | const char *path,
|
---|
1567 | const char *name,
|
---|
1568 | TALLOC_CTX *mem_ctx,
|
---|
1569 | char **found_name)
|
---|
1570 | {
|
---|
1571 | int result;
|
---|
1572 |
|
---|
1573 | result = SMB_VFS_NEXT_GET_REAL_FILENAME(handle, path, name, mem_ctx,
|
---|
1574 | found_name);
|
---|
1575 |
|
---|
1576 | do_log(SMB_VFS_OP_GET_REAL_FILENAME, (result == 0), handle,
|
---|
1577 | "%s/%s->%s", path, name, (result == 0) ? "" : *found_name);
|
---|
1578 |
|
---|
1579 | return result;
|
---|
1580 | }
|
---|
1581 |
|
---|
1582 | static NTSTATUS smb_full_audit_fget_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1583 | uint32 security_info,
|
---|
1584 | SEC_DESC **ppdesc)
|
---|
1585 | {
|
---|
1586 | NTSTATUS result;
|
---|
1587 |
|
---|
1588 | result = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info, ppdesc);
|
---|
1589 |
|
---|
1590 | do_log(SMB_VFS_OP_FGET_NT_ACL, NT_STATUS_IS_OK(result), handle,
|
---|
1591 | "%s", fsp->fsp_name);
|
---|
1592 |
|
---|
1593 | return result;
|
---|
1594 | }
|
---|
1595 |
|
---|
1596 | static NTSTATUS smb_full_audit_get_nt_acl(vfs_handle_struct *handle,
|
---|
1597 | const char *name,
|
---|
1598 | uint32 security_info,
|
---|
1599 | SEC_DESC **ppdesc)
|
---|
1600 | {
|
---|
1601 | NTSTATUS result;
|
---|
1602 |
|
---|
1603 | result = SMB_VFS_NEXT_GET_NT_ACL(handle, name, security_info, ppdesc);
|
---|
1604 |
|
---|
1605 | do_log(SMB_VFS_OP_GET_NT_ACL, NT_STATUS_IS_OK(result), handle,
|
---|
1606 | "%s", name);
|
---|
1607 |
|
---|
1608 | return result;
|
---|
1609 | }
|
---|
1610 |
|
---|
1611 | static NTSTATUS smb_full_audit_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1612 | uint32 security_info_sent,
|
---|
1613 | const SEC_DESC *psd)
|
---|
1614 | {
|
---|
1615 | NTSTATUS result;
|
---|
1616 |
|
---|
1617 | result = SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
|
---|
1618 |
|
---|
1619 | do_log(SMB_VFS_OP_FSET_NT_ACL, NT_STATUS_IS_OK(result), handle, "%s", fsp->fsp_name);
|
---|
1620 |
|
---|
1621 | return result;
|
---|
1622 | }
|
---|
1623 |
|
---|
1624 | static int smb_full_audit_chmod_acl(vfs_handle_struct *handle,
|
---|
1625 | const char *path, mode_t mode)
|
---|
1626 | {
|
---|
1627 | int result;
|
---|
1628 |
|
---|
1629 | result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
|
---|
1630 |
|
---|
1631 | do_log(SMB_VFS_OP_CHMOD_ACL, (result >= 0), handle,
|
---|
1632 | "%s|%o", path, mode);
|
---|
1633 |
|
---|
1634 | return result;
|
---|
1635 | }
|
---|
1636 |
|
---|
1637 | static int smb_full_audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1638 | mode_t mode)
|
---|
1639 | {
|
---|
1640 | int result;
|
---|
1641 |
|
---|
1642 | result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
|
---|
1643 |
|
---|
1644 | do_log(SMB_VFS_OP_FCHMOD_ACL, (result >= 0), handle,
|
---|
1645 | "%s|%o", fsp->fsp_name, mode);
|
---|
1646 |
|
---|
1647 | return result;
|
---|
1648 | }
|
---|
1649 |
|
---|
1650 | static int smb_full_audit_sys_acl_get_entry(vfs_handle_struct *handle,
|
---|
1651 |
|
---|
1652 | SMB_ACL_T theacl, int entry_id,
|
---|
1653 | SMB_ACL_ENTRY_T *entry_p)
|
---|
1654 | {
|
---|
1655 | int result;
|
---|
1656 |
|
---|
1657 | result = SMB_VFS_NEXT_SYS_ACL_GET_ENTRY(handle, theacl, entry_id,
|
---|
1658 | entry_p);
|
---|
1659 |
|
---|
1660 | do_log(SMB_VFS_OP_SYS_ACL_GET_ENTRY, (result >= 0), handle,
|
---|
1661 | "");
|
---|
1662 |
|
---|
1663 | return result;
|
---|
1664 | }
|
---|
1665 |
|
---|
1666 | static int smb_full_audit_sys_acl_get_tag_type(vfs_handle_struct *handle,
|
---|
1667 |
|
---|
1668 | SMB_ACL_ENTRY_T entry_d,
|
---|
1669 | SMB_ACL_TAG_T *tag_type_p)
|
---|
1670 | {
|
---|
1671 | int result;
|
---|
1672 |
|
---|
1673 | result = SMB_VFS_NEXT_SYS_ACL_GET_TAG_TYPE(handle, entry_d,
|
---|
1674 | tag_type_p);
|
---|
1675 |
|
---|
1676 | do_log(SMB_VFS_OP_SYS_ACL_GET_TAG_TYPE, (result >= 0), handle,
|
---|
1677 | "");
|
---|
1678 |
|
---|
1679 | return result;
|
---|
1680 | }
|
---|
1681 |
|
---|
1682 | static int smb_full_audit_sys_acl_get_permset(vfs_handle_struct *handle,
|
---|
1683 |
|
---|
1684 | SMB_ACL_ENTRY_T entry_d,
|
---|
1685 | SMB_ACL_PERMSET_T *permset_p)
|
---|
1686 | {
|
---|
1687 | int result;
|
---|
1688 |
|
---|
1689 | result = SMB_VFS_NEXT_SYS_ACL_GET_PERMSET(handle, entry_d,
|
---|
1690 | permset_p);
|
---|
1691 |
|
---|
1692 | do_log(SMB_VFS_OP_SYS_ACL_GET_PERMSET, (result >= 0), handle,
|
---|
1693 | "");
|
---|
1694 |
|
---|
1695 | return result;
|
---|
1696 | }
|
---|
1697 |
|
---|
1698 | static void * smb_full_audit_sys_acl_get_qualifier(vfs_handle_struct *handle,
|
---|
1699 |
|
---|
1700 | SMB_ACL_ENTRY_T entry_d)
|
---|
1701 | {
|
---|
1702 | void *result;
|
---|
1703 |
|
---|
1704 | result = SMB_VFS_NEXT_SYS_ACL_GET_QUALIFIER(handle, entry_d);
|
---|
1705 |
|
---|
1706 | do_log(SMB_VFS_OP_SYS_ACL_GET_QUALIFIER, (result != NULL), handle,
|
---|
1707 | "");
|
---|
1708 |
|
---|
1709 | return result;
|
---|
1710 | }
|
---|
1711 |
|
---|
1712 | static SMB_ACL_T smb_full_audit_sys_acl_get_file(vfs_handle_struct *handle,
|
---|
1713 | const char *path_p,
|
---|
1714 | SMB_ACL_TYPE_T type)
|
---|
1715 | {
|
---|
1716 | SMB_ACL_T result;
|
---|
1717 |
|
---|
1718 | result = SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle, path_p, type);
|
---|
1719 |
|
---|
1720 | do_log(SMB_VFS_OP_SYS_ACL_GET_FILE, (result != NULL), handle,
|
---|
1721 | "%s", path_p);
|
---|
1722 |
|
---|
1723 | return result;
|
---|
1724 | }
|
---|
1725 |
|
---|
1726 | static SMB_ACL_T smb_full_audit_sys_acl_get_fd(vfs_handle_struct *handle,
|
---|
1727 | files_struct *fsp)
|
---|
1728 | {
|
---|
1729 | SMB_ACL_T result;
|
---|
1730 |
|
---|
1731 | result = SMB_VFS_NEXT_SYS_ACL_GET_FD(handle, fsp);
|
---|
1732 |
|
---|
1733 | do_log(SMB_VFS_OP_SYS_ACL_GET_FD, (result != NULL), handle,
|
---|
1734 | "%s", fsp->fsp_name);
|
---|
1735 |
|
---|
1736 | return result;
|
---|
1737 | }
|
---|
1738 |
|
---|
1739 | static int smb_full_audit_sys_acl_clear_perms(vfs_handle_struct *handle,
|
---|
1740 |
|
---|
1741 | SMB_ACL_PERMSET_T permset)
|
---|
1742 | {
|
---|
1743 | int result;
|
---|
1744 |
|
---|
1745 | result = SMB_VFS_NEXT_SYS_ACL_CLEAR_PERMS(handle, permset);
|
---|
1746 |
|
---|
1747 | do_log(SMB_VFS_OP_SYS_ACL_CLEAR_PERMS, (result >= 0), handle,
|
---|
1748 | "");
|
---|
1749 |
|
---|
1750 | return result;
|
---|
1751 | }
|
---|
1752 |
|
---|
1753 | static int smb_full_audit_sys_acl_add_perm(vfs_handle_struct *handle,
|
---|
1754 |
|
---|
1755 | SMB_ACL_PERMSET_T permset,
|
---|
1756 | SMB_ACL_PERM_T perm)
|
---|
1757 | {
|
---|
1758 | int result;
|
---|
1759 |
|
---|
1760 | result = SMB_VFS_NEXT_SYS_ACL_ADD_PERM(handle, permset, perm);
|
---|
1761 |
|
---|
1762 | do_log(SMB_VFS_OP_SYS_ACL_ADD_PERM, (result >= 0), handle,
|
---|
1763 | "");
|
---|
1764 |
|
---|
1765 | return result;
|
---|
1766 | }
|
---|
1767 |
|
---|
1768 | static char * smb_full_audit_sys_acl_to_text(vfs_handle_struct *handle,
|
---|
1769 | SMB_ACL_T theacl,
|
---|
1770 | ssize_t *plen)
|
---|
1771 | {
|
---|
1772 | char * result;
|
---|
1773 |
|
---|
1774 | result = SMB_VFS_NEXT_SYS_ACL_TO_TEXT(handle, theacl, plen);
|
---|
1775 |
|
---|
1776 | do_log(SMB_VFS_OP_SYS_ACL_TO_TEXT, (result != NULL), handle,
|
---|
1777 | "");
|
---|
1778 |
|
---|
1779 | return result;
|
---|
1780 | }
|
---|
1781 |
|
---|
1782 | static SMB_ACL_T smb_full_audit_sys_acl_init(vfs_handle_struct *handle,
|
---|
1783 |
|
---|
1784 | int count)
|
---|
1785 | {
|
---|
1786 | SMB_ACL_T result;
|
---|
1787 |
|
---|
1788 | result = SMB_VFS_NEXT_SYS_ACL_INIT(handle, count);
|
---|
1789 |
|
---|
1790 | do_log(SMB_VFS_OP_SYS_ACL_INIT, (result != NULL), handle,
|
---|
1791 | "");
|
---|
1792 |
|
---|
1793 | return result;
|
---|
1794 | }
|
---|
1795 |
|
---|
1796 | static int smb_full_audit_sys_acl_create_entry(vfs_handle_struct *handle,
|
---|
1797 | SMB_ACL_T *pacl,
|
---|
1798 | SMB_ACL_ENTRY_T *pentry)
|
---|
1799 | {
|
---|
1800 | int result;
|
---|
1801 |
|
---|
1802 | result = SMB_VFS_NEXT_SYS_ACL_CREATE_ENTRY(handle, pacl, pentry);
|
---|
1803 |
|
---|
1804 | do_log(SMB_VFS_OP_SYS_ACL_CREATE_ENTRY, (result >= 0), handle,
|
---|
1805 | "");
|
---|
1806 |
|
---|
1807 | return result;
|
---|
1808 | }
|
---|
1809 |
|
---|
1810 | static int smb_full_audit_sys_acl_set_tag_type(vfs_handle_struct *handle,
|
---|
1811 |
|
---|
1812 | SMB_ACL_ENTRY_T entry,
|
---|
1813 | SMB_ACL_TAG_T tagtype)
|
---|
1814 | {
|
---|
1815 | int result;
|
---|
1816 |
|
---|
1817 | result = SMB_VFS_NEXT_SYS_ACL_SET_TAG_TYPE(handle, entry,
|
---|
1818 | tagtype);
|
---|
1819 |
|
---|
1820 | do_log(SMB_VFS_OP_SYS_ACL_SET_TAG_TYPE, (result >= 0), handle,
|
---|
1821 | "");
|
---|
1822 |
|
---|
1823 | return result;
|
---|
1824 | }
|
---|
1825 |
|
---|
1826 | static int smb_full_audit_sys_acl_set_qualifier(vfs_handle_struct *handle,
|
---|
1827 |
|
---|
1828 | SMB_ACL_ENTRY_T entry,
|
---|
1829 | void *qual)
|
---|
1830 | {
|
---|
1831 | int result;
|
---|
1832 |
|
---|
1833 | result = SMB_VFS_NEXT_SYS_ACL_SET_QUALIFIER(handle, entry, qual);
|
---|
1834 |
|
---|
1835 | do_log(SMB_VFS_OP_SYS_ACL_SET_QUALIFIER, (result >= 0), handle,
|
---|
1836 | "");
|
---|
1837 |
|
---|
1838 | return result;
|
---|
1839 | }
|
---|
1840 |
|
---|
1841 | static int smb_full_audit_sys_acl_set_permset(vfs_handle_struct *handle,
|
---|
1842 |
|
---|
1843 | SMB_ACL_ENTRY_T entry,
|
---|
1844 | SMB_ACL_PERMSET_T permset)
|
---|
1845 | {
|
---|
1846 | int result;
|
---|
1847 |
|
---|
1848 | result = SMB_VFS_NEXT_SYS_ACL_SET_PERMSET(handle, entry, permset);
|
---|
1849 |
|
---|
1850 | do_log(SMB_VFS_OP_SYS_ACL_SET_PERMSET, (result >= 0), handle,
|
---|
1851 | "");
|
---|
1852 |
|
---|
1853 | return result;
|
---|
1854 | }
|
---|
1855 |
|
---|
1856 | static int smb_full_audit_sys_acl_valid(vfs_handle_struct *handle,
|
---|
1857 |
|
---|
1858 | SMB_ACL_T theacl )
|
---|
1859 | {
|
---|
1860 | int result;
|
---|
1861 |
|
---|
1862 | result = SMB_VFS_NEXT_SYS_ACL_VALID(handle, theacl);
|
---|
1863 |
|
---|
1864 | do_log(SMB_VFS_OP_SYS_ACL_VALID, (result >= 0), handle,
|
---|
1865 | "");
|
---|
1866 |
|
---|
1867 | return result;
|
---|
1868 | }
|
---|
1869 |
|
---|
1870 | static int smb_full_audit_sys_acl_set_file(vfs_handle_struct *handle,
|
---|
1871 |
|
---|
1872 | const char *name, SMB_ACL_TYPE_T acltype,
|
---|
1873 | SMB_ACL_T theacl)
|
---|
1874 | {
|
---|
1875 | int result;
|
---|
1876 |
|
---|
1877 | result = SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, name, acltype,
|
---|
1878 | theacl);
|
---|
1879 |
|
---|
1880 | do_log(SMB_VFS_OP_SYS_ACL_SET_FILE, (result >= 0), handle,
|
---|
1881 | "%s", name);
|
---|
1882 |
|
---|
1883 | return result;
|
---|
1884 | }
|
---|
1885 |
|
---|
1886 | static int smb_full_audit_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
|
---|
1887 | SMB_ACL_T theacl)
|
---|
1888 | {
|
---|
1889 | int result;
|
---|
1890 |
|
---|
1891 | result = SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
|
---|
1892 |
|
---|
1893 | do_log(SMB_VFS_OP_SYS_ACL_SET_FD, (result >= 0), handle,
|
---|
1894 | "%s", fsp->fsp_name);
|
---|
1895 |
|
---|
1896 | return result;
|
---|
1897 | }
|
---|
1898 |
|
---|
1899 | static int smb_full_audit_sys_acl_delete_def_file(vfs_handle_struct *handle,
|
---|
1900 |
|
---|
1901 | const char *path)
|
---|
1902 | {
|
---|
1903 | int result;
|
---|
1904 |
|
---|
1905 | result = SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle, path);
|
---|
1906 |
|
---|
1907 | do_log(SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE, (result >= 0), handle,
|
---|
1908 | "%s", path);
|
---|
1909 |
|
---|
1910 | return result;
|
---|
1911 | }
|
---|
1912 |
|
---|
1913 | static int smb_full_audit_sys_acl_get_perm(vfs_handle_struct *handle,
|
---|
1914 |
|
---|
1915 | SMB_ACL_PERMSET_T permset,
|
---|
1916 | SMB_ACL_PERM_T perm)
|
---|
1917 | {
|
---|
1918 | int result;
|
---|
1919 |
|
---|
1920 | result = SMB_VFS_NEXT_SYS_ACL_GET_PERM(handle, permset, perm);
|
---|
1921 |
|
---|
1922 | do_log(SMB_VFS_OP_SYS_ACL_GET_PERM, (result >= 0), handle,
|
---|
1923 | "");
|
---|
1924 |
|
---|
1925 | return result;
|
---|
1926 | }
|
---|
1927 |
|
---|
1928 | static int smb_full_audit_sys_acl_free_text(vfs_handle_struct *handle,
|
---|
1929 |
|
---|
1930 | char *text)
|
---|
1931 | {
|
---|
1932 | int result;
|
---|
1933 |
|
---|
1934 | result = SMB_VFS_NEXT_SYS_ACL_FREE_TEXT(handle, text);
|
---|
1935 |
|
---|
1936 | do_log(SMB_VFS_OP_SYS_ACL_FREE_TEXT, (result >= 0), handle,
|
---|
1937 | "");
|
---|
1938 |
|
---|
1939 | return result;
|
---|
1940 | }
|
---|
1941 |
|
---|
1942 | static int smb_full_audit_sys_acl_free_acl(vfs_handle_struct *handle,
|
---|
1943 |
|
---|
1944 | SMB_ACL_T posix_acl)
|
---|
1945 | {
|
---|
1946 | int result;
|
---|
1947 |
|
---|
1948 | result = SMB_VFS_NEXT_SYS_ACL_FREE_ACL(handle, posix_acl);
|
---|
1949 |
|
---|
1950 | do_log(SMB_VFS_OP_SYS_ACL_FREE_ACL, (result >= 0), handle,
|
---|
1951 | "");
|
---|
1952 |
|
---|
1953 | return result;
|
---|
1954 | }
|
---|
1955 |
|
---|
1956 | static int smb_full_audit_sys_acl_free_qualifier(vfs_handle_struct *handle,
|
---|
1957 | void *qualifier,
|
---|
1958 | SMB_ACL_TAG_T tagtype)
|
---|
1959 | {
|
---|
1960 | int result;
|
---|
1961 |
|
---|
1962 | result = SMB_VFS_NEXT_SYS_ACL_FREE_QUALIFIER(handle, qualifier,
|
---|
1963 | tagtype);
|
---|
1964 |
|
---|
1965 | do_log(SMB_VFS_OP_SYS_ACL_FREE_QUALIFIER, (result >= 0), handle,
|
---|
1966 | "");
|
---|
1967 |
|
---|
1968 | return result;
|
---|
1969 | }
|
---|
1970 |
|
---|
1971 | static ssize_t smb_full_audit_getxattr(struct vfs_handle_struct *handle,
|
---|
1972 | const char *path,
|
---|
1973 | const char *name, void *value, size_t size)
|
---|
1974 | {
|
---|
1975 | ssize_t result;
|
---|
1976 |
|
---|
1977 | result = SMB_VFS_NEXT_GETXATTR(handle, path, name, value, size);
|
---|
1978 |
|
---|
1979 | do_log(SMB_VFS_OP_GETXATTR, (result >= 0), handle,
|
---|
1980 | "%s|%s", path, name);
|
---|
1981 |
|
---|
1982 | return result;
|
---|
1983 | }
|
---|
1984 |
|
---|
1985 | static ssize_t smb_full_audit_lgetxattr(struct vfs_handle_struct *handle,
|
---|
1986 | const char *path, const char *name,
|
---|
1987 | void *value, size_t size)
|
---|
1988 | {
|
---|
1989 | ssize_t result;
|
---|
1990 |
|
---|
1991 | result = SMB_VFS_NEXT_LGETXATTR(handle, path, name, value, size);
|
---|
1992 |
|
---|
1993 | do_log(SMB_VFS_OP_LGETXATTR, (result >= 0), handle,
|
---|
1994 | "%s|%s", path, name);
|
---|
1995 |
|
---|
1996 | return result;
|
---|
1997 | }
|
---|
1998 |
|
---|
1999 | static ssize_t smb_full_audit_fgetxattr(struct vfs_handle_struct *handle,
|
---|
2000 | struct files_struct *fsp,
|
---|
2001 | const char *name, void *value, size_t size)
|
---|
2002 | {
|
---|
2003 | ssize_t result;
|
---|
2004 |
|
---|
2005 | result = SMB_VFS_NEXT_FGETXATTR(handle, fsp, name, value, size);
|
---|
2006 |
|
---|
2007 | do_log(SMB_VFS_OP_FGETXATTR, (result >= 0), handle,
|
---|
2008 | "%s|%s", fsp->fsp_name, name);
|
---|
2009 |
|
---|
2010 | return result;
|
---|
2011 | }
|
---|
2012 |
|
---|
2013 | static ssize_t smb_full_audit_listxattr(struct vfs_handle_struct *handle,
|
---|
2014 | const char *path, char *list, size_t size)
|
---|
2015 | {
|
---|
2016 | ssize_t result;
|
---|
2017 |
|
---|
2018 | result = SMB_VFS_NEXT_LISTXATTR(handle, path, list, size);
|
---|
2019 |
|
---|
2020 | do_log(SMB_VFS_OP_LISTXATTR, (result >= 0), handle, "%s", path);
|
---|
2021 |
|
---|
2022 | return result;
|
---|
2023 | }
|
---|
2024 |
|
---|
2025 | static ssize_t smb_full_audit_llistxattr(struct vfs_handle_struct *handle,
|
---|
2026 | const char *path, char *list, size_t size)
|
---|
2027 | {
|
---|
2028 | ssize_t result;
|
---|
2029 |
|
---|
2030 | result = SMB_VFS_NEXT_LLISTXATTR(handle, path, list, size);
|
---|
2031 |
|
---|
2032 | do_log(SMB_VFS_OP_LLISTXATTR, (result >= 0), handle, "%s", path);
|
---|
2033 |
|
---|
2034 | return result;
|
---|
2035 | }
|
---|
2036 |
|
---|
2037 | static ssize_t smb_full_audit_flistxattr(struct vfs_handle_struct *handle,
|
---|
2038 | struct files_struct *fsp, char *list,
|
---|
2039 | size_t size)
|
---|
2040 | {
|
---|
2041 | ssize_t result;
|
---|
2042 |
|
---|
2043 | result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
|
---|
2044 |
|
---|
2045 | do_log(SMB_VFS_OP_FLISTXATTR, (result >= 0), handle,
|
---|
2046 | "%s", fsp->fsp_name);
|
---|
2047 |
|
---|
2048 | return result;
|
---|
2049 | }
|
---|
2050 |
|
---|
2051 | static int smb_full_audit_removexattr(struct vfs_handle_struct *handle,
|
---|
2052 | const char *path,
|
---|
2053 | const char *name)
|
---|
2054 | {
|
---|
2055 | int result;
|
---|
2056 |
|
---|
2057 | result = SMB_VFS_NEXT_REMOVEXATTR(handle, path, name);
|
---|
2058 |
|
---|
2059 | do_log(SMB_VFS_OP_REMOVEXATTR, (result >= 0), handle,
|
---|
2060 | "%s|%s", path, name);
|
---|
2061 |
|
---|
2062 | return result;
|
---|
2063 | }
|
---|
2064 |
|
---|
2065 | static int smb_full_audit_lremovexattr(struct vfs_handle_struct *handle,
|
---|
2066 | const char *path,
|
---|
2067 | const char *name)
|
---|
2068 | {
|
---|
2069 | int result;
|
---|
2070 |
|
---|
2071 | result = SMB_VFS_NEXT_LREMOVEXATTR(handle, path, name);
|
---|
2072 |
|
---|
2073 | do_log(SMB_VFS_OP_LREMOVEXATTR, (result >= 0), handle,
|
---|
2074 | "%s|%s", path, name);
|
---|
2075 |
|
---|
2076 | return result;
|
---|
2077 | }
|
---|
2078 |
|
---|
2079 | static int smb_full_audit_fremovexattr(struct vfs_handle_struct *handle,
|
---|
2080 | struct files_struct *fsp,
|
---|
2081 | const char *name)
|
---|
2082 | {
|
---|
2083 | int result;
|
---|
2084 |
|
---|
2085 | result = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
|
---|
2086 |
|
---|
2087 | do_log(SMB_VFS_OP_FREMOVEXATTR, (result >= 0), handle,
|
---|
2088 | "%s|%s", fsp->fsp_name, name);
|
---|
2089 |
|
---|
2090 | return result;
|
---|
2091 | }
|
---|
2092 |
|
---|
2093 | static int smb_full_audit_setxattr(struct vfs_handle_struct *handle,
|
---|
2094 | const char *path,
|
---|
2095 | const char *name, const void *value, size_t size,
|
---|
2096 | int flags)
|
---|
2097 | {
|
---|
2098 | int result;
|
---|
2099 |
|
---|
2100 | result = SMB_VFS_NEXT_SETXATTR(handle, path, name, value, size,
|
---|
2101 | flags);
|
---|
2102 |
|
---|
2103 | do_log(SMB_VFS_OP_SETXATTR, (result >= 0), handle,
|
---|
2104 | "%s|%s", path, name);
|
---|
2105 |
|
---|
2106 | return result;
|
---|
2107 | }
|
---|
2108 |
|
---|
2109 | static int smb_full_audit_lsetxattr(struct vfs_handle_struct *handle,
|
---|
2110 | const char *path,
|
---|
2111 | const char *name, const void *value, size_t size,
|
---|
2112 | int flags)
|
---|
2113 | {
|
---|
2114 | int result;
|
---|
2115 |
|
---|
2116 | result = SMB_VFS_NEXT_LSETXATTR(handle, path, name, value, size,
|
---|
2117 | flags);
|
---|
2118 |
|
---|
2119 | do_log(SMB_VFS_OP_LSETXATTR, (result >= 0), handle,
|
---|
2120 | "%s|%s", path, name);
|
---|
2121 |
|
---|
2122 | return result;
|
---|
2123 | }
|
---|
2124 |
|
---|
2125 | static int smb_full_audit_fsetxattr(struct vfs_handle_struct *handle,
|
---|
2126 | struct files_struct *fsp, const char *name,
|
---|
2127 | const void *value, size_t size, int flags)
|
---|
2128 | {
|
---|
2129 | int result;
|
---|
2130 |
|
---|
2131 | result = SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags);
|
---|
2132 |
|
---|
2133 | do_log(SMB_VFS_OP_FSETXATTR, (result >= 0), handle,
|
---|
2134 | "%s|%s", fsp->fsp_name, name);
|
---|
2135 |
|
---|
2136 | return result;
|
---|
2137 | }
|
---|
2138 |
|
---|
2139 | static int smb_full_audit_aio_read(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
2140 | {
|
---|
2141 | int result;
|
---|
2142 |
|
---|
2143 | result = SMB_VFS_NEXT_AIO_READ(handle, fsp, aiocb);
|
---|
2144 | do_log(SMB_VFS_OP_AIO_READ, (result >= 0), handle,
|
---|
2145 | "%s", fsp->fsp_name);
|
---|
2146 |
|
---|
2147 | return result;
|
---|
2148 | }
|
---|
2149 |
|
---|
2150 | static int smb_full_audit_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
2151 | {
|
---|
2152 | int result;
|
---|
2153 |
|
---|
2154 | result = SMB_VFS_NEXT_AIO_WRITE(handle, fsp, aiocb);
|
---|
2155 | do_log(SMB_VFS_OP_AIO_WRITE, (result >= 0), handle,
|
---|
2156 | "%s", fsp->fsp_name);
|
---|
2157 |
|
---|
2158 | return result;
|
---|
2159 | }
|
---|
2160 |
|
---|
2161 | static ssize_t smb_full_audit_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
2162 | {
|
---|
2163 | int result;
|
---|
2164 |
|
---|
2165 | result = SMB_VFS_NEXT_AIO_RETURN(handle, fsp, aiocb);
|
---|
2166 | do_log(SMB_VFS_OP_AIO_RETURN, (result >= 0), handle,
|
---|
2167 | "%s", fsp->fsp_name);
|
---|
2168 |
|
---|
2169 | return result;
|
---|
2170 | }
|
---|
2171 |
|
---|
2172 | static int smb_full_audit_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
2173 | {
|
---|
2174 | int result;
|
---|
2175 |
|
---|
2176 | result = SMB_VFS_NEXT_AIO_CANCEL(handle, fsp, aiocb);
|
---|
2177 | do_log(SMB_VFS_OP_AIO_CANCEL, (result >= 0), handle,
|
---|
2178 | "%s", fsp->fsp_name);
|
---|
2179 |
|
---|
2180 | return result;
|
---|
2181 | }
|
---|
2182 |
|
---|
2183 | static int smb_full_audit_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
|
---|
2184 | {
|
---|
2185 | int result;
|
---|
2186 |
|
---|
2187 | result = SMB_VFS_NEXT_AIO_ERROR(handle, fsp, aiocb);
|
---|
2188 | do_log(SMB_VFS_OP_AIO_ERROR, (result >= 0), handle,
|
---|
2189 | "%s", fsp->fsp_name);
|
---|
2190 |
|
---|
2191 | return result;
|
---|
2192 | }
|
---|
2193 |
|
---|
2194 | static int smb_full_audit_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
|
---|
2195 | {
|
---|
2196 | int result;
|
---|
2197 |
|
---|
2198 | result = SMB_VFS_NEXT_AIO_FSYNC(handle, fsp, op, aiocb);
|
---|
2199 | do_log(SMB_VFS_OP_AIO_FSYNC, (result >= 0), handle,
|
---|
2200 | "%s", fsp->fsp_name);
|
---|
2201 |
|
---|
2202 | return result;
|
---|
2203 | }
|
---|
2204 |
|
---|
2205 | 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)
|
---|
2206 | {
|
---|
2207 | int result;
|
---|
2208 |
|
---|
2209 | result = SMB_VFS_NEXT_AIO_SUSPEND(handle, fsp, aiocb, n, ts);
|
---|
2210 | do_log(SMB_VFS_OP_AIO_SUSPEND, (result >= 0), handle,
|
---|
2211 | "%s", fsp->fsp_name);
|
---|
2212 |
|
---|
2213 | return result;
|
---|
2214 | }
|
---|
2215 |
|
---|
2216 |
|
---|
2217 | NTSTATUS vfs_full_audit_init(void);
|
---|
2218 | NTSTATUS vfs_full_audit_init(void)
|
---|
2219 | {
|
---|
2220 | NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
|
---|
2221 | "full_audit", audit_op_tuples);
|
---|
2222 |
|
---|
2223 | if (!NT_STATUS_IS_OK(ret))
|
---|
2224 | return ret;
|
---|
2225 |
|
---|
2226 | vfs_full_audit_debug_level = debug_add_class("full_audit");
|
---|
2227 | if (vfs_full_audit_debug_level == -1) {
|
---|
2228 | vfs_full_audit_debug_level = DBGC_VFS;
|
---|
2229 | DEBUG(0, ("vfs_full_audit: Couldn't register custom debugging "
|
---|
2230 | "class!\n"));
|
---|
2231 | } else {
|
---|
2232 | DEBUG(10, ("vfs_full_audit: Debug class number of "
|
---|
2233 | "'full_audit': %d\n", vfs_full_audit_debug_level));
|
---|
2234 | }
|
---|
2235 |
|
---|
2236 | return ret;
|
---|
2237 | }
|
---|