nexmon – Rev 1

Subversion Repositories:
Rev:
/* tap-hosts.c
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

/* Dump our collected IPv4- and IPv6-to-hostname mappings */

#include "config.h"

#include <stdlib.h>
#include <string.h>

#include "globals.h"

#include <epan/packet.h>
#include <epan/tap.h>
#include <epan/stat_tap_ui.h>
#include <epan/addr_resolv.h>

void register_tap_listener_hosts(void);

gboolean dump_v4 = FALSE;
gboolean dump_v6 = FALSE;

#define TAP_NAME "hosts"

#define HOSTNAME_POS 48
#define ADDRSTRLEN 46 /* Covers IPv4 & IPv6 */

static void
ipv4_hash_table_print_resolved(gpointer key _U_, gpointer value, gpointer user_data _U_)
{
        hashipv4_t *ipv4_hash_table_entry = (hashipv4_t *)value;

        if (!(ipv4_hash_table_entry->flags & DUMMY_ADDRESS_ENTRY)) {
                printf("%s\t%s\n",
                       ipv4_hash_table_entry->ip,
                       ipv4_hash_table_entry->name);
        }
}

static void
ipv6_hash_table_print_resolved(gpointer key _U_, gpointer value, gpointer user_data _U_)
{
        hashipv6_t *ipv6_hash_table_entry = (hashipv6_t *)value;

        if (!(ipv6_hash_table_entry->flags & DUMMY_ADDRESS_ENTRY)) {
                printf("%s\t%s\n",
                       ipv6_hash_table_entry->ip6,
                       ipv6_hash_table_entry->name);
        }
}

static void
hosts_draw(void *dummy _U_)
{

        wmem_map_t *ipv4_hash_table;
        wmem_map_t *ipv6_hash_table;

        printf("# TShark hosts output\n");
        printf("#\n");
        printf("# Host data gathered from %s\n", cfile.filename);
        printf("\n");

        ipv4_hash_table = get_ipv4_hash_table();
        if (ipv4_hash_table) {
                wmem_map_foreach( ipv4_hash_table, ipv4_hash_table_print_resolved, NULL);
        }

        ipv6_hash_table = get_ipv6_hash_table();
        if (ipv6_hash_table) {
                wmem_map_foreach( ipv6_hash_table, ipv6_hash_table_print_resolved, NULL);
        }

}


static void
hosts_init(const char *opt_arg, void *userdata _U_)
{
        GString *error_string;
        gchar **tokens;
        gint opt_count;

        dump_v4 = FALSE;
        dump_v6 = FALSE;

        if (strcmp(TAP_NAME, opt_arg) == 0) {
                /* No arguments; dump everything */
                dump_v4 = TRUE;
                dump_v6 = TRUE;
        } else {
                tokens = g_strsplit(opt_arg, ",", 0);
                opt_count = 0;
                while (tokens[opt_count]) {
                        if (strcmp("ipv4", tokens[opt_count]) == 0) {
                                dump_v4 = TRUE;
                        } else if (strcmp("ipv6", tokens[opt_count]) == 0) {
                                dump_v6 = TRUE;
                        } else if (opt_count > 0) {
                                fprintf(stderr, "tshark: invalid \"-z " TAP_NAME "[,ipv4|ipv6]\" argument\n");
                                exit(1);
                        }
                        opt_count++;
                }
                g_strfreev(tokens);
        }

        error_string = register_tap_listener("frame", NULL, NULL, TL_REQUIRES_PROTO_TREE,
                                           NULL, NULL, hosts_draw);
        if (error_string) {
                /* error, we failed to attach to the tap. clean up */
                fprintf(stderr, "tshark: Couldn't register " TAP_NAME " tap: %s\n",
                        error_string->str);
                g_string_free(error_string, TRUE);
                exit(1);
        }
}

static stat_tap_ui hosts_ui = {
        REGISTER_STAT_GROUP_GENERIC,
        NULL,
        TAP_NAME,
        hosts_init,
        0,
        NULL
};

void
register_tap_listener_hosts(void)
{
        register_stat_tap_ui(&hosts_ui, NULL);
}


/*
 * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
 *
 * Local variables:
 * c-basic-offset: 8
 * tab-width: 8
 * indent-tabs-mode: t
 * End:
 *
 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
 * :indentSize=8:tabSize=8:noTabs=false:
 */