aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dvb-nit.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-03-25 01:33:35 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-03-25 01:33:35 +0000
commit55e03ca50a58814a7d1b6e34ddbe7393f506969f (patch)
tree965db55a04a2ce94cfce2b0b1b72dd45cee127b1 /epan/dissectors/packet-dvb-nit.c
parentbb98d6c6ed09c15904812dd084caed977510bf1c (diff)
From Guy Martin via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6992 :
This patch adds support for DVB Network Information Table as documented in ETSI EN 300 468. The patch also contains additional mpeg descriptors usually found in NIT plus a few minor bugfix for other descriptors. svn path=/trunk/; revision=41754
Diffstat (limited to 'epan/dissectors/packet-dvb-nit.c')
-rw-r--r--epan/dissectors/packet-dvb-nit.c257
1 files changed, 257 insertions, 0 deletions
diff --git a/epan/dissectors/packet-dvb-nit.c b/epan/dissectors/packet-dvb-nit.c
new file mode 100644
index 0000000000..4ce41e4c2f
--- /dev/null
+++ b/epan/dissectors/packet-dvb-nit.c
@@ -0,0 +1,257 @@
+/* packet-dvb-nit.c
+ * Routines for DVB (ETSI EN 300 468) Network Information Table (NIT) dissection
+ * Copyright 2012, Guy Martin <gmsoft@tuxicoman.be>
+ *
+ * $Id$
+ *
+ * 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <glib.h>
+
+#include <epan/packet.h>
+#include <epan/dissectors/packet-mpeg-sect.h>
+
+#include "packet-mpeg-descriptor.h"
+
+static int proto_dvb_nit = -1;
+static int hf_dvb_nit_network_id = -1;
+static int hf_dvb_nit_reserved1 = -1;
+static int hf_dvb_nit_version_number = -1;
+static int hf_dvb_nit_current_next_indicator = -1;
+static int hf_dvb_nit_section_number = -1;
+static int hf_dvb_nit_last_section_number = -1;
+static int hf_dvb_nit_reserved2 = -1;
+
+static int hf_dvb_nit_network_descriptors_length = -1;
+static int hf_dvb_nit_reserved3 = -1;
+static int hf_dvb_nit_transport_stream_loop_length = -1;
+
+static int hf_dvb_nit_transport_stream_id = -1;
+static int hf_dvb_nit_original_network_id = -1;
+static int hf_dvb_nit_reserved4 = -1;
+static int hf_dvb_nit_transport_descriptors_length = -1;
+
+static gint ett_dvb_nit = -1;
+static gint ett_dvb_nit_ts = -1;
+
+
+#define DVB_NIT_TID 0x40
+#define DVB_NIT_TID_OTHER 0x41
+
+#define DVB_NIT_RESERVED1_MASK 0xC0
+#define DVB_NIT_VERSION_NUMBER_MASK 0x3E
+#define DVB_NIT_CURRENT_NEXT_INDICATOR_MASK 0x01
+#define DVB_NIT_RESERVED2_MASK 0xF000
+#define DVB_NIT_NETWORK_DESCRIPTORS_LENGTH_MASK 0x0FFF
+#define DVB_NIT_RESERVED3_MASK 0xF000
+#define DVB_NIT_TRANSPORT_STREAM_LOOP_LENGTH_MASK 0x0FFF
+#define DVB_NIT_RESERVED4_MASK 0xF000
+#define DVB_NIT_TRANSPORT_DESCRIPTORS_LENGTH_MASK 0x0FFF
+
+static const value_string dvb_nit_cur_next_vals[] = {
+ { 0, "Not yet applicable" },
+ { 1, "Currently applicable" },
+
+ { 0, NULL }
+};
+
+
+static void
+dissect_dvb_nit(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+
+ guint offset = 0, descriptor_end = 0, ts_end = 0;
+
+ guint16 tsid = 0, ts_desc_len = 0;
+
+ proto_item *ti = NULL;
+ proto_tree *dvb_nit_tree = NULL;
+ proto_item *tsi = NULL;
+ proto_tree *dvb_nit_ts_tree = NULL;
+
+ col_clear(pinfo->cinfo, COL_INFO);
+ col_set_str(pinfo->cinfo, COL_INFO, "Network Information Table (NIT)");
+
+ if (!tree)
+ return;
+
+ ti = proto_tree_add_item(tree, proto_dvb_nit, tvb, offset, -1, ENC_NA);
+ dvb_nit_tree = proto_item_add_subtree(ti, ett_dvb_nit);
+
+ offset += packet_mpeg_sect_header(tvb, offset, dvb_nit_tree, NULL, NULL);
+
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_network_id, tvb, offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_reserved1, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_version_number, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_current_next_indicator, tvb, offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_section_number, tvb, offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_last_section_number, tvb, offset, 1, ENC_BIG_ENDIAN);
+ offset++;
+
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_reserved2, tvb, offset, 2, ENC_BIG_ENDIAN);
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_network_descriptors_length, tvb, offset, 2, ENC_BIG_ENDIAN);
+ descriptor_end = offset + (tvb_get_ntohs(tvb, offset) & DVB_NIT_NETWORK_DESCRIPTORS_LENGTH_MASK);
+ offset += 2;
+
+ while (offset < descriptor_end)
+ offset += proto_mpeg_descriptor_dissect(tvb, offset, dvb_nit_tree);
+
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_reserved3, tvb, offset, 2, ENC_BIG_ENDIAN);
+ proto_tree_add_item(dvb_nit_tree, hf_dvb_nit_transport_stream_loop_length, tvb, offset, 2, ENC_BIG_ENDIAN);
+ ts_end = offset + (tvb_get_ntohs(tvb, offset) & DVB_NIT_TRANSPORT_STREAM_LOOP_LENGTH_MASK);
+ offset += 2;
+
+ while (offset < ts_end) {
+ tsid = tvb_get_ntohs(tvb, offset);
+ ts_desc_len = 3 + (tvb_get_ntohs(tvb, offset + 4) & DVB_NIT_TRANSPORT_DESCRIPTORS_LENGTH_MASK);
+
+ tsi = proto_tree_add_text(dvb_nit_tree, tvb, offset, ts_desc_len, "Stream ID=0x%04hx", tsid);
+ dvb_nit_ts_tree = proto_item_add_subtree(tsi, ett_dvb_nit_ts);
+
+ proto_tree_add_item(dvb_nit_ts_tree, hf_dvb_nit_transport_stream_id, tvb, offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dvb_nit_ts_tree, hf_dvb_nit_original_network_id, tvb, offset, 2, ENC_BIG_ENDIAN);
+ offset += 2;
+
+ proto_tree_add_item(dvb_nit_ts_tree, hf_dvb_nit_reserved4, tvb, offset, 2, ENC_BIG_ENDIAN);
+ proto_tree_add_item(dvb_nit_ts_tree, hf_dvb_nit_transport_descriptors_length, tvb, offset, 2, ENC_BIG_ENDIAN);
+ descriptor_end = offset + (tvb_get_ntohs(tvb, offset) & DVB_NIT_TRANSPORT_DESCRIPTORS_LENGTH_MASK);
+ offset += 2;
+
+ while (offset < descriptor_end)
+ offset += proto_mpeg_descriptor_dissect(tvb, offset, dvb_nit_ts_tree);
+
+ }
+
+ packet_mpeg_sect_crc(tvb, pinfo, dvb_nit_tree, 0, offset);
+}
+
+
+void
+proto_register_dvb_nit(void)
+{
+
+ static hf_register_info hf[] = {
+
+ { &hf_dvb_nit_network_id, {
+ "Network ID", "dvb_nit.sid",
+ FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_reserved1, {
+ "Reserved", "dvb_nit.reserved1",
+ FT_UINT8, BASE_HEX, NULL, DVB_NIT_RESERVED1_MASK, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_version_number, {
+ "Version Number", "dvb_nit.version",
+ FT_UINT8, BASE_HEX, NULL, DVB_NIT_VERSION_NUMBER_MASK, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_current_next_indicator, {
+ "Current/Next Indicator", "dvb_nit.cur_next_ind",
+ FT_UINT8, BASE_DEC, VALS(dvb_nit_cur_next_vals), DVB_NIT_CURRENT_NEXT_INDICATOR_MASK, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_section_number, {
+ "Section Number", "dvb_nit.sect_num",
+ FT_UINT8, BASE_DEC, NULL, 0, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_last_section_number, {
+ "Last Section Number", "dvb_nit.last_sect_num",
+ FT_UINT8, BASE_DEC, NULL, 0, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_reserved2, {
+ "Reserved", "dvb_nit.reserved2",
+ FT_UINT16, BASE_HEX, NULL, DVB_NIT_RESERVED2_MASK, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_network_descriptors_length, {
+ "Network Descriptors Length", "dvb_nit.network_desc_len",
+ FT_UINT16, BASE_DEC, NULL, DVB_NIT_NETWORK_DESCRIPTORS_LENGTH_MASK, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_reserved3, {
+ "Reserved", "dvb_nit.reserved3",
+ FT_UINT16, BASE_HEX, NULL, DVB_NIT_RESERVED3_MASK, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_transport_stream_loop_length, {
+ "Transport Stream Loop Length", "dvb_nit.ts_loop_len",
+ FT_UINT16, BASE_DEC, NULL, DVB_NIT_TRANSPORT_STREAM_LOOP_LENGTH_MASK, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_transport_stream_id, {
+ "Transport Stream ID", "dvb_nit.ts.id",
+ FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_original_network_id, {
+ "Original Network ID", "dvb_nit.ts.original_network_id",
+ FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_reserved4, {
+ "Reserved", "dvb_nit.ts.reserved",
+ FT_UINT16, BASE_HEX, NULL, DVB_NIT_RESERVED4_MASK, NULL, HFILL
+ } },
+
+ { &hf_dvb_nit_transport_descriptors_length, {
+ "Transport Descriptors Length", "dvb_nit.ts.desc_len",
+ FT_UINT16, BASE_DEC, NULL, DVB_NIT_TRANSPORT_DESCRIPTORS_LENGTH_MASK, NULL, HFILL
+ } },
+
+ };
+
+ static gint *ett[] = {
+ &ett_dvb_nit,
+ &ett_dvb_nit_ts
+ };
+
+ proto_dvb_nit = proto_register_protocol("DVB Network Information Table", "DVB NIT", "dvb_nit");
+
+ proto_register_field_array(proto_dvb_nit, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
+
+}
+
+
+void proto_reg_handoff_dvb_nit(void)
+{
+ dissector_handle_t dvb_nit_handle;
+
+ dvb_nit_handle = create_dissector_handle(dissect_dvb_nit, proto_dvb_nit);
+
+ dissector_add_uint("mpeg_sect.tid", DVB_NIT_TID, dvb_nit_handle);
+ dissector_add_uint("mpeg_sect.tid", DVB_NIT_TID_OTHER, dvb_nit_handle);
+}