aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dmx-sip.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-05-28 15:24:54 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-05-28 15:24:54 +0000
commit14eb5154ac0d1015bb4279fa54d4f3e8394af894 (patch)
tree9cc66f7d1fc31b8cfce81a14ad11ac2407736b61 /epan/dissectors/packet-dmx-sip.c
parent55261641d9101756f4adb30050518eabc717df59 (diff)
From Erwin Rol:
Artnet, RDM and DMX dissector updates https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7286 svn path=/trunk/; revision=42880
Diffstat (limited to 'epan/dissectors/packet-dmx-sip.c')
-rw-r--r--epan/dissectors/packet-dmx-sip.c320
1 files changed, 320 insertions, 0 deletions
diff --git a/epan/dissectors/packet-dmx-sip.c b/epan/dissectors/packet-dmx-sip.c
new file mode 100644
index 0000000000..7620bd76a5
--- /dev/null
+++ b/epan/dissectors/packet-dmx-sip.c
@@ -0,0 +1,320 @@
+/* packet-dmx-sip.c
+ * DMX SIP packet disassembly.
+ *
+ * $Id: $
+ *
+ * This dissector is written by
+ *
+ * Erwin Rol <erwin@erwinrol.com>
+ * Copyright 2011 Erwin Rol
+ *
+ * Wireshark - Network traffic analyzer
+ * Gerald Combs <gerald@wireshark.org>
+ * Copyright 1999 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.
+ */
+
+/*
+ * This dissector is based on;
+ * American National Standard E1.11 - 2004
+ * Entertainment Technology USITT DMX512-A
+ * Asynchronous Serial Digital Data Transmission Standard
+ * for Controlling Lighting Equipment and Accessories
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <stdlib.h>
+#include <ctype.h>
+#include <time.h>
+#include <string.h>
+#include <epan/packet.h>
+#include <epan/addr_resolv.h>
+#include <epan/prefs.h>
+#include <epan/strutil.h>
+
+#define DMX_SC_SIP 0xCF
+
+void proto_reg_handoff_dmx_sip(void);
+
+static int proto_dmx_sip = -1;
+
+static int hf_dmx_sip_byte_count = -1;
+static int hf_dmx_sip_control_bit_field = -1;
+static int hf_dmx_sip_prev_packet_checksum = -1;
+static int hf_dmx_sip_seq_nr = -1;
+static int hf_dmx_sip_dmx_universe_nr = -1;
+static int hf_dmx_sip_dmx_proc_level = -1;
+static int hf_dmx_sip_dmx_software_version = -1;
+static int hf_dmx_sip_dmx_packet_len = -1;
+static int hf_dmx_sip_dmx_nr_packets = -1;
+static int hf_dmx_sip_orig_dev_id = -1;
+static int hf_dmx_sip_sec_dev_id = -1;
+static int hf_dmx_sip_third_dev_id = -1;
+static int hf_dmx_sip_fourth_dev_id = -1;
+static int hf_dmx_sip_fifth_dev_id = -1;
+static int hf_dmx_sip_reserved = -1;
+static int hf_dmx_sip_checksum = -1;
+static int hf_dmx_sip_checksum_good = -1;
+static int hf_dmx_sip_checksum_bad = -1;
+static int hf_dmx_sip_trailer = -1;
+
+static int ett_dmx_sip = -1;
+
+static guint8
+dmx_sip_checksum(tvbuff_t *tvb, unsigned length)
+{
+ guint8 sum = DMX_SC_SIP;
+ unsigned i;
+ for (i = 0; i < length; i++)
+ sum += tvb_get_guint8(tvb, i);
+ return sum;
+}
+
+static void
+dissect_dmx_sip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "DMX SIP");
+ col_clear(pinfo->cinfo, COL_INFO);
+
+ if (tree != NULL) {
+ unsigned offset = 0;
+ unsigned byte_count;
+ unsigned checksum, checksum_shouldbe;
+ proto_item *item;
+ proto_tree *checksum_tree;
+
+ proto_tree *ti = proto_tree_add_item(tree, proto_dmx_sip, tvb,
+ offset, -1, FALSE);
+ proto_tree *dmx_sip_tree = proto_item_add_subtree(ti, ett_dmx_sip);
+
+
+ byte_count = tvb_get_guint8(tvb, offset);
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_byte_count, tvb,
+ offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_control_bit_field, tvb,
+ offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_prev_packet_checksum, tvb,
+ offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_seq_nr, tvb,
+ offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_dmx_universe_nr, tvb,
+ offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_dmx_proc_level, tvb,
+ offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_dmx_software_version, tvb,
+ offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_dmx_packet_len, tvb,
+ offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_dmx_nr_packets, tvb,
+ offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_orig_dev_id, tvb,
+ offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_sec_dev_id, tvb,
+ offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_third_dev_id, tvb,
+ offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_fourth_dev_id, tvb,
+ offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_fifth_dev_id, tvb,
+ offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ if (offset < byte_count) {
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_reserved, tvb,
+ offset, byte_count - offset, ENC_BIG_ENDIAN);
+ offset += (byte_count - offset);
+ }
+
+ dmx_sip_checksum(tvb, offset);
+
+ checksum_shouldbe = dmx_sip_checksum(tvb, offset);
+ checksum = tvb_get_guint8(tvb, offset);
+ item = proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_checksum, tvb,
+ offset, 1, ENC_BIG_ENDIAN);
+ if (checksum == checksum_shouldbe) {
+ proto_item_append_text(item, " [correct]");
+
+ checksum_tree = proto_item_add_subtree(item, ett_dmx_sip);
+ item = proto_tree_add_boolean(checksum_tree, hf_dmx_sip_checksum_good, tvb,
+ offset, 1, TRUE);
+ PROTO_ITEM_SET_GENERATED(item);
+ item = proto_tree_add_boolean(checksum_tree, hf_dmx_sip_checksum_bad, tvb,
+ offset, 1, FALSE);
+ PROTO_ITEM_SET_GENERATED(item);
+ } else {
+ proto_item_append_text(item, " [incorrect, should be 0x%02x]", checksum_shouldbe);
+
+ checksum_tree = proto_item_add_subtree(item, ett_dmx_sip);
+ item = proto_tree_add_boolean(checksum_tree, hf_dmx_sip_checksum_good, tvb,
+ offset, 1, FALSE);
+ PROTO_ITEM_SET_GENERATED(item);
+ item = proto_tree_add_boolean(checksum_tree, hf_dmx_sip_checksum_bad, tvb,
+ offset, 1, TRUE);
+ PROTO_ITEM_SET_GENERATED(item);
+ }
+
+ offset += 1;
+
+ if (offset < tvb_length(tvb))
+ proto_tree_add_item(dmx_sip_tree, hf_dmx_sip_trailer, tvb,
+ offset, -1, ENC_NA);
+ }
+}
+
+void
+proto_register_dmx_sip(void)
+{
+ static hf_register_info hf[] = {
+ { &hf_dmx_sip_byte_count,
+ { "Byte Count", "dmx_sip.byte_count",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_control_bit_field,
+ { "Control Bit Field", "dmx_sip.control_bit_field",
+ FT_UINT8, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_prev_packet_checksum,
+ { "Checksum of prev. packet", "dmx_sip.prev_packet_checksum",
+ FT_UINT16, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_seq_nr,
+ { "SIP sequence nr.", "dmx_sip.seq_nr",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_dmx_universe_nr,
+ { "DMX512 universe nr.", "dmx_sip.dmx_universe_nr",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_dmx_proc_level,
+ { "DMX512 processing level", "dmx_sip.dmx_proc_level",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_dmx_software_version,
+ { "Software Version", "dmx_sip.dmx_software_version",
+ FT_UINT8, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_dmx_packet_len,
+ { "Standard Packet Len", "dmx_sip.dmx_packet_len",
+ FT_UINT16, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_dmx_nr_packets,
+ { "Number of Packets", "dmx_sip.dmx_nr_packets",
+ FT_UINT16, BASE_DEC, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_orig_dev_id,
+ { "1st Device's ID", "dmx_sip.orig_dev_id",
+ FT_UINT16, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_sec_dev_id,
+ { "2nd Device's ID", "dmx_sip.sec_dev_id",
+ FT_UINT16, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_third_dev_id,
+ { "3rd Device's ID", "dmx_sip.third_dev_id",
+ FT_UINT16, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_fourth_dev_id,
+ { "4th Device's ID", "dmx_sip.fourth_dev_id",
+ FT_UINT16, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_fifth_dev_id,
+ { "5th Device's ID", "dmx_sip.fifth_dev_id",
+ FT_UINT16, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_reserved,
+ { "Reserved", "dmx_sip.reserved",
+ FT_BYTES, BASE_NONE, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_checksum,
+ { "Checksum", "dmx_sip.checksum",
+ FT_UINT8, BASE_HEX, NULL, 0x0,
+ NULL, HFILL }},
+
+ { &hf_dmx_sip_checksum_good,
+ { "Good Checksum", "dmx_sip.checksum_good",
+ FT_BOOLEAN, BASE_NONE, NULL, 0x0,
+ "True: checksum matches packet content; False: doesn't match content", HFILL }},
+
+ { &hf_dmx_sip_checksum_bad,
+ { "Bad Checksum", "dmx_sip.checksum_bad",
+ FT_BOOLEAN, BASE_NONE, NULL, 0x0,
+ "True: checksum doesn't match packet content; False: matches content", HFILL }},
+
+ { &hf_dmx_sip_trailer,
+ { "Trailer", "dmx_sip.trailer",
+ FT_BYTES, BASE_NONE, NULL, 0x0,
+ NULL, HFILL }},
+ };
+
+ static gint *ett[] = {
+ &ett_dmx_sip
+ };
+
+ proto_dmx_sip = proto_register_protocol("DMX SIP", "DMX SIP", "dmx-sip");
+ proto_register_field_array(proto_dmx_sip, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
+ register_dissector("dmx-sip", dissect_dmx_sip, proto_dmx_sip);
+}
+
+void
+proto_reg_handoff_dmx_sip(void)
+{
+}