2003-08-15 04:00:22 +04:00
/*
2003-08-15 04:04:20 +04:00
Unix SMB / CIFS implementation .
Utility to extract pcap files from samba ( log level 10 ) log files
2003-08-15 04:00:22 +04:00
2003-08-15 04:04:20 +04:00
Copyright ( C ) Jelmer Vernooij 2003
Thanks to Tim Potter for the genial idea
2003-08-15 04:00:22 +04:00
2003-08-15 09:31:46 +04:00
Portions ( from capconvert . c ) ( C ) Andrew Tridgell 1997
Portions ( from text2pcap . c ) ( C ) Ashok Narayanan 2001
Example use with - h parameter :
log2pcaphex < samba - log - file | text2pcap - T 139 , 139 - foo . pcap
TODO : Have correct IP and TCP checksums .
2003-08-15 04:00:22 +04:00
2003-08-15 04:04:20 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-08-15 04:04:20 +04:00
( at your option ) any later version .
2003-08-15 04:00:22 +04:00
2003-08-15 04:04:20 +04:00
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
2003-08-15 04:00:22 +04:00
2003-08-15 04:04:20 +04:00
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-15 04:00:22 +04:00
*/
# include "includes.h"
2005-05-07 10:59:00 +04:00
/* We don't care about the paranoid malloc checker in this standalone
program */
# undef malloc
2003-08-15 04:00:22 +04:00
# include <assert.h>
2003-08-15 06:18:20 +04:00
int quiet = 0 ;
2003-08-15 09:31:46 +04:00
int hexformat = 0 ;
2003-08-15 04:00:22 +04:00
# define itoa(a) ((a) < 0xa?'0'+(a):'A' + (a-0xa))
2003-08-15 09:31:46 +04:00
# include <stdlib.h>
# include <unistd.h>
# include <sys/time.h>
# include <stdio.h>
# include <fcntl.h>
# define TCPDUMP_MAGIC 0xa1b2c3d4
/* tcpdump file format */
struct tcpdump_file_header {
uint32 magic ;
uint16 major ;
uint16 minor ;
int32 zone ;
uint32 sigfigs ;
uint32 snaplen ;
uint32 linktype ;
} ;
struct tcpdump_packet {
struct timeval ts ;
uint32 caplen ;
uint32 len ;
} ;
typedef struct {
uint8 ver_hdrlen ;
uint8 dscp ;
uint16 packet_length ;
uint16 identification ;
uint8 flags ;
uint8 fragment ;
uint8 ttl ;
uint8 protocol ;
uint16 hdr_checksum ;
uint32 src_addr ;
uint32 dest_addr ;
} hdr_ip_t ;
static hdr_ip_t HDR_IP = { 0x45 , 0 , 0 , 0x3412 , 0 , 0 , 0xff , 6 , 0 , 0x01010101 , 0x02020202 } ;
typedef struct {
uint16 source_port ;
uint16 dest_port ;
uint32 seq_num ;
uint32 ack_num ;
uint8 hdr_length ;
uint8 flags ;
uint16 window ;
uint16 checksum ;
uint16 urg ;
} hdr_tcp_t ;
static hdr_tcp_t HDR_TCP = { 139 , 139 , 0 , 0 , 0x50 , 0 , 0 , 0 , 0 } ;
2006-12-19 23:16:52 +03:00
static void print_pcap_header ( FILE * out )
2003-08-15 04:00:22 +04:00
{
2003-08-15 09:31:46 +04:00
struct tcpdump_file_header h ;
h . magic = TCPDUMP_MAGIC ;
h . major = 2 ;
h . minor = 4 ;
h . zone = 0 ;
h . sigfigs = 0 ;
h . snaplen = 102400 ; /* As long packets as possible */
h . linktype = 101 ; /* Raw IP */
fwrite ( & h , sizeof ( struct tcpdump_file_header ) , 1 , out ) ;
}
2006-12-19 23:16:52 +03:00
static void print_pcap_packet ( FILE * out , unsigned char * data , long length , long caplen )
2003-08-15 09:31:46 +04:00
{
static int i = 0 ;
struct tcpdump_packet p ;
i + + ;
p . ts . tv_usec = 0 ;
p . ts . tv_sec = 0 ;
p . caplen = caplen ;
p . len = length ;
fwrite ( & p , sizeof ( struct tcpdump_packet ) , 1 , out ) ;
fwrite ( data , sizeof ( unsigned char ) , caplen , out ) ;
}
2006-12-19 23:16:52 +03:00
static void print_hex_packet ( FILE * out , unsigned char * data , long length )
2003-08-15 09:31:46 +04:00
{
2003-08-29 05:33:00 +04:00
long i , cur = 0 ;
2003-08-15 09:31:46 +04:00
while ( cur < length ) {
2003-08-29 05:33:00 +04:00
fprintf ( out , " %06lX " , cur ) ;
2003-08-15 09:31:46 +04:00
for ( i = cur ; i < length & & i < cur + 16 ; i + + ) {
fprintf ( out , " %02x " , data [ i ] ) ;
}
2003-08-15 04:00:22 +04:00
2003-08-15 09:31:46 +04:00
cur = i ;
fprintf ( out , " \n " ) ;
}
2003-08-15 04:00:22 +04:00
}
2003-08-15 09:31:46 +04:00
2006-12-19 23:16:52 +03:00
static void print_netbios_packet ( FILE * out , unsigned char * data , long length , long actual_length )
2003-08-15 09:31:46 +04:00
{
unsigned char * newdata ; long offset = 0 ;
long newlen ;
newlen = length + sizeof ( HDR_IP ) + sizeof ( HDR_TCP ) ;
2006-08-17 15:54:23 +04:00
newdata = ( unsigned char * ) malloc ( newlen ) ;
2003-08-15 09:31:46 +04:00
HDR_IP . packet_length = htons ( newlen ) ;
HDR_TCP . window = htons ( 0x2000 ) ;
HDR_TCP . source_port = HDR_TCP . dest_port = htons ( 139 ) ;
memcpy ( newdata + offset , & HDR_IP , sizeof ( HDR_IP ) ) ; offset + = sizeof ( HDR_IP ) ;
memcpy ( newdata + offset , & HDR_TCP , sizeof ( HDR_TCP ) ) ; offset + = sizeof ( HDR_TCP ) ;
memcpy ( newdata + offset , data , length ) ;
print_pcap_packet ( out , newdata , newlen , actual_length + offset ) ;
free ( newdata ) ;
2003-08-15 04:00:22 +04:00
}
2003-08-15 06:18:20 +04:00
unsigned char * curpacket = NULL ;
2003-08-15 04:00:22 +04:00
long curpacket_len = 0 ;
2006-12-19 23:16:52 +03:00
static void read_log_msg ( FILE * in , unsigned char * * _buffer , long * buffersize , long * data_offset , long * data_length )
2003-08-15 04:00:22 +04:00
{
2003-08-15 06:18:20 +04:00
unsigned char * buffer ;
2003-08-15 04:00:22 +04:00
int tmp ; long i ;
2003-08-29 05:33:00 +04:00
assert ( fscanf ( in , " size=%ld \n " , buffersize ) ) ;
2003-08-15 04:00:22 +04:00
* buffersize + = 4 ; /* for netbios */
2006-08-17 15:54:23 +04:00
buffer = ( unsigned char * ) malloc ( * buffersize ) ;
2003-08-15 04:00:22 +04:00
memset ( buffer , 0 , * buffersize ) ;
/* NetBIOS */
buffer [ 0 ] = 0x00 ;
buffer [ 1 ] = 0x00 ;
memcpy ( buffer + 2 , & buffersize , 2 ) ;
buffer [ 4 ] = 0xFF ;
buffer [ 5 ] = ' S ' ;
buffer [ 6 ] = ' M ' ;
buffer [ 7 ] = ' B ' ;
assert ( fscanf ( in , " smb_com=0x%x \n " , & tmp ) ) ; buffer [ smb_com ] = tmp ;
assert ( fscanf ( in , " smb_rcls=%d \n " , & tmp ) ) ; buffer [ smb_rcls ] = tmp ;
assert ( fscanf ( in , " smb_reh=%d \n " , & tmp ) ) ; buffer [ smb_reh ] = tmp ;
assert ( fscanf ( in , " smb_err=%d \n " , & tmp ) ) ; memcpy ( buffer + smb_err , & tmp , 2 ) ;
assert ( fscanf ( in , " smb_flg=%d \n " , & tmp ) ) ; buffer [ smb_flg ] = tmp ;
assert ( fscanf ( in , " smb_flg2=%d \n " , & tmp ) ) ; memcpy ( buffer + smb_flg2 , & tmp , 2 ) ;
assert ( fscanf ( in , " smb_tid=%d \n " , & tmp ) ) ; memcpy ( buffer + smb_tid , & tmp , 2 ) ;
assert ( fscanf ( in , " smb_pid=%d \n " , & tmp ) ) ; memcpy ( buffer + smb_pid , & tmp , 2 ) ;
assert ( fscanf ( in , " smb_uid=%d \n " , & tmp ) ) ; memcpy ( buffer + smb_uid , & tmp , 2 ) ;
assert ( fscanf ( in , " smb_mid=%d \n " , & tmp ) ) ; memcpy ( buffer + smb_mid , & tmp , 2 ) ;
assert ( fscanf ( in , " smt_wct=%d \n " , & tmp ) ) ; buffer [ smb_wct ] = tmp ;
for ( i = 0 ; i < buffer [ smb_wct ] ; i + + ) {
assert ( fscanf ( in , " smb_vwv[%*2d]=%*5d (0x%X) \n " , & tmp ) ) ;
memcpy ( buffer + smb_vwv + i * 2 , & tmp , 2 ) ;
}
2003-08-15 05:30:10 +04:00
* data_offset = smb_vwv + buffer [ smb_wct ] * 2 ;
2003-08-29 05:33:00 +04:00
assert ( fscanf ( in , " smb_bcc=%ld \n " , data_length ) ) ; buffer [ ( * data_offset ) ] = * data_length ;
2003-08-15 05:30:10 +04:00
( * data_offset ) + = 2 ;
2003-08-15 04:00:22 +04:00
* _buffer = buffer ;
}
2006-12-19 23:16:52 +03:00
static long read_log_data ( FILE * in , unsigned char * buffer , long data_length )
2003-08-15 04:00:22 +04:00
{
2003-08-15 06:18:20 +04:00
long i , addr ; char real [ 2 ] [ 16 ] ; int ret ;
2005-09-30 21:13:37 +04:00
unsigned int tmp ;
2003-08-15 05:30:10 +04:00
for ( i = 0 ; i < data_length ; i + + ) {
if ( i % 16 = = 0 ) {
if ( i ! = 0 ) { /* Read data after each line */
assert ( fscanf ( in , " %8s %8s " , real [ 0 ] , real [ 1 ] ) = = 2 ) ;
}
2003-08-29 05:33:00 +04:00
ret = fscanf ( in , " [%03lX] " , & addr ) ;
2003-08-15 06:18:20 +04:00
if ( ! ret ) {
2003-08-29 05:33:00 +04:00
if ( ! quiet ) fprintf ( stderr , " Only first %ld bytes are logged, packet trace will be incomplete \n Try a higher log level \n " , i ) ;
2003-08-15 09:31:46 +04:00
return i - 1 ;
2003-08-15 06:18:20 +04:00
}
2003-08-15 05:30:10 +04:00
assert ( addr = = i ) ;
}
2005-09-30 21:13:37 +04:00
if ( ! fscanf ( in , " %02X " , & tmp ) ) {
2003-08-29 05:33:00 +04:00
if ( ! quiet ) fprintf ( stderr , " Only first %ld bytes are logged, packet trace will be incomplete \n Try a higher log level \n " , i - 1 ) ;
2003-08-15 09:31:46 +04:00
return i - 1 ;
2003-08-15 06:18:20 +04:00
}
buffer [ i ] = tmp ;
2003-08-15 04:00:22 +04:00
}
2003-08-15 09:31:46 +04:00
return data_length ;
2003-08-15 04:00:22 +04:00
}
int main ( int argc , char * * argv )
{
const char * infile , * outfile ;
FILE * out , * in ;
int opt ;
poptContext pc ;
char buffer [ 4096 ] ;
2007-07-25 17:05:54 +04:00
long data_offset = 0 , data_length ;
2005-09-30 21:13:37 +04:00
long data_bytes_read = 0 ;
2003-08-15 04:00:22 +04:00
int in_packet = 0 ;
struct poptOption long_options [ ] = {
POPT_AUTOHELP
2003-08-15 06:18:20 +04:00
{ " quiet " , ' q ' , POPT_ARG_NONE , & quiet , 0 , " Be quiet, don't output warnings " } ,
2003-08-15 09:31:46 +04:00
{ " hex " , ' h ' , POPT_ARG_NONE , & hexformat , 0 , " Output format readable by text2pcap " } ,
2003-08-15 04:00:22 +04:00
POPT_TABLEEND
} ;
pc = poptGetContext ( NULL , argc , ( const char * * ) argv , long_options ,
POPT_CONTEXT_KEEP_FIRST ) ;
poptSetOtherOptionHelp ( pc , " [<infile> [<outfile>]] " ) ;
while ( ( opt = poptGetNextOpt ( pc ) ) ! = - 1 ) {
switch ( opt ) {
}
}
poptGetArg ( pc ) ; /* Drop argv[0], the program name */
infile = poptGetArg ( pc ) ;
if ( infile ) {
in = fopen ( infile , " r " ) ;
if ( ! in ) {
perror ( " fopen " ) ;
return 1 ;
}
} else in = stdin ;
outfile = poptGetArg ( pc ) ;
if ( outfile ) {
out = fopen ( outfile , " w+ " ) ;
if ( ! out ) {
perror ( " fopen " ) ;
fprintf ( stderr , " Can't find %s, using stdout... \n " , outfile ) ;
}
}
if ( ! outfile ) out = stdout ;
2003-08-15 09:31:46 +04:00
if ( ! hexformat ) print_pcap_header ( out ) ;
2003-08-15 04:00:22 +04:00
while ( ! feof ( in ) ) {
fgets ( buffer , sizeof ( buffer ) , in ) ;
if ( buffer [ 0 ] = = ' [ ' ) { /* Header */
if ( strstr ( buffer , " show_msg " ) ) {
in_packet + + ;
if ( in_packet = = 1 ) continue ;
2003-08-15 05:30:10 +04:00
read_log_msg ( in , & curpacket , & curpacket_len , & data_offset , & data_length ) ;
2003-08-15 04:00:22 +04:00
} else if ( in_packet & & strstr ( buffer , " dump_data " ) ) {
2003-08-15 09:31:46 +04:00
data_bytes_read = read_log_data ( in , curpacket + data_offset , data_length ) ;
2003-08-15 04:00:22 +04:00
} else {
if ( in_packet ) {
2003-08-15 20:13:59 +04:00
if ( hexformat ) print_hex_packet ( out , curpacket , curpacket_len ) ;
2003-08-15 09:31:46 +04:00
else print_netbios_packet ( out , curpacket , curpacket_len , data_bytes_read + data_offset ) ;
2003-08-15 04:00:22 +04:00
free ( curpacket ) ;
}
in_packet = 0 ;
}
}
}
return 0 ;
}