Make protocol version 2 the default protocol, and only run on version 1 if V1 is...
[Samba/gebeck_regimport.git] / source3 / modules / vfs_smb_traffic_analyzer.c
blob4146d78624f7381cd2424292b58a93211c7c75d4
1 /*
2 * traffic-analyzer VFS module. Measure the smb traffic users create
3 * on the net.
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/>.
22 #include "includes.h"
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"
28 #include "secrets.h"
29 #include "../librpc/gen_ndr/ndr_netlogon.h"
30 #include "auth.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;
42 const char *Mode;
43 Mode=lp_parm_const_string(SNUM(conn), "smb_traffic_analyzer","mode", \
44 "internet_socket");
45 if (strstr(Mode,"unix_domain_socket")) {
46 return UNIX_DOMAIN_SOCKET;
47 } else {
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 */
58 int sockfd = -1;
59 struct addrinfo hints;
60 struct addrinfo *ailist = NULL;
61 struct addrinfo *res = NULL;
62 int ret;
64 ZERO_STRUCT(hints);
65 /* By default make sure it supports TCP. */
66 hints.ai_socktype = SOCK_STREAM;
67 hints.ai_flags = AI_ADDRCONFIG;
69 ret = getaddrinfo(name,
70 NULL,
71 &hints,
72 &ailist);
74 if (ret) {
75 DEBUG(3,("smb_traffic_analyzer_connect_inet_socket: "
76 "getaddrinfo failed for name %s [%s]\n",
77 name,
78 gai_strerror(ret) ));
79 return -1;
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;
87 NTSTATUS status;
89 if (!res->ai_addr || res->ai_addrlen == 0) {
90 continue;
93 ZERO_STRUCT(ss);
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)) {
98 break;
102 if (ailist) {
103 freeaddrinfo(ailist);
106 if (sockfd == -1) {
107 DEBUG(1, ("smb_traffic_analyzer: unable to create "
108 "socket, error is %s",
109 strerror(errno)));
110 return -1;
113 return sockfd;
116 /* Connect to a unix domain socket */
117 static int smb_traffic_analyzer_connect_unix_socket(vfs_handle_struct *handle,
118 const char *name)
120 /* Create the socket to stad */
121 int len, sock;
122 struct sockaddr_un remote;
124 DEBUG(7, ("smb_traffic_analyzer_connect_unix_socket: "
125 "Unix domain socket mode. Using %s\n",
126 name ));
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"));
132 return -1;
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"));
142 close(sock);
143 return -1;
145 return sock;
148 /* Private data allowing shared connection sockets. */
149 struct refcounted_sock {
150 struct refcounted_sock *next, *prev;
151 char *name;
152 uint16_t port;
153 int sock;
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)
171 int s1,s2,h,d;
172 AES_KEY key;
173 unsigned char filler[17]= "................";
174 char *output;
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 );
184 d=0;
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);
191 *len = (s1*16)+16;
192 return output;
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));
208 return 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
217 * int socket
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,
249 const char *str,
250 vfs_handle_struct *handle )
252 const char *total_anonymization;
253 const char *anon_prefix;
254 char *output;
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",
265 anon_prefix);
266 } else {
267 output = talloc_asprintf(ctx, "%s%i", anon_prefix,
268 str_checksum(str));
270 } else {
271 output = talloc_asprintf(ctx, "%s", str);
274 return output;
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, ... )
298 va_list ap;
299 char *arg = NULL;
300 int len;
301 char *common_data_count_str = NULL;
302 char *timestr = NULL;
303 char *sidstr = NULL;
304 char *usersid = NULL;
305 char *buf = 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
314 * 2.username
315 * 3.user-SID
316 * 4.affected share
317 * 5.domain
318 * 6.timestamp
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",
330 vfs_operation);
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,
341 usersid,
342 handle);
344 /* time stamp */
345 timestr = talloc_asprintf( common_data_count_str, \
346 "%04d-%02d-%02d %02d:%02d:%02d.%03d", \
347 tm->tm_year+1900, \
348 tm->tm_mon+1, \
349 tm->tm_mday, \
350 tm->tm_hour, \
351 tm->tm_min, \
352 tm->tm_sec, \
353 (int)seconds);
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),
360 vfs_operation_str,
361 (unsigned int) strlen(username),
362 username,
363 (unsigned int) strlen(sidstr),
364 sidstr,
365 (unsigned int) strlen(service_name),
366 service_name,
367 (unsigned int)
368 strlen(handle->conn->session_info->info3->base.domain.string),
369 handle->conn->session_info->info3->base.domain.string,
370 (unsigned int) strlen(timestr),
371 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 );
379 while ( 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
385 * next string.
387 len = strlen( arg );
388 buf = talloc_asprintf_append( buf, "%04u%s", len, arg);
390 va_end( ap );
391 return buf;
394 static void smb_traffic_analyzer_send_data(vfs_handle_struct *handle,
395 void *data,
396 enum vfs_id vfs_operation )
398 struct refcounted_sock *rf_sock = NULL;
399 struct timeval tv;
400 time_t tv_sec;
401 struct tm *tm = NULL;
402 int seconds;
403 char *str = NULL;
404 char *username = NULL;
405 char *header = NULL;
406 const char *protocol_version = NULL;
407 bool Write = false;
408 size_t len;
409 size_t size;
410 char *akey, *output;
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
416 * 03 of the header.
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 "
424 "closed\n"));
425 return;
428 GetTimeOfDay(&tv);
429 tv_sec = tv.tv_sec;
430 tm = localtime(&tv_sec);
431 if (!tm) {
432 return;
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
440 * function.
442 username = smb_traffic_analyzer_anonymize( talloc_tos(),
443 handle->conn->session_info->sanitized_username,
444 handle);
446 if (!username) {
447 return;
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;
467 else Write=true;
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,
473 username,
474 handle->conn->session_info->info3->base.domain.string,
475 Write ? 'W' : 'R',
476 handle->conn->connectpath,
477 s_data->filename,
478 tm->tm_year+1900,
479 tm->tm_mon+1,
480 tm->tm_mday,
481 tm->tm_hour,
482 tm->tm_min,
483 tm->tm_sec,
484 (int)seconds);
485 len = strlen(str);
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"));
489 return;
492 } else {
494 * Protocol 2 is used by default.
497 switch( vfs_operation ) {
498 case vfs_id_open: ;
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));
506 break;
507 case vfs_id_close: ;
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));
513 break;
514 case vfs_id_mkdir: ;
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 ));
522 break;
523 case vfs_id_rmdir: ;
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 ));
529 break;
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));
537 break;
538 case vfs_id_chdir: ;
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));
544 break;
546 case vfs_id_write:
547 case vfs_id_pwrite:
548 case vfs_id_read:
549 case vfs_id_pread: ;
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", \
554 (unsigned int)
555 ((struct rw_data *) data)->len));
556 break;
557 default:
558 DEBUG(1, ("smb_traffic_analyzer: error! "
559 "wrong VFS operation id detected!\n"));
560 return;
565 if (!str) {
566 DEBUG(1, ("smb_traffic_analyzer_send_data: "
567 "unable to create string to send!\n"));
568 return;
573 * If configured, optain the key and run AES encryption
574 * over the data.
576 become_root();
577 akey = (char *) secrets_fetch("smb_traffic_analyzer_key", &size);
578 unbecome_root();
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(),
584 akey, str, &len);
585 SAFE_FREE(akey);
586 header = smb_traffic_analyzer_create_header( talloc_tos(),
587 state_flags, len);
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,
592 rf_sock->sock);
593 return;
597 len = strlen(str);
598 header = smb_traffic_analyzer_create_header( talloc_tos(),
599 state_flags, len);
600 smb_traffic_analyzer_write_data(header, str, strlen(str),
601 rf_sock->sock);
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) {
611 return;
613 rf_sock->ref_count--;
614 if (rf_sock->ref_count != 0) {
615 return;
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,
625 const char *service,
626 const char *user)
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);
640 if (ret < 0) {
641 return ret;
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)) {
648 break;
652 /* If we're connected already, just increase the
653 * reference count. */
654 if (rf_sock) {
655 rf_sock->ref_count++;
656 } else {
657 /* New connection. */
658 rf_sock = TALLOC_ZERO_P(NULL, struct refcounted_sock);
659 if (rf_sock == NULL) {
660 SMB_VFS_NEXT_DISCONNECT(handle);
661 errno = ENOMEM;
662 return -1;
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);
668 errno = ENOMEM;
669 return -1;
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,
676 name);
677 } else {
679 rf_sock->sock = smb_traffic_analyzer_connect_inet_socket(handle,
680 name,
681 port);
683 if (rf_sock->sock == -1) {
684 SMB_VFS_NEXT_DISCONNECT(handle);
685 TALLOC_FREE(rf_sock);
686 return -1;
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);
694 return 0;
697 /* VFS Functions */
698 static int smb_traffic_analyzer_chdir(vfs_handle_struct *handle, \
699 const char *path)
701 struct chdir_data s_data;
702 s_data.result = SMB_VFS_NEXT_CHDIR(handle, path);
703 s_data.path = 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, \
715 smb_fname_dst);
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, \
726 const char *path)
728 struct rmdir_data s_data;
729 s_data.result = SMB_VFS_NEXT_RMDIR(handle, path);
730 s_data.path = 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);
741 s_data.path = path;
742 s_data.mode = mode;
743 DEBUG(10, ("smb_traffic_analyzer_mkdir: MKDIR: %s\n", path));
744 smb_traffic_analyzer_send_data(handle,
745 &s_data,
746 vfs_id_mkdir);
747 return s_data.result;
750 static ssize_t smb_traffic_analyzer_sendfile(vfs_handle_struct *handle,
751 int tofd,
752 files_struct *fromfsp,
753 const DATA_BLOB *hdr,
754 SMB_OFF_T offset,
755 size_t n)
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,
764 &s_data,
765 vfs_id_read);
766 return s_data.len;
769 static ssize_t smb_traffic_analyzer_recvfile(vfs_handle_struct *handle,
770 int fromfd,
771 files_struct *tofsp,
772 SMB_OFF_T offset,
773 size_t n)
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,
782 &s_data,
783 vfs_id_write);
784 return s_data.len;
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,
798 &s_data,
799 vfs_id_read);
800 return s_data.len;
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",
812 fsp_str_dbg(fsp)));
814 smb_traffic_analyzer_send_data(handle,
815 &s_data,
816 vfs_id_pread);
818 return s_data.len;
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",
829 fsp_str_dbg(fsp)));
831 smb_traffic_analyzer_send_data(handle,
832 &s_data,
833 vfs_id_write);
834 return s_data.len;
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", \
845 fsp_str_dbg(fsp)));
847 smb_traffic_analyzer_send_data(handle,
848 &s_data,
849 vfs_id_pwrite);
850 return s_data.len;
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,
860 flags, mode);
861 DEBUG(10,("smb_traffic_analyzer_open: OPEN: %s\n",
862 fsp_str_dbg(fsp)));
863 s_data.filename = fsp->fsp_name->base_name;
864 s_data.mode = mode;
865 smb_traffic_analyzer_send_data(handle,
866 &s_data,
867 vfs_id_open);
868 return s_data.result;
871 static int smb_traffic_analyzer_close(vfs_handle_struct *handle, \
872 files_struct *fsp)
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",
877 fsp_str_dbg(fsp)));
878 s_data.filename = fsp->fsp_name->base_name;
879 smb_traffic_analyzer_send_data(handle,
880 &s_data,
881 vfs_id_close);
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)) {
910 return 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"));
920 } else {
921 DEBUG(3, ("smb_traffic_analyzer_init: Debug class number of"
922 "'smb_traffic_analyzer': %d\n", \
923 vfs_smb_traffic_analyzer_debug_level));
926 return ret;