2 * Utilities for capture user interfaces
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.
35 #include "epan/prefs.h"
36 #include "epan/ex-opt.h"
37 #include "capture_ifinfo.h"
38 #include "capture_ui_utils.h"
39 #include "wiretap/wtap.h"
40 #include "epan/to_str.h"
43 * Find user-specified capture device description that matches interface
47 capture_dev_user_descr_find(const gchar
*if_name
)
55 if ((prefs
.capture_devices_descr
== NULL
) ||
56 (*prefs
.capture_devices_descr
== '\0')) {
57 /* There are no descriptions. */
61 if ((p
= strstr(prefs
.capture_devices_descr
, if_name
)) == NULL
) {
62 /* There are, but there isn't one for this interface. */
67 /* error: ran into next interface description */
70 /* found left parenthesis, start of description */
74 /* skip over left parenthesis */
76 /* save pointer to beginning of description */
81 /* end of description */
90 if ((lp
== 1) && (ct
> 0) && (p2
!= NULL
)) {
91 /* Allocate enough space to return the string,
92 which runs from p2 to p, plus a terminating
94 descr
= (char *)g_malloc(p
- p2
+ 1);
95 memcpy(descr
, p2
, p
- p2
);
104 capture_dev_user_linktype_find(const gchar
*if_name
)
109 if ((prefs
.capture_devices_linktypes
== NULL
) ||
110 (*prefs
.capture_devices_linktypes
== '\0')) {
111 /* There are no link-layer header types */
115 if ((p
= strstr(prefs
.capture_devices_linktypes
, if_name
)) == NULL
) {
116 /* There are, but there isn't one for this interface. */
120 p
+= strlen(if_name
) + 1;
121 linktype
= strtol(p
, &next
, 10);
122 if (next
== p
|| *next
!= ')' || linktype
< 0) {
126 if (linktype
> G_MAXINT
) {
127 /* Value doesn't fit in a gint */
131 return (gint
)linktype
;
134 #if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
136 capture_dev_user_buffersize_find(const gchar
*if_name
)
141 if ((prefs
.capture_devices_buffersize
== NULL
) ||
142 (*prefs
.capture_devices_buffersize
== '\0')) {
143 /* There are no buffersizes defined */
147 if ((p
= strstr(prefs
.capture_devices_buffersize
, if_name
)) == NULL
) {
148 /* There are, but there isn't one for this interface. */
152 p
+= strlen(if_name
) + 1;
153 buffersize
= (gint
)strtol(p
, &next
, 10);
154 if (next
== p
|| *next
!= ')' || buffersize
< 0) {
158 if (buffersize
> G_MAXINT
) {
159 /* Value doesn't fit in a gint */
163 return (gint
)buffersize
;
168 capture_dev_user_snaplen_find(const gchar
*if_name
)
173 if ((prefs
.capture_devices_snaplen
== NULL
) ||
174 (*prefs
.capture_devices_snaplen
== '\0')) {
175 /* There is no snap length defined */
179 if ((p
= strstr(prefs
.capture_devices_snaplen
, if_name
)) == NULL
) {
180 /* There are, but there isn't one for this interface. */
184 p
+= strlen(if_name
) + 3;
185 snaplen
= (gint
)strtol(p
, &next
, 10);
186 if (next
== p
|| *next
!= ')' || snaplen
< 0) {
190 if (snaplen
> WTAP_MAX_PACKET_SIZE
) {
191 /* Value doesn't fit in a gint */
195 return (gint
)snaplen
;
199 capture_dev_user_hassnap_find(const gchar
*if_name
)
204 if ((prefs
.capture_devices_snaplen
== NULL
) ||
205 (*prefs
.capture_devices_snaplen
== '\0')) {
206 /* There is no snap length defined */
210 if ((p
= strstr(prefs
.capture_devices_snaplen
, if_name
)) == NULL
) {
211 /* There are, but there isn't one for this interface. */
215 p
+= strlen(if_name
) + 1;
216 hassnap
= (gboolean
)strtol(p
, &next
, 10);
217 if (next
== p
|| *next
!= '(') {
222 return (gboolean
)hassnap
;
226 capture_dev_user_pmode_find(const gchar
*if_name
)
231 if ((prefs
.capture_devices_pmode
== NULL
) ||
232 (*prefs
.capture_devices_pmode
== '\0')) {
233 /* There is no promiscuous mode defined */
237 if ((p
= strstr(prefs
.capture_devices_pmode
, if_name
)) == NULL
) {
238 /* There are, but there isn't one for this interface. */
242 p
+= strlen(if_name
) + 1;
243 pmode
= (gboolean
)strtol(p
, &next
, 10);
244 if (next
== p
|| *next
!= ')') {
248 return (gboolean
)pmode
;
252 * Return as descriptive a name for an interface as we can get.
253 * If the user has specified a comment, use that. Otherwise,
254 * if capture_interface_list() supplies a description, use that,
255 * otherwise use the interface name.
257 * The result must be g_free()'d when you're done with it.
259 * Note: given that this calls capture_interface_list(), which attempts to
260 * open all adapters it finds in order to check whether they can be
261 * captured on, this is an expensive routine to call, so don't call it
265 get_interface_descriptive_name(const char *if_name
)
273 /* Do we have a user-supplied description? */
274 descr
= capture_dev_user_descr_find(if_name
);
276 /* Yes - make a copy of that. */
277 descr
= g_strdup(descr
);
278 } else if (strcmp(if_name
, "-") == 0) {
280 * Strictly speaking, -X (extension) options are for modules, e.g. Lua
281 * and using one here stretches that definition. However, this doesn't
282 * waste a single-letter option on something that might be rarely used
283 * and is backward-compatible to 1.0.
285 descr
= g_strdup(ex_opt_get_nth("stdin_descr", 0));
287 descr
= g_strdup("Standard input");
290 /* No, we don't have a user-supplied description; did we get
291 one from the OS or libpcap? */
293 if_list
= capture_interface_list(&err
, NULL
, NULL
);
294 if (if_list
!= NULL
) {
297 if_info
= (if_info_t
*)if_entry
->data
;
298 if (strcmp(if_info
->name
, if_name
) == 0) {
299 if (if_info
->friendly_name
!= NULL
) {
300 /* We have a "friendly name"; return a copy of that
301 as the description - when we free the interface
302 list, that'll also free up the strings to which
304 descr
= g_strdup(if_info
->friendly_name
);
305 } else if (if_info
->vendor_description
!= NULL
) {
306 /* We have no "friendly name", but we have a vendor
307 description; return a copy of that - when we free
308 the interface list, that'll also free up the strings
309 to which it refers. */
310 descr
= g_strdup(if_info
->vendor_description
);
314 } while ((if_entry
= g_list_next(if_entry
)) != NULL
);
316 free_interface_list(if_list
);
319 /* The interface name is all we have, so just return a copy of that. */
320 descr
= g_strdup(if_name
);
328 /* search interface info by interface name */
330 search_info(GList
*if_list
, gchar
*if_name
)
336 for (if_entry
= if_list
; if_entry
!= NULL
; if_entry
= g_list_next(if_entry
)) {
337 if_info
= (if_info_t
*)if_entry
->data
;
339 if(strcmp(if_name
, if_info
->name
) == 0) {
348 /* build the string to display in the combo box for the given interface */
350 build_capture_combo_name(GList
*if_list
, gchar
*if_name
)
356 /* Do we have a user-supplied description? */
357 descr
= capture_dev_user_descr_find(if_name
);
359 /* Yes, we have a user-supplied description; use it. */
360 if_string
= g_strdup_printf("%s: %s", descr
, if_name
);
363 /* No, we don't have a user-supplied description; did we get
364 one from the OS or libpcap? */
365 if_info
= search_info(if_list
, if_name
);
366 if (if_info
!= NULL
&& if_info
->vendor_description
!= NULL
) {
368 if_string
= g_strdup_printf("%s: %s", if_info
->vendor_description
,
372 if_string
= g_strdup(if_name
);
381 build_capture_combo_list(GList
*if_list
, gboolean do_hide
)
390 if (if_list
!= NULL
) {
391 /* Scan through the list and build a list of strings to display. */
392 for (if_entry
= if_list
; if_entry
!= NULL
;
393 if_entry
= g_list_next(if_entry
)) {
394 if_info
= (if_info_t
*)if_entry
->data
;
396 /* Is this interface hidden and, if so, should we include it
398 if (!prefs_is_capture_device_hidden(if_info
->name
) || !do_hide
) {
399 /* It's not hidden, or it is but we should include it in the list. */
401 /* Do we have a user-supplied description? */
402 descr
= capture_dev_user_descr_find(if_info
->name
);
404 /* Yes, we have a user-supplied description; use it. */
405 if_string
= g_strdup_printf("%s: %s", descr
, if_info
->name
);
408 /* No, we don't have a user-supplied description; did we get
409 one from the OS or libpcap? */
410 if (if_info
->vendor_description
!= NULL
) {
412 if_string
= g_strdup_printf("%s: %s",
413 if_info
->vendor_description
,
417 if_string
= g_strdup(if_info
->name
);
420 combo_list
= g_list_append(combo_list
, if_string
);
428 free_if_string(gpointer data
, gpointer user_data _U_
)
434 free_capture_combo_list(GList
*combo_list
)
436 if (combo_list
!= NULL
) {
437 g_list_foreach(combo_list
, free_if_string
, NULL
);
438 g_list_free(combo_list
);
443 * Given text that contains an interface name possibly prefixed by an
444 * interface description, extract the interface name.
447 get_if_name(const char *if_text
)
453 * We cannot assume that the interface name doesn't contain a space;
454 * some names on Windows OT do.
456 * We also can't assume it begins with "\Device\", either, as, on
457 * Windows OT, WinPcap doesn't put "\Device\" in front of the name.
459 * As I remember, we can't assume that the interface description
460 * doesn't contain a colon, either; I think some do.
462 * We can probably assume that the interface *name* doesn't contain
463 * a colon, however; if any interface name does contain a colon on
464 * Windows, it'll be time to just get rid of the damn interface
465 * descriptions in the drop-down list, have just the names in the
466 * drop-down list, and have a "Browse..." button to browse for interfaces,
467 * with names, descriptions, IP addresses, blah blah blah available when
470 * So we search backwards for a colon. If we don't find it, just
471 * return the entire string; otherwise, skip the colon and any blanks
472 * after it, and return that string.
474 if_name
= if_text
+ strlen(if_text
);
476 if (if_name
== if_text
) {
477 /* We're at the beginning of the string; return it. */
481 if (*if_name
== ':') {
483 * We've found a colon.
484 * Unfortunately, a colon is used in the string "rpcap://",
485 * which is used in case of a remote capture.
486 * So we'll check to make sure the colon isn't followed by "//";
487 * it'll be followed by a blank if it separates the description
488 * and the interface name. (We don't wire in "rpcap", in case we
489 * support other protocols in the same syntax.)
490 * Unfortunately, another colon can be used in "rpcap://host:port/"
491 * before port. Check if colon is followed by digit.
493 if ((strncmp(if_name
, "://", 3) != 0) && !isdigit(if_name
[1])) {
495 * OK, we've found a colon followed neither by "//" nor by digit.
496 * Skip blanks following it.
499 while (*if_name
== ' ')
504 /* Keep looking for a colon not followed by "//". */
508 * There's a space between the interface description and name, and
509 * the interface name shouldn't have a space in it (it doesn't, on
510 * UNIX systems); look backwards in the string for a space.
512 * (An interface name might, however, contain a colon in it, which
513 * is why we don't use the colon search on UNIX.)
515 if_name
= strrchr(if_text
, ' ');
516 if (if_name
== NULL
) {
525 /* Return interface_opts->descr (after setting it if it is not set)
526 * This is necessary because capture_opts.c can't set descr (at least
527 * not without adding significant dependencies there).
530 get_iface_description_for_interface(capture_options
*capture_opts
, guint i
)
532 interface_options interface_opts
;
534 if (i
< capture_opts
->ifaces
->len
) {
535 interface_opts
= g_array_index(capture_opts
->ifaces
, interface_options
, i
);
536 if (!interface_opts
.descr
&& interface_opts
.name
) {
537 interface_opts
.descr
= get_interface_descriptive_name(interface_opts
.name
);
538 capture_opts
->ifaces
= g_array_remove_index(capture_opts
->ifaces
, i
);
539 g_array_insert_val(capture_opts
->ifaces
, i
, interface_opts
);
541 return (interface_opts
.descr
);
547 #endif /* HAVE_LIBPCAP */