089ef0254daa28d246f8ae3ee5271647b0f9b3a9
[metze/wireshark/wip.git] / mergecap.c
1 /* Combine dump files, either by appending or by merging by timestamp
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  * Mergecap written by Scott Renfro <scott@renfro.org> based on
22  * editcap by Richard Sharpe and Guy Harris
23  *
24  */
25
26 #include <config.h>
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <errno.h>
31 #include <glib.h>
32
33 #ifdef HAVE_GETOPT_H
34 #include <getopt.h>
35 #endif
36
37 #include <string.h>
38
39 #include <wiretap/wtap.h>
40
41 #ifndef HAVE_GETOPT_LONG
42 #include <wsutil/wsgetopt.h>
43 #endif
44
45 #include <wsutil/clopts_common.h>
46 #include <wsutil/cmdarg_err.h>
47 #include <wsutil/crash_info.h>
48 #include <wsutil/filesystem.h>
49 #include <wsutil/file_util.h>
50 #include <wsutil/privileges.h>
51 #include <wsutil/strnatcmp.h>
52 #include <ws_version_info.h>
53
54 #ifdef HAVE_PLUGINS
55 #include <wsutil/plugins.h>
56 #endif
57
58 #include <wsutil/report_err.h>
59
60 #include <wiretap/merge.h>
61
62 #ifdef _WIN32
63 #include <wsutil/unicode-utils.h>
64 #endif /* _WIN32 */
65
66 /*
67  * Show the usage
68  */
69 static void
70 print_usage(FILE *output)
71 {
72   fprintf(output, "\n");
73   fprintf(output, "Usage: mergecap [options] -w <outfile>|- <infile> [<infile> ...]\n");
74   fprintf(output, "\n");
75   fprintf(output, "Output:\n");
76   fprintf(output, "  -a                concatenate rather than merge files.\n");
77   fprintf(output, "                    default is to merge based on frame timestamps.\n");
78   fprintf(output, "  -s <snaplen>      truncate packets to <snaplen> bytes of data.\n");
79   fprintf(output, "  -w <outfile>|-    set the output filename to <outfile> or '-' for stdout.\n");
80   fprintf(output, "  -F <capture type> set the output file type; default is pcapng.\n");
81   fprintf(output, "                    an empty \"-F\" option will list the file types.\n");
82   fprintf(output, "  -I <IDB merge mode> set the merge mode for Interface Description Blocks; default is 'all'.\n");
83   fprintf(output, "                    an empty \"-I\" option will list the merge modes.\n");
84   fprintf(output, "\n");
85   fprintf(output, "Miscellaneous:\n");
86   fprintf(output, "  -h                display this help and exit.\n");
87   fprintf(output, "  -v                verbose output.\n");
88 }
89
90 /*
91  * Report an error in command-line arguments.
92  */
93 static void
94 mergecap_cmdarg_err(const char *fmt, va_list ap)
95 {
96   fprintf(stderr, "mergecap: ");
97   vfprintf(stderr, fmt, ap);
98   fprintf(stderr, "\n");
99 }
100
101 /*
102  * Report additional information for an error in command-line arguments.
103  */
104 static void
105 mergecap_cmdarg_err_cont(const char *fmt, va_list ap)
106 {
107   vfprintf(stderr, fmt, ap);
108   fprintf(stderr, "\n");
109 }
110
111 struct string_elem {
112   const char *sstr;     /* The short string */
113   const char *lstr;     /* The long string */
114 };
115
116 static gint
117 string_compare(gconstpointer a, gconstpointer b)
118 {
119   return strcmp(((const struct string_elem *)a)->sstr,
120                 ((const struct string_elem *)b)->sstr);
121 }
122
123 static void
124 string_elem_print(gpointer data, gpointer not_used _U_)
125 {
126   fprintf(stderr, "    %s - %s\n", ((struct string_elem *)data)->sstr,
127           ((struct string_elem *)data)->lstr);
128 }
129
130 #ifdef HAVE_PLUGINS
131 /*
132  * General errors are reported with an console message in mergecap.
133  */
134 static void
135 failure_message(const char *msg_format, va_list ap)
136 {
137   fprintf(stderr, "mergecap: ");
138   vfprintf(stderr, msg_format, ap);
139   fprintf(stderr, "\n");
140 }
141 #endif
142
143 static void
144 list_capture_types(void) {
145   int i;
146   struct string_elem *captypes;
147   GSList *list = NULL;
148
149   captypes = g_new(struct string_elem,WTAP_NUM_FILE_TYPES_SUBTYPES);
150
151   fprintf(stderr, "mergecap: The available capture file types for the \"-F\" flag are:\n");
152   for (i = 0; i < WTAP_NUM_FILE_TYPES_SUBTYPES; i++) {
153     if (wtap_dump_can_open(i)) {
154       captypes[i].sstr = wtap_file_type_subtype_short_string(i);
155       captypes[i].lstr = wtap_file_type_subtype_string(i);
156       list = g_slist_insert_sorted(list, &captypes[i], string_compare);
157     }
158   }
159   g_slist_foreach(list, string_elem_print, NULL);
160   g_slist_free(list);
161   g_free(captypes);
162 }
163
164 static void
165 list_idb_merge_modes(void) {
166   int i;
167
168   fprintf(stderr, "mergecap: The available IDB merge modes for the \"-I\" flag are:\n");
169   for (i = 0; i < IDB_MERGE_MODE_MAX; i++) {
170     fprintf(stderr, "    %s\n", merge_idb_merge_mode_to_string(i));
171   }
172 }
173
174 static gboolean
175 merge_callback(merge_event event, int num,
176                const merge_in_file_t in_files[], const guint in_file_count,
177                void *data _U_)
178 {
179   guint i;
180
181   switch (event) {
182
183     case MERGE_EVENT_INPUT_FILES_OPENED:
184       for (i = 0; i < in_file_count; i++) {
185         fprintf(stderr, "mergecap: %s is type %s.\n", in_files[i].filename,
186                 wtap_file_type_subtype_string(wtap_file_type_subtype(in_files[i].wth)));
187       }
188       break;
189
190     case MERGE_EVENT_FRAME_TYPE_SELECTED:
191       /* for this event, num = frame_type */
192       if (num == WTAP_ENCAP_PER_PACKET) {
193         /*
194          * Find out why we had to choose WTAP_ENCAP_PER_PACKET.
195          */
196         int first_frame_type, this_frame_type;
197
198         first_frame_type = wtap_file_encap(in_files[0].wth);
199         for (i = 1; i < in_file_count; i++) {
200           this_frame_type = wtap_file_encap(in_files[i].wth);
201           if (first_frame_type != this_frame_type) {
202             fprintf(stderr, "mergecap: multiple frame encapsulation types detected\n");
203             fprintf(stderr, "          defaulting to WTAP_ENCAP_PER_PACKET\n");
204             fprintf(stderr, "          %s had type %s (%s)\n",
205                     in_files[0].filename,
206                     wtap_encap_string(first_frame_type),
207                     wtap_encap_short_string(first_frame_type));
208             fprintf(stderr, "          %s had type %s (%s)\n",
209                     in_files[i].filename,
210                     wtap_encap_string(this_frame_type),
211                     wtap_encap_short_string(this_frame_type));
212             break;
213           }
214         }
215       }
216       fprintf(stderr, "mergecap: selected frame_type %s (%s)\n",
217               wtap_encap_string(num),
218               wtap_encap_short_string(num));
219       break;
220
221     case MERGE_EVENT_READY_TO_MERGE:
222       fprintf(stderr, "mergecap: ready to merge records\n");
223       break;
224
225     case MERGE_EVENT_PACKET_WAS_READ:
226       /* for this event, num = count */
227       fprintf(stderr, "Record: %d\n", num);
228       break;
229
230     case MERGE_EVENT_DONE:
231       fprintf(stderr, "mergecap: merging complete\n");
232       break;
233   }
234
235   /* false = do not stop merging */
236   return FALSE;
237 }
238
239
240 int
241 main(int argc, char *argv[])
242 {
243   GString            *comp_info_str;
244   GString            *runtime_info_str;
245   int                 opt;
246   static const struct option long_options[] = {
247       {"help", no_argument, NULL, 'h'},
248       {"version", no_argument, NULL, 'V'},
249       {0, 0, 0, 0 }
250   };
251   gboolean            do_append          = FALSE;
252   gboolean            verbose            = FALSE;
253   int                 in_file_count      = 0;
254   guint               snaplen            = 0;
255 #ifdef PCAP_NG_DEFAULT
256   int                 file_type          = WTAP_FILE_TYPE_SUBTYPE_PCAPNG; /* default to pcap format */
257 #else
258   int                 file_type          = WTAP_FILE_TYPE_SUBTYPE_PCAP; /* default to pcapng format */
259 #endif
260   int                 out_fd;
261   int                 err                = 0;
262   gchar              *err_info           = NULL;
263   int                 err_fileno;
264   char               *out_filename       = NULL;
265   merge_result        status;
266   idb_merge_mode      mode               = IDB_MERGE_MODE_MAX;
267   gboolean            use_stdout         = FALSE;
268   merge_progress_callback_t cb;
269
270 #ifdef HAVE_PLUGINS
271   char  *init_progfile_dir_error;
272 #endif
273
274   cmdarg_err_init(mergecap_cmdarg_err, mergecap_cmdarg_err_cont);
275
276 #ifdef _WIN32
277   arg_list_utf_16to8(argc, argv);
278   create_app_running_mutex();
279 #endif /* _WIN32 */
280
281   /* Get the compile-time version information string */
282   comp_info_str = get_compiled_version_info(NULL, NULL);
283
284   /* Get the run-time version information string */
285   runtime_info_str = get_runtime_version_info(NULL);
286
287   /* Add it to the information to be reported on a crash. */
288   ws_add_crash_info("Mergecap (Wireshark) %s\n"
289        "\n"
290        "%s"
291        "\n"
292        "%s",
293     get_ws_vcs_version_info(), comp_info_str->str, runtime_info_str->str);
294
295   /*
296    * Get credential information for later use.
297    */
298   init_process_policies();
299   init_open_routines();
300
301 #ifdef HAVE_PLUGINS
302   /* Register wiretap plugins */
303   if ((init_progfile_dir_error = init_progfile_dir(argv[0], main))) {
304     g_warning("mergecap: init_progfile_dir(): %s", init_progfile_dir_error);
305     g_free(init_progfile_dir_error);
306   } else {
307     /* Register all the plugin types we have. */
308     wtap_register_plugin_types(); /* Types known to libwiretap */
309
310     init_report_err(failure_message,NULL,NULL,NULL);
311
312     /* Scan for plugins.  This does *not* call their registration routines;
313        that's done later.
314
315        Don't report failures to load plugins because most (non-wiretap)
316        plugins *should* fail to load (because we're not linked against
317        libwireshark and dissector plugins need libwireshark).*/
318     scan_plugins(DONT_REPORT_LOAD_FAILURE);
319
320     /* Register all libwiretap plugin modules. */
321     register_all_wiretap_modules();
322   }
323 #endif
324
325   /* Process the options first */
326   while ((opt = getopt_long(argc, argv, "aF:hI:s:vVw:", long_options, NULL)) != -1) {
327
328     switch (opt) {
329     case 'a':
330       do_append = !do_append;
331       break;
332
333     case 'F':
334       file_type = wtap_short_string_to_file_type_subtype(optarg);
335       if (file_type < 0) {
336         fprintf(stderr, "mergecap: \"%s\" isn't a valid capture file type\n",
337                 optarg);
338         list_capture_types();
339         exit(1);
340       }
341       break;
342
343     case 'h':
344       printf("Mergecap (Wireshark) %s\n"
345              "Merge two or more capture files into one.\n"
346              "See https://www.wireshark.org for more information.\n",
347              get_ws_vcs_version_info());
348       print_usage(stdout);
349       exit(0);
350       break;
351
352     case 'I':
353       mode = merge_string_to_idb_merge_mode(optarg);
354       if (mode == IDB_MERGE_MODE_MAX) {
355         fprintf(stderr, "mergecap: \"%s\" isn't a valid IDB merge mode\n",
356                 optarg);
357         list_idb_merge_modes();
358         exit(1);
359       }
360       break;
361
362     case 's':
363       snaplen = get_positive_int(optarg, "snapshot length");
364       break;
365
366     case 'v':
367       verbose = TRUE;
368       break;
369
370     case 'V':
371       show_version("Mergecap (Wireshark)", comp_info_str, runtime_info_str);
372       g_string_free(comp_info_str, TRUE);
373       g_string_free(runtime_info_str, TRUE);
374       exit(0);
375       break;
376
377     case 'w':
378       out_filename = optarg;
379       break;
380
381     case '?':              /* Bad options if GNU getopt */
382       switch(optopt) {
383       case'F':
384         list_capture_types();
385         break;
386       case'I':
387         list_idb_merge_modes();
388         break;
389       default:
390         print_usage(stderr);
391       }
392       exit(1);
393       break;
394     }
395   }
396
397   cb.callback_func = merge_callback;
398   cb.data = NULL;
399
400   /* check for proper args; at a minimum, must have an output
401    * filename and one input file
402    */
403   in_file_count = argc - optind;
404   if (!out_filename) {
405     fprintf(stderr, "mergecap: an output filename must be set with -w\n");
406     fprintf(stderr, "          run with -h for help\n");
407     return 1;
408   }
409   if (in_file_count < 1) {
410     fprintf(stderr, "mergecap: No input files were specified\n");
411     return 1;
412   }
413
414   /* setting IDB merge mode must use PCAPNG output */
415   if (mode != IDB_MERGE_MODE_MAX && file_type != WTAP_FILE_TYPE_SUBTYPE_PCAPNG) {
416     fprintf(stderr, "The IDB merge mode can only be used with PCAPNG output format\n");
417     return 1;
418   }
419
420   /* if they didn't set IDB merge mode, set it to our default */
421   if (mode == IDB_MERGE_MODE_MAX) {
422     mode = IDB_MERGE_MODE_ALL_SAME;
423   }
424
425   /* open the outfile */
426   if (strcmp(out_filename, "-") == 0) {
427     /* use stdout as the outfile */
428     use_stdout = TRUE;
429     out_fd = 1 /*stdout*/;
430   } else {
431     /* open the outfile */
432     out_fd = ws_open(out_filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
433     if (out_fd == -1) {
434       fprintf(stderr, "mergecap: Couldn't open output file %s: %s\n",
435               out_filename, g_strerror(errno));
436       exit(1);
437     }
438   }
439
440   /* merge the files */
441   status = merge_files(out_fd, out_filename, file_type,
442                        (const char *const *) &argv[optind], in_file_count,
443                        do_append, mode, snaplen, "mergecap", verbose ? &cb : NULL,
444                        &err, &err_info, &err_fileno);
445
446   switch (status) {
447     case MERGE_OK:
448       break;
449
450     case MERGE_USER_ABORTED:
451       /* we don't catch SIGINT/SIGTERM (yet?), so we couldn't have aborted */
452       g_assert(FALSE);
453       break;
454
455     case MERGE_ERR_CANT_OPEN_INFILE:
456       fprintf(stderr, "mergecap: Can't open %s: %s (%s)\n", argv[optind + err_fileno],
457               wtap_strerror(err), err_info ? err_info : "no more information");
458       break;
459
460     case MERGE_ERR_CANT_OPEN_OUTFILE:
461       fprintf(stderr, "mergecap: Can't open or create %s: %s\n", out_filename,
462                   wtap_strerror(err));
463       if (!use_stdout)
464         ws_close(out_fd);
465       break;
466
467     case MERGE_ERR_CANT_READ_INFILE:      /* fall through */
468     case MERGE_ERR_BAD_PHDR_INTERFACE_ID:
469     case MERGE_ERR_CANT_WRITE_OUTFILE:
470     case MERGE_ERR_CANT_CLOSE_OUTFILE:
471     default:
472       fprintf(stderr, "mergecap: %s\n", err_info ? err_info : "unknown error");
473       break;
474   }
475
476   g_free(err_info);
477
478   return (status == MERGE_OK) ? 0 : 2;
479 }
480
481 /*
482  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
483  *
484  * Local variables:
485  * c-basic-offset: 2
486  * tab-width: 8
487  * indent-tabs-mode: nil
488  * End:
489  *
490  * vi: set shiftwidth=2 tabstop=8 expandtab:
491  * :indentSize=2:tabSize=8:noTabs=true:
492  */
493