Revamp camcontrol(8) fwdownload support and add the opcodes subcommand.

The significant changes and bugs fixed here are:

1. Fixed a bug in the progress display code:

   When the user's filename is too big, or his terminal width is too
   small, the progress code could wind up using a negative number for
   the length of the "stars" that it uses to indicate progress.

   This negative value was assigned to an unsigned variable, resulting
   in a very large positive value.

   The result is that we wound up writing garbage from memory to the
   user's terminal.

   With an 80 column terminal, a file name length of more than 35
   characters would generate this problem.

   To address this, we now set a minimum progress bar length, and
   truncate the user's file name as needed.

   This has been tested with large filenames and small terminals, and
   at least produces reasonable results.  If the terminal is too
   narrow, the progress display takes up an additional line with each
   update, but this is more user friendly than writing garbage to the
   tty.

2. SATA drives connected via a SATA controller didn't have SCSI Inquiry
   data populated in struct cam_device.  This meant that the code in
   fw_get_vendor() in fwdownload.c would try to match a zero-length
   vendor ID, and so return the first entry in the vendor table.  (Which
   used to be HITACHI.)  Fixed by grabbing identify data, passing the
   identify buffer into fw_get_vendor(), and matching against the model
   name.

3. SATA drives connected via a SAS controller do have Inquiry data
   populated.  The table included a couple of entries -- "ATA ST" and
   "ATA HDS", intended to handle Seagate and Hitachi SATA drives attached
   via a SAS controller.  SCSI to ATA translation layers use a vendor
   ID of "ATA" (which is standard), and then the model name from the ATA
   identify data as the SCSI product name when they are returning data on
   SATA disks.  The cam_strmatch code will match the first part of the
   string (because the length it is given is the length of the vendor,
   "ATA"), and return 0 (i.e. a match).  So all SATA drives attached to
   a SAS controller would be programmed using the Seagate method
   (WRITE BUFFER mode 7) of SCSI firmware downloading.

4. Issue #2 above covered up a bug in fw_download_img() -- if the
   maximum packet size in the vendor table was 0, it tried to default
   to a packet size of 32K.  But then it didn't actually succeed in
   doing that, because it set the packet size to the value that was
   in the vendor table (0).  Now that we actually have ATA attached
   drives fall use the VENDOR_ATA case, we need a reasonable default
   packet size.  So this is fixed to properly set the default packet size.

5. Add support for downloading firmware to IBM LTO drives, and add a
   firmware file validation method to make sure that the firmware
   file matches the drive type.  IBM tape drives include a Load ID and
   RU name in their vendor-specific VPD page 0x3.  Those should match
   the IDs in the header of the firmware file to insure that the
   proper firmware file is loaded.

6. This also adds a new -q option to the camcontrol fwdownload
   subcommand to suppress informational output.  When -q is used in
   combination with -y, the firmware upgrade will happen without
   prompting and without output except if an error condition occurs.

7. Re-add support for printing out SCSI inquiry information when
   asking the user to confirm that they want to download firmware, and
   add printing of ATA Identify data if it is a SATA disk.  This was
   removed in r237281 when support for flashing ATA disks was added.

8. Add a new camcontrol(8) "opcodes" subcommand, and use the
   underlying code to get recommended timeout values for drive
   firmware downloads.

   Many SCSI devices support the REPORT SUPPORTED OPERATION CODES
   command, and some support the optional timeout descriptor that
   specifies nominal and recommended timeouts for the commands
   supported by the device.

   The new camcontrol opcodes subcommand allows displaying all
   opcodes supported by a drive, information about which fields
   in a SCSI CDB are actually used by a given SCSI device, and the
   nominal and recommended timeout values for each command.

   Since firmware downloads can take a long time in some devices, and
   the time varies greatly between different types of devices, take
   advantage of the infrastructure used by the camcontrol opcodes
   subcommand to determine the best timeout to use for the WRITE
   BUFFER command in SCSI device firmware downloads.

   If the device recommends a timeout, it is likely to be more
   accurate than the default 50 second timeout used by the firmware
   download code.  If the user specifies a timeout, it will override
   the default or device recommended timeout.  If the device doesn't
   support timeout descriptors, we fall back to the default.

9. Instead of downloading firmware to SATA drives behind a SAS controller
   using WRITE BUFFER, use the SCSI ATA PASS-THROUGH command to compose
   an ATA DOWNLOAD MICROCODE command and it to the drive.  The previous
   version of this code attempted to send a SCSI WRITE BUFFER command to
   SATA drives behind a SAS controller.  Although that is part of the
   SAT-3 spec, it doesn't work with the parameters used with LSI
   controllers at least.

10.Add a new mechanism for making common ATA passthrough and
   ATA-behind-SCSI passthrough commands.

   The existing camcontrol(8) ATA command mechanism checks the device
   type on every command executed.  That works fine for individual
   commands, but is cumbersome for things like a firmware download
   that send a number of commands.

   The fwdownload code detects the device type up front, and then
   sends the appropriate commands.

11.In simulation mode (-s), if the user specifies the -v flag, print out
   the SCSI CDB or ATA registers that would be sent to the drive.  This will
   aid in debugging any firmware download issues.

sbin/camcontrol/fwdownload.c:
	Add a device type to the fw_vendor structure, so that we can
	specify different download methods for different devices from the
	same vendor.  In this case, IBM hard drives (from when they
	still made hard drives) and tape drives.

	Add a tur_status field to the fw_vendor structure so that we can
	specify whether the drive to be upgraded should be ready, not
	ready, or whether it doesn't matter.  Add the corresponding
	capability in fw_download_img().

	Add comments describing each of the vendor table fields.

	Add HGST and SmrtStor to the supported SCSI vendors list.

	In fw_get_vendor(), look at ATA identify data if we have a SATA
	device to try to identify what the drive vendor is.

	Add IBM firmware file validation.  This gets VPD page 0x3, and
	compares the Load ID and RU name in the page to the values
	included in the header.  The validation code will refuse to load
	a firmware file if the values don't match.  This does allow the
	user to attempt a downgrade; whether or not it succeeds will
	likely depend on the drive settings.

	Add a -q option, and disable all informative output
	(progress bars, etc.) when this is enabled.

	Re-add the inquiry in the confirmation dialog so the user has
	a better idea of which device he is talking to.  Add support for
	displaying ATA identify data.

	Don't automatically disable confirmation in simulation (-s) mode.
	This allows the user to see the inquiry or identify data in the
	dialog, and see exactly what they would see when the command
	actually runs.  Also, in simulation mode, if the user specifies
	the -v flag, print out the SCSI CDB or ATA registers that would
	be sent to the drive.  This will aid in debugging any firmware
	download issues.

	Add a timeout field and timeout type to the firmware download
	vendor table.  This allows specifying a default timeout and allows
	specifying whether we should attempt to probe for a recommended
	timeout from the drive.

	Add a new fuction, fw_get_timeout(), that will determine
	which timeout to use for the WRITE BUFFER command.  If the
	user specifies a timeout, we always use that.  Otherwise,
	we will use the drive recommended timeout, if available,
	and fall back to the default when a drive recommended
	timeout isn't available.

	When we prompt the user, tell him what timeout we're going
	to use, and the source of the timeout.

	Revamp the way SATA devices are handled.

	In fwdownload(), use the new get_device_type() function to
	determine what kind of device we're talking to.

	Allow firmware downloads to any SATA device, but restrict
	SCSI downloads to known devices.  (The latter is not a
	change in behavior.)

	Break out the "ready" check from fw_download_img() into a
	new subfunction, fw_check_device_ready().  This sends the
	appropriate command to the device in question -- a TEST
	UNIT READY or an IDENTIFY.  The IDENTIFY for SATA devices
 	a SAT layer is done using the SCSI ATA PASS-THROUGH
	command.

	Use the new build_ata_cmd() function to build either a SCSI or
	ATA I/O CCB to issue the DOWNLOAD MICROCODE command to SATA
	devices.  build_ata_cmd() figures looks at the devtype argument
	and fills in the correct CCB type and CDB or ATA registers.

	Revamp the vendor table to remove the previous
	vendor-specific ATA entries and use a generic ATA vendor
	placeholder.  We currently use the same method for all ATA
	drives, although we may have to add vendor-specific
	behavior once we test this with more drives.

sbin/camcontrol/progress.c:
	In progress_draw(), make barlength a signed value so that
	we can easily detect a negative value.

	If barlength (the length of the progress bar) would wind up
	negative due to a small TTY width or a large filename,
	set the bar length to the new minimum (10 stars) and
	truncate the user's filename.  We will truncate it down to
	0 characters if necessary.

	Calculate a new prefix_len variable (user's filename length)
	and use it as the precision when printing the filename.

sbin/camcontrol/camcontrol.c:
	Implement a new camcontrol(8) subcommand, "opcodes".  The
	opcodes subcommand allows displaying the entire list of
	SCSI commands supported by a device, or details on an
	individual command.  In either case, it can display
	nominal and recommended timeout values.

	Add the scsiopcodes() function, which calls the new
	scsigetopcodes() function to fetch opcode data from a
	drive.

	Add two new functions, scsiprintoneopcode() and
	scsiprintopcodes(), which print information about one
	opcode or all opcodes, respectively.

	Remove the get_disk_type() function.  It is no longer used.

	Add a new function, dev_has_vpd_page(), that fetches the
	supported INQUIRY VPD list from a device and tells the
	caller whether the requested VPD page is available.

	Add a new function, get_device_type(), that returns a more
	precise device type than the old get_disk_type() function.
	The get_disk_type() function only distinguished between
	SCSI and ATA devices, and SATA devices behind a SCSI to ATA
	translation layer were considered to be "SCSI".

	get_device_type() offers a third type, CC_DT_ATA_BEHIND_SCSI.
	We need to know this to know whether to attempt to send ATA
	passthrough commands.  If the device has the ATA
	Information VPD page (0x89), then it is an ATA device
	behind a SCSI to ATA translation layer.

	Remove the type argument from the fwdownload() subcommand.

	Add a new function, build_ata_cmd(), that will take one set
	of common arguments and build either a SCSI or ATA I/O CCB,
	depending on the device type passed in.

sbin/camcontrol/camcontrol.h:
	Add a prototype for scsigetopcodes().

	Add a new enumeration, camcontrol_devtype.

	Add prototypes for dev_has_vpd_page(), get_device_type()
	and build_ata_cmd().

	Remove the type argument from the fwdownload() subcommand.

sbin/camcontrol/camcontrol.8
	Explain that the fwdownload subcommand will use the drive
	recommended timeout if available, and that the user can
	override the timeout.

	Document the new opcodes subcommand.

	Explain that we will attempt to download firmware to any
	SATA device.

	Document supported SCSI vendors, and models tested if known.

	Explain the commands used to download firmware for the
	three different drive and controller combinations.

	Document that the -v flag in simulation mode for the fwdownload
	subcommand will print out the SCSI CDBs or ATA registers that would
	be used.

sys/cam/scsi/scsi_all.h:
	Add new bit definitions for the one opcode descriptor for
	the REPORT SUPPORTED OPCODES command.

	Add a function prototype for scsi_report_supported_opcodes().

sys/cam/scsi/scsi_all.c:
	Add a new CDB building function, scsi_report_supported_opcodes().

Sponsored by:	Spectra Logic
MFC after:	1 week
This commit is contained in:
Kenneth D. Merry 2015-08-20 16:07:51 +00:00
parent d60f0f1c49
commit 0e358df062
7 changed files with 1623 additions and 214 deletions

View File

@ -27,7 +27,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd March 19, 2015
.Dd August 6, 2015
.Dt CAMCONTROL 8
.Os
.Sh NAME
@ -253,8 +253,9 @@
.Op device id
.Op generic args
.Aq Fl f Ar fw_image
.Op Fl y
.Op Fl q
.Op Fl s
.Op Fl y
.Nm
.Ic security
.Op device id
@ -311,6 +312,14 @@
.Op Fl T Ar elem_type
.Op Fl V Ar lv_num
.Nm
.Ic opcodes
.Op device id
.Op generic args
.Op Fl o Ar opcode
.Op Fl s Ar service_action
.Op Fl N
.Op Fl T
.Nm
.Ic help
.Sh DESCRIPTION
The
@ -1516,24 +1525,41 @@ without prompting for confirmation
The password for all HPA commands is limited to 32 characters, longer passwords
will fail.
.It Ic fwdownload
Program firmware of the named SCSI device using the image file provided.
Program firmware of the named
.Tn SCSI
or ATA device using the image file provided.
.Pp
Current list of supported vendors:
.Bl -bullet -offset indent -compact
.It
HITACHI
.It
HP
.It
IBM
.It
PLEXTOR
.It
QUANTUM
.It
SAMSUNG
.It
SEAGATE
If the device is a
.Tn SCSI
device and it provides a recommended timeout for the WRITE BUFFER command
(see the
.Nm
opcodes subcommand), that timeout will be used for the firmware download.
The drive-recommended timeout value may be overridden on the command line
with the
.Fl t
option.
.Pp
Current list of supported vendors for SCSI/SAS drives:
.Bl -tag -width 10n
.It HGST
Tested with 4TB SAS drives, model number HUS724040ALS640.
.It HITACHI
.It HP
.It IBM
Tested with LTO-5 (ULTRIUM-HH5) and LTO-6 (ULTRIUM-HH6) tape drives.
There is a separate table entry for hard drives, because the update method
for hard drives is different than the method for tape drives.
.It PLEXTOR
.It QUALSTAR
.It QUANTUM
.It SAMSUNG
Tested with SM1625 SSDs.
.It SEAGATE
Tested with Constellation ES (ST32000444SS), ES.2 (ST33000651SS) and
ES.3 (ST1000NM0023) drives.
.It SmrtStor
Tested with 400GB Optimus SSDs (TXA2D20400GA6001).
.El
.Pp
.Em WARNING! WARNING! WARNING!
@ -1547,23 +1573,81 @@ Extra caution should be taken when using this command since there is no
guarantee it will not break a device from the listed vendors.
Ensure that you have a recent backup of the data on the device before
performing a firmware update.
.Pp
Note that unknown
.Tn SCSI
protocol devices will not be programmed, since there is little chance of
the firmware download succeeding.
.Pp
.Nm
will currently attempt a firmware download to any
.Tn ATA
or
.Tn SATA
device, since the standard
.Tn ATA
DOWNLOAD MICROCODE command may work.
Firmware downloads to
.Tn ATA
and
.Tn SATA
devices are supported for devices connected
to standard
.Tn ATA
and
.Tn SATA
controllers, and devices connected to SAS controllers
with
.Tn SCSI
to
.Tn ATA
translation capability.
In the latter case,
.Nm
uses the
.Tn SCSI
.Tn ATA
PASS-THROUGH command to send the
.Tn ATA
DOWNLOAD MICROCODE command to the drive.
Some
.Tn SCSI
to
.Tn ATA
translation implementations don't work fully when translating
.Tn SCSI
WRITE BUFFER commands to
.Tn ATA
DOWNLOAD MICROCODE commands, but do support
.Tn ATA
passthrough well enough to do a firmware download.
.Bl -tag -width 11n
.It Fl f Ar fw_image
Path to the firmware image file to be downloaded to the specified device.
.It Fl y
Do not ask for confirmation.
.It Fl q
Do not print informational messages, only print errors.
This option should be used with the
.Fl y
option to suppress all output.
.It Fl s
Run in simulation mode.
Packet sizes that will be sent are shown, but no actual packet is sent to the
device.
No confirmation is asked in simulation mode.
Device checks are run and the confirmation dialog is shown, but no firmware
download will occur.
.It Fl v
Besides showing sense information in case of a failure, the verbose option
causes
.Nm
to output a line for every firmware segment that is sent to the device by the
fwdownload command
-- the same as the ones shown in simulation mode.
Show
.Tn SCSI
or
.Tn ATA
errors in the event of a failure.
.Pp
In simulation mode, print out the
.Tn SCSI
CDB
or
.Tn ATA
register values that would be used for the firmware download command.
.It Fl y
Do not ask for confirmation.
.El
.It Ic persist
Persistent reservation support.
@ -1958,6 +2042,52 @@ and
Specify the number of the logical volume to operate on.
If the media has multiple logical volumes, this will allow displaying
or writing attributes on the given logical volume.
.It Ic opcodes
Issue the REPORT SUPPORTED OPCODES service action of the
.Tn SCSI
MAINTENANCE IN
command.
Without arguments, this command will return a list of all
.Tn SCSI
commands supported by the device, including service actions of commands
that support service actions.
It will also include the
.Tn SCSI
CDB (Command Data Block) length for each command, and the description of
each command if it is known.
.Bl -tag -width 18n
.It Fl o Ar opcode
Request information on a specific opcode instead of the list of supported
commands.
If supported, the target will return a CDB-like structure that indicates
the opcode, service action (if any), and a mask of bits that are supported
in that CDB.
.It Fl s Ar service_action
For commands that support a service action, specify the service action to
query.
.It Fl N
If a service action is specified for a given opcode, and the device does
not support the given service action, the device should not return a
.Tn SCSI
error, but rather indicate in the returned parameter data that the command
is not supported.
By default, if a service action is specified for an opcode, and service
actions are not supported for the opcode in question, the device will
return an error.
.It Fl T
Include timeout values.
This option works with the default display, which includes all commands
supported by the device, and with the
.Fl o
and
.Fl s
options, which request information on a specific command and service
action.
This requests that the device report Nominal and Recommended timeout values
for the given command or commands.
The timeout values are in seconds.
The timeout descriptor also includes a command-specific
.El
.It Ic help
Print out verbose usage information.
.El

View File

@ -99,7 +99,8 @@ typedef enum {
CAM_CMD_PERSIST = 0x00000020,
CAM_CMD_APM = 0x00000021,
CAM_CMD_AAM = 0x00000022,
CAM_CMD_ATTRIB = 0x00000023
CAM_CMD_ATTRIB = 0x00000023,
CAM_CMD_OPCODES = 0x00000024
} cam_cmdmask;
typedef enum {
@ -221,11 +222,12 @@ static struct camcontrol_opts option_table[] = {
{"sleep", CAM_CMD_SLEEP, CAM_ARG_NONE, ""},
{"apm", CAM_CMD_APM, CAM_ARG_NONE, "l:"},
{"aam", CAM_CMD_AAM, CAM_ARG_NONE, "l:"},
{"fwdownload", CAM_CMD_DOWNLOAD_FW, CAM_ARG_NONE, "f:ys"},
{"fwdownload", CAM_CMD_DOWNLOAD_FW, CAM_ARG_NONE, "f:qsy"},
{"security", CAM_CMD_SECURITY, CAM_ARG_NONE, "d:e:fh:k:l:qs:T:U:y"},
{"hpa", CAM_CMD_HPA, CAM_ARG_NONE, "Pflp:qs:U:y"},
{"persist", CAM_CMD_PERSIST, CAM_ARG_NONE, "ai:I:k:K:o:ps:ST:U"},
{"attrib", CAM_CMD_ATTRIB, CAM_ARG_NONE, "a:ce:F:p:r:s:T:w:V:"},
{"opcodes", CAM_CMD_OPCODES, CAM_ARG_NONE, "No:s:T"},
#endif /* MINIMALISTIC */
{"help", CAM_CMD_USAGE, CAM_ARG_NONE, NULL},
{"-?", CAM_CMD_USAGE, CAM_ARG_NONE, NULL},
@ -264,7 +266,6 @@ static int scsistart(struct cam_device *device, int startstop, int loadeject,
int retry_count, int timeout);
static int scsiinquiry(struct cam_device *device, int retry_count, int timeout);
static int scsiserial(struct cam_device *device, int retry_count, int timeout);
static int camxferrate(struct cam_device *device);
#endif /* MINIMALISTIC */
static int parse_btl(char *tstr, path_id_t *bus, target_id_t *target,
lun_id_t *lun, cam_argmask *arglst);
@ -319,6 +320,14 @@ static int atasecurity(struct cam_device *device, int retry_count, int timeout,
int argc, char **argv, char *combinedopt);
static int atahpa(struct cam_device *device, int retry_count, int timeout,
int argc, char **argv, char *combinedopt);
static int scsiprintoneopcode(struct cam_device *device, int req_opcode,
int sa_set, int req_sa, uint8_t *buf,
uint32_t valid_len);
static int scsiprintopcodes(struct cam_device *device, int td_req, uint8_t *buf,
uint32_t valid_len);
static int scsiopcodes(struct cam_device *device, int argc, char **argv,
char *combinedopt, int retry_count, int timeout,
int verbose);
#endif /* MINIMALISTIC */
#ifndef min
@ -1018,7 +1027,7 @@ scsiserial(struct cam_device *device, int retry_count, int timeout)
return(0);
}
static int
int
camxferrate(struct cam_device *device)
{
struct ccb_pathinq cpi;
@ -2034,7 +2043,7 @@ atahpa_freeze_lock(struct cam_device *device, int retry_count,
}
static int
int
ata_do_identify(struct cam_device *device, int retry_count, int timeout,
union ccb *ccb, struct ata_params** ident_bufp)
{
@ -4940,26 +4949,173 @@ get_cgd_bailout:
return(retval);
}
/* return the type of disk (really the command type) */
static const char *
get_disk_type(struct cam_device *device)
/*
* Returns 1 if the device has the VPD page, 0 if it does not, and -1 on an
* error.
*/
int
dev_has_vpd_page(struct cam_device *dev, uint8_t page_id, int retry_count,
int timeout, int verbosemode)
{
struct ccb_getdev cgd;
union ccb *ccb = NULL;
struct scsi_vpd_supported_page_list sup_pages;
int i;
int retval = 0;
(void) memset(&cgd, 0x0, sizeof(cgd));
get_cgd(device, &cgd);
switch(cgd.protocol) {
ccb = cam_getccb(dev);
if (ccb == NULL) {
warn("Unable to allocate CCB");
retval = -1;
goto bailout;
}
/* cam_getccb cleans up the header, caller has to zero the payload */
bzero(&(&ccb->ccb_h)[1],
sizeof(struct ccb_scsiio) - sizeof(struct ccb_hdr));
bzero(&sup_pages, sizeof(sup_pages));
scsi_inquiry(&ccb->csio,
/*retries*/ retry_count,
/*cbfcnp*/ NULL,
/* tag_action */ MSG_SIMPLE_Q_TAG,
/* inq_buf */ (u_int8_t *)&sup_pages,
/* inq_len */ sizeof(sup_pages),
/* evpd */ 1,
/* page_code */ SVPD_SUPPORTED_PAGE_LIST,
/* sense_len */ SSD_FULL_SIZE,
/* timeout */ timeout ? timeout : 5000);
/* Disable freezing the device queue */
ccb->ccb_h.flags |= CAM_DEV_QFRZDIS;
if (retry_count != 0)
ccb->ccb_h.flags |= CAM_PASS_ERR_RECOVER;
if (cam_send_ccb(dev, ccb) < 0) {
cam_freeccb(ccb);
retval = -1;
goto bailout;
}
if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
if (verbosemode != 0)
cam_error_print(dev, ccb, CAM_ESF_ALL,
CAM_EPF_ALL, stderr);
retval = -1;
goto bailout;
}
for (i = 0; i < sup_pages.length; i++) {
if (sup_pages.list[i] == page_id) {
retval = 1;
goto bailout;
}
}
bailout:
if (ccb != NULL)
cam_freeccb(ccb);
return (retval);
}
/*
* devtype is filled in with the type of device.
* Returns 0 for success, non-zero for failure.
*/
int
get_device_type(struct cam_device *dev, int retry_count, int timeout,
int verbosemode, camcontrol_devtype *devtype)
{
struct ccb_getdev cgd;
int retval = 0;
retval = get_cgd(dev, &cgd);
if (retval != 0)
goto bailout;
switch (cgd.protocol) {
case PROTO_SCSI:
return "scsi";
break;
case PROTO_ATA:
case PROTO_ATAPI:
case PROTO_SATAPM:
return "ata";
*devtype = CC_DT_ATA;
goto bailout;
break; /*NOTREACHED*/
default:
return "unknown";
*devtype = CC_DT_UNKNOWN;
goto bailout;
break; /*NOTREACHED*/
}
/*
* Check for the ATA Information VPD page (0x89). If this is an
* ATA device behind a SCSI to ATA translation layer, this VPD page
* should be present.
*
* If that VPD page isn't present, or we get an error back from the
* INQUIRY command, we'll just treat it as a normal SCSI device.
*/
retval = dev_has_vpd_page(dev, SVPD_ATA_INFORMATION, retry_count,
timeout, verbosemode);
if (retval == 1)
*devtype = CC_DT_ATA_BEHIND_SCSI;
else
*devtype = CC_DT_SCSI;
retval = 0;
bailout:
return (retval);
}
void
build_ata_cmd(union ccb *ccb, uint32_t retry_count, uint32_t flags,
uint8_t tag_action, uint8_t protocol, uint8_t ata_flags, uint16_t features,
uint16_t sector_count, uint64_t lba, uint8_t command, uint8_t *data_ptr,
uint16_t dxfer_len, uint8_t sense_len, uint32_t timeout,
int is48bit, camcontrol_devtype devtype)
{
if (devtype == CC_DT_ATA) {
cam_fill_ataio(&ccb->ataio,
/*retries*/ retry_count,
/*cbfcnp*/ NULL,
/*flags*/ flags,
/*tag_action*/ tag_action,
/*data_ptr*/ data_ptr,
/*dxfer_len*/ dxfer_len,
/*timeout*/ timeout);
if (is48bit || lba > ATA_MAX_28BIT_LBA)
ata_48bit_cmd(&ccb->ataio, command, features, lba,
sector_count);
else
ata_28bit_cmd(&ccb->ataio, command, features, lba,
sector_count);
} else {
if (is48bit || lba > ATA_MAX_28BIT_LBA)
protocol |= AP_EXTEND;
scsi_ata_pass_16(&ccb->csio,
/*retries*/ retry_count,
/*cbfcnp*/ NULL,
/*flags*/ flags,
/*tag_action*/ tag_action,
/*protocol*/ protocol,
/*ata_flags*/ ata_flags,
/*features*/ features,
/*sector_count*/ sector_count,
/*lba*/ lba,
/*command*/ command,
/*control*/ 0,
/*data_ptr*/ data_ptr,
/*dxfer_len*/ dxfer_len,
/*sense_len*/ sense_len,
/*timeout*/ timeout);
}
}
static void
cpi_print(struct ccb_pathinq *cpi)
{
@ -8050,6 +8206,461 @@ ataaxm(struct cam_device *device, int argc, char **argv,
return (retval);
}
int
scsigetopcodes(struct cam_device *device, int opcode_set, int opcode,
int show_sa_errors, int sa_set, int service_action,
int timeout_desc, int retry_count, int timeout, int verbosemode,
uint32_t *fill_len, uint8_t **data_ptr)
{
union ccb *ccb = NULL;
uint8_t *buf = NULL;
uint32_t alloc_len = 0, num_opcodes;
uint32_t valid_len = 0;
uint32_t avail_len = 0;
struct scsi_report_supported_opcodes_all *all_hdr;
struct scsi_report_supported_opcodes_one *one;
int options = 0;
int retval = 0;
/*
* Make it clear that we haven't yet allocated or filled anything.
*/
*fill_len = 0;
*data_ptr = NULL;
ccb = cam_getccb(device);
if (ccb == NULL) {
warnx("couldn't allocate CCB");
retval = 1;
goto bailout;
}
/* cam_getccb cleans up the header, caller has to zero the payload */
bzero(&(&ccb->ccb_h)[1],
sizeof(struct ccb_scsiio) - sizeof(struct ccb_hdr));
if (opcode_set != 0) {
options |= RSO_OPTIONS_OC;
num_opcodes = 1;
alloc_len = sizeof(*one) + CAM_MAX_CDBLEN;
} else {
num_opcodes = 256;
alloc_len = sizeof(*all_hdr) + (num_opcodes *
sizeof(struct scsi_report_supported_opcodes_descr));
}
if (timeout_desc != 0) {
options |= RSO_RCTD;
alloc_len += num_opcodes *
sizeof(struct scsi_report_supported_opcodes_timeout);
}
if (sa_set != 0) {
options |= RSO_OPTIONS_OC_SA;
if (show_sa_errors != 0)
options &= ~RSO_OPTIONS_OC;
}
retry_alloc:
if (buf != NULL) {
free(buf);
buf = NULL;
}
buf = malloc(alloc_len);
if (buf == NULL) {
warn("Unable to allocate %u bytes", alloc_len);
retval = 1;
goto bailout;
}
bzero(buf, alloc_len);
scsi_report_supported_opcodes(&ccb->csio,
/*retries*/ retry_count,
/*cbfcnp*/ NULL,
/*tag_action*/ MSG_SIMPLE_Q_TAG,
/*options*/ options,
/*req_opcode*/ opcode,
/*req_service_action*/ service_action,
/*data_ptr*/ buf,
/*dxfer_len*/ alloc_len,
/*sense_len*/ SSD_FULL_SIZE,
/*timeout*/ timeout ? timeout : 10000);
ccb->ccb_h.flags |= CAM_DEV_QFRZDIS;
if (retry_count != 0)
ccb->ccb_h.flags |= CAM_PASS_ERR_RECOVER;
if (cam_send_ccb(device, ccb) < 0) {
perror("error sending REPORT SUPPORTED OPERATION CODES");
retval = 1;
goto bailout;
}
if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
if (verbosemode != 0)
cam_error_print(device, ccb, CAM_ESF_ALL,
CAM_EPF_ALL, stderr);
retval = 1;
goto bailout;
}
valid_len = ccb->csio.dxfer_len - ccb->csio.resid;
if (((options & RSO_OPTIONS_MASK) == RSO_OPTIONS_ALL)
&& (valid_len >= sizeof(*all_hdr))) {
all_hdr = (struct scsi_report_supported_opcodes_all *)buf;
avail_len = scsi_4btoul(all_hdr->length) + sizeof(*all_hdr);
} else if (((options & RSO_OPTIONS_MASK) != RSO_OPTIONS_ALL)
&& (valid_len >= sizeof(*one))) {
uint32_t cdb_length;
one = (struct scsi_report_supported_opcodes_one *)buf;
cdb_length = scsi_2btoul(one->cdb_length);
avail_len = sizeof(*one) + cdb_length;
if (one->support & RSO_ONE_CTDP) {
struct scsi_report_supported_opcodes_timeout *td;
td = (struct scsi_report_supported_opcodes_timeout *)
&buf[avail_len];
if (valid_len >= (avail_len + sizeof(td->length))) {
avail_len += scsi_2btoul(td->length) +
sizeof(td->length);
} else {
avail_len += sizeof(*td);
}
}
}
/*
* avail_len could be zero if we didn't get enough data back from
* thet target to determine
*/
if ((avail_len != 0)
&& (avail_len > valid_len)) {
alloc_len = avail_len;
goto retry_alloc;
}
*fill_len = valid_len;
*data_ptr = buf;
bailout:
if (retval != 0)
free(buf);
cam_freeccb(ccb);
return (retval);
}
static int
scsiprintoneopcode(struct cam_device *device, int req_opcode, int sa_set,
int req_sa, uint8_t *buf, uint32_t valid_len)
{
struct scsi_report_supported_opcodes_one *one;
struct scsi_report_supported_opcodes_timeout *td;
uint32_t cdb_len = 0, td_len = 0;
const char *op_desc = NULL;
unsigned int i;
int retval = 0;
one = (struct scsi_report_supported_opcodes_one *)buf;
/*
* If we don't have the full single opcode descriptor, no point in
* continuing.
*/
if (valid_len < __offsetof(struct scsi_report_supported_opcodes_one,
cdb_length)) {
warnx("Only %u bytes returned, not enough to verify support",
valid_len);
retval = 1;
goto bailout;
}
op_desc = scsi_op_desc(req_opcode, &device->inq_data);
printf("%s (0x%02x)", op_desc != NULL ? op_desc : "UNKNOWN",
req_opcode);
if (sa_set != 0)
printf(", SA 0x%x", req_sa);
printf(": ");
switch (one->support & RSO_ONE_SUP_MASK) {
case RSO_ONE_SUP_UNAVAIL:
printf("No command support information currently available\n");
break;
case RSO_ONE_SUP_NOT_SUP:
printf("Command not supported\n");
retval = 1;
goto bailout;
break; /*NOTREACHED*/
case RSO_ONE_SUP_AVAIL:
printf("Command is supported, complies with a SCSI standard\n");
break;
case RSO_ONE_SUP_VENDOR:
printf("Command is supported, vendor-specific "
"implementation\n");
break;
default:
printf("Unknown command support flags 0x%#x\n",
one->support & RSO_ONE_SUP_MASK);
break;
}
/*
* If we don't have the CDB length, it isn't exactly an error, the
* command probably isn't supported.
*/
if (valid_len < __offsetof(struct scsi_report_supported_opcodes_one,
cdb_usage))
goto bailout;
cdb_len = scsi_2btoul(one->cdb_length);
/*
* If our valid data doesn't include the full reported length,
* return. The caller should have detected this and adjusted his
* allocation length to get all of the available data.
*/
if (valid_len < sizeof(*one) + cdb_len) {
retval = 1;
goto bailout;
}
/*
* If all we have is the opcode, there is no point in printing out
* the usage bitmap.
*/
if (cdb_len <= 1) {
retval = 1;
goto bailout;
}
printf("CDB usage bitmap:");
for (i = 0; i < cdb_len; i++) {
printf(" %02x", one->cdb_usage[i]);
}
printf("\n");
/*
* If we don't have a timeout descriptor, we're done.
*/
if ((one->support & RSO_ONE_CTDP) == 0)
goto bailout;
/*
* If we don't have enough valid length to include the timeout
* descriptor length, we're done.
*/
if (valid_len < (sizeof(*one) + cdb_len + sizeof(td->length)))
goto bailout;
td = (struct scsi_report_supported_opcodes_timeout *)
&buf[sizeof(*one) + cdb_len];
td_len = scsi_2btoul(td->length);
td_len += sizeof(td->length);
/*
* If we don't have the full timeout descriptor, we're done.
*/
if (td_len < sizeof(*td))
goto bailout;
/*
* If we don't have enough valid length to contain the full timeout
* descriptor, we're done.
*/
if (valid_len < (sizeof(*one) + cdb_len + td_len))
goto bailout;
printf("Timeout information:\n");
printf("Command-specific: 0x%02x\n", td->cmd_specific);
printf("Nominal timeout: %u seconds\n",
scsi_4btoul(td->nominal_time));
printf("Recommended timeout: %u seconds\n",
scsi_4btoul(td->recommended_time));
bailout:
return (retval);
}
static int
scsiprintopcodes(struct cam_device *device, int td_req, uint8_t *buf,
uint32_t valid_len)
{
struct scsi_report_supported_opcodes_all *hdr;
struct scsi_report_supported_opcodes_descr *desc;
uint32_t avail_len = 0, used_len = 0;
uint8_t *cur_ptr;
int retval = 0;
if (valid_len < sizeof(*hdr)) {
warnx("%s: not enough returned data (%u bytes) opcode list",
__func__, valid_len);
retval = 1;
goto bailout;
}
hdr = (struct scsi_report_supported_opcodes_all *)buf;
avail_len = scsi_4btoul(hdr->length);
avail_len += sizeof(hdr->length);
/*
* Take the lesser of the amount of data the drive claims is
* available, and the amount of data the HBA says was returned.
*/
avail_len = MIN(avail_len, valid_len);
used_len = sizeof(hdr->length);
printf("%-6s %4s %8s ",
"Opcode", "SA", "CDB len" );
if (td_req != 0)
printf("%5s %6s %6s ", "CS", "Nom", "Rec");
printf(" Description\n");
while ((avail_len - used_len) > sizeof(*desc)) {
struct scsi_report_supported_opcodes_timeout *td;
uint32_t td_len;
const char *op_desc = NULL;
cur_ptr = &buf[used_len];
desc = (struct scsi_report_supported_opcodes_descr *)cur_ptr;
op_desc = scsi_op_desc(desc->opcode, &device->inq_data);
if (op_desc == NULL)
op_desc = "UNKNOWN";
printf("0x%02x %#4x %8u ", desc->opcode,
scsi_2btoul(desc->service_action),
scsi_2btoul(desc->cdb_length));
used_len += sizeof(*desc);
if ((desc->flags & RSO_CTDP) == 0) {
printf(" %s\n", op_desc);
continue;
}
/*
* If we don't have enough space to fit a timeout
* descriptor, then we're done.
*/
if (avail_len - used_len < sizeof(*td)) {
used_len = avail_len;
printf(" %s\n", op_desc);
continue;
}
cur_ptr = &buf[used_len];
td = (struct scsi_report_supported_opcodes_timeout *)cur_ptr;
td_len = scsi_2btoul(td->length);
td_len += sizeof(td->length);
used_len += td_len;
/*
* If the given timeout descriptor length is less than what
* we understand, skip it.
*/
if (td_len < sizeof(*td)) {
printf(" %s\n", op_desc);
continue;
}
printf(" 0x%02x %6u %6u %s\n", td->cmd_specific,
scsi_4btoul(td->nominal_time),
scsi_4btoul(td->recommended_time), op_desc);
}
bailout:
return (retval);
}
static int
scsiopcodes(struct cam_device *device, int argc, char **argv,
char *combinedopt, int retry_count, int timeout, int verbosemode)
{
int c;
uint32_t opcode = 0, service_action = 0;
int td_set = 0, opcode_set = 0, sa_set = 0;
int show_sa_errors = 1;
uint32_t valid_len = 0;
uint8_t *buf = NULL;
char *endptr;
int retval = 0;
while ((c = getopt(argc, argv, combinedopt)) != -1) {
switch (c) {
case 'N':
show_sa_errors = 0;
break;
case 'o':
opcode = strtoul(optarg, &endptr, 0);
if (*endptr != '\0') {
warnx("Invalid opcode \"%s\", must be a number",
optarg);
retval = 1;
goto bailout;
}
if (opcode > 0xff) {
warnx("Invalid opcode 0x%#x, must be between"
"0 and 0xff inclusive", opcode);
retval = 1;
goto bailout;
}
opcode_set = 1;
break;
case 's':
service_action = strtoul(optarg, &endptr, 0);
if (*endptr != '\0') {
warnx("Invalid service action \"%s\", must "
"be a number", optarg);
retval = 1;
goto bailout;
}
if (service_action > 0xffff) {
warnx("Invalid service action 0x%#x, must "
"be between 0 and 0xffff inclusive",
service_action);
retval = 1;
}
sa_set = 1;
break;
case 'T':
td_set = 1;
break;
default:
break;
}
}
if ((sa_set != 0)
&& (opcode_set == 0)) {
warnx("You must specify an opcode with -o if a service "
"action is given");
retval = 1;
goto bailout;
}
retval = scsigetopcodes(device, opcode_set, opcode, show_sa_errors,
sa_set, service_action, td_set, retry_count,
timeout, verbosemode, &valid_len, &buf);
if (retval != 0)
goto bailout;
if ((opcode_set != 0)
|| (sa_set != 0)) {
retval = scsiprintoneopcode(device, opcode, sa_set,
service_action, buf, valid_len);
} else {
retval = scsiprintopcodes(device, td_set, buf, valid_len);
}
bailout:
free(buf);
return (retval);
}
#endif /* MINIMALISTIC */
void
@ -8109,7 +8720,8 @@ usage(int printlong)
" camcontrol sleep [dev_id][generic args]\n"
" camcontrol apm [dev_id][generic args][-l level]\n"
" camcontrol aam [dev_id][generic args][-l level]\n"
" camcontrol fwdownload [dev_id][generic args] <-f fw_image> [-y][-s]\n"
" camcontrol fwdownload [dev_id][generic args] <-f fw_image> [-q]\n"
" [-s][-y]\n"
" camcontrol security [dev_id][generic args]\n"
" <-d pwd | -e pwd | -f | -h pwd | -k pwd>\n"
" [-l <high|maximum>] [-q] [-s pwd] [-T timeout]\n"
@ -8122,6 +8734,8 @@ usage(int printlong)
" camcontrol attrib [dev_id][generic args] <-r action|-w attr>\n"
" [-a attr_num][-c][-e elem][-F form1,form1]\n"
" [-p part][-s start][-T type][-V vol]\n"
" camcontrol opcodes [dev_id][generic args][-o opcode][-s SA]\n"
" [-N][-T]\n"
#endif /* MINIMALISTIC */
" camcontrol help\n");
if (!printlong)
@ -8162,6 +8776,7 @@ usage(int printlong)
"security report or send ATA security commands to the named device\n"
"persist send the SCSI PERSISTENT RESERVE IN or OUT commands\n"
"attrib send the SCSI READ or WRITE ATTRIBUTE commands\n"
"opcodes send the SCSI REPORT SUPPORTED OPCODES command\n"
"help this message\n"
"Device Identifiers:\n"
"bus:target specify the bus and target, lun defaults to 0\n"
@ -8266,9 +8881,10 @@ usage(int printlong)
"-t <arg> number of seconds before respective state.\n"
"fwdownload arguments:\n"
"-f fw_image path to firmware image file\n"
"-y don't ask any questions\n"
"-q don't print informational messages, only errors\n"
"-s run in simulation mode\n"
"-v print info for every firmware segment sent to device\n"
"-y don't ask any questions\n"
"security arguments:\n"
"-d pwd disable security using the given password for the selected\n"
" user\n"
@ -8326,6 +8942,11 @@ usage(int printlong)
"-s start_attr request attributes starting at the given number\n"
"-T elem_type specify the element type (used with -e)\n"
"-V logical_vol specify the logical volume ID\n"
"opcodes arguments:\n"
"-o opcode specify the individual opcode to list\n"
"-s service_action specify the service action for the opcode\n"
"-N do not return SCSI error for unsupported SA\n"
"-T request nominal and recommended timeout values\n"
);
#endif /* MINIMALISTIC */
}
@ -8658,8 +9279,7 @@ main(int argc, char **argv)
break;
case CAM_CMD_DOWNLOAD_FW:
error = fwdownload(cam_dev, argc, argv, combinedopt,
arglist & CAM_ARG_VERBOSE, retry_count, timeout,
get_disk_type(cam_dev));
arglist & CAM_ARG_VERBOSE, retry_count, timeout);
break;
case CAM_CMD_SANITIZE:
error = scsisanitize(cam_dev, argc, argv,
@ -8675,6 +9295,10 @@ main(int argc, char **argv)
retry_count, timeout, arglist & CAM_ARG_VERBOSE,
arglist & CAM_ARG_ERR_RECOVER);
break;
case CAM_CMD_OPCODES:
error = scsiopcodes(cam_dev, argc, argv, combinedopt,
retry_count, timeout, arglist & CAM_ARG_VERBOSE);
break;
#endif /* MINIMALISTIC */
case CAM_CMD_USAGE:
usage(1);

View File

@ -37,6 +37,14 @@ typedef enum {
CC_OR_FOUND
} camcontrol_optret;
typedef enum {
CC_DT_NONE,
CC_DT_SCSI,
CC_DT_ATA_BEHIND_SCSI,
CC_DT_ATA,
CC_DT_UNKNOWN
} camcontrol_devtype;
/*
* get_hook: Structure for evaluating args in a callback.
*/
@ -49,9 +57,22 @@ struct get_hook
extern int verbose;
int ata_do_identify(struct cam_device *device, int retry_count, int timeout,
union ccb *ccb, struct ata_params **ident_bufp);
int dev_has_vpd_page(struct cam_device *dev, uint8_t page_id, int retry_count,
int timeout, int verbosemode);
int get_device_type(struct cam_device *dev, int retry_count, int timeout,
int verbosemode, camcontrol_devtype *devtype);
void build_ata_cmd(union ccb *ccb, uint32_t retry_count, uint32_t flags,
uint8_t tag_action, uint8_t protocol, uint8_t ata_flags,
uint16_t features, uint16_t sector_count, uint64_t lba,
uint8_t command, uint8_t *data_ptr, uint16_t dxfer_len,
uint8_t sense_len, uint32_t timeout, int is48bit,
camcontrol_devtype devtype);
int camxferrate(struct cam_device *device);
int fwdownload(struct cam_device *device, int argc, char **argv,
char *combinedopt, int printerrors, int retry_count, int timeout,
const char */*type*/);
char *combinedopt, int printerrors, int retry_count,
int timeout);
void mode_sense(struct cam_device *device, int mode_page, int page_control,
int dbd, int retry_count, int timeout, u_int8_t *data,
int datalen);
@ -63,6 +84,10 @@ void mode_list(struct cam_device *device, int page_control, int dbd,
int retry_count, int timeout);
int scsidoinquiry(struct cam_device *device, int argc, char **argv,
char *combinedopt, int retry_count, int timeout);
int scsigetopcodes(struct cam_device *device, int opcode_set, int opcode,
int show_sa_errors, int sa_set, int service_action,
int timeout_desc, int retry_count, int timeout,
int verbosemode, uint32_t *fill_len, uint8_t **data_ptr);
int scsipersist(struct cam_device *device, int argc, char **argv,
char *combinedopt, int retry_count, int timeout, int verbose,
int err_recover);

File diff suppressed because it is too large Load Diff

View File

@ -124,6 +124,7 @@ progress_draw(progress_t *prog)
* stars should contain at least
* sizeof(buf) - BAROVERHEAD entries
*/
#define MIN_BAR_LEN 10
static const char stars[] =
"*****************************************************************************"
"*****************************************************************************"
@ -134,13 +135,31 @@ progress_draw(progress_t *prog)
uint64_t bytespersec;
uint64_t abbrevsize;
int64_t secsleft;
size_t barlength;
ssize_t barlength;
size_t starc;
char hours[12];
char buf[256];
int len;
int prefix_len;
barlength = MIN(sizeof(buf) - 1, (unsigned)prog->ttywidth) - BAROVERHEAD - strlen(prog->prefix);
prefix_len = strlen(prog->prefix);
barlength = MIN(sizeof(buf) - 1, (unsigned)prog->ttywidth) -
BAROVERHEAD - prefix_len;
if (barlength < MIN_BAR_LEN) {
int tmp_prefix_len;
/*
* In this case the TTY width is too small or the prefix is
* too large for a progress bar. We'll try decreasing the
* prefix length.
*/
barlength = MIN_BAR_LEN;
tmp_prefix_len = MIN(sizeof(buf) - 1,(unsigned)prog->ttywidth) -
BAROVERHEAD - MIN_BAR_LEN;
if (tmp_prefix_len > 0)
prefix_len = tmp_prefix_len;
else
prefix_len = 0;
}
starc = (barlength * prog->percent) / 100;
abbrevsize = prog->done;
for (bytesabbrev = 0; abbrevsize >= 100000 && bytesabbrev < NSUFFIXES; bytesabbrev++) {
@ -171,8 +190,8 @@ progress_draw(progress_t *prog)
}
secs = secsleft % SECSPERHOUR;
len = snprintf(buf, sizeof(buf),
"\r%s %3lld%% |%.*s%*s| %5lld %-3s %3lld.%02d %.2sB/s %s%02d:%02d ETA",
(prog->prefix) ? prog->prefix : "",
"\r%.*s %3lld%% |%.*s%*s| %5lld %-3s %3lld.%02d %.2sB/s %s%02d:%02d ETA",
prefix_len, (prog->prefix) ? prog->prefix : "",
(long long)prog->percent,
(int)starc, stars, (int)(barlength - starc), "",
(long long)abbrevsize,

View File

@ -8418,6 +8418,38 @@ scsi_security_protocol_out(struct ccb_scsiio *csio, uint32_t retries,
timeout);
}
void
scsi_report_supported_opcodes(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int options, int req_opcode,
int req_service_action, uint8_t *data_ptr,
uint32_t dxfer_len, int sense_len, int timeout)
{
struct scsi_report_supported_opcodes *scsi_cmd;
scsi_cmd = (struct scsi_report_supported_opcodes *)
&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MAINTENANCE_IN;
scsi_cmd->service_action = REPORT_SUPPORTED_OPERATION_CODES;
scsi_cmd->options = options;
scsi_cmd->requested_opcode = req_opcode;
scsi_ulto2b(req_service_action, scsi_cmd->requested_service_action);
scsi_ulto4b(dxfer_len, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
/*flags*/CAM_DIR_IN,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
/*
* Try make as good a match as possible with
* available sub drivers

View File

@ -1457,6 +1457,11 @@ struct scsi_report_supported_opcodes_one
uint8_t reserved;
uint8_t support;
#define RSO_ONE_CTDP 0x80
#define RSO_ONE_SUP_MASK 0x07
#define RSO_ONE_SUP_UNAVAIL 0x00
#define RSO_ONE_SUP_NOT_SUP 0x01
#define RSO_ONE_SUP_AVAIL 0x03
#define RSO_ONE_SUP_VENDOR 0x05
uint8_t cdb_length[2];
uint8_t cdb_usage[];
};
@ -3967,6 +3972,14 @@ void scsi_persistent_reserve_out(struct ccb_scsiio *csio, uint32_t retries,
uint32_t dxfer_len, int sense_len,
int timeout);
void scsi_report_supported_opcodes(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *,
union ccb *),
uint8_t tag_action, int options,
int req_opcode, int req_service_action,
uint8_t *data_ptr, uint32_t dxfer_len,
int sense_len, int timeout);
int scsi_inquiry_match(caddr_t inqbuffer, caddr_t table_entry);
int scsi_static_inquiry_match(caddr_t inqbuffer,
caddr_t table_entry);