aboutsummaryrefslogtreecommitdiffstats
path: root/mergecap.c
blob: e6730175d34c195a4fd1ac7531ea0058eae6daa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/* Combine two dump files, either by appending or by merging by timestamp
 *
 * $Id: mergecap.c,v 1.1 2001/07/12 19:59:39 guy Exp $
 *
 * Written by Scott Renfro <scott@renfro.org> based on
 * editcap by Richard Sharpe and Guy Harris
 *
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdio.h>
#include <stdlib.h>
#include <glib.h>

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif

#ifdef HAVE_WINSOCK_H
#include <winsock.h>
#endif

#include <string.h>
#include "wtap.h"

#ifdef NEED_GETOPT_H
#include "getopt.h"
#endif

#ifndef MAX
# define MAX(a,b) ((a)>(b))?(a):(b)
#endif

/*
 * Some globals so we can pass things to various routines
 */
static int count = 1;
static int out_file_type = WTAP_FILE_PCAP;   /* default to "libpcap"   */
static int out_frame_type = -2;              /* Leave frame type alone */
static int verbose = 0;                      /* Not so verbose         */
static int do_append  = 0;                   /* append, don't merge */
static unsigned int snaplen = 0;             /* No limit               */


/*
 * Routine to write frame to output file
 */
static void
write_frame(u_char *user, const struct wtap_pkthdr *phdr, int offset,
            union wtap_pseudo_header *pseudo_header, const u_char *buf) 
{
  wtap_dumper *pdh = (wtap_dumper*)user;
  int err;
  struct wtap_pkthdr snap_phdr;

  if (verbose)
    printf("Record: %u\n", count++);

  /* We simply write it, perhaps after truncating it; we could do other
   * things, like modify it. */
  if (snaplen != 0 && phdr->caplen > snaplen) {
    snap_phdr = *phdr;
    snap_phdr.caplen = snaplen;
    phdr = &snap_phdr;
  }

  if (!wtap_dump(pdh, phdr, pseudo_header, buf, &err)) {
    fprintf(stderr, "editcap: Error writing to output: %s\n",
            wtap_strerror(err));
    exit(1);
  }
}

/*
 * routine to append file2 to file1
 */
static void
append(wtap *wth_1, wtap *wth_2, wtap_dumper *pdh)
{
  int err;
  
  if (!wtap_loop(wth_1, 0, write_frame, (u_char*)pdh, &err)) {
    fprintf(stderr, "mergecap: Error appending: %s\n",
            wtap_strerror(err));
  }
  if (!wtap_loop(wth_2, 0, write_frame, (u_char*)pdh, &err)) {
    fprintf(stderr, "mergecap: Error appending: %s\n",
            wtap_strerror(err));
  }
}

/*
 * judges whether the first argument has an earlier
 * timestamp than the second
 */
static gboolean
is_earlier(struct wtap_pkthdr *one, struct wtap_pkthdr *two)
{
  if (one->ts.tv_sec > two->ts.tv_sec) {
    return FALSE;
  } else if (one->ts.tv_sec < two->ts.tv_sec) {
    return TRUE;
  } else if (one->ts.tv_usec > two->ts.tv_usec) {
    return FALSE;
  }
  /* either one < two or one == two
   * either way, return one
   */
  return TRUE;    
}

/*
 * actually merge the files
 */
static void
merge(wtap *wth_1, wtap *wth_2, wtap_dumper *pdh)
{
  int err;
  int data_offset_1, data_offset_2, loop = 0;
  gboolean ok_1, ok_2;

  ok_1 = wtap_read(wth_1, &err, &data_offset_1);
  ok_2 = wtap_read(wth_2, &err, &data_offset_2);

  while (ok_1 && ok_2) {

    /* if wth_1 is earlier, then write it and fetch another
     * otherwise, write wth_2 and increment it
     */
    if (is_earlier(wtap_phdr(wth_1), wtap_phdr(wth_2))) {
      write_frame((u_char*)pdh, wtap_phdr(wth_1), data_offset_1,
                  wtap_pseudoheader(wth_1), wtap_buf_ptr(wth_1));
      ok_1 = wtap_read(wth_1, &err, &data_offset_1);
    } else{
      write_frame((u_char*)pdh, wtap_phdr(wth_2), data_offset_2,
                  wtap_pseudoheader(wth_2), wtap_buf_ptr(wth_2));
      ok_2 = wtap_read(wth_2, &err, &data_offset_2);
    }
  }
  
  while (ok_1) {
    write_frame((u_char*)pdh, wtap_phdr(wth_1), data_offset_1,
                wtap_pseudoheader(wth_1), wtap_buf_ptr(wth_1));
    ok_1 = wtap_read(wth_1, &err, &data_offset_1);
  }
  while (ok_2) {
    write_frame((u_char*)pdh, wtap_phdr(wth_2), data_offset_2,
                wtap_pseudoheader(wth_2), wtap_buf_ptr(wth_2));
    ok_2 = wtap_read(wth_2, &err, &data_offset_2);
  }
}

/*
 * routine to open the input and output files, then call the merge
 */
static void
merge_files(const char *from1, const char *from2, const char *into)
{
  int err;
  wtap *wth_1, *wth_2;
  wtap_dumper *pdh;
  
  /* open the input files */
  wth_1 = wtap_open_offline(from1, &err, FALSE);
  if (!wth_1) {
    fprintf(stderr, "mergecap: Can't open %s: %s\n", from1,
            wtap_strerror(err));
    exit(1);
  }
  
  wth_2 = wtap_open_offline(from2, &err, FALSE);
  if (!wth_2) {
    fprintf(stderr, "mergecap: Can't open %s: %s\n", from2,
            wtap_strerror(err));
    wtap_close(wth_1);
    exit(1); 
  }

  if (verbose) {
    fprintf(stderr, "File %s is a %s capture file.\n", from1,
            wtap_file_type_string(wtap_file_type(wth_1)));
    fprintf(stderr, "File %s is a %s capture file.\n", from2,
            wtap_file_type_string(wtap_file_type(wth_2)));
  }
    
  /* open the output file */
  if (out_frame_type == -2)
    out_frame_type = wtap_file_encap(wth_1);
  pdh = wtap_dump_open(into, out_file_type, out_frame_type,
                       MAX(wtap_snapshot_length(wth_1),
                           wtap_snapshot_length(wth_2)), &err);
  if (!pdh) {
    fprintf(stderr, "mergecap: Can't open/create %s: %s\n", into,
            wtap_strerror(err));
    wtap_close(wth_1);
    wtap_close(wth_2);
    exit(1);
  }
  
  if (do_append)
    append(wth_1, wth_2, pdh);
  else
    merge(wth_1, wth_2, pdh);
  
  wtap_close(wth_1);
  wtap_close(wth_2);
  if (!wtap_dump_close(pdh, &err)) {
    fprintf(stderr, "mergecap: Error writing to %s: %s\n", into,
            wtap_strerror(err));
    exit(1);
  }
}

void usage()
{
  int i;
  const char *string;

  fprintf(stderr, "Usage: mergecap [-v] [-a] [-s <snaplen>]\n");
  fprintf(stderr, "                [-T <encap type>] [-F <capture type>]\n");
  fprintf(stderr, "                <infile1> <infile2> <outfile>\n\n");
  fprintf(stderr, "  where\t-a infile2 should be appended, not merged.\n");
  fprintf(stderr, "       \t   Default merges based on frame timestamps.\n");
  fprintf(stderr, "       \t-s <snaplen> truncate packets to <snaplen>\n");
  fprintf(stderr, "       \t   bytes of data\n");
  fprintf(stderr, "       \t-v verbose operation, default is silent\n");
  fprintf(stderr, "       \t-h produces this help listing.\n");
  fprintf(stderr, "       \t-T <encap type> encapsulation type to use:\n");
  for (i = 0; i < WTAP_NUM_ENCAP_TYPES; i++) {
      string = wtap_encap_short_string(i);
      if (string != NULL)
        fprintf(stderr, "       \t    %s - %s\n",
          string, wtap_encap_string(i));
  }
  fprintf(stderr, "       \t    default is the same as the first input file\n");
  fprintf(stderr, "       \t-F <capture type> capture file type to write:\n");
  for (i = 0; i < WTAP_NUM_FILE_TYPES; i++) {
    if (wtap_dump_can_open(i))
      fprintf(stderr, "       \t    %s - %s\n",
        wtap_file_type_short_string(i), wtap_file_type_string(i));
  }
  fprintf(stderr, "       \t    default is libpcap\n");
}

int
main(int argc, char *argv[])
{
  wtap *wth;
  int i, err;
  extern char *optarg;
  extern int optind;
  char opt;
  char *p;

  /* Process the options first */
  while ((opt = getopt(argc, argv, "aT:F:vs:h")) != EOF) {

    switch (opt) {
    case 'a':
      do_append = !do_append;
      break;
    
    case 'T':
      out_frame_type = wtap_short_string_to_encap(optarg);
      if (out_frame_type < 0) {
      	fprintf(stderr, "mergecap: \"%s\" is not a valid encapsulation type\n",
      	    optarg);
      	exit(1);
      }
      break;

    case 'F':
      out_file_type = wtap_short_string_to_file_type(optarg);
      if (out_file_type < 0) {
      	fprintf(stderr, "editcap: \"%s\" is not a valid capture file type\n",
      	    optarg);
      	exit(1);
      }
      break;

    case 'v':
      verbose = !verbose;  /* Just invert */
      break;

    case 's':
      snaplen = strtol(optarg, &p, 10);
      if (p == optarg || *p != '\0') {
      	fprintf(stderr, "editcap: \"%s\" is not a valid snapshot length\n",
      	    optarg);
      	exit(1);
      }
      break;

    case 'h':
      fprintf(stderr, "mergecap version %s\n", VERSION);
      usage();
      exit(1);
      break;

    case '?':              /* Bad options if GNU getopt */
      usage();
      exit(1);
      break;

    }

  }

  /* should now have three arguments left: infile1, infile2, outfile */
#ifdef DEBUG
  printf("Optind = %i, argc = %i\n", optind, argc);
#endif

  if ((argc - optind) < 3) {
    usage();
    exit(1);
  }

  merge_files(argv[optind], argv[optind+1], argv[optind+2]);

  return 0;
}