vfs_extd_audit: support real dirfsps in audit_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 int audit_mkdirat(vfs_handle_struct *handle,
191                         struct files_struct *dirfsp,
192                         const struct smb_filename *smb_fname,
193                         mode_t mode)
194 {
195         struct smb_filename *full_fname = NULL;
196         int result;
197
198         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
199                                                   dirfsp,
200                                                   smb_fname);
201         if (full_fname == NULL) {
202                 errno = ENOMEM;
203                 return -1;
204         }
205
206         result = SMB_VFS_NEXT_MKDIRAT(handle,
207                         dirfsp,
208                         smb_fname,
209                         mode);
210
211         if (lp_syslog() > 0) {
212                 syslog(audit_syslog_priority(handle), "mkdirat %s %s%s\n",
213                        full_fname->base_name,
214                        (result < 0) ? "failed: " : "",
215                        (result < 0) ? strerror(errno) : "");
216         }
217         DEBUG(0, ("vfs_extd_audit: mkdirat %s %s %s\n",
218                full_fname->base_name,
219                (result < 0) ? "failed: " : "",
220                (result < 0) ? strerror(errno) : ""));
221
222         TALLOC_FREE(full_fname);
223         return result;
224 }
225
226 static int audit_openat(vfs_handle_struct *handle,
227                         const struct files_struct *dirfsp,
228                         const struct smb_filename *smb_fname,
229                         files_struct *fsp,
230                         int flags,
231                         mode_t mode)
232 {
233         int ret;
234
235         ret = SMB_VFS_NEXT_OPENAT(handle, dirfsp, smb_fname, fsp, flags, mode);
236
237         if (lp_syslog() > 0) {
238                 syslog(audit_syslog_priority(handle),
239                        "openat %s/%s (fd %d) %s%s%s\n",
240                        smb_fname_str_dbg(fsp->fsp_name),
241                        smb_fname->base_name,
242                        ret,
243                        ((flags & O_WRONLY) || (flags & O_RDWR)) ?
244                        "for writing " : "",
245                        (ret < 0) ? "failed: " : "",
246                        (ret < 0) ? strerror(errno) : "");
247         }
248         DEBUG(2, ("vfs_extd_audit: open %s/%s %s %s\n",
249                smb_fname_str_dbg(fsp->fsp_name),
250                smb_fname_str_dbg(smb_fname),
251                (ret < 0) ? "failed: " : "",
252                (ret < 0) ? strerror(errno) : ""));
253
254         return ret;
255 }
256
257 static int audit_close(vfs_handle_struct *handle, files_struct *fsp)
258 {
259         int result;
260
261         result = SMB_VFS_NEXT_CLOSE(handle, fsp);
262
263         if (lp_syslog() > 0) {
264                 syslog(audit_syslog_priority(handle), "close fd %d %s%s\n",
265                        fsp_get_pathref_fd(fsp),
266                        (result < 0) ? "failed: " : "",
267                        (result < 0) ? strerror(errno) : "");
268         }
269         DEBUG(2, ("vfs_extd_audit: close fd %d %s %s\n",
270                fsp_get_pathref_fd(fsp),
271                (result < 0) ? "failed: " : "",
272                (result < 0) ? strerror(errno) : ""));
273
274         return result;
275 }
276
277 static int audit_renameat(vfs_handle_struct *handle,
278                         files_struct *srcfsp,
279                         const struct smb_filename *smb_fname_src,
280                         files_struct *dstfsp,
281                         const struct smb_filename *smb_fname_dst)
282 {
283         int result;
284
285         result = SMB_VFS_NEXT_RENAMEAT(handle,
286                         srcfsp,
287                         smb_fname_src,
288                         dstfsp,
289                         smb_fname_dst);
290
291         if (lp_syslog() > 0) {
292                 syslog(audit_syslog_priority(handle), "renameat %s -> %s %s%s\n",
293                        smb_fname_src->base_name,
294                        smb_fname_dst->base_name,
295                        (result < 0) ? "failed: " : "",
296                        (result < 0) ? strerror(errno) : "");
297         }
298         DEBUG(1, ("vfs_extd_audit: renameat old: %s newname: %s  %s %s\n",
299                 smb_fname_str_dbg(smb_fname_src),
300                 smb_fname_str_dbg(smb_fname_dst),
301                (result < 0) ? "failed: " : "",
302                (result < 0) ? strerror(errno) : ""));
303
304         return result;
305 }
306
307 static int audit_unlinkat(vfs_handle_struct *handle,
308                         struct files_struct *dirfsp,
309                         const struct smb_filename *smb_fname,
310                         int flags)
311 {
312         int result;
313
314         result = SMB_VFS_NEXT_UNLINKAT(handle,
315                         dirfsp,
316                         smb_fname,
317                         flags);
318
319         if (lp_syslog() > 0) {
320                 syslog(audit_syslog_priority(handle), "unlinkat %s %s%s\n",
321                        smb_fname->base_name,
322                        (result < 0) ? "failed: " : "",
323                        (result < 0) ? strerror(errno) : "");
324         }
325         DBG_ERR("unlinkat %s %s %s\n",
326                smb_fname_str_dbg(smb_fname),
327                (result < 0) ? "failed: " : "",
328                (result < 0) ? strerror(errno) : "");
329
330         return result;
331 }
332
333 static int audit_chmod(vfs_handle_struct *handle,
334                         const struct smb_filename *smb_fname,
335                         mode_t mode)
336 {
337         int result;
338
339         result = SMB_VFS_NEXT_CHMOD(handle, smb_fname, mode);
340
341         if (lp_syslog() > 0) {
342                 syslog(audit_syslog_priority(handle), "chmod %s mode 0x%x %s%s\n",
343                        smb_fname->base_name, mode,
344                        (result < 0) ? "failed: " : "",
345                        (result < 0) ? strerror(errno) : "");
346         }
347         DEBUG(1, ("vfs_extd_audit: chmod %s mode 0x%x %s %s\n",
348                smb_fname->base_name, (unsigned int)mode,
349                (result < 0) ? "failed: " : "",
350                (result < 0) ? strerror(errno) : ""));
351
352         return result;
353 }
354
355 static int audit_fchmod(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
356 {
357         int result;
358
359         result = SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
360
361         if (lp_syslog() > 0) {
362                 syslog(audit_syslog_priority(handle), "fchmod %s mode 0x%x %s%s\n",
363                        fsp->fsp_name->base_name, mode,
364                        (result < 0) ? "failed: " : "",
365                        (result < 0) ? strerror(errno) : "");
366         }
367         DEBUG(1, ("vfs_extd_audit: fchmod %s mode 0x%x %s %s",
368                fsp_str_dbg(fsp), (unsigned int)mode,
369                (result < 0) ? "failed: " : "",
370                (result < 0) ? strerror(errno) : ""));
371
372         return result;
373 }
374
375 static struct vfs_fn_pointers vfs_extd_audit_fns = {
376         .connect_fn = audit_connect,
377         .disconnect_fn = audit_disconnect,
378         .mkdirat_fn = audit_mkdirat,
379         .openat_fn = audit_openat,
380         .close_fn = audit_close,
381         .renameat_fn = audit_renameat,
382         .unlinkat_fn = audit_unlinkat,
383         .chmod_fn = audit_chmod,
384         .fchmod_fn = audit_fchmod,
385 };
386
387 static_decl_vfs;
388 NTSTATUS vfs_extd_audit_init(TALLOC_CTX *ctx)
389 {
390         NTSTATUS ret = smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
391                                         "extd_audit", &vfs_extd_audit_fns);
392         
393         if (!NT_STATUS_IS_OK(ret))
394                 return ret;
395
396         vfs_extd_audit_debug_level = debug_add_class("extd_audit");
397         if (vfs_extd_audit_debug_level == -1) {
398                 vfs_extd_audit_debug_level = DBGC_VFS;
399                 DEBUG(0, ("vfs_extd_audit: Couldn't register custom debugging class!\n"));
400         } else {
401                 DEBUG(10, ("vfs_extd_audit: Debug class number of 'extd_audit': %d\n", vfs_extd_audit_debug_level));
402         }
403         
404         return ret;
405 }