aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-scsi-smc.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-12 10:30:10 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-12 10:30:10 +0000
commit92919f496f049d46d975258adbdd1d5618b1350b (patch)
treeba36336637be7ff3d577a925d1e22f47153ef5b5 /epan/dissectors/packet-scsi-smc.c
parent633d4b3810e4ebd56869ec89a165c5380a3cb3d9 (diff)
add dissection of SMC OPEN/CLOSE IMPORT/EXPORT ELEMENT cdb
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20794 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-scsi-smc.c')
-rw-r--r--epan/dissectors/packet-scsi-smc.c38
1 files changed, 37 insertions, 1 deletions
diff --git a/epan/dissectors/packet-scsi-smc.c b/epan/dissectors/packet-scsi-smc.c
index fcb6e89a0c..c7d28de0eb 100644
--- a/epan/dissectors/packet-scsi-smc.c
+++ b/epan/dissectors/packet-scsi-smc.c
@@ -60,6 +60,8 @@ static int hf_scsi_smc_range = -1;
static int hf_scsi_smc_sea = -1;
static int hf_scsi_smc_num_elements = -1;
static int hf_scsi_smc_invert = -1;
+static int hf_scsi_smc_ea = -1;
+static int hf_scsi_smc_action_code = -1;
static gint ett_scsi_exchange_medium = -1;
static gint ett_scsi_range = -1;
@@ -147,6 +149,28 @@ dissect_smc_initialize_element_status_with_range (tvbuff_t *tvb, packet_info *pi
}
void
+dissect_smc_openclose_importexport_element (tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
+ guint offset, gboolean isreq, gboolean iscdb,
+ guint payload_len _U_, scsi_task_data_t *cdata _U_)
+{
+ guint8 flags;
+
+ if (!tree)
+ return;
+
+ if (isreq && iscdb) {
+ proto_tree_add_item (tree, hf_scsi_smc_ea, tvb, offset+1, 2, 0);
+
+ proto_tree_add_item (tree, hf_scsi_smc_action_code, tvb, offset+3, 1, 0);
+
+ flags = tvb_get_guint8 (tvb, offset+4);
+ proto_tree_add_uint_format (tree, hf_scsi_control, tvb, offset+4, 1,
+ flags,
+ "Vendor Unique = %u, NACA = %u, Link = %u",
+ flags & 0xC0, flags & 0x4, flags & 0x1);
+ }
+}
+void
dissect_smc_movemedium (tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
guint offset, gboolean isreq, gboolean iscdb,
guint payload_len _U_, scsi_task_data_t *cdata _U_)
@@ -189,6 +213,12 @@ static const value_string element_type_code_vals[] = {
{0, NULL}
};
+static const value_string action_code_vals[] = {
+ {0, "OPEN Import/Export Element"},
+ {1, "CLOSE Import/Export Element"},
+ {0, NULL}
+};
+
#define PVOLTAG 0x80
#define AVOLTAG 0x40
@@ -617,7 +647,7 @@ scsi_cdb_table_t scsi_smc_table[256] = {
/*SMC 0x18*/{NULL},
/*SMC 0x19*/{NULL},
/*SPC 0x1a*/{dissect_spc_modesense6},
-/*SMC 0x1b*/{NULL},
+/*SMC 0x1b*/{dissect_smc_openclose_importexport_element},
/*SMC 0x1c*/{NULL},
/*SPC 0x1d*/{dissect_spc_senddiagnostic},
/*SMC 0x1e*/{dissect_spc_preventallowmediaremoval},
@@ -898,6 +928,12 @@ proto_register_scsi_smc(void)
{ &hf_scsi_smc_invert,
{"INVERT", "scsi.smc.invert", FT_BOOLEAN, 8,
NULL, 0x01, "", HFILL}},
+ { &hf_scsi_smc_ea,
+ {"Element Address", "scsi.smc.ea", FT_UINT16, BASE_DEC,
+ NULL, 0x0, "", HFILL}},
+ { &hf_scsi_smc_action_code,
+ {"Action Code", "scsi.smc.action_code", FT_UINT8, BASE_HEX,
+ VALS(action_code_vals), 0x1f, "", HFILL}},
};