aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lapd.c
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-26 20:52:38 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-26 20:52:38 +0000
commit361ac93bf0c2310e0378014845ac2ba17f93ca2f (patch)
tree5c0c6e19e6050e0fa15bd9cfe50bffd36e99bdd7 /epan/dissectors/packet-lapd.c
parented3a51cedafe0d63428df77127360556312ee053 (diff)
From Balint Reczey:
The attached patch extends LAPD dissector to handle LAPD frames sent as RTP payload. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25381 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-lapd.c')
-rw-r--r--epan/dissectors/packet-lapd.c341
1 files changed, 320 insertions, 21 deletions
diff --git a/epan/dissectors/packet-lapd.c b/epan/dissectors/packet-lapd.c
index 25a8554500..45944da293 100644
--- a/epan/dissectors/packet-lapd.c
+++ b/epan/dissectors/packet-lapd.c
@@ -22,6 +22,20 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * LAPD bitstream over RTP handling
+ * Copyright 2008, Ericsson AB
+ * Written by Balint Reczey <balint.reczey@ericsson.com>
+ *
+ * ISDN/LAPD references:
+ *
+ * http://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/isdn.htm
+ * http://www.ece.wpi.edu/courses/ee535/hwk11cd95/agrebe/agrebe.html
+ * http://www.acacia-net.com/Clarinet/Protocol/q9213o84.htm
+ * http://www.itu.int/rec/T-REC-Q.921/en
+ * Base Station Controller - Base Transceiver Station (BSC - BTS) interface; Layer 2 specification
+ * http://www.3gpp.org/ftp/Specs/html-info/48056.htm
+ */
#ifdef HAVE_CONFIG_H
# include "config.h"
@@ -31,20 +45,12 @@
#include <glib.h>
#include <string.h>
#include <epan/packet.h>
+#include <epan/conversation.h>
#include <epan/xdlc.h>
+#include <epan/crc16.h>
#include <epan/prefs.h>
#include <epan/lapd_sapi.h>
-/* ISDN/LAPD references:
- *
- * http://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/isdn.htm
- * http://www.ece.wpi.edu/courses/ee535/hwk11cd95/agrebe/agrebe.html
- * http://www.acacia-net.com/Clarinet/Protocol/q9213o84.htm
- * http://www.itu.int/rec/T-REC-Q.921/en
- * Base Station Controller - Base Transceiver Station (BSC - BTS) interface; Layer 2 specification
- * http://www.3gpp.org/ftp/Specs/html-info/48056.htm
- */
-
static int proto_lapd = -1;
static int hf_lapd_direction = -1;
static int hf_lapd_address = -1;
@@ -67,10 +73,16 @@ static int hf_lapd_u_modifier_resp = -1;
static int hf_lapd_ftype_i = -1;
static int hf_lapd_ftype_s_u = -1;
static int hf_lapd_ftype_s_u_ext = -1;
+static int hf_lapd_checksum = -1;
+static int hf_lapd_checksum_good = -1;
+static int hf_lapd_checksum_bad = -1;
static gint ett_lapd = -1;
static gint ett_lapd_address = -1;
static gint ett_lapd_control = -1;
+static gint ett_lapd_checksum = -1;
+static gint pref_lapd_rtp_payload_type = 0;
+static gint lapd_rtp_payload_type;
static dissector_table_t lapd_sapi_dissector_table;
static dissector_table_t lapd_gsm_sapi_dissector_table;
@@ -89,7 +101,7 @@ static dissector_handle_t tei_handle;
#define LAPD_CR 0x0200 /* Command/Response bit */
#define LAPD_EA1 0x0100 /* First Address Extension bit */
#define LAPD_TEI 0x00fe /* Terminal Endpoint Identifier */
-#define LAPD_TEI_SHIFT 1
+#define LAPD_TEI_SHIFT 1
#define LAPD_EA2 0x0001 /* Second Address Extension bit */
static const value_string lapd_direction_vals[] = {
@@ -146,13 +158,241 @@ static const xdlc_cf_items lapd_cf_items_ext = {
&hf_lapd_ftype_s_u_ext
};
+
+/* LAPD frame detection state */
+enum lapd_bitstream_states {OUT_OF_SYNC, FLAGS, DATA};
+
+typedef struct lapd_byte_state {
+ enum lapd_bitstream_states state; /* frame detection state */
+ char full_byte; /* part of a full byte */
+ char bit_offset; /* number of bits already got in the full byte */
+ int ones; /* number of consecutive ones since the last zero */
+} lapd_byte_state_t;
+
+typedef struct lapd_ppi {
+ gboolean has_crc; /* CRC is captured with LAPD the frames */
+ lapd_byte_state_t start_byte_state; /* LAPD bitstream byte state at the beginnigng of processing the packet */
+} lapd_ppi_t;
+
+/* Fill values in lapd_byte_state struct */
+void fill_lapd_byte_state(lapd_byte_state_t *ptr, enum lapd_bitstream_states state, char full_byte, char bit_offset, int ones)
+{
+ ptr->state = state;
+ ptr->full_byte = full_byte;
+ ptr->bit_offset = bit_offset;
+ ptr->ones = ones;
+}
+
+typedef struct lapd_convo_data {
+ address addr_a;
+ address addr_b;
+ guint32 port_a;
+ guint32 port_b;
+ lapd_byte_state_t *byte_state_a;
+ lapd_byte_state_t *byte_state_b;
+} lapd_convo_data_t;
+
+#define MAX_LAPD_PACKET_LEN 1024
+
+static void
+dissect_lapd(tvbuff_t*, packet_info*, proto_tree*);
+
+/* got new LAPD frame byte */
+static void new_byte(char full_byte, char data[], int *data_len) {
+ if (*data_len < MAX_LAPD_PACKET_LEN) {
+ data[*data_len] = full_byte;
+ (*data_len)++;
+ } else {
+ /* XXX : we are not prepared for that big messages, drop the last byte */
+ }
+}
+
+static void
+dissect_lapd_bitstream(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+ guint8 byte, full_byte = 0x00, bit_offset = 0;
+ gboolean bit;
+ guint8 i, ones = 0, data[MAX_LAPD_PACKET_LEN];
+ int data_len = 0;
+ guint offset = 0, last_packet_end_offset = 0, available;
+ guint8 *buff;
+ tvbuff_t *new_tvb;
+
+ enum lapd_bitstream_states state = OUT_OF_SYNC;
+ lapd_ppi_t *lapd_ppi;
+ conversation_t *conversation = NULL;
+ lapd_convo_data_t *convo_data = NULL;
+ lapd_byte_state_t *lapd_byte_state, *prev_byte_state = NULL;
+ gboolean forward_stream = TRUE;
+
+ /* get remaining data from previous packets */
+ conversation = find_conversation(pinfo->fd->num, &pinfo->src, &pinfo->dst,
+ pinfo->ptype, pinfo->srcport, pinfo->destport, 0);
+ lapd_ppi = (lapd_ppi_t*)p_get_proto_data(pinfo->fd, proto_lapd);
+ if (lapd_ppi) {
+ prev_byte_state = &lapd_ppi->start_byte_state;
+ if (prev_byte_state) {
+ state = prev_byte_state->state;
+ full_byte = prev_byte_state->full_byte;
+ bit_offset = prev_byte_state->bit_offset;
+ ones = prev_byte_state->ones;
+ }
+
+ } else if (conversation) {
+ convo_data = (lapd_convo_data_t*)conversation_get_proto_data(conversation, proto_lapd);
+ if (NULL != convo_data) {
+ if (ADDRESSES_EQUAL(&convo_data->addr_a, &pinfo->src)
+ && ADDRESSES_EQUAL(&convo_data->addr_b, &pinfo->dst)
+ && convo_data-> port_a == pinfo->srcport
+ && convo_data-> port_b == pinfo->destport) {
+ /* "forward" direction */
+ forward_stream = TRUE;
+ prev_byte_state = convo_data->byte_state_a;
+ } else if (ADDRESSES_EQUAL(&convo_data-> addr_b, &pinfo->src)
+ && ADDRESSES_EQUAL(&convo_data->addr_a, &pinfo->dst)
+ && convo_data-> port_b == pinfo->srcport
+ && convo_data-> port_a == pinfo->destport) {
+ /* "backward" direction */
+ forward_stream = FALSE;
+ prev_byte_state = convo_data->byte_state_b;
+ }
+ }
+ if (prev_byte_state) {
+ state = prev_byte_state->state;
+ full_byte = prev_byte_state->full_byte;
+ bit_offset = prev_byte_state->bit_offset;
+ ones = prev_byte_state->ones;
+ }
+ }
+
+ /* Consume tvb bytes */
+ available = tvb_length_remaining(tvb, offset);
+ while (offset < available) {
+ byte = tvb_get_guint8(tvb,offset);
+ offset++;
+ for (i=0; i < 8; i++) { /* cycle through bits */
+ bit = byte & (0x80 >> i) ? TRUE : FALSE;
+
+ /* consume a bit */
+ if (bit) {
+ ones++;
+ full_byte |= (1 << bit_offset++);
+ } else {
+ if (ones == 5 && state == DATA) {
+ /* we don't increase bit_offset, it is an inserted zero */
+ } else if (ones == 6 && state == DATA) { /* probably starting flag sequence */
+ buff = g_memdup(data, data_len);
+ /* Allocate new tvb for the LAPD frame */
+ new_tvb = tvb_new_real_data(buff, data_len, data_len);
+ tvb_set_free_cb(new_tvb, g_free);
+ tvb_set_child_real_data_tvbuff(tvb, new_tvb);
+ add_new_data_source(pinfo, new_tvb, "Decoded LAPD bitstream");
+ dissect_lapd(new_tvb, pinfo, tree);
+ last_packet_end_offset = offset -1;
+ data_len = 0;
+ state = FLAGS;
+ bit_offset++;
+ } else if (ones >= 7) { /* frame reset or 11111111 flag byte */
+ data_len = 0;
+ state = OUT_OF_SYNC;
+ bit_offset++;
+ } else {
+ bit_offset++;
+ }
+ ones = 0;
+ }
+
+ if (bit_offset == 8) { /* we have a new complete byte */
+ switch (state) {
+ case OUT_OF_SYNC:
+ if (full_byte == 0x7E) { /* we have a flag byte */
+ state = FLAGS;
+ full_byte = 0x00;
+ bit_offset = 0;
+ } else { /* no sync yet, wait for a new byte */
+ full_byte = (full_byte >> 1) & 0x7F;
+ bit_offset--;
+ }
+ break;
+
+ case FLAGS:
+ if (full_byte == 0x7E) { /* we have a flag byte */
+ full_byte = 0x00;
+ bit_offset = 0;
+ } else { /* we got the first data byte */
+ state = DATA;
+ new_byte(full_byte, data, &data_len);
+ full_byte = 0x00;
+ bit_offset = 0;
+ }
+ break;
+
+ case DATA:
+ /* we got a new data byte */
+ new_byte(full_byte, data, &data_len);
+ full_byte = 0x00;
+ bit_offset = 0;
+ break;
+ }
+ }
+ }
+ }
+
+ if (state == DATA) { /* we are in the middle of an LAPD frame, we need more bytes */
+ pinfo->desegment_offset = 0;
+ pinfo->desegment_len = DESEGMENT_ONE_MORE_SEGMENT;
+ return;
+ } else { /* finished processing LAPD frame(s) */
+ if (NULL == p_get_proto_data(pinfo->fd, proto_lapd)) {
+ /* Per packet information */
+ lapd_ppi = g_malloc(sizeof(lapd_ppi_t));
+ lapd_ppi->has_crc = TRUE;
+ if (prev_byte_state)
+ fill_lapd_byte_state(&lapd_ppi->start_byte_state, prev_byte_state->state,
+ prev_byte_state->full_byte, prev_byte_state->bit_offset,
+ prev_byte_state->ones);
+ else
+ fill_lapd_byte_state(&lapd_ppi->start_byte_state, OUT_OF_SYNC, 0x00, 0, 0);
+
+ p_add_proto_data(pinfo->fd, proto_lapd, lapd_ppi);
+
+
+ /* Conversation info*/
+
+ if (conversation) {
+ if (convo_data) { /* already have lapd convo data */
+ if (forward_stream)
+ fill_lapd_byte_state(convo_data->byte_state_a, state, full_byte, bit_offset, ones);
+ else {
+ if (!convo_data->byte_state_b)
+ convo_data->byte_state_b = g_malloc(sizeof(lapd_byte_state_t));
+ fill_lapd_byte_state(convo_data->byte_state_b, state, full_byte, bit_offset, ones);
+ }
+ } else { /* lapd convo data has to be created */
+ lapd_byte_state = g_malloc(sizeof(lapd_byte_state_t));
+ fill_lapd_byte_state(lapd_byte_state, state, full_byte, bit_offset, ones);
+ convo_data = g_malloc(sizeof(lapd_convo_data_t));
+ COPY_ADDRESS(&convo_data->addr_a, &pinfo->src);
+ COPY_ADDRESS(&convo_data->addr_b, &pinfo->dst);
+ convo_data->port_a = pinfo->srcport;
+ convo_data->port_b = pinfo->destport;
+ convo_data->byte_state_a = lapd_byte_state;
+ convo_data->byte_state_b = NULL;
+ conversation_add_proto_data(conversation, proto_lapd, convo_data);
+ }
+ }
+ }
+ }
+}
+
+
static void
dissect_lapd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- proto_tree *lapd_tree, *addr_tree;
- proto_item *lapd_ti, *addr_ti;
- guint16 control;
- int lapd_header_len;
+ proto_tree *lapd_tree, *addr_tree, *checksum_tree;
+ proto_item *lapd_ti, *addr_ti, *checksum_ti;
+ guint16 control, checksum, checksum_calculated;
+ int lapd_header_len, checksum_offset;
guint16 address, cr, sapi, tei;
gboolean is_response = 0;
tvbuff_t *next_tvb;
@@ -259,7 +499,33 @@ dissect_lapd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (tree)
proto_item_set_len(lapd_ti, lapd_header_len);
- next_tvb = tvb_new_subset(tvb, lapd_header_len, -1, -1);
+ if (NULL != p_get_proto_data(pinfo->fd, proto_lapd)
+ && ((lapd_ppi_t*)p_get_proto_data(pinfo->fd, proto_lapd))->has_crc) {
+
+ /* check checksum */
+ checksum_offset = tvb_length(tvb) - 2;
+ checksum = tvb_get_guint8(tvb, checksum_offset); /* high byte */
+ checksum <<= 8;
+ checksum |= tvb_get_guint8(tvb, checksum_offset+1) & 0x00FF; /* low byte */
+ checksum_calculated = g_htons(crc16_ccitt_tvb(tvb, tvb_length(tvb) - 2));
+
+ if (checksum == checksum_calculated) {
+ checksum_ti = proto_tree_add_uint_format(lapd_tree, hf_lapd_checksum, tvb, checksum_offset, 2, 0,"Checksum: 0x%04x [correct]", checksum);
+ checksum_tree = proto_item_add_subtree(checksum_ti, ett_lapd_checksum);
+ proto_tree_add_boolean(checksum_tree, hf_lapd_checksum_good, tvb, checksum_offset, 2, TRUE);
+ proto_tree_add_boolean(checksum_tree, hf_lapd_checksum_bad, tvb, checksum_offset, 2, FALSE);
+ } else {
+ checksum_ti = proto_tree_add_uint_format(lapd_tree, hf_lapd_checksum, tvb, checksum_offset, 2, 0,"Checksum: 0x%04x [incorrect, should be 0x%04x]", checksum, checksum_calculated);
+ checksum_tree = proto_item_add_subtree(checksum_ti, ett_lapd_checksum);
+ proto_tree_add_boolean(checksum_tree, hf_lapd_checksum_good, tvb, checksum_offset, 2, FALSE);
+ proto_tree_add_boolean(checksum_tree, hf_lapd_checksum_bad, tvb, checksum_offset, 2, TRUE);
+ }
+
+ next_tvb = tvb_new_subset(tvb, lapd_header_len, tvb_length_remaining(tvb,lapd_header_len) - 2, -1);
+
+ } else
+ next_tvb = tvb_new_subset(tvb, lapd_header_len, -1, -1);
+
if (XDLC_IS_INFORMATION(control)) {
/* call next protocol */
if(global_lapd_gsm_sapis){
@@ -278,14 +544,28 @@ dissect_lapd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
void
proto_reg_handoff_lapd(void)
{
- dissector_handle_t lapd_handle;
+ static gboolean init = FALSE;
+ static dissector_handle_t lapd_handle;
+ static dissector_handle_t lapd_bitstream_handle;
- data_handle = find_dissector("data");
- tei_handle = find_dissector("tei");
+ if (init) {
+ if ((lapd_rtp_payload_type > 95) && (lapd_rtp_payload_type < 128))
+ dissector_delete("rtp.pt", lapd_rtp_payload_type, lapd_bitstream_handle);
+ } else {
+ data_handle = find_dissector("data");
+ tei_handle = find_dissector("tei");
+ lapd_handle = create_dissector_handle(dissect_lapd, proto_lapd);
+ dissector_add("wtap_encap", WTAP_ENCAP_LINUX_LAPD, lapd_handle);
- lapd_handle = create_dissector_handle(dissect_lapd, proto_lapd);
- dissector_add("wtap_encap", WTAP_ENCAP_LINUX_LAPD, lapd_handle);
+ lapd_bitstream_handle = create_dissector_handle(dissect_lapd_bitstream, proto_lapd);
+
+ init = TRUE;
+ }
+
+ lapd_rtp_payload_type = pref_lapd_rtp_payload_type;
+ if ((lapd_rtp_payload_type > 95) && (lapd_rtp_payload_type < 128))
+ dissector_add("rtp.pt", lapd_rtp_payload_type, lapd_bitstream_handle);
}
void
@@ -376,11 +656,25 @@ proto_register_lapd(void)
{ &hf_lapd_ftype_s_u_ext,
{ "Frame type", "lapd.control.ftype", FT_UINT16, BASE_HEX,
VALS(ftype_vals), XDLC_S_U_MASK, "", HFILL }},
+
+ { &hf_lapd_checksum,
+ { "Checksum", "lapd.checksum", FT_UINT16, BASE_HEX,
+ NULL, 0x0, "Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html", HFILL }},
+
+ { &hf_lapd_checksum_good,
+ { "Good Checksum", "lapd.checksum_good", FT_BOOLEAN, BASE_NONE,
+ NULL, 0x0, "True: checksum matches packet content; False: doesn't match content or not checked", HFILL }},
+
+ { &hf_lapd_checksum_bad,
+ { "Bad Checksum", "lapd.checksum_bad", FT_BOOLEAN, BASE_NONE,
+ NULL, 0x0, "True: checksum doesn't match packet content; False: matches content or not checked", HFILL }}
};
+
static gint *ett[] = {
&ett_lapd,
&ett_lapd_address,
&ett_lapd_control,
+ &ett_lapd_checksum
};
module_t *lapd_module;
@@ -404,6 +698,11 @@ proto_register_lapd(void)
"Use GSM SAPI values",
"Use SAPI values as specified in TS 48 056",
&global_lapd_gsm_sapis);
+ prefs_register_uint_preference(lapd_module, "rtp_payload_type",
+ "RTP payload type for embedded LAPD",
+ "RTP payload type for embedded LAPD. It must be one of the dynamic types "
+ "from 96 to 127. Set it to 0 to disable.",
+ 10, &pref_lapd_rtp_payload_type);
}