aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cisco-mcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-cisco-mcp.c')
-rw-r--r--epan/dissectors/packet-cisco-mcp.c161
1 files changed, 114 insertions, 47 deletions
diff --git a/epan/dissectors/packet-cisco-mcp.c b/epan/dissectors/packet-cisco-mcp.c
index a690cce937..2fc7cc386d 100644
--- a/epan/dissectors/packet-cisco-mcp.c
+++ b/epan/dissectors/packet-cisco-mcp.c
@@ -13,6 +13,7 @@
/*
TODO:
- Figure out the hash calculation
+ - Figure out strict mode tlv
Specs: No specs available
No header
@@ -27,6 +28,8 @@ Documentation:
https://www.cisco.com/c/en/us/solutions/collateral/data-center-virtualization/application-centric-infrastructure/white-paper-c11-737909.pdf
https://unofficialaciguide.com/2018/03/27/using-mcp-miscabling-protocol-for-aci/
knet_parser.py from Cisco
+Strict mode:
+ https://www.cisco.com/c/en/us/td/docs/dcn/aci/apic/5x/aci-fundamentals/cisco-aci-fundamentals-52x/fundamentals-52x.html#Cisco_Concept.dita_637b67a2-6826-4cc4-8fbf-6998dc791d8b
*/
#include "config.h"
@@ -39,41 +42,58 @@ Documentation:
void proto_register_mcp(void);
void proto_reg_handoff_mcp(void);
-static int proto_mcp = -1;
+static dissector_handle_t mcp_handle;
+
+static int proto_mcp;
/* TLV header */
-static int hf_mcp_tlv_type = -1;
-static int hf_mcp_tlv_length = -1;
+static int hf_mcp_tlv_type;
+static int hf_mcp_strict_tlv_type;
+static int hf_mcp_tlv_length;
/* Values */
-static int hf_mcp_fabric_id = -1;
-static int hf_mcp_node_id = -1;
-static int hf_mcp_vpc_domain = -1;
-static int hf_mcp_vpc_id = -1;
-static int hf_mcp_vpc_vtep = -1;
-static int hf_mcp_port_id = -1;
-static int hf_mcp_send_time = -1;
-static int hf_mcp_digest = -1;
-static int hf_mcp_unknown = -1;
-
-static expert_field ei_mcp_short_tlv = EI_INIT;
-static expert_field ei_mcp_trailing_bytes = EI_INIT;
-static expert_field ei_mcp_unexpected_tlv_length = EI_INIT;
-
-static gint ett_mcp = -1;
-static gint ett_mcp_tlv_header = -1;
+static int hf_mcp_fabric_id;
+static int hf_mcp_node_id;
+static int hf_mcp_vpc_domain;
+static int hf_mcp_vpc_id;
+static int hf_mcp_vpc_vtep;
+static int hf_mcp_port_id;
+static int hf_mcp_send_time;
+static int hf_mcp_strictmode;
+static int hf_mcp_digest;
+static int hf_mcp_unknown;
+
+static expert_field ei_mcp_short_tlv;
+static expert_field ei_mcp_trailing_bytes;
+static expert_field ei_mcp_unexpected_tlv_length;
+
+static gint ett_mcp;
+static gint ett_mcp_tlv_header;
#define PROTO_SHORT_NAME "MCP"
#define PROTO_LONG_NAME "Miscabling Protocol"
-typedef enum {
- MCP_TYPE_FABRIC_ID = 1, // Len=4,
- MCP_TYPE_NODE_ID = 2, // Len=4,
- MCP_TYPE_VPC_INFO = 3, // Len=12,
- MCP_TYPE_PORT_ID = 4, // Len=4,
- MCP_TYPE_SEND_TIME = 5, // Len=4,
- MCP_TYPE_DIGEST = 6, // Len=20,
- MCP_TYPE_END = 7 // Len=0
+// non-strict mode
+typedef enum { // Total length of MCPDU = 62
+ MCP_TYPE_FABRIC_ID = 1, // Len=4,
+ MCP_TYPE_NODE_ID = 2, // Len=4,
+ MCP_TYPE_VPC_INFO = 3, // Len=12,
+ MCP_TYPE_PORT_ID = 4, // Len=4,
+ MCP_TYPE_SEND_TIME = 5, // Len=4,
+ MCP_TYPE_DIGEST = 6, // Len=20,
+ MCP_TYPE_END = 7 // Len=0
} mcp_type_t;
+// strict mode - minimum ACI software: 5.2(4)
+typedef enum { // Total length of MCPDU = 68
+ MCPS_TYPE_FABRIC_ID = 1, // Len=4,
+ MCPS_TYPE_NODE_ID = 2, // Len=4,
+ MCPS_TYPE_VPC_INFO = 3, // Len=12,
+ MCPS_TYPE_PORT_ID = 4, // Len=4,
+ MCPS_TYPE_SEND_TIME = 5, // Len=4,
+ MCPS_TYPE_STRICTMODE = 6, // Len=4
+ MCPS_TYPE_DIGEST = 7, // Len=20,
+ MCPS_TYPE_END = 8 // Len=0
+} mcp_strict_type_t;
+
static const value_string mcp_type_vals[] = {
{ MCP_TYPE_FABRIC_ID, "Fabric ID"},
{ MCP_TYPE_NODE_ID, "Node ID"},
@@ -86,6 +106,19 @@ static const value_string mcp_type_vals[] = {
{ 0, NULL }
};
+static const value_string mcp_strict_type_vals[] = {
+ { MCPS_TYPE_FABRIC_ID, "Fabric ID"},
+ { MCPS_TYPE_NODE_ID, "Node ID"},
+ { MCPS_TYPE_VPC_INFO, "VPC Info"},
+ { MCPS_TYPE_PORT_ID, "Port ID"},
+ { MCPS_TYPE_SEND_TIME, "Send Time"},
+ { MCPS_TYPE_STRICTMODE, "Strictmode?"},
+ { MCPS_TYPE_DIGEST, "Digest"},
+ { MCPS_TYPE_END, "End"},
+
+ { 0, NULL }
+};
+
static int
dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
@@ -94,14 +127,15 @@ dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
proto_tree *tlv_tree;
guint32 offset = 0;
gboolean last = FALSE;
- guint8 tlv_type;
+ gboolean strict_mode = TRUE;
+ guint8 tlv_type, use_tlv;
guint16 tlv_length;
- guint16 data_length = tvb_reported_length_remaining(tvb, offset);;
- guint32 fabricid, nodeid, vpcdomain, vpcid, portid, sendtime;
+ guint16 data_length = tvb_reported_length_remaining(tvb, offset);
+ guint32 fabricid, nodeid, vpcdomain, vpcid, portid, sendtime, strictmode;
gchar *sendtime_str, *vpcvtep_str;
col_set_str(pinfo->cinfo, COL_PROTOCOL, PROTO_SHORT_NAME);
- col_set_str(pinfo->cinfo, COL_INFO, "");
+ col_clear(pinfo->cinfo, COL_INFO);
ti = proto_tree_add_item(tree, proto_mcp, tvb, offset, -1,
ENC_NA);
@@ -111,16 +145,30 @@ dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
while (offset < data_length && !last) {
if (data_length - offset < 2) {
proto_tree_add_expert_format(mcp_tree, pinfo, &ei_mcp_short_tlv, tvb,
- offset, 4, "Too few bytes left for TLV (%u < 2)", data_length - offset);
+ offset, data_length, "Too few bytes left for TLV (%u < 2)", data_length - offset);
break;
}
tlv_type = tvb_get_guint8(tvb, offset);
- tlv_length = tvb_get_guint8(tvb, offset + 1);
+ // HACK: Interestring version handling
+ use_tlv = tlv_type;
+ if (data_length == 62) {
+ strict_mode = FALSE;
+ if (tlv_type >= MCPS_TYPE_STRICTMODE) {
+ use_tlv = tlv_type + 1;
+ }
+ }
- tlv_tree = proto_tree_add_subtree_format(mcp_tree, tvb, offset, tlv_length + 2,
- ett_mcp_tlv_header, NULL, "%s", val_to_str(tlv_type, mcp_type_vals, "Unknown (0x%02x)"));
+ tlv_length = tvb_get_guint8(tvb, offset + 1);
+ if (strict_mode) {
+ tlv_tree = proto_tree_add_subtree_format(mcp_tree, tvb, offset, tlv_length + 2,
+ ett_mcp_tlv_header, NULL, "%s", val_to_str(tlv_type, mcp_strict_type_vals, "Unknown (0x%02x)"));
+ proto_tree_add_uint(tlv_tree, hf_mcp_strict_tlv_type, tvb, offset, 1, tlv_type);
+ } else {
+ tlv_tree = proto_tree_add_subtree_format(mcp_tree, tvb, offset, tlv_length + 2,
+ ett_mcp_tlv_header, NULL, "%s", val_to_str(tlv_type, mcp_type_vals, "Unknown (0x%02x)"));
proto_tree_add_uint(tlv_tree, hf_mcp_tlv_type, tvb, offset, 1, tlv_type);
+ }
offset += 1;
proto_tree_add_uint(tlv_tree, hf_mcp_tlv_length, tvb, offset, 1, tlv_length);
@@ -131,8 +179,8 @@ dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
}
offset += 1;
- switch (tlv_type) {
- case MCP_TYPE_FABRIC_ID:
+ switch (use_tlv) {
+ case MCPS_TYPE_FABRIC_ID:
if (tlv_length == 4) {
proto_tree_add_item_ret_uint(tlv_tree, hf_mcp_fabric_id, tvb, offset, tlv_length, ENC_BIG_ENDIAN, &fabricid);
proto_item_append_text(tlv_tree, ": %u", fabricid);
@@ -143,7 +191,7 @@ dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
4, tlv_length);
}
break;
- case MCP_TYPE_NODE_ID:
+ case MCPS_TYPE_NODE_ID:
if (tlv_length == 4) {
proto_tree_add_item_ret_uint(tlv_tree, hf_mcp_node_id, tvb, offset, tlv_length, ENC_BIG_ENDIAN, &nodeid);
proto_item_append_text(tlv_tree, ": %u", nodeid);
@@ -154,16 +202,17 @@ dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
4, tlv_length);
}
break;
- case MCP_TYPE_VPC_INFO:
+ case MCPS_TYPE_VPC_INFO:
proto_tree_add_item_ret_uint(tlv_tree, hf_mcp_vpc_domain, tvb, offset, 4, ENC_NA, &vpcdomain);
proto_tree_add_item_ret_uint(tlv_tree, hf_mcp_vpc_id, tvb, offset + 4, 4, ENC_NA, &vpcid);
pi = proto_tree_add_item(tlv_tree, hf_mcp_vpc_vtep, tvb, offset + 8, 4, ENC_NA);
vpcvtep_str = proto_item_get_display_repr(pinfo->pool, pi);
proto_item_append_text(tlv_tree, ": %u/%u/%s", vpcdomain, vpcid, vpcvtep_str);
// FIXME: Why is vpcvtep_str displayed as "(null)" in COL_INFO but not above??? scope???
- col_append_fstr(pinfo->cinfo, COL_INFO, "VpcInfo/%u,%u,%s ", vpcdomain, vpcid, vpcvtep_str);
+ if (vpcvtep_str)
+ col_append_fstr(pinfo->cinfo, COL_INFO, "VpcInfo/%u,%u,%s ", vpcdomain, vpcid, vpcvtep_str);
break;
- case MCP_TYPE_PORT_ID:
+ case MCPS_TYPE_PORT_ID:
if (tlv_length == 4) {
proto_tree_add_item_ret_uint(tlv_tree, hf_mcp_port_id, tvb, offset, tlv_length, ENC_BIG_ENDIAN, &portid);
proto_item_append_text(tlv_tree, ": 0x%08x", portid);
@@ -174,7 +223,7 @@ dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
4, tlv_length);
}
break;
- case MCP_TYPE_SEND_TIME:
+ case MCPS_TYPE_SEND_TIME:
if (tlv_length == 4) {
proto_tree_add_item(tlv_tree, hf_mcp_send_time, tvb, offset, tlv_length, ENC_TIME_SECS|ENC_BIG_ENDIAN);
sendtime = tvb_get_ntohl(tvb, offset);
@@ -187,7 +236,18 @@ dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
4, tlv_length);
}
break;
- case MCP_TYPE_DIGEST:
+ case MCPS_TYPE_STRICTMODE:
+ if (tlv_length == 4) {
+ proto_tree_add_item_ret_uint(tlv_tree, hf_mcp_strictmode, tvb, offset, tlv_length, ENC_BIG_ENDIAN, &strictmode);
+ proto_item_append_text(tlv_tree, ": %d", strictmode);
+ col_append_fstr(pinfo->cinfo, COL_INFO, "Unk1/%d ", strictmode);
+ } else {
+ proto_tree_add_expert_format(mcp_tree, pinfo, &ei_mcp_unexpected_tlv_length, tvb,
+ offset, tlv_length, "Expected value length differs from seen length (%u != %u)",
+ 4, tlv_length);
+ }
+ break;
+ case MCPS_TYPE_DIGEST:
if (tlv_length == 20) {
proto_tree_add_item(tlv_tree, hf_mcp_digest, tvb, offset, tlv_length, ENC_NA);
} else {
@@ -196,7 +256,7 @@ dissect_mcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
20, tlv_length);
}
break;
- case MCP_TYPE_END:
+ case MCPS_TYPE_END:
last = TRUE;
if (tlv_length != 0) {
proto_tree_add_expert_format(mcp_tree, pinfo, &ei_mcp_unexpected_tlv_length, tvb,
@@ -228,6 +288,10 @@ proto_register_mcp(void)
{ "TLV type", "mcp.tlv.type", FT_UINT8, BASE_DEC, VALS(mcp_type_vals),
0x0, NULL, HFILL }},
+ { &hf_mcp_strict_tlv_type,
+ { "TLV type", "mcp.tlv.type", FT_UINT8, BASE_DEC, VALS(mcp_strict_type_vals),
+ 0x0, NULL, HFILL }},
+
{ &hf_mcp_tlv_length,
{ "TLV length", "mcp.tlv.length", FT_UINT16, BASE_DEC, NULL,
0x0, NULL, HFILL }},
@@ -261,6 +325,10 @@ proto_register_mcp(void)
{ "Send Time", "mcp.send_time", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL, NULL,
0x0, NULL, HFILL }},
+ { &hf_mcp_strictmode,
+ { "Strict Mode?", "mcp.strictmode", FT_UINT32, BASE_DEC, NULL,
+ 0x0, NULL, HFILL }},
+
{ &hf_mcp_digest,
{ "Digest", "mcp.digest", FT_BYTES, BASE_NONE, NULL,
0x0, NULL, HFILL }},
@@ -297,14 +365,13 @@ proto_register_mcp(void)
proto_register_subtree_array(ett, array_length(ett));
expert_mcp = expert_register_protocol(proto_mcp);
expert_register_field_array(expert_mcp, ei, array_length(ei));
+
+ mcp_handle = register_dissector("mcp", dissect_mcp, proto_mcp);
}
void
proto_reg_handoff_mcp(void)
{
- dissector_handle_t mcp_handle;
-
- mcp_handle = create_dissector_handle(dissect_mcp, proto_mcp);
dissector_add_uint("llc.cisco_pid", CISCO_PID_MCP, mcp_handle);
}