s3-docs: Typos in smbclient man page
[Samba/gebeck_regimport.git] / source3 / modules / vfs_extd_audit.c
blob80dece7eddceca2250c535df47d9f3e103708709
1 /*
2 * Auditing VFS module for samba. Log selected file operations to syslog
3 * facility.
5 * Copyright (C) Tim Potter, 1999-2000
6 * Copyright (C) Alexander Bokovoy, 2002
7 * Copyright (C) John H Terpstra, 2003
8 * Copyright (C) Stefan (metze) Metzmacher, 2003
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/>.
25 #include "includes.h"
27 static int vfs_extd_audit_debug_level = DBGC_VFS;
29 #undef DBGC_CLASS
30 #define DBGC_CLASS vfs_extd_audit_debug_level
32 static int audit_syslog_facility(vfs_handle_struct *handle)
34 static const struct enum_list enum_log_facilities[] = {
35 { LOG_USER, "USER" },
36 { LOG_LOCAL0, "LOCAL0" },
37 { LOG_LOCAL1, "LOCAL1" },
38 { LOG_LOCAL2, "LOCAL2" },
39 { LOG_LOCAL3, "LOCAL3" },
40 { LOG_LOCAL4, "LOCAL4" },
41 { LOG_LOCAL5, "LOCAL5" },
42 { LOG_LOCAL6, "LOCAL6" },
43 { LOG_LOCAL7, "LOCAL7" }
46 int facility;
48 facility = lp_parm_enum(SNUM(handle->conn), "extd_audit", "facility", enum_log_facilities, LOG_USER);
50 return facility;
54 static int audit_syslog_priority(vfs_handle_struct *handle)
56 static const struct enum_list enum_log_priorities[] = {
57 { LOG_EMERG, "EMERG" },
58 { LOG_ALERT, "ALERT" },
59 { LOG_CRIT, "CRIT" },
60 { LOG_ERR, "ERR" },
61 { LOG_WARNING, "WARNING" },
62 { LOG_NOTICE, "NOTICE" },
63 { LOG_INFO, "INFO" },
64 { LOG_DEBUG, "DEBUG" }
67 int priority;
69 priority = lp_parm_enum(SNUM(handle->conn), "extd_audit", "priority",
70 enum_log_priorities, LOG_NOTICE);
71 if (priority == -1) {
72 priority = LOG_WARNING;
75 return priority;
78 /* Implementation of vfs_ops. Pass everything on to the default
79 operation but log event first. */
81 static int audit_connect(vfs_handle_struct *handle, const char *svc, const char *user)
83 int result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
85 if (result < 0) {
86 return result;
89 openlog("smbd_audit", LOG_PID, audit_syslog_facility(handle));
91 if (lp_syslog() > 0) {
92 syslog(audit_syslog_priority(handle),
93 "connect to service %s by user %s\n",
94 svc, user);
96 DEBUG(10, ("Connected to service %s as user %s\n",
97 svc, user));
99 return 0;
102 static void audit_disconnect(vfs_handle_struct *handle)
104 if (lp_syslog() > 0) {
105 syslog(audit_syslog_priority(handle), "disconnected\n");
107 DEBUG(10, ("Disconnected from VFS module extd_audit\n"));
108 SMB_VFS_NEXT_DISCONNECT(handle);
110 return;
113 static SMB_STRUCT_DIR *audit_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32 attr)
115 SMB_STRUCT_DIR *result;
117 result = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
119 if (lp_syslog() > 0) {
120 syslog(audit_syslog_priority(handle), "opendir %s %s%s\n",
121 fname,
122 (result == NULL) ? "failed: " : "",
123 (result == NULL) ? strerror(errno) : "");
125 DEBUG(1, ("vfs_extd_audit: opendir %s %s %s\n",
126 fname,
127 (result == NULL) ? "failed: " : "",
128 (result == NULL) ? strerror(errno) : ""));
130 return result;
133 static int audit_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode)
135 int result;
137 result = SMB_VFS_NEXT_MKDIR(handle, path, mode);
139 if (lp_syslog() > 0) {
140 syslog(audit_syslog_priority(handle), "mkdir %s %s%s\n",
141 path,
142 (result < 0) ? "failed: " : "",
143 (result < 0) ? strerror(errno) : "");
145 DEBUG(0, ("vfs_extd_audit: mkdir %s %s %s\n",
146 path,
147 (result < 0) ? "failed: " : "",
148 (result < 0) ? strerror(errno) : ""));
150 return result;
153 static int audit_rmdir(vfs_handle_struct *handle, const char *path)
155 int result;
157 result = SMB_VFS_NEXT_RMDIR(handle, path);
159 if (lp_syslog() > 0) {
160 syslog(audit_syslog_priority(handle), "rmdir %s %s%s\n",
161 path,
162 (result < 0) ? "failed: " : "",
163 (result < 0) ? strerror(errno) : "");
165 DEBUG(0, ("vfs_extd_audit: rmdir %s %s %s\n",
166 path,
167 (result < 0) ? "failed: " : "",
168 (result < 0) ? strerror(errno) : ""));
170 return result;
173 static int audit_open(vfs_handle_struct *handle,
174 struct smb_filename *smb_fname, files_struct *fsp,
175 int flags, mode_t mode)
177 int result;
179 result = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
181 if (lp_syslog() > 0) {
182 syslog(audit_syslog_priority(handle), "open %s (fd %d) %s%s%s\n",
183 smb_fname->base_name, result,
184 ((flags & O_WRONLY) || (flags & O_RDWR)) ? "for writing " : "",
185 (result < 0) ? "failed: " : "",
186 (result < 0) ? strerror(errno) : "");
188 DEBUG(2, ("vfs_extd_audit: open %s %s %s\n",
189 smb_fname_str_dbg(smb_fname),
190 (result < 0) ? "failed: " : "",
191 (result < 0) ? strerror(errno) : ""));
193 return result;
196 static int audit_close(vfs_handle_struct *handle, files_struct *fsp)
198 int result;
200 result = SMB_VFS_NEXT_CLOSE(handle, fsp);
202 if (lp_syslog() > 0) {
203 syslog(audit_syslog_priority(handle), "close fd %d %s%s\n",
204 fsp->fh->fd,
205 (result < 0) ? "failed: " : "",
206 (result < 0) ? strerror(errno) : "");
208 DEBUG(2, ("vfs_extd_audit: close fd %d %s %s\n",
209 fsp->fh->fd,
210 (result < 0) ? "failed: " : "",
211 (result < 0) ? strerror(errno) : ""));
213 return result;
216 static int audit_rename(vfs_handle_struct *handle,
217 const struct smb_filename *smb_fname_src,
218 const struct smb_filename *smb_fname_dst)
220 int result;
222 result = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
224 if (lp_syslog() > 0) {
225 syslog(audit_syslog_priority(handle), "rename %s -> %s %s%s\n",
226 smb_fname_src->base_name,
227 smb_fname_dst->base_name,
228 (result < 0) ? "failed: " : "",
229 (result < 0) ? strerror(errno) : "");
231 DEBUG(1, ("vfs_extd_audit: rename old: %s newname: %s %s %s\n",
232 smb_fname_str_dbg(smb_fname_src),
233 smb_fname_str_dbg(smb_fname_dst),
234 (result < 0) ? "failed: " : "",
235 (result < 0) ? strerror(errno) : ""));
237 return result;
240 static int audit_unlink(vfs_handle_struct *handle,
241 const struct smb_filename *smb_fname)
243 int result;
245 result = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
247 if (lp_syslog() > 0) {
248 syslog(audit_syslog_priority(handle), "unlink %s %s%s\n",
249 smb_fname->base_name,
250 (result < 0) ? "failed: " : "",
251 (result < 0) ? strerror(errno) : "");
253 DEBUG(0, ("vfs_extd_audit: unlink %s %s %s\n",
254 smb_fname_str_dbg(smb_fname),
255 (result < 0) ? "failed: " : "",
256 (result < 0) ? strerror(errno) : ""));
258 return result;
261 static int audit_chmod(vfs_handle_struct *handle, const char *path, mode_t mode)
263 int result;
265 result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
267 if (lp_syslog() > 0) {
268 syslog(audit_syslog_priority(handle), "chmod %s mode 0x%x %s%s\n",
269 path, mode,
270 (result < 0) ? "failed: " : "",
271 (result < 0) ? strerror(errno) : "");
273 DEBUG(1, ("vfs_extd_audit: chmod %s mode 0x%x %s %s\n",
274 path, (unsigned int)mode,
275 (result < 0) ? "failed: " : "",
276 (result < 0) ? strerror(errno) : ""));
278 return result;
281 static int audit_chmod_acl(vfs_handle_struct *handle, const char *path, mode_t mode)
283 int result;
285 result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
287 if (lp_syslog() > 0) {
288 syslog(audit_syslog_priority(handle), "chmod_acl %s mode 0x%x %s%s\n",
289 path, mode,
290 (result < 0) ? "failed: " : "",
291 (result < 0) ? strerror(errno) : "");
293 DEBUG(1, ("vfs_extd_audit: chmod_acl %s mode 0x%x %s %s\n",
294 path, (unsigned int)mode,
295 (result < 0) ? "failed: " : "",
296 (result < 0) ? strerror(errno) : ""));
298 return result;
301 static int audit_fchmod(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
303 int result;
305 result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
307 if (lp_syslog() > 0) {
308 syslog(audit_syslog_priority(handle), "fchmod %s mode 0x%x %s%s\n",
309 fsp->fsp_name->base_name, mode,
310 (result < 0) ? "failed: " : "",
311 (result < 0) ? strerror(errno) : "");
313 DEBUG(1, ("vfs_extd_audit: fchmod %s mode 0x%x %s %s",
314 fsp_str_dbg(fsp), (unsigned int)mode,
315 (result < 0) ? "failed: " : "",
316 (result < 0) ? strerror(errno) : ""));
318 return result;
321 static int audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
323 int result;
325 result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
327 if (lp_syslog() > 0) {
328 syslog(audit_syslog_priority(handle), "fchmod_acl %s mode 0x%x %s%s\n",
329 fsp->fsp_name->base_name, mode,
330 (result < 0) ? "failed: " : "",
331 (result < 0) ? strerror(errno) : "");
333 DEBUG(1, ("vfs_extd_audit: fchmod_acl %s mode 0x%x %s %s",
334 fsp_str_dbg(fsp), (unsigned int)mode,
335 (result < 0) ? "failed: " : "",
336 (result < 0) ? strerror(errno) : ""));
338 return result;
341 static struct vfs_fn_pointers vfs_extd_audit_fns = {
342 .connect_fn = audit_connect,
343 .disconnect = audit_disconnect,
344 .opendir = audit_opendir,
345 .mkdir = audit_mkdir,
346 .rmdir = audit_rmdir,
347 .open = audit_open,
348 .close_fn = audit_close,
349 .rename = audit_rename,
350 .unlink = audit_unlink,
351 .chmod = audit_chmod,
352 .fchmod = audit_fchmod,
353 .chmod_acl = audit_chmod_acl,
354 .fchmod_acl = audit_fchmod_acl,
357 NTSTATUS vfs_extd_audit_init(void)
359 NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
360 "extd_audit", &vfs_extd_audit_fns);
362 if (!NT_STATUS_IS_OK(ret))
363 return ret;
365 vfs_extd_audit_debug_level = debug_add_class("extd_audit");
366 if (vfs_extd_audit_debug_level == -1) {
367 vfs_extd_audit_debug_level = DBGC_VFS;
368 DEBUG(0, ("vfs_extd_audit: Couldn't register custom debugging class!\n"));
369 } else {
370 DEBUG(10, ("vfs_extd_audit: Debug class number of 'extd_audit': %d\n", vfs_extd_audit_debug_level));
373 return ret;