s3: VFS: vfs_extd_audit. Implement mkdirat().
[samba.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 #ifdef LOG_AUTH
40                 { LOG_AUTH,             "AUTH" },
41 #endif
42 #ifdef LOG_AUTHPRIV
43                 { LOG_AUTHPRIV,         "AUTHPRIV" },
44 #endif
45 #ifdef LOG_AUDIT
46                 { LOG_AUDIT,            "AUDIT" },
47 #endif
48 #ifdef LOG_CONSOLE
49                 { LOG_CONSOLE,          "CONSOLE" },
50 #endif
51 #ifdef LOG_CRON
52                 { LOG_CRON,             "CRON" },
53 #endif
54 #ifdef LOG_DAEMON
55                 { LOG_DAEMON,           "DAEMON" },
56 #endif
57 #ifdef LOG_FTP
58                 { LOG_FTP,              "FTP" },
59 #endif
60 #ifdef LOG_INSTALL
61                 { LOG_INSTALL,          "INSTALL" },
62 #endif
63 #ifdef LOG_KERN
64                 { LOG_KERN,             "KERN" },
65 #endif
66 #ifdef LOG_LAUNCHD
67                 { LOG_LAUNCHD,          "LAUNCHD" },
68 #endif
69 #ifdef LOG_LFMT
70                 { LOG_LFMT,             "LFMT" },
71 #endif
72 #ifdef LOG_LPR
73                 { LOG_LPR,              "LPR" },
74 #endif
75 #ifdef LOG_MAIL
76                 { LOG_MAIL,             "MAIL" },
77 #endif
78 #ifdef LOG_MEGASAFE
79                 { LOG_MEGASAFE,         "MEGASAFE" },
80 #endif
81 #ifdef LOG_NETINFO
82                 { LOG_NETINFO,          "NETINFO" },
83 #endif
84 #ifdef LOG_NEWS
85                 { LOG_NEWS,             "NEWS" },
86 #endif
87 #ifdef LOG_NFACILITIES
88                 { LOG_NFACILITIES,      "NFACILITIES" },
89 #endif
90 #ifdef LOG_NTP
91                 { LOG_NTP,              "NTP" },
92 #endif
93 #ifdef LOG_RAS
94                 { LOG_RAS,              "RAS" },
95 #endif
96 #ifdef LOG_REMOTEAUTH
97                 { LOG_REMOTEAUTH,       "REMOTEAUTH" },
98 #endif
99 #ifdef LOG_SECURITY
100                 { LOG_SECURITY,         "SECURITY" },
101 #endif
102 #ifdef LOG_SYSLOG
103                 { LOG_SYSLOG,           "SYSLOG" },
104 #endif
105 #ifdef LOG_USER
106                 { LOG_USER,             "USER" },
107 #endif
108 #ifdef LOG_UUCP
109                 { LOG_UUCP,             "UUCP" },
110 #endif
111                 { LOG_LOCAL0,           "LOCAL0" },
112                 { LOG_LOCAL1,           "LOCAL1" },
113                 { LOG_LOCAL2,           "LOCAL2" },
114                 { LOG_LOCAL3,           "LOCAL3" },
115                 { LOG_LOCAL4,           "LOCAL4" },
116                 { LOG_LOCAL5,           "LOCAL5" },
117                 { LOG_LOCAL6,           "LOCAL6" },
118                 { LOG_LOCAL7,           "LOCAL7" },
119                 { -1,                   NULL }
120         };
121
122         int facility;
123
124         facility = lp_parm_enum(SNUM(handle->conn), "extd_audit", "facility", enum_log_facilities, LOG_USER);
125
126         return facility;
127 }
128
129
130 static int audit_syslog_priority(vfs_handle_struct *handle)
131 {
132         static const struct enum_list enum_log_priorities[] = {
133                 { LOG_EMERG, "EMERG" },
134                 { LOG_ALERT, "ALERT" },
135                 { LOG_CRIT, "CRIT" },
136                 { LOG_ERR, "ERR" },
137                 { LOG_WARNING, "WARNING" },
138                 { LOG_NOTICE, "NOTICE" },
139                 { LOG_INFO, "INFO" },
140                 { LOG_DEBUG, "DEBUG" },
141                 { -1, NULL }
142         };
143
144         int priority;
145
146         priority = lp_parm_enum(SNUM(handle->conn), "extd_audit", "priority",
147                                 enum_log_priorities, LOG_NOTICE);
148         if (priority == -1) {
149                 priority = LOG_WARNING;
150         }
151
152         return priority;
153 }
154
155 /* Implementation of vfs_ops.  Pass everything on to the default
156    operation but log event first. */
157
158 static int audit_connect(vfs_handle_struct *handle, const char *svc, const char *user)
159 {
160         int result = SMB_VFS_NEXT_CONNECT(handle, svc, user);
161
162         if (result < 0) {
163                 return result;
164         }
165
166         openlog("smbd_audit", LOG_PID, audit_syslog_facility(handle));
167
168         if (lp_syslog() > 0) {
169                 syslog(audit_syslog_priority(handle),
170                        "connect to service %s by user %s\n",
171                        svc, user);
172         }
173         DEBUG(10, ("Connected to service %s as user %s\n",
174                svc, user));
175
176         return 0;
177 }
178
179 static void audit_disconnect(vfs_handle_struct *handle)
180 {
181         if (lp_syslog() > 0) {
182                 syslog(audit_syslog_priority(handle), "disconnected\n");
183         }
184         DEBUG(10, ("Disconnected from VFS module extd_audit\n"));
185         SMB_VFS_NEXT_DISCONNECT(handle);
186
187         return;
188 }
189
190 static DIR *audit_opendir(vfs_handle_struct *handle,
191                         const struct smb_filename *smb_fname,
192                         const char *mask,
193                         uint32_t attr)
194 {
195         DIR *result;
196
197         result = SMB_VFS_NEXT_OPENDIR(handle, smb_fname, mask, attr);
198
199         if (lp_syslog() > 0) {
200                 syslog(audit_syslog_priority(handle), "opendir %s %s%s\n",
201                        smb_fname->base_name,
202                        (result == NULL) ? "failed: " : "",
203                        (result == NULL) ? strerror(errno) : "");
204         }
205         DEBUG(1, ("vfs_extd_audit: opendir %s %s %s\n",
206                smb_fname->base_name,
207                (result == NULL) ? "failed: " : "",
208                (result == NULL) ? strerror(errno) : ""));
209
210         return result;
211 }
212
213 static int audit_mkdir(vfs_handle_struct *handle,
214                         const struct smb_filename *smb_fname,
215                         mode_t mode)
216 {
217         int result;
218
219         result = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
220
221         if (lp_syslog() > 0) {
222                 syslog(audit_syslog_priority(handle), "mkdir %s %s%s\n",
223                        smb_fname->base_name,
224                        (result < 0) ? "failed: " : "",
225                        (result < 0) ? strerror(errno) : "");
226         }
227         DEBUG(0, ("vfs_extd_audit: mkdir %s %s %s\n",
228                smb_fname->base_name,
229                (result < 0) ? "failed: " : "",
230                (result < 0) ? strerror(errno) : ""));
231
232         return result;
233 }
234
235 static int audit_mkdirat(vfs_handle_struct *handle,
236                         struct files_struct *dirfsp,
237                         const struct smb_filename *smb_fname,
238                         mode_t mode)
239 {
240         int result;
241
242         result = SMB_VFS_NEXT_MKDIRAT(handle,
243                         dirfsp,
244                         smb_fname,
245                         mode);
246
247         if (lp_syslog() > 0) {
248                 syslog(audit_syslog_priority(handle), "mkdirat %s %s%s\n",
249                        smb_fname->base_name,
250                        (result < 0) ? "failed: " : "",
251                        (result < 0) ? strerror(errno) : "");
252         }
253         DEBUG(0, ("vfs_extd_audit: mkdirat %s %s %s\n",
254                smb_fname->base_name,
255                (result < 0) ? "failed: " : "",
256                (result < 0) ? strerror(errno) : ""));
257
258         return result;
259 }
260
261 static int audit_rmdir(vfs_handle_struct *handle,
262                         const struct smb_filename *smb_fname)
263 {
264         int result;
265
266         result = SMB_VFS_NEXT_RMDIR(handle, smb_fname);
267
268         if (lp_syslog() > 0) {
269                 syslog(audit_syslog_priority(handle), "rmdir %s %s%s\n",
270                        smb_fname->base_name,
271                        (result < 0) ? "failed: " : "",
272                        (result < 0) ? strerror(errno) : "");
273         }
274         DEBUG(0, ("vfs_extd_audit: rmdir %s %s %s\n",
275                smb_fname->base_name,
276                (result < 0) ? "failed: " : "",
277                (result < 0) ? strerror(errno) : ""));
278
279         return result;
280 }
281
282 static int audit_open(vfs_handle_struct *handle,
283                       struct smb_filename *smb_fname, files_struct *fsp,
284                       int flags, mode_t mode)
285 {
286         int result;
287
288         result = SMB_VFS_NEXT_OPEN(handle, smb_fname, fsp, flags, mode);
289
290         if (lp_syslog() > 0) {
291                 syslog(audit_syslog_priority(handle), "open %s (fd %d) %s%s%s\n",
292                        smb_fname->base_name, result,
293                        ((flags & O_WRONLY) || (flags & O_RDWR)) ? "for writing " : "",
294                        (result < 0) ? "failed: " : "",
295                        (result < 0) ? strerror(errno) : "");
296         }
297         DEBUG(2, ("vfs_extd_audit: open %s %s %s\n",
298                smb_fname_str_dbg(smb_fname),
299                (result < 0) ? "failed: " : "",
300                (result < 0) ? strerror(errno) : ""));
301
302         return result;
303 }
304
305 static int audit_close(vfs_handle_struct *handle, files_struct *fsp)
306 {
307         int result;
308
309         result = SMB_VFS_NEXT_CLOSE(handle, fsp);
310
311         if (lp_syslog() > 0) {
312                 syslog(audit_syslog_priority(handle), "close fd %d %s%s\n",
313                        fsp->fh->fd,
314                        (result < 0) ? "failed: " : "",
315                        (result < 0) ? strerror(errno) : "");
316         }
317         DEBUG(2, ("vfs_extd_audit: close fd %d %s %s\n",
318                fsp->fh->fd,
319                (result < 0) ? "failed: " : "",
320                (result < 0) ? strerror(errno) : ""));
321
322         return result;
323 }
324
325 static int audit_renameat(vfs_handle_struct *handle,
326                         files_struct *srcfsp,
327                         const struct smb_filename *smb_fname_src,
328                         files_struct *dstfsp,
329                         const struct smb_filename *smb_fname_dst)
330 {
331         int result;
332
333         result = SMB_VFS_NEXT_RENAMEAT(handle,
334                         srcfsp,
335                         smb_fname_src,
336                         dstfsp,
337                         smb_fname_dst);
338
339         if (lp_syslog() > 0) {
340                 syslog(audit_syslog_priority(handle), "renameat %s -> %s %s%s\n",
341                        smb_fname_src->base_name,
342                        smb_fname_dst->base_name,
343                        (result < 0) ? "failed: " : "",
344                        (result < 0) ? strerror(errno) : "");
345         }
346         DEBUG(1, ("vfs_extd_audit: renameat old: %s newname: %s  %s %s\n",
347                 smb_fname_str_dbg(smb_fname_src),
348                 smb_fname_str_dbg(smb_fname_dst),
349                (result < 0) ? "failed: " : "",
350                (result < 0) ? strerror(errno) : ""));
351
352         return result;
353 }
354
355 static int audit_unlink(vfs_handle_struct *handle,
356                         const struct smb_filename *smb_fname)
357 {
358         int result;
359
360         result = SMB_VFS_NEXT_UNLINK(handle, smb_fname);
361
362         if (lp_syslog() > 0) {
363                 syslog(audit_syslog_priority(handle), "unlink %s %s%s\n",
364                        smb_fname->base_name,
365                        (result < 0) ? "failed: " : "",
366                        (result < 0) ? strerror(errno) : "");
367         }
368         DEBUG(0, ("vfs_extd_audit: unlink %s %s %s\n",
369                smb_fname_str_dbg(smb_fname),
370                (result < 0) ? "failed: " : "",
371                (result < 0) ? strerror(errno) : ""));
372
373         return result;
374 }
375
376 static int audit_chmod(vfs_handle_struct *handle,
377                         const struct smb_filename *smb_fname,
378                         mode_t mode)
379 {
380         int result;
381
382         result = SMB_VFS_NEXT_CHMOD(handle, smb_fname, mode);
383
384         if (lp_syslog() > 0) {
385                 syslog(audit_syslog_priority(handle), "chmod %s mode 0x%x %s%s\n",
386                        smb_fname->base_name, mode,
387                        (result < 0) ? "failed: " : "",
388                        (result < 0) ? strerror(errno) : "");
389         }
390         DEBUG(1, ("vfs_extd_audit: chmod %s mode 0x%x %s %s\n",
391                smb_fname->base_name, (unsigned int)mode,
392                (result < 0) ? "failed: " : "",
393                (result < 0) ? strerror(errno) : ""));
394
395         return result;
396 }
397
398 static int audit_fchmod(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
399 {
400         int result;
401
402         result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
403
404         if (lp_syslog() > 0) {
405                 syslog(audit_syslog_priority(handle), "fchmod %s mode 0x%x %s%s\n",
406                        fsp->fsp_name->base_name, mode,
407                        (result < 0) ? "failed: " : "",
408                        (result < 0) ? strerror(errno) : "");
409         }
410         DEBUG(1, ("vfs_extd_audit: fchmod %s mode 0x%x %s %s",
411                fsp_str_dbg(fsp), (unsigned int)mode,
412                (result < 0) ? "failed: " : "",
413                (result < 0) ? strerror(errno) : ""));
414
415         return result;
416 }
417
418 static struct vfs_fn_pointers vfs_extd_audit_fns = {
419         .connect_fn = audit_connect,
420         .disconnect_fn = audit_disconnect,
421         .opendir_fn = audit_opendir,
422         .mkdir_fn = audit_mkdir,
423         .mkdirat_fn = audit_mkdirat,
424         .rmdir_fn = audit_rmdir,
425         .open_fn = audit_open,
426         .close_fn = audit_close,
427         .renameat_fn = audit_renameat,
428         .unlink_fn = audit_unlink,
429         .chmod_fn = audit_chmod,
430         .fchmod_fn = audit_fchmod,
431 };
432
433 static_decl_vfs;
434 NTSTATUS vfs_extd_audit_init(TALLOC_CTX *ctx)
435 {
436         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
437                                         "extd_audit", &vfs_extd_audit_fns);
438         
439         if (!NT_STATUS_IS_OK(ret))
440                 return ret;
441
442         vfs_extd_audit_debug_level = debug_add_class("extd_audit");
443         if (vfs_extd_audit_debug_level == -1) {
444                 vfs_extd_audit_debug_level = DBGC_VFS;
445                 DEBUG(0, ("vfs_extd_audit: Couldn't register custom debugging class!\n"));
446         } else {
447                 DEBUG(10, ("vfs_extd_audit: Debug class number of 'extd_audit': %d\n", vfs_extd_audit_debug_level));
448         }
449         
450         return ret;
451 }