2 * Auditing VFS module for samba. Log selected file operations to syslog
5 * Copyright (C) Tim Potter, 1999-2000
6 * Copyright (C) Alexander Bokovoy, 2002
7 * Copyright (C) John H Terpstra, 2003
8 * Copyright (C) Stefan (metze) Metzmacher, 2003
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <http://www.gnu.org/licenses/>.
26 #include "system/filesys.h"
27 #include "system/syslog.h"
28 #include "smbd/smbd.h"
29 #include "lib/param/loadparm.h"
31 static int vfs_extd_audit_debug_level
= DBGC_VFS
;
34 #define DBGC_CLASS vfs_extd_audit_debug_level
36 static int audit_syslog_facility(vfs_handle_struct
*handle
)
38 static const struct enum_list enum_log_facilities
[] = {
40 { LOG_LOCAL0
, "LOCAL0" },
41 { LOG_LOCAL1
, "LOCAL1" },
42 { LOG_LOCAL2
, "LOCAL2" },
43 { LOG_LOCAL3
, "LOCAL3" },
44 { LOG_LOCAL4
, "LOCAL4" },
45 { LOG_LOCAL5
, "LOCAL5" },
46 { LOG_LOCAL6
, "LOCAL6" },
47 { LOG_LOCAL7
, "LOCAL7" },
53 facility
= lp_parm_enum(SNUM(handle
->conn
), "extd_audit", "facility", enum_log_facilities
, LOG_USER
);
59 static int audit_syslog_priority(vfs_handle_struct
*handle
)
61 static const struct enum_list enum_log_priorities
[] = {
62 { LOG_EMERG
, "EMERG" },
63 { LOG_ALERT
, "ALERT" },
66 { LOG_WARNING
, "WARNING" },
67 { LOG_NOTICE
, "NOTICE" },
69 { LOG_DEBUG
, "DEBUG" },
75 priority
= lp_parm_enum(SNUM(handle
->conn
), "extd_audit", "priority",
76 enum_log_priorities
, LOG_NOTICE
);
78 priority
= LOG_WARNING
;
84 /* Implementation of vfs_ops. Pass everything on to the default
85 operation but log event first. */
87 static int audit_connect(vfs_handle_struct
*handle
, const char *svc
, const char *user
)
89 int result
= SMB_VFS_NEXT_CONNECT(handle
, svc
, user
);
95 openlog("smbd_audit", LOG_PID
, audit_syslog_facility(handle
));
97 if (lp_syslog() > 0) {
98 syslog(audit_syslog_priority(handle
),
99 "connect to service %s by user %s\n",
102 DEBUG(10, ("Connected to service %s as user %s\n",
108 static void audit_disconnect(vfs_handle_struct
*handle
)
110 if (lp_syslog() > 0) {
111 syslog(audit_syslog_priority(handle
), "disconnected\n");
113 DEBUG(10, ("Disconnected from VFS module extd_audit\n"));
114 SMB_VFS_NEXT_DISCONNECT(handle
);
119 static DIR *audit_opendir(vfs_handle_struct
*handle
, const char *fname
, const char *mask
, uint32 attr
)
123 result
= SMB_VFS_NEXT_OPENDIR(handle
, fname
, mask
, attr
);
125 if (lp_syslog() > 0) {
126 syslog(audit_syslog_priority(handle
), "opendir %s %s%s\n",
128 (result
== NULL
) ? "failed: " : "",
129 (result
== NULL
) ? strerror(errno
) : "");
131 DEBUG(1, ("vfs_extd_audit: opendir %s %s %s\n",
133 (result
== NULL
) ? "failed: " : "",
134 (result
== NULL
) ? strerror(errno
) : ""));
139 static int audit_mkdir(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
143 result
= SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
145 if (lp_syslog() > 0) {
146 syslog(audit_syslog_priority(handle
), "mkdir %s %s%s\n",
148 (result
< 0) ? "failed: " : "",
149 (result
< 0) ? strerror(errno
) : "");
151 DEBUG(0, ("vfs_extd_audit: mkdir %s %s %s\n",
153 (result
< 0) ? "failed: " : "",
154 (result
< 0) ? strerror(errno
) : ""));
159 static int audit_rmdir(vfs_handle_struct
*handle
, const char *path
)
163 result
= SMB_VFS_NEXT_RMDIR(handle
, path
);
165 if (lp_syslog() > 0) {
166 syslog(audit_syslog_priority(handle
), "rmdir %s %s%s\n",
168 (result
< 0) ? "failed: " : "",
169 (result
< 0) ? strerror(errno
) : "");
171 DEBUG(0, ("vfs_extd_audit: rmdir %s %s %s\n",
173 (result
< 0) ? "failed: " : "",
174 (result
< 0) ? strerror(errno
) : ""));
179 static int audit_open(vfs_handle_struct
*handle
,
180 struct smb_filename
*smb_fname
, files_struct
*fsp
,
181 int flags
, mode_t mode
)
185 result
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
187 if (lp_syslog() > 0) {
188 syslog(audit_syslog_priority(handle
), "open %s (fd %d) %s%s%s\n",
189 smb_fname
->base_name
, result
,
190 ((flags
& O_WRONLY
) || (flags
& O_RDWR
)) ? "for writing " : "",
191 (result
< 0) ? "failed: " : "",
192 (result
< 0) ? strerror(errno
) : "");
194 DEBUG(2, ("vfs_extd_audit: open %s %s %s\n",
195 smb_fname_str_dbg(smb_fname
),
196 (result
< 0) ? "failed: " : "",
197 (result
< 0) ? strerror(errno
) : ""));
202 static int audit_close(vfs_handle_struct
*handle
, files_struct
*fsp
)
206 result
= SMB_VFS_NEXT_CLOSE(handle
, fsp
);
208 if (lp_syslog() > 0) {
209 syslog(audit_syslog_priority(handle
), "close fd %d %s%s\n",
211 (result
< 0) ? "failed: " : "",
212 (result
< 0) ? strerror(errno
) : "");
214 DEBUG(2, ("vfs_extd_audit: close fd %d %s %s\n",
216 (result
< 0) ? "failed: " : "",
217 (result
< 0) ? strerror(errno
) : ""));
222 static int audit_rename(vfs_handle_struct
*handle
,
223 const struct smb_filename
*smb_fname_src
,
224 const struct smb_filename
*smb_fname_dst
)
228 result
= SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
, smb_fname_dst
);
230 if (lp_syslog() > 0) {
231 syslog(audit_syslog_priority(handle
), "rename %s -> %s %s%s\n",
232 smb_fname_src
->base_name
,
233 smb_fname_dst
->base_name
,
234 (result
< 0) ? "failed: " : "",
235 (result
< 0) ? strerror(errno
) : "");
237 DEBUG(1, ("vfs_extd_audit: rename old: %s newname: %s %s %s\n",
238 smb_fname_str_dbg(smb_fname_src
),
239 smb_fname_str_dbg(smb_fname_dst
),
240 (result
< 0) ? "failed: " : "",
241 (result
< 0) ? strerror(errno
) : ""));
246 static int audit_unlink(vfs_handle_struct
*handle
,
247 const struct smb_filename
*smb_fname
)
251 result
= SMB_VFS_NEXT_UNLINK(handle
, smb_fname
);
253 if (lp_syslog() > 0) {
254 syslog(audit_syslog_priority(handle
), "unlink %s %s%s\n",
255 smb_fname
->base_name
,
256 (result
< 0) ? "failed: " : "",
257 (result
< 0) ? strerror(errno
) : "");
259 DEBUG(0, ("vfs_extd_audit: unlink %s %s %s\n",
260 smb_fname_str_dbg(smb_fname
),
261 (result
< 0) ? "failed: " : "",
262 (result
< 0) ? strerror(errno
) : ""));
267 static int audit_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
271 result
= SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
273 if (lp_syslog() > 0) {
274 syslog(audit_syslog_priority(handle
), "chmod %s mode 0x%x %s%s\n",
276 (result
< 0) ? "failed: " : "",
277 (result
< 0) ? strerror(errno
) : "");
279 DEBUG(1, ("vfs_extd_audit: chmod %s mode 0x%x %s %s\n",
280 path
, (unsigned int)mode
,
281 (result
< 0) ? "failed: " : "",
282 (result
< 0) ? strerror(errno
) : ""));
287 static int audit_chmod_acl(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
291 result
= SMB_VFS_NEXT_CHMOD_ACL(handle
, path
, mode
);
293 if (lp_syslog() > 0) {
294 syslog(audit_syslog_priority(handle
), "chmod_acl %s mode 0x%x %s%s\n",
296 (result
< 0) ? "failed: " : "",
297 (result
< 0) ? strerror(errno
) : "");
299 DEBUG(1, ("vfs_extd_audit: chmod_acl %s mode 0x%x %s %s\n",
300 path
, (unsigned int)mode
,
301 (result
< 0) ? "failed: " : "",
302 (result
< 0) ? strerror(errno
) : ""));
307 static int audit_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
311 result
= SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
313 if (lp_syslog() > 0) {
314 syslog(audit_syslog_priority(handle
), "fchmod %s mode 0x%x %s%s\n",
315 fsp
->fsp_name
->base_name
, mode
,
316 (result
< 0) ? "failed: " : "",
317 (result
< 0) ? strerror(errno
) : "");
319 DEBUG(1, ("vfs_extd_audit: fchmod %s mode 0x%x %s %s",
320 fsp_str_dbg(fsp
), (unsigned int)mode
,
321 (result
< 0) ? "failed: " : "",
322 (result
< 0) ? strerror(errno
) : ""));
327 static int audit_fchmod_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
331 result
= SMB_VFS_NEXT_FCHMOD_ACL(handle
, fsp
, mode
);
333 if (lp_syslog() > 0) {
334 syslog(audit_syslog_priority(handle
), "fchmod_acl %s mode 0x%x %s%s\n",
335 fsp
->fsp_name
->base_name
, mode
,
336 (result
< 0) ? "failed: " : "",
337 (result
< 0) ? strerror(errno
) : "");
339 DEBUG(1, ("vfs_extd_audit: fchmod_acl %s mode 0x%x %s %s",
340 fsp_str_dbg(fsp
), (unsigned int)mode
,
341 (result
< 0) ? "failed: " : "",
342 (result
< 0) ? strerror(errno
) : ""));
347 static struct vfs_fn_pointers vfs_extd_audit_fns
= {
348 .connect_fn
= audit_connect
,
349 .disconnect_fn
= audit_disconnect
,
350 .opendir_fn
= audit_opendir
,
351 .mkdir_fn
= audit_mkdir
,
352 .rmdir_fn
= audit_rmdir
,
353 .open_fn
= audit_open
,
354 .close_fn
= audit_close
,
355 .rename_fn
= audit_rename
,
356 .unlink_fn
= audit_unlink
,
357 .chmod_fn
= audit_chmod
,
358 .fchmod_fn
= audit_fchmod
,
359 .chmod_acl_fn
= audit_chmod_acl
,
360 .fchmod_acl_fn
= audit_fchmod_acl
,
363 NTSTATUS
vfs_extd_audit_init(void)
365 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
366 "extd_audit", &vfs_extd_audit_fns
);
368 if (!NT_STATUS_IS_OK(ret
))
371 vfs_extd_audit_debug_level
= debug_add_class("extd_audit");
372 if (vfs_extd_audit_debug_level
== -1) {
373 vfs_extd_audit_debug_level
= DBGC_VFS
;
374 DEBUG(0, ("vfs_extd_audit: Couldn't register custom debugging class!\n"));
376 DEBUG(10, ("vfs_extd_audit: Debug class number of 'extd_audit': %d\n", vfs_extd_audit_debug_level
));