GTP: fix indent (use 4 spaces)
[metze/wireshark/wip.git] / wireshark-qt.cpp
1 /* wireshark-qt.cpp
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
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (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
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <config.h>
23
24 #include <glib.h>
25
26 #ifdef Q_OS_UNIX
27 #include <signal.h>
28 #endif
29
30 #ifdef HAVE_LIBZ
31 #include <zlib.h>       /* to get the libz version number */
32 #endif
33
34 #ifdef HAVE_GETOPT_H
35 #include <getopt.h>
36 #endif
37
38 #ifndef HAVE_GETOPT_LONG
39 #include "wsutil/wsgetopt.h"
40 #endif
41
42 #include <wsutil/clopts_common.h>
43 #include <wsutil/cmdarg_err.h>
44 #include <wsutil/crash_info.h>
45 #include <wsutil/filesystem.h>
46 #include <wsutil/privileges.h>
47 #ifdef HAVE_PLUGINS
48 #include <wsutil/plugins.h>
49 #endif
50 #include <wsutil/report_err.h>
51 #include <wsutil/u3.h>
52 #include <wsutil/unicode-utils.h>
53 #include <wsutil/ws_diag_control.h>
54 #include <wsutil/ws_version_info.h>
55
56 #include <epan/addr_resolv.h>
57 #include <epan/ex-opt.h>
58 #include <epan/tap.h>
59 #include <epan/stat_tap_ui.h>
60 #include <epan/column.h>
61 #include <epan/disabled_protos.h>
62
63 #ifdef HAVE_KERBEROS
64 #include <epan/packet.h>
65 #include <epan/asn1.h>
66 #include <epan/dissectors/packet-kerberos.h>
67 #endif
68
69 #ifdef HAVE_PLUGINS
70 #include <codecs/codecs.h>
71 #endif
72
73 /* general (not Qt specific) */
74 #include "file.h"
75 #include "color.h"
76 #include "color_filters.h"
77 #include "log.h"
78
79 #include "epan/rtd_table.h"
80 #include "epan/srt_table.h"
81
82 #include "ui/alert_box.h"
83 #include "ui/console.h"
84 #include "ui/iface_lists.h"
85 #include "ui/language.h"
86 #include "ui/persfilepath_opt.h"
87 #include "ui/recent.h"
88 #include "ui/simple_dialog.h"
89 #include "ui/util.h"
90
91 #include "ui/qt/conversation_dialog.h"
92 #include "ui/qt/endpoint_dialog.h"
93 #include "ui/qt/main_window.h"
94 #include "ui/qt/response_time_delay_dialog.h"
95 #include "ui/qt/service_response_time_dialog.h"
96 #include "ui/qt/simple_dialog.h"
97 #include "ui/qt/simple_statistics_dialog.h"
98 #include "ui/qt/splash_overlay.h"
99 #include "ui/qt/wireshark_application.h"
100
101 #include "caputils/capture-pcap-util.h"
102
103 #ifdef _WIN32
104 #  include "caputils/capture-wpcap.h"
105 #  include "caputils/capture_wpcap_packet.h"
106 #  include <tchar.h> /* Needed for Unicode */
107 #  include <wsutil/file_util.h>
108 #  include <wsutil/os_version_info.h>
109 #endif /* _WIN32 */
110
111 #ifdef HAVE_AIRPCAP
112 #  include <caputils/airpcap.h>
113 #  include <caputils/airpcap_loader.h>
114 //#  include "airpcap_dlg.h"
115 //#  include "airpcap_gui_utils.h"
116 #endif
117
118 #include "epan/crypt/airpdcap_ws.h"
119
120 #if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
121 #include <QTextCodec>
122 #endif
123
124 #if defined(HAVE_LIBPCAP) || defined(HAVE_EXTCAP)
125 capture_options global_capture_opts;
126 #endif
127
128 GString *comp_info_str, *runtime_info_str;
129
130 /* update the main window */
131 void main_window_update(void)
132 {
133     WiresharkApplication::processEvents();
134 }
135
136 #ifdef HAVE_LIBPCAP
137
138 /* quit a nested main window */
139 void main_window_nested_quit(void)
140 {
141 //    if (gtk_main_level() > 0)
142     wsApp->quit();
143 }
144
145 /* quit the main window */
146 void main_window_quit(void)
147 {
148     wsApp->quit();
149 }
150
151 #endif /* HAVE_LIBPCAP */
152
153
154 // xxx copied from ../gtk/main.c
155 static void
156 print_usage(gboolean for_help_option) {
157     FILE *output;
158
159 #ifdef _WIN32
160     create_console();
161 #endif
162
163     if (for_help_option) {
164         output = stdout;
165         fprintf(output, "Wireshark %s\n"
166                 "Interactively dump and analyze network traffic.\n"
167                 "See http://www.wireshark.org for more information.\n",
168                 get_ws_vcs_version_info());
169     } else {
170         output = stderr;
171     }
172     fprintf(output, "\n");
173     fprintf(output, "Usage: wireshark [options] ... [ <infile> ]\n");
174     fprintf(output, "\n");
175
176 #ifdef HAVE_LIBPCAP
177     fprintf(output, "Capture interface:\n");
178     fprintf(output, "  -i <interface>           name or idx of interface (def: first non-loopback)\n");
179     fprintf(output, "  -f <capture filter>      packet filter in libpcap filter syntax\n");
180     fprintf(output, "  -s <snaplen>             packet snapshot length (def: 65535)\n");
181     fprintf(output, "  -p                       don't capture in promiscuous mode\n");
182     fprintf(output, "  -k                       start capturing immediately (def: do nothing)\n");
183     fprintf(output, "  -S                       update packet display when new packets are captured\n");
184     fprintf(output, "  -l                       turn on automatic scrolling while -S is in use\n");
185 #ifdef HAVE_PCAP_CREATE
186     fprintf(output, "  -I                       capture in monitor mode, if available\n");
187 #endif
188 #ifdef CAN_SET_CAPTURE_BUFFER_SIZE
189     fprintf(output, "  -B <buffer size>         size of kernel buffer (def: %dMB)\n", DEFAULT_CAPTURE_BUFFER_SIZE);
190 #endif
191     fprintf(output, "  -y <link type>           link layer type (def: first appropriate)\n");
192     fprintf(output, "  -D                       print list of interfaces and exit\n");
193     fprintf(output, "  -L                       print list of link-layer types of iface and exit\n");
194     fprintf(output, "\n");
195     fprintf(output, "Capture stop conditions:\n");
196     fprintf(output, "  -c <packet count>        stop after n packets (def: infinite)\n");
197     fprintf(output, "  -a <autostop cond.> ...  duration:NUM - stop after NUM seconds\n");
198     fprintf(output, "                           filesize:NUM - stop this file after NUM KB\n");
199     fprintf(output, "                              files:NUM - stop after NUM files\n");
200     /*fprintf(output, "\n");*/
201     fprintf(output, "Capture output:\n");
202     fprintf(output, "  -b <ringbuffer opt.> ... duration:NUM - switch to next file after NUM secs\n");
203     fprintf(output, "                           filesize:NUM - switch to next file after NUM KB\n");
204     fprintf(output, "                              files:NUM - ringbuffer: replace after NUM files\n");
205 #endif  /* HAVE_LIBPCAP */
206 #ifdef HAVE_PCAP_REMOTE
207     fprintf(output, "RPCAP options:\n");
208     fprintf(output, "  -A <user>:<password>     use RPCAP password authentication\n");
209 #endif
210     /*fprintf(output, "\n");*/
211     fprintf(output, "Input file:\n");
212     fprintf(output, "  -r <infile>              set the filename to read from (no pipes or stdin!)\n");
213
214     fprintf(output, "\n");
215     fprintf(output, "Processing:\n");
216     fprintf(output, "  -R <read filter>         packet filter in Wireshark display filter syntax\n");
217     fprintf(output, "  -n                       disable all name resolutions (def: all enabled)\n");
218     fprintf(output, "  -N <name resolve flags>  enable specific name resolution(s): \"mnNtCd\"\n");
219     fprintf(output, "  --disable-protocol <proto_name>\n");
220     fprintf(output, "                           disable dissection of proto_name\n");
221     fprintf(output, "  --enable-heuristic <short_name>\n");
222     fprintf(output, "                           enable dissection of heuristic protocol\n");
223     fprintf(output, "  --disable-heuristic <short_name>\n");
224     fprintf(output, "                           disable dissection of heuristic protocol\n");
225
226     fprintf(output, "\n");
227     fprintf(output, "User interface:\n");
228     fprintf(output, "  -C <config profile>      start with specified configuration profile\n");
229     fprintf(output, "  -Y <display filter>      start with the given display filter\n");
230     fprintf(output, "  -g <packet number>       go to specified packet number after \"-r\"\n");
231     fprintf(output, "  -J <jump filter>         jump to the first packet matching the (display)\n");
232     fprintf(output, "                           filter\n");
233     fprintf(output, "  -j                       search backwards for a matching packet after \"-J\"\n");
234     fprintf(output, "  -m <font>                set the font name used for most text\n");
235     fprintf(output, "  -t a|ad|d|dd|e|r|u|ud    output format of time stamps (def: r: rel. to first)\n");
236     fprintf(output, "  -u s|hms                 output format of seconds (def: s: seconds)\n");
237     fprintf(output, "  -X <key>:<value>         eXtension options, see man page for details\n");
238     fprintf(output, "  -z <statistics>          show various statistics, see man page for details\n");
239
240     fprintf(output, "\n");
241     fprintf(output, "Output:\n");
242     fprintf(output, "  -w <outfile|->           set the output filename (or '-' for stdout)\n");
243
244     fprintf(output, "\n");
245     fprintf(output, "Miscellaneous:\n");
246     fprintf(output, "  -h                       display this help and exit\n");
247     fprintf(output, "  -v                       display version info and exit\n");
248     fprintf(output, "  -P <key>:<path>          persconf:path - personal configuration files\n");
249     fprintf(output, "                           persdata:path - personal data files\n");
250     fprintf(output, "  -o <name>:<value> ...    override preference or recent setting\n");
251     fprintf(output, "  -K <keytab>              keytab file to use for kerberos decryption\n");
252 #ifndef _WIN32
253     fprintf(output, "  --display=DISPLAY        X display to use\n");
254 #endif
255     fprintf(output, "\nNOTE: Not all options are implemented in the Qt port.\n");
256
257 #ifdef _WIN32
258     destroy_console();
259 #endif
260 }
261
262 /*
263  * Report an error in command-line arguments.
264  * Creates a console on Windows.
265  */
266 // xxx copied from ../gtk/main.c
267 static void
268 wireshark_cmdarg_err(const char *fmt, va_list ap)
269 {
270 #ifdef _WIN32
271     create_console();
272 #endif
273     fprintf(stderr, "wireshark: ");
274     vfprintf(stderr, fmt, ap);
275     fprintf(stderr, "\n");
276 }
277
278 /*
279  * Report additional information for an error in command-line arguments.
280  * Creates a console on Windows.
281  * XXX - pop this up in a window of some sort on UNIX+X11 if the controlling
282  * terminal isn't the standard error?
283  */
284 // xxx copied from ../gtk/main.c
285 static void
286 wireshark_cmdarg_err_cont(const char *fmt, va_list ap)
287 {
288 #ifdef _WIN32
289     create_console();
290 #endif
291     vfprintf(stderr, fmt, ap);
292     fprintf(stderr, "\n");
293 }
294
295 // xxx based from ../gtk/main.c:get_gtk_compiled_info
296 static void
297 get_wireshark_qt_compiled_info(GString *str)
298 {
299     g_string_append(str, "with ");
300     g_string_append_printf(str,
301 #ifdef QT_VERSION
302                     "Qt %s", QT_VERSION_STR);
303 #else
304                     "Qt (version unknown)");
305 #endif
306
307     /* Capture libraries */
308     g_string_append(str, ", ");
309     get_compiled_caplibs_version(str);
310
311     /* LIBZ */
312     g_string_append(str, ", ");
313 #ifdef HAVE_LIBZ
314     g_string_append(str, "with libz ");
315 #ifdef ZLIB_VERSION
316     g_string_append(str, ZLIB_VERSION);
317 #else /* ZLIB_VERSION */
318     g_string_append(str, "(version unknown)");
319 #endif /* ZLIB_VERSION */
320 #else /* HAVE_LIBZ */
321     g_string_append(str, "without libz");
322 #endif /* HAVE_LIBZ */
323 }
324
325 // xxx copied from ../gtk/main.c
326 static void
327 get_gui_compiled_info(GString *str)
328 {
329     epan_get_compiled_version_info(str);
330
331     g_string_append(str, ", ");
332     g_string_append(str, "without PortAudio");
333
334     g_string_append(str, ", ");
335 #ifdef HAVE_AIRPCAP
336     get_compiled_airpcap_version(str);
337 #else
338     g_string_append(str, "without AirPcap");
339 #endif
340 }
341
342 // xxx copied from ../gtk/main.c
343 static void
344 get_wireshark_runtime_info(GString *str)
345 {
346 #ifdef HAVE_LIBPCAP
347     /* Capture libraries */
348     g_string_append(str, ", ");
349     get_runtime_caplibs_version(str);
350 #endif
351
352     /* zlib */
353 #if defined(HAVE_LIBZ) && !defined(_WIN32)
354     g_string_append_printf(str, ", with libz %s", zlibVersion());
355 #endif
356
357     /* stuff used by libwireshark */
358     epan_get_runtime_version_info(str);
359
360 #ifdef HAVE_AIRPCAP
361     g_string_append(str, ", ");
362     get_runtime_airpcap_version(str);
363 #endif
364
365     if(u3_active()) {
366         g_string_append(str, ", ");
367         u3_runtime_info(str);
368     }
369 }
370
371 #ifdef HAVE_LIBPCAP
372 /*  Check if there's something important to tell the user during startup.
373  *  We want to do this *after* showing the main window so that any windows
374  *  we pop up will be above the main window.
375  */
376 static void
377 check_and_warn_user_startup(const QString &cf_name)
378 {
379 #ifndef _WIN32
380     Q_UNUSED(cf_name)
381 #endif
382     gchar               *cur_user, *cur_group;
383
384     /* Tell the user not to run as root. */
385     if (running_with_special_privs() && recent.privs_warn_if_elevated) {
386         cur_user = get_cur_username();
387         cur_group = get_cur_groupname();
388         simple_message_box(ESD_TYPE_WARN, &recent.privs_warn_if_elevated,
389         "Running as user \"%s\" and group \"%s\".\n"
390         "This could be dangerous.\n\n"
391         "If you're running Wireshark this way in order to perform live capture, "
392         "you may want to be aware that there is a better way documented at\n"
393         "https://wiki.wireshark.org/CaptureSetup/CapturePrivileges", cur_user, cur_group);
394         g_free(cur_user);
395         g_free(cur_group);
396     }
397
398 #ifdef _WIN32
399     /* Warn the user if npf.sys isn't loaded. */
400     if (!get_stdin_capture() && cf_name.isEmpty() && !npf_sys_is_running() && recent.privs_warn_if_no_npf && get_windows_major_version() >= 6) {
401         simple_message_box(ESD_TYPE_WARN, &recent.privs_warn_if_no_npf, "%s",
402         "The NPF driver isn't running. You may have trouble\n"
403         "capturing or listing interfaces.");
404     }
405 #endif
406
407 }
408 #endif
409
410 #ifdef _WIN32
411 // Try to avoid library search path collisions. QCoreApplication will
412 // search QT_INSTALL_PREFIX/plugins for platform DLLs before searching
413 // the application directory. If
414 //
415 // - You have Qt version 5.x.y installed in the default location
416 //   (C:\Qt\5.x) on your machine.
417 //
418 // and
419 //
420 // - You install Wireshark that was built on a machine with Qt version
421 //   5.x.z installed in the default location.
422 //
423 // Qt5Core.dll will load qwindows.dll from your local C:\Qt\5.x\...\plugins
424 // directory. This may not be compatible with qwindows.dll from that
425 // same path on the build machine. At any rate, loading DLLs from paths
426 // you don't control is ill-advised. We work around this by removing every
427 // path except our application directory.
428
429 static inline void
430 reset_library_path(void)
431 {
432     QString app_path = QDir(get_progfile_dir()).path();
433     foreach (QString path, QCoreApplication::libraryPaths()) {
434         QCoreApplication::removeLibraryPath(path);
435     }
436     QCoreApplication::addLibraryPath(app_path);
437 }
438 #endif
439
440 /* And now our feature presentation... [ fade to music ] */
441 int main(int argc, char *argv[])
442 {
443     MainWindow *main_w;
444
445     int                  opt;
446     gboolean             arg_error = FALSE;
447     char               **ws_argv = argv;
448
449 #ifdef _WIN32
450     WSADATA              wsaData;
451 #endif  /* _WIN32 */
452
453     char                *rf_path;
454     int                  rf_open_errno;
455     char                *gdp_path, *dp_path;
456 #ifdef HAVE_LIBPCAP
457     int                  err;
458     gboolean             start_capture = FALSE;
459     gboolean             list_link_layer_types = FALSE;
460     GList               *if_list;
461     gchar               *err_str;
462     int                  status;
463 #else
464     gboolean             capture_option_specified = FALSE;
465 #ifdef _WIN32
466 #ifdef HAVE_AIRPCAP
467     gchar               *err_str;
468 #endif
469 #endif
470 #endif
471     e_prefs             *prefs_p;
472     char                 badopt;
473     guint                go_to_packet = 0;
474
475     QString              dfilter, read_filter;
476     GSList              *disable_protocol_slist = NULL;
477     GSList              *enable_heur_slist = NULL;
478     GSList              *disable_heur_slist = NULL;
479
480     cmdarg_err_init(wireshark_cmdarg_err, wireshark_cmdarg_err_cont);
481
482     // In Qt 5, C strings are treated always as UTF-8 when converted to
483     // QStrings; in Qt 4, the codec must be set to make that happen
484 #if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
485     // Hopefully we won't have to use QString::fromUtf8() in as many places.
486     QTextCodec *utf8codec = QTextCodec::codecForName("UTF-8");
487     QTextCodec::setCodecForCStrings(utf8codec);
488     // XXX - QObject doesn't *have* a tr method in 5.0, as far as I can see...
489     QTextCodec::setCodecForTr(utf8codec);
490 #endif
491
492     /* Set the C-language locale to the native environment. */
493     // The GTK+ UI calls this. Should we as well?
494     //setlocale(LC_ALL, "");
495 #ifdef _WIN32
496     // QCoreApplication clobbers argv. Let's have a local copy.
497     ws_argv = (char **) g_malloc(sizeof(char *) * argc);
498     for (opt = 0; opt < argc; opt++) {
499         ws_argv[opt] = argv[opt];
500     }
501     arg_list_utf_16to8(argc, ws_argv);
502     create_app_running_mutex();
503 #endif /* _WIN32 */
504
505     /*
506      * Get credential information for later use, and drop privileges
507      * before doing anything else.
508      * Let the user know if anything happened.
509      */
510     init_process_policies();
511     relinquish_special_privs_perm();
512
513     /*
514      * Attempt to get the pathname of the executable file.
515      */
516     /* init_progfile_dir_error = */ init_progfile_dir(ws_argv[0],
517         (void *) get_gui_compiled_info);
518     g_log(NULL, G_LOG_LEVEL_DEBUG, "progfile_dir: %s", get_progfile_dir());
519
520 #ifdef _WIN32
521     /* Load wpcap if possible. Do this before collecting the run-time version information */
522     load_wpcap();
523
524     /* ... and also load the packet.dll from wpcap */
525     wpcap_packet_load();
526
527 #ifdef HAVE_AIRPCAP
528     /* Load the airpcap.dll.  This must also be done before collecting
529      * run-time version information. */
530     load_airpcap();
531 #if 0
532     airpcap_dll_ret_val = load_airpcap();
533
534     switch (airpcap_dll_ret_val) {
535     case AIRPCAP_DLL_OK:
536         /* load the airpcap interfaces */
537         g_airpcap_if_list = get_airpcap_interface_list(&err, &err_str);
538
539         if (g_airpcap_if_list == NULL || g_list_length(g_airpcap_if_list) == 0){
540             if (err == CANT_GET_AIRPCAP_INTERFACE_LIST && err_str != NULL) {
541                 simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "%s", "Failed to open Airpcap Adapters.");
542                 g_free(err_str);
543             }
544             airpcap_if_active = NULL;
545
546         } else {
547
548             /* select the first ad default (THIS SHOULD BE CHANGED) */
549             airpcap_if_active = airpcap_get_default_if(airpcap_if_list);
550         }
551         break;
552     /*
553      * XXX - Maybe we need to warn the user if one of the following happens???
554      */
555     case AIRPCAP_DLL_OLD:
556         simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "%s","AIRPCAP_DLL_OLD\n");
557         break;
558
559     case AIRPCAP_DLL_ERROR:
560         simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "%s","AIRPCAP_DLL_ERROR\n");
561         break;
562
563     case AIRPCAP_DLL_NOT_FOUND:
564         simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "%s","AIRPCAP_DDL_NOT_FOUND\n");
565         break;
566     }
567 #endif
568 #endif /* HAVE_AIRPCAP */
569 #endif /* _WIN32 */
570
571     /* Get the compile-time version information string */
572     // XXX qtshark
573     comp_info_str = get_compiled_version_info(get_wireshark_qt_compiled_info,
574                                               get_gui_compiled_info);
575
576     /* Assemble the run-time version information string */
577     // xxx qtshark
578     runtime_info_str = get_runtime_version_info(get_wireshark_runtime_info);
579
580     /*
581      * In order to have the -X opts assigned before the wslua machine starts
582      * we need to call getopt_long before epan_init() gets called.
583      *
584      * In addition, we process "console only" parameters (ones where we
585      * send output to the console and exit) here, so we don't start Qt
586      * if we're only showing command-line help or version information.
587      *
588      * XXX - this pre-scan is done before we start Qt, so we haven't
589      * run WiresharkApplication's constructor on the arguments.  That
590      * means that Qt arguments have not been removed from the argument
591      * list; those arguments begin with "-", and may be treated as
592      * errors by getopt_long().
593      *
594      * We thus ignore errors - *and* set "opterr" to 0 to suppress the
595      * error messages.
596      *
597      * XXX - is there some way to parse and remove Qt arguments without
598      * starting up the GUI, which we can call before calling this?
599      *
600      * In order to handle, for example, -o options, we also need to call it
601      * *after* epan_init() gets called, so that the dissectors have had a
602      * chance to register their preferences, so we have another getopt_long()
603      * call later.
604      *
605      * XXX - can we do this all with one getopt_long() call, saving the
606      * arguments we can't handle until after initializing libwireshark,
607      * and then process them after initializing libwireshark?
608      *
609      * Note that we don't want to initialize libwireshark until after the
610      * GUI is up, as that can take a while, and we want a window of some
611      * sort up to show progress while that's happening.
612      */
613     // XXX Should the remaining code be in WiresharkApplcation::WiresharkApplication?
614 #define OPTSTRING OPTSTRING_CAPTURE_COMMON "C:g:Hh" "jJ:kK:lm:nN:o:P:r:R:St:u:vw:X:Y:z:"
615 DIAG_OFF(cast-qual)
616     static const struct option long_options[] = {
617         {(char *)"help", no_argument, NULL, 'h'},
618         {(char *)"read-file", required_argument, NULL, 'r' },
619         {(char *)"read-filter", required_argument, NULL, 'R' },
620         {(char *)"display-filter", required_argument, NULL, 'Y' },
621         {(char *)"version", no_argument, NULL, 'v'},
622         LONGOPT_CAPTURE_COMMON
623         {0, 0, 0, 0 }
624     };
625 DIAG_ON(cast-qual)
626     static const char optstring[] = OPTSTRING;
627
628     opterr = 0;
629
630     while ((opt = getopt_long(argc, ws_argv, optstring, long_options, NULL)) != -1) {
631         switch (opt) {
632             case 'C':        /* Configuration Profile */
633                 if (profile_exists (optarg, FALSE)) {
634                     set_profile_name (optarg);
635                 } else {
636                     cmdarg_err("Configuration Profile \"%s\" does not exist", optarg);
637                     exit(1);
638                 }
639                 break;
640             case 'D':        /* Print a list of capture devices and exit */
641 #ifdef HAVE_LIBPCAP
642                 if_list = capture_interface_list(&err, &err_str, NULL);
643                 if (if_list == NULL) {
644                     if (err == 0)
645                         cmdarg_err("There are no interfaces on which a capture can be done");
646                     else {
647                         cmdarg_err("%s", err_str);
648                         g_free(err_str);
649                     }
650                     exit(2);
651                 }
652 #ifdef _WIN32
653                 create_console();
654 #endif /* _WIN32 */
655                 capture_opts_print_interfaces(if_list);
656                 free_interface_list(if_list);
657 #ifdef _WIN32
658                 destroy_console();
659 #endif /* _WIN32 */
660                 exit(0);
661 #else /* HAVE_LIBPCAP */
662                 capture_option_specified = TRUE;
663                 arg_error = TRUE;
664 #endif /* HAVE_LIBPCAP */
665                 break;
666             case 'h':        /* Print help and exit */
667                 print_usage(TRUE);
668                 exit(0);
669                 break;
670 #ifdef _WIN32
671             case 'i':
672                 if (strcmp(optarg, "-") == 0)
673                     set_stdin_capture(TRUE);
674                 break;
675 #endif
676             case 'P':        /* Personal file directory path settings - change these before the Preferences and alike are processed */
677                 if (!persfilepath_opt(opt, optarg)) {
678                     cmdarg_err("-P flag \"%s\" failed (hint: is it quoted and existing?)", optarg);
679                     exit(2);
680                 }
681                 break;
682             case 'v':        /* Show version and exit */
683 #ifdef _WIN32
684                 create_console();
685 #endif
686                 show_version("Wireshark", comp_info_str, runtime_info_str);
687 #ifdef _WIN32
688                 destroy_console();
689 #endif
690                 exit(0);
691                 break;
692             case 'X':
693                 /*
694                  *  Extension command line options have to be processed before
695                  *  we call epan_init() as they are supposed to be used by dissectors
696                  *  or taps very early in the registration process.
697                  */
698                 ex_opt_add(optarg);
699                 break;
700             case '?':        /* Ignore errors - the "real" scan will catch them. */
701                 break;
702         }
703     }
704
705 #ifdef _WIN32
706     reset_library_path();
707 #endif
708
709     /* Create The Wireshark app */
710     WiresharkApplication ws_app(argc, argv);
711
712     /* initialize the funnel mini-api */
713     // xxx qtshark
714     //initialize_funnel_ops();
715
716     AirPDcapInitContext(&airpdcap_ctx);
717
718     QString locale;
719     QString cf_name;
720     unsigned int in_file_type = WTAP_TYPE_AUTO;
721
722     /* Add it to the information to be reported on a crash. */
723     ws_add_crash_info("Wireshark %s\n"
724            "\n"
725            "%s"
726            "\n"
727            "%s",
728         get_ws_vcs_version_info(), comp_info_str->str, runtime_info_str->str);
729
730 #ifdef _WIN32
731     /* Start windows sockets */
732     WSAStartup( MAKEWORD( 1, 1 ), &wsaData );
733 #endif  /* _WIN32 */
734
735     profile_store_persconffiles(TRUE);
736
737     /* Read the profile independent recent file.  We have to do this here so we can */
738     /* set the profile before it can be set from the command line parameter */
739     recent_read_static(&rf_path, &rf_open_errno);
740     if (rf_path != NULL && rf_open_errno != 0) {
741         simple_dialog(ESD_TYPE_WARN, ESD_BTN_OK,
742                       "Could not open common recent file\n\"%s\": %s.",
743                       rf_path, strerror(rf_open_errno));
744     }
745
746     /* Init the "Open file" dialog directory */
747     /* (do this after the path settings are processed) */
748
749     /* Read the profile dependent (static part) of the recent file. */
750     /* Only the static part of it will be read, as we don't have the gui now to fill the */
751     /* recent lists which is done in the dynamic part. */
752     /* We have to do this already here, so command line parameters can overwrite these values. */
753     recent_read_profile_static(&rf_path, &rf_open_errno);
754     if (rf_path != NULL && rf_open_errno != 0) {
755         simple_dialog(ESD_TYPE_WARN, ESD_BTN_OK,
756                       "Could not open recent file\n\"%s\": %s.",
757                       rf_path, g_strerror(rf_open_errno));
758     }
759
760     // Initialize our language
761     read_language_prefs();
762     locale = QString(language);
763     wsApp->loadLanguage(locale);
764
765     g_log(LOG_DOMAIN_MAIN, G_LOG_LEVEL_DEBUG, "Translator %s", locale.toStdString().c_str());
766
767     // Init the main window (and splash)
768     main_w = new(MainWindow);
769     main_w->show();
770     // We may not need a queued connection here but it would seem to make sense
771     // to force the issue.
772     main_w->connect(&ws_app, SIGNAL(openCaptureFile(QString&,QString&,unsigned int)),
773             main_w, SLOT(openCaptureFile(QString&,QString&,unsigned int)));
774
775     /* Init the "Open file" dialog directory */
776     /* (do this after the path settings are processed) */
777
778     /* Read the profile dependent (static part) of the recent file. */
779     /* Only the static part of it will be read, as we don't have the gui now to fill the */
780     /* recent lists which is done in the dynamic part. */
781     /* We have to do this already here, so command line parameters can overwrite these values. */
782     recent_read_profile_static(&rf_path, &rf_open_errno);
783     if (rf_path != NULL && rf_open_errno != 0) {
784       simple_dialog(ESD_TYPE_WARN, ESD_BTN_OK,
785             "Could not open recent file\n\"%s\": %s.",
786             rf_path, g_strerror(rf_open_errno));
787     }
788
789     if (recent.gui_fileopen_remembered_dir &&
790         test_for_directory(recent.gui_fileopen_remembered_dir) == EISDIR) {
791       wsApp->setLastOpenDir(recent.gui_fileopen_remembered_dir);
792     } else {
793       wsApp->setLastOpenDir(get_persdatafile_dir());
794     }
795
796 #ifdef Q_OS_UNIX
797     // Replicates behavior in gtk_init();
798     signal(SIGPIPE, SIG_IGN);
799 #endif
800
801     set_console_log_handler();
802
803 #ifdef HAVE_LIBPCAP
804     /* Set the initial values in the capture options. This might be overwritten
805        by preference settings and then again by the command line parameters. */
806     capture_opts_init(&global_capture_opts);
807 #endif
808
809     init_report_err(failure_alert_box, open_failure_alert_box,
810                     read_failure_alert_box, write_failure_alert_box);
811
812     init_open_routines();
813
814 #ifdef HAVE_PLUGINS
815     /* Register all the plugin types we have. */
816     epan_register_plugin_types(); /* Types known to libwireshark */
817     wtap_register_plugin_types(); /* Types known to libwiretap */
818     codec_register_plugin_types(); /* Types known to libcodec */
819
820     /* Scan for plugins.  This does *not* call their registration routines;
821        that's done later. */
822     scan_plugins();
823
824     /* Register all libwiretap plugin modules. */
825     register_all_wiretap_modules();
826
827     /* Register all audio codec plugins. */
828     register_all_codecs();
829 #endif
830
831     /* Register all dissectors; we must do this before checking for the
832        "-G" flag, as the "-G" flag dumps information registered by the
833        dissectors, and we must do it before we read the preferences, in
834        case any dissectors register preferences. */
835     epan_init(register_all_protocols,register_all_protocol_handoffs,
836               splash_update, NULL);
837
838     splash_update(RA_LISTENERS, NULL, NULL);
839
840     /* Register all tap listeners; we do this before we parse the arguments,
841        as the "-z" argument can specify a registered tap. */
842
843     /* we register the plugin taps before the other taps because
844             stats_tree taps plugins will be registered as tap listeners
845             by stats_tree_stat.c and need to registered before that */
846 #ifdef HAVE_PLUGINS
847     register_all_plugin_tap_listeners();
848 #endif
849
850     register_all_tap_listeners();
851     conversation_table_set_gui_info(init_conversation_table);
852     hostlist_table_set_gui_info(init_endpoint_table);
853     srt_table_iterate_tables(register_service_response_tables, NULL);
854     rtd_table_iterate_tables(register_response_time_delay_tables, NULL);
855     new_stat_tap_iterate_tables(register_simple_stat_tables, NULL);
856
857     if (ex_opt_count("read_format") > 0) {
858         in_file_type = open_info_name_to_type(ex_opt_get_next("read_format"));
859     }
860
861     splash_update(RA_PREFERENCES, NULL, NULL);
862
863     prefs_p = ws_app.readConfigurationFiles(&gdp_path, &dp_path);
864
865     /*
866      * To reset the options parser, set optreset to 1 on platforms that
867      * have optreset (documented in *BSD and OS X, apparently present but
868      * not documented in Solaris - the Illumos repository seems to
869      * suggest that the first Solaris getopt_long(), at least as of 2004,
870      * was based on the NetBSD one, it had optreset) and set optind to 1,
871      * and set optind to 0 otherwise (documented as working in the GNU
872      * getopt_long().  Setting optind to 0 didn't originally work in the
873      * NetBSD one, but that was added later - we don't want to depend on
874      * it if we have optreset).
875      *
876      * Also reset opterr to 1, so that error messages are printed by
877      * getopt_long().
878      *
879      * XXX - if we want to control all the command-line option errors, so
880      * that we can display them where we choose (e.g., in a window), we'd
881      * want to leave opterr as 0, and produce our own messages using optopt.
882      * We'd have to check the value of optopt to see if it's a valid option
883      * letter, in which case *presumably* the error is "this option requires
884      * an argument but none was specified", or not a valid option letter,
885      * in which case *presumably* the error is "this option isn't valid".
886      * Some versions of getopt() let you supply a option string beginning
887      * with ':', which means that getopt() will return ':' rather than '?'
888      * for "this option requires an argument but none was specified", but
889      * not all do.  But we're now using getopt_long() - what does it do?
890      */
891 #ifdef HAVE_OPTRESET
892     optreset = 1;
893     optind = 1;
894 #else
895     optind = 0;
896 #endif
897     opterr = 1;
898
899     /* Now get our args */
900     while ((opt = getopt_long(argc, ws_argv, optstring, long_options, NULL)) != -1) {
901         switch (opt) {
902         /*** capture option specific ***/
903         case 'a':        /* autostop criteria */
904         case 'b':        /* Ringbuffer option */
905         case 'c':        /* Capture xxx packets */
906         case 'f':        /* capture filter */
907         case 'k':        /* Start capture immediately */
908         case 'H':        /* Hide capture info dialog box */
909         case 'p':        /* Don't capture in promiscuous mode */
910         case 'i':        /* Use interface x */
911 #ifdef HAVE_PCAP_CREATE
912         case 'I':        /* Capture in monitor mode, if available */
913 #endif
914 #ifdef HAVE_PCAP_REMOTE
915         case 'A':        /* Authentication */
916 #endif
917         case 's':        /* Set the snapshot (capture) length */
918         case 'S':        /* "Sync" mode: used for following file ala tail -f */
919         case 'w':        /* Write to capture file xxx */
920         case 'y':        /* Set the pcap data link type */
921 #ifdef CAN_SET_CAPTURE_BUFFER_SIZE
922         case 'B':        /* Buffer size */
923 #endif
924 #ifdef HAVE_LIBPCAP
925             status = capture_opts_add_opt(&global_capture_opts, opt, optarg,
926                                           &start_capture);
927             if(status != 0) {
928                 exit(status);
929             }
930 #else
931             capture_option_specified = TRUE;
932             arg_error = TRUE;
933 #endif
934             break;
935 #ifdef HAVE_KERBEROS
936         case 'K':        /* Kerberos keytab file */
937             read_keytab_file(optarg);
938             break;
939 #endif
940
941         /*** all non capture option specific ***/
942         case 'C':
943             /* Configuration profile settings were already processed just ignore them this time*/
944             break;
945         case 'j':        /* Search backwards for a matching packet from filter in option J */
946             /* Not supported yet */
947             break;
948         case 'g':        /* Go to packet with the given packet number */
949             go_to_packet = get_positive_int(optarg, "go to packet");
950             break;
951         case 'J':        /* Jump to the first packet which matches the filter criteria */
952             /* Not supported yet */
953             break;
954         case 'l':        /* Automatic scrolling in live capture mode */
955 #ifdef HAVE_LIBPCAP
956             /* Not supported yet */
957 #else
958             capture_option_specified = TRUE;
959             arg_error = TRUE;
960 #endif
961             break;
962         case 'L':        /* Print list of link-layer types and exit */
963 #ifdef HAVE_LIBPCAP
964                 list_link_layer_types = TRUE;
965 #else
966                 capture_option_specified = TRUE;
967                 arg_error = TRUE;
968 #endif
969             break;
970         case 'm':        /* Fixed-width font for the display */
971             /* Not supported yet */
972             break;
973         case 'n':        /* No name resolution */
974             disable_name_resolution();
975             break;
976         case 'N':        /* Select what types of addresses/port #s to resolve */
977             badopt = string_to_name_resolve(optarg, &gbl_resolv_flags);
978             if (badopt != '\0') {
979                 cmdarg_err("-N specifies unknown resolving option '%c'; valid options are 'C', 'd', m', 'n', 'N', and 't'",
980                            badopt);
981                 exit(1);
982             }
983             break;
984         case 'o':        /* Override preference from command line */
985             switch (prefs_set_pref(optarg)) {
986                 case PREFS_SET_OK:
987                     break;
988                 case PREFS_SET_SYNTAX_ERR:
989                     cmdarg_err("Invalid -o flag \"%s\"", optarg);
990                     exit(1);
991                     break;
992                 case PREFS_SET_NO_SUCH_PREF:
993                 /* not a preference, might be a recent setting */
994                     switch (recent_set_arg(optarg)) {
995                         case PREFS_SET_OK:
996                             break;
997                         case PREFS_SET_SYNTAX_ERR:
998                             /* shouldn't happen, checked already above */
999                             cmdarg_err("Invalid -o flag \"%s\"", optarg);
1000                             exit(1);
1001                             break;
1002                         case PREFS_SET_NO_SUCH_PREF:
1003                         case PREFS_SET_OBSOLETE:
1004                             cmdarg_err("-o flag \"%s\" specifies unknown preference/recent value",
1005                                        optarg);
1006                             exit(1);
1007                             break;
1008                         default:
1009                             g_assert_not_reached();
1010                     }
1011                     break;
1012                 case PREFS_SET_OBSOLETE:
1013                     cmdarg_err("-o flag \"%s\" specifies obsolete preference",
1014                                optarg);
1015                     exit(1);
1016                     break;
1017                 default:
1018                     g_assert_not_reached();
1019             }
1020             break;
1021         case 'P':
1022             /* Path settings were already processed just ignore them this time*/
1023             break;
1024         case 'r':
1025             cf_name = optarg;
1026             break;
1027         case 'R':        /* Read file filter */
1028             read_filter = QString(optarg);
1029             break;
1030         case 't':        /* Time stamp type */
1031             if (strcmp(optarg, "r") == 0)
1032                 timestamp_set_type(TS_RELATIVE);
1033             else if (strcmp(optarg, "a") == 0)
1034                 timestamp_set_type(TS_ABSOLUTE);
1035             else if (strcmp(optarg, "ad") == 0)
1036                 timestamp_set_type(TS_ABSOLUTE_WITH_YMD);
1037             else if (strcmp(optarg, "adoy") == 0)
1038                 timestamp_set_type(TS_ABSOLUTE_WITH_YDOY);
1039             else if (strcmp(optarg, "d") == 0)
1040                 timestamp_set_type(TS_DELTA);
1041             else if (strcmp(optarg, "dd") == 0)
1042                 timestamp_set_type(TS_DELTA_DIS);
1043             else if (strcmp(optarg, "e") == 0)
1044                 timestamp_set_type(TS_EPOCH);
1045             else if (strcmp(optarg, "u") == 0)
1046                 timestamp_set_type(TS_UTC);
1047             else if (strcmp(optarg, "ud") == 0)
1048                 timestamp_set_type(TS_UTC_WITH_YMD);
1049             else if (strcmp(optarg, "udoy") == 0)
1050                 timestamp_set_type(TS_UTC_WITH_YDOY);
1051             else {
1052                 cmdarg_err("Invalid time stamp type \"%s\"", optarg);
1053                 cmdarg_err_cont(
1054 "It must be \"a\" for absolute, \"ad\" for absolute with YYYY-MM-DD date,");
1055                 cmdarg_err_cont(
1056 "\"adoy\" for absolute with YYYY/DOY date, \"d\" for delta,");
1057                 cmdarg_err_cont(
1058 "\"dd\" for delta displayed, \"e\" for epoch, \"r\" for relative,");
1059                 cmdarg_err_cont(
1060 "\"u\" for absolute UTC, \"ud\" for absolute UTC with YYYY-MM-DD date,");
1061                 cmdarg_err_cont(
1062 "or \"udoy\" for absolute UTC with YYYY/DOY date.");
1063                 exit(1);
1064             }
1065             break;
1066         case 'u':        /* Seconds type */
1067             if (strcmp(optarg, "s") == 0)
1068                 timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
1069             else if (strcmp(optarg, "hms") == 0)
1070                 timestamp_set_seconds_type(TS_SECONDS_HOUR_MIN_SEC);
1071             else {
1072                 cmdarg_err("Invalid seconds type \"%s\"", optarg);
1073                 cmdarg_err_cont(
1074 "It must be \"s\" for seconds or \"hms\" for hours, minutes and seconds.");
1075                 exit(1);
1076             }
1077             break;
1078         case 'X':
1079             /* ext ops were already processed just ignore them this time*/
1080             break;
1081         case 'Y':
1082             dfilter = QString(optarg);
1083             break;
1084         case 'z':
1085             /* We won't call the init function for the stat this soon
1086              as it would disallow MATE's fields (which are registered
1087              by the preferences set callback) from being used as
1088              part of a tap filter.  Instead, we just add the argument
1089              to a list of stat arguments. */
1090             if (strcmp("help", optarg) == 0) {
1091               fprintf(stderr, "wireshark: The available statistics for the \"-z\" option are:\n");
1092               list_stat_cmd_args();
1093               exit(0);
1094             }
1095             if (!process_stat_cmd_arg(optarg)) {
1096                 cmdarg_err("Invalid -z argument.");
1097                 cmdarg_err_cont("  -z argument must be one of :");
1098                 list_stat_cmd_args();
1099                 exit(1);
1100             }
1101             break;
1102         case LONGOPT_DISABLE_PROTOCOL: /* disable dissection of protocol */
1103             disable_protocol_slist = g_slist_append(disable_protocol_slist, optarg);
1104             break;
1105         case LONGOPT_ENABLE_HEURISTIC: /* enable heuristic dissection of protocol */
1106             enable_heur_slist = g_slist_append(enable_heur_slist, optarg);
1107             break;
1108         case LONGOPT_DISABLE_HEURISTIC: /* disable heuristic dissection of protocol */
1109             disable_heur_slist = g_slist_append(disable_heur_slist, optarg);
1110             break;
1111
1112         default:
1113         case '?':        /* Bad flag - print usage message */
1114             print_usage(FALSE);
1115             exit(0);
1116             break;
1117         }
1118     }
1119
1120     if (!arg_error) {
1121         argc -= optind;
1122         ws_argv += optind;
1123         if (argc >= 1) {
1124             if (!cf_name.isEmpty()) {
1125                 /*
1126                  * Input file name specified with "-r" *and* specified as a regular
1127                  * command-line argument.
1128                  */
1129                 cmdarg_err("File name specified both with -r and regular argument");
1130                 arg_error = TRUE;
1131             } else {
1132                 /*
1133                  * Input file name not specified with "-r", and a command-line argument
1134                  * was specified; treat it as the input file name.
1135                  *
1136                  * Yes, this is different from tshark, where non-flag command-line
1137                  * arguments are a filter, but this works better on GUI desktops
1138                  * where a command can be specified to be run to open a particular
1139                  * file - yes, you could have "-r" as the last part of the command,
1140                  * but that's a bit ugly.
1141                  */
1142                 cf_name = ws_argv[0];
1143
1144             }
1145             argc--;
1146             ws_argv++;
1147         }
1148
1149         if (argc != 0) {
1150             /*
1151              * Extra command line arguments were specified; complain.
1152              */
1153             cmdarg_err("Invalid argument: %s", ws_argv[0]);
1154             arg_error = TRUE;
1155         }
1156     }
1157     if (arg_error) {
1158 #ifndef HAVE_LIBPCAP
1159         if (capture_option_specified) {
1160             cmdarg_err("This version of Wireshark was not built with support for capturing packets.");
1161         }
1162 #endif
1163         print_usage(FALSE);
1164         exit(1);
1165     }
1166
1167     /* Removed thread code:
1168      * https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=9e277ae6154fd04bf6a0a34ec5655a73e5a736a3
1169      */
1170
1171     // XXX Is there a better place to set the timestamp format & precision?
1172     timestamp_set_type(recent.gui_time_format);
1173     timestamp_set_precision(recent.gui_time_precision);
1174     timestamp_set_seconds_type(TS_SECONDS_DEFAULT);
1175
1176 #ifdef HAVE_LIBPCAP
1177     fill_in_local_interfaces(main_window_update);
1178
1179     if (start_capture && list_link_layer_types) {
1180         /* Specifying *both* is bogus. */
1181         cmdarg_err("You can't specify both -L and a live capture.");
1182         exit(1);
1183     }
1184
1185     if (list_link_layer_types) {
1186         /* We're supposed to list the link-layer types for an interface;
1187            did the user also specify a capture file to be read? */
1188         if (!cf_name.isEmpty()) {
1189             /* Yes - that's bogus. */
1190             cmdarg_err("You can't specify -L and a capture file to be read.");
1191         exit(1);
1192         }
1193         /* No - did they specify a ring buffer option? */
1194         if (global_capture_opts.multi_files_on) {
1195             cmdarg_err("Ring buffer requested, but a capture isn't being done.");
1196             exit(1);
1197         }
1198     } else {
1199         /* We're supposed to do a live capture; did the user also specify
1200            a capture file to be read? */
1201         if (start_capture && !cf_name.isEmpty()) {
1202             /* Yes - that's bogus. */
1203             cmdarg_err("You can't specify both a live capture and a capture file to be read.");
1204             exit(1);
1205         }
1206
1207         /* No - was the ring buffer option specified and, if so, does it make
1208            sense? */
1209         if (global_capture_opts.multi_files_on) {
1210             /* Ring buffer works only under certain conditions:
1211              a) ring buffer does not work with temporary files;
1212              b) real_time_mode and multi_files_on are mutually exclusive -
1213              real_time_mode takes precedence;
1214              c) it makes no sense to enable the ring buffer if the maximum
1215              file size is set to "infinite". */
1216             if (global_capture_opts.save_file == NULL) {
1217                 cmdarg_err("Ring buffer requested, but capture isn't being saved to a permanent file.");
1218                 global_capture_opts.multi_files_on = FALSE;
1219             }
1220             if (!global_capture_opts.has_autostop_filesize && !global_capture_opts.has_file_duration) {
1221                 cmdarg_err("Ring buffer requested, but no maximum capture file size or duration were specified.");
1222                 /* XXX - this must be redesigned as the conditions changed */
1223             }
1224         }
1225     }
1226
1227     if (start_capture || list_link_layer_types) {
1228         /* We're supposed to do a live capture or get a list of link-layer
1229            types for a live capture device; if the user didn't specify an
1230            interface to use, pick a default. */
1231         status = capture_opts_default_iface_if_necessary(&global_capture_opts,
1232         ((prefs_p->capture_device) && (*prefs_p->capture_device != '\0')) ? get_if_name(prefs_p->capture_device) : NULL);
1233         if (status != 0) {
1234             exit(status);
1235         }
1236     }
1237
1238     if (list_link_layer_types) {
1239         /* Get the list of link-layer types for the capture devices. */
1240         if_capabilities_t *caps;
1241         guint i;
1242         interface_t device;
1243         for (i = 0; i < global_capture_opts.all_ifaces->len; i++) {
1244
1245             device = g_array_index(global_capture_opts.all_ifaces, interface_t, i);
1246             if (device.selected) {
1247 #if defined(HAVE_PCAP_CREATE)
1248                 caps = capture_get_if_capabilities(device.name, device.monitor_mode_supported, NULL, &err_str, main_window_update);
1249 #else
1250                 caps = capture_get_if_capabilities(device.name, FALSE, NULL, &err_str,main_window_update);
1251 #endif
1252                 if (caps == NULL) {
1253                     cmdarg_err("%s", err_str);
1254                     g_free(err_str);
1255                     exit(2);
1256                 }
1257             if (caps->data_link_types == NULL) {
1258                 cmdarg_err("The capture device \"%s\" has no data link types.", device.name);
1259                 exit(2);
1260             }
1261 #ifdef _WIN32
1262             create_console();
1263 #endif /* _WIN32 */
1264 #if defined(HAVE_PCAP_CREATE)
1265             capture_opts_print_if_capabilities(caps, device.name, device.monitor_mode_supported);
1266 #else
1267             capture_opts_print_if_capabilities(caps, device.name, FALSE);
1268 #endif
1269 #ifdef _WIN32
1270             destroy_console();
1271 #endif /* _WIN32 */
1272             free_if_capabilities(caps);
1273             }
1274         }
1275         exit(0);
1276     }
1277
1278     capture_opts_trim_snaplen(&global_capture_opts, MIN_PACKET_SIZE);
1279     capture_opts_trim_ring_num_files(&global_capture_opts);
1280 #endif /* HAVE_LIBPCAP */
1281
1282     /* Notify all registered modules that have had any of their preferences
1283        changed either from one of the preferences file or from the command
1284        line that their preferences have changed. */
1285     prefs_apply_all();
1286     wsApp->emitAppSignal(WiresharkApplication::PreferencesChanged);
1287
1288 #ifdef HAVE_LIBPCAP
1289     if ((global_capture_opts.num_selected == 0) &&
1290             (prefs.capture_device != NULL)) {
1291         guint i;
1292         interface_t device;
1293         for (i = 0; i < global_capture_opts.all_ifaces->len; i++) {
1294             device = g_array_index(global_capture_opts.all_ifaces, interface_t, i);
1295             if (!device.hidden && strcmp(device.display_name, prefs.capture_device) == 0) {
1296                 device.selected = TRUE;
1297                 global_capture_opts.num_selected++;
1298                 global_capture_opts.all_ifaces = g_array_remove_index(global_capture_opts.all_ifaces, i);
1299                 g_array_insert_val(global_capture_opts.all_ifaces, i, device);
1300                 break;
1301             }
1302         }
1303     }
1304 #endif
1305
1306     /* disabled protocols as per configuration file */
1307     if (gdp_path == NULL && dp_path == NULL) {
1308         set_disabled_protos_list();
1309         set_disabled_heur_dissector_list();
1310     }
1311
1312     if(disable_protocol_slist) {
1313         GSList *proto_disable;
1314         for (proto_disable = disable_protocol_slist; proto_disable != NULL; proto_disable = g_slist_next(proto_disable))
1315         {
1316             proto_disable_proto_by_name((char*)proto_disable->data);
1317         }
1318     }
1319
1320     if(enable_heur_slist) {
1321         GSList *heur_enable;
1322         for (heur_enable = enable_heur_slist; heur_enable != NULL; heur_enable = g_slist_next(heur_enable))
1323         {
1324             proto_enable_heuristic_by_name((char*)heur_enable->data, TRUE);
1325         }
1326     }
1327
1328     if(disable_heur_slist) {
1329         GSList *heur_disable;
1330         for (heur_disable = disable_heur_slist; heur_disable != NULL; heur_disable = g_slist_next(heur_disable))
1331         {
1332             proto_enable_heuristic_by_name((char*)heur_disable->data, FALSE);
1333         }
1334     }
1335
1336     build_column_format_array(&CaptureFile::globalCapFile()->cinfo, prefs_p->num_cols, TRUE);
1337     wsApp->emitAppSignal(WiresharkApplication::ColumnsChanged); // We read "recent" widths above.
1338     wsApp->emitAppSignal(WiresharkApplication::RecentFilesRead); // Must be emitted after PreferencesChanged.
1339
1340     wsApp->setMonospaceFont(prefs.gui_qt_font_name);
1341
1342 ////////
1343
1344     /* Read the dynamic part of the recent file, as we have the gui now ready for
1345        it. */
1346     recent_read_dynamic(&rf_path, &rf_open_errno);
1347     if (rf_path != NULL && rf_open_errno != 0) {
1348         simple_dialog(ESD_TYPE_WARN, ESD_BTN_OK,
1349                       "Could not open recent file\n\"%s\": %s.",
1350                       rf_path, g_strerror(rf_open_errno));
1351     }
1352
1353     color_filters_enable(recent.packet_list_colorize);
1354
1355     g_log(NULL, G_LOG_LEVEL_DEBUG, "FIX: fetch recent color settings");
1356     color_filters_enable(TRUE);
1357
1358 ////////
1359
1360
1361 ////////
1362     color_filters_init();
1363
1364 ////////
1365
1366 #ifdef HAVE_LIBPCAP
1367     /* if the user didn't supply a capture filter, use the one to filter out remote connections like SSH */
1368     if (!start_capture && !global_capture_opts.default_options.cfilter) {
1369         global_capture_opts.default_options.cfilter = g_strdup(get_conn_cfilter());
1370     }
1371 #else /* HAVE_LIBPCAP */
1372     ////////
1373 #endif /* HAVE_LIBPCAP */
1374
1375     wsApp->allSystemsGo();
1376     g_log(LOG_DOMAIN_MAIN, G_LOG_LEVEL_INFO, "Wireshark is up and ready to go");
1377     SimpleDialog::displayQueuedMessages(main_w);
1378
1379     /* User could specify filename, or display filter, or both */
1380     if (!cf_name.isEmpty()) {
1381         if (main_w->openCaptureFile(cf_name, read_filter, in_file_type)) {
1382             if (!dfilter.isEmpty())
1383                 main_w->filterPackets(dfilter, false);
1384
1385             /* Open stat windows; we do so after creating the main window,
1386                to avoid Qt warnings, and after successfully opening the
1387                capture file, so we know we have something to compute stats
1388                on, and after registering all dissectors, so that MATE will
1389                have registered its field array and we can have a tap filter
1390                with one of MATE's late-registered fields as part of the
1391                filter. */
1392             start_requested_stats();
1393
1394             if(go_to_packet != 0) {
1395                 /* Jump to the specified frame number, kept for backward
1396                    compatibility. */
1397                 cf_goto_frame(CaptureFile::globalCapFile(), go_to_packet);
1398             }
1399         }
1400     }
1401 #ifdef HAVE_LIBPCAP
1402     else {
1403         if (start_capture) {
1404             if (global_capture_opts.save_file != NULL) {
1405                 /* Save the directory name for future file dialogs. */
1406                 /* (get_dirname overwrites filename) */
1407                 gchar *s = get_dirname(g_strdup(global_capture_opts.save_file));
1408                 set_last_open_dir(s);
1409                 g_free(s);
1410             }
1411             /* "-k" was specified; start a capture. */
1412 //            show_main_window(FALSE);
1413             check_and_warn_user_startup(cf_name);
1414
1415             /* If no user interfaces were specified on the command line,
1416                copy the list of selected interfaces to the set of interfaces
1417                to use for this capture. */
1418             if (global_capture_opts.ifaces->len == 0)
1419                 collect_ifaces(&global_capture_opts);
1420             CaptureFile::globalCapFile()->window = main_w;
1421             if (capture_start(&global_capture_opts, main_w->captureSession(), main_window_update)) {
1422                 /* The capture started.  Open stat windows; we do so after creating
1423                    the main window, to avoid GTK warnings, and after successfully
1424                    opening the capture file, so we know we have something to compute
1425                    stats on, and after registering all dissectors, so that MATE will
1426                    have registered its field array and we can have a tap filter with
1427                    one of MATE's late-registered fields as part of the filter. */
1428                 start_requested_stats();
1429             }
1430         }
1431     /* if the user didn't supply a capture filter, use the one to filter out remote connections like SSH */
1432         if (!start_capture && !global_capture_opts.default_options.cfilter) {
1433             global_capture_opts.default_options.cfilter = g_strdup(get_conn_cfilter());
1434         }
1435     }
1436 #endif /* HAVE_LIBPCAP */
1437
1438     return wsApp->exec();
1439 }
1440
1441 /*
1442  * Editor modelines
1443  *
1444  * Local Variables:
1445  * c-basic-offset: 4
1446  * tab-width: 8
1447  * indent-tabs-mode: nil
1448  * End:
1449  *
1450  * ex: set shiftwidth=4 tabstop=8 expandtab:
1451  * :indentSize=4:tabSize=8:noTabs=true:
1452  */