VFS: Modify rmdir to take a const struct smb_filename * instead of const char *
[kai/samba-autobuild/.git] / source3 / modules / vfs_extd_audit.c
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  *
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.
14  *  
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.
19  *  
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/>.
22  */
23
24
25 #include "includes.h"
26 #include "system/filesys.h"
27 #include "system/syslog.h"
28 #include "smbd/smbd.h"
29 #include "lib/param/loadparm.h"
30
31 static int vfs_extd_audit_debug_level = DBGC_VFS;
32
33 #undef DBGC_CLASS
34 #define DBGC_CLASS vfs_extd_audit_debug_level
35
36 static int audit_syslog_facility(vfs_handle_struct *handle)
37 {
38         static const struct enum_list enum_log_facilities[] = {
39                 { LOG_USER, "USER" },
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" },
48                 { -1, NULL}
49         };
50
51         int facility;
52
53         facility = lp_parm_enum(SNUM(handle->conn), "extd_audit", "facility", enum_log_facilities, LOG_USER);
54
55         return facility;
56 }
57
58
59 static int audit_syslog_priority(vfs_handle_struct *handle)
60 {
61         static const struct enum_list enum_log_priorities[] = {
62                 { LOG_EMERG, "EMERG" },
63                 { LOG_ALERT, "ALERT" },
64                 { LOG_CRIT, "CRIT" },
65                 { LOG_ERR, "ERR" },
66                 { LOG_WARNING, "WARNING" },
67                 { LOG_NOTICE, "NOTICE" },
68                 { LOG_INFO, "INFO" },
69                 { LOG_DEBUG, "DEBUG" },
70                 { -1, NULL}
71         };
72
73         int priority;
74
75         priority = lp_parm_enum(SNUM(handle->conn), "extd_audit", "priority",
76                                 enum_log_priorities, LOG_NOTICE);
77         if (priority == -1) {
78                 priority = LOG_WARNING;
79         }
80
81         return priority;
82 }
83
84 /* Implementation of vfs_ops.  Pass everything on to the default
85    operation but log event first. */
86
87 static int audit_connect(vfs_handle_struct *handle, const char *svc, const char *user)
88 {
89         int result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
90
91         if (result < 0) {
92                 return result;
93         }
94
95         openlog("smbd_audit", LOG_PID, audit_syslog_facility(handle));
96
97         if (lp_syslog() > 0) {
98                 syslog(audit_syslog_priority(handle),
99                        "connect to service %s by user %s\n",
100                        svc, user);
101         }
102         DEBUG(10, ("Connected to service %s as user %s\n",
103                svc, user));
104
105         return 0;
106 }
107
108 static void audit_disconnect(vfs_handle_struct *handle)
109 {
110         if (lp_syslog() > 0) {
111                 syslog(audit_syslog_priority(handle), "disconnected\n");
112         }
113         DEBUG(10, ("Disconnected from VFS module extd_audit\n"));
114         SMB_VFS_NEXT_DISCONNECT(handle);
115
116         return;
117 }
118
119 static DIR *audit_opendir(vfs_handle_struct *handle, const char *fname, const char *mask, uint32_t attr)
120 {
121         DIR *result;
122
123         result = SMB_VFS_NEXT_OPENDIR(handle, fname, mask, attr);
124
125         if (lp_syslog() > 0) {
126                 syslog(audit_syslog_priority(handle), "opendir %s %s%s\n",
127                        fname,
128                        (result == NULL) ? "failed: " : "",
129                        (result == NULL) ? strerror(errno) : "");
130         }
131         DEBUG(1, ("vfs_extd_audit: opendir %s %s %s\n",
132                fname,
133                (result == NULL) ? "failed: " : "",
134                (result == NULL) ? strerror(errno) : ""));
135
136         return result;
137 }
138
139 static int audit_mkdir(vfs_handle_struct *handle,
140                         const struct smb_filename *smb_fname,
141                         mode_t mode)
142 {
143         int result;
144
145         result = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
146
147         if (lp_syslog() > 0) {
148                 syslog(audit_syslog_priority(handle), "mkdir %s %s%s\n",
149                        smb_fname->base_name,
150                        (result < 0) ? "failed: " : "",
151                        (result < 0) ? strerror(errno) : "");
152         }
153         DEBUG(0, ("vfs_extd_audit: mkdir %s %s %s\n",
154                smb_fname->base_name,
155                (result < 0) ? "failed: " : "",
156                (result < 0) ? strerror(errno) : ""));
157
158         return result;
159 }
160
161 static int audit_rmdir(vfs_handle_struct *handle,
162                         const struct smb_filename *smb_fname)
163 {
164         int result;
165
166         result = SMB_VFS_NEXT_RMDIR(handle, smb_fname);
167
168         if (lp_syslog() > 0) {
169                 syslog(audit_syslog_priority(handle), "rmdir %s %s%s\n",
170                        smb_fname->base_name,
171                        (result < 0) ? "failed: " : "",
172                        (result < 0) ? strerror(errno) : "");
173         }
174         DEBUG(0, ("vfs_extd_audit: rmdir %s %s %s\n",
175                smb_fname->base_name,
176                (result < 0) ? "failed: " : "",
177                (result < 0) ? strerror(errno) : ""));
178
179         return result;
180 }
181
182 static int audit_open(vfs_handle_struct *handle,
183                       struct smb_filename *smb_fname, files_struct *fsp,
184                       int flags, mode_t mode)
185 {
186         int result;
187
188         result = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
189
190         if (lp_syslog() > 0) {
191                 syslog(audit_syslog_priority(handle), "open %s (fd %d) %s%s%s\n",
192                        smb_fname->base_name, result,
193                        ((flags & O_WRONLY) || (flags & O_RDWR)) ? "for writing " : "",
194                        (result < 0) ? "failed: " : "",
195                        (result < 0) ? strerror(errno) : "");
196         }
197         DEBUG(2, ("vfs_extd_audit: open %s %s %s\n",
198                smb_fname_str_dbg(smb_fname),
199                (result < 0) ? "failed: " : "",
200                (result < 0) ? strerror(errno) : ""));
201
202         return result;
203 }
204
205 static int audit_close(vfs_handle_struct *handle, files_struct *fsp)
206 {
207         int result;
208
209         result = SMB_VFS_NEXT_CLOSE(handle, fsp);
210
211         if (lp_syslog() > 0) {
212                 syslog(audit_syslog_priority(handle), "close fd %d %s%s\n",
213                        fsp->fh->fd,
214                        (result < 0) ? "failed: " : "",
215                        (result < 0) ? strerror(errno) : "");
216         }
217         DEBUG(2, ("vfs_extd_audit: close fd %d %s %s\n",
218                fsp->fh->fd,
219                (result < 0) ? "failed: " : "",
220                (result < 0) ? strerror(errno) : ""));
221
222         return result;
223 }
224
225 static int audit_rename(vfs_handle_struct *handle,
226                         const struct smb_filename *smb_fname_src,
227                         const struct smb_filename *smb_fname_dst)
228 {
229         int result;
230
231         result = SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst);
232
233         if (lp_syslog() > 0) {
234                 syslog(audit_syslog_priority(handle), "rename %s -> %s %s%s\n",
235                        smb_fname_src->base_name,
236                        smb_fname_dst->base_name,
237                        (result < 0) ? "failed: " : "",
238                        (result < 0) ? strerror(errno) : "");
239         }
240         DEBUG(1, ("vfs_extd_audit: rename old: %s newname: %s  %s %s\n",
241                 smb_fname_str_dbg(smb_fname_src),
242                 smb_fname_str_dbg(smb_fname_dst),
243                (result < 0) ? "failed: " : "",
244                (result < 0) ? strerror(errno) : ""));
245
246         return result;
247 }
248
249 static int audit_unlink(vfs_handle_struct *handle,
250                         const struct smb_filename *smb_fname)
251 {
252         int result;
253
254         result = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
255
256         if (lp_syslog() > 0) {
257                 syslog(audit_syslog_priority(handle), "unlink %s %s%s\n",
258                        smb_fname->base_name,
259                        (result < 0) ? "failed: " : "",
260                        (result < 0) ? strerror(errno) : "");
261         }
262         DEBUG(0, ("vfs_extd_audit: unlink %s %s %s\n",
263                smb_fname_str_dbg(smb_fname),
264                (result < 0) ? "failed: " : "",
265                (result < 0) ? strerror(errno) : ""));
266
267         return result;
268 }
269
270 static int audit_chmod(vfs_handle_struct *handle, const char *path, mode_t mode)
271 {
272         int result;
273
274         result = SMB_VFS_NEXT_CHMOD(handle, path, mode);
275
276         if (lp_syslog() > 0) {
277                 syslog(audit_syslog_priority(handle), "chmod %s mode 0x%x %s%s\n",
278                        path, mode,
279                        (result < 0) ? "failed: " : "",
280                        (result < 0) ? strerror(errno) : "");
281         }
282         DEBUG(1, ("vfs_extd_audit: chmod %s mode 0x%x %s %s\n",
283                path, (unsigned int)mode,
284                (result < 0) ? "failed: " : "",
285                (result < 0) ? strerror(errno) : ""));
286
287         return result;
288 }
289
290 static int audit_chmod_acl(vfs_handle_struct *handle, const char *path, mode_t mode)
291 {
292         int result;
293
294         result = SMB_VFS_NEXT_CHMOD_ACL(handle, path, mode);
295
296         if (lp_syslog() > 0) {
297                 syslog(audit_syslog_priority(handle), "chmod_acl %s mode 0x%x %s%s\n",
298                        path, mode,
299                        (result < 0) ? "failed: " : "",
300                        (result < 0) ? strerror(errno) : "");
301         }
302         DEBUG(1, ("vfs_extd_audit: chmod_acl %s mode 0x%x %s %s\n",
303                 path, (unsigned int)mode,
304                (result < 0) ? "failed: " : "",
305                (result < 0) ? strerror(errno) : ""));
306
307         return result;
308 }
309
310 static int audit_fchmod(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
311 {
312         int result;
313
314         result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
315
316         if (lp_syslog() > 0) {
317                 syslog(audit_syslog_priority(handle), "fchmod %s mode 0x%x %s%s\n",
318                        fsp->fsp_name->base_name, mode,
319                        (result < 0) ? "failed: " : "",
320                        (result < 0) ? strerror(errno) : "");
321         }
322         DEBUG(1, ("vfs_extd_audit: fchmod %s mode 0x%x %s %s",
323                fsp_str_dbg(fsp), (unsigned int)mode,
324                (result < 0) ? "failed: " : "",
325                (result < 0) ? strerror(errno) : ""));
326
327         return result;
328 }
329
330 static int audit_fchmod_acl(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
331 {
332         int result;
333
334         result = SMB_VFS_NEXT_FCHMOD_ACL(handle, fsp, mode);
335
336         if (lp_syslog() > 0) {
337                 syslog(audit_syslog_priority(handle), "fchmod_acl %s mode 0x%x %s%s\n",
338                        fsp->fsp_name->base_name, mode,
339                        (result < 0) ? "failed: " : "",
340                        (result < 0) ? strerror(errno) : "");
341         }
342         DEBUG(1, ("vfs_extd_audit: fchmod_acl %s mode 0x%x %s %s",
343                 fsp_str_dbg(fsp),  (unsigned int)mode,
344                (result < 0) ? "failed: " : "",
345                (result < 0) ? strerror(errno) : ""));
346
347         return result;
348 }
349
350 static struct vfs_fn_pointers vfs_extd_audit_fns = {
351         .connect_fn = audit_connect,
352         .disconnect_fn = audit_disconnect,
353         .opendir_fn = audit_opendir,
354         .mkdir_fn = audit_mkdir,
355         .rmdir_fn = audit_rmdir,
356         .open_fn = audit_open,
357         .close_fn = audit_close,
358         .rename_fn = audit_rename,
359         .unlink_fn = audit_unlink,
360         .chmod_fn = audit_chmod,
361         .fchmod_fn = audit_fchmod,
362         .chmod_acl_fn = audit_chmod_acl,
363         .fchmod_acl_fn = audit_fchmod_acl,
364 };
365
366 static_decl_vfs;
367 NTSTATUS vfs_extd_audit_init(void)
368 {
369         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
370                                         "extd_audit", &vfs_extd_audit_fns);
371         
372         if (!NT_STATUS_IS_OK(ret))
373                 return ret;
374
375         vfs_extd_audit_debug_level = debug_add_class("extd_audit");
376         if (vfs_extd_audit_debug_level == -1) {
377                 vfs_extd_audit_debug_level = DBGC_VFS;
378                 DEBUG(0, ("vfs_extd_audit: Couldn't register custom debugging class!\n"));
379         } else {
380                 DEBUG(10, ("vfs_extd_audit: Debug class number of 'extd_audit': %d\n", vfs_extd_audit_debug_level));
381         }
382         
383         return ret;
384 }