From Weston Schmidt:

Add support for ETV Data processing & simple MPEG DSM-CC handling.
Witha a change of the name of dissect() in packet-etv.c to dissect-etv_common().

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6978

svn path=/trunk/; revision=41735
This commit is contained in:
Anders Broman 2012-03-22 08:49:00 +00:00
parent 6d09f686dd
commit dba2c07cba
6 changed files with 1295 additions and 3 deletions

View File

@ -199,7 +199,6 @@ set(ASN1_DISSECTOR_SRC
dissectors/packet-disp.c
dissectors/packet-dop.c
dissectors/packet-dsp.c
dissectors/packet-eiss.c
dissectors/packet-ess.c
dissectors/packet-ftam.c
dissectors/packet-goose.c
@ -564,6 +563,8 @@ set(DISSECTOR_SRC
dissectors/packet-etherip.c
dissectors/packet-ethertype.c
dissectors/packet-etsi_card_app_toolkit.c
dissectors/packet-eiss.c
dissectors/packet-etv.c
dissectors/packet-evrc.c
dissectors/packet-exec.c
dissectors/packet-extreme.c
@ -815,6 +816,7 @@ set(DISSECTOR_SRC
dissectors/packet-mp4ves.c
dissectors/packet-mpeg-ca.c
dissectors/packet-mpeg-descriptor.c
dissectors/packet-mpeg-dsmcc.c
dissectors/packet-mpeg-pat.c
dissectors/packet-mpeg-pmt.c
dissectors/packet-mpeg-sect.c

View File

@ -466,6 +466,7 @@ DISSECTOR_SRC = \
packet-ehdlc.c \
packet-ehs.c \
packet-eigrp.c \
packet-eiss.c \
packet-elcom.c \
packet-enc.c \
packet-enip.c \
@ -482,7 +483,7 @@ DISSECTOR_SRC = \
packet-etherip.c \
packet-ethertype.c \
packet-etsi_card_app_toolkit.c \
packet-eiss.c \
packet-etv.c \
packet-evrc.c \
packet-exec.c \
packet-extreme.c \
@ -734,6 +735,7 @@ DISSECTOR_SRC = \
packet-mp4ves.c \
packet-mpeg-ca.c \
packet-mpeg-descriptor.c \
packet-mpeg-dsmcc.c \
packet-mpeg-pat.c \
packet-mpeg-pmt.c \
packet-mpeg-sect.c \

View File

@ -0,0 +1,219 @@
/* packet-etv.c
*
* Routines for ETV-AM from OC-SP-ETV-AM1.0-IO5
* Copyright 2012, Weston Schmidt <weston_schmidt@alumni.purdue.edu>
*
* $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 <stdio.h>
#include <epan/packet.h>
#include <epan/expert.h>
#include <epan/dissectors/packet-mpeg-sect.h>
static int proto_etv_dii = -1;
static int proto_etv_ddb = -1;
static dissector_handle_t data_handle;
static dissector_handle_t dsmcc_handle;
static int hf_etv_dii_filter_info = -1;
static int hf_etv_dii_reserved = -1;
static int hf_etv_ddb_filter_info = -1;
static int hf_etv_ddb_reserved = -1;
static gint ett_etv = -1;
static gint ett_etv_payload = -1;
#define ETV_TID_DII_SECTION 0xe3
#define ETV_TID_DDB_SECTION 0xe4
static void
dissect_etv_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int proto,
int hf_filter_info, int hf_reserved )
{
tvbuff_t *sub_tvb;
guint offset = 0;
proto_item *ti = NULL;
proto_item *pi = NULL;
proto_tree *etv_tree = NULL;
proto_item *items[PACKET_MPEG_SECT_PI__SIZE];
gboolean ssi;
guint reserved;
guint8 reserved2;
guint16 filter_info;
guint sect_len;
ti = proto_tree_add_item(tree, proto, tvb, offset, -1, ENC_NA);
etv_tree = proto_item_add_subtree(ti, ett_etv);
offset += packet_mpeg_sect_header_extra(tvb, offset, etv_tree, &sect_len,
&reserved, &ssi, items);
if (FALSE != ssi) {
proto_item *msg_error;
msg_error = items[PACKET_MPEG_SECT_PI__SSI];
PROTO_ITEM_SET_GENERATED(msg_error);
expert_add_info_format(pinfo, msg_error, PI_MALFORMED, PI_ERROR,
"Invalid section_syntax_indicator (should be 0)");
}
if (4 != reserved) {
proto_item *msg_error;
msg_error = items[PACKET_MPEG_SECT_PI__RESERVED];
PROTO_ITEM_SET_GENERATED(msg_error);
expert_add_info_format(pinfo, msg_error, PI_MALFORMED, PI_ERROR,
"Invalid reserved1 bits (should all be 100)");
}
col_append_fstr(pinfo->cinfo, COL_INFO, ", Length: %u", sect_len);
proto_item_append_text(ti, " Length=%u", sect_len);
if (1021 < sect_len) {
proto_item *msg_error;
msg_error = items[PACKET_MPEG_SECT_PI__LENGTH];
PROTO_ITEM_SET_GENERATED(msg_error);
expert_add_info_format(pinfo, msg_error, PI_MALFORMED, PI_ERROR,
"Invalid section_length (must not exceed 1021)");
}
filter_info = tvb_get_ntohs(tvb, offset);
col_append_fstr(pinfo->cinfo, COL_INFO, ", Filter: 0x%x", filter_info);
proto_item_append_text(ti, " Filter=0x%x", filter_info);
pi = proto_tree_add_item(etv_tree, hf_filter_info, tvb, offset, 2, ENC_BIG_ENDIAN);
if ((proto_etv_dii == proto) && (0xFBFB != filter_info)) {
PROTO_ITEM_SET_GENERATED(pi);
expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR,
"Invalid filter_info value (must be 0xFBFB)");
} else if ((proto_etv_ddb == proto) &&
((filter_info < 1) || (0xfbef < filter_info)))
{
PROTO_ITEM_SET_GENERATED(pi);
expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR,
"Invalid filter_info value (must be [0x0001-0xFBEF] inclusive)");
}
offset += 2;
reserved2 = tvb_get_guint8(tvb, offset);
pi = proto_tree_add_item(etv_tree, hf_reserved, tvb, offset, 1, ENC_BIG_ENDIAN);
if (0 != reserved2) {
PROTO_ITEM_SET_GENERATED(pi);
expert_add_info_format(pinfo, pi, PI_MALFORMED, PI_ERROR,
"Invalid reserved2 bits (should all be 0)");
}
offset++;
sub_tvb = tvb_new_subset(tvb, offset, sect_len-7, sect_len-7);
call_dissector(dsmcc_handle, sub_tvb, pinfo, tree);
sect_len += 3 - 4; /* add header, remove crc */
packet_mpeg_sect_crc(tvb, pinfo, etv_tree, 0, sect_len);
}
static void
dissect_etv_ddb(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
col_clear(pinfo->cinfo, COL_PROTOCOL);
col_set_str(pinfo->cinfo, COL_INFO, "ETV DDB");
col_set_str(pinfo->cinfo, COL_PROTOCOL, "ETV-DDB");
dissect_etv_common(tvb, pinfo, tree, proto_etv_ddb, hf_etv_ddb_filter_info,
hf_etv_ddb_reserved);
}
static void
dissect_etv_dii(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
col_clear(pinfo->cinfo, COL_PROTOCOL);
col_set_str(pinfo->cinfo, COL_INFO, "ETV DII");
col_set_str(pinfo->cinfo, COL_PROTOCOL, "ETV-DII");
dissect_etv_common(tvb, pinfo, tree, proto_etv_dii, hf_etv_dii_filter_info,
hf_etv_dii_reserved);
}
void
proto_register_etv(void)
{
static hf_register_info hf_ddb[] = {
{ &hf_etv_ddb_filter_info, {
"Filter Info", "etv-ddb.filter_info",
FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL
} },
{ &hf_etv_ddb_reserved, {
"Reserved", "etv-ddb.reserved",
FT_UINT8, BASE_DEC, NULL, 0, NULL, HFILL
} }
};
static hf_register_info hf_dii[] = {
{ &hf_etv_dii_filter_info, {
"Filter Info", "etv-dii.filter_info",
FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL
} },
{ &hf_etv_dii_reserved, {
"Reserved", "etv-dii.reserved",
FT_UINT8, BASE_DEC, NULL, 0, NULL, HFILL
} }
};
static gint *ett[] = {
&ett_etv,
&ett_etv_payload
};
proto_etv_dii = proto_register_protocol("ETV-AM DII Section", "ETV-AM DII", "etv-dii");
proto_etv_ddb = proto_register_protocol("ETV-AM DDB Section", "ETV-AM DDB", "etv-ddb");
proto_register_field_array(proto_etv_dii, hf_dii, array_length(hf_dii));
proto_register_field_array(proto_etv_ddb, hf_ddb, array_length(hf_ddb));
proto_register_subtree_array(ett, array_length(ett));
}
void
proto_reg_handoff_etv(void)
{
dissector_handle_t etv_dii_handle;
dissector_handle_t etv_ddb_handle;
etv_dii_handle = create_dissector_handle(dissect_etv_dii, proto_etv_dii);
etv_ddb_handle = create_dissector_handle(dissect_etv_ddb, proto_etv_ddb);
dissector_add_uint("mpeg_sect.tid", ETV_TID_DII_SECTION, etv_dii_handle);
dissector_add_uint("mpeg_sect.tid", ETV_TID_DDB_SECTION, etv_ddb_handle);
dsmcc_handle = find_dissector("mp2t-dsmcc");
data_handle = find_dissector("data");
}

File diff suppressed because it is too large Load Diff

View File

@ -113,6 +113,8 @@ static const value_string mpeg_pmt_stream_type_vals[] = {
{ 0x1A, "IPMP stream (defined in ISO/IEC 13818-11, MPEG-2 IPMP)" },
{ 0x1B, "AVC video stream as defined in ITU-T Rec. H.264 | ISO/IEC 14496-10 Video" },
{ 0x7F, "IPMP stream" },
{ 0xA1, "ETV-AM BIF Data Stream" },
{ 0xC0, "ETV-AM EISS Signaling" },
{ 0x00, NULL }
};

View File

@ -105,7 +105,9 @@ enum {
/* From OC-SP-ETV-AM 1.0-IO5 */
enum {
TID_ETV_EISS = 0xE0
TID_ETV_EISS = 0xE0,
TID_ETV_DII = 0xE3,
TID_ETV_DDB = 0xE4
};
static const value_string mpeg_sect_table_id_vals[] = {
@ -136,6 +138,8 @@ static const value_string mpeg_sect_table_id_vals[] = {
{ TID_TIM, "Terminal Information Message (TIM)" },
{ TID_DVB_MPE, "DVB MultiProtocol Encapsulation (MPE)" },
{ TID_ETV_EISS, "ETV Integrated Signaling Stream (EISS)" },
{ TID_ETV_DII, "ETV Download Info Indication" },
{ TID_ETV_DDB, "ETV Download Data Block" },
{ TID_FORBIDEN, "Forbidden" },
{ 0, NULL }
};