2 Unix SMB/CIFS implementation.
3 Utility to extract pcap files from samba (log level 10) log files
5 Copyright (C) Jelmer Vernooij 2003
6 Thanks to Tim Potter for the genial idea
8 Portions (from capconvert.c) (C) Andrew Tridgell 1997
9 Portions (from text2pcap.c) (C) Ashok Narayanan 2001
11 Example use with -h parameter:
12 log2pcaphex < samba-log-file | text2pcap -T 139,139 - foo.pcap
14 TODO: Have correct IP and TCP checksums.
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 2 of the License, or
19 (at your option) any later version.
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software
28 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
37 #define itoa(a) ((a) < 0xa?'0'+(a):'A' + (a-0xa))
45 #define TCPDUMP_MAGIC 0xa1b2c3d4
47 /* tcpdump file format */
48 struct tcpdump_file_header
{
58 struct tcpdump_packet
{
68 uint16 identification
;
78 static hdr_ip_t HDR_IP
= {0x45, 0, 0, 0x3412, 0, 0, 0xff, 6, 0, 0x01010101, 0x02020202};
92 static hdr_tcp_t HDR_TCP
= {139, 139, 0, 0, 0x50, 0, 0, 0, 0};
94 void print_pcap_header(FILE *out
)
96 struct tcpdump_file_header h
;
97 h
.magic
= TCPDUMP_MAGIC
;
102 h
.snaplen
= 102400; /* As long packets as possible */
103 h
.linktype
= 101; /* Raw IP */
104 fwrite(&h
, sizeof(struct tcpdump_file_header
), 1, out
);
107 void print_pcap_packet(FILE *out
, unsigned char *data
, long length
, long caplen
)
110 struct tcpdump_packet p
;
116 fwrite(&p
, sizeof(struct tcpdump_packet
), 1, out
);
117 fwrite(data
, sizeof(unsigned char), caplen
, out
);
120 void print_hex_packet(FILE *out
, unsigned char *data
, long length
)
123 while(cur
< length
) {
124 fprintf(out
, "%06lX ", cur
);
125 for(i
= cur
; i
< length
&& i
< cur
+ 16; i
++) {
126 fprintf(out
, "%02x ", data
[i
]);
134 void print_netbios_packet(FILE *out
, unsigned char *data
, long length
, long actual_length
)
136 unsigned char *newdata
; long offset
= 0;
139 newlen
= length
+sizeof(HDR_IP
)+sizeof(HDR_TCP
);
140 newdata
= malloc(newlen
);
142 HDR_IP
.packet_length
= htons(newlen
);
143 HDR_TCP
.window
= htons(0x2000);
144 HDR_TCP
.source_port
= HDR_TCP
.dest_port
= htons(139);
146 memcpy(newdata
+offset
, &HDR_IP
, sizeof(HDR_IP
));offset
+=sizeof(HDR_IP
);
147 memcpy(newdata
+offset
, &HDR_TCP
, sizeof(HDR_TCP
));offset
+=sizeof(HDR_TCP
);
148 memcpy(newdata
+offset
,data
,length
);
150 print_pcap_packet(out
, newdata
, newlen
, actual_length
+offset
);
154 unsigned char *curpacket
= NULL
;
155 long curpacket_len
= 0;
157 void read_log_msg(FILE *in
, unsigned char **_buffer
, long *buffersize
, long *data_offset
, long *data_length
)
159 unsigned char *buffer
;
161 assert(fscanf(in
, " size=%ld\n", buffersize
));
162 *buffersize
+=4; /* for netbios */
163 buffer
= malloc(*buffersize
);
164 memset(buffer
, 0, *buffersize
);
168 memcpy(buffer
+2, &buffersize
, 2);
173 assert(fscanf(in
, " smb_com=0x%x\n", &tmp
)); buffer
[smb_com
] = tmp
;
174 assert(fscanf(in
, " smb_rcls=%d\n", &tmp
)); buffer
[smb_rcls
] = tmp
;
175 assert(fscanf(in
, " smb_reh=%d\n", &tmp
)); buffer
[smb_reh
] = tmp
;
176 assert(fscanf(in
, " smb_err=%d\n", &tmp
)); memcpy(buffer
+smb_err
, &tmp
, 2);
177 assert(fscanf(in
, " smb_flg=%d\n", &tmp
)); buffer
[smb_flg
] = tmp
;
178 assert(fscanf(in
, " smb_flg2=%d\n", &tmp
)); memcpy(buffer
+smb_flg2
, &tmp
, 2);
179 assert(fscanf(in
, " smb_tid=%d\n", &tmp
)); memcpy(buffer
+smb_tid
, &tmp
, 2);
180 assert(fscanf(in
, " smb_pid=%d\n", &tmp
)); memcpy(buffer
+smb_pid
, &tmp
, 2);
181 assert(fscanf(in
, " smb_uid=%d\n", &tmp
)); memcpy(buffer
+smb_uid
, &tmp
, 2);
182 assert(fscanf(in
, " smb_mid=%d\n", &tmp
)); memcpy(buffer
+smb_mid
, &tmp
, 2);
183 assert(fscanf(in
, " smt_wct=%d\n", &tmp
)); buffer
[smb_wct
] = tmp
;
184 for(i
= 0; i
< buffer
[smb_wct
]; i
++) {
185 assert(fscanf(in
, " smb_vwv[%*2d]=%*5d (0x%X)\n", &tmp
));
186 memcpy(buffer
+smb_vwv
+i
*2, &tmp
, 2);
189 *data_offset
= smb_vwv
+buffer
[smb_wct
]*2;
190 assert(fscanf(in
, " smb_bcc=%ld\n", data_length
)); buffer
[(*data_offset
)] = *data_length
;
195 long read_log_data(FILE *in
, unsigned char *buffer
, long data_length
)
197 long i
, addr
; char real
[2][16]; int ret
;
199 for(i
= 0; i
< data_length
; i
++) {
201 if(i
!= 0) { /* Read data after each line */
202 assert(fscanf(in
, "%8s %8s", real
[0], real
[1]) == 2);
204 ret
= fscanf(in
, " [%03lX]", &addr
);
206 if(!quiet
)fprintf(stderr
, "Only first %ld bytes are logged, packet trace will be incomplete\nTry a higher log level\n", i
);
211 if(!fscanf(in
, "%02lX", &tmp
)) {
212 if(!quiet
)fprintf(stderr
, "Only first %ld bytes are logged, packet trace will be incomplete\nTry a higher log level\n", i
-1);
220 int main (int argc
, char **argv
)
222 const char *infile
, *outfile
;
227 long data_offset
, data_length
;
228 long data_bytes_read
;
230 struct poptOption long_options
[] = {
232 { "quiet", 'q', POPT_ARG_NONE
, &quiet
, 0, "Be quiet, don't output warnings" },
233 { "hex", 'h', POPT_ARG_NONE
, &hexformat
, 0, "Output format readable by text2pcap" },
237 pc
= poptGetContext(NULL
, argc
, (const char **) argv
, long_options
,
238 POPT_CONTEXT_KEEP_FIRST
);
239 poptSetOtherOptionHelp(pc
, "[<infile> [<outfile>]]");
242 while((opt
= poptGetNextOpt(pc
)) != -1) {
247 poptGetArg(pc
); /* Drop argv[0], the program name */
249 infile
= poptGetArg(pc
);
252 in
= fopen(infile
, "r");
259 outfile
= poptGetArg(pc
);
262 out
= fopen(outfile
, "w+");
265 fprintf(stderr
, "Can't find %s, using stdout...\n", outfile
);
269 if(!outfile
) out
= stdout
;
271 if(!hexformat
)print_pcap_header(out
);
274 fgets(buffer
, sizeof(buffer
), in
);
275 if(buffer
[0] == '[') { /* Header */
276 if(strstr(buffer
, "show_msg")) {
278 if(in_packet
== 1)continue;
279 read_log_msg(in
, &curpacket
, &curpacket_len
, &data_offset
, &data_length
);
280 } else if(in_packet
&& strstr(buffer
, "dump_data")) {
281 data_bytes_read
= read_log_data(in
, curpacket
+data_offset
, data_length
);
284 if(hexformat
) print_hex_packet(out
, curpacket
, curpacket_len
);
285 else print_netbios_packet(out
, curpacket
, curpacket_len
, data_bytes_read
+data_offset
);