2 * traffic-analyzer VFS module. Measure the smb traffic users create
5 * Copyright (C) Holger Hetterich, 2008
6 * Copyright (C) Jeremy Allison, 2008
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 3 of the License, or
11 * (at your option) any later version.
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.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 /* abstraction for the send_over_network function */
25 enum sock_type
{INTERNET_SOCKET
= 0, UNIX_DOMAIN_SOCKET
};
27 #define LOCAL_PATHNAME "/var/tmp/stadsocket"
29 extern userdom_struct current_user_info
;
31 static int vfs_smb_traffic_analyzer_debug_level
= DBGC_VFS
;
33 static enum sock_type
smb_traffic_analyzer_connMode(vfs_handle_struct
*handle
)
35 connection_struct
*conn
= handle
->conn
;
37 Mode
=lp_parm_const_string(SNUM(conn
), "smb_traffic_analyzer","mode", \
39 if (strstr(Mode
,"unix_domain_socket")) {
40 return UNIX_DOMAIN_SOCKET
;
42 return INTERNET_SOCKET
;
47 /* Connect to an internet socket */
49 static int smb_traffic_analyzer_connect_inet_socket(vfs_handle_struct
*handle
,
50 const char *name
, uint16_t port
)
52 /* Create a streaming Socket */
54 struct addrinfo hints
;
55 struct addrinfo
*ailist
= NULL
;
56 struct addrinfo
*res
= NULL
;
60 /* By default make sure it supports TCP. */
61 hints
.ai_socktype
= SOCK_STREAM
;
62 hints
.ai_flags
= AI_ADDRCONFIG
;
64 ret
= getaddrinfo(name
,
70 DEBUG(3,("smb_traffic_analyzer_connect_inet_socket: "
71 "getaddrinfo failed for name %s [%s]\n",
77 DEBUG(3,("smb_traffic_analyzer: Internet socket mode. Hostname: %s,"
78 "Port: %i\n", name
, port
));
80 for (res
= ailist
; res
; res
= res
->ai_next
) {
81 struct sockaddr_storage ss
;
83 if (!res
->ai_addr
|| res
->ai_addrlen
== 0) {
88 memcpy(&ss
, res
->ai_addr
, res
->ai_addrlen
);
90 sockfd
= open_socket_out(SOCK_STREAM
, &ss
, port
, 10000);
101 DEBUG(1, ("smb_traffic_analyzer: unable to create "
102 "socket, error is %s",
110 /* Connect to a unix domain socket */
112 static int smb_traffic_analyzer_connect_unix_socket(vfs_handle_struct
*handle
,
115 /* Create the socket to stad */
117 struct sockaddr_un remote
;
119 DEBUG(7, ("smb_traffic_analyzer_connect_unix_socket: "
120 "Unix domain socket mode. Using %s\n",
123 if ((sock
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1) {
124 DEBUG(1, ("smb_traffic_analyzer_connect_unix_socket: "
125 "Couldn't create socket, "
126 "make sure stad is running!\n"));
129 remote
.sun_family
= AF_UNIX
;
130 strlcpy(remote
.sun_path
, name
,
131 sizeof(remote
.sun_path
));
132 len
=strlen(remote
.sun_path
) + sizeof(remote
.sun_family
);
133 if (connect(sock
, (struct sockaddr
*)&remote
, len
) == -1 ) {
134 DEBUG(1, ("smb_traffic_analyzer_connect_unix_socket: "
135 "Could not connect to "
136 "socket, make sure\nstad is running!\n"));
143 /* Private data allowing shared connection sockets. */
145 struct refcounted_sock
{
146 struct refcounted_sock
*next
, *prev
;
150 unsigned int ref_count
;
153 /* Send data over a socket */
155 static void smb_traffic_analyzer_send_data(vfs_handle_struct
*handle
,
157 const char *file_name
,
160 struct refcounted_sock
*rf_sock
= NULL
;
163 struct tm
*tm
= NULL
;
166 const char *username
= NULL
;
167 const char *anon_prefix
= NULL
;
170 SMB_VFS_HANDLE_GET_DATA(handle
, rf_sock
, struct refcounted_sock
, return);
172 if (rf_sock
== NULL
|| rf_sock
->sock
== -1) {
173 DEBUG(1, ("smb_traffic_analyzer_send_data: socket is "
179 tv_sec
= convert_timespec_to_time_t(convert_timeval_to_timespec(tv
));
180 tm
= localtime(&tv_sec
);
184 seconds
=(float) (tv
.tv_usec
/ 1000);
186 /* check if anonymization is required */
188 anon_prefix
=lp_parm_const_string(SNUM(handle
->conn
),"smb_traffic_analyzer",\
189 "anonymize_prefix", NULL
);
190 if (anon_prefix
!=NULL
) {
191 username
= talloc_asprintf(talloc_tos(),
194 str_checksum(get_current_username()));
196 username
= get_current_username();
202 str
= talloc_asprintf(talloc_tos(),
203 "V1,%u,\"%s\",\"%s\",\"%c\",\"%s\",\"%s\","
204 "\"%04d-%02d-%02d %02d:%02d:%02d.%03d\"\n",
205 (unsigned int)result
,
207 current_user_info
.domain
,
209 handle
->conn
->connectpath
,
225 DEBUG(10, ("smb_traffic_analyzer_send_data_socket: sending %s\n",
227 if (write_data(rf_sock
->sock
, str
, len
) != len
) {
228 DEBUG(1, ("smb_traffic_analyzer_send_data_socket: "
229 "error sending data to socket!\n"));
234 static struct refcounted_sock
*sock_list
;
236 static void smb_traffic_analyzer_free_data(void **pptr
)
238 struct refcounted_sock
*rf_sock
= *(struct refcounted_sock
**)pptr
;
239 if (rf_sock
== NULL
) {
242 rf_sock
->ref_count
--;
243 if (rf_sock
->ref_count
!= 0) {
246 if (rf_sock
->sock
!= -1) {
247 close(rf_sock
->sock
);
249 DLIST_REMOVE(sock_list
, rf_sock
);
250 TALLOC_FREE(rf_sock
);
253 static int smb_traffic_analyzer_connect(struct vfs_handle_struct
*handle
,
257 connection_struct
*conn
= handle
->conn
;
258 enum sock_type st
= smb_traffic_analyzer_connMode(handle
);
259 struct refcounted_sock
*rf_sock
= NULL
;
260 const char *name
= (st
== UNIX_DOMAIN_SOCKET
) ? LOCAL_PATHNAME
:
261 lp_parm_const_string(SNUM(conn
),
262 "smb_traffic_analyzer",
263 "host", "localhost");
264 uint16_t port
= (st
== UNIX_DOMAIN_SOCKET
) ? 0 :
265 atoi( lp_parm_const_string(SNUM(conn
),
266 "smb_traffic_analyzer", "port", "9430"));
268 /* Are we already connected ? */
269 for (rf_sock
= sock_list
; rf_sock
; rf_sock
= rf_sock
->next
) {
270 if (port
== rf_sock
->port
&&
271 (strcmp(name
, rf_sock
->name
) == 0)) {
276 /* If we're connected already, just increase the
277 * reference count. */
279 rf_sock
->ref_count
++;
281 /* New connection. */
282 rf_sock
= TALLOC_ZERO_P(NULL
, struct refcounted_sock
);
283 if (rf_sock
== NULL
) {
287 rf_sock
->name
= talloc_strdup(rf_sock
, name
);
288 if (rf_sock
->name
== NULL
) {
289 TALLOC_FREE(rf_sock
);
293 rf_sock
->port
= port
;
294 rf_sock
->ref_count
= 1;
296 if (st
== UNIX_DOMAIN_SOCKET
) {
297 rf_sock
->sock
= smb_traffic_analyzer_connect_unix_socket(handle
,
301 rf_sock
->sock
= smb_traffic_analyzer_connect_inet_socket(handle
,
305 if (rf_sock
->sock
== -1) {
306 TALLOC_FREE(rf_sock
);
309 DLIST_ADD(sock_list
, rf_sock
);
312 /* Store the private data. */
313 SMB_VFS_HANDLE_SET_DATA(handle
, rf_sock
, smb_traffic_analyzer_free_data
,
314 struct refcounted_sock
, return -1);
315 return SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
318 /* VFS Functions: write, read, pread, pwrite for now */
320 static ssize_t
smb_traffic_analyzer_read(vfs_handle_struct
*handle
, \
321 files_struct
*fsp
, void *data
, size_t n
)
325 result
= SMB_VFS_NEXT_READ(handle
, fsp
, data
, n
);
326 DEBUG(10, ("smb_traffic_analyzer_read: READ: %s\n", fsp
->fsp_name
));
328 smb_traffic_analyzer_send_data(handle
,
336 static ssize_t
smb_traffic_analyzer_pread(vfs_handle_struct
*handle
, \
337 files_struct
*fsp
, void *data
, size_t n
, SMB_OFF_T offset
)
341 result
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
343 DEBUG(10, ("smb_traffic_analyzer_pread: PREAD: %s\n", fsp
->fsp_name
));
345 smb_traffic_analyzer_send_data(handle
,
353 static ssize_t
smb_traffic_analyzer_write(vfs_handle_struct
*handle
, \
354 files_struct
*fsp
, const void *data
, size_t n
)
358 result
= SMB_VFS_NEXT_WRITE(handle
, fsp
, data
, n
);
360 DEBUG(10, ("smb_traffic_analyzer_write: WRITE: %s\n", fsp
->fsp_name
));
362 smb_traffic_analyzer_send_data(handle
,
369 static ssize_t
smb_traffic_analyzer_pwrite(vfs_handle_struct
*handle
, \
370 files_struct
*fsp
, const void *data
, size_t n
, SMB_OFF_T offset
)
374 result
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
376 DEBUG(10, ("smb_traffic_analyzer_pwrite: PWRITE: %s\n", fsp
->fsp_name
));
378 smb_traffic_analyzer_send_data(handle
,
385 /* VFS operations we use */
387 static vfs_op_tuple smb_traffic_analyzer_tuples
[] = {
389 {SMB_VFS_OP(smb_traffic_analyzer_connect
), SMB_VFS_OP_CONNECT
,
390 SMB_VFS_LAYER_LOGGER
},
391 {SMB_VFS_OP(smb_traffic_analyzer_read
), SMB_VFS_OP_READ
,
392 SMB_VFS_LAYER_LOGGER
},
393 {SMB_VFS_OP(smb_traffic_analyzer_pread
), SMB_VFS_OP_PREAD
,
394 SMB_VFS_LAYER_LOGGER
},
395 {SMB_VFS_OP(smb_traffic_analyzer_write
), SMB_VFS_OP_WRITE
,
396 SMB_VFS_LAYER_LOGGER
},
397 {SMB_VFS_OP(smb_traffic_analyzer_pwrite
), SMB_VFS_OP_PWRITE
,
398 SMB_VFS_LAYER_LOGGER
},
399 {SMB_VFS_OP(NULL
),SMB_VFS_OP_NOOP
,SMB_VFS_LAYER_NOOP
}
402 /* Module initialization */
404 NTSTATUS
vfs_smb_traffic_analyzer_init(void)
406 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, \
407 "smb_traffic_analyzer", smb_traffic_analyzer_tuples
);
409 if (!NT_STATUS_IS_OK(ret
)) {
413 vfs_smb_traffic_analyzer_debug_level
=
414 debug_add_class("smb_traffic_analyzer");
416 if (vfs_smb_traffic_analyzer_debug_level
== -1) {
417 vfs_smb_traffic_analyzer_debug_level
= DBGC_VFS
;
418 DEBUG(1, ("smb_traffic_analyzer_init: Couldn't register custom"
419 "debugging class!\n"));
421 DEBUG(3, ("smb_traffic_analyzer_init: Debug class number of"
422 "'smb_traffic_analyzer': %d\n", \
423 vfs_smb_traffic_analyzer_debug_level
));