"col_format_to_pref_str()" is used only in "prefs.c", and knows about
[obnox/wireshark/wip.git] / mergecap.c
1 /* Combine two dump files, either by appending or by merging by timestamp
2  *
3  * $Id: mergecap.c,v 1.4 2001/07/20 07:22:40 guy Exp $
4  *
5  * Written by Scott Renfro <scott@renfro.org> based on
6  * editcap by Richard Sharpe and Guy Harris
7  *
8  */
9
10 #ifdef HAVE_CONFIG_H
11 #include "config.h"
12 #endif
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <glib.h>
17
18 #ifdef HAVE_UNISTD_H
19 #include <unistd.h>
20 #endif
21
22 #ifdef HAVE_SYS_TIME_H
23 #include <sys/time.h>
24 #endif
25
26 #ifdef HAVE_WINSOCK_H
27 #include <winsock.h>
28 #endif
29
30 #include <string.h>
31 #include "wtap.h"
32
33 #ifdef NEED_GETOPT_H
34 #include "getopt.h"
35 #endif
36
37
38 /*
39  * Global variables
40  */
41 static int verbose = 0;                      /* Not so verbose         */
42
43 /* 
44  * Structures to manage our files
45  */
46 typedef struct in_file_t {
47   const char *filename;
48   wtap       *wth;
49   int         err;
50   int         data_offset;
51   gboolean    ok;
52 } in_file_t;
53
54 typedef struct out_file_t {
55   const char  *filename;
56   wtap_dumper *pdh;
57   int          file_type;
58   int          frame_type;
59   unsigned int snaplen;
60   int          count;
61 } out_file_t;
62 static out_file_t out_file;
63
64 /*
65  * Routine to write frame to output file
66  */
67 static void
68 write_frame(u_char *user, const struct wtap_pkthdr *phdr, int offset,
69             union wtap_pseudo_header *pseudo_header, const u_char *buf) 
70 {
71   wtap_dumper *pdh = (wtap_dumper*)user;
72   int err;
73   struct wtap_pkthdr snap_phdr;
74   
75   if (verbose)
76     printf("Record: %u\n", out_file.count++);
77
78   /* We simply write it, perhaps after truncating it; we could do other
79    * things, like modify it. */
80   if (out_file.snaplen != 0 && phdr->caplen > out_file.snaplen) {
81     snap_phdr = *phdr;
82     snap_phdr.caplen = out_file.snaplen;
83     phdr = &snap_phdr;
84   }
85
86   if (!wtap_dump(pdh, phdr, pseudo_header, buf, &err)) {
87     fprintf(stderr, "mergecap: Error writing to %s: %s\n",
88             out_file.filename, wtap_strerror(err));
89     exit(1);
90   }
91 }
92
93
94 /*
95  * routine to concatenate files
96  */
97 static void
98 append(int count, in_file_t in_files[], out_file_t *out_file)
99 {
100   int i;
101   int err;
102
103   for (i = 0; i < count; i++) {
104     if (!wtap_loop(in_files[i].wth, 0, write_frame,
105                    (u_char*)out_file->pdh, &err)) {
106     fprintf(stderr, "mergecap: Error appending from %s to %s: %s\n",
107             in_files[i].filename, out_file->filename, wtap_strerror(err));
108     }
109   }
110 }
111
112
113 /*
114  * returns TRUE if first argument is earlier than second
115  */
116 static gboolean
117 is_earlier(struct timeval *l, struct timeval *r) {     
118   if (l->tv_sec > r->tv_sec) {  /* left is later */
119     return FALSE;
120   } else if (l->tv_sec < r->tv_sec) { /* left is earlier */
121     return TRUE;
122   } else if (l->tv_usec > r->tv_usec) { /* tv_sec equal, l.usec later */
123     return FALSE;
124   }
125   /* either one < two or one == two
126    * either way, return one
127    */
128   return TRUE;    
129 }
130
131
132 /*
133  * returns index of earliest timestamp in set of input files
134  * or -1 if no valid files remain
135  */
136 static int
137 earliest(int count, in_file_t in_files[]) {
138   int i;
139   int ei = -1;
140   struct timeval tv = {LONG_MAX, LONG_MAX};
141
142   for (i = 0; i < count; i++) {
143     struct wtap_pkthdr *phdr = wtap_phdr(in_files[i].wth);
144
145     if (in_files[i].ok && is_earlier(&(phdr->ts), &tv)) {
146       tv = phdr->ts;
147       ei = i;
148     }
149   }
150   return ei;
151 }
152  
153 /*
154  * actually merge the files
155  */
156 static void
157 merge(int count, in_file_t in_files[], out_file_t *out_file)
158 {
159   int i;
160
161   /* prime the pump (read in first frame from each file) */
162   for (i = 0; i < count; i++) {
163     in_files[i].ok = wtap_read(in_files[i].wth, &(in_files[i].err),
164                                &(in_files[i].data_offset));
165   }
166
167   /* now keep writing the earliest frame until we're out of frames */
168   while ( -1 != (i = earliest(count, in_files))) {
169     
170     /* write out earliest frame, and fetch another from its
171      * input file
172      */
173     write_frame((u_char*)out_file->pdh,
174                 wtap_phdr(in_files[i].wth),
175                 in_files[i].data_offset,
176                 wtap_pseudoheader(in_files[i].wth),
177                 wtap_buf_ptr(in_files[i].wth));
178     in_files[i].ok = wtap_read(in_files[i].wth, &(in_files[i].err),
179                                 &(in_files[i].data_offset));
180   }
181 }
182
183
184 /*
185  * Select an output frame type based on the input files
186  * From Guy: If all files have the same frame type, then use that.
187  *           Otherwise select WTAP_ENCAP_PER_PACKET.  If the selected
188  *           output file type doesn't support per packet frame types,
189  *           then the wtap_dump_open call will fail with a reasonable
190  *           error condition.
191  */
192 static int
193 select_frame_type(int count, in_file_t files[])
194 {
195   int i;
196   int selected_frame_type;
197   
198   selected_frame_type = wtap_file_encap(files[0].wth);
199   
200   for (i = 1; i < count; i++) {
201     int this_frame_type = wtap_file_encap(files[i].wth);
202     if (selected_frame_type != this_frame_type) {
203       selected_frame_type = WTAP_ENCAP_PER_PACKET;
204       if (verbose) {
205         fprintf(stderr, "mergecap: multiple frame encapsulation types detected\n");
206         fprintf(stderr, "          defaulting to WTAP_ENCAP_PER_PACKET\n");
207         fprintf(stderr, "          %s had type %s (%s)\n",
208                 files[0].filename,
209                 wtap_encap_string(selected_frame_type),
210                 wtap_encap_short_string(selected_frame_type));
211         fprintf(stderr, "          %s had type %s (%s)\n",
212                 files[i].filename,
213                 wtap_encap_string(this_frame_type),
214                 wtap_encap_short_string(this_frame_type));
215       }
216       break;
217     }
218   }
219   
220   if (verbose) {
221       fprintf(stderr, "mergecap: selected frame_type %s (%s)\n",
222               wtap_encap_string(selected_frame_type),
223               wtap_encap_short_string(selected_frame_type));
224   }
225
226   return selected_frame_type;
227 }
228     
229
230 /*
231  * Close the output file
232  */
233 static void
234 close_outfile(out_file_t *out_file)
235 {
236   int err;
237   if (!wtap_dump_close(out_file->pdh, &err)) {
238     fprintf(stderr, "mergecap: Error closing file %s: %s\n",
239             out_file->filename, wtap_strerror(err));
240     exit(1);
241   }
242 }
243
244
245 /*
246  * Open the output file
247  *
248  * Return FALSE if file cannot be opened (so caller can clean up)
249  */
250 static gboolean
251 open_outfile(out_file_t *out_file, int snapshot_len)
252 {
253   int err;
254   if (!out_file) {
255     fprintf(stderr, "mergecap: internal error (null out_file)\n");
256     exit(1);
257   }
258
259   out_file->pdh = wtap_dump_open(out_file->filename, out_file->file_type,
260                                  out_file->frame_type, snapshot_len, &err);
261   if (!out_file->pdh) {
262     fprintf(stderr, "mergecap: Can't open/create %s:\n", out_file->filename);
263     fprintf(stderr, "          %s\n", wtap_strerror(err));
264     return FALSE;
265   }
266   return TRUE;
267 }
268
269
270 /*
271  * Scan through input files and find maximum snapshot length
272  */
273 static int
274 max_snapshot_length(int count, in_file_t in_files[])
275 {
276   int i;
277   int max_snapshot = 0;
278
279   for (i = 0; i < count; i++) {
280     if (wtap_snapshot_length(in_files[i].wth) > max_snapshot)
281       max_snapshot = wtap_snapshot_length(in_files[i].wth);
282   }
283   return max_snapshot;
284 }
285
286
287 /*
288  * Scan through and close each input file
289  */
290 static void
291 close_in_files(int count, in_file_t in_files[])
292 {
293   int i;
294   for (i = 0; i < count; i++) {
295     wtap_close(in_files[i].wth);
296   }
297 }
298
299
300 /*
301  * Scan through the arguments and open the input files
302  */
303 static int
304 open_in_files(int argc, char *argv[], in_file_t *in_files[])
305 {
306   int i;
307   int count = 0;
308   int err;
309   in_file_t *files;
310   int files_size = argc * sizeof(in_file_t);
311   
312
313   files = malloc(files_size);
314   if (!files) {
315     fprintf(stderr, "mergecap: error allocating %d bytes of memory\n",
316             files_size);
317     exit(1);
318   }
319   *in_files = files;
320
321   for (i = 0; i < argc; i++) {
322     files[count].filename    = argv[i];
323     files[count].wth         = wtap_open_offline(argv[i], &err, FALSE);
324     files[count].err         = 0;
325     files[count].data_offset = 0;
326     files[count].ok          = TRUE;
327     if (!files[count].wth) {
328       fprintf(stderr, "mergecap: skipping %s: %s\n", argv[i],
329               wtap_strerror(err));
330     } else {
331       if (verbose) {
332         fprintf(stderr, "mergecap: %s is type %s.\n", argv[i],
333                 wtap_file_type_string(wtap_file_type(files[count].wth)));
334       }
335       count++;
336     }
337   }
338   if (verbose)
339     fprintf(stderr, "mergecap: opened %d of %d input files\n", count,
340     argc);
341
342   return count;
343 }
344
345
346 /*
347  * Show the usage
348  */  
349 static void
350 usage()
351 {
352   int i;
353   const char *string;
354
355   fprintf(stderr, "Usage: mergecap [-hva] [-s <snaplen>] [-T <encap type>]\n");
356   fprintf(stderr, "          [-F <capture type>] -w <outfile> <infile> [...]\n\n");
357   fprintf(stderr, "  where\t-h produces this help listing.\n");
358   fprintf(stderr, "       \t-v verbose operation, default is silent\n");
359   fprintf(stderr, "       \t-a files should be concatenated, not merged\n");
360   fprintf(stderr, "       \t     Default merges based on frame timestamps\n");
361   fprintf(stderr, "       \t-s <snaplen>: truncate packets to <snaplen> bytes of data\n");
362   fprintf(stderr, "       \t-w <outfile>: sets output filename to <outfile>\n");
363   fprintf(stderr, "       \t-T <encap type> encapsulation type to use:\n");
364   for (i = 0; i < WTAP_NUM_ENCAP_TYPES; i++) {
365       string = wtap_encap_short_string(i);
366       if (string != NULL)
367         fprintf(stderr, "       \t     %s - %s\n",
368           string, wtap_encap_string(i));
369   }
370   fprintf(stderr, "       \t     default is the same as the first input file\n");
371   fprintf(stderr, "       \t-F <capture type> capture file type to write:\n");
372   for (i = 0; i < WTAP_NUM_FILE_TYPES; i++) {
373     if (wtap_dump_can_open(i))
374       fprintf(stderr, "       \t     %s - %s\n",
375         wtap_file_type_short_string(i), wtap_file_type_string(i));
376   }
377   fprintf(stderr, "       \t     default is libpcap\n");
378 }
379
380
381
382 int
383 main(int argc, char *argv[])
384 {
385   extern char *optarg;
386   extern int   optind;
387   int          opt;
388   char        *p;
389   gboolean     do_append     = FALSE;
390   int          in_file_count = 0;
391   in_file_t   *in_files      = NULL;
392   
393   /* initialize out_file */
394   out_file.filename   = NULL;   
395   out_file.pdh        = NULL;              /* wiretap dumpfile */
396   out_file.file_type  = WTAP_FILE_PCAP;    /* default to "libpcap" */
397   out_file.frame_type = -2;                /* leave type alone */
398   out_file.snaplen    = 0;                 /* no limit */
399   out_file.count      = 1;                 /* frames output */
400
401   /* Process the options first */
402   while ((opt = getopt(argc, argv, "hvas:T:F:w:")) != EOF) {
403
404     switch (opt) {
405     case 'w':
406       out_file.filename = optarg;
407       break;
408         
409     case 'a':
410       do_append = !do_append;
411       break;
412     
413     case 'T':
414       out_file.frame_type = wtap_short_string_to_encap(optarg);
415       if (out_file.frame_type < 0) {
416         fprintf(stderr, "mergecap: \"%s\" is not a valid encapsulation type\n",
417             optarg);
418         exit(1);
419       }
420       break;
421
422     case 'F':
423       out_file.file_type = wtap_short_string_to_file_type(optarg);
424       if (out_file.file_type < 0) {
425         fprintf(stderr, "mergecap: \"%s\" is not a valid capture file type\n",
426             optarg);
427         exit(1);
428       }
429       break;
430
431     case 'v':
432       verbose = !verbose;  /* Just invert */
433       break;
434
435     case 's':
436       out_file.snaplen = strtol(optarg, &p, 10);
437       if (p == optarg || *p != '\0') {
438         fprintf(stderr, "mergecap: \"%s\" is not a valid snapshot length\n",
439             optarg);
440         exit(1);
441       }
442       break;
443
444     case 'h':
445       fprintf(stderr, "mergecap version %s\n", VERSION);
446       usage();
447       exit(1);
448       break;
449
450     case '?':              /* Bad options if GNU getopt */
451       usage();
452       exit(1);
453       break;
454
455     }
456
457   }
458
459   /* check for proper args; at a minimum, must have an output
460    * filename and one input file
461    */
462   in_file_count = argc - optind;
463   if (!out_file.filename) {
464     fprintf(stderr, "mergecap: an output filename must be set with -w\n");
465     usage();
466     exit(1);
467   }
468
469   /* open the input files */
470   in_file_count = open_in_files(in_file_count, &argv[optind], &in_files);
471   if (in_file_count < 1) {
472     fprintf(stderr, "mergecap: No valid input files\n");
473     exit(1);
474   }
475
476   /* set the outfile frame type */
477   if (out_file.frame_type == -2)
478     out_file.frame_type = select_frame_type(in_file_count, in_files);
479   
480   /* open the outfile */
481   if (!open_outfile(&out_file, max_snapshot_length(in_file_count, in_files))) {
482     close_in_files(in_file_count, in_files);
483     exit(1);
484   }
485
486   /* do the merge (or append) */
487   if (do_append)
488     append(in_file_count, in_files, &out_file);
489   else
490     merge(in_file_count, in_files, &out_file);
491
492   close_in_files(in_file_count, in_files);
493   close_outfile(&out_file);
494
495   free(in_files);
496
497   return 0;
498 }