aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_cmd.c
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2014-12-29 11:07:22 +0100
committerMichal Labedzki <michal.labedzki@tieto.com>2015-02-02 10:47:20 +0000
commit359ff3100b06b5e7bacbb199830b2d9a814d3a41 (patch)
tree237dda951ccfcc19b20cc4347a798a4aa568b1be /epan/dissectors/packet-bthci_cmd.c
parent2cae3201b7353ebef07cb8b07e8efd7c4bcb1842 (diff)
Bluetooth: HCI: Improve detecting of undecoded and unknown commands
Undecoded command - command does exist in specification, but not fully implemented in Wireshark yet Unknown command - command does not exist in specification or it is quite new and opcode number is not added yet Unexpected parameter - is now working correctly that means if there is known command but too many parameters so user should know about this issue Change-Id: If3ee24f617f7e6683049558f7a6d68e346e7c92f Reviewed-on: https://code.wireshark.org/review/6898 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'epan/dissectors/packet-bthci_cmd.c')
-rw-r--r--epan/dissectors/packet-bthci_cmd.c42
1 files changed, 35 insertions, 7 deletions
diff --git a/epan/dissectors/packet-bthci_cmd.c b/epan/dissectors/packet-bthci_cmd.c
index 13c280aa5e..81a3f8c7f9 100644
--- a/epan/dissectors/packet-bthci_cmd.c
+++ b/epan/dissectors/packet-bthci_cmd.c
@@ -326,7 +326,7 @@ static int hf_bthci_cmd_test_packet_payload = -1;
static int hf_bthci_cmd_parameter = -1;
static expert_field ei_command_undecoded = EI_INIT;
-static expert_field ei_command_unknown = EI_INIT;
+static expert_field ei_command_unknown_command = EI_INIT;
static expert_field ei_command_parameter_unexpected = EI_INIT;
static dissector_table_t vendor_dissector_table;
@@ -1932,6 +1932,10 @@ dissect_link_control_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo,
proto_tree_add_expert(tree, pinfo, &ei_command_undecoded, tvb, offset, -1);
offset += tvb_length_remaining(tvb, offset);
break;
+
+ default:
+ proto_tree_add_expert(tree, pinfo, &ei_command_unknown_command, tvb, offset, -1);
+ offset += tvb_length_remaining(tvb, offset);
}
return offset;
@@ -2073,6 +2077,10 @@ dissect_link_policy_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto
case 0x00e: /* Read Default Link Policy Setting */
/* NOTE: No parameters */
break;
+
+ default:
+ proto_tree_add_expert(tree, pinfo, &ei_command_unknown_command, tvb, offset, -1);
+ offset += tvb_length_remaining(tvb, offset);
}
return offset;
@@ -2670,6 +2678,10 @@ dissect_host_controller_baseband_cmd(tvbuff_t *tvb, int offset, packet_info *pin
proto_tree_add_expert(tree, pinfo, &ei_command_undecoded, tvb, offset, -1);
offset += tvb_length_remaining(tvb, offset);
break;
+
+ default:
+ proto_tree_add_expert(tree, pinfo, &ei_command_unknown_command, tvb, offset, -1);
+ offset += tvb_length_remaining(tvb, offset);
}
return offset;
@@ -2696,6 +2708,10 @@ dissect_informational_parameters_cmd(tvbuff_t *tvb, int offset, packet_info *pin
case 0x00B: /* Read Local Supported Codecs */
/* NOTE: No parameters */
break;
+
+ default:
+ proto_tree_add_expert(tree, pinfo, &ei_command_unknown_command, tvb, offset, -1);
+ offset += tvb_length_remaining(tvb, offset);
}
return offset;
@@ -2747,15 +2763,19 @@ dissect_status_parameters_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
offset+=tvb_length_remaining(tvb, offset);
break;
- case 0x00D: /* Set Triggered Clock Capture */
+ case 0x000D: /* Set Triggered Clock Capture */
/* NOTE: No parameters */
break;
- case 0x00C: /* Get MWS Transport Layer Configuration */
+ case 0x000C: /* Get MWS Transport Layer Configuration */
/* TODO: Implement above cases */
proto_tree_add_expert(tree, pinfo, &ei_command_undecoded, tvb, offset, -1);
offset += tvb_length_remaining(tvb, offset);
break;
+
+ default:
+ proto_tree_add_expert(tree, pinfo, &ei_command_unknown_command, tvb, offset, -1);
+ offset += tvb_length_remaining(tvb, offset);
}
return offset;
@@ -2790,10 +2810,14 @@ dissect_testing_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tre
break;
case 0x009: /* AMP Test */
-/* TODO: Implement above case */
+/* TODO: Implement above cases */
proto_tree_add_expert(tree, pinfo, &ei_command_undecoded, tvb, offset, -1);
offset += tvb_length_remaining(tvb, offset);
break;
+
+ default:
+ proto_tree_add_expert(tree, pinfo, &ei_command_unknown_command, tvb, offset, -1);
+ offset += tvb_length_remaining(tvb, offset);
}
return offset;
@@ -3011,6 +3035,10 @@ dissect_le_cmd(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
case 0x01F: /* LE Test End */
/* NOTE: No parameters */
break;
+
+ default:
+ proto_tree_add_expert(tree, pinfo, &ei_command_unknown_command, tvb, offset, -1);
+ offset += tvb_length_remaining(tvb, offset);
}
return offset;
@@ -3177,7 +3205,7 @@ dissect_bthci_cmd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *dat
break;
default:
- proto_tree_add_expert(bthci_cmd_tree, pinfo, &ei_command_unknown, tvb, 3, -1);
+ proto_tree_add_expert(bthci_cmd_tree, pinfo, &ei_command_unknown_command, tvb, 3, -1);
offset += tvb_length_remaining(tvb, offset);
break;
}
@@ -4618,7 +4646,7 @@ proto_register_bthci_cmd(void)
};
static ei_register_info ei[] = {
- { &ei_command_unknown, { "bthci_cmd.expert.command.unknown.", PI_PROTOCOL, PI_WARN, "Unknown command", EXPFILL }},
+ { &ei_command_unknown_command, { "bthci_cmd.expert.command.unknown_command", PI_PROTOCOL, PI_WARN, "Unknown command", EXPFILL }},
{ &ei_command_parameter_unexpected, { "bthci_cmd.expert.parameter.unexpected", PI_PROTOCOL, PI_WARN, "Unexpected command parameter", EXPFILL }},
{ &ei_command_undecoded, { "bthci_cmd.expert.command.undecoded", PI_PROTOCOL, PI_UNDECODED, "Command undecoded", EXPFILL }}
};
@@ -4864,7 +4892,7 @@ dissect_eir_ad_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
offset += 2;
} else {
sub_item = proto_tree_add_item(entry_tree, hf_btcommon_eir_ad_data, tvb, offset, length, ENC_NA);
- expert_add_info(pinfo, sub_item, &ei_command_unknown);
+ expert_add_info(pinfo, sub_item, &ei_command_unknown_command);
}
break;