MSWSP: VT_ERROR has 4 bytes
[wireshark-wip.git] / capture_opts.c
blob53b6253346c9401bd27cb543cc634e5349f6c220
1 /* capture_opts.c
2 * Routines for capture options setting
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include "config.h"
27 #include <stdio.h>
29 #ifdef HAVE_LIBPCAP
31 #include <string.h>
32 #include <ctype.h>
34 #ifdef HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
38 #include <glib.h>
40 #include <epan/packet.h>
41 #include <epan/prefs.h>
42 #include "capture_ui_utils.h"
44 #include "capture_opts.h"
45 #include "ringbuffer.h"
46 #include "clopts_common.h"
47 #include "cmdarg_err.h"
49 #include "capture_ifinfo.h"
50 #include "capture-pcap-util.h"
51 #include <wsutil/file_util.h>
53 static gboolean capture_opts_output_to_pipe(const char *save_file, gboolean *is_pipe);
56 void
57 capture_opts_init(capture_options *capture_opts)
59 capture_opts->ifaces = g_array_new(FALSE, FALSE, sizeof(interface_options));
60 capture_opts->all_ifaces = g_array_new(FALSE, FALSE, sizeof(interface_t));
61 capture_opts->num_selected = 0;
62 capture_opts->default_options.name = NULL;
63 capture_opts->default_options.descr = NULL;
64 capture_opts->default_options.cfilter = NULL;
65 capture_opts->default_options.has_snaplen = FALSE;
66 capture_opts->default_options.snaplen = WTAP_MAX_PACKET_SIZE;
67 capture_opts->default_options.linktype = -1;
68 capture_opts->default_options.promisc_mode = TRUE;
69 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
70 capture_opts->default_options.buffer_size = DEFAULT_CAPTURE_BUFFER_SIZE;
71 #endif
72 capture_opts->default_options.monitor_mode = FALSE;
73 #ifdef HAVE_PCAP_REMOTE
74 capture_opts->default_options.src_type = CAPTURE_IFLOCAL;
75 capture_opts->default_options.remote_host = NULL;
76 capture_opts->default_options.remote_port = NULL;
77 capture_opts->default_options.auth_type = CAPTURE_AUTH_NULL;
78 capture_opts->default_options.auth_username = NULL;
79 capture_opts->default_options.auth_password = NULL;
80 capture_opts->default_options.datatx_udp = FALSE;
81 capture_opts->default_options.nocap_rpcap = TRUE;
82 capture_opts->default_options.nocap_local = FALSE;
83 #endif
84 #ifdef HAVE_PCAP_SETSAMPLING
85 capture_opts->default_options.sampling_method = CAPTURE_SAMP_NONE;
86 capture_opts->default_options.sampling_param = 0;
87 #endif
88 capture_opts->saving_to_file = FALSE;
89 capture_opts->save_file = NULL;
90 capture_opts->group_read_access = FALSE;
91 #ifdef PCAP_NG_DEFAULT
92 capture_opts->use_pcapng = TRUE; /* Save as pcap-ng by default */
93 #else
94 capture_opts->use_pcapng = FALSE; /* Save as pcap by default */
95 #endif
96 capture_opts->real_time_mode = TRUE;
97 capture_opts->show_info = TRUE;
98 capture_opts->quit_after_cap = getenv("WIRESHARK_QUIT_AFTER_CAPTURE") ? TRUE : FALSE;
99 capture_opts->restart = FALSE;
100 capture_opts->orig_save_file = NULL;
102 capture_opts->multi_files_on = FALSE;
103 capture_opts->has_file_duration = FALSE;
104 capture_opts->file_duration = 60; /* 1 min */
105 capture_opts->has_ring_num_files = FALSE;
106 capture_opts->ring_num_files = RINGBUFFER_MIN_NUM_FILES;
108 capture_opts->has_autostop_files = FALSE;
109 capture_opts->autostop_files = 1;
110 capture_opts->has_autostop_packets = FALSE;
111 capture_opts->autostop_packets = 0;
112 capture_opts->has_autostop_filesize = FALSE;
113 capture_opts->autostop_filesize = 1024; /* 1 MiB */
114 capture_opts->has_autostop_duration = FALSE;
115 capture_opts->autostop_duration = 60; /* 1 min */
116 capture_opts->capture_comment = NULL;
118 capture_opts->output_to_pipe = FALSE;
119 capture_opts->capture_child = FALSE;
123 /* log content of capture_opts */
124 void
125 capture_opts_log(const char *log_domain, GLogLevelFlags log_level, capture_options *capture_opts) {
126 guint i;
128 g_log(log_domain, log_level, "CAPTURE OPTIONS :");
130 for (i = 0; i < capture_opts->ifaces->len; i++) {
131 interface_options interface_opts;
133 interface_opts = g_array_index(capture_opts->ifaces, interface_options, i);
134 g_log(log_domain, log_level, "Interface name[%02d] : %s", i, interface_opts.name ? interface_opts.name : "(unspecified)");
135 g_log(log_domain, log_level, "Interface description[%02d] : %s", i, interface_opts.descr ? interface_opts.descr : "(unspecified)");
136 g_log(log_domain, log_level, "Console display name[%02d]: %s", i, interface_opts.console_display_name ? interface_opts.console_display_name : "(unspecified)");
137 g_log(log_domain, log_level, "Capture filter[%02d] : %s", i, interface_opts.cfilter ? interface_opts.cfilter : "(unspecified)");
138 g_log(log_domain, log_level, "Snap length[%02d] (%u) : %d", i, interface_opts.has_snaplen, interface_opts.snaplen);
139 g_log(log_domain, log_level, "Link Type[%02d] : %d", i, interface_opts.linktype);
140 g_log(log_domain, log_level, "Promiscuous Mode[%02d]: %s", i, interface_opts.promisc_mode?"TRUE":"FALSE");
141 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
142 g_log(log_domain, log_level, "Buffer size[%02d] : %d (MB)", i, interface_opts.buffer_size);
143 #endif
144 g_log(log_domain, log_level, "Monitor Mode[%02d] : %s", i, interface_opts.monitor_mode?"TRUE":"FALSE");
145 #ifdef HAVE_PCAP_REMOTE
146 g_log(log_domain, log_level, "Capture source[%02d] : %s", i,
147 interface_opts.src_type == CAPTURE_IFLOCAL ? "Local interface" :
148 interface_opts.src_type == CAPTURE_IFREMOTE ? "Remote interface" :
149 "Unknown");
150 if (interface_opts.src_type == CAPTURE_IFREMOTE) {
151 g_log(log_domain, log_level, "Remote host[%02d] : %s", i, interface_opts.remote_host ? interface_opts.remote_host : "(unspecified)");
152 g_log(log_domain, log_level, "Remote port[%02d] : %s", i, interface_opts.remote_port ? interface_opts.remote_port : "(unspecified)");
154 g_log(log_domain, log_level, "Authentication[%02d] : %s", i,
155 interface_opts.auth_type == CAPTURE_AUTH_NULL ? "Null" :
156 interface_opts.auth_type == CAPTURE_AUTH_PWD ? "By username/password" :
157 "Unknown");
158 if (interface_opts.auth_type == CAPTURE_AUTH_PWD) {
159 g_log(log_domain, log_level, "Auth username[%02d] : %s", i, interface_opts.auth_username ? interface_opts.auth_username : "(unspecified)");
160 g_log(log_domain, log_level, "Auth password[%02d] : <hidden>", i);
162 g_log(log_domain, log_level, "UDP data tfer[%02d] : %u", i, interface_opts.datatx_udp);
163 g_log(log_domain, log_level, "No cap. RPCAP[%02d] : %u", i, interface_opts.nocap_rpcap);
164 g_log(log_domain, log_level, "No cap. local[%02d] : %u", i, interface_opts.nocap_local);
165 #endif
166 #ifdef HAVE_PCAP_SETSAMPLING
167 g_log(log_domain, log_level, "Sampling meth.[%02d] : %d", i, interface_opts.sampling_method);
168 g_log(log_domain, log_level, "Sampling param.[%02d] : %d", i, interface_opts.sampling_param);
169 #endif
171 g_log(log_domain, log_level, "Interface name[df] : %s", capture_opts->default_options.name ? capture_opts->default_options.name : "(unspecified)");
172 g_log(log_domain, log_level, "Interface Descr[df] : %s", capture_opts->default_options.descr ? capture_opts->default_options.descr : "(unspecified)");
173 g_log(log_domain, log_level, "Capture filter[df] : %s", capture_opts->default_options.cfilter ? capture_opts->default_options.cfilter : "(unspecified)");
174 g_log(log_domain, log_level, "Snap length[df] (%u) : %d", capture_opts->default_options.has_snaplen, capture_opts->default_options.snaplen);
175 g_log(log_domain, log_level, "Link Type[df] : %d", capture_opts->default_options.linktype);
176 g_log(log_domain, log_level, "Promiscuous Mode[df]: %s", capture_opts->default_options.promisc_mode?"TRUE":"FALSE");
177 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
178 g_log(log_domain, log_level, "Buffer size[df] : %d (MB)", capture_opts->default_options.buffer_size);
179 #endif
180 g_log(log_domain, log_level, "Monitor Mode[df] : %s", capture_opts->default_options.monitor_mode?"TRUE":"FALSE");
181 #ifdef HAVE_PCAP_REMOTE
182 g_log(log_domain, log_level, "Capture source[df] : %s",
183 capture_opts->default_options.src_type == CAPTURE_IFLOCAL ? "Local interface" :
184 capture_opts->default_options.src_type == CAPTURE_IFREMOTE ? "Remote interface" :
185 "Unknown");
186 if (capture_opts->default_options.src_type == CAPTURE_IFREMOTE) {
187 g_log(log_domain, log_level, "Remote host[df] : %s", capture_opts->default_options.remote_host ? capture_opts->default_options.remote_host : "(unspecified)");
188 g_log(log_domain, log_level, "Remote port[df] : %s", capture_opts->default_options.remote_port ? capture_opts->default_options.remote_port : "(unspecified)");
190 g_log(log_domain, log_level, "Authentication[df] : %s",
191 capture_opts->default_options.auth_type == CAPTURE_AUTH_NULL ? "Null" :
192 capture_opts->default_options.auth_type == CAPTURE_AUTH_PWD ? "By username/password" :
193 "Unknown");
194 if (capture_opts->default_options.auth_type == CAPTURE_AUTH_PWD) {
195 g_log(log_domain, log_level, "Auth username[df] : %s", capture_opts->default_options.auth_username ? capture_opts->default_options.auth_username : "(unspecified)");
196 g_log(log_domain, log_level, "Auth password[df] : <hidden>");
198 g_log(log_domain, log_level, "UDP data tfer[df] : %u", capture_opts->default_options.datatx_udp);
199 g_log(log_domain, log_level, "No cap. RPCAP[df] : %u", capture_opts->default_options.nocap_rpcap);
200 g_log(log_domain, log_level, "No cap. local[df] : %u", capture_opts->default_options.nocap_local);
201 #endif
202 #ifdef HAVE_PCAP_SETSAMPLING
203 g_log(log_domain, log_level, "Sampling meth. [df] : %d", capture_opts->default_options.sampling_method);
204 g_log(log_domain, log_level, "Sampling param.[df] : %d", capture_opts->default_options.sampling_param);
205 #endif
206 g_log(log_domain, log_level, "SavingToFile : %u", capture_opts->saving_to_file);
207 g_log(log_domain, log_level, "SaveFile : %s", (capture_opts->save_file) ? capture_opts->save_file : "");
208 g_log(log_domain, log_level, "GroupReadAccess : %u", capture_opts->group_read_access);
209 g_log(log_domain, log_level, "Fileformat : %s", (capture_opts->use_pcapng) ? "PCAPNG" : "PCAP");
210 g_log(log_domain, log_level, "RealTimeMode : %u", capture_opts->real_time_mode);
211 g_log(log_domain, log_level, "ShowInfo : %u", capture_opts->show_info);
212 g_log(log_domain, log_level, "QuitAfterCap : %u", capture_opts->quit_after_cap);
214 g_log(log_domain, log_level, "MultiFilesOn : %u", capture_opts->multi_files_on);
215 g_log(log_domain, log_level, "FileDuration (%u) : %u", capture_opts->has_file_duration, capture_opts->file_duration);
216 g_log(log_domain, log_level, "RingNumFiles (%u) : %u", capture_opts->has_ring_num_files, capture_opts->ring_num_files);
218 g_log(log_domain, log_level, "AutostopFiles (%u) : %u", capture_opts->has_autostop_files, capture_opts->autostop_files);
219 g_log(log_domain, log_level, "AutostopPackets (%u) : %u", capture_opts->has_autostop_packets, capture_opts->autostop_packets);
220 g_log(log_domain, log_level, "AutostopFilesize(%u) : %u (KiB)", capture_opts->has_autostop_filesize, capture_opts->autostop_filesize);
221 g_log(log_domain, log_level, "AutostopDuration(%u) : %u", capture_opts->has_autostop_duration, capture_opts->autostop_duration);
225 * Given a string of the form "<autostop criterion>:<value>", as might appear
226 * as an argument to a "-a" option, parse it and set the criterion in
227 * question. Return an indication of whether it succeeded or failed
228 * in some fashion.
230 static gboolean
231 set_autostop_criterion(capture_options *capture_opts, const char *autostoparg)
233 gchar *p, *colonp;
235 colonp = strchr(autostoparg, ':');
236 if (colonp == NULL)
237 return FALSE;
239 p = colonp;
240 *p++ = '\0';
243 * Skip over any white space (there probably won't be any, but
244 * as we allow it in the preferences file, we might as well
245 * allow it here).
247 while (isspace((guchar)*p))
248 p++;
249 if (*p == '\0') {
251 * Put the colon back, so if our caller uses, in an
252 * error message, the string they passed us, the message
253 * looks correct.
255 *colonp = ':';
256 return FALSE;
258 if (strcmp(autostoparg,"duration") == 0) {
259 capture_opts->has_autostop_duration = TRUE;
260 capture_opts->autostop_duration = get_positive_int(p,"autostop duration");
261 } else if (strcmp(autostoparg,"filesize") == 0) {
262 capture_opts->has_autostop_filesize = TRUE;
263 capture_opts->autostop_filesize = get_positive_int(p,"autostop filesize");
264 } else if (strcmp(autostoparg,"files") == 0) {
265 capture_opts->multi_files_on = TRUE;
266 capture_opts->has_autostop_files = TRUE;
267 capture_opts->autostop_files = get_positive_int(p,"autostop files");
268 } else {
269 return FALSE;
271 *colonp = ':'; /* put the colon back */
272 return TRUE;
276 * Given a string of the form "<ring buffer file>:<duration>", as might appear
277 * as an argument to a "-b" option, parse it and set the arguments in
278 * question. Return an indication of whether it succeeded or failed
279 * in some fashion.
281 static gboolean
282 get_ring_arguments(capture_options *capture_opts, const char *arg)
284 gchar *p = NULL, *colonp;
286 colonp = strchr(arg, ':');
287 if (colonp == NULL)
288 return FALSE;
290 p = colonp;
291 *p++ = '\0';
294 * Skip over any white space (there probably won't be any, but
295 * as we allow it in the preferences file, we might as well
296 * allow it here).
298 while (isspace((guchar)*p))
299 p++;
300 if (*p == '\0') {
302 * Put the colon back, so if our caller uses, in an
303 * error message, the string they passed us, the message
304 * looks correct.
306 *colonp = ':';
307 return FALSE;
310 if (strcmp(arg,"files") == 0) {
311 capture_opts->has_ring_num_files = TRUE;
312 capture_opts->ring_num_files = get_positive_int(p, "number of ring buffer files");
313 } else if (strcmp(arg,"filesize") == 0) {
314 capture_opts->has_autostop_filesize = TRUE;
315 capture_opts->autostop_filesize = get_positive_int(p, "ring buffer filesize");
316 } else if (strcmp(arg,"duration") == 0) {
317 capture_opts->has_file_duration = TRUE;
318 capture_opts->file_duration = get_positive_int(p, "ring buffer duration");
321 *colonp = ':'; /* put the colon back */
322 return TRUE;
325 #ifdef HAVE_PCAP_SETSAMPLING
327 * Given a string of the form "<sampling type>:<value>", as might appear
328 * as an argument to a "-m" option, parse it and set the arguments in
329 * question. Return an indication of whether it succeeded or failed
330 * in some fashion.
332 static gboolean
333 get_sampling_arguments(capture_options *capture_opts, const char *arg)
335 gchar *p = NULL, *colonp;
337 colonp = strchr(arg, ':');
338 if (colonp == NULL)
339 return FALSE;
341 p = colonp;
342 *p++ = '\0';
344 while (isspace((guchar)*p))
345 p++;
346 if (*p == '\0') {
347 *colonp = ':';
348 return FALSE;
351 if (strcmp(arg, "count") == 0) {
352 if (capture_opts->ifaces->len > 0) {
353 interface_options interface_opts;
355 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
356 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
357 interface_opts.sampling_method = CAPTURE_SAMP_BY_COUNT;
358 interface_opts.sampling_param = get_positive_int(p, "sampling count");
359 g_array_append_val(capture_opts->ifaces, interface_opts);
360 } else {
361 capture_opts->default_options.sampling_method = CAPTURE_SAMP_BY_COUNT;
362 capture_opts->default_options.sampling_param = get_positive_int(p, "sampling count");
364 } else if (strcmp(arg, "timer") == 0) {
365 if (capture_opts->ifaces->len > 0) {
366 interface_options interface_opts;
368 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
369 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
370 interface_opts.sampling_method = CAPTURE_SAMP_BY_TIMER;
371 interface_opts.sampling_param = get_positive_int(p, "sampling timer");
372 g_array_append_val(capture_opts->ifaces, interface_opts);
373 } else {
374 capture_opts->default_options.sampling_method = CAPTURE_SAMP_BY_TIMER;
375 capture_opts->default_options.sampling_param = get_positive_int(p, "sampling timer");
378 *colonp = ':';
379 return TRUE;
381 #endif
383 #ifdef HAVE_PCAP_REMOTE
385 * Given a string of the form "<username>:<password>", as might appear
386 * as an argument to a "-A" option, parse it and set the arguments in
387 * question. Return an indication of whether it succeeded or failed
388 * in some fashion.
390 static gboolean
391 get_auth_arguments(capture_options *capture_opts, const char *arg)
393 gchar *p = NULL, *colonp;
395 colonp = strchr(arg, ':');
396 if (colonp == NULL)
397 return FALSE;
399 p = colonp;
400 *p++ = '\0';
402 while (isspace((guchar)*p))
403 p++;
405 if (capture_opts->ifaces->len > 0) {
406 interface_options interface_opts;
408 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
409 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
410 interface_opts.auth_type = CAPTURE_AUTH_PWD;
411 interface_opts.auth_username = g_strdup(arg);
412 interface_opts.auth_password = g_strdup(p);
413 g_array_append_val(capture_opts->ifaces, interface_opts);
414 } else {
415 capture_opts->default_options.auth_type = CAPTURE_AUTH_PWD;
416 capture_opts->default_options.auth_username = g_strdup(arg);
417 capture_opts->default_options.auth_password = g_strdup(p);
419 *colonp = ':';
420 return TRUE;
422 #endif
424 static int
425 capture_opts_add_iface_opt(capture_options *capture_opts, const char *optarg_str_p)
427 long adapter_index;
428 char *p;
429 GList *if_list;
430 if_info_t *if_info;
431 int err;
432 gchar *err_str;
433 interface_options interface_opts;
436 * If the argument is a number, treat it as an index into the list
437 * of adapters, as printed by "tshark -D".
439 * This should be OK on UNIX systems, as interfaces shouldn't have
440 * names that begin with digits. It can be useful on Windows, where
441 * more than one interface can have the same name.
443 adapter_index = strtol(optarg_str_p, &p, 10);
444 if (p != NULL && *p == '\0') {
445 if (adapter_index < 0) {
446 cmdarg_err("The specified adapter index is a negative number");
447 return 1;
449 if (adapter_index > INT_MAX) {
450 cmdarg_err("The specified adapter index is too large (greater than %d)",
451 INT_MAX);
452 return 1;
454 if (adapter_index == 0) {
455 cmdarg_err("There is no interface with that adapter index");
456 return 1;
458 if_list = capture_interface_list(&err, &err_str, NULL);
459 if (if_list == NULL) {
460 switch (err) {
462 case CANT_GET_INTERFACE_LIST:
463 case DONT_HAVE_PCAP:
464 cmdarg_err("%s", err_str);
465 g_free(err_str);
466 break;
468 case NO_INTERFACES_FOUND:
469 cmdarg_err("There are no interfaces on which a capture can be done");
470 break;
472 return 2;
474 if_info = (if_info_t *)g_list_nth_data(if_list, (int)(adapter_index - 1));
475 if (if_info == NULL) {
476 cmdarg_err("There is no interface with that adapter index");
477 return 1;
479 interface_opts.name = g_strdup(if_info->name);
480 if (if_info->friendly_name != NULL) {
482 * We have a friendly name for the interface, so display that
483 * instead of the interface name/guid.
485 * XXX - on UN*X, the interface name is not quite so ugly,
486 * and might be more familiar to users; display them both?
488 interface_opts.console_display_name = g_strdup(if_info->friendly_name);
489 } else {
490 /* fallback to the interface name */
491 interface_opts.console_display_name = g_strdup(if_info->name);
493 free_interface_list(if_list);
494 } else if (capture_opts->capture_child) {
495 /* In Wireshark capture child mode, thus proper device name is supplied. */
496 /* No need for trying to match it for friendly names. */
497 interface_opts.name = g_strdup(optarg_str_p);
498 interface_opts.console_display_name = g_strdup(optarg_str_p);
499 } else {
501 * Retrieve the interface list so that we can search for the
502 * specified option amongst both the interface names and the
503 * friendly names and so that we find the friendly name even
504 * if an interface name was specified.
506 * If we can't get the list, just use the specified option as
507 * the interface name, so that the user can try specifying an
508 * interface explicitly for testing purposes.
510 if_list = capture_interface_list(&err, NULL, NULL);
511 if (if_list != NULL) {
512 /* try and do an exact match (case insensitive) */
513 GList *if_entry;
514 gboolean matched;
516 matched = FALSE;
517 for (if_entry = g_list_first(if_list); if_entry != NULL;
518 if_entry = g_list_next(if_entry))
520 if_info = (if_info_t *)if_entry->data;
521 /* exact name check */
522 if (g_ascii_strcasecmp(if_info->name, optarg_str_p) == 0) {
523 /* exact match on the interface name, use that for displaying etc */
524 interface_opts.name = g_strdup(if_info->name);
526 if (if_info->friendly_name != NULL) {
528 * If we have a friendly name, use that for the
529 * console display name, as it is the basis for
530 * the auto generated temp filename.
532 interface_opts.console_display_name = g_strdup(if_info->friendly_name);
533 } else {
534 interface_opts.console_display_name = g_strdup(if_info->name);
536 matched = TRUE;
537 break;
540 /* exact friendly name check */
541 if (if_info->friendly_name != NULL &&
542 g_ascii_strcasecmp(if_info->friendly_name, optarg_str_p) == 0) {
543 /* exact match - use the friendly name for display */
544 interface_opts.name = g_strdup(if_info->name);
545 interface_opts.console_display_name = g_strdup(if_info->friendly_name);
546 matched = TRUE;
547 break;
551 /* didn't find, attempt a case insensitive prefix match of the friendly name*/
552 if (!matched) {
553 size_t prefix_length;
555 prefix_length = strlen(optarg_str_p);
556 for (if_entry = g_list_first(if_list); if_entry != NULL;
557 if_entry = g_list_next(if_entry))
559 if_info = (if_info_t *)if_entry->data;
561 if (if_info->friendly_name != NULL &&
562 g_ascii_strncasecmp(if_info->friendly_name, optarg_str_p, prefix_length) == 0) {
563 /* prefix match - use the friendly name for display */
564 interface_opts.name = g_strdup(if_info->name);
565 interface_opts.console_display_name = g_strdup(if_info->friendly_name);
566 matched = TRUE;
567 break;
571 if (!matched) {
573 * We didn't find the interface in the list; just use
574 * the specified name, so that, for example, if an
575 * interface doesn't show up in the list for some
576 * reason, the user can try specifying it explicitly
577 * for testing purposes.
579 interface_opts.name = g_strdup(optarg_str_p);
580 interface_opts.console_display_name = g_strdup(optarg_str_p);
582 free_interface_list(if_list);
583 } else {
584 interface_opts.name = g_strdup(optarg_str_p);
585 interface_opts.console_display_name = g_strdup(optarg_str_p);
589 /* We don't set iface_descr here because doing so requires
590 * capture_ui_utils.c which requires epan/prefs.c which is
591 * probably a bit too much dependency for here...
593 interface_opts.descr = g_strdup(capture_opts->default_options.descr);
594 interface_opts.cfilter = g_strdup(capture_opts->default_options.cfilter);
595 interface_opts.snaplen = capture_opts->default_options.snaplen;
596 interface_opts.has_snaplen = capture_opts->default_options.has_snaplen;
597 interface_opts.linktype = capture_opts->default_options.linktype;
598 interface_opts.promisc_mode = capture_opts->default_options.promisc_mode;
599 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
600 interface_opts.buffer_size = capture_opts->default_options.buffer_size;
601 #endif
602 interface_opts.monitor_mode = capture_opts->default_options.monitor_mode;
603 #ifdef HAVE_PCAP_REMOTE
604 interface_opts.src_type = capture_opts->default_options.src_type;
605 interface_opts.remote_host = g_strdup(capture_opts->default_options.remote_host);
606 interface_opts.remote_port = g_strdup(capture_opts->default_options.remote_port);
607 interface_opts.auth_type = capture_opts->default_options.auth_type;
608 interface_opts.auth_username = g_strdup(capture_opts->default_options.auth_username);
609 interface_opts.auth_password = g_strdup(capture_opts->default_options.auth_password);
610 interface_opts.datatx_udp = capture_opts->default_options.datatx_udp;
611 interface_opts.nocap_rpcap = capture_opts->default_options.nocap_rpcap;
612 interface_opts.nocap_local = capture_opts->default_options.nocap_local;
613 #endif
614 #ifdef HAVE_PCAP_SETSAMPLING
615 interface_opts.sampling_method = capture_opts->default_options.sampling_method;
616 interface_opts.sampling_param = capture_opts->default_options.sampling_param;
617 #endif
619 g_array_append_val(capture_opts->ifaces, interface_opts);
621 return 0;
626 capture_opts_add_opt(capture_options *capture_opts, int opt, const char *optarg_str_p, gboolean *start_capture)
628 int status, snaplen;
630 switch(opt) {
631 case LONGOPT_NUM_CAP_COMMENT: /* capture comment */
632 if (capture_opts->capture_comment) {
633 cmdarg_err("--capture-comment can be set only once per file");
634 return 1;
636 capture_opts->capture_comment = g_strdup(optarg_str_p);
637 break;
638 case 'a': /* autostop criteria */
639 if (set_autostop_criterion(capture_opts, optarg_str_p) == FALSE) {
640 cmdarg_err("Invalid or unknown -a flag \"%s\"", optarg_str_p);
641 return 1;
643 break;
644 #ifdef HAVE_PCAP_REMOTE
645 case 'A':
646 if (get_auth_arguments(capture_opts, optarg_str_p) == FALSE) {
647 cmdarg_err("Invalid or unknown -A arg \"%s\"", optarg_str_p);
648 return 1;
650 break;
651 #endif
652 case 'b': /* Ringbuffer option */
653 capture_opts->multi_files_on = TRUE;
654 if (get_ring_arguments(capture_opts, optarg_str_p) == FALSE) {
655 cmdarg_err("Invalid or unknown -b arg \"%s\"", optarg_str_p);
656 return 1;
658 break;
659 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
660 case 'B': /* Buffer size */
661 if (capture_opts->ifaces->len > 0) {
662 interface_options interface_opts;
664 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
665 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
666 interface_opts.buffer_size = get_positive_int(optarg_str_p, "buffer size");
667 g_array_append_val(capture_opts->ifaces, interface_opts);
668 } else {
669 capture_opts->default_options.buffer_size = get_positive_int(optarg_str_p, "buffer size");
671 break;
672 #endif
673 case 'c': /* Capture n packets */
674 capture_opts->has_autostop_packets = TRUE;
675 capture_opts->autostop_packets = get_positive_int(optarg_str_p, "packet count");
676 break;
677 case 'f': /* capture filter */
678 if (capture_opts->ifaces->len > 0) {
679 interface_options interface_opts;
681 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
682 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
683 g_free(interface_opts.cfilter);
684 interface_opts.cfilter = g_strdup(optarg_str_p);
685 g_array_append_val(capture_opts->ifaces, interface_opts);
686 } else {
687 g_free(capture_opts->default_options.cfilter);
688 capture_opts->default_options.cfilter = g_strdup(optarg_str_p);
690 break;
691 case 'g': /* enable group read access on the capture file(s) */
692 capture_opts->group_read_access = TRUE;
693 break;
694 case 'H': /* Hide capture info dialog box */
695 capture_opts->show_info = FALSE;
696 break;
697 case 'i': /* Use interface x */
698 status = capture_opts_add_iface_opt(capture_opts, optarg_str_p);
699 if (status != 0) {
700 return status;
702 break;
703 #ifdef HAVE_PCAP_CREATE
704 case 'I': /* Capture in monitor mode */
705 if (capture_opts->ifaces->len > 0) {
706 interface_options interface_opts;
708 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
709 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
710 interface_opts.monitor_mode = TRUE;
711 g_array_append_val(capture_opts->ifaces, interface_opts);
712 } else {
713 capture_opts->default_options.monitor_mode = TRUE;
715 break;
716 #endif
717 case 'k': /* Start capture immediately */
718 *start_capture = TRUE;
719 break;
720 /*case 'l':*/ /* Automatic scrolling in live capture mode */
721 #ifdef HAVE_PCAP_SETSAMPLING
722 case 'm':
723 if (get_sampling_arguments(capture_opts, optarg_str_p) == FALSE) {
724 cmdarg_err("Invalid or unknown -m arg \"%s\"", optarg_str_p);
725 return 1;
727 break;
728 #endif
729 case 'n': /* Use pcapng format */
730 capture_opts->use_pcapng = TRUE;
731 break;
732 case 'p': /* Don't capture in promiscuous mode */
733 if (capture_opts->ifaces->len > 0) {
734 interface_options interface_opts;
736 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
737 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
738 interface_opts.promisc_mode = FALSE;
739 g_array_append_val(capture_opts->ifaces, interface_opts);
740 } else {
741 capture_opts->default_options.promisc_mode = FALSE;
743 break;
744 case 'P': /* Use pcap format */
745 capture_opts->use_pcapng = FALSE;
746 break;
747 #ifdef HAVE_PCAP_REMOTE
748 case 'r':
749 if (capture_opts->ifaces->len > 0) {
750 interface_options interface_opts;
752 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
753 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
754 interface_opts.nocap_rpcap = FALSE;
755 g_array_append_val(capture_opts->ifaces, interface_opts);
756 } else {
757 capture_opts->default_options.nocap_rpcap = FALSE;
759 break;
760 #endif
761 case 's': /* Set the snapshot (capture) length */
762 snaplen = get_natural_int(optarg_str_p, "snapshot length");
764 * Make a snapshot length of 0 equivalent to the maximum packet
765 * length, mirroring what tcpdump does.
767 if (snaplen == 0)
768 snaplen = WTAP_MAX_PACKET_SIZE;
769 if (capture_opts->ifaces->len > 0) {
770 interface_options interface_opts;
772 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
773 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
774 interface_opts.has_snaplen = TRUE;
775 interface_opts.snaplen = snaplen;
776 g_array_append_val(capture_opts->ifaces, interface_opts);
777 } else {
778 capture_opts->default_options.snaplen = snaplen;
779 capture_opts->default_options.has_snaplen = TRUE;
781 break;
782 case 'S': /* "Real-Time" mode: used for following file ala tail -f */
783 capture_opts->real_time_mode = TRUE;
784 break;
785 #ifdef HAVE_PCAP_REMOTE
786 case 'u':
787 if (capture_opts->ifaces->len > 0) {
788 interface_options interface_opts;
790 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
791 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
792 interface_opts.datatx_udp = TRUE;
793 g_array_append_val(capture_opts->ifaces, interface_opts);
794 } else {
795 capture_opts->default_options.datatx_udp = TRUE;
797 break;
798 #endif
799 case 'w': /* Write to capture file x */
800 capture_opts->saving_to_file = TRUE;
801 g_free(capture_opts->save_file);
802 capture_opts->save_file = g_strdup(optarg_str_p);
803 status = capture_opts_output_to_pipe(capture_opts->save_file, &capture_opts->output_to_pipe);
804 return status;
805 case 'y': /* Set the pcap data link type */
806 if (capture_opts->ifaces->len > 0) {
807 interface_options interface_opts;
809 interface_opts = g_array_index(capture_opts->ifaces, interface_options, capture_opts->ifaces->len - 1);
810 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, capture_opts->ifaces->len - 1);
811 interface_opts.linktype = linktype_name_to_val(optarg_str_p);
812 if (interface_opts.linktype == -1) {
813 cmdarg_err("The specified data link type \"%s\" isn't valid",
814 optarg_str_p);
815 return 1;
817 g_array_append_val(capture_opts->ifaces, interface_opts);
818 } else {
819 capture_opts->default_options.linktype = linktype_name_to_val(optarg_str_p);
820 if (capture_opts->default_options.linktype == -1) {
821 cmdarg_err("The specified data link type \"%s\" isn't valid",
822 optarg_str_p);
823 return 1;
826 break;
827 default:
828 /* the caller is responsible to send us only the right opt's */
829 g_assert_not_reached();
832 return 0;
835 void
836 capture_opts_print_if_capabilities(if_capabilities_t *caps, char *name,
837 gboolean monitor_mode)
839 GList *lt_entry;
840 data_link_info_t *data_link_info;
842 if (caps->can_set_rfmon)
843 printf("Data link types of interface %s when %sin monitor mode (use option -y to set):\n",
844 name, monitor_mode ? "" : "not ");
845 else
846 printf("Data link types of interface %s (use option -y to set):\n", name);
847 for (lt_entry = caps->data_link_types; lt_entry != NULL;
848 lt_entry = g_list_next(lt_entry)) {
849 data_link_info = (data_link_info_t *)lt_entry->data;
850 printf(" %s", data_link_info->name);
851 if (data_link_info->description != NULL)
852 printf(" (%s)", data_link_info->description);
853 else
854 printf(" (not supported)");
855 printf("\n");
859 /* Print an ASCII-formatted list of interfaces. */
860 void
861 capture_opts_print_interfaces(GList *if_list)
863 int i;
864 GList *if_entry;
865 if_info_t *if_info;
867 i = 1; /* Interface id number */
868 for (if_entry = g_list_first(if_list); if_entry != NULL;
869 if_entry = g_list_next(if_entry)) {
870 if_info = (if_info_t *)if_entry->data;
871 printf("%d. %s", i++, if_info->name);
873 /* Print the interface friendly name, if it exists;
874 if not fall back to vendor description, if it exists. */
875 if (if_info->friendly_name != NULL){
876 printf(" (%s)", if_info->friendly_name);
877 } else {
878 if (if_info->vendor_description != NULL)
879 printf(" (%s)", if_info->vendor_description);
881 printf("\n");
886 void
887 capture_opts_trim_snaplen(capture_options *capture_opts, int snaplen_min)
889 guint i;
890 interface_options interface_opts;
892 if (capture_opts->ifaces->len > 0) {
893 for (i = 0; i < capture_opts->ifaces->len; i++) {
894 interface_opts = g_array_index(capture_opts->ifaces, interface_options, 0);
895 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, 0);
896 if (interface_opts.snaplen < 1)
897 interface_opts.snaplen = WTAP_MAX_PACKET_SIZE;
898 else if (interface_opts.snaplen < snaplen_min)
899 interface_opts.snaplen = snaplen_min;
900 g_array_append_val(capture_opts->ifaces, interface_opts);
902 } else {
903 if (capture_opts->default_options.snaplen < 1)
904 capture_opts->default_options.snaplen = WTAP_MAX_PACKET_SIZE;
905 else if (capture_opts->default_options.snaplen < snaplen_min)
906 capture_opts->default_options.snaplen = snaplen_min;
911 void
912 capture_opts_trim_ring_num_files(capture_options *capture_opts)
914 /* Check the value range of the ring_num_files parameter */
915 if (capture_opts->ring_num_files > RINGBUFFER_MAX_NUM_FILES) {
916 cmdarg_err("Too many ring buffer files (%u). Reducing to %u.\n", capture_opts->ring_num_files, RINGBUFFER_MAX_NUM_FILES);
917 capture_opts->ring_num_files = RINGBUFFER_MAX_NUM_FILES;
918 } else if (capture_opts->ring_num_files > RINGBUFFER_WARN_NUM_FILES) {
919 cmdarg_err("%u is a lot of ring buffer files.\n", capture_opts->ring_num_files);
921 #if RINGBUFFER_MIN_NUM_FILES > 0
922 else if (capture_opts->ring_num_files < RINGBUFFER_MIN_NUM_FILES)
923 cmdarg_err("Too few ring buffer files (%u). Increasing to %u.\n", capture_opts->ring_num_files, RINGBUFFER_MIN_NUM_FILES);
924 capture_opts->ring_num_files = RINGBUFFER_MIN_NUM_FILES;
925 #endif
929 * If no interface was specified explicitly, pick a default.
932 capture_opts_default_iface_if_necessary(capture_options *capture_opts,
933 const char *capture_device)
935 int status;
937 /* Did the user specify an interface to use? */
938 if (capture_opts->num_selected != 0 || capture_opts->ifaces->len != 0) {
939 /* yes they did, return immediately - nothing further to do here */
940 return 0;
943 /* No - is a default specified in the preferences file? */
944 if (capture_device != NULL) {
945 /* Yes - use it. */
946 status = capture_opts_add_iface_opt(capture_opts, capture_device);
947 return status;
949 /* No default in preferences file, just pick the first interface from the list of interfaces. */
950 return capture_opts_add_iface_opt(capture_opts, "1");
953 #ifndef S_IFIFO
954 #define S_IFIFO _S_IFIFO
955 #endif
956 #ifndef S_ISFIFO
957 #define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO)
958 #endif
960 /* copied from filesystem.c */
961 static int
962 capture_opts_test_for_fifo(const char *path)
964 ws_statb64 statb;
966 if (ws_stat64(path, &statb) < 0)
967 return errno;
969 if (S_ISFIFO(statb.st_mode))
970 return ESPIPE;
971 else
972 return 0;
975 static gboolean
976 capture_opts_output_to_pipe(const char *save_file, gboolean *is_pipe)
978 int err;
980 *is_pipe = FALSE;
982 if (save_file != NULL) {
983 /* We're writing to a capture file. */
984 if (strcmp(save_file, "-") == 0) {
985 /* Writing to stdout. */
986 /* XXX - should we check whether it's a pipe? It's arguably
987 silly to do "-w - >output_file" rather than "-w output_file",
988 but by not checking we might be violating the Principle Of
989 Least Astonishment. */
990 *is_pipe = TRUE;
991 } else {
992 /* not writing to stdout, test for a FIFO (aka named pipe) */
993 err = capture_opts_test_for_fifo(save_file);
994 switch (err) {
996 case ENOENT: /* it doesn't exist, so we'll be creating it,
997 and it won't be a FIFO */
998 case 0: /* found it, but it's not a FIFO */
999 break;
1001 case ESPIPE: /* it is a FIFO */
1002 *is_pipe = TRUE;
1003 break;
1005 default: /* couldn't stat it */
1006 break; /* ignore: later attempt to open */
1007 /* will generate a nice msg */
1012 return 0;
1016 * Add all non-hidden selected interfaces in the "all interfaces" list
1017 * to the list of interfaces for the capture.
1019 void
1020 collect_ifaces(capture_options *capture_opts)
1022 guint i;
1023 interface_t device;
1024 interface_options interface_opts;
1026 /* Empty out the existing list of interfaces. */
1027 for (i = capture_opts->ifaces->len; i != 0; i--) {
1028 interface_opts = g_array_index(capture_opts->ifaces, interface_options, i - 1);
1029 g_free(interface_opts.name);
1030 g_free(interface_opts.descr);
1031 if (interface_opts.console_display_name != NULL)
1032 g_free(interface_opts.console_display_name);
1033 g_free(interface_opts.cfilter);
1034 #ifdef HAVE_PCAP_REMOTE
1035 if (interface_opts.src_type == CAPTURE_IFREMOTE) {
1036 g_free(interface_opts.remote_host);
1037 g_free(interface_opts.remote_port);
1038 g_free(interface_opts.auth_username);
1039 g_free(interface_opts.auth_password);
1041 #endif
1042 capture_opts->ifaces = g_array_remove_index(capture_opts->ifaces, i - 1);
1045 /* Now fill the list up again. */
1046 for (i = 0; i < capture_opts->all_ifaces->len; i++) {
1047 device = g_array_index(capture_opts->all_ifaces, interface_t, i);
1048 if (!device.hidden && device.selected) {
1049 interface_opts.name = g_strdup(device.name);
1050 interface_opts.descr = g_strdup(device.display_name);
1051 interface_opts.console_display_name = g_strdup(device.name);
1052 interface_opts.linktype = device.active_dlt;
1053 interface_opts.cfilter = g_strdup(device.cfilter);
1054 interface_opts.snaplen = device.snaplen;
1055 interface_opts.has_snaplen = device.has_snaplen;
1056 interface_opts.promisc_mode = device.pmode;
1057 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
1058 interface_opts.buffer_size = device.buffer;
1059 #endif
1060 #ifdef HAVE_PCAP_CREATE
1061 interface_opts.monitor_mode = device.monitor_mode_enabled;
1062 #endif
1063 #ifdef HAVE_PCAP_REMOTE
1064 interface_opts.src_type = CAPTURE_IFREMOTE;
1065 interface_opts.remote_host = g_strdup(device.remote_opts.remote_host_opts.remote_host);
1066 interface_opts.remote_port = g_strdup(device.remote_opts.remote_host_opts.remote_port);
1067 interface_opts.auth_type = device.remote_opts.remote_host_opts.auth_type;
1068 interface_opts.auth_username = g_strdup(device.remote_opts.remote_host_opts.auth_username);
1069 interface_opts.auth_password = g_strdup(device.remote_opts.remote_host_opts.auth_password);
1070 interface_opts.datatx_udp = device.remote_opts.remote_host_opts.datatx_udp;
1071 interface_opts.nocap_rpcap = device.remote_opts.remote_host_opts.nocap_rpcap;
1072 interface_opts.nocap_local = device.remote_opts.remote_host_opts.nocap_local;
1073 #endif
1074 #ifdef HAVE_PCAP_SETSAMPLING
1075 interface_opts.sampling_method = device.remote_opts.sampling_method;
1076 interface_opts.sampling_param = device.remote_opts.sampling_param;
1077 #endif
1078 g_array_append_val(capture_opts->ifaces, interface_opts);
1079 } else {
1080 continue;
1086 #endif /* HAVE_LIBPCAP */