summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-08-02 06:45:51 +0000
committerGuy Harris <guy@alum.mit.edu>2012-08-02 06:45:51 +0000
commit4fc130af79b89a98e8779cb1dec70bb16b1a5c9d (patch)
tree6559450c87b7f6eac1f455575b5d05b7d6af933e
parent3e09bb9bf1b3187e1c706597c55c05be522a8884 (diff)
downloadwireshark-4fc130af79b89a98e8779cb1dec70bb16b1a5c9d.tar.gz
From Richard Stearn: AX.25 KISS protocol support.
Part 1 of the fix for bug 7529. svn path=/trunk/; revision=44202
-rw-r--r--AUTHORS4
-rw-r--r--capture_info.c4
-rw-r--r--epan/CMakeLists.txt1
-rw-r--r--epan/dissectors/Makefile.common2
-rw-r--r--epan/dissectors/packet-ax25-kiss.c404
-rw-r--r--epan/dissectors/packet-ax25-kiss.h32
-rw-r--r--epan/libwireshark.def1
-rw-r--r--wiretap/pcap-common.c2
-rw-r--r--wiretap/wtap.c5
-rw-r--r--wiretap/wtap.h1
10 files changed, 455 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index e3fa7cf732..2fea95d9b2 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -3459,6 +3459,10 @@ Rishie Sharma <rishie[at]kth.se> {
UMTS FP/MAC/RLC dissection enhancement based on NBAP signaling
}
+Richard Stearn <richard@rns-stearn.demon.co.uk> {
+ AX.25 support
+}
+
and by:
Pavel Roskin <proski[AT]gnu.org>
diff --git a/capture_info.c b/capture_info.c
index 2792fdc841..9e7e584573 100644
--- a/capture_info.c
+++ b/capture_info.c
@@ -58,6 +58,7 @@
#include <epan/dissectors/packet-arcnet.h>
#include <epan/dissectors/packet-enc.h>
#include <epan/dissectors/packet-i2c.h>
+#include <epan/dissectors/packet-ax25-kiss.h>
static void capture_info_packet(
packet_counts *counts, gint wtap_linktype, const guchar *pd, guint32 caplen, union wtap_pseudo_header *pseudo_header);
@@ -351,6 +352,9 @@ capture_info_packet(packet_counts *counts, gint wtap_linktype, const guchar *pd,
case WTAP_ENCAP_I2C:
capture_i2c(pseudo_header, counts);
break;
+ case WTAP_ENCAP_AX25_KISS:
+ capture_ax25_kiss(pd, 0, caplen, counts);
+ break;
/* XXX - some ATM drivers on FreeBSD might prepend a 4-byte ATM
pseudo-header to DLT_ATM_RFC1483, with LLC header following;
we might have to implement that at some point. */
diff --git a/epan/CMakeLists.txt b/epan/CMakeLists.txt
index 9733804bf6..935d23f8e5 100644
--- a/epan/CMakeLists.txt
+++ b/epan/CMakeLists.txt
@@ -358,6 +358,7 @@ set(DISSECTOR_SRC
dissectors/packet-atm.c
dissectors/packet-atmtcp.c
dissectors/packet-auto_rp.c
+ dissectors/packet-ax25-kiss.c
dissectors/packet-ax4000.c
dissectors/packet-ayiya.c
dissectors/packet-babel.c
diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common
index 2531dcc5fd..a1a2ba2952 100644
--- a/epan/dissectors/Makefile.common
+++ b/epan/dissectors/Makefile.common
@@ -278,6 +278,7 @@ DISSECTOR_SRC = \
packet-atm.c \
packet-atmtcp.c \
packet-auto_rp.c \
+ packet-ax25-kiss.c \
packet-ax4000.c \
packet-ayiya.c \
packet-babel.c \
@@ -1193,6 +1194,7 @@ DISSECTOR_INCLUDES = \
packet-arp.h \
packet-atalk.h \
packet-atm.h \
+ packet-ax25-kiss.h \
packet-bacapp.h \
packet-ber.h \
packet-bfd.h \
diff --git a/epan/dissectors/packet-ax25-kiss.c b/epan/dissectors/packet-ax25-kiss.c
new file mode 100644
index 0000000000..1dc3eb702f
--- /dev/null
+++ b/epan/dissectors/packet-ax25-kiss.c
@@ -0,0 +1,404 @@
+/* packet-ax25-kiss.c
+ *
+ * Routines for AX.25 KISS protocol dissection
+ * Copyright 2010,2012 R.W. Stearn <richard@rns-stearn.demon.co.uk>
+ *
+ * $Id$
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+/*
+ * This dissector handles the "KISS" protocol as implemented by the
+ * Linux kernel.
+ *
+ * The original definition of the KISS protocol can be found here:
+ * http://www.ka9q.net/papers/kiss.html
+ * and here:
+ * http://www.ax25.net/kiss.aspx
+ *
+ * Linux implementation does not appear to attempt to implement that
+ * protocol in full. Does provide the ability to send a KISS command via
+ * ax25_kiss_cmd() and internally will send FULLDUPLEX KISS commands if
+ * DAMA is enabled/disabled.
+ * i.e.:
+ * ax25_dev_dama_on sends FullDuplex ON
+ * ax25_dev_dama_off sends FullDuplex OFF
+ *
+ * Data frames are prefixed with a "Data Frame" command but the port appears to
+ * be always 0.
+ *
+ * Abstract from http://www.ka9q.net/papers/kiss.html
+ * --------------------------------------------------
+ * For reference the first byte of a KISS frame is the frame type and the TNC
+ * port number,
+ * LSB 4 bits = frame type,
+ * MSB 4 bits = port number.
+ *
+ * The frame types are:
+ * Command Function Comments
+ * 0 Data frame The rest of the frame is data to
+ * be sent on the HDLC channel.
+ *
+ * 1 TXDELAY The next byte is the transmitter
+ * keyup delay in 10 ms units.
+ * The default start-up value is 50
+ * (i.e., 500 ms).
+ *
+ * 2 P The next byte is the persistence
+ * parameter, p, scaled to the range
+ * 0 - 255 with the following
+ * formula:
+ *
+ * P = p * 256 - 1
+ *
+ * The default value is P = 63
+ * (i.e., p = 0.25).
+ *
+ * 3 SlotTime The next byte is the slot interval
+ * in 10 ms units.
+ * The default is 10 (i.e., 100ms).
+ *
+ * 4 TXtail The next byte is the time to hold
+ * up the TX after the FCS has been
+ * sent, in 10 ms units. This command
+ * is obsolete, and is included here
+ * only for compatibility with some
+ * existing implementations.
+ *
+ * 5 FullDuplex The next byte is 0 for half duplex,
+ * nonzero for full duplex.
+ * The default is 0
+ * (i.e., half duplex).
+ *
+ * 6 SetHardware Specific for each TNC. In the
+ * TNC-1, this command sets the
+ * modem speed. Other implementations
+ * may use this function for other
+ * hardware-specific functions.
+ *
+ * FF Return Exit KISS and return control to a
+ * higher-level program. This is useful
+ * only when KISS is incorporated
+ * into the TNC along with other
+ * applications.
+ *
+*/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <glib.h>
+
+#include <epan/strutil.h>
+#include <epan/packet.h>
+#include <epan/prefs.h>
+#include <epan/emem.h>
+#include <epan/etypes.h>
+
+#include "packet-ax25-kiss.h"
+
+#define STRLEN 80
+
+#define KISS_HEADER_SIZE 1 /* length of the KISS type header */
+
+/* KISS frame types */
+#define KISS_DATA_FRAME 0
+#define KISS_TXDELAY 1
+#define KISS_PERSISTENCE 2
+#define KISS_SLOT_TIME 3
+#define KISS_TXTAIL 4
+#define KISS_FULLDUPLEX 5
+#define KISS_SETHARDWARE 6
+#define KISS_RETURN 15
+
+#define KISS_CMD_MASK 0x0f
+#define KISS_PORT_MASK 0xf0
+
+/* Forward declaration we need below */
+void proto_reg_handoff_ax25_kiss(void);
+
+/* Dissector handles - all the possibles are listed */
+
+/* Initialize the protocol and registered fields */
+static int proto_ax25_kiss = -1;
+static int hf_ax25_kiss_cmd = -1;
+static int hf_ax25_kiss_port = -1;
+static int hf_ax25_kiss_txdelay = -1;
+static int hf_ax25_kiss_persistence = -1;
+static int hf_ax25_kiss_slottime = -1;
+static int hf_ax25_kiss_txtail = -1;
+static int hf_ax25_kiss_fullduplex = -1;
+static int hf_ax25_kiss_sethardware = -1;
+
+/* Global preference ("controls" display of numbers) */
+/*
+static gboolean gPREF_HEX = FALSE;
+*/
+
+/* Initialize the subtree pointers */
+static gint ett_ax25_kiss = -1;
+
+/* Code to actually dissect the packets */
+static void
+dissect_ax25_kiss( tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree )
+{
+ proto_item *ti;
+ proto_tree *kiss_tree;
+ int offset;
+ int kiss_cmd;
+ int kiss_type;
+ int kiss_port;
+ int kiss_param;
+ int kiss_param_len;
+ char *frame_type_text;
+ char *info_buffer;
+#if 0
+ void *saved_private_data;
+ tvbuff_t *next_tvb = NULL;
+#endif
+
+
+ info_buffer = ep_alloc( STRLEN );
+ info_buffer[0]='\0';
+
+ if ( check_col( pinfo->cinfo, COL_PROTOCOL ) )
+ col_set_str( pinfo->cinfo, COL_PROTOCOL, "KISS" );
+
+ col_clear( pinfo->cinfo, COL_INFO );
+
+ /* protocol offset for the KISS header */
+ offset = 0;
+
+ kiss_cmd = tvb_get_guint8( tvb, offset ) & 0xff;
+ kiss_type = kiss_cmd & KISS_CMD_MASK;
+ kiss_port = (kiss_cmd & KISS_PORT_MASK) >> 4;
+ offset += KISS_HEADER_SIZE;
+
+ frame_type_text = "????";
+ kiss_param = 0;
+ kiss_param_len = 0;
+ switch ( kiss_type )
+ {
+ case KISS_DATA_FRAME : frame_type_text = "Data frame"; break;
+ case KISS_TXDELAY : frame_type_text = "Tx Delay"; kiss_param_len = 1; kiss_param = tvb_get_guint8( tvb, offset ) & 0xff; break;
+ case KISS_PERSISTENCE : frame_type_text = "Persistence"; kiss_param_len = 1; kiss_param = tvb_get_guint8( tvb, offset ) & 0xff; break;
+ case KISS_SLOT_TIME : frame_type_text = "Slot time"; kiss_param_len = 1; kiss_param = tvb_get_guint8( tvb, offset ) & 0xff; break;
+ case KISS_TXTAIL : frame_type_text = "Tx tail"; kiss_param_len = 1; kiss_param = tvb_get_guint8( tvb, offset ) & 0xff; break;
+ case KISS_FULLDUPLEX : frame_type_text = "Full duplex"; kiss_param_len = 1; kiss_param = tvb_get_guint8( tvb, offset ) & 0xff; break;
+ case KISS_SETHARDWARE : frame_type_text = "Set hardware"; kiss_param_len = 1; kiss_param = tvb_get_guint8( tvb, offset ) & 0xff; break;
+ case KISS_RETURN : frame_type_text = "Return"; break;
+ default : break;
+ }
+ g_snprintf( info_buffer, STRLEN, "%s, Port %u", frame_type_text, kiss_port );
+ if ( kiss_param_len > 0 )
+ g_snprintf( info_buffer, STRLEN, "%s %u, Port %u", frame_type_text, kiss_param,
+ kiss_port );
+
+ offset += kiss_param_len;
+
+ col_add_str( pinfo->cinfo, COL_INFO, info_buffer );
+
+ if ( parent_tree )
+ {
+ /* protocol offset for the KISS header */
+ offset = 0;
+
+ /* create display subtree for the protocol */
+ ti = proto_tree_add_protocol_format( parent_tree, proto_ax25_kiss, tvb, offset,
+ KISS_HEADER_SIZE + kiss_param_len,
+ "KISS: %s",
+ info_buffer
+ );
+
+ kiss_tree = proto_item_add_subtree( ti, ett_ax25_kiss );
+
+ proto_tree_add_uint( kiss_tree, hf_ax25_kiss_cmd, tvb, offset, KISS_HEADER_SIZE,
+ kiss_cmd );
+ proto_tree_add_uint( kiss_tree, hf_ax25_kiss_port, tvb, offset, KISS_HEADER_SIZE,
+ kiss_cmd );
+ offset += KISS_HEADER_SIZE;
+
+ switch ( kiss_type )
+ {
+ case KISS_DATA_FRAME : break;
+ case KISS_TXDELAY :
+ proto_tree_add_uint( kiss_tree, hf_ax25_kiss_txdelay,
+ tvb, offset, kiss_param_len, kiss_param );
+ offset += kiss_param_len;
+ break;
+ case KISS_PERSISTENCE :
+ proto_tree_add_uint( kiss_tree, hf_ax25_kiss_persistence,
+ tvb, offset, kiss_param_len, kiss_param );
+ offset += kiss_param_len;
+ break;
+ case KISS_SLOT_TIME :
+ proto_tree_add_uint( kiss_tree, hf_ax25_kiss_slottime,
+ tvb, offset, kiss_param_len, kiss_param );
+ offset += kiss_param_len;
+ break;
+ case KISS_TXTAIL :
+ proto_tree_add_uint( kiss_tree, hf_ax25_kiss_txtail,
+ tvb, offset, kiss_param_len, kiss_param );
+ offset += kiss_param_len;
+ break;
+ case KISS_FULLDUPLEX :
+ proto_tree_add_uint( kiss_tree, hf_ax25_kiss_fullduplex,
+ tvb, offset, kiss_param_len, kiss_param );
+ offset += kiss_param_len;
+ break;
+ case KISS_SETHARDWARE :
+ proto_tree_add_uint( kiss_tree, hf_ax25_kiss_sethardware,
+ tvb, offset, kiss_param_len, kiss_param );
+ offset += kiss_param_len;
+ break;
+ case KISS_RETURN : break;
+ default : break;
+ }
+
+ }
+ /* Call sub-dissectors here */
+
+}
+
+void
+proto_register_ax25_kiss(void)
+{
+ module_t *ax25_kiss_module;
+
+ /* Setup list of header fields */
+ static hf_register_info hf[] = {
+ { &hf_ax25_kiss_cmd,
+ { "Cmd", "ax25_kiss.cmd",
+ FT_UINT8, BASE_DEC, NULL, KISS_CMD_MASK,
+ "Cmd", HFILL }
+ },
+ { &hf_ax25_kiss_port,
+ { "Port", "ax25_kiss.port",
+ FT_UINT8, BASE_DEC, NULL, KISS_PORT_MASK,
+ "Port", HFILL }
+ },
+ { &hf_ax25_kiss_txdelay,
+ { "Tx delay", "ax25_kiss.txdelay",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ "Tx delay", HFILL }
+ },
+ { &hf_ax25_kiss_persistence,
+ { "Persistence", "ax25_kiss.persistence",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ "Persistence", HFILL }
+ },
+ { &hf_ax25_kiss_slottime,
+ { "Slot time", "ax25_kiss.slottime",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ "Slot time", HFILL }
+ },
+ { &hf_ax25_kiss_txtail,
+ { "Tx tail", "ax25_kiss.txtail",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ "Tx tail", HFILL }
+ },
+ { &hf_ax25_kiss_fullduplex,
+ { "Full duplex", "ax25_kiss.fullduplex",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ "Full duplex", HFILL }
+ },
+ { &hf_ax25_kiss_sethardware,
+ { "Set hardware", "ax25_kiss.sethardware",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ "Set hardware", HFILL }
+ },
+ };
+
+ /* Setup protocol subtree array */
+ static gint *ett[] = {
+ &ett_ax25_kiss,
+ };
+
+ /* Register the protocol name and description */
+ proto_ax25_kiss = proto_register_protocol( "AX.25 KISS", "AX.25 KISS", "ax25_kiss" );
+
+ /* Register the dissector */
+ register_dissector( "ax25_kiss", dissect_ax25_kiss, proto_ax25_kiss );
+
+ /* Required function calls to register the header fields and subtrees used */
+ proto_register_field_array( proto_ax25_kiss, hf, array_length( hf ) );
+ proto_register_subtree_array( ett, array_length( ett ) );
+
+ /* Register preferences module */
+ ax25_kiss_module = prefs_register_protocol( proto_ax25_kiss, proto_reg_handoff_ax25_kiss );
+
+ /* Register any preference */
+/*
+ prefs_register_bool_preference( ax25_kiss_module, "showhex",
+ "Display numbers in Hex",
+ "Enable to display numerical values in hexadecimal.",
+ &gPREF_HEX );
+*/
+}
+
+void
+proto_reg_handoff_ax25_kiss(void)
+{
+ static gboolean inited = FALSE;
+
+ if( !inited ) {
+
+ dissector_handle_t kiss_handle;
+
+ kiss_handle = create_dissector_handle( dissect_ax25_kiss, proto_ax25_kiss );
+ dissector_add( "wtap_encap", WTAP_ENCAP_AX25_KISS, kiss_handle );
+
+ inited = TRUE;
+ }
+}
+
+void
+capture_ax25_kiss( const guchar *pd, int offset, int len, packet_counts *ld)
+{
+ int l_offset;
+ guint8 kiss_cmd;
+
+ if ( ! BYTES_ARE_IN_FRAME( offset, len, KISS_HEADER_SIZE ) ) {
+ ld->other++;
+ return;
+ }
+
+ l_offset = offset;
+ kiss_cmd = pd[ l_offset ];
+ l_offset += KISS_HEADER_SIZE; /* step over kiss header */
+ switch ( kiss_cmd & KISS_CMD_MASK )
+ {
+ case KISS_DATA_FRAME : break;
+ case KISS_TXDELAY : l_offset += 1; break;
+ case KISS_PERSISTENCE : l_offset += 1; break;
+ case KISS_SLOT_TIME : l_offset += 1; break;
+ case KISS_TXTAIL : l_offset += 1; break;
+ case KISS_FULLDUPLEX : l_offset += 1; break;
+ case KISS_SETHARDWARE : l_offset += 1; break;
+ case KISS_RETURN : break;
+ default : break;
+ }
+
+}
diff --git a/epan/dissectors/packet-ax25-kiss.h b/epan/dissectors/packet-ax25-kiss.h
new file mode 100644
index 0000000000..2abc1d7199
--- /dev/null
+++ b/epan/dissectors/packet-ax25-kiss.h
@@ -0,0 +1,32 @@
+/* packet-ax25-kiss.h
+ *
+ * Routines for AX.25 KISS protocol dissection
+ * Copyright 2010,2012 R.W. Stearn <richard@rns-stearn.demon.co.uk>
+ *
+ * $Id$
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __PACKET_AX25_KISS_H__
+#define __PACKET_AX25_KISS_H__
+
+void capture_ax25_kiss(const guchar *, int, int, packet_counts *);
+
+#endif
diff --git a/epan/libwireshark.def b/epan/libwireshark.def
index 0bd15a43ed..f3ea4522ee 100644
--- a/epan/libwireshark.def
+++ b/epan/libwireshark.def
@@ -49,6 +49,7 @@ camelSRTtype_naming DATA
capture_ap1394
capture_arcnet
capture_atm
+capture_ax25_kiss
capture_chdlc
capture_clip
capture_enc
diff --git a/wiretap/pcap-common.c b/wiretap/pcap-common.c
index 88ee1461b3..b43a504326 100644
--- a/wiretap/pcap-common.c
+++ b/wiretap/pcap-common.c
@@ -339,6 +339,8 @@ static const struct {
{ 199, WTAP_ENCAP_IPMB },
/* Bluetooth HCI UART transport (part H:4) frames, like hcidump */
{ 201, WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR },
+ /* AX.25 packet with a 1-byte KISS header */
+ { 202, WTAP_ENCAP_AX25_KISS },
/* LAPD frame */
{ 203, WTAP_ENCAP_LAPD },
/* PPP with pseudoheader */
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index bab54455a5..9431af403b 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -591,7 +591,10 @@ static struct encap_type_info encap_table_base[] = {
{ "SDH", "sdh" },
/* WTAP_ENCAP_DBUS */
- { "D-Bus", "dbus" }
+ { "D-Bus", "dbus" },
+
+ /* WTAP_ENCAP_AX25_KISS */
+ { "AX.25 with KISS header", "ax25-kiss" },
};
gint wtap_num_encap_types = sizeof(encap_table_base) / sizeof(struct encap_type_info);
diff --git a/wiretap/wtap.h b/wiretap/wtap.h
index 2c9538cb5f..9a55ce543f 100644
--- a/wiretap/wtap.h
+++ b/wiretap/wtap.h
@@ -237,6 +237,7 @@ extern "C" {
#define WTAP_ENCAP_IEEE_802_11_AIROPEEK 145
#define WTAP_ENCAP_SDH 146
#define WTAP_ENCAP_DBUS 147
+#define WTAP_ENCAP_AX25_KISS 148
#define WTAP_NUM_ENCAP_TYPES wtap_get_num_encap_types()