2 * traffic-analyzer VFS module. Measure the smb traffic users create
5 * Copyright (C) Holger Hetterich, 2008-2010
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/>.
23 #include "smbd/smbd.h"
24 #include "../smbd/globals.h"
25 #include "../lib/crypto/crypto.h"
26 #include "vfs_smb_traffic_analyzer.h"
27 #include "../libcli/security/security.h"
29 #include "../librpc/gen_ndr/ndr_netlogon.h"
32 /* abstraction for the send_over_network function */
33 enum sock_type
{INTERNET_SOCKET
= 0, UNIX_DOMAIN_SOCKET
};
35 #define LOCAL_PATHNAME "/var/tmp/stadsocket"
37 static int vfs_smb_traffic_analyzer_debug_level
= DBGC_VFS
;
39 static enum sock_type
smb_traffic_analyzer_connMode(vfs_handle_struct
*handle
)
41 connection_struct
*conn
= handle
->conn
;
43 Mode
=lp_parm_const_string(SNUM(conn
), "smb_traffic_analyzer","mode", \
45 if (strstr(Mode
,"unix_domain_socket")) {
46 return UNIX_DOMAIN_SOCKET
;
48 return INTERNET_SOCKET
;
53 /* Connect to an internet socket */
54 static int smb_traffic_analyzer_connect_inet_socket(vfs_handle_struct
*handle
,
55 const char *name
, uint16_t port
)
57 /* Create a streaming Socket */
59 struct addrinfo hints
;
60 struct addrinfo
*ailist
= NULL
;
61 struct addrinfo
*res
= NULL
;
65 /* By default make sure it supports TCP. */
66 hints
.ai_socktype
= SOCK_STREAM
;
67 hints
.ai_flags
= AI_ADDRCONFIG
;
69 ret
= getaddrinfo(name
,
75 DEBUG(3,("smb_traffic_analyzer_connect_inet_socket: "
76 "getaddrinfo failed for name %s [%s]\n",
82 DEBUG(3,("smb_traffic_analyzer: Internet socket mode. Hostname: %s,"
83 "Port: %i\n", name
, port
));
85 for (res
= ailist
; res
; res
= res
->ai_next
) {
86 struct sockaddr_storage ss
;
89 if (!res
->ai_addr
|| res
->ai_addrlen
== 0) {
94 memcpy(&ss
, res
->ai_addr
, res
->ai_addrlen
);
96 status
= open_socket_out(&ss
, port
, 10000, &sockfd
);
97 if (NT_STATUS_IS_OK(status
)) {
103 freeaddrinfo(ailist
);
107 DEBUG(1, ("smb_traffic_analyzer: unable to create "
108 "socket, error is %s",
116 /* Connect to a unix domain socket */
117 static int smb_traffic_analyzer_connect_unix_socket(vfs_handle_struct
*handle
,
120 /* Create the socket to stad */
122 struct sockaddr_un remote
;
124 DEBUG(7, ("smb_traffic_analyzer_connect_unix_socket: "
125 "Unix domain socket mode. Using %s\n",
128 if ((sock
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1) {
129 DEBUG(1, ("smb_traffic_analyzer_connect_unix_socket: "
130 "Couldn't create socket, "
131 "make sure stad is running!\n"));
134 remote
.sun_family
= AF_UNIX
;
135 strlcpy(remote
.sun_path
, name
,
136 sizeof(remote
.sun_path
));
137 len
=strlen(remote
.sun_path
) + sizeof(remote
.sun_family
);
138 if (connect(sock
, (struct sockaddr
*)&remote
, len
) == -1 ) {
139 DEBUG(1, ("smb_traffic_analyzer_connect_unix_socket: "
140 "Could not connect to "
141 "socket, make sure\nstad is running!\n"));
148 /* Private data allowing shared connection sockets. */
149 struct refcounted_sock
{
150 struct refcounted_sock
*next
, *prev
;
154 unsigned int ref_count
;
159 * Encryption of a data block with AES
160 * TALLOC_CTX *ctx Talloc context to work on
161 * const char *akey 128bit key for the encryption
162 * const char *str Data buffer to encrypt, \0 terminated
163 * int *len Will be set to the length of the
164 * resulting data block
165 * The caller has to take care for the memory
166 * allocated on the context.
168 static char *smb_traffic_analyzer_encrypt( TALLOC_CTX
*ctx
,
169 const char *akey
, const char *str
, size_t *len
)
173 unsigned char filler
[17]= "................";
175 unsigned char crypted
[18];
176 if (akey
== NULL
) return NULL
;
177 samba_AES_set_encrypt_key((const unsigned char *) akey
, 128, &key
);
178 s1
= strlen(str
) / 16;
179 s2
= strlen(str
) % 16;
180 for (h
= 0; h
< s2
; h
++) *(filler
+h
)=*(str
+(s1
*16)+h
);
181 DEBUG(10, ("smb_traffic_analyzer_send_data_socket: created %s"
182 " as filling block.\n", filler
));
183 output
= talloc_array(ctx
, char, (s1
*16)+17 );
185 for (h
= 0; h
< s1
; h
++) {
186 samba_AES_encrypt((const unsigned char *) str
+(16*h
), crypted
, &key
);
187 for (d
= 0; d
<16; d
++) output
[d
+(16*h
)]=crypted
[d
];
189 samba_AES_encrypt( (const unsigned char *) str
+(16*h
), filler
, &key
);
190 for (d
= 0;d
< 16; d
++) output
[d
+(16*h
)]=*(filler
+d
);
196 * Create a v2 header.
197 * TALLLOC_CTX *ctx Talloc context to work on
198 * const char *state_flags State flag string
199 * int len length of the data block
201 static char *smb_traffic_analyzer_create_header( TALLOC_CTX
*ctx
,
202 const char *state_flags
, size_t data_len
)
204 char *header
= talloc_asprintf( ctx
, "V2.%s%017u",
205 state_flags
, (unsigned int) data_len
);
206 DEBUG(10, ("smb_traffic_analyzer_send_data_socket: created Header:\n"));
207 dump_data(10, (uint8_t *)header
, strlen(header
));
213 * Actually send header and data over the network
214 * char *header Header data
215 * char *data Data Block
216 * int dlength Length of data block
219 static void smb_traffic_analyzer_write_data( char *header
, char *data
,
220 int dlength
, int _socket
)
222 int len
= strlen(header
);
223 if (write_data( _socket
, header
, len
) != len
) {
224 DEBUG(1, ("smb_traffic_analyzer_send_data_socket: "
225 "error sending the header"
226 " over the socket!\n"));
228 DEBUG(10,("smb_traffic_analyzer_write_data: sending data:\n"));
229 dump_data( 10, (uint8_t *)data
, dlength
);
231 if (write_data( _socket
, data
, dlength
) != dlength
) {
232 DEBUG(1, ("smb_traffic_analyzer_write_data: "
233 "error sending crypted data to socket!\n"));
239 * Anonymize a string if required.
240 * TALLOC_CTX *ctx The talloc context to work on
241 * const char *str The string to anonymize
242 * vfs_handle_struct *handle The handle struct to work on
244 * Returns a newly allocated string, either the anonymized one,
245 * or a copy of const char *str. The caller has to take care for
246 * freeing the allocated memory.
248 static char *smb_traffic_analyzer_anonymize( TALLOC_CTX
*ctx
,
250 vfs_handle_struct
*handle
)
252 const char *total_anonymization
;
253 const char *anon_prefix
;
255 total_anonymization
=lp_parm_const_string(SNUM(handle
->conn
),
256 "smb_traffic_analyzer",
257 "total_anonymization", NULL
);
259 anon_prefix
=lp_parm_const_string(SNUM(handle
->conn
),
260 "smb_traffic_analyzer",
261 "anonymize_prefix", NULL
);
262 if (anon_prefix
!= NULL
) {
263 if (total_anonymization
!= NULL
) {
264 output
= talloc_asprintf(ctx
, "%s",
267 output
= talloc_asprintf(ctx
, "%s%i", anon_prefix
,
271 output
= talloc_asprintf(ctx
, "%s", str
);
279 * The marshalling function for protocol v2.
280 * TALLOC_CTX *ctx Talloc context to work on
281 * struct tm *tm tm struct for the timestamp
282 * int seconds milliseconds of the timestamp
283 * vfs_handle_struct *handle vfs_handle_struct
284 * char *username Name of the user
285 * int vfs_operation VFS operation identifier
286 * int count Number of the common data blocks
287 * [...] variable args data blocks taken from the individual
288 * VFS data structures
290 * Returns the complete data block to send. The caller has to
291 * take care for freeing the allocated buffer.
293 static char *smb_traffic_analyzer_create_string( TALLOC_CTX
*ctx
,
294 struct tm
*tm
, int seconds
, vfs_handle_struct
*handle
, \
295 char *username
, int vfs_operation
, int count
, ... )
301 char *common_data_count_str
= NULL
;
302 char *timestr
= NULL
;
304 char *usersid
= NULL
;
306 char *vfs_operation_str
= NULL
;
307 const char *service_name
= lp_const_servicename(handle
->conn
->params
->service
);
310 * first create the data that is transfered with any VFS op
311 * These are, in the following order:
312 *(0) number of data to come [6 in v2.0]
313 * 1.vfs_operation identifier
319 * 7.IP Addresss of client
323 * number of common data blocks to come,
324 * this is a #define in vfs_smb_traffic_anaylzer.h,
325 * it's length is known at compile time
327 common_data_count_str
= talloc_strdup( ctx
, SMBTA_COMMON_DATA_COUNT
);
328 /* vfs operation identifier */
329 vfs_operation_str
= talloc_asprintf( common_data_count_str
, "%i",
332 * Handle anonymization. In protocol v2, we have to anonymize
333 * both the SID and the username. The name is already
334 * anonymized if needed, by the calling function.
336 usersid
= dom_sid_string( common_data_count_str
,
337 &handle
->conn
->session_info
->security_token
->sids
[0]);
339 sidstr
= smb_traffic_analyzer_anonymize(
340 common_data_count_str
,
345 timestr
= talloc_asprintf( common_data_count_str
, \
346 "%04d-%02d-%02d %02d:%02d:%02d.%03d", \
354 len
= strlen( timestr
);
355 /* create the string of common data */
356 buf
= talloc_asprintf(ctx
,
357 "%s%04u%s%04u%s%04u%s%04u%s%04u%s%04u%s%04u%s",
358 common_data_count_str
,
359 (unsigned int) strlen(vfs_operation_str
),
361 (unsigned int) strlen(username
),
363 (unsigned int) strlen(sidstr
),
365 (unsigned int) strlen(service_name
),
368 strlen(handle
->conn
->session_info
->info3
->base
.domain
.string
),
369 handle
->conn
->session_info
->info3
->base
.domain
.string
,
370 (unsigned int) strlen(timestr
),
372 (unsigned int) strlen(handle
->conn
->sconn
->client_id
.addr
),
373 handle
->conn
->sconn
->client_id
.addr
);
375 talloc_free(common_data_count_str
);
377 /* data blocks depending on the VFS function */
378 va_start( ap
, count
);
380 arg
= va_arg( ap
, char * );
382 * protocol v2 sends a four byte string
383 * as a header to each block, including
384 * the numbers of bytes to come in the
388 buf
= talloc_asprintf_append( buf
, "%04u%s", len
, arg
);
394 static void smb_traffic_analyzer_send_data(vfs_handle_struct
*handle
,
396 enum vfs_id vfs_operation
)
398 struct refcounted_sock
*rf_sock
= NULL
;
401 struct tm
*tm
= NULL
;
404 char *username
= NULL
;
406 const char *protocol_version
= NULL
;
413 * The state flags are part of the header
414 * and are descripted in the protocol description
415 * in vfs_smb_traffic_analyzer.h. They begin at byte
418 char state_flags
[9] = "000000\0";
420 SMB_VFS_HANDLE_GET_DATA(handle
, rf_sock
, struct refcounted_sock
, return);
422 if (rf_sock
== NULL
|| rf_sock
->sock
== -1) {
423 DEBUG(1, ("smb_traffic_analyzer_send_data: socket is "
430 tm
= localtime(&tv_sec
);
434 seconds
=(float) (tv
.tv_usec
/ 1000);
437 * Check if anonymization is required, and if yes do this only for
438 * the username here, needed vor protocol version 1. In v2 we
439 * additionally anonymize the SID, which is done in it's marshalling
442 username
= smb_traffic_analyzer_anonymize( talloc_tos(),
443 handle
->conn
->session_info
->sanitized_username
,
450 protocol_version
= lp_parm_const_string(SNUM(handle
->conn
),
451 "smb_traffic_analyzer",
452 "protocol_version", NULL
);
455 if (protocol_version
!= NULL
&& strcmp(protocol_version
,"V1") == 0) {
457 struct rw_data
*s_data
= (struct rw_data
*) data
;
460 * in case of protocol v1, ignore any vfs operations
461 * except read,pread,write,pwrite, and set the "Write"
462 * bool accordingly, send data and return.
464 if ( vfs_operation
> vfs_id_pwrite
) return;
466 if ( vfs_operation
<= vfs_id_pread
) Write
=false;
469 str
= talloc_asprintf(talloc_tos(),
470 "V1,%u,\"%s\",\"%s\",\"%c\",\"%s\",\"%s\","
471 "\"%04d-%02d-%02d %02d:%02d:%02d.%03d\"\n",
472 (unsigned int) s_data
->len
,
474 handle
->conn
->session_info
->info3
->base
.domain
.string
,
476 handle
->conn
->connectpath
,
486 if (write_data(rf_sock
->sock
, str
, len
) != len
) {
487 DEBUG(1, ("smb_traffic_analyzer_send_data_socket: "
488 "error sending V1 protocol data to socket!\n"));
494 * Protocol 2 is used by default.
497 switch( vfs_operation
) {
499 str
= smb_traffic_analyzer_create_string( talloc_tos(),
500 tm
, seconds
, handle
, username
, vfs_id_open
,
501 3, ((struct open_data
*) data
)->filename
,
502 talloc_asprintf( talloc_tos(), "%u",
503 ((struct open_data
*) data
)->mode
),
504 talloc_asprintf( talloc_tos(), "%u",
505 ((struct open_data
*) data
)->result
));
508 str
= smb_traffic_analyzer_create_string( talloc_tos(),
509 tm
, seconds
, handle
, username
, vfs_id_close
,
510 2, ((struct close_data
*) data
)->filename
,
511 talloc_asprintf( talloc_tos(), "%u",
512 ((struct close_data
*) data
)->result
));
515 str
= smb_traffic_analyzer_create_string( talloc_tos(),
516 tm
, seconds
, handle
, username
, vfs_id_mkdir
, \
517 3, ((struct mkdir_data
*) data
)->path
, \
518 talloc_asprintf( talloc_tos(), "%u", \
519 ((struct mkdir_data
*) data
)->mode
), \
520 talloc_asprintf( talloc_tos(), "%u", \
521 ((struct mkdir_data
*) data
)->result
));
524 str
= smb_traffic_analyzer_create_string( talloc_tos(),
525 tm
, seconds
, handle
, username
, vfs_id_rmdir
,
526 2, ((struct rmdir_data
*) data
)->path
, \
527 talloc_asprintf( talloc_tos(), "%u", \
528 ((struct rmdir_data
*) data
)->result
));
530 case vfs_id_rename
: ;
531 str
= smb_traffic_analyzer_create_string( talloc_tos(),
532 tm
, seconds
, handle
, username
, vfs_id_rename
,
533 3, ((struct rename_data
*) data
)->src
, \
534 ((struct rename_data
*) data
)->dst
,
535 talloc_asprintf(talloc_tos(), "%u", \
536 ((struct rename_data
*) data
)->result
));
539 str
= smb_traffic_analyzer_create_string( talloc_tos(),
540 tm
, seconds
, handle
, username
, vfs_id_chdir
,
541 2, ((struct chdir_data
*) data
)->path
, \
542 talloc_asprintf(talloc_tos(), "%u", \
543 ((struct chdir_data
*) data
)->result
));
550 str
= smb_traffic_analyzer_create_string( talloc_tos(),
551 tm
, seconds
, handle
, username
, vfs_operation
,
552 2, ((struct rw_data
*) data
)->filename
, \
553 talloc_asprintf(talloc_tos(), "%u", \
555 ((struct rw_data
*) data
)->len
));
558 DEBUG(1, ("smb_traffic_analyzer: error! "
559 "wrong VFS operation id detected!\n"));
566 DEBUG(1, ("smb_traffic_analyzer_send_data: "
567 "unable to create string to send!\n"));
573 * If configured, optain the key and run AES encryption
577 akey
= (char *) secrets_fetch("smb_traffic_analyzer_key", &size
);
579 if ( akey
!= NULL
) {
580 state_flags
[2] = 'E';
581 DEBUG(10, ("smb_traffic_analyzer_send_data_socket: a key was"
582 " found, encrypting data!\n"));
583 output
= smb_traffic_analyzer_encrypt( talloc_tos(),
586 header
= smb_traffic_analyzer_create_header( talloc_tos(),
589 DEBUG(10, ("smb_traffic_analyzer_send_data_socket:"
590 " header created for crypted data: %s\n", header
));
591 smb_traffic_analyzer_write_data(header
, output
, len
,
598 header
= smb_traffic_analyzer_create_header( talloc_tos(),
600 smb_traffic_analyzer_write_data(header
, str
, strlen(str
),
605 static struct refcounted_sock
*sock_list
;
607 static void smb_traffic_analyzer_free_data(void **pptr
)
609 struct refcounted_sock
*rf_sock
= *(struct refcounted_sock
**)pptr
;
610 if (rf_sock
== NULL
) {
613 rf_sock
->ref_count
--;
614 if (rf_sock
->ref_count
!= 0) {
617 if (rf_sock
->sock
!= -1) {
618 close(rf_sock
->sock
);
620 DLIST_REMOVE(sock_list
, rf_sock
);
621 TALLOC_FREE(rf_sock
);
624 static int smb_traffic_analyzer_connect(struct vfs_handle_struct
*handle
,
628 connection_struct
*conn
= handle
->conn
;
629 enum sock_type st
= smb_traffic_analyzer_connMode(handle
);
630 struct refcounted_sock
*rf_sock
= NULL
;
631 const char *name
= (st
== UNIX_DOMAIN_SOCKET
) ? LOCAL_PATHNAME
:
632 lp_parm_const_string(SNUM(conn
),
633 "smb_traffic_analyzer",
634 "host", "localhost");
635 uint16_t port
= (st
== UNIX_DOMAIN_SOCKET
) ? 0 :
636 atoi( lp_parm_const_string(SNUM(conn
),
637 "smb_traffic_analyzer", "port", "9430"));
638 int ret
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
644 /* Are we already connected ? */
645 for (rf_sock
= sock_list
; rf_sock
; rf_sock
= rf_sock
->next
) {
646 if (port
== rf_sock
->port
&&
647 (strcmp(name
, rf_sock
->name
) == 0)) {
652 /* If we're connected already, just increase the
653 * reference count. */
655 rf_sock
->ref_count
++;
657 /* New connection. */
658 rf_sock
= TALLOC_ZERO_P(NULL
, struct refcounted_sock
);
659 if (rf_sock
== NULL
) {
660 SMB_VFS_NEXT_DISCONNECT(handle
);
664 rf_sock
->name
= talloc_strdup(rf_sock
, name
);
665 if (rf_sock
->name
== NULL
) {
666 SMB_VFS_NEXT_DISCONNECT(handle
);
667 TALLOC_FREE(rf_sock
);
671 rf_sock
->port
= port
;
672 rf_sock
->ref_count
= 1;
674 if (st
== UNIX_DOMAIN_SOCKET
) {
675 rf_sock
->sock
= smb_traffic_analyzer_connect_unix_socket(handle
,
679 rf_sock
->sock
= smb_traffic_analyzer_connect_inet_socket(handle
,
683 if (rf_sock
->sock
== -1) {
684 SMB_VFS_NEXT_DISCONNECT(handle
);
685 TALLOC_FREE(rf_sock
);
688 DLIST_ADD(sock_list
, rf_sock
);
691 /* Store the private data. */
692 SMB_VFS_HANDLE_SET_DATA(handle
, rf_sock
, smb_traffic_analyzer_free_data
,
693 struct refcounted_sock
, return -1);
698 static int smb_traffic_analyzer_chdir(vfs_handle_struct
*handle
, \
701 struct chdir_data s_data
;
702 s_data
.result
= SMB_VFS_NEXT_CHDIR(handle
, path
);
704 DEBUG(10, ("smb_traffic_analyzer_chdir: CHDIR: %s\n", path
));
705 smb_traffic_analyzer_send_data(handle
, &s_data
, vfs_id_chdir
);
706 return s_data
.result
;
709 static int smb_traffic_analyzer_rename(vfs_handle_struct
*handle
, \
710 const struct smb_filename
*smb_fname_src
,
711 const struct smb_filename
*smb_fname_dst
)
713 struct rename_data s_data
;
714 s_data
.result
= SMB_VFS_NEXT_RENAME(handle
, smb_fname_src
, \
716 s_data
.src
= smb_fname_src
->base_name
;
717 s_data
.dst
= smb_fname_dst
->base_name
;
718 DEBUG(10, ("smb_traffic_analyzer_rename: RENAME: %s / %s\n",
719 smb_fname_src
->base_name
,
720 smb_fname_dst
->base_name
));
721 smb_traffic_analyzer_send_data(handle
, &s_data
, vfs_id_rename
);
722 return s_data
.result
;
725 static int smb_traffic_analyzer_rmdir(vfs_handle_struct
*handle
, \
728 struct rmdir_data s_data
;
729 s_data
.result
= SMB_VFS_NEXT_RMDIR(handle
, path
);
731 DEBUG(10, ("smb_traffic_analyzer_rmdir: RMDIR: %s\n", path
));
732 smb_traffic_analyzer_send_data(handle
, &s_data
, vfs_id_rmdir
);
733 return s_data
.result
;
736 static int smb_traffic_analyzer_mkdir(vfs_handle_struct
*handle
, \
737 const char *path
, mode_t mode
)
739 struct mkdir_data s_data
;
740 s_data
.result
= SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
743 DEBUG(10, ("smb_traffic_analyzer_mkdir: MKDIR: %s\n", path
));
744 smb_traffic_analyzer_send_data(handle
,
747 return s_data
.result
;
750 static ssize_t
smb_traffic_analyzer_sendfile(vfs_handle_struct
*handle
,
752 files_struct
*fromfsp
,
753 const DATA_BLOB
*hdr
,
757 struct rw_data s_data
;
758 s_data
.len
= SMB_VFS_NEXT_SENDFILE(handle
,
759 tofd
, fromfsp
, hdr
, offset
, n
);
760 s_data
.filename
= fromfsp
->fsp_name
->base_name
;
761 DEBUG(10, ("smb_traffic_analyzer_sendfile: sendfile(r): %s\n",
762 fsp_str_dbg(fromfsp
)));
763 smb_traffic_analyzer_send_data(handle
,
769 static ssize_t
smb_traffic_analyzer_recvfile(vfs_handle_struct
*handle
,
775 struct rw_data s_data
;
776 s_data
.len
= SMB_VFS_NEXT_RECVFILE(handle
,
777 fromfd
, tofsp
, offset
, n
);
778 s_data
.filename
= tofsp
->fsp_name
->base_name
;
779 DEBUG(10, ("smb_traffic_analyzer_recvfile: recvfile(w): %s\n",
780 fsp_str_dbg(tofsp
)));
781 smb_traffic_analyzer_send_data(handle
,
788 static ssize_t
smb_traffic_analyzer_read(vfs_handle_struct
*handle
, \
789 files_struct
*fsp
, void *data
, size_t n
)
791 struct rw_data s_data
;
793 s_data
.len
= SMB_VFS_NEXT_READ(handle
, fsp
, data
, n
);
794 s_data
.filename
= fsp
->fsp_name
->base_name
;
795 DEBUG(10, ("smb_traffic_analyzer_read: READ: %s\n", fsp_str_dbg(fsp
)));
797 smb_traffic_analyzer_send_data(handle
,
804 static ssize_t
smb_traffic_analyzer_pread(vfs_handle_struct
*handle
, \
805 files_struct
*fsp
, void *data
, size_t n
, SMB_OFF_T offset
)
807 struct rw_data s_data
;
809 s_data
.len
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
810 s_data
.filename
= fsp
->fsp_name
->base_name
;
811 DEBUG(10, ("smb_traffic_analyzer_pread: PREAD: %s\n",
814 smb_traffic_analyzer_send_data(handle
,
821 static ssize_t
smb_traffic_analyzer_write(vfs_handle_struct
*handle
, \
822 files_struct
*fsp
, const void *data
, size_t n
)
824 struct rw_data s_data
;
826 s_data
.len
= SMB_VFS_NEXT_WRITE(handle
, fsp
, data
, n
);
827 s_data
.filename
= fsp
->fsp_name
->base_name
;
828 DEBUG(10, ("smb_traffic_analyzer_write: WRITE: %s\n",
831 smb_traffic_analyzer_send_data(handle
,
837 static ssize_t
smb_traffic_analyzer_pwrite(vfs_handle_struct
*handle
, \
838 files_struct
*fsp
, const void *data
, size_t n
, SMB_OFF_T offset
)
840 struct rw_data s_data
;
842 s_data
.len
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
843 s_data
.filename
= fsp
->fsp_name
->base_name
;
844 DEBUG(10, ("smb_traffic_analyzer_pwrite: PWRITE: %s\n", \
847 smb_traffic_analyzer_send_data(handle
,
853 static int smb_traffic_analyzer_open(vfs_handle_struct
*handle
, \
854 struct smb_filename
*smb_fname
, files_struct
*fsp
,\
855 int flags
, mode_t mode
)
857 struct open_data s_data
;
859 s_data
.result
= SMB_VFS_NEXT_OPEN( handle
, smb_fname
, fsp
,
861 DEBUG(10,("smb_traffic_analyzer_open: OPEN: %s\n",
863 s_data
.filename
= fsp
->fsp_name
->base_name
;
865 smb_traffic_analyzer_send_data(handle
,
868 return s_data
.result
;
871 static int smb_traffic_analyzer_close(vfs_handle_struct
*handle
, \
874 struct close_data s_data
;
875 s_data
.result
= SMB_VFS_NEXT_CLOSE(handle
, fsp
);
876 DEBUG(10,("smb_traffic_analyzer_close: CLOSE: %s\n",
878 s_data
.filename
= fsp
->fsp_name
->base_name
;
879 smb_traffic_analyzer_send_data(handle
,
882 return s_data
.result
;
886 static struct vfs_fn_pointers vfs_smb_traffic_analyzer_fns
= {
887 .connect_fn
= smb_traffic_analyzer_connect
,
888 .vfs_read
= smb_traffic_analyzer_read
,
889 .pread
= smb_traffic_analyzer_pread
,
890 .write
= smb_traffic_analyzer_write
,
891 .pwrite
= smb_traffic_analyzer_pwrite
,
892 .mkdir
= smb_traffic_analyzer_mkdir
,
893 .rename
= smb_traffic_analyzer_rename
,
894 .chdir
= smb_traffic_analyzer_chdir
,
895 .open_fn
= smb_traffic_analyzer_open
,
896 .rmdir
= smb_traffic_analyzer_rmdir
,
897 .close_fn
= smb_traffic_analyzer_close
,
898 .sendfile
= smb_traffic_analyzer_sendfile
,
899 .recvfile
= smb_traffic_analyzer_recvfile
902 /* Module initialization */
903 NTSTATUS
vfs_smb_traffic_analyzer_init(void)
905 NTSTATUS ret
= smb_register_vfs(SMB_VFS_INTERFACE_VERSION
,
906 "smb_traffic_analyzer",
907 &vfs_smb_traffic_analyzer_fns
);
909 if (!NT_STATUS_IS_OK(ret
)) {
913 vfs_smb_traffic_analyzer_debug_level
=
914 debug_add_class("smb_traffic_analyzer");
916 if (vfs_smb_traffic_analyzer_debug_level
== -1) {
917 vfs_smb_traffic_analyzer_debug_level
= DBGC_VFS
;
918 DEBUG(1, ("smb_traffic_analyzer_init: Couldn't register custom"
919 "debugging class!\n"));
921 DEBUG(3, ("smb_traffic_analyzer_init: Debug class number of"
922 "'smb_traffic_analyzer': %d\n", \
923 vfs_smb_traffic_analyzer_debug_level
));