Added audit module that logs info to smbd log file as well as syslog.
[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  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *  
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *  
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #include "config.h"
24 #include <stdio.h>
25 #include <sys/stat.h>
26 #ifdef HAVE_UTIME_H
27 #include <utime.h>
28 #endif
29 #ifdef HAVE_DIRENT_H
30 #include <dirent.h>
31 #endif
32 #include <syslog.h>
33 #ifdef HAVE_FCNTL_H
34 #include <fcntl.h>
35 #endif
36 #include <errno.h>
37 #include <string.h>
38 #include <includes.h>
39 #include <vfs.h>
40
41 #ifndef SYSLOG_FACILITY
42 #define SYSLOG_FACILITY   LOG_USER
43 #endif
44
45 #ifndef SYSLOG_PRIORITY
46 #define SYSLOG_PRIORITY   LOG_NOTICE
47 #endif
48
49 /* Function prototypes */
50
51 static int audit_connect(struct connection_struct *conn, const char *svc, const char *user);
52 static void audit_disconnect(struct connection_struct *conn);
53 static DIR *audit_opendir(struct connection_struct *conn, const char *fname);
54 static int audit_mkdir(struct connection_struct *conn, const char *path, mode_t mode);
55 static int audit_rmdir(struct connection_struct *conn, const char *path);
56 static int audit_open(struct connection_struct *conn, const char *fname, int flags, mode_t mode);
57 static int audit_close(struct files_struct *fsp, int fd);
58 static int audit_rename(struct connection_struct *conn, const char *old, const char *new);
59 static int audit_unlink(struct connection_struct *conn, const char *path);
60 static int audit_chmod(struct connection_struct *conn, const char *path, mode_t mode);
61 static int audit_chmod_acl(struct connection_struct *conn, const char *name, mode_t mode);
62 static int audit_fchmod(struct files_struct *fsp, int fd, mode_t mode);
63 static int audit_fchmod_acl(struct files_struct *fsp, int fd, mode_t mode);
64
65 /* VFS operations */
66
67 static struct vfs_ops default_vfs_ops;   /* For passthrough operation */
68 static struct smb_vfs_handle_struct *audit_handle;
69
70 static vfs_op_tuple audit_ops[] = {
71     
72         /* Disk operations */
73
74         {audit_connect,         SMB_VFS_OP_CONNECT,     SMB_VFS_LAYER_LOGGER},
75         {audit_disconnect,      SMB_VFS_OP_DISCONNECT,  SMB_VFS_LAYER_LOGGER},
76
77         /* Directory operations */
78
79         {audit_opendir,         SMB_VFS_OP_OPENDIR,     SMB_VFS_LAYER_LOGGER},
80         {audit_mkdir,           SMB_VFS_OP_MKDIR,       SMB_VFS_LAYER_LOGGER},
81         {audit_rmdir,           SMB_VFS_OP_RMDIR,       SMB_VFS_LAYER_LOGGER},
82
83         /* File operations */
84
85         {audit_open,            SMB_VFS_OP_OPEN,        SMB_VFS_LAYER_LOGGER},
86         {audit_close,           SMB_VFS_OP_CLOSE,       SMB_VFS_LAYER_LOGGER},
87         {audit_rename,          SMB_VFS_OP_RENAME,      SMB_VFS_LAYER_LOGGER},
88         {audit_unlink,          SMB_VFS_OP_UNLINK,      SMB_VFS_LAYER_LOGGER},
89         {audit_chmod,           SMB_VFS_OP_CHMOD,       SMB_VFS_LAYER_LOGGER},
90         {audit_fchmod,          SMB_VFS_OP_FCHMOD,      SMB_VFS_LAYER_LOGGER},
91         {audit_chmod_acl,       SMB_VFS_OP_CHMOD_ACL,   SMB_VFS_LAYER_LOGGER},
92         {audit_fchmod_acl,      SMB_VFS_OP_FCHMOD_ACL,  SMB_VFS_LAYER_LOGGER},
93         
94         /* Finish VFS operations definition */
95         
96         {NULL,                  SMB_VFS_OP_NOOP,        SMB_VFS_LAYER_NOOP}
97 };
98
99 /* VFS initialisation function.  Return vfs_op_tuple array back to SAMBA. */
100
101 vfs_op_tuple *vfs_init(int *vfs_version, struct vfs_ops *def_vfs_ops, 
102                         struct smb_vfs_handle_struct *vfs_handle)
103 {
104         *vfs_version = SMB_VFS_INTERFACE_VERSION;
105         memcpy(&default_vfs_ops, def_vfs_ops, sizeof(struct vfs_ops));
106         
107         audit_handle = vfs_handle;
108
109         openlog("smbd_audit", LOG_PID, SYSLOG_FACILITY);
110         syslog(SYSLOG_PRIORITY, "VFS_INIT: vfs_ops loaded\n");
111
112         return audit_ops;
113 }
114
115 /* VFS finalization function. */
116
117 void vfs_done(connection_struct *conn)
118 {
119         syslog(SYSLOG_PRIORITY, "VFS_DONE: vfs module unloaded\n");
120 }
121
122 /* Implementation of vfs_ops.  Pass everything on to the default
123    operation but log event first. */
124
125 static int audit_connect(struct connection_struct *conn, const char *svc, const char *user)
126 {
127         syslog(SYSLOG_PRIORITY, "connect to service %s by user %s\n", 
128                svc, user);
129         DEBUG(10, ("Connected to service %s as user %s\n",
130                svc, user));
131
132         return default_vfs_ops.connect(conn, svc, user);
133 }
134
135 static void audit_disconnect(struct connection_struct *conn)
136 {
137         syslog(SYSLOG_PRIORITY, "disconnected\n");
138         DEBUG(10, ("Disconnected from VFS module extd_audit\n"));
139
140         default_vfs_ops.disconnect(conn);
141 }
142
143 static DIR *audit_opendir(struct connection_struct *conn, const char *fname)
144 {
145         DIR *result = default_vfs_ops.opendir(conn, fname);
146
147         syslog(SYSLOG_PRIORITY, "opendir %s %s%s\n",
148                fname,
149                (result == NULL) ? "failed: " : "",
150                (result == NULL) ? strerror(errno) : "");
151         DEBUG(1, ("vfs_extd_audit: opendir %s %s %s",
152                fname,
153                (result == NULL) ? "failed: " : "",
154                (result == NULL) ? strerror(errno) : ""));
155
156         return result;
157 }
158
159 static int audit_mkdir(struct connection_struct *conn, const char *path, mode_t mode)
160 {
161         int result = default_vfs_ops.mkdir(conn, path, mode);
162
163         syslog(SYSLOG_PRIORITY, "mkdir %s %s%s\n", 
164                path,
165                (result < 0) ? "failed: " : "",
166                (result < 0) ? strerror(errno) : "");
167         DEBUG(0, ("vfs_extd_audit: mkdir %s %s %s\n",
168                path,
169                (result < 0) ? "failed: " : "",
170                (result < 0) ? strerror(errno) : ""));
171
172         return result;
173 }
174
175 static int audit_rmdir(struct connection_struct *conn, const char *path)
176 {
177         int result = default_vfs_ops.rmdir(conn, path);
178
179         syslog(SYSLOG_PRIORITY, "rmdir %s %s%s\n", 
180                path, 
181                (result < 0) ? "failed: " : "",
182                (result < 0) ? strerror(errno) : "");
183         DEBUG(0, ("vfs_extd_audit: rmdir %s %s %s\n",
184                path,
185                (result < 0) ? "failed: " : "",
186                (result < 0) ? strerror(errno) : ""));
187
188         return result;
189 }
190
191 static int audit_open(struct connection_struct *conn, const char *fname, int flags, mode_t mode)
192 {
193         int result = default_vfs_ops.open(conn, fname, flags, mode);
194
195         syslog(SYSLOG_PRIORITY, "open %s (fd %d) %s%s%s\n", 
196                fname, result,
197                ((flags & O_WRONLY) || (flags & O_RDWR)) ? "for writing " : "", 
198                (result < 0) ? "failed: " : "",
199                (result < 0) ? strerror(errno) : "");
200         DEBUG(2, ("vfs_extd_audit: open %s %s %s\n",
201                fname,
202                (result < 0) ? "failed: " : "",
203                (result < 0) ? strerror(errno) : ""));
204
205         return result;
206 }
207
208 static int audit_close(struct files_struct *fsp, int fd)
209 {
210         int result = default_vfs_ops.close(fsp, fd);
211
212         syslog(SYSLOG_PRIORITY, "close fd %d %s%s\n",
213                fd,
214                (result < 0) ? "failed: " : "",
215                (result < 0) ? strerror(errno) : "");
216         DEBUG(2, ("vfs_extd_audit: close fd %d %s %s\n",
217                fd,
218                (result < 0) ? "failed: " : "",
219                (result < 0) ? strerror(errno) : ""));
220
221         return result;
222 }
223
224 static int audit_rename(struct connection_struct *conn, const char *old, const char *new)
225 {
226         int result = default_vfs_ops.rename(conn, old, new);
227
228         syslog(SYSLOG_PRIORITY, "rename %s -> %s %s%s\n",
229                old, new,
230                (result < 0) ? "failed: " : "",
231                (result < 0) ? strerror(errno) : "");
232         DEBUG(1, ("vfs_extd_audit: rename old: %s new: %s  %s %s\n",
233                old, new,
234                (result < 0) ? "failed: " : "",
235                (result < 0) ? strerror(errno) : ""));
236
237         return result;    
238 }
239
240 static int audit_unlink(struct connection_struct *conn, const char *path)
241 {
242         int result = default_vfs_ops.unlink(conn, path);
243
244         syslog(SYSLOG_PRIORITY, "unlink %s %s%s\n",
245                path,
246                (result < 0) ? "failed: " : "",
247                (result < 0) ? strerror(errno) : "");
248         DEBUG(0, ("vfs_extd_audit: unlink %s %s %s\n",
249                path,
250                (result < 0) ? "failed: " : "",
251                (result < 0) ? strerror(errno) : ""));
252
253         return result;
254 }
255
256 static int audit_chmod(struct connection_struct *conn, const char *path, mode_t mode)
257 {
258         int result = default_vfs_ops.chmod(conn, path, mode);
259
260         syslog(SYSLOG_PRIORITY, "chmod %s mode 0x%x %s%s\n",
261                path, mode,
262                (result < 0) ? "failed: " : "",
263                (result < 0) ? strerror(errno) : "");
264         DEBUG(1, ("vfs_extd_audit: chmod %s mode 0x%x %s %s\n",
265                path, mode,
266                (result < 0) ? "failed: " : "",
267                (result < 0) ? strerror(errno) : ""));
268
269         return result;
270 }
271
272 static int audit_chmod_acl(struct connection_struct *conn, const char *path, mode_t mode)
273 {
274         int result = default_vfs_ops.chmod_acl(conn, path, mode);
275
276         syslog(SYSLOG_PRIORITY, "chmod_acl %s mode 0x%x %s%s\n",
277                path, mode,
278                (result < 0) ? "failed: " : "",
279                (result < 0) ? strerror(errno) : "");
280         DEBUG(1, ("vfs_extd_audit: chmod_acl %s mode 0x%x %s %s\n",
281                 path, mode,
282                (result < 0) ? "failed: " : "",
283                (result < 0) ? strerror(errno) : ""));
284
285         return result;
286 }
287
288 static int audit_fchmod(struct files_struct *fsp, int fd, mode_t mode)
289 {
290         int result = default_vfs_ops.fchmod(fsp, fd, mode);
291
292         syslog(SYSLOG_PRIORITY, "fchmod %s mode 0x%x %s%s\n",
293                fsp->fsp_name, mode,
294                (result < 0) ? "failed: " : "",
295                (result < 0) ? strerror(errno) : "");
296         DEBUG(1, ("vfs_extd_audit: fchmod %s mode 0x%x %s %s",
297                fsp->fsp_name,  mode,
298                (result < 0) ? "failed: " : "",
299                (result < 0) ? strerror(errno) : ""));
300
301         return result;
302 }
303
304 static int audit_fchmod_acl(struct files_struct *fsp, int fd, mode_t mode)
305 {
306         int result = default_vfs_ops.fchmod_acl(fsp, fd, mode);
307
308         syslog(SYSLOG_PRIORITY, "fchmod_acl %s mode 0x%x %s%s\n",
309                fsp->fsp_name, mode,
310                (result < 0) ? "failed: " : "",
311                (result < 0) ? strerror(errno) : "");
312         DEBUG(1, ("vfs_extd_audit: fchmod_acl %s mode 0x%x %s %s",
313                fsp->fsp_name,  mode,
314                (result < 0) ? "failed: " : "",
315                (result < 0) ? strerror(errno) : ""));
316
317         return result;
318 }