/* Copyright (C) 2000, 2001 Christian Kreibich . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies of the Software and its documentation and acknowledgment shall be given in the documentation and software packages that this Software was used. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include static ND_ProtoField ether_fields[] = { { ND_VAL_FIELD, N_("Dst. addr.\n(%s)"), N_("Destination address"), 48, nd_ether_dest_addr_cb }, { ND_VAL_FIELD, N_("Src. addr.\n(%s)"), N_("Source address"), 48, nd_ether_src_addr_cb }, { ND_VAL_FIELD, N_("Length/Type\n(%s)"), N_("Length or type"), 16, nd_ether_lengthtype_cb }, { 0, NULL, NULL, 0, NULL } }; ND_MenuData ether_menu_type_data[] = { { "IP", N_("IP (0x0800)"), ETHERTYPE_IP, nd_ether_type_value_cb }, { "ARP", N_("ARP (0x0806)"), ETHERTYPE_ARP, nd_ether_type_value_cb }, { "RARP", N_("RARP (0x8035)"), ETHERTYPE_REVARP, nd_ether_type_value_cb }, { "PPPoE Dsc.", N_("PPPoE Discovery (0x8863)"), 0x8863, nd_ether_type_value_cb }, { "PPPoE Ses.", N_("PPPoE Session (0x8864)"), 0x8864, nd_ether_type_value_cb }, { "Custom", N_("Custom type value"), -1, nd_ether_type_custom_cb }, { NULL, NULL, 0, NULL} }; static LND_Protocol *ether; static ND_Protocol *ether_gui; /* Plugin hook implementations: ---------------------------------------- */ const char * name(void) { return ("Ethernet Plugin"); } const char * description(void) { return ("A plugin providing Ethernet support.\n"); } const char * author(void) { return ("Christian Kreibich, "); } const char * version(void) { return VERSION_MAJOR; } LND_Protocol * init(void) { if (! (ether = libnd_proto_registry_find(LND_PROTO_LAYER_LINK, DLT_EN10MB))) return NULL; ether_gui = nd_proto_new(ether); ether_gui->create_gui = nd_ether_create_gui; ether_gui->set_gui = nd_ether_set_gui; /* We're using a button table to display the protocol content, so we need to hook it in here: */ ether_gui->fields = ether_fields; ether_gui->header_width = 112; /* That's all -- we don't need checksums or state maintenance for simple Ethernet. The other methods got initialized to dummy null operations in the constructor call above. We also don't need a special menu to appear in the Protocols menu for this plugin. */ return ether; } /* Protocol method implementations: ------------------------------------ */ GtkWidget * nd_ether_create_gui(LND_Trace *trace, LND_ProtoInfo *pinf) { GtkWidget *table; table = nd_gui_proto_table_create(trace, pinf); return table; } void nd_ether_set_gui(const LND_Packet *packet, LND_ProtoInfo *pinf) { struct ether_header *eh; eh = (struct ether_header*) libnd_packet_get_data(packet, ether, pinf->inst.nesting); nd_ether_set_gui_src(pinf, eh); nd_ether_set_gui_dst(pinf, eh); nd_ether_set_gui_typelength(pinf, eh); return; TOUCH(pinf); } /* Misc helper stuff below --------------------------------------------- */ void nd_ether_set_gui_dst(LND_ProtoInfo *pinf, struct ether_header *eh) { char s[MAXPATHLEN]; g_snprintf(s, MAXPATHLEN, "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x", eh->ether_dhost[0], eh->ether_dhost[1], eh->ether_dhost[2], eh->ether_dhost[3], eh->ether_dhost[4], eh->ether_dhost[5]); nd_proto_field_set(pinf, ðer_fields[0], s); } void nd_ether_set_gui_src(LND_ProtoInfo *pinf, struct ether_header *eh) { char s[MAXPATHLEN]; g_snprintf(s, MAXPATHLEN, "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x", eh->ether_shost[0], eh->ether_shost[1], eh->ether_shost[2], eh->ether_shost[3], eh->ether_shost[4], eh->ether_shost[5]); nd_proto_field_set(pinf, ðer_fields[1], s); } void nd_ether_set_gui_typelength(LND_ProtoInfo *pinf, struct ether_header *eh) { nd_proto_field_set_for_menu(pinf, ðer_fields[2], DATA_TO_PTR(ntohs(eh->ether_type)), ether_menu_type_data, "0x%.4x"); } ND_Protocol * nd_ether_get_gui(void) { return ether_gui; } LND_Protocol * nd_ether_get(void) { return ether; }