#include <sys/param.h>
#include <sys/types.h>
#include <sys/stdint.h>
#ifdef _KERNEL
#include "opt_scsi.h"
#include <sys/systm.h>
#include <sys/libkern.h>
#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/malloc.h>
#include <sys/mutex.h>
#include <sys/sysctl.h>
#include <sys/ctype.h>
#else
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#endif
#include <cam/cam.h>
#include <cam/cam_ccb.h>
#include <cam/cam_queue.h>
#include <cam/cam_xpt.h>
#include <cam/scsi/scsi_all.h>
#include <sys/ata.h>
#include <sys/sbuf.h>
#ifdef _KERNEL
#include <cam/cam_periph.h>
#include <cam/cam_xpt_sim.h>
#include <cam/cam_xpt_periph.h>
#include <cam/cam_xpt_internal.h>
#else
#include <camlib.h>
#include <stddef.h>
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
#define ERESTART -1
#define EJUSTRETURN -2
#endif
#ifndef SCSI_DELAY
#define SCSI_DELAY 2000
#endif
#ifndef SCSI_MIN_DELAY
#define SCSI_MIN_DELAY 100
#endif
#if (SCSI_DELAY < SCSI_MIN_DELAY && SCSI_DELAY != 0)
#error "SCSI_DELAY is in milliseconds, not seconds! Please use a larger value"
#endif
int scsi_delay;
static int ascentrycomp(const void *key, const void *member);
static int senseentrycomp(const void *key, const void *member);
static void fetchtableentries(int sense_key, int asc, int ascq,
struct scsi_inquiry_data *,
const struct sense_key_table_entry **,
const struct asc_table_entry **);
#ifdef _KERNEL
static void init_scsi_delay(void);
static int sysctl_scsi_delay(SYSCTL_HANDLER_ARGS);
static int set_scsi_delay(int delay);
#endif
#if !defined(SCSI_NO_OP_STRINGS)
#define D (1 << T_DIRECT)
#define T (1 << T_SEQUENTIAL)
#define L (1 << T_PRINTER)
#define P (1 << T_PROCESSOR)
#define W (1 << T_WORM)
#define R (1 << T_CDROM)
#define O (1 << T_OPTICAL)
#define M (1 << T_CHANGER)
#define A (1 << T_STORARRAY)
#define E (1 << T_ENCLOSURE)
#define B (1 << T_RBC)
#define K (1 << T_OCRW)
#define V (1 << T_ADC)
#define F (1 << T_OSD)
#define S (1 << T_SCANNER)
#define C (1 << T_COMM)
#define ALL (D | T | L | P | W | R | O | M | A | E | B | K | V | F | S | C)
static struct op_table_entry plextor_cd_ops[] = {
{ 0xD8, R, "CD-DA READ" }
};
static struct scsi_op_quirk_entry scsi_op_quirk_table[] = {
{
{T_CDROM, SIP_MEDIA_REMOVABLE, "PLEXTOR", "CD-ROM PX*", "*"},
nitems(plextor_cd_ops),
plextor_cd_ops
}
};
static struct op_table_entry scsi_op_codes[] = {
{ 0x00, ALL, "TEST UNIT READY" },
{ 0x01, T, "REWIND" },
{ 0x01, D | W | R | O | M, "REZERO UNIT" },
{ 0x03, ALL, "REQUEST SENSE" },
{ 0x04, D | R | O, "FORMAT UNIT" },
{ 0x04, T, "FORMAT MEDIUM" },
{ 0x04, L, "FORMAT" },
{ 0x05, T, "READ BLOCK LIMITS" },
{ 0x07, D | W | O, "REASSIGN BLOCKS" },
{ 0x07, M, "INITIALIZE ELEMENT STATUS" },
{ 0x08, D | T | W | O, "READ(6)" },
{ 0x08, P, "RECEIVE" },
{ 0x08, C, "GET MESSAGE(6)" },
{ 0x0A, D | T | W | O, "WRITE(6)" },
{ 0x0A, P, "SEND(6)" },
{ 0x0A, C, "SEND MESSAGE(6)" },
{ 0x0A, L, "PRINT" },
{ 0x0B, D | W | R | O, "SEEK(6)" },
{ 0x0B, T, "SET CAPACITY" },
{ 0x0B, L, "SLEW AND PRINT" },
{ 0x0F, T, "READ REVERSE(6)" },
{ 0x10, T, "WRITE FILEMARKS(6)" },
{ 0x10, L, "SYNCHRONIZE BUFFER" },
{ 0x11, T, "SPACE(6)" },
{ 0x12, ALL, "INQUIRY" },
{ 0x13, T, "VERIFY(6)" },
{ 0x14, T | L, "RECOVER BUFFERED DATA" },
{ 0x15, ALL & ~(P | R | B | F), "MODE SELECT(6)" },
{ 0x16, ALL & ~(R | B | V | F | C), "RESERVE(6)" },
{ 0x16, M, "RESERVE ELEMENT(6)" },
{ 0x17, ALL & ~(R | B | V | F | C), "RELEASE(6)" },
{ 0x17, M, "RELEASE ELEMENT(6)" },
{ 0x18, D | T | L | P | W | R | O | K | S, "COPY" },
{ 0x19, T, "ERASE(6)" },
{ 0x1A, ALL & ~(P | R | B | F), "MODE SENSE(6)" },
{ 0x1B, D | W | R | O | A | B | K | F, "START STOP UNIT" },
{ 0x1B, T | V, "LOAD UNLOAD" },
{ 0x1B, S, "SCAN" },
{ 0x1B, L, "STOP PRINT" },
{ 0x1B, M, "OPEN/CLOSE IMPORT/EXPORT ELEMENT" },
{ 0x1C, ALL & ~(R | B), "RECEIVE DIAGNOSTIC RESULTS" },
{ 0x1D, ALL & ~(R | B), "SEND DIAGNOSTIC" },
{ 0x1E, D | T | W | R | O | M | K | F, "PREVENT ALLOW MEDIUM REMOVAL" },
{ 0x23, R, "READ FORMAT CAPACITIES" },
{ 0x24, S, "SET WINDOW" },
{ 0x25, D | W | O | B, "READ CAPACITY(10)" },
{ 0x25, R, "READ CAPACITY" },
{ 0x25, K, "READ CARD CAPACITY" },
{ 0x25, S, "GET WINDOW" },
{ 0x28, D | W | R | O | B | K | S, "READ(10)" },
{ 0x28, C, "GET MESSAGE(10)" },
{ 0x29, O, "READ GENERATION" },
{ 0x2A, D | W | R | O | B | K, "WRITE(10)" },
{ 0x2A, S, "SEND(10)" },
{ 0x2A, C, "SEND MESSAGE(10)" },
{ 0x2B, D | W | R | O | K, "SEEK(10)" },
{ 0x2B, T, "LOCATE(10)" },
{ 0x2B, M, "POSITION TO ELEMENT" },
{ 0x2C, R | O, "ERASE(10)" },
{ 0x2D, O, "READ UPDATED BLOCK" },
{ 0x2E, D | W | R | O | B | K, "WRITE AND VERIFY(10)" },
{ 0x2F, D | W | R | O, "VERIFY(10)" },
{ 0x30, D | W | R | O, "SEARCH DATA HIGH(10)" },
{ 0x31, D | W | R | O, "SEARCH DATA EQUAL(10)" },
{ 0x31, S, "OBJECT POSITION" },
{ 0x32, D | W | R | O, "SEARCH DATA LOW(10)" },
{ 0x33, D | W | R | O, "SET LIMITS(10)" },
{ 0x34, D | W | O | K, "PRE-FETCH(10)" },
{ 0x34, T, "READ POSITION" },
{ 0x34, S, "GET DATA BUFFER STATUS" },
{ 0x35, D | W | R | O | B | K, "SYNCHRONIZE CACHE(10)" },
{ 0x36, D | W | O | K, "LOCK UNLOCK CACHE(10)" },
{ 0x37, D | O, "READ DEFECT DATA(10)" },
{ 0x37, M, "INITIALIZE ELEMENT STATUS WITH RANGE" },
{ 0x38, W | O | K, "MEDIUM SCAN" },
{ 0x39, D | T | L | P | W | R | O | K | S, "COMPARE" },
{ 0x3A, D | T | L | P | W | R | O | K | S, "COPY AND VERIFY" },
{ 0x3B, ALL, "WRITE BUFFER" },
{ 0x3C, ALL & ~(B), "READ BUFFER" },
{ 0x3D, O, "UPDATE BLOCK" },
{ 0x3E, D | W | O, "READ LONG(10)" },
{ 0x3F, D | W | O, "WRITE LONG(10)" },
{ 0x40, D | T | L | P | W | R | O | M | S | C, "CHANGE DEFINITION" },
{ 0x41, D, "WRITE SAME(10)" },
{ 0x42, D, "UNMAP" },
{ 0x42, R, "READ SUB-CHANNEL" },
{ 0x43, R, "READ TOC/PMA/ATIP" },
{ 0x44, T | V, "REPORT DENSITY SUPPORT" },
{ 0x45, R, "PLAY AUDIO(10)" },
{ 0x46, R, "GET CONFIGURATION" },
{ 0x47, R, "PLAY AUDIO MSF" },
{ 0x48, D, "SANITIZE" },
{ 0x4A, R, "GET EVENT STATUS NOTIFICATION" },
{ 0x4B, R, "PAUSE/RESUME" },
{ 0x4C, ALL & ~(R | B), "LOG SELECT" },
{ 0x4D, ALL & ~(R | B), "LOG SENSE" },
{ 0x4E, R, "STOP PLAY/SCAN" },
{ 0x50, D, "XDWRITE(10)" },
{ 0x51, D, "XPWRITE(10)" },
{ 0x51, R, "READ DISC INFORMATION" },
{ 0x52, D, "XDREAD(10)" },
{ 0x52, R, "READ TRACK INFORMATION" },
{ 0x53, D, "XDWRITEREAD(10)" },
{ 0x53, R, "RESERVE TRACK" },
{ 0x54, R, "SEND OPC INFORMATION" },
{ 0x55, ALL & ~(P), "MODE SELECT(10)" },
{ 0x56, ALL & ~(R | B | K | V | F | C), "RESERVE(10)" },
{ 0x56, M, "RESERVE ELEMENT(10)" },
{ 0x57, ALL & ~(R | B | K | V | F | C), "RELEASE(10)" },
{ 0x57, M, "RELEASE ELEMENT(10)" },
{ 0x58, R, "REPAIR TRACK" },
{ 0x5A, ALL & ~(P), "MODE SENSE(10)" },
{ 0x5B, R, "CLOSE TRACK/SESSION" },
{ 0x5C, R, "READ BUFFER CAPACITY" },
{ 0x5D, R, "SEND CUE SHEET" },
{ 0x5E, ALL & ~(R | B | K | V | C), "PERSISTENT RESERVE IN" },
{ 0x5F, ALL & ~(R | B | K | V | C), "PERSISTENT RESERVE OUT" },
{ 0x7E, D | T | R | M | A | E | B | V, "extended CDB" },
{ 0x7F, D | F, "variable length CDB (more than 16 bytes)" },
{ 0x80, D, "XDWRITE EXTENDED(16)" },
{ 0x80, T, "WRITE FILEMARKS(16)" },
{ 0x81, D, "REBUILD(16)" },
{ 0x81, T, "READ REVERSE(16)" },
{ 0x82, D, "REGENERATE(16)" },
{ 0x82, T, "ALLOW OVERWRITE" },
{ 0x83, D | T | L | P | W | O | K | V, "EXTENDED COPY" },
{ 0x84, D | T | L | P | W | O | K | V, "RECEIVE COPY RESULTS" },
{ 0x85, D | R | B, "ATA COMMAND PASS THROUGH(16)" },
{ 0x86, ALL & ~(L | R | F), "ACCESS CONTROL IN" },
{ 0x87, ALL & ~(L | R | F), "ACCESS CONTROL OUT" },
{ 0x88, D | T | W | O | B, "READ(16)" },
{ 0x89, D, "COMPARE AND WRITE" },
{ 0x8A, D | T | W | O | B, "WRITE(16)" },
{ 0x8B, D, "ORWRITE" },
{ 0x8C, D | T | W | O | M | B | V, "READ ATTRIBUTE" },
{ 0x8D, D | T | W | O | M | B | V, "WRITE ATTRIBUTE" },
{ 0x8E, D | W | O | B, "WRITE AND VERIFY(16)" },
{ 0x8F, D | T | W | O | B, "VERIFY(16)" },
{ 0x90, D | W | O | B, "PRE-FETCH(16)" },
{ 0x91, D | W | O | B, "SYNCHRONIZE CACHE(16)" },
{ 0x91, T, "SPACE(16)" },
{ 0x92, D | W | O, "LOCK UNLOCK CACHE(16)" },
{ 0x92, T, "LOCATE(16)" },
{ 0x93, D, "WRITE SAME(16)" },
{ 0x93, T, "ERASE(16)" },
{ 0x94, ALL, "ZBC OUT" },
{ 0x95, ALL, "ZBC IN" },
{ 0x9A, D, "WRITE STREAM(16)" },
{ 0x9B, ALL & ~(B) , "READ BUFFER(16)" },
{ 0x9C, D, "WRITE ATOMIC(16)" },
{ 0x9D, ALL, "SERVICE ACTION BIDIRECTIONAL" },
{ 0x9E, ALL, "SERVICE ACTION IN(16)" },
{ 0x9F, ALL, "SERVICE ACTION OUT(16)" },
{ 0xA0, ALL & ~(R | B), "REPORT LUNS" },
{ 0xA1, R, "BLANK" },
{ 0xA1, D | B, "ATA COMMAND PASS THROUGH(12)" },
{ 0xA2, D | T | R | V, "SECURITY PROTOCOL IN" },
{ 0xA3, ALL & ~(P | R | F), "MAINTENANCE (IN)" },
{ 0xA3, R, "SEND KEY" },
{ 0xA4, ALL & ~(P | R | F), "MAINTENANCE (OUT)" },
{ 0xA4, R, "REPORT KEY" },
{ 0xA5, T | W | O | M, "MOVE MEDIUM" },
{ 0xA5, R, "PLAY AUDIO(12)" },
{ 0xA6, M, "EXCHANGE MEDIUM" },
{ 0xA6, R, "LOAD/UNLOAD C/DVD" },
{ 0xA7, D | T | W | O, "MOVE MEDIUM ATTACHED" },
{ 0xA7, R, "SET READ AHEAD" },
{ 0xA8, D | W | R | O, "READ(12)" },
{ 0xA8, C, "GET MESSAGE(12)" },
{ 0xA9, V, "SERVICE ACTION OUT(12)" },
{ 0xAA, D | W | R | O, "WRITE(12)" },
{ 0xAA, C, "SEND MESSAGE(12)" },
{ 0xAB, R | V, "SERVICE ACTION IN(12)" },
{ 0xAC, O, "ERASE(12)" },
{ 0xAC, R, "GET PERFORMANCE" },
{ 0xAD, R, "READ DVD STRUCTURE" },
{ 0xAE, D | W | O, "WRITE AND VERIFY(12)" },
{ 0xAF, D | W | R | O, "VERIFY(12)" },
{ 0xB0, W | R | O, "SEARCH DATA HIGH(12)" },
{ 0xB1, W | R | O, "SEARCH DATA EQUAL(12)" },
{ 0xB2, W | R | O, "SEARCH DATA LOW(12)" },
{ 0xB3, D | W | R | O, "SET LIMITS(12)" },
{ 0xB4, D | T | W | R | O, "READ ELEMENT STATUS ATTACHED" },
{ 0xB5, D | T | R | V, "SECURITY PROTOCOL OUT" },
{ 0xB5, M, "REQUEST VOLUME ELEMENT ADDRESS" },
{ 0xB6, M, "SEND VOLUME TAG" },
{ 0xB6, R, "SET STREAMING" },
{ 0xB7, D | O, "READ DEFECT DATA(12)" },
{ 0xB8, T | W | R | O | M, "READ ELEMENT STATUS" },
{ 0xB9, R, "READ CD MSF" },
{ 0xBA, D | W | O | M | A | E, "REDUNDANCY GROUP (IN)" },
{ 0xBA, R, "SCAN" },
{ 0xBB, D | W | O | M | A | E, "REDUNDANCY GROUP (OUT)" },
{ 0xBB, R, "SET CD SPEED" },
{ 0xBC, D | W | O | M | A | E, "SPARE (IN)" },
{ 0xBD, D | W | O | M | A | E, "SPARE (OUT)" },
{ 0xBD, R, "MECHANISM STATUS" },
{ 0xBE, D | W | O | M | A | E, "VOLUME SET (IN)" },
{ 0xBE, R, "READ CD" },
{ 0xBF, D | W | O | M | A | E, "VOLUME SET (OUT)" },
{ 0xBF, R, "SEND DVD STRUCTURE" }
};
const char *
scsi_op_desc(uint16_t opcode, struct scsi_inquiry_data *inq_data)
{
caddr_t match;
int i, j;
uint32_t opmask;
uint16_t pd_type;
int num_ops[2];
struct op_table_entry *table[2];
int num_tables;
if (inq_data == NULL) {
pd_type = T_DIRECT;
match = NULL;
} else {
pd_type = SID_TYPE(inq_data);
match = cam_quirkmatch((caddr_t)inq_data,
(caddr_t)scsi_op_quirk_table,
nitems(scsi_op_quirk_table),
sizeof(*scsi_op_quirk_table),
scsi_inquiry_match);
}
if (match != NULL) {
table[0] = ((struct scsi_op_quirk_entry *)match)->op_table;
num_ops[0] = ((struct scsi_op_quirk_entry *)match)->num_ops;
table[1] = scsi_op_codes;
num_ops[1] = nitems(scsi_op_codes);
num_tables = 2;
} else {
if ((opcode > 0xBF) || ((opcode > 0x5F) && (opcode < 0x80)))
return("Vendor Specific Command");
table[0] = scsi_op_codes;
num_ops[0] = nitems(scsi_op_codes);
num_tables = 1;
}
if (pd_type == T_RBC)
pd_type = T_DIRECT;
if (pd_type == T_ZBC_HM)
pd_type = T_DIRECT;
if (pd_type == T_NODEVICE)
pd_type = T_DIRECT;
opmask = 1 << pd_type;
for (j = 0; j < num_tables; j++) {
for (i = 0;i < num_ops[j] && table[j][i].opcode <= opcode; i++){
if ((table[j][i].opcode == opcode)
&& ((table[j][i].opmask & opmask) != 0))
return(table[j][i].desc);
}
}
return("Vendor Specific Command");
}
#else
const char *
scsi_op_desc(uint16_t opcode, struct scsi_inquiry_data *inq_data)
{
return("");
}
#endif
#if !defined(SCSI_NO_SENSE_STRINGS)
#define SST(asc, ascq, action, desc) \
asc, ascq, action, desc
#else
const char empty_string[] = "";
#define SST(asc, ascq, action, desc) \
asc, ascq, action, empty_string
#endif
const struct sense_key_table_entry sense_key_table[] =
{
{ SSD_KEY_NO_SENSE, SS_NOP, "NO SENSE" },
{ SSD_KEY_RECOVERED_ERROR, SS_NOP|SSQ_PRINT_SENSE, "RECOVERED ERROR" },
{ SSD_KEY_NOT_READY, SS_RDEF, "NOT READY" },
{ SSD_KEY_MEDIUM_ERROR, SS_RDEF, "MEDIUM ERROR" },
{ SSD_KEY_HARDWARE_ERROR, SS_RDEF, "HARDWARE FAILURE" },
{ SSD_KEY_ILLEGAL_REQUEST, SS_FATAL|EINVAL, "ILLEGAL REQUEST" },
{ SSD_KEY_UNIT_ATTENTION, SS_FATAL|ENXIO, "UNIT ATTENTION" },
{ SSD_KEY_DATA_PROTECT, SS_FATAL|EACCES, "DATA PROTECT" },
{ SSD_KEY_BLANK_CHECK, SS_FATAL|ENOSPC, "BLANK CHECK" },
{ SSD_KEY_Vendor_Specific, SS_FATAL|EIO, "Vendor Specific" },
{ SSD_KEY_COPY_ABORTED, SS_FATAL|EIO, "COPY ABORTED" },
{ SSD_KEY_ABORTED_COMMAND, SS_RDEF, "ABORTED COMMAND" },
{ SSD_KEY_EQUAL, SS_NOP, "EQUAL" },
{ SSD_KEY_VOLUME_OVERFLOW, SS_FATAL|EIO, "VOLUME OVERFLOW" },
{ SSD_KEY_MISCOMPARE, SS_NOP, "MISCOMPARE" },
{ SSD_KEY_COMPLETED, SS_NOP, "COMPLETED" }
};
static struct asc_table_entry quantum_fireball_entries[] = {
{ SST(0x04, 0x0b, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
"Logical unit not ready, initializing cmd. required") }
};
static struct asc_table_entry sony_mo_entries[] = {
{ SST(0x04, 0x00, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
"Logical unit not ready, cause not reportable") }
};
static struct asc_table_entry hgst_entries[] = {
{ SST(0x04, 0xF0, SS_RDEF,
"Vendor Unique - Logical Unit Not Ready") },
{ SST(0x0A, 0x01, SS_RDEF,
"Unrecovered Super Certification Log Write Error") },
{ SST(0x0A, 0x02, SS_RDEF,
"Unrecovered Super Certification Log Read Error") },
{ SST(0x15, 0x03, SS_RDEF,
"Unrecovered Sector Error") },
{ SST(0x3E, 0x04, SS_RDEF,
"Unrecovered Self-Test Hard-Cache Test Fail") },
{ SST(0x3E, 0x05, SS_RDEF,
"Unrecovered Self-Test OTF-Cache Fail") },
{ SST(0x40, 0x00, SS_RDEF,
"Unrecovered SAT No Buffer Overflow Error") },
{ SST(0x40, 0x01, SS_RDEF,
"Unrecovered SAT Buffer Overflow Error") },
{ SST(0x40, 0x02, SS_RDEF,
"Unrecovered SAT No Buffer Overflow With ECS Fault") },
{ SST(0x40, 0x03, SS_RDEF,
"Unrecovered SAT Buffer Overflow With ECS Fault") },
{ SST(0x40, 0x81, SS_RDEF,
"DRAM Failure") },
{ SST(0x44, 0x0B, SS_RDEF,
"Vendor Unique - Internal Target Failure") },
{ SST(0x44, 0xF2, SS_RDEF,
"Vendor Unique - Internal Target Failure") },
{ SST(0x44, 0xF6, SS_RDEF,
"Vendor Unique - Internal Target Failure") },
{ SST(0x44, 0xF9, SS_RDEF,
"Vendor Unique - Internal Target Failure") },
{ SST(0x44, 0xFA, SS_RDEF,
"Vendor Unique - Internal Target Failure") },
{ SST(0x5D, 0x22, SS_RDEF,
"Extreme Over-Temperature Warning") },
{ SST(0x5D, 0x50, SS_RDEF,
"Load/Unload cycle Count Warning") },
{ SST(0x81, 0x00, SS_RDEF,
"Vendor Unique - Internal Logic Error") },
{ SST(0x85, 0x00, SS_RDEF,
"Vendor Unique - Internal Key Seed Error") },
};
static struct asc_table_entry seagate_entries[] = {
{ SST(0x04, 0xF0, SS_RDEF,
"Logical Unit Not Ready, super certify in Progress") },
{ SST(0x08, 0x86, SS_RDEF,
"Write Fault Data Corruption") },
{ SST(0x09, 0x0D, SS_RDEF,
"Tracking Failure") },
{ SST(0x09, 0x0E, SS_RDEF,
"ETF Failure") },
{ SST(0x0B, 0x5D, SS_RDEF,
"Pre-SMART Warning") },
{ SST(0x0B, 0x85, SS_RDEF,
"5V Voltage Warning") },
{ SST(0x0B, 0x8C, SS_RDEF,
"12V Voltage Warning") },
{ SST(0x0C, 0xFF, SS_RDEF,
"Write Error - Too many error recovery revs") },
{ SST(0x11, 0xFF, SS_RDEF,
"Unrecovered Read Error - Too many error recovery revs") },
{ SST(0x19, 0x0E, SS_RDEF,
"Fewer than 1/2 defect list copies") },
{ SST(0x20, 0xF3, SS_RDEF,
"Illegal CDB linked to skip mask cmd") },
{ SST(0x24, 0xF0, SS_RDEF,
"Illegal byte in CDB, LBA not matching") },
{ SST(0x24, 0xF1, SS_RDEF,
"Illegal byte in CDB, LEN not matching") },
{ SST(0x24, 0xF2, SS_RDEF,
"Mask not matching transfer length") },
{ SST(0x24, 0xF3, SS_RDEF,
"Drive formatted without plist") },
{ SST(0x26, 0x95, SS_RDEF,
"Invalid Field Parameter - CAP File") },
{ SST(0x26, 0x96, SS_RDEF,
"Invalid Field Parameter - RAP File") },
{ SST(0x26, 0x97, SS_RDEF,
"Invalid Field Parameter - TMS Firmware Tag") },
{ SST(0x26, 0x98, SS_RDEF,
"Invalid Field Parameter - Check Sum") },
{ SST(0x26, 0x99, SS_RDEF,
"Invalid Field Parameter - Firmware Tag") },
{ SST(0x29, 0x08, SS_RDEF,
"Write Log Dump data") },
{ SST(0x29, 0x09, SS_RDEF,
"Write Log Dump data") },
{ SST(0x29, 0x0A, SS_RDEF,
"Reserved disk space") },
{ SST(0x29, 0x0B, SS_RDEF,
"SDBP") },
{ SST(0x29, 0x0C, SS_RDEF,
"SDBP") },
{ SST(0x31, 0x91, SS_RDEF,
"Format Corrupted World Wide Name (WWN) is Invalid") },
{ SST(0x32, 0x03, SS_RDEF,
"Defect List - Length exceeds Command Allocated Length") },
{ SST(0x33, 0x00, SS_RDEF,
"Flash not ready for access") },
{ SST(0x3F, 0x70, SS_RDEF,
"Invalid RAP block") },
{ SST(0x3F, 0x71, SS_RDEF,
"RAP/ETF mismatch") },
{ SST(0x3F, 0x90, SS_RDEF,
"Invalid CAP block") },
{ SST(0x3F, 0x91, SS_RDEF,
"World Wide Name (WWN) Mismatch") },
{ SST(0x40, 0x01, SS_RDEF,
"DRAM Parity Error") },
{ SST(0x40, 0x02, SS_RDEF,
"DRAM Parity Error") },
{ SST(0x42, 0x0A, SS_RDEF,
"Loopback Test") },
{ SST(0x42, 0x0B, SS_RDEF,
"Loopback Test") },
{ SST(0x44, 0xF2, SS_RDEF,
"Compare error during data integrity check") },
{ SST(0x44, 0xF6, SS_RDEF,
"Unrecoverable error during data integrity check") },
{ SST(0x47, 0x80, SS_RDEF,
"Fibre Channel Sequence Error") },
{ SST(0x4E, 0x01, SS_RDEF,
"Information Unit Too Short") },
{ SST(0x80, 0x00, SS_RDEF,
"General Firmware Error / Command Timeout") },
{ SST(0x80, 0x01, SS_RDEF,
"Command Timeout") },
{ SST(0x80, 0x02, SS_RDEF,
"Command Timeout") },
{ SST(0x80, 0x80, SS_RDEF,
"FC FIFO Error During Read Transfer") },
{ SST(0x80, 0x81, SS_RDEF,
"FC FIFO Error During Write Transfer") },
{ SST(0x80, 0x82, SS_RDEF,
"DISC FIFO Error During Read Transfer") },
{ SST(0x80, 0x83, SS_RDEF,
"DISC FIFO Error During Write Transfer") },
{ SST(0x80, 0x84, SS_RDEF,
"LBA Seeded LRC Error on Read") },
{ SST(0x80, 0x85, SS_RDEF,
"LBA Seeded LRC Error on Write") },
{ SST(0x80, 0x86, SS_RDEF,
"IOEDC Error on Read") },
{ SST(0x80, 0x87, SS_RDEF,
"IOEDC Error on Write") },
{ SST(0x80, 0x88, SS_RDEF,
"Host Parity Check Failed") },
{ SST(0x80, 0x89, SS_RDEF,
"IOEDC error on read detected by formatter") },
{ SST(0x80, 0x8A, SS_RDEF,
"Host Parity Errors / Host FIFO Initialization Failed") },
{ SST(0x80, 0x8B, SS_RDEF,
"Host Parity Errors") },
{ SST(0x80, 0x8C, SS_RDEF,
"Host Parity Errors") },
{ SST(0x80, 0x8D, SS_RDEF,
"Host Parity Errors") },
{ SST(0x81, 0x00, SS_RDEF,
"LA Check Failed") },
{ SST(0x82, 0x00, SS_RDEF,
"Internal client detected insufficient buffer") },
{ SST(0x84, 0x00, SS_RDEF,
"Scheduled Diagnostic And Repair") },
};
static struct scsi_sense_quirk_entry sense_quirk_table[] = {
{
{T_DIRECT, SIP_MEDIA_FIXED, "QUANTUM", "FIREBALL S*", "*"},
0,
nitems(quantum_fireball_entries),
NULL,
quantum_fireball_entries
},
{
{T_DIRECT, SIP_MEDIA_REMOVABLE, "SONY", "SMO-*", "*"},
0,
nitems(sony_mo_entries),
NULL,
sony_mo_entries
},
{
{T_DIRECT, SIP_MEDIA_FIXED, "HGST", "*", "*"},
0,
nitems(hgst_entries),
NULL,
hgst_entries
},
{
{T_DIRECT, SIP_MEDIA_FIXED, "SEAGATE", "*", "*"},
0,
nitems(seagate_entries),
NULL,
seagate_entries
}
};
const u_int sense_quirk_table_size = nitems(sense_quirk_table);
static struct asc_table_entry asc_table[] = {
{ SST(0x00, 0x00, SS_NOP,
"No additional sense information") },
{ SST(0x00, 0x01, SS_RDEF,
"Filemark detected") },
{ SST(0x00, 0x02, SS_RDEF,
"End-of-partition/medium detected") },
{ SST(0x00, 0x03, SS_RDEF,
"Setmark detected") },
{ SST(0x00, 0x04, SS_RDEF,
"Beginning-of-partition/medium detected") },
{ SST(0x00, 0x05, SS_RDEF,
"End-of-data detected") },
{ SST(0x00, 0x06, SS_RDEF,
"I/O process terminated") },
{ SST(0x00, 0x07, SS_RDEF,
"Programmable early warning detected") },
{ SST(0x00, 0x11, SS_FATAL | EBUSY,
"Audio play operation in progress") },
{ SST(0x00, 0x12, SS_NOP,
"Audio play operation paused") },
{ SST(0x00, 0x13, SS_NOP,
"Audio play operation successfully completed") },
{ SST(0x00, 0x14, SS_RDEF,
"Audio play operation stopped due to error") },
{ SST(0x00, 0x15, SS_NOP,
"No current audio status to return") },
{ SST(0x00, 0x16, SS_FATAL | EBUSY,
"Operation in progress") },
{ SST(0x00, 0x17, SS_RDEF,
"Cleaning requested") },
{ SST(0x00, 0x18, SS_RDEF,
"Erase operation in progress") },
{ SST(0x00, 0x19, SS_RDEF,
"Locate operation in progress") },
{ SST(0x00, 0x1A, SS_RDEF,
"Rewind operation in progress") },
{ SST(0x00, 0x1B, SS_RDEF,
"Set capacity operation in progress") },
{ SST(0x00, 0x1C, SS_RDEF,
"Verify operation in progress") },
{ SST(0x00, 0x1D, SS_NOP,
"ATA pass through information available") },
{ SST(0x00, 0x1E, SS_RDEF,
"Conflicting SA creation request") },
{ SST(0x00, 0x1F, SS_RDEF,
"Logical unit transitioning to another power condition") },
{ SST(0x00, 0x20, SS_NOP,
"Extended copy information available") },
{ SST(0x00, 0x21, SS_RDEF,
"Atomic command aborted due to ACA") },
{ SST(0x00, 0x22, SS_RDEF,
"Deferred microcode is pending") },
{ SST(0x00, 0x23, SS_RDEF,
"Overlapping atomic command in progress") },
{ SST(0x01, 0x00, SS_RDEF,
"No index/sector signal") },
{ SST(0x02, 0x00, SS_FATAL | EIO,
"No seek complete") },
{ SST(0x03, 0x00, SS_RDEF,
"Peripheral device write fault") },
{ SST(0x03, 0x01, SS_RDEF,
"No write current") },
{ SST(0x03, 0x02, SS_RDEF,
"Excessive write errors") },
{ SST(0x04, 0x00, SS_RDEF,
"Logical unit not ready, cause not reportable") },
{ SST(0x04, 0x01, SS_WAIT | EBUSY,
"Logical unit is in process of becoming ready") },
{ SST(0x04, 0x02, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
"Logical unit not ready, initializing command required") },
{ SST(0x04, 0x03, SS_FATAL | ENXIO,
"Logical unit not ready, manual intervention required") },
{ SST(0x04, 0x04, SS_FATAL | EBUSY,
"Logical unit not ready, format in progress") },
{ SST(0x04, 0x05, SS_FATAL | EBUSY,
"Logical unit not ready, rebuild in progress") },
{ SST(0x04, 0x06, SS_FATAL | EBUSY,
"Logical unit not ready, recalculation in progress") },
{ SST(0x04, 0x07, SS_FATAL | EBUSY,
"Logical unit not ready, operation in progress") },
{ SST(0x04, 0x08, SS_FATAL | EBUSY,
"Logical unit not ready, long write in progress") },
{ SST(0x04, 0x09, SS_FATAL | EBUSY,
"Logical unit not ready, self-test in progress") },
{ SST(0x04, 0x0A, SS_WAIT | ENXIO,
"Logical unit not accessible, asymmetric access state transition")},
{ SST(0x04, 0x0B, SS_FATAL | ENXIO,
"Logical unit not accessible, target port in standby state") },
{ SST(0x04, 0x0C, SS_FATAL | ENXIO,
"Logical unit not accessible, target port in unavailable state") },
{ SST(0x04, 0x0D, SS_RDEF,
"Logical unit not ready, structure check required") },
{ SST(0x04, 0x0E, SS_RDEF,
"Logical unit not ready, security session in progress") },
{ SST(0x04, 0x10, SS_FATAL | ENODEV,
"Logical unit not ready, auxiliary memory not accessible") },
{ SST(0x04, 0x11, SS_WAIT | ENXIO,
"Logical unit not ready, notify (enable spinup) required") },
{ SST(0x04, 0x12, SS_FATAL | ENXIO,
"Logical unit not ready, offline") },
{ SST(0x04, 0x13, SS_WAIT | EBUSY,
"Logical unit not ready, SA creation in progress") },
{ SST(0x04, 0x14, SS_WAIT | ENOSPC,
"Logical unit not ready, space allocation in progress") },
{ SST(0x04, 0x15, SS_FATAL | ENXIO,
"Logical unit not ready, robotics disabled") },
{ SST(0x04, 0x16, SS_FATAL | ENXIO,
"Logical unit not ready, configuration required") },
{ SST(0x04, 0x17, SS_FATAL | ENXIO,
"Logical unit not ready, calibration required") },
{ SST(0x04, 0x18, SS_FATAL | ENXIO,
"Logical unit not ready, a door is open") },
{ SST(0x04, 0x19, SS_FATAL | ENODEV,
"Logical unit not ready, operating in sequential mode") },
{ SST(0x04, 0x1A, SS_WAIT | EBUSY,
"Logical unit not ready, START/STOP UNIT command in progress") },
{ SST(0x04, 0x1B, SS_WAIT | EBUSY,
"Logical unit not ready, sanitize in progress") },
{ SST(0x04, 0x1C, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
"Logical unit not ready, additional power use not yet granted") },
{ SST(0x04, 0x1D, SS_WAIT | EBUSY,
"Logical unit not ready, configuration in progress") },
{ SST(0x04, 0x1E, SS_FATAL | ENXIO,
"Logical unit not ready, microcode activation required") },
{ SST(0x04, 0x1F, SS_FATAL | ENXIO,
"Logical unit not ready, microcode download required") },
{ SST(0x04, 0x20, SS_FATAL | ENXIO,
"Logical unit not ready, logical unit reset required") },
{ SST(0x04, 0x21, SS_FATAL | ENXIO,
"Logical unit not ready, hard reset required") },
{ SST(0x04, 0x22, SS_FATAL | ENXIO,
"Logical unit not ready, power cycle required") },
{ SST(0x04, 0x23, SS_FATAL | ENXIO,
"Logical unit not ready, affiliation required") },
{ SST(0x04, 0x24, SS_FATAL | EBUSY,
"Depopulation in progress") },
{ SST(0x04, 0x25, SS_FATAL | EBUSY,
"Depopulation restoration in progress") },
{ SST(0x05, 0x00, SS_RDEF,
"Logical unit does not respond to selection") },
{ SST(0x06, 0x00, SS_RDEF,
"No reference position found") },
{ SST(0x07, 0x00, SS_RDEF,
"Multiple peripheral devices selected") },
{ SST(0x08, 0x00, SS_RDEF,
"Logical unit communication failure") },
{ SST(0x08, 0x01, SS_RDEF,
"Logical unit communication time-out") },
{ SST(0x08, 0x02, SS_RDEF,
"Logical unit communication parity error") },
{ SST(0x08, 0x03, SS_RDEF,
"Logical unit communication CRC error (Ultra-DMA/32)") },
{ SST(0x08, 0x04, SS_RDEF,
"Unreachable copy target") },
{ SST(0x09, 0x00, SS_RDEF,
"Track following error") },
{ SST(0x09, 0x01, SS_RDEF,
"Tracking servo failure") },
{ SST(0x09, 0x02, SS_RDEF,
"Focus servo failure") },
{ SST(0x09, 0x03, SS_RDEF,
"Spindle servo failure") },
{ SST(0x09, 0x04, SS_RDEF,
"Head select fault") },
{ SST(0x09, 0x05, SS_RDEF,
"Vibration induced tracking error") },
{ SST(0x0A, 0x00, SS_FATAL | ENOSPC,
"Error log overflow") },
{ SST(0x0B, 0x00, SS_NOP | SSQ_PRINT_SENSE,
"Warning") },
{ SST(0x0B, 0x01, SS_NOP | SSQ_PRINT_SENSE,
"Warning - specified temperature exceeded") },
{ SST(0x0B, 0x02, SS_NOP | SSQ_PRINT_SENSE,
"Warning - enclosure degraded") },
{ SST(0x0B, 0x03, SS_NOP | SSQ_PRINT_SENSE,
"Warning - background self-test failed") },
{ SST(0x0B, 0x04, SS_NOP | SSQ_PRINT_SENSE,
"Warning - background pre-scan detected medium error") },
{ SST(0x0B, 0x05, SS_NOP | SSQ_PRINT_SENSE,
"Warning - background medium scan detected medium error") },
{ SST(0x0B, 0x06, SS_NOP | SSQ_PRINT_SENSE,
"Warning - non-volatile cache now volatile") },
{ SST(0x0B, 0x07, SS_NOP | SSQ_PRINT_SENSE,
"Warning - degraded power to non-volatile cache") },
{ SST(0x0B, 0x08, SS_NOP | SSQ_PRINT_SENSE,
"Warning - power loss expected") },
{ SST(0x0B, 0x09, SS_NOP | SSQ_PRINT_SENSE,
"Warning - device statistics notification available") },
{ SST(0x0B, 0x0A, SS_NOP | SSQ_PRINT_SENSE,
"Warning - High critical temperature limit exceeded") },
{ SST(0x0B, 0x0B, SS_NOP | SSQ_PRINT_SENSE,
"Warning - Low critical temperature limit exceeded") },
{ SST(0x0B, 0x0C, SS_NOP | SSQ_PRINT_SENSE,
"Warning - High operating temperature limit exceeded") },
{ SST(0x0B, 0x0D, SS_NOP | SSQ_PRINT_SENSE,
"Warning - Low operating temperature limit exceeded") },
{ SST(0x0B, 0x0E, SS_NOP | SSQ_PRINT_SENSE,
"Warning - High citical humidity limit exceeded") },
{ SST(0x0B, 0x0F, SS_NOP | SSQ_PRINT_SENSE,
"Warning - Low citical humidity limit exceeded") },
{ SST(0x0B, 0x10, SS_NOP | SSQ_PRINT_SENSE,
"Warning - High operating humidity limit exceeded") },
{ SST(0x0B, 0x11, SS_NOP | SSQ_PRINT_SENSE,
"Warning - Low operating humidity limit exceeded") },
{ SST(0x0B, 0x12, SS_NOP | SSQ_PRINT_SENSE,
"Warning - Microcode security at risk") },
{ SST(0x0B, 0x13, SS_NOP | SSQ_PRINT_SENSE,
"Warning - Microcode digital signature validation failure") },
{ SST(0x0B, 0x14, SS_NOP | SSQ_PRINT_SENSE,
"Warning - Physical element status change") },
{ SST(0x0C, 0x00, SS_RDEF,
"Write error") },
{ SST(0x0C, 0x01, SS_NOP | SSQ_PRINT_SENSE,
"Write error - recovered with auto reallocation") },
{ SST(0x0C, 0x02, SS_RDEF,
"Write error - auto reallocation failed") },
{ SST(0x0C, 0x03, SS_RDEF,
"Write error - recommend reassignment") },
{ SST(0x0C, 0x04, SS_RDEF,
"Compression check miscompare error") },
{ SST(0x0C, 0x05, SS_RDEF,
"Data expansion occurred during compression") },
{ SST(0x0C, 0x06, SS_RDEF,
"Block not compressible") },
{ SST(0x0C, 0x07, SS_RDEF,
"Write error - recovery needed") },
{ SST(0x0C, 0x08, SS_RDEF,
"Write error - recovery failed") },
{ SST(0x0C, 0x09, SS_RDEF,
"Write error - loss of streaming") },
{ SST(0x0C, 0x0A, SS_RDEF,
"Write error - padding blocks added") },
{ SST(0x0C, 0x0B, SS_RDEF,
"Auxiliary memory write error") },
{ SST(0x0C, 0x0C, SS_RDEF,
"Write error - unexpected unsolicited data") },
{ SST(0x0C, 0x0D, SS_RDEF,
"Write error - not enough unsolicited data") },
{ SST(0x0C, 0x0E, SS_RDEF,
"Multiple write errors") },
{ SST(0x0C, 0x0F, SS_RDEF,
"Defects in error window") },
{ SST(0x0C, 0x10, SS_RDEF,
"Incomplete multiple atomic write operations") },
{ SST(0x0C, 0x11, SS_RDEF,
"Write error - recovery scan needed") },
{ SST(0x0C, 0x12, SS_RDEF,
"Write error - insufficient zone resources") },
{ SST(0x0D, 0x00, SS_RDEF,
"Error detected by third party temporary initiator") },
{ SST(0x0D, 0x01, SS_RDEF,
"Third party device failure") },
{ SST(0x0D, 0x02, SS_RDEF,
"Copy target device not reachable") },
{ SST(0x0D, 0x03, SS_RDEF,
"Incorrect copy target device type") },
{ SST(0x0D, 0x04, SS_RDEF,
"Copy target device data underrun") },
{ SST(0x0D, 0x05, SS_RDEF,
"Copy target device data overrun") },
{ SST(0x0E, 0x00, SS_RDEF,
"Invalid information unit") },
{ SST(0x0E, 0x01, SS_RDEF,
"Information unit too short") },
{ SST(0x0E, 0x02, SS_RDEF,
"Information unit too long") },
{ SST(0x0E, 0x03, SS_FATAL | EINVAL,
"Invalid field in command information unit") },
{ SST(0x10, 0x00, SS_RDEF,
"ID CRC or ECC error") },
{ SST(0x10, 0x01, SS_RDEF,
"Logical block guard check failed") },
{ SST(0x10, 0x02, SS_RDEF,
"Logical block application tag check failed") },
{ SST(0x10, 0x03, SS_RDEF,
"Logical block reference tag check failed") },
{ SST(0x10, 0x04, SS_RDEF,
"Logical block protection error on recovered buffer data") },
{ SST(0x10, 0x05, SS_RDEF,
"Logical block protection method error") },
{ SST(0x11, 0x00, SS_FATAL|EIO,
"Unrecovered read error") },
{ SST(0x11, 0x01, SS_FATAL|EIO,
"Read retries exhausted") },
{ SST(0x11, 0x02, SS_FATAL|EIO,
"Error too long to correct") },
{ SST(0x11, 0x03, SS_FATAL|EIO,
"Multiple read errors") },
{ SST(0x11, 0x04, SS_FATAL|EIO,
"Unrecovered read error - auto reallocate failed") },
{ SST(0x11, 0x05, SS_FATAL|EIO,
"L-EC uncorrectable error") },
{ SST(0x11, 0x06, SS_FATAL|EIO,
"CIRC unrecovered error") },
{ SST(0x11, 0x07, SS_RDEF,
"Data re-synchronization error") },
{ SST(0x11, 0x08, SS_RDEF,
"Incomplete block read") },
{ SST(0x11, 0x09, SS_RDEF,
"No gap found") },
{ SST(0x11, 0x0A, SS_RDEF,
"Miscorrected error") },
{ SST(0x11, 0x0B, SS_FATAL|EIO,
"Unrecovered read error - recommend reassignment") },
{ SST(0x11, 0x0C, SS_FATAL|EIO,
"Unrecovered read error - recommend rewrite the data") },
{ SST(0x11, 0x0D, SS_RDEF,
"De-compression CRC error") },
{ SST(0x11, 0x0E, SS_RDEF,
"Cannot decompress using declared algorithm") },
{ SST(0x11, 0x0F, SS_RDEF,
"Error reading UPC/EAN number") },
{ SST(0x11, 0x10, SS_RDEF,
"Error reading ISRC number") },
{ SST(0x11, 0x11, SS_RDEF,
"Read error - loss of streaming") },
{ SST(0x11, 0x12, SS_RDEF,
"Auxiliary memory read error") },
{ SST(0x11, 0x13, SS_RDEF,
"Read error - failed retransmission request") },
{ SST(0x11, 0x14, SS_RDEF,
"Read error - LBA marked bad by application client") },
{ SST(0x11, 0x15, SS_FATAL | EIO,
"Write after sanitize required") },
{ SST(0x12, 0x00, SS_RDEF,
"Address mark not found for ID field") },
{ SST(0x13, 0x00, SS_RDEF,
"Address mark not found for data field") },
{ SST(0x14, 0x00, SS_RDEF,
"Recorded entity not found") },
{ SST(0x14, 0x01, SS_RDEF,
"Record not found") },
{ SST(0x14, 0x02, SS_RDEF,
"Filemark or setmark not found") },
{ SST(0x14, 0x03, SS_RDEF,
"End-of-data not found") },
{ SST(0x14, 0x04, SS_RDEF,
"Block sequence error") },
{ SST(0x14, 0x05, SS_RDEF,
"Record not found - recommend reassignment") },
{ SST(0x14, 0x06, SS_RDEF,
"Record not found - data auto-reallocated") },
{ SST(0x14, 0x07, SS_RDEF,
"Locate operation failure") },
{ SST(0x15, 0x00, SS_RDEF,
"Random positioning error") },
{ SST(0x15, 0x01, SS_RDEF,
"Mechanical positioning error") },
{ SST(0x15, 0x02, SS_RDEF,
"Positioning error detected by read of medium") },
{ SST(0x16, 0x00, SS_RDEF,
"Data synchronization mark error") },
{ SST(0x16, 0x01, SS_RDEF,
"Data sync error - data rewritten") },
{ SST(0x16, 0x02, SS_RDEF,
"Data sync error - recommend rewrite") },
{ SST(0x16, 0x03, SS_NOP | SSQ_PRINT_SENSE,
"Data sync error - data auto-reallocated") },
{ SST(0x16, 0x04, SS_RDEF,
"Data sync error - recommend reassignment") },
{ SST(0x17, 0x00, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with no error correction applied") },
{ SST(0x17, 0x01, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with retries") },
{ SST(0x17, 0x02, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with positive head offset") },
{ SST(0x17, 0x03, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with negative head offset") },
{ SST(0x17, 0x04, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with retries and/or CIRC applied") },
{ SST(0x17, 0x05, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data using previous sector ID") },
{ SST(0x17, 0x06, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data without ECC - data auto-reallocated") },
{ SST(0x17, 0x07, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data without ECC - recommend reassignment") },
{ SST(0x17, 0x08, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data without ECC - recommend rewrite") },
{ SST(0x17, 0x09, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data without ECC - data rewritten") },
{ SST(0x18, 0x00, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with error correction applied") },
{ SST(0x18, 0x01, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with error corr. & retries applied") },
{ SST(0x18, 0x02, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data - data auto-reallocated") },
{ SST(0x18, 0x03, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with CIRC") },
{ SST(0x18, 0x04, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with L-EC") },
{ SST(0x18, 0x05, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data - recommend reassignment") },
{ SST(0x18, 0x06, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data - recommend rewrite") },
{ SST(0x18, 0x07, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with ECC - data rewritten") },
{ SST(0x18, 0x08, SS_NOP | SSQ_PRINT_SENSE,
"Recovered data with linking") },
{ SST(0x19, 0x00, SS_RDEF,
"Defect list error") },
{ SST(0x19, 0x01, SS_RDEF,
"Defect list not available") },
{ SST(0x19, 0x02, SS_RDEF,
"Defect list error in primary list") },
{ SST(0x19, 0x03, SS_RDEF,
"Defect list error in grown list") },
{ SST(0x1A, 0x00, SS_RDEF,
"Parameter list length error") },
{ SST(0x1B, 0x00, SS_RDEF,
"Synchronous data transfer error") },
{ SST(0x1C, 0x00, SS_RDEF,
"Defect list not found") },
{ SST(0x1C, 0x01, SS_RDEF,
"Primary defect list not found") },
{ SST(0x1C, 0x02, SS_RDEF,
"Grown defect list not found") },
{ SST(0x1D, 0x00, SS_FATAL,
"Miscompare during verify operation") },
{ SST(0x1D, 0x01, SS_RDEF,
"Miscomparable verify of unmapped LBA") },
{ SST(0x1E, 0x00, SS_NOP | SSQ_PRINT_SENSE,
"Recovered ID with ECC correction") },
{ SST(0x1F, 0x00, SS_RDEF,
"Partial defect list transfer") },
{ SST(0x20, 0x00, SS_FATAL | EINVAL,
"Invalid command operation code") },
{ SST(0x20, 0x01, SS_RDEF,
"Access denied - initiator pending-enrolled") },
{ SST(0x20, 0x02, SS_FATAL | EPERM,
"Access denied - no access rights") },
{ SST(0x20, 0x03, SS_RDEF,
"Access denied - invalid mgmt ID key") },
{ SST(0x20, 0x04, SS_RDEF,
"Illegal command while in write capable state") },
{ SST(0x20, 0x05, SS_RDEF,
"Obsolete") },
{ SST(0x20, 0x06, SS_RDEF,
"Illegal command while in explicit address mode") },
{ SST(0x20, 0x07, SS_RDEF,
"Illegal command while in implicit address mode") },
{ SST(0x20, 0x08, SS_RDEF,
"Access denied - enrollment conflict") },
{ SST(0x20, 0x09, SS_RDEF,
"Access denied - invalid LU identifier") },
{ SST(0x20, 0x0A, SS_RDEF,
"Access denied - invalid proxy token") },
{ SST(0x20, 0x0B, SS_RDEF,
"Access denied - ACL LUN conflict") },
{ SST(0x20, 0x0C, SS_FATAL | EINVAL,
"Illegal command when not in append-only mode") },
{ SST(0x20, 0x0D, SS_FATAL | EINVAL,
"Not an administrative logical unit") },
{ SST(0x20, 0x0E, SS_FATAL | EINVAL,
"Not a subsidiary logical unit") },
{ SST(0x20, 0x0F, SS_FATAL | EINVAL,
"Not a conglomerate logical unit") },
{ SST(0x21, 0x00, SS_FATAL | EINVAL,
"Logical block address out of range") },
{ SST(0x21, 0x01, SS_FATAL | EINVAL,
"Invalid element address") },
{ SST(0x21, 0x02, SS_RDEF,
"Invalid address for write") },
{ SST(0x21, 0x03, SS_RDEF,
"Invalid write crossing layer jump") },
{ SST(0x21, 0x04, SS_RDEF,
"Unaligned write command") },
{ SST(0x21, 0x05, SS_RDEF,
"Write boundary violation") },
{ SST(0x21, 0x06, SS_RDEF,
"Attempt to read invalid data") },
{ SST(0x21, 0x07, SS_RDEF,
"Read boundary violation") },
{ SST(0x21, 0x08, SS_FATAL | EINVAL,
"Misaligned write command") },
{ SST(0x21, 0x09, SS_FATAL | EINVAL,
"Attempt to access gap zone") },
{ SST(0x22, 0x00, SS_FATAL | EINVAL,
"Illegal function (use 20 00, 24 00, or 26 00)") },
{ SST(0x23, 0x00, SS_FATAL | EINVAL,
"Invalid token operation, cause not reportable") },
{ SST(0x23, 0x01, SS_FATAL | EINVAL,
"Invalid token operation, unsupported token type") },
{ SST(0x23, 0x02, SS_FATAL | EINVAL,
"Invalid token operation, remote token usage not supported") },
{ SST(0x23, 0x03, SS_FATAL | EINVAL,
"Invalid token operation, remote ROD token creation not supported") },
{ SST(0x23, 0x04, SS_FATAL | EINVAL,
"Invalid token operation, token unknown") },
{ SST(0x23, 0x05, SS_FATAL | EINVAL,
"Invalid token operation, token corrupt") },
{ SST(0x23, 0x06, SS_FATAL | EINVAL,
"Invalid token operation, token revoked") },
{ SST(0x23, 0x07, SS_FATAL | EINVAL,
"Invalid token operation, token expired") },
{ SST(0x23, 0x08, SS_FATAL | EINVAL,
"Invalid token operation, token cancelled") },
{ SST(0x23, 0x09, SS_FATAL | EINVAL,
"Invalid token operation, token deleted") },
{ SST(0x23, 0x0A, SS_FATAL | EINVAL,
"Invalid token operation, invalid token length") },
{ SST(0x24, 0x00, SS_FATAL | EINVAL,
"Invalid field in CDB") },
{ SST(0x24, 0x01, SS_RDEF,
"CDB decryption error") },
{ SST(0x24, 0x02, SS_RDEF,
"Obsolete") },
{ SST(0x24, 0x03, SS_RDEF,
"Obsolete") },
{ SST(0x24, 0x04, SS_RDEF,
"Security audit value frozen") },
{ SST(0x24, 0x05, SS_RDEF,
"Security working key frozen") },
{ SST(0x24, 0x06, SS_RDEF,
"NONCE not unique") },
{ SST(0x24, 0x07, SS_RDEF,
"NONCE timestamp out of range") },
{ SST(0x24, 0x08, SS_RDEF,
"Invalid XCDB") },
{ SST(0x24, 0x09, SS_FATAL | EINVAL,
"Invalid fast format") },
{ SST(0x25, 0x00, SS_FATAL | ENXIO | SSQ_LOST,
"Logical unit not supported") },
{ SST(0x26, 0x00, SS_FATAL | EINVAL,
"Invalid field in parameter list") },
{ SST(0x26, 0x01, SS_FATAL | EINVAL,
"Parameter not supported") },
{ SST(0x26, 0x02, SS_FATAL | EINVAL,
"Parameter value invalid") },
{ SST(0x26, 0x03, SS_FATAL | EINVAL,
"Threshold parameters not supported") },
{ SST(0x26, 0x04, SS_FATAL | EINVAL,
"Invalid release of persistent reservation") },
{ SST(0x26, 0x05, SS_RDEF,
"Data decryption error") },
{ SST(0x26, 0x06, SS_FATAL | EINVAL,
"Too many target descriptors") },
{ SST(0x26, 0x07, SS_FATAL | EINVAL,
"Unsupported target descriptor type code") },
{ SST(0x26, 0x08, SS_FATAL | EINVAL,
"Too many segment descriptors") },
{ SST(0x26, 0x09, SS_FATAL | EINVAL,
"Unsupported segment descriptor type code") },
{ SST(0x26, 0x0A, SS_FATAL | EINVAL,
"Unexpected inexact segment") },
{ SST(0x26, 0x0B, SS_FATAL | EINVAL,
"Inline data length exceeded") },
{ SST(0x26, 0x0C, SS_FATAL | EINVAL,
"Invalid operation for copy source or destination") },
{ SST(0x26, 0x0D, SS_FATAL | EINVAL,
"Copy segment granularity violation") },
{ SST(0x26, 0x0E, SS_RDEF,
"Invalid parameter while port is enabled") },
{ SST(0x26, 0x0F, SS_RDEF,
"Invalid data-out buffer integrity check value") },
{ SST(0x26, 0x10, SS_RDEF,
"Data decryption key fail limit reached") },
{ SST(0x26, 0x11, SS_RDEF,
"Incomplete key-associated data set") },
{ SST(0x26, 0x12, SS_RDEF,
"Vendor specific key reference not found") },
{ SST(0x26, 0x13, SS_RDEF,
"Application tag mode page is invalid") },
{ SST(0x26, 0x14, SS_RDEF,
"Tape stream mirroring prevented") },
{ SST(0x26, 0x15, SS_FATAL | EINVAL,
"Copy source or copy destination not authorized") },
{ SST(0x26, 0x16, SS_FATAL | EINVAL,
"Fast copy not possible") },
{ SST(0x27, 0x00, SS_FATAL | EACCES,
"Write protected") },
{ SST(0x27, 0x01, SS_FATAL | EACCES,
"Hardware write protected") },
{ SST(0x27, 0x02, SS_FATAL | EACCES,
"Logical unit software write protected") },
{ SST(0x27, 0x03, SS_FATAL | EACCES,
"Associated write protect") },
{ SST(0x27, 0x04, SS_FATAL | EACCES,
"Persistent write protect") },
{ SST(0x27, 0x05, SS_FATAL | EACCES,
"Permanent write protect") },
{ SST(0x27, 0x06, SS_RDEF,
"Conditional write protect") },
{ SST(0x27, 0x07, SS_FATAL | ENOSPC,
"Space allocation failed write protect") },
{ SST(0x27, 0x08, SS_FATAL | EACCES,
"Zone is read only") },
{ SST(0x28, 0x00, SS_FATAL | ENXIO,
"Not ready to ready change, medium may have changed") },
{ SST(0x28, 0x01, SS_FATAL | ENXIO,
"Import or export element accessed") },
{ SST(0x28, 0x02, SS_RDEF,
"Format-layer may have changed") },
{ SST(0x28, 0x03, SS_RDEF,
"Import/export element accessed, medium changed") },
{ SST(0x29, 0x00, SS_FATAL | ENXIO,
"Power on, reset, or bus device reset occurred") },
{ SST(0x29, 0x01, SS_RDEF,
"Power on occurred") },
{ SST(0x29, 0x02, SS_RDEF,
"SCSI bus reset occurred") },
{ SST(0x29, 0x03, SS_RDEF,
"Bus device reset function occurred") },
{ SST(0x29, 0x04, SS_RDEF,
"Device internal reset") },
{ SST(0x29, 0x05, SS_RDEF,
"Transceiver mode changed to single-ended") },
{ SST(0x29, 0x06, SS_RDEF,
"Transceiver mode changed to LVD") },
{ SST(0x29, 0x07, SS_RDEF,
"I_T nexus loss occurred") },
{ SST(0x2A, 0x00, SS_RDEF,
"Parameters changed") },
{ SST(0x2A, 0x01, SS_RDEF,
"Mode parameters changed") },
{ SST(0x2A, 0x02, SS_RDEF,
"Log parameters changed") },
{ SST(0x2A, 0x03, SS_RDEF,
"Reservations preempted") },
{ SST(0x2A, 0x04, SS_RDEF,
"Reservations released") },
{ SST(0x2A, 0x05, SS_RDEF,
"Registrations preempted") },
{ SST(0x2A, 0x06, SS_RDEF,
"Asymmetric access state changed") },
{ SST(0x2A, 0x07, SS_RDEF,
"Implicit asymmetric access state transition failed") },
{ SST(0x2A, 0x08, SS_RDEF,
"Priority changed") },
{ SST(0x2A, 0x09, SS_RDEF,
"Capacity data has changed") },
{ SST(0x2A, 0x0A, SS_RDEF,
"Error history I_T nexus cleared") },
{ SST(0x2A, 0x0B, SS_RDEF,
"Error history snapshot released") },
{ SST(0x2A, 0x0C, SS_RDEF,
"Error recovery attributes have changed") },
{ SST(0x2A, 0x0D, SS_RDEF,
"Data encryption capabilities changed") },
{ SST(0x2A, 0x10, SS_RDEF,
"Timestamp changed") },
{ SST(0x2A, 0x11, SS_RDEF,
"Data encryption parameters changed by another I_T nexus") },
{ SST(0x2A, 0x12, SS_RDEF,
"Data encryption parameters changed by vendor specific event") },
{ SST(0x2A, 0x13, SS_RDEF,
"Data encryption key instance counter has changed") },
{ SST(0x2A, 0x14, SS_RDEF,
"SA creation capabilities data has changed") },
{ SST(0x2A, 0x15, SS_RDEF,
"Medium removal prevention preempted") },
{ SST(0x2A, 0x16, SS_RDEF,
"Zone reset write pointer recommended") },
{ SST(0x2B, 0x00, SS_RDEF,
"Copy cannot execute since host cannot disconnect") },
{ SST(0x2C, 0x00, SS_RDEF,
"Command sequence error") },
{ SST(0x2C, 0x01, SS_RDEF,
"Too many windows specified") },
{ SST(0x2C, 0x02, SS_RDEF,
"Invalid combination of windows specified") },
{ SST(0x2C, 0x03, SS_RDEF,
"Current program area is not empty") },
{ SST(0x2C, 0x04, SS_RDEF,
"Current program area is empty") },
{ SST(0x2C, 0x05, SS_RDEF,
"Illegal power condition request") },
{ SST(0x2C, 0x06, SS_RDEF,
"Persistent prevent conflict") },
{ SST(0x2C, 0x07, SS_RDEF,
"Previous busy status") },
{ SST(0x2C, 0x08, SS_RDEF,
"Previous task set full status") },
{ SST(0x2C, 0x09, SS_RDEF,
"Previous reservation conflict status") },
{ SST(0x2C, 0x0A, SS_RDEF,
"Partition or collection contains user objects") },
{ SST(0x2C, 0x0B, SS_RDEF,
"Not reserved") },
{ SST(0x2C, 0x0C, SS_RDEF,
"ORWRITE generation does not match") },
{ SST(0x2C, 0x0D, SS_RDEF,
"Reset write pointer not allowed") },
{ SST(0x2C, 0x0E, SS_RDEF,
"Zone is offline") },
{ SST(0x2C, 0x0F, SS_RDEF,
"Stream not open") },
{ SST(0x2C, 0x10, SS_RDEF,
"Unwritten data in zone") },
{ SST(0x2C, 0x11, SS_FATAL | EINVAL,
"Descriptor format sense data required") },
{ SST(0x2C, 0x12, SS_FATAL | EINVAL,
"Zone is inactive") },
{ SST(0x2C, 0x13, SS_FATAL | EINVAL,
"Well known logical unit access required") },
{ SST(0x2D, 0x00, SS_RDEF,
"Overwrite error on update in place") },
{ SST(0x2E, 0x00, SS_RDEF,
"Insufficient time for operation") },
{ SST(0x2E, 0x01, SS_RDEF,
"Command timeout before processing") },
{ SST(0x2E, 0x02, SS_RDEF,
"Command timeout during processing") },
{ SST(0x2E, 0x03, SS_RDEF,
"Command timeout during processing due to error recovery") },
{ SST(0x2F, 0x00, SS_RDEF,
"Commands cleared by another initiator") },
{ SST(0x2F, 0x01, SS_RDEF,
"Commands cleared by power loss notification") },
{ SST(0x2F, 0x02, SS_RDEF,
"Commands cleared by device server") },
{ SST(0x2F, 0x03, SS_RDEF,
"Some commands cleared by queuing layer event") },
{ SST(0x30, 0x00, SS_RDEF,
"Incompatible medium installed") },
{ SST(0x30, 0x01, SS_RDEF,
"Cannot read medium - unknown format") },
{ SST(0x30, 0x02, SS_RDEF,
"Cannot read medium - incompatible format") },
{ SST(0x30, 0x03, SS_RDEF,
"Cleaning cartridge installed") },
{ SST(0x30, 0x04, SS_RDEF,
"Cannot write medium - unknown format") },
{ SST(0x30, 0x05, SS_RDEF,
"Cannot write medium - incompatible format") },
{ SST(0x30, 0x06, SS_RDEF,
"Cannot format medium - incompatible medium") },
{ SST(0x30, 0x07, SS_RDEF,
"Cleaning failure") },
{ SST(0x30, 0x08, SS_RDEF,
"Cannot write - application code mismatch") },
{ SST(0x30, 0x09, SS_RDEF,
"Current session not fixated for append") },
{ SST(0x30, 0x0A, SS_RDEF,
"Cleaning request rejected") },
{ SST(0x30, 0x0C, SS_RDEF,
"WORM medium - overwrite attempted") },
{ SST(0x30, 0x0D, SS_RDEF,
"WORM medium - integrity check") },
{ SST(0x30, 0x10, SS_RDEF,
"Medium not formatted") },
{ SST(0x30, 0x11, SS_RDEF,
"Incompatible volume type") },
{ SST(0x30, 0x12, SS_RDEF,
"Incompatible volume qualifier") },
{ SST(0x30, 0x13, SS_RDEF,
"Cleaning volume expired") },
{ SST(0x31, 0x00, SS_FATAL | ENXIO,
"Medium format corrupted") },
{ SST(0x31, 0x01, SS_RDEF,
"Format command failed") },
{ SST(0x31, 0x02, SS_RDEF,
"Zoned formatting failed due to spare linking") },
{ SST(0x31, 0x03, SS_FATAL | EIO,
"SANITIZE command failed") },
{ SST(0x31, 0x04, SS_FATAL | EIO,
"Depopulation failed") },
{ SST(0x31, 0x05, SS_FATAL | EIO,
"Depopulation restoration failed") },
{ SST(0x32, 0x00, SS_RDEF,
"No defect spare location available") },
{ SST(0x32, 0x01, SS_RDEF,
"Defect list update failure") },
{ SST(0x33, 0x00, SS_RDEF,
"Tape length error") },
{ SST(0x34, 0x00, SS_RDEF,
"Enclosure failure") },
{ SST(0x35, 0x00, SS_RDEF,
"Enclosure services failure") },
{ SST(0x35, 0x01, SS_RDEF,
"Unsupported enclosure function") },
{ SST(0x35, 0x02, SS_RDEF,
"Enclosure services unavailable") },
{ SST(0x35, 0x03, SS_RDEF,
"Enclosure services transfer failure") },
{ SST(0x35, 0x04, SS_RDEF,
"Enclosure services transfer refused") },
{ SST(0x35, 0x05, SS_RDEF,
"Enclosure services checksum error") },
{ SST(0x36, 0x00, SS_RDEF,
"Ribbon, ink, or toner failure") },
{ SST(0x37, 0x00, SS_RDEF,
"Rounded parameter") },
{ SST(0x38, 0x00, SS_RDEF,
"Event status notification") },
{ SST(0x38, 0x02, SS_RDEF,
"ESN - power management class event") },
{ SST(0x38, 0x04, SS_RDEF,
"ESN - media class event") },
{ SST(0x38, 0x06, SS_RDEF,
"ESN - device busy class event") },
{ SST(0x38, 0x07, SS_RDEF,
"Thin provisioning soft threshold reached") },
{ SST(0x38, 0x08, SS_NOP | SSQ_PRINT_SENSE,
"Depopulation interrupted") },
{ SST(0x39, 0x00, SS_RDEF,
"Saving parameters not supported") },
{ SST(0x3A, 0x00, SS_FATAL | ENXIO,
"Medium not present") },
{ SST(0x3A, 0x01, SS_FATAL | ENXIO,
"Medium not present - tray closed") },
{ SST(0x3A, 0x02, SS_FATAL | ENXIO,
"Medium not present - tray open") },
{ SST(0x3A, 0x03, SS_RDEF,
"Medium not present - loadable") },
{ SST(0x3A, 0x04, SS_RDEF,
"Medium not present - medium auxiliary memory accessible") },
{ SST(0x3B, 0x00, SS_RDEF,
"Sequential positioning error") },
{ SST(0x3B, 0x01, SS_RDEF,
"Tape position error at beginning-of-medium") },
{ SST(0x3B, 0x02, SS_RDEF,
"Tape position error at end-of-medium") },
{ SST(0x3B, 0x03, SS_RDEF,
"Tape or electronic vertical forms unit not ready") },
{ SST(0x3B, 0x04, SS_RDEF,
"Slew failure") },
{ SST(0x3B, 0x05, SS_RDEF,
"Paper jam") },
{ SST(0x3B, 0x06, SS_RDEF,
"Failed to sense top-of-form") },
{ SST(0x3B, 0x07, SS_RDEF,
"Failed to sense bottom-of-form") },
{ SST(0x3B, 0x08, SS_RDEF,
"Reposition error") },
{ SST(0x3B, 0x09, SS_RDEF,
"Read past end of medium") },
{ SST(0x3B, 0x0A, SS_RDEF,
"Read past beginning of medium") },
{ SST(0x3B, 0x0B, SS_RDEF,
"Position past end of medium") },
{ SST(0x3B, 0x0C, SS_RDEF,
"Position past beginning of medium") },
{ SST(0x3B, 0x0D, SS_FATAL | ENOSPC,
"Medium destination element full") },
{ SST(0x3B, 0x0E, SS_RDEF,
"Medium source element empty") },
{ SST(0x3B, 0x0F, SS_RDEF,
"End of medium reached") },
{ SST(0x3B, 0x11, SS_RDEF,
"Medium magazine not accessible") },
{ SST(0x3B, 0x12, SS_RDEF,
"Medium magazine removed") },
{ SST(0x3B, 0x13, SS_RDEF,
"Medium magazine inserted") },
{ SST(0x3B, 0x14, SS_RDEF,
"Medium magazine locked") },
{ SST(0x3B, 0x15, SS_RDEF,
"Medium magazine unlocked") },
{ SST(0x3B, 0x16, SS_RDEF,
"Mechanical positioning or changer error") },
{ SST(0x3B, 0x17, SS_RDEF,
"Read past end of user object") },
{ SST(0x3B, 0x18, SS_RDEF,
"Element disabled") },
{ SST(0x3B, 0x19, SS_RDEF,
"Element enabled") },
{ SST(0x3B, 0x1A, SS_RDEF,
"Data transfer device removed") },
{ SST(0x3B, 0x1B, SS_RDEF,
"Data transfer device inserted") },
{ SST(0x3B, 0x1C, SS_RDEF,
"Too many logical objects on partition to support operation") },
{ SST(0x3B, 0x20, SS_RDEF,
"Element static information changed") },
{ SST(0x3D, 0x00, SS_RDEF,
"Invalid bits in IDENTIFY message") },
{ SST(0x3E, 0x00, SS_RDEF,
"Logical unit has not self-configured yet") },
{ SST(0x3E, 0x01, SS_RDEF,
"Logical unit failure") },
{ SST(0x3E, 0x02, SS_RDEF,
"Timeout on logical unit") },
{ SST(0x3E, 0x03, SS_FATAL | ENXIO,
"Logical unit failed self-test") },
{ SST(0x3E, 0x04, SS_RDEF,
"Logical unit unable to update self-test log") },
{ SST(0x3F, 0x00, SS_RDEF,
"Target operating conditions have changed") },
{ SST(0x3F, 0x01, SS_RDEF,
"Microcode has been changed") },
{ SST(0x3F, 0x02, SS_RDEF,
"Changed operating definition") },
{ SST(0x3F, 0x03, SS_RDEF,
"INQUIRY data has changed") },
{ SST(0x3F, 0x04, SS_RDEF,
"Component device attached") },
{ SST(0x3F, 0x05, SS_RDEF,
"Device identifier changed") },
{ SST(0x3F, 0x06, SS_RDEF,
"Redundancy group created or modified") },
{ SST(0x3F, 0x07, SS_RDEF,
"Redundancy group deleted") },
{ SST(0x3F, 0x08, SS_RDEF,
"Spare created or modified") },
{ SST(0x3F, 0x09, SS_RDEF,
"Spare deleted") },
{ SST(0x3F, 0x0A, SS_RDEF,
"Volume set created or modified") },
{ SST(0x3F, 0x0B, SS_RDEF,
"Volume set deleted") },
{ SST(0x3F, 0x0C, SS_RDEF,
"Volume set deassigned") },
{ SST(0x3F, 0x0D, SS_RDEF,
"Volume set reassigned") },
{ SST(0x3F, 0x0E, SS_RDEF | SSQ_RESCAN ,
"Reported LUNs data has changed") },
{ SST(0x3F, 0x0F, SS_RDEF,
"Echo buffer overwritten") },
{ SST(0x3F, 0x10, SS_RDEF,
"Medium loadable") },
{ SST(0x3F, 0x11, SS_RDEF,
"Medium auxiliary memory accessible") },
{ SST(0x3F, 0x12, SS_RDEF,
"iSCSI IP address added") },
{ SST(0x3F, 0x13, SS_RDEF,
"iSCSI IP address removed") },
{ SST(0x3F, 0x14, SS_RDEF,
"iSCSI IP address changed") },
{ SST(0x3F, 0x15, SS_RDEF,
"Inspect referrals sense descriptors") },
{ SST(0x3F, 0x16, SS_RDEF,
"Microcode has been changed without reset") },
{ SST(0x3F, 0x17, SS_RDEF,
"Zone transition to full") },
{ SST(0x3F, 0x18, SS_RDEF,
"Bind completed") },
{ SST(0x3F, 0x19, SS_RDEF,
"Bind redirected") },
{ SST(0x3F, 0x1A, SS_RDEF,
"Subsidiary binding changed") },
{ SST(0x40, 0x00, SS_FATAL | ENXIO,
"RAM failure") },
{ SST(0x40, 0x80, SS_FATAL | ENXIO,
"Diagnostic failure: ASCQ = Component ID") },
{ SST(0x40, 0xFF, SS_RDEF | SSQ_RANGE,
NULL) },
{ SST(0x41, 0x00, SS_RDEF,
"Data path failure") },
{ SST(0x42, 0x00, SS_RDEF,
"Power-on or self-test failure") },
{ SST(0x43, 0x00, SS_RDEF,
"Message error") },
{ SST(0x44, 0x00, SS_FATAL | ENXIO,
"Internal target failure") },
{ SST(0x44, 0x01, SS_RDEF,
"Persistent reservation information lost") },
{ SST(0x44, 0x71, SS_RDEF,
"ATA device failed set features") },
{ SST(0x45, 0x00, SS_RDEF,
"Select or reselect failure") },
{ SST(0x46, 0x00, SS_RDEF,
"Unsuccessful soft reset") },
{ SST(0x47, 0x00, SS_RDEF,
"SCSI parity error") },
{ SST(0x47, 0x01, SS_RDEF,
"Data phase CRC error detected") },
{ SST(0x47, 0x02, SS_RDEF,
"SCSI parity error detected during ST data phase") },
{ SST(0x47, 0x03, SS_RDEF,
"Information unit iuCRC error detected") },
{ SST(0x47, 0x04, SS_RDEF,
"Asynchronous information protection error detected") },
{ SST(0x47, 0x05, SS_RDEF,
"Protocol service CRC error") },
{ SST(0x47, 0x06, SS_RDEF,
"PHY test function in progress") },
{ SST(0x47, 0x7F, SS_RDEF,
"Some commands cleared by iSCSI protocol event") },
{ SST(0x48, 0x00, SS_RDEF,
"Initiator detected error message received") },
{ SST(0x49, 0x00, SS_RDEF,
"Invalid message error") },
{ SST(0x4A, 0x00, SS_RDEF,
"Command phase error") },
{ SST(0x4B, 0x00, SS_RDEF,
"Data phase error") },
{ SST(0x4B, 0x01, SS_RDEF,
"Invalid target port transfer tag received") },
{ SST(0x4B, 0x02, SS_RDEF,
"Too much write data") },
{ SST(0x4B, 0x03, SS_RDEF,
"ACK/NAK timeout") },
{ SST(0x4B, 0x04, SS_RDEF,
"NAK received") },
{ SST(0x4B, 0x05, SS_RDEF,
"Data offset error") },
{ SST(0x4B, 0x06, SS_RDEF,
"Initiator response timeout") },
{ SST(0x4B, 0x07, SS_RDEF,
"Connection lost") },
{ SST(0x4B, 0x08, SS_RDEF,
"Data-in buffer overflow - data buffer size") },
{ SST(0x4B, 0x09, SS_RDEF,
"Data-in buffer overflow - data buffer descriptor area") },
{ SST(0x4B, 0x0A, SS_RDEF,
"Data-in buffer error") },
{ SST(0x4B, 0x0B, SS_RDEF,
"Data-out buffer overflow - data buffer size") },
{ SST(0x4B, 0x0C, SS_RDEF,
"Data-out buffer overflow - data buffer descriptor area") },
{ SST(0x4B, 0x0D, SS_RDEF,
"Data-out buffer error") },
{ SST(0x4B, 0x0E, SS_RDEF,
"PCIe fabric error") },
{ SST(0x4B, 0x0F, SS_RDEF,
"PCIe completion timeout") },
{ SST(0x4B, 0x10, SS_RDEF,
"PCIe completer abort") },
{ SST(0x4B, 0x11, SS_RDEF,
"PCIe poisoned TLP received") },
{ SST(0x4B, 0x12, SS_RDEF,
"PCIe ECRC check failed") },
{ SST(0x4B, 0x13, SS_RDEF,
"PCIe unsupported request") },
{ SST(0x4B, 0x14, SS_RDEF,
"PCIe ACS violation") },
{ SST(0x4B, 0x15, SS_RDEF,
"PCIe TLP prefix blocket") },
{ SST(0x4C, 0x00, SS_RDEF,
"Logical unit failed self-configuration") },
{ SST(0x4D, 0x00, SS_RDEF,
"Tagged overlapped commands: ASCQ = Queue tag ID") },
{ SST(0x4D, 0xFF, SS_RDEF | SSQ_RANGE,
NULL) },
{ SST(0x4E, 0x00, SS_RDEF,
"Overlapped commands attempted") },
{ SST(0x50, 0x00, SS_RDEF,
"Write append error") },
{ SST(0x50, 0x01, SS_RDEF,
"Write append position error") },
{ SST(0x50, 0x02, SS_RDEF,
"Position error related to timing") },
{ SST(0x51, 0x00, SS_RDEF,
"Erase failure") },
{ SST(0x51, 0x01, SS_RDEF,
"Erase failure - incomplete erase operation detected") },
{ SST(0x52, 0x00, SS_RDEF,
"Cartridge fault") },
{ SST(0x53, 0x00, SS_RDEF,
"Media load or eject failed") },
{ SST(0x53, 0x01, SS_RDEF,
"Unload tape failure") },
{ SST(0x53, 0x02, SS_RDEF,
"Medium removal prevented") },
{ SST(0x53, 0x03, SS_RDEF,
"Medium removal prevented by data transfer element") },
{ SST(0x53, 0x04, SS_RDEF,
"Medium thread or unthread failure") },
{ SST(0x53, 0x05, SS_RDEF,
"Volume identifier invalid") },
{ SST(0x53, 0x06, SS_RDEF,
"Volume identifier missing") },
{ SST(0x53, 0x07, SS_RDEF,
"Duplicate volume identifier") },
{ SST(0x53, 0x08, SS_RDEF,
"Element status unknown") },
{ SST(0x53, 0x09, SS_RDEF,
"Data transfer device error - load failed") },
{ SST(0x53, 0x0A, SS_RDEF,
"Data transfer device error - unload failed") },
{ SST(0x53, 0x0B, SS_RDEF,
"Data transfer device error - unload missing") },
{ SST(0x53, 0x0C, SS_RDEF,
"Data transfer device error - eject failed") },
{ SST(0x53, 0x0D, SS_RDEF,
"Data transfer device error - library communication failed") },
{ SST(0x54, 0x00, SS_RDEF,
"SCSI to host system interface failure") },
{ SST(0x55, 0x00, SS_RDEF,
"System resource failure") },
{ SST(0x55, 0x01, SS_FATAL | ENOSPC,
"System buffer full") },
{ SST(0x55, 0x02, SS_RDEF,
"Insufficient reservation resources") },
{ SST(0x55, 0x03, SS_RDEF,
"Insufficient resources") },
{ SST(0x55, 0x04, SS_RDEF,
"Insufficient registration resources") },
{ SST(0x55, 0x05, SS_RDEF,
"Insufficient access control resources") },
{ SST(0x55, 0x06, SS_RDEF,
"Auxiliary memory out of space") },
{ SST(0x55, 0x07, SS_RDEF,
"Quota error") },
{ SST(0x55, 0x08, SS_RDEF,
"Maximum number of supplemental decryption keys exceeded") },
{ SST(0x55, 0x09, SS_RDEF,
"Medium auxiliary memory not accessible") },
{ SST(0x55, 0x0A, SS_RDEF,
"Data currently unavailable") },
{ SST(0x55, 0x0B, SS_RDEF,
"Insufficient power for operation") },
{ SST(0x55, 0x0C, SS_RDEF,
"Insufficient resources to create ROD") },
{ SST(0x55, 0x0D, SS_RDEF,
"Insufficient resources to create ROD token") },
{ SST(0x55, 0x0E, SS_RDEF,
"Insufficient zone resources") },
{ SST(0x55, 0x0F, SS_RDEF,
"Insufficient zone resources to complete write") },
{ SST(0x55, 0x10, SS_RDEF,
"Maximum number of streams open") },
{ SST(0x55, 0x11, SS_RDEF,
"Insufficient resources to bind") },
{ SST(0x57, 0x00, SS_RDEF,
"Unable to recover table-of-contents") },
{ SST(0x58, 0x00, SS_RDEF,
"Generation does not exist") },
{ SST(0x59, 0x00, SS_RDEF,
"Updated block read") },
{ SST(0x5A, 0x00, SS_RDEF,
"Operator request or state change input") },
{ SST(0x5A, 0x01, SS_RDEF,
"Operator medium removal request") },
{ SST(0x5A, 0x02, SS_RDEF,
"Operator selected write protect") },
{ SST(0x5A, 0x03, SS_RDEF,
"Operator selected write permit") },
{ SST(0x5B, 0x00, SS_RDEF,
"Log exception") },
{ SST(0x5B, 0x01, SS_RDEF,
"Threshold condition met") },
{ SST(0x5B, 0x02, SS_RDEF,
"Log counter at maximum") },
{ SST(0x5B, 0x03, SS_RDEF,
"Log list codes exhausted") },
{ SST(0x5C, 0x00, SS_RDEF,
"RPL status change") },
{ SST(0x5C, 0x01, SS_NOP | SSQ_PRINT_SENSE,
"Spindles synchronized") },
{ SST(0x5C, 0x02, SS_RDEF,
"Spindles not synchronized") },
{ SST(0x5D, 0x00, SS_NOP | SSQ_PRINT_SENSE,
"Failure prediction threshold exceeded") },
{ SST(0x5D, 0x01, SS_NOP | SSQ_PRINT_SENSE,
"Media failure prediction threshold exceeded") },
{ SST(0x5D, 0x02, SS_NOP | SSQ_PRINT_SENSE,
"Logical unit failure prediction threshold exceeded") },
{ SST(0x5D, 0x03, SS_NOP | SSQ_PRINT_SENSE,
"Spare area exhaustion prediction threshold exceeded") },
{ SST(0x5D, 0x10, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure general hard drive failure") },
{ SST(0x5D, 0x11, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure drive error rate too high") },
{ SST(0x5D, 0x12, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure data error rate too high") },
{ SST(0x5D, 0x13, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure seek error rate too high") },
{ SST(0x5D, 0x14, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure too many block reassigns") },
{ SST(0x5D, 0x15, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure access times too high") },
{ SST(0x5D, 0x16, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure start unit times too high") },
{ SST(0x5D, 0x17, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure channel parametrics") },
{ SST(0x5D, 0x18, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure controller detected") },
{ SST(0x5D, 0x19, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure throughput performance") },
{ SST(0x5D, 0x1A, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure seek time performance") },
{ SST(0x5D, 0x1B, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure spin-up retry count") },
{ SST(0x5D, 0x1C, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure drive calibration retry count") },
{ SST(0x5D, 0x1D, SS_NOP | SSQ_PRINT_SENSE,
"Hardware impending failure power loss protection circuit") },
{ SST(0x5D, 0x20, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure general hard drive failure") },
{ SST(0x5D, 0x21, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure drive error rate too high") },
{ SST(0x5D, 0x22, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure data error rate too high") },
{ SST(0x5D, 0x23, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure seek error rate too high") },
{ SST(0x5D, 0x24, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure too many block reassigns") },
{ SST(0x5D, 0x25, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure access times too high") },
{ SST(0x5D, 0x26, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure start unit times too high") },
{ SST(0x5D, 0x27, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure channel parametrics") },
{ SST(0x5D, 0x28, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure controller detected") },
{ SST(0x5D, 0x29, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure throughput performance") },
{ SST(0x5D, 0x2A, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure seek time performance") },
{ SST(0x5D, 0x2B, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure spin-up retry count") },
{ SST(0x5D, 0x2C, SS_NOP | SSQ_PRINT_SENSE,
"Controller impending failure drive calibration retry count") },
{ SST(0x5D, 0x30, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure general hard drive failure") },
{ SST(0x5D, 0x31, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure drive error rate too high") },
{ SST(0x5D, 0x32, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure data error rate too high") },
{ SST(0x5D, 0x33, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure seek error rate too high") },
{ SST(0x5D, 0x34, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure too many block reassigns") },
{ SST(0x5D, 0x35, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure access times too high") },
{ SST(0x5D, 0x36, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure start unit times too high") },
{ SST(0x5D, 0x37, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure channel parametrics") },
{ SST(0x5D, 0x38, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure controller detected") },
{ SST(0x5D, 0x39, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure throughput performance") },
{ SST(0x5D, 0x3A, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure seek time performance") },
{ SST(0x5D, 0x3B, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure spin-up retry count") },
{ SST(0x5D, 0x3C, SS_NOP | SSQ_PRINT_SENSE,
"Data channel impending failure drive calibration retry count") },
{ SST(0x5D, 0x40, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure general hard drive failure") },
{ SST(0x5D, 0x41, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure drive error rate too high") },
{ SST(0x5D, 0x42, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure data error rate too high") },
{ SST(0x5D, 0x43, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure seek error rate too high") },
{ SST(0x5D, 0x44, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure too many block reassigns") },
{ SST(0x5D, 0x45, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure access times too high") },
{ SST(0x5D, 0x46, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure start unit times too high") },
{ SST(0x5D, 0x47, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure channel parametrics") },
{ SST(0x5D, 0x48, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure controller detected") },
{ SST(0x5D, 0x49, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure throughput performance") },
{ SST(0x5D, 0x4A, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure seek time performance") },
{ SST(0x5D, 0x4B, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure spin-up retry count") },
{ SST(0x5D, 0x4C, SS_NOP | SSQ_PRINT_SENSE,
"Servo impending failure drive calibration retry count") },
{ SST(0x5D, 0x50, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure general hard drive failure") },
{ SST(0x5D, 0x51, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure drive error rate too high") },
{ SST(0x5D, 0x52, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure data error rate too high") },
{ SST(0x5D, 0x53, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure seek error rate too high") },
{ SST(0x5D, 0x54, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure too many block reassigns") },
{ SST(0x5D, 0x55, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure access times too high") },
{ SST(0x5D, 0x56, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure start unit times too high") },
{ SST(0x5D, 0x57, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure channel parametrics") },
{ SST(0x5D, 0x58, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure controller detected") },
{ SST(0x5D, 0x59, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure throughput performance") },
{ SST(0x5D, 0x5A, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure seek time performance") },
{ SST(0x5D, 0x5B, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure spin-up retry count") },
{ SST(0x5D, 0x5C, SS_NOP | SSQ_PRINT_SENSE,
"Spindle impending failure drive calibration retry count") },
{ SST(0x5D, 0x60, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure general hard drive failure") },
{ SST(0x5D, 0x61, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure drive error rate too high") },
{ SST(0x5D, 0x62, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure data error rate too high") },
{ SST(0x5D, 0x63, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure seek error rate too high") },
{ SST(0x5D, 0x64, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure too many block reassigns") },
{ SST(0x5D, 0x65, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure access times too high") },
{ SST(0x5D, 0x66, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure start unit times too high") },
{ SST(0x5D, 0x67, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure channel parametrics") },
{ SST(0x5D, 0x68, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure controller detected") },
{ SST(0x5D, 0x69, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure throughput performance") },
{ SST(0x5D, 0x6A, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure seek time performance") },
{ SST(0x5D, 0x6B, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure spin-up retry count") },
{ SST(0x5D, 0x6C, SS_NOP | SSQ_PRINT_SENSE,
"Firmware impending failure drive calibration retry count") },
{ SST(0x5D, 0x73, SS_NOP | SSQ_PRINT_SENSE,
"Media impending failure endurance limit met") },
{ SST(0x5D, 0xFF, SS_NOP | SSQ_PRINT_SENSE,
"Failure prediction threshold exceeded (false)") },
{ SST(0x5E, 0x00, SS_RDEF,
"Low power condition on") },
{ SST(0x5E, 0x01, SS_RDEF,
"Idle condition activated by timer") },
{ SST(0x5E, 0x02, SS_RDEF,
"Standby condition activated by timer") },
{ SST(0x5E, 0x03, SS_RDEF,
"Idle condition activated by command") },
{ SST(0x5E, 0x04, SS_RDEF,
"Standby condition activated by command") },
{ SST(0x5E, 0x05, SS_RDEF,
"Idle-B condition activated by timer") },
{ SST(0x5E, 0x06, SS_RDEF,
"Idle-B condition activated by command") },
{ SST(0x5E, 0x07, SS_RDEF,
"Idle-C condition activated by timer") },
{ SST(0x5E, 0x08, SS_RDEF,
"Idle-C condition activated by command") },
{ SST(0x5E, 0x09, SS_RDEF,
"Standby-Y condition activated by timer") },
{ SST(0x5E, 0x0A, SS_RDEF,
"Standby-Y condition activated by command") },
{ SST(0x5E, 0x41, SS_RDEF,
"Power state change to active") },
{ SST(0x5E, 0x42, SS_RDEF,
"Power state change to idle") },
{ SST(0x5E, 0x43, SS_RDEF,
"Power state change to standby") },
{ SST(0x5E, 0x45, SS_RDEF,
"Power state change to sleep") },
{ SST(0x5E, 0x47, SS_RDEF,
"Power state change to device control") },
{ SST(0x60, 0x00, SS_RDEF,
"Lamp failure") },
{ SST(0x61, 0x00, SS_RDEF,
"Video acquisition error") },
{ SST(0x61, 0x01, SS_RDEF,
"Unable to acquire video") },
{ SST(0x61, 0x02, SS_RDEF,
"Out of focus") },
{ SST(0x62, 0x00, SS_RDEF,
"Scan head positioning error") },
{ SST(0x63, 0x00, SS_RDEF,
"End of user area encountered on this track") },
{ SST(0x63, 0x01, SS_FATAL | ENOSPC,
"Packet does not fit in available space") },
{ SST(0x64, 0x00, SS_FATAL | ENXIO,
"Illegal mode for this track") },
{ SST(0x64, 0x01, SS_RDEF,
"Invalid packet size") },
{ SST(0x65, 0x00, SS_RDEF,
"Voltage fault") },
{ SST(0x66, 0x00, SS_RDEF,
"Automatic document feeder cover up") },
{ SST(0x66, 0x01, SS_RDEF,
"Automatic document feeder lift up") },
{ SST(0x66, 0x02, SS_RDEF,
"Document jam in automatic document feeder") },
{ SST(0x66, 0x03, SS_RDEF,
"Document miss feed automatic in document feeder") },
{ SST(0x67, 0x00, SS_RDEF,
"Configuration failure") },
{ SST(0x67, 0x01, SS_RDEF,
"Configuration of incapable logical units failed") },
{ SST(0x67, 0x02, SS_RDEF,
"Add logical unit failed") },
{ SST(0x67, 0x03, SS_RDEF,
"Modification of logical unit failed") },
{ SST(0x67, 0x04, SS_RDEF,
"Exchange of logical unit failed") },
{ SST(0x67, 0x05, SS_RDEF,
"Remove of logical unit failed") },
{ SST(0x67, 0x06, SS_RDEF,
"Attachment of logical unit failed") },
{ SST(0x67, 0x07, SS_RDEF,
"Creation of logical unit failed") },
{ SST(0x67, 0x08, SS_RDEF,
"Assign failure occurred") },
{ SST(0x67, 0x09, SS_RDEF,
"Multiply assigned logical unit") },
{ SST(0x67, 0x0A, SS_RDEF,
"Set target port groups command failed") },
{ SST(0x67, 0x0B, SS_RDEF,
"ATA device feature not enabled") },
{ SST(0x67, 0x0C, SS_FATAL | EIO,
"Command rejected") },
{ SST(0x67, 0x0D, SS_FATAL | EINVAL,
"Explicit bind not allowed") },
{ SST(0x68, 0x00, SS_RDEF,
"Logical unit not configured") },
{ SST(0x68, 0x01, SS_RDEF,
"Subsidiary logical unit not configured") },
{ SST(0x69, 0x00, SS_RDEF,
"Data loss on logical unit") },
{ SST(0x69, 0x01, SS_RDEF,
"Multiple logical unit failures") },
{ SST(0x69, 0x02, SS_RDEF,
"Parity/data mismatch") },
{ SST(0x6A, 0x00, SS_RDEF,
"Informational, refer to log") },
{ SST(0x6B, 0x00, SS_RDEF,
"State change has occurred") },
{ SST(0x6B, 0x01, SS_RDEF,
"Redundancy level got better") },
{ SST(0x6B, 0x02, SS_RDEF,
"Redundancy level got worse") },
{ SST(0x6C, 0x00, SS_RDEF,
"Rebuild failure occurred") },
{ SST(0x6D, 0x00, SS_RDEF,
"Recalculate failure occurred") },
{ SST(0x6E, 0x00, SS_RDEF,
"Command to logical unit failed") },
{ SST(0x6F, 0x00, SS_RDEF,
"Copy protection key exchange failure - authentication failure") },
{ SST(0x6F, 0x01, SS_RDEF,
"Copy protection key exchange failure - key not present") },
{ SST(0x6F, 0x02, SS_RDEF,
"Copy protection key exchange failure - key not established") },
{ SST(0x6F, 0x03, SS_RDEF,
"Read of scrambled sector without authentication") },
{ SST(0x6F, 0x04, SS_RDEF,
"Media region code is mismatched to logical unit region") },
{ SST(0x6F, 0x05, SS_RDEF,
"Drive region must be permanent/region reset count error") },
{ SST(0x6F, 0x06, SS_RDEF,
"Insufficient block count for binding NONCE recording") },
{ SST(0x6F, 0x07, SS_RDEF,
"Conflict in binding NONCE recording") },
{ SST(0x6F, 0x08, SS_FATAL | EPERM,
"Insufficient permission") },
{ SST(0x6F, 0x09, SS_FATAL | EINVAL,
"Invalid drive-host pairing server") },
{ SST(0x6F, 0x0A, SS_RDEF,
"Drive-host pairing suspended") },
{ SST(0x70, 0x00, SS_RDEF,
"Decompression exception short: ASCQ = Algorithm ID") },
{ SST(0x70, 0xFF, SS_RDEF | SSQ_RANGE,
NULL) },
{ SST(0x71, 0x00, SS_RDEF,
"Decompression exception long: ASCQ = Algorithm ID") },
{ SST(0x71, 0xFF, SS_RDEF | SSQ_RANGE,
NULL) },
{ SST(0x72, 0x00, SS_RDEF,
"Session fixation error") },
{ SST(0x72, 0x01, SS_RDEF,
"Session fixation error writing lead-in") },
{ SST(0x72, 0x02, SS_RDEF,
"Session fixation error writing lead-out") },
{ SST(0x72, 0x03, SS_RDEF,
"Session fixation error - incomplete track in session") },
{ SST(0x72, 0x04, SS_RDEF,
"Empty or partially written reserved track") },
{ SST(0x72, 0x05, SS_RDEF,
"No more track reservations allowed") },
{ SST(0x72, 0x06, SS_RDEF,
"RMZ extension is not allowed") },
{ SST(0x72, 0x07, SS_RDEF,
"No more test zone extensions are allowed") },
{ SST(0x73, 0x00, SS_RDEF,
"CD control error") },
{ SST(0x73, 0x01, SS_RDEF,
"Power calibration area almost full") },
{ SST(0x73, 0x02, SS_FATAL | ENOSPC,
"Power calibration area is full") },
{ SST(0x73, 0x03, SS_RDEF,
"Power calibration area error") },
{ SST(0x73, 0x04, SS_RDEF,
"Program memory area update failure") },
{ SST(0x73, 0x05, SS_RDEF,
"Program memory area is full") },
{ SST(0x73, 0x06, SS_RDEF,
"RMA/PMA is almost full") },
{ SST(0x73, 0x10, SS_RDEF,
"Current power calibration area almost full") },
{ SST(0x73, 0x11, SS_RDEF,
"Current power calibration area is full") },
{ SST(0x73, 0x17, SS_RDEF,
"RDZ is full") },
{ SST(0x74, 0x00, SS_RDEF,
"Security error") },
{ SST(0x74, 0x01, SS_RDEF,
"Unable to decrypt data") },
{ SST(0x74, 0x02, SS_RDEF,
"Unencrypted data encountered while decrypting") },
{ SST(0x74, 0x03, SS_RDEF,
"Incorrect data encryption key") },
{ SST(0x74, 0x04, SS_RDEF,
"Cryptographic integrity validation failed") },
{ SST(0x74, 0x05, SS_RDEF,
"Error decrypting data") },
{ SST(0x74, 0x06, SS_RDEF,
"Unknown signature verification key") },
{ SST(0x74, 0x07, SS_RDEF,
"Encryption parameters not useable") },
{ SST(0x74, 0x08, SS_RDEF,
"Digital signature validation failure") },
{ SST(0x74, 0x09, SS_RDEF,
"Encryption mode mismatch on read") },
{ SST(0x74, 0x0A, SS_RDEF,
"Encrypted block not raw read enabled") },
{ SST(0x74, 0x0B, SS_RDEF,
"Incorrect encryption parameters") },
{ SST(0x74, 0x0C, SS_RDEF,
"Unable to decrypt parameter list") },
{ SST(0x74, 0x0D, SS_RDEF,
"Encryption algorithm disabled") },
{ SST(0x74, 0x10, SS_RDEF,
"SA creation parameter value invalid") },
{ SST(0x74, 0x11, SS_RDEF,
"SA creation parameter value rejected") },
{ SST(0x74, 0x12, SS_RDEF,
"Invalid SA usage") },
{ SST(0x74, 0x21, SS_RDEF,
"Data encryption configuration prevented") },
{ SST(0x74, 0x30, SS_RDEF,
"SA creation parameter not supported") },
{ SST(0x74, 0x40, SS_RDEF,
"Authentication failed") },
{ SST(0x74, 0x61, SS_RDEF,
"External data encryption key manager access error") },
{ SST(0x74, 0x62, SS_RDEF,
"External data encryption key manager error") },
{ SST(0x74, 0x63, SS_RDEF,
"External data encryption key not found") },
{ SST(0x74, 0x64, SS_RDEF,
"External data encryption request not authorized") },
{ SST(0x74, 0x6E, SS_RDEF,
"External data encryption control timeout") },
{ SST(0x74, 0x6F, SS_RDEF,
"External data encryption control error") },
{ SST(0x74, 0x71, SS_FATAL | EACCES,
"Logical unit access not authorized") },
{ SST(0x74, 0x79, SS_FATAL | EACCES,
"Security conflict in translated device") }
};
const u_int asc_table_size = nitems(asc_table);
struct asc_key
{
int asc;
int ascq;
};
static int
ascentrycomp(const void *key, const void *member)
{
int asc;
int ascq;
const struct asc_table_entry *table_entry;
asc = ((const struct asc_key *)key)->asc;
ascq = ((const struct asc_key *)key)->ascq;
table_entry = (const struct asc_table_entry *)member;
if (asc >= table_entry->asc) {
if (asc > table_entry->asc)
return (1);
if (ascq <= table_entry->ascq) {
if (ascq == table_entry->ascq
|| ((table_entry->action & SSQ_RANGE) != 0
&& ascq >= (table_entry - 1)->ascq))
return (0);
return (-1);
}
return (1);
}
return (-1);
}
static int
senseentrycomp(const void *key, const void *member)
{
int sense_key;
const struct sense_key_table_entry *table_entry;
sense_key = *((const int *)key);
table_entry = (const struct sense_key_table_entry *)member;
if (sense_key >= table_entry->sense_key) {
if (sense_key == table_entry->sense_key)
return (0);
return (1);
}
return (-1);
}
static void
fetchtableentries(int sense_key, int asc, int ascq,
struct scsi_inquiry_data *inq_data,
const struct sense_key_table_entry **sense_entry,
const struct asc_table_entry **asc_entry)
{
caddr_t match;
const struct asc_table_entry *asc_tables[2];
const struct sense_key_table_entry *sense_tables[2];
struct asc_key asc_ascq;
size_t asc_tables_size[2];
size_t sense_tables_size[2];
int num_asc_tables;
int num_sense_tables;
int i;
*sense_entry = NULL;
*asc_entry = NULL;
match = NULL;
if (inq_data != NULL)
match = cam_quirkmatch((caddr_t)inq_data,
(caddr_t)sense_quirk_table,
sense_quirk_table_size,
sizeof(*sense_quirk_table),
scsi_inquiry_match);
if (match != NULL) {
struct scsi_sense_quirk_entry *quirk;
quirk = (struct scsi_sense_quirk_entry *)match;
asc_tables[0] = quirk->asc_info;
asc_tables_size[0] = quirk->num_ascs;
asc_tables[1] = asc_table;
asc_tables_size[1] = asc_table_size;
num_asc_tables = 2;
sense_tables[0] = quirk->sense_key_info;
sense_tables_size[0] = quirk->num_sense_keys;
sense_tables[1] = sense_key_table;
sense_tables_size[1] = nitems(sense_key_table);
num_sense_tables = 2;
} else {
asc_tables[0] = asc_table;
asc_tables_size[0] = asc_table_size;
num_asc_tables = 1;
sense_tables[0] = sense_key_table;
sense_tables_size[0] = nitems(sense_key_table);
num_sense_tables = 1;
}
asc_ascq.asc = asc;
asc_ascq.ascq = ascq;
for (i = 0; i < num_asc_tables; i++) {
void *found_entry;
found_entry = bsearch(&asc_ascq, asc_tables[i],
asc_tables_size[i],
sizeof(**asc_tables),
ascentrycomp);
if (found_entry) {
*asc_entry = (struct asc_table_entry *)found_entry;
if (((*asc_entry)->action & SSQ_RANGE) != 0)
(*asc_entry)--;
break;
}
}
for (i = 0; i < num_sense_tables; i++) {
void *found_entry;
found_entry = bsearch(&sense_key, sense_tables[i],
sense_tables_size[i],
sizeof(**sense_tables),
senseentrycomp);
if (found_entry) {
*sense_entry =
(struct sense_key_table_entry *)found_entry;
break;
}
}
}
void
scsi_sense_desc(int sense_key, int asc, int ascq,
struct scsi_inquiry_data *inq_data,
const char **sense_key_desc, const char **asc_desc)
{
const struct asc_table_entry *asc_entry;
const struct sense_key_table_entry *sense_entry;
fetchtableentries(sense_key, asc, ascq,
inq_data,
&sense_entry,
&asc_entry);
if (sense_entry != NULL)
*sense_key_desc = sense_entry->desc;
else
*sense_key_desc = "Invalid Sense Key";
if (asc_entry != NULL)
*asc_desc = asc_entry->desc;
else if (asc >= 0x80 && asc <= 0xff)
*asc_desc = "Vendor Specific ASC";
else if (ascq >= 0x80 && ascq <= 0xff)
*asc_desc = "Vendor Specific ASCQ";
else
*asc_desc = "Reserved ASC/ASCQ pair";
}
scsi_sense_action
scsi_error_action(struct ccb_scsiio *csio, struct scsi_inquiry_data *inq_data,
uint32_t sense_flags)
{
const struct asc_table_entry *asc_entry;
const struct sense_key_table_entry *sense_entry;
int error_code, sense_key, asc, ascq;
scsi_sense_action action;
if (!scsi_extract_sense_ccb((union ccb *)csio,
&error_code, &sense_key, &asc, &ascq)) {
action = SS_RDEF;
} else if ((error_code == SSD_DEFERRED_ERROR)
|| (error_code == SSD_DESC_DEFERRED_ERROR)) {
action = SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE;
} else {
fetchtableentries(sense_key, asc, ascq,
inq_data,
&sense_entry,
&asc_entry);
if (asc_entry != NULL
&& (asc != 0 || ascq != 0))
action = asc_entry->action;
else if (sense_entry != NULL)
action = sense_entry->action;
else
action = SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE;
if (sense_key == SSD_KEY_RECOVERED_ERROR) {
action &= ~(SS_MASK|SSQ_MASK|SS_ERRMASK);
action |= SS_NOP|SSQ_PRINT_SENSE;
} else if (sense_key == SSD_KEY_ILLEGAL_REQUEST) {
if ((sense_flags & SF_QUIET_IR) != 0)
action &= ~SSQ_PRINT_SENSE;
} else if (sense_key == SSD_KEY_UNIT_ATTENTION) {
if ((sense_flags & SF_RETRY_UA) != 0
&& (action & SS_MASK) == SS_FAIL) {
action &= ~(SS_MASK|SSQ_MASK);
action |= SS_RETRY|SSQ_DECREMENT_COUNT|
SSQ_PRINT_SENSE;
}
action |= SSQ_UA;
}
}
if ((action & SS_MASK) >= SS_START &&
(sense_flags & SF_NO_RECOVERY)) {
action &= ~SS_MASK;
action |= SS_FAIL;
} else if ((action & SS_MASK) == SS_RETRY &&
(sense_flags & SF_NO_RETRY)) {
action &= ~SS_MASK;
action |= SS_FAIL;
}
if ((sense_flags & SF_PRINT_ALWAYS) != 0)
action |= SSQ_PRINT_SENSE;
else if ((sense_flags & SF_NO_PRINT) != 0)
action &= ~SSQ_PRINT_SENSE;
return (action);
}
char *
scsi_cdb_string(uint8_t *cdb_ptr, char *cdb_string, size_t len)
{
struct sbuf sb;
int error;
if (len == 0)
return ("");
sbuf_new(&sb, cdb_string, len, SBUF_FIXEDLEN);
scsi_cdb_sbuf(cdb_ptr, &sb);
error = sbuf_finish(&sb);
if (error != 0 &&
#ifdef _KERNEL
error != ENOMEM)
#else
errno != ENOMEM)
#endif
return ("");
return(sbuf_data(&sb));
}
void
scsi_cdb_sbuf(uint8_t *cdb_ptr, struct sbuf *sb)
{
uint8_t cdb_len;
int i;
if (cdb_ptr == NULL)
return;
switch((*cdb_ptr >> 5) & 0x7) {
case 0:
cdb_len = 6;
break;
case 1:
case 2:
cdb_len = 10;
break;
case 3:
case 6:
case 7:
cdb_len = 1;
break;
case 4:
cdb_len = 16;
break;
case 5:
cdb_len = 12;
break;
}
for (i = 0; i < cdb_len; i++)
sbuf_printf(sb, "%02hhx ", cdb_ptr[i]);
return;
}
const char *
scsi_status_string(struct ccb_scsiio *csio)
{
switch(csio->scsi_status) {
case SCSI_STATUS_OK:
return("OK");
case SCSI_STATUS_CHECK_COND:
return("Check Condition");
case SCSI_STATUS_BUSY:
return("Busy");
case SCSI_STATUS_INTERMED:
return("Intermediate");
case SCSI_STATUS_INTERMED_COND_MET:
return("Intermediate-Condition Met");
case SCSI_STATUS_RESERV_CONFLICT:
return("Reservation Conflict");
case SCSI_STATUS_CMD_TERMINATED:
return("Command Terminated");
case SCSI_STATUS_QUEUE_FULL:
return("Queue Full");
case SCSI_STATUS_ACA_ACTIVE:
return("ACA Active");
case SCSI_STATUS_TASK_ABORTED:
return("Task Aborted");
default: {
static char unkstr[64];
snprintf(unkstr, sizeof(unkstr), "Unknown %#x",
csio->scsi_status);
return(unkstr);
}
}
}
#ifdef _KERNEL
int
scsi_command_string(struct ccb_scsiio *csio, struct sbuf *sb)
#else
int
scsi_command_string(struct cam_device *device, struct ccb_scsiio *csio,
struct sbuf *sb)
#endif
{
struct scsi_inquiry_data *inq_data;
#ifdef _KERNEL
struct ccb_getdev *cgd;
#endif
#ifdef _KERNEL
if ((cgd = (struct ccb_getdev*)xpt_alloc_ccb_nowait()) == NULL)
return(-1);
xpt_gdev_type(cgd, csio->ccb_h.path);
if (cgd->ccb_h.status == CAM_DEV_NOT_THERE)
cgd->inq_data.device = T_DIRECT;
inq_data = &cgd->inq_data;
#else
inq_data = &device->inq_data;
#endif
sbuf_printf(sb, "%s. CDB: ",
scsi_op_desc(scsiio_cdb_ptr(csio)[0], inq_data));
scsi_cdb_sbuf(scsiio_cdb_ptr(csio), sb);
#ifdef _KERNEL
xpt_free_ccb((union ccb *)cgd);
#endif
return(0);
}
void
scsi_desc_iterate(struct scsi_sense_data_desc *sense, u_int sense_len,
int (*iter_func)(struct scsi_sense_data_desc *sense,
u_int, struct scsi_sense_desc_header *,
void *), void *arg)
{
int cur_pos;
int desc_len;
if (SSD_DESC_IS_PRESENT(sense, sense_len, extra_len) == 0)
return;
desc_len = sense_len -offsetof(struct scsi_sense_data_desc, sense_desc);
desc_len = MIN(desc_len, MIN(sense->extra_len, SSD_EXTRA_MAX));
desc_len -= sizeof(struct scsi_sense_desc_header);
for (cur_pos = 0; cur_pos < desc_len;) {
struct scsi_sense_desc_header *header;
header = (struct scsi_sense_desc_header *)
&sense->sense_desc[cur_pos];
if (header->length > (desc_len - cur_pos))
break;
if (iter_func(sense, sense_len, header, arg) != 0)
break;
cur_pos += sizeof(*header) + header->length;
}
}
struct scsi_find_desc_info {
uint8_t desc_type;
struct scsi_sense_desc_header *header;
};
static int
scsi_find_desc_func(struct scsi_sense_data_desc *sense, u_int sense_len,
struct scsi_sense_desc_header *header, void *arg)
{
struct scsi_find_desc_info *desc_info;
desc_info = (struct scsi_find_desc_info *)arg;
if (header->desc_type == desc_info->desc_type) {
desc_info->header = header;
return (1);
} else
return (0);
}
uint8_t *
scsi_find_desc(struct scsi_sense_data_desc *sense, u_int sense_len,
uint8_t desc_type)
{
struct scsi_find_desc_info desc_info;
desc_info.desc_type = desc_type;
desc_info.header = NULL;
scsi_desc_iterate(sense, sense_len, scsi_find_desc_func, &desc_info);
return ((uint8_t *)desc_info.header);
}
static void
scsi_set_sense_data_desc_va(struct scsi_sense_data *sense_data,
u_int *sense_len, scsi_sense_data_type sense_format, int current_error,
int sense_key, int asc, int ascq, va_list ap)
{
struct scsi_sense_data_desc *sense;
scsi_sense_elem_type elem_type;
int space, len;
uint8_t *desc, *data;
memset(sense_data, 0, sizeof(*sense_data));
sense = (struct scsi_sense_data_desc *)sense_data;
if (current_error != 0)
sense->error_code = SSD_DESC_CURRENT_ERROR;
else
sense->error_code = SSD_DESC_DEFERRED_ERROR;
sense->sense_key = sense_key;
sense->add_sense_code = asc;
sense->add_sense_code_qual = ascq;
sense->flags = 0;
desc = &sense->sense_desc[0];
space = *sense_len - offsetof(struct scsi_sense_data_desc, sense_desc);
while ((elem_type = va_arg(ap, scsi_sense_elem_type)) !=
SSD_ELEM_NONE) {
if (elem_type >= SSD_ELEM_MAX) {
printf("%s: invalid sense type %d\n", __func__,
elem_type);
break;
}
len = va_arg(ap, int);
data = va_arg(ap, uint8_t *);
switch (elem_type) {
case SSD_ELEM_SKIP:
break;
case SSD_ELEM_DESC:
if (space < len) {
sense->flags |= SSDD_SDAT_OVFL;
break;
}
bcopy(data, desc, len);
desc += len;
space -= len;
break;
case SSD_ELEM_SKS: {
struct scsi_sense_sks *sks = (void *)desc;
if (len > sizeof(sks->sense_key_spec))
break;
if (space < sizeof(*sks)) {
sense->flags |= SSDD_SDAT_OVFL;
break;
}
sks->desc_type = SSD_DESC_SKS;
sks->length = sizeof(*sks) -
(offsetof(struct scsi_sense_sks, length) + 1);
bcopy(data, &sks->sense_key_spec, len);
desc += sizeof(*sks);
space -= sizeof(*sks);
break;
}
case SSD_ELEM_COMMAND: {
struct scsi_sense_command *cmd = (void *)desc;
if (len > sizeof(cmd->command_info))
break;
if (space < sizeof(*cmd)) {
sense->flags |= SSDD_SDAT_OVFL;
break;
}
cmd->desc_type = SSD_DESC_COMMAND;
cmd->length = sizeof(*cmd) -
(offsetof(struct scsi_sense_command, length) + 1);
bcopy(data, &cmd->command_info[
sizeof(cmd->command_info) - len], len);
desc += sizeof(*cmd);
space -= sizeof(*cmd);
break;
}
case SSD_ELEM_INFO: {
struct scsi_sense_info *info = (void *)desc;
if (len > sizeof(info->info))
break;
if (space < sizeof(*info)) {
sense->flags |= SSDD_SDAT_OVFL;
break;
}
info->desc_type = SSD_DESC_INFO;
info->length = sizeof(*info) -
(offsetof(struct scsi_sense_info, length) + 1);
info->byte2 = SSD_INFO_VALID;
bcopy(data, &info->info[sizeof(info->info) - len], len);
desc += sizeof(*info);
space -= sizeof(*info);
break;
}
case SSD_ELEM_FRU: {
struct scsi_sense_fru *fru = (void *)desc;
if (len > sizeof(fru->fru))
break;
if (space < sizeof(*fru)) {
sense->flags |= SSDD_SDAT_OVFL;
break;
}
fru->desc_type = SSD_DESC_FRU;
fru->length = sizeof(*fru) -
(offsetof(struct scsi_sense_fru, length) + 1);
fru->fru = *data;
desc += sizeof(*fru);
space -= sizeof(*fru);
break;
}
case SSD_ELEM_STREAM: {
struct scsi_sense_stream *stream = (void *)desc;
if (len > sizeof(stream->byte3))
break;
if (space < sizeof(*stream)) {
sense->flags |= SSDD_SDAT_OVFL;
break;
}
stream->desc_type = SSD_DESC_STREAM;
stream->length = sizeof(*stream) -
(offsetof(struct scsi_sense_stream, length) + 1);
stream->byte3 = *data;
desc += sizeof(*stream);
space -= sizeof(*stream);
break;
}
default:
break;
}
}
sense->extra_len = desc - &sense->sense_desc[0];
*sense_len = offsetof(struct scsi_sense_data_desc, extra_len) + 1 +
sense->extra_len;
}
static void
scsi_set_sense_data_fixed_va(struct scsi_sense_data *sense_data,
u_int *sense_len, scsi_sense_data_type sense_format, int current_error,
int sense_key, int asc, int ascq, va_list ap)
{
struct scsi_sense_data_fixed *sense;
scsi_sense_elem_type elem_type;
uint8_t *data;
int len;
memset(sense_data, 0, sizeof(*sense_data));
sense = (struct scsi_sense_data_fixed *)sense_data;
if (current_error != 0)
sense->error_code = SSD_CURRENT_ERROR;
else
sense->error_code = SSD_DEFERRED_ERROR;
sense->flags = sense_key & SSD_KEY;
sense->extra_len = 0;
if (*sense_len >= 13) {
sense->add_sense_code = asc;
sense->extra_len = MAX(sense->extra_len, 5);
} else
sense->flags |= SSD_SDAT_OVFL;
if (*sense_len >= 14) {
sense->add_sense_code_qual = ascq;
sense->extra_len = MAX(sense->extra_len, 6);
} else
sense->flags |= SSD_SDAT_OVFL;
while ((elem_type = va_arg(ap, scsi_sense_elem_type)) !=
SSD_ELEM_NONE) {
if (elem_type >= SSD_ELEM_MAX) {
printf("%s: invalid sense type %d\n", __func__,
elem_type);
break;
}
len = va_arg(ap, int);
data = va_arg(ap, uint8_t *);
switch (elem_type) {
case SSD_ELEM_SKIP:
break;
case SSD_ELEM_SKS:
if (len > sizeof(sense->sense_key_spec))
break;
if (*sense_len < 18) {
sense->flags |= SSD_SDAT_OVFL;
break;
}
bcopy(data, &sense->sense_key_spec[0], len);
sense->extra_len = MAX(sense->extra_len, 10);
break;
case SSD_ELEM_COMMAND:
if (*sense_len < 12) {
sense->flags |= SSD_SDAT_OVFL;
break;
}
if (len > sizeof(sense->cmd_spec_info)) {
data += len - sizeof(sense->cmd_spec_info);
len = sizeof(sense->cmd_spec_info);
}
bcopy(data, &sense->cmd_spec_info[
sizeof(sense->cmd_spec_info) - len], len);
sense->extra_len = MAX(sense->extra_len, 4);
break;
case SSD_ELEM_INFO:
sense->error_code |= SSD_ERRCODE_VALID;
while (len > sizeof(sense->info)) {
if (data[0] != 0)
sense->error_code &= ~SSD_ERRCODE_VALID;
data ++;
len --;
}
bcopy(data, &sense->info[sizeof(sense->info) - len], len);
break;
case SSD_ELEM_FRU:
if (*sense_len < 15) {
sense->flags |= SSD_SDAT_OVFL;
break;
}
sense->fru = *data;
sense->extra_len = MAX(sense->extra_len, 7);
break;
case SSD_ELEM_STREAM:
sense->flags |= *data &
(SSD_ILI | SSD_EOM | SSD_FILEMARK);
break;
default:
break;
}
}
*sense_len = offsetof(struct scsi_sense_data_fixed, extra_len) + 1 +
sense->extra_len;
}
void
scsi_set_sense_data_va(struct scsi_sense_data *sense_data, u_int *sense_len,
scsi_sense_data_type sense_format, int current_error,
int sense_key, int asc, int ascq, va_list ap)
{
if (*sense_len > SSD_FULL_SIZE)
*sense_len = SSD_FULL_SIZE;
if (sense_format == SSD_TYPE_DESC)
scsi_set_sense_data_desc_va(sense_data, sense_len,
sense_format, current_error, sense_key, asc, ascq, ap);
else
scsi_set_sense_data_fixed_va(sense_data, sense_len,
sense_format, current_error, sense_key, asc, ascq, ap);
}
void
scsi_set_sense_data(struct scsi_sense_data *sense_data,
scsi_sense_data_type sense_format, int current_error,
int sense_key, int asc, int ascq, ...)
{
va_list ap;
u_int sense_len = SSD_FULL_SIZE;
va_start(ap, ascq);
scsi_set_sense_data_va(sense_data, &sense_len, sense_format,
current_error, sense_key, asc, ascq, ap);
va_end(ap);
}
void
scsi_set_sense_data_len(struct scsi_sense_data *sense_data, u_int *sense_len,
scsi_sense_data_type sense_format, int current_error,
int sense_key, int asc, int ascq, ...)
{
va_list ap;
va_start(ap, ascq);
scsi_set_sense_data_va(sense_data, sense_len, sense_format,
current_error, sense_key, asc, ascq, ap);
va_end(ap);
}
int
scsi_get_sense_info(struct scsi_sense_data *sense_data, u_int sense_len,
uint8_t info_type, uint64_t *info, int64_t *signed_info)
{
scsi_sense_data_type sense_type;
if (sense_len == 0)
goto bailout;
sense_type = scsi_sense_type(sense_data);
switch (sense_type) {
case SSD_TYPE_DESC: {
struct scsi_sense_data_desc *sense;
uint8_t *desc;
sense = (struct scsi_sense_data_desc *)sense_data;
desc = scsi_find_desc(sense, sense_len, info_type);
if (desc == NULL)
goto bailout;
switch (info_type) {
case SSD_DESC_INFO: {
struct scsi_sense_info *info_desc;
info_desc = (struct scsi_sense_info *)desc;
if ((info_desc->byte2 & SSD_INFO_VALID) == 0)
goto bailout;
*info = scsi_8btou64(info_desc->info);
if (signed_info != NULL)
*signed_info = *info;
break;
}
case SSD_DESC_COMMAND: {
struct scsi_sense_command *cmd_desc;
cmd_desc = (struct scsi_sense_command *)desc;
*info = scsi_8btou64(cmd_desc->command_info);
if (signed_info != NULL)
*signed_info = *info;
break;
}
case SSD_DESC_FRU: {
struct scsi_sense_fru *fru_desc;
fru_desc = (struct scsi_sense_fru *)desc;
if (fru_desc->fru == 0)
goto bailout;
*info = fru_desc->fru;
if (signed_info != NULL)
*signed_info = (int8_t)fru_desc->fru;
break;
}
default:
goto bailout;
break;
}
break;
}
case SSD_TYPE_FIXED: {
struct scsi_sense_data_fixed *sense;
sense = (struct scsi_sense_data_fixed *)sense_data;
switch (info_type) {
case SSD_DESC_INFO: {
uint32_t info_val;
if ((sense->error_code & SSD_ERRCODE_VALID) == 0)
goto bailout;
if (SSD_FIXED_IS_PRESENT(sense, sense_len, info) == 0)
goto bailout;
info_val = scsi_4btoul(sense->info);
*info = info_val;
if (signed_info != NULL)
*signed_info = (int32_t)info_val;
break;
}
case SSD_DESC_COMMAND: {
uint32_t cmd_val;
if ((SSD_FIXED_IS_PRESENT(sense, sense_len,
cmd_spec_info) == 0)
|| (SSD_FIXED_IS_FILLED(sense, cmd_spec_info) == 0))
goto bailout;
cmd_val = scsi_4btoul(sense->cmd_spec_info);
if (cmd_val == 0)
goto bailout;
*info = cmd_val;
if (signed_info != NULL)
*signed_info = (int32_t)cmd_val;
break;
}
case SSD_DESC_FRU:
if ((SSD_FIXED_IS_PRESENT(sense, sense_len, fru) == 0)
|| (SSD_FIXED_IS_FILLED(sense, fru) == 0))
goto bailout;
if (sense->fru == 0)
goto bailout;
*info = sense->fru;
if (signed_info != NULL)
*signed_info = (int8_t)sense->fru;
break;
default:
goto bailout;
break;
}
break;
}
default:
goto bailout;
break;
}
return (0);
bailout:
return (1);
}
int
scsi_get_sks(struct scsi_sense_data *sense_data, u_int sense_len, uint8_t *sks)
{
scsi_sense_data_type sense_type;
if (sense_len == 0)
goto bailout;
sense_type = scsi_sense_type(sense_data);
switch (sense_type) {
case SSD_TYPE_DESC: {
struct scsi_sense_data_desc *sense;
struct scsi_sense_sks *desc;
sense = (struct scsi_sense_data_desc *)sense_data;
desc = (struct scsi_sense_sks *)scsi_find_desc(sense, sense_len,
SSD_DESC_SKS);
if (desc == NULL)
goto bailout;
if ((desc->sense_key_spec[0] & SSD_SKS_VALID) == 0)
goto bailout;
bcopy(desc->sense_key_spec, sks, sizeof(desc->sense_key_spec));
break;
}
case SSD_TYPE_FIXED: {
struct scsi_sense_data_fixed *sense;
sense = (struct scsi_sense_data_fixed *)sense_data;
if ((SSD_FIXED_IS_PRESENT(sense, sense_len, sense_key_spec)== 0)
|| (SSD_FIXED_IS_FILLED(sense, sense_key_spec) == 0))
goto bailout;
if ((sense->sense_key_spec[0] & SSD_SCS_VALID) == 0)
goto bailout;
bcopy(sense->sense_key_spec, sks,sizeof(sense->sense_key_spec));
break;
}
default:
goto bailout;
break;
}
return (0);
bailout:
return (1);
}
int
scsi_get_block_info(struct scsi_sense_data *sense_data, u_int sense_len,
struct scsi_inquiry_data *inq_data, uint8_t *block_bits)
{
scsi_sense_data_type sense_type;
if (inq_data != NULL) {
switch (SID_TYPE(inq_data)) {
case T_DIRECT:
case T_RBC:
case T_ZBC_HM:
break;
default:
goto bailout;
break;
}
}
sense_type = scsi_sense_type(sense_data);
switch (sense_type) {
case SSD_TYPE_DESC: {
struct scsi_sense_data_desc *sense;
struct scsi_sense_block *block;
sense = (struct scsi_sense_data_desc *)sense_data;
block = (struct scsi_sense_block *)scsi_find_desc(sense,
sense_len, SSD_DESC_BLOCK);
if (block == NULL)
goto bailout;
*block_bits = block->byte3;
break;
}
case SSD_TYPE_FIXED: {
struct scsi_sense_data_fixed *sense;
sense = (struct scsi_sense_data_fixed *)sense_data;
if (SSD_FIXED_IS_PRESENT(sense, sense_len, flags) == 0)
goto bailout;
*block_bits = sense->flags & SSD_ILI;
break;
}
default:
goto bailout;
break;
}
return (0);
bailout:
return (1);
}
int
scsi_get_stream_info(struct scsi_sense_data *sense_data, u_int sense_len,
struct scsi_inquiry_data *inq_data, uint8_t *stream_bits)
{
scsi_sense_data_type sense_type;
if (inq_data != NULL) {
switch (SID_TYPE(inq_data)) {
case T_SEQUENTIAL:
break;
default:
goto bailout;
break;
}
}
sense_type = scsi_sense_type(sense_data);
switch (sense_type) {
case SSD_TYPE_DESC: {
struct scsi_sense_data_desc *sense;
struct scsi_sense_stream *stream;
sense = (struct scsi_sense_data_desc *)sense_data;
stream = (struct scsi_sense_stream *)scsi_find_desc(sense,
sense_len, SSD_DESC_STREAM);
if (stream == NULL)
goto bailout;
*stream_bits = stream->byte3;
break;
}
case SSD_TYPE_FIXED: {
struct scsi_sense_data_fixed *sense;
sense = (struct scsi_sense_data_fixed *)sense_data;
if (SSD_FIXED_IS_PRESENT(sense, sense_len, flags) == 0)
goto bailout;
*stream_bits = sense->flags & (SSD_ILI|SSD_EOM|SSD_FILEMARK);
break;
}
default:
goto bailout;
break;
}
return (0);
bailout:
return (1);
}
void
scsi_info_sbuf(struct sbuf *sb, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data, uint64_t info)
{
sbuf_printf(sb, "Info: %#jx", info);
}
void
scsi_command_sbuf(struct sbuf *sb, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data, uint64_t csi)
{
sbuf_printf(sb, "Command Specific Info: %#jx", csi);
}
void
scsi_progress_sbuf(struct sbuf *sb, uint16_t progress)
{
sbuf_printf(sb, "Progress: %d%% (%d/%d) complete",
(progress * 100) / SSD_SKS_PROGRESS_DENOM,
progress, SSD_SKS_PROGRESS_DENOM);
}
int
scsi_sks_sbuf(struct sbuf *sb, int sense_key, uint8_t *sks)
{
switch (sense_key) {
case SSD_KEY_ILLEGAL_REQUEST: {
struct scsi_sense_sks_field *field;
int bad_command;
char tmpstr[40];
field = (struct scsi_sense_sks_field *)sks;
if (field->byte0 & SSD_SKS_FIELD_CMD)
bad_command = 1;
else
bad_command = 0;
tmpstr[0] = '\0';
if (field->byte0 & SSD_SKS_BPV)
snprintf(tmpstr, sizeof(tmpstr), "bit %d ",
field->byte0 & SSD_SKS_BIT_VALUE);
sbuf_printf(sb, "%s byte %d %sis invalid",
bad_command ? "Command" : "Data",
scsi_2btoul(field->field), tmpstr);
break;
}
case SSD_KEY_UNIT_ATTENTION: {
struct scsi_sense_sks_overflow *overflow;
overflow = (struct scsi_sense_sks_overflow *)sks;
sbuf_printf(sb, "Unit Attention Condition Queue %s",
(overflow->byte0 & SSD_SKS_OVERFLOW_SET) ?
"Overflowed" : "Did Not Overflow??");
break;
}
case SSD_KEY_RECOVERED_ERROR:
case SSD_KEY_HARDWARE_ERROR:
case SSD_KEY_MEDIUM_ERROR: {
struct scsi_sense_sks_retry *retry;
retry = (struct scsi_sense_sks_retry *)sks;
sbuf_printf(sb, "Actual Retry Count: %d",
scsi_2btoul(retry->actual_retry_count));
break;
}
case SSD_KEY_NO_SENSE:
case SSD_KEY_NOT_READY: {
struct scsi_sense_sks_progress *progress;
int progress_val;
progress = (struct scsi_sense_sks_progress *)sks;
progress_val = scsi_2btoul(progress->progress);
scsi_progress_sbuf(sb, progress_val);
break;
}
case SSD_KEY_COPY_ABORTED: {
struct scsi_sense_sks_segment *segment;
char tmpstr[40];
segment = (struct scsi_sense_sks_segment *)sks;
tmpstr[0] = '\0';
if (segment->byte0 & SSD_SKS_SEGMENT_BPV)
snprintf(tmpstr, sizeof(tmpstr), "bit %d ",
segment->byte0 & SSD_SKS_SEGMENT_BITPTR);
sbuf_printf(sb, "%s byte %d %sis invalid", (segment->byte0 &
SSD_SKS_SEGMENT_SD) ? "Segment" : "Data",
scsi_2btoul(segment->field), tmpstr);
break;
}
default:
sbuf_printf(sb, "Sense Key Specific: %#x,%#x", sks[0],
scsi_2btoul(&sks[1]));
break;
}
return (0);
}
void
scsi_fru_sbuf(struct sbuf *sb, uint64_t fru)
{
sbuf_printf(sb, "Field Replaceable Unit: %d", (int)fru);
}
void
scsi_stream_sbuf(struct sbuf *sb, uint8_t stream_bits)
{
int need_comma;
need_comma = 0;
sbuf_cat(sb, "Stream Command Sense Data: ");
if (stream_bits & SSD_DESC_STREAM_FM) {
sbuf_cat(sb, "Filemark");
need_comma = 1;
}
if (stream_bits & SSD_DESC_STREAM_EOM) {
sbuf_printf(sb, "%sEOM", (need_comma) ? "," : "");
need_comma = 1;
}
if (stream_bits & SSD_DESC_STREAM_ILI)
sbuf_printf(sb, "%sILI", (need_comma) ? "," : "");
}
void
scsi_block_sbuf(struct sbuf *sb, uint8_t block_bits)
{
sbuf_cat(sb, "Block Command Sense Data: ");
if (block_bits & SSD_DESC_BLOCK_ILI)
sbuf_cat(sb, "ILI");
}
void
scsi_sense_info_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_info *info;
info = (struct scsi_sense_info *)header;
if ((info->byte2 & SSD_INFO_VALID) == 0)
return;
scsi_info_sbuf(sb, cdb, cdb_len, inq_data, scsi_8btou64(info->info));
}
void
scsi_sense_command_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_command *command;
command = (struct scsi_sense_command *)header;
scsi_command_sbuf(sb, cdb, cdb_len, inq_data,
scsi_8btou64(command->command_info));
}
void
scsi_sense_sks_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_sks *sks;
int error_code, sense_key, asc, ascq;
sks = (struct scsi_sense_sks *)header;
if ((sks->sense_key_spec[0] & SSD_SKS_VALID) == 0)
return;
scsi_extract_sense_len(sense, sense_len, &error_code, &sense_key,
&asc, &ascq, 1);
scsi_sks_sbuf(sb, sense_key, sks->sense_key_spec);
}
void
scsi_sense_fru_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_fru *fru;
fru = (struct scsi_sense_fru *)header;
if (fru->fru == 0)
return;
scsi_fru_sbuf(sb, (uint64_t)fru->fru);
}
void
scsi_sense_stream_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_stream *stream;
stream = (struct scsi_sense_stream *)header;
scsi_stream_sbuf(sb, stream->byte3);
}
void
scsi_sense_block_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_block *block;
block = (struct scsi_sense_block *)header;
scsi_block_sbuf(sb, block->byte3);
}
void
scsi_sense_progress_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_progress *progress;
const char *sense_key_desc;
const char *asc_desc;
int progress_val;
progress = (struct scsi_sense_progress *)header;
scsi_sense_desc(progress->sense_key, progress->add_sense_code,
progress->add_sense_code_qual, inq_data,
&sense_key_desc, &asc_desc);
progress_val = scsi_2btoul(progress->progress);
sbuf_cat(sb, sense_key_desc);
sbuf_printf(sb, " asc:%x,%x (%s): ", progress->add_sense_code,
progress->add_sense_code_qual, asc_desc);
scsi_progress_sbuf(sb, progress_val);
}
void
scsi_sense_ata_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_ata_ret_desc *res;
res = (struct scsi_sense_ata_ret_desc *)header;
sbuf_printf(sb, "ATA status: %02x (%s%s%s%s%s%s%s%s), ",
res->status,
(res->status & 0x80) ? "BSY " : "",
(res->status & 0x40) ? "DRDY " : "",
(res->status & 0x20) ? "DF " : "",
(res->status & 0x10) ? "SERV " : "",
(res->status & 0x08) ? "DRQ " : "",
(res->status & 0x04) ? "CORR " : "",
(res->status & 0x02) ? "IDX " : "",
(res->status & 0x01) ? "ERR" : "");
if (res->status & 1) {
sbuf_printf(sb, "error: %02x (%s%s%s%s%s%s%s%s), ",
res->error,
(res->error & 0x80) ? "ICRC " : "",
(res->error & 0x40) ? "UNC " : "",
(res->error & 0x20) ? "MC " : "",
(res->error & 0x10) ? "IDNF " : "",
(res->error & 0x08) ? "MCR " : "",
(res->error & 0x04) ? "ABRT " : "",
(res->error & 0x02) ? "NM " : "",
(res->error & 0x01) ? "ILI" : "");
}
if (res->flags & SSD_DESC_ATA_FLAG_EXTEND) {
sbuf_printf(sb, "count: %02x%02x, ",
res->count_15_8, res->count_7_0);
sbuf_printf(sb, "LBA: %02x%02x%02x%02x%02x%02x, ",
res->lba_47_40, res->lba_39_32, res->lba_31_24,
res->lba_23_16, res->lba_15_8, res->lba_7_0);
} else {
sbuf_printf(sb, "count: %02x, ", res->count_7_0);
sbuf_printf(sb, "LBA: %02x%02x%02x, ",
res->lba_23_16, res->lba_15_8, res->lba_7_0);
}
sbuf_printf(sb, "device: %02x, ", res->device);
}
void
scsi_sense_forwarded_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
struct scsi_sense_forwarded *forwarded;
const char *sense_key_desc;
const char *asc_desc;
int error_code, sense_key, asc, ascq;
forwarded = (struct scsi_sense_forwarded *)header;
scsi_extract_sense_len((struct scsi_sense_data *)forwarded->sense_data,
forwarded->length - 2, &error_code, &sense_key, &asc, &ascq, 1);
scsi_sense_desc(sense_key, asc, ascq, NULL, &sense_key_desc, &asc_desc);
sbuf_printf(sb, "Forwarded sense: %s asc:%x,%x (%s): ",
sense_key_desc, asc, ascq, asc_desc);
}
void
scsi_sense_generic_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
int i;
uint8_t *buf_ptr;
sbuf_printf(sb, "Descriptor %#x:", header->desc_type);
buf_ptr = (uint8_t *)&header[1];
for (i = 0; i < header->length; i++, buf_ptr++)
sbuf_printf(sb, " %02x", *buf_ptr);
}
struct scsi_sense_desc_printer {
uint8_t desc_type;
void (*print_func)(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header);
} scsi_sense_printers[] = {
{SSD_DESC_INFO, scsi_sense_info_sbuf},
{SSD_DESC_COMMAND, scsi_sense_command_sbuf},
{SSD_DESC_SKS, scsi_sense_sks_sbuf},
{SSD_DESC_FRU, scsi_sense_fru_sbuf},
{SSD_DESC_STREAM, scsi_sense_stream_sbuf},
{SSD_DESC_BLOCK, scsi_sense_block_sbuf},
{SSD_DESC_ATA, scsi_sense_ata_sbuf},
{SSD_DESC_PROGRESS, scsi_sense_progress_sbuf},
{SSD_DESC_FORWARDED, scsi_sense_forwarded_sbuf}
};
void
scsi_sense_desc_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
u_int sense_len, uint8_t *cdb, int cdb_len,
struct scsi_inquiry_data *inq_data,
struct scsi_sense_desc_header *header)
{
u_int i;
for (i = 0; i < nitems(scsi_sense_printers); i++) {
struct scsi_sense_desc_printer *printer;
printer = &scsi_sense_printers[i];
if (printer->desc_type > header->desc_type)
break;
if (printer->desc_type != header->desc_type)
continue;
printer->print_func(sb, sense, sense_len, cdb, cdb_len,
inq_data, header);
return;
}
scsi_sense_generic_sbuf(sb, sense, sense_len, cdb, cdb_len,
inq_data, header);
}
scsi_sense_data_type
scsi_sense_type(struct scsi_sense_data *sense_data)
{
switch (sense_data->error_code & SSD_ERRCODE) {
case SSD_DESC_CURRENT_ERROR:
case SSD_DESC_DEFERRED_ERROR:
return (SSD_TYPE_DESC);
break;
case SSD_CURRENT_ERROR:
case SSD_DEFERRED_ERROR:
return (SSD_TYPE_FIXED);
break;
default:
break;
}
return (SSD_TYPE_NONE);
}
struct scsi_print_sense_info {
struct sbuf *sb;
char *path_str;
uint8_t *cdb;
int cdb_len;
struct scsi_inquiry_data *inq_data;
};
static int
scsi_print_desc_func(struct scsi_sense_data_desc *sense, u_int sense_len,
struct scsi_sense_desc_header *header, void *arg)
{
struct scsi_print_sense_info *print_info;
print_info = (struct scsi_print_sense_info *)arg;
switch (header->desc_type) {
case SSD_DESC_INFO:
case SSD_DESC_FRU:
case SSD_DESC_COMMAND:
case SSD_DESC_SKS:
case SSD_DESC_BLOCK:
case SSD_DESC_STREAM:
break;
default: {
sbuf_printf(print_info->sb, "%s", print_info->path_str);
scsi_sense_desc_sbuf(print_info->sb,
(struct scsi_sense_data *)sense, sense_len,
print_info->cdb, print_info->cdb_len,
print_info->inq_data, header);
sbuf_putc(print_info->sb, '\n');
break;
}
}
return (0);
}
void
scsi_sense_only_sbuf(struct scsi_sense_data *sense, u_int sense_len,
struct sbuf *sb, char *path_str,
struct scsi_inquiry_data *inq_data, uint8_t *cdb,
int cdb_len)
{
int error_code, sense_key, asc, ascq;
sbuf_cat(sb, path_str);
scsi_extract_sense_len(sense, sense_len, &error_code, &sense_key,
&asc, &ascq, 1);
sbuf_cat(sb, "SCSI sense: ");
switch (error_code) {
case SSD_DEFERRED_ERROR:
case SSD_DESC_DEFERRED_ERROR:
sbuf_cat(sb, "Deferred error: ");
case SSD_CURRENT_ERROR:
case SSD_DESC_CURRENT_ERROR:
{
struct scsi_sense_data_desc *desc_sense;
struct scsi_print_sense_info print_info;
const char *sense_key_desc;
const char *asc_desc;
uint8_t sks[3];
uint64_t val;
uint8_t bits;
scsi_sense_desc(sense_key, asc, ascq, inq_data,
&sense_key_desc, &asc_desc);
sbuf_cat(sb, sense_key_desc);
sbuf_printf(sb, " asc:%x,%x (%s)\n", asc, ascq, asc_desc);
if (scsi_get_block_info(sense, sense_len, inq_data,
&bits) == 0 && bits != 0) {
sbuf_cat(sb, path_str);
scsi_block_sbuf(sb, bits);
sbuf_putc(sb, '\n');
} else if (scsi_get_stream_info(sense, sense_len, inq_data,
&bits) == 0 && bits != 0) {
sbuf_cat(sb, path_str);
scsi_stream_sbuf(sb, bits);
sbuf_putc(sb, '\n');
}
if (scsi_get_sense_info(sense, sense_len, SSD_DESC_INFO,
&val, NULL) == 0) {
sbuf_cat(sb, path_str);
scsi_info_sbuf(sb, cdb, cdb_len, inq_data, val);
sbuf_putc(sb, '\n');
}
if (scsi_get_sense_info(sense, sense_len, SSD_DESC_FRU,
&val, NULL) == 0) {
sbuf_cat(sb, path_str);
scsi_fru_sbuf(sb, val);
sbuf_putc(sb, '\n');
}
if (scsi_get_sense_info(sense, sense_len, SSD_DESC_COMMAND,
&val, NULL) == 0) {
sbuf_cat(sb, path_str);
scsi_command_sbuf(sb, cdb, cdb_len, inq_data, val);
sbuf_putc(sb, '\n');
}
if (scsi_get_sks(sense, sense_len, sks) == 0) {
sbuf_cat(sb, path_str);
scsi_sks_sbuf(sb, sense_key, sks);
sbuf_putc(sb, '\n');
}
if (scsi_sense_type(sense) != SSD_TYPE_DESC)
break;
desc_sense = (struct scsi_sense_data_desc *)sense;
print_info.sb = sb;
print_info.path_str = path_str;
print_info.cdb = cdb;
print_info.cdb_len = cdb_len;
print_info.inq_data = inq_data;
scsi_desc_iterate(desc_sense, sense_len, scsi_print_desc_func,
&print_info);
break;
}
case -1:
sbuf_cat(sb, "No sense data present\n");
break;
default: {
sbuf_printf(sb, "Error code 0x%x", error_code);
if (sense->error_code & SSD_ERRCODE_VALID) {
struct scsi_sense_data_fixed *fixed_sense;
fixed_sense = (struct scsi_sense_data_fixed *)sense;
if (SSD_FIXED_IS_PRESENT(fixed_sense, sense_len, info)){
uint32_t info;
info = scsi_4btoul(fixed_sense->info);
sbuf_printf(sb, " at block no. %d (decimal)",
info);
}
}
sbuf_putc(sb, '\n');
break;
}
}
}
#ifdef _KERNEL
int
scsi_sense_sbuf(struct ccb_scsiio *csio, struct sbuf *sb,
scsi_sense_string_flags flags)
#else
int
scsi_sense_sbuf(struct cam_device *device, struct ccb_scsiio *csio,
struct sbuf *sb, scsi_sense_string_flags flags)
#endif
{
struct scsi_sense_data *sense;
struct scsi_inquiry_data *inq_data;
#ifdef _KERNEL
struct ccb_getdev *cgd;
#endif
char path_str[64];
#ifndef _KERNEL
if (device == NULL)
return(-1);
#endif
if ((csio == NULL) || (sb == NULL))
return(-1);
if ((csio->ccb_h.flags & CAM_CDB_PHYS) != 0)
flags &= ~SSS_FLAG_PRINT_COMMAND;
#ifdef _KERNEL
xpt_path_string(csio->ccb_h.path, path_str, sizeof(path_str));
#else
cam_path_string(device, path_str, sizeof(path_str));
#endif
#ifdef _KERNEL
if ((cgd = (struct ccb_getdev*)xpt_alloc_ccb_nowait()) == NULL)
return(-1);
xpt_gdev_type(cgd, csio->ccb_h.path);
if (cgd->ccb_h.status == CAM_DEV_NOT_THERE)
cgd->inq_data.device = T_DIRECT;
inq_data = &cgd->inq_data;
#else
inq_data = &device->inq_data;
#endif
sense = NULL;
if (flags & SSS_FLAG_PRINT_COMMAND) {
sbuf_cat(sb, path_str);
#ifdef _KERNEL
scsi_command_string(csio, sb);
#else
scsi_command_string(device, csio, sb);
#endif
sbuf_putc(sb, '\n');
}
if (csio->ccb_h.flags & CAM_SENSE_PTR) {
if (csio->ccb_h.flags & CAM_SENSE_PHYS) {
#ifdef _KERNEL
xpt_free_ccb((union ccb*)cgd);
#endif
return(-1);
} else {
bcopy((struct scsi_sense_data **)&csio->sense_data,
&sense, sizeof(struct scsi_sense_data *));
}
} else {
if (csio->ccb_h.flags & CAM_SENSE_PHYS) {
#ifdef _KERNEL
xpt_free_ccb((union ccb*)cgd);
#endif
return(-1);
} else
sense = &csio->sense_data;
}
scsi_sense_only_sbuf(sense, csio->sense_len - csio->sense_resid, sb,
path_str, inq_data, scsiio_cdb_ptr(csio), csio->cdb_len);
#ifdef _KERNEL
xpt_free_ccb((union ccb*)cgd);
#endif
return(0);
}
#ifdef _KERNEL
char *
scsi_sense_string(struct ccb_scsiio *csio, char *str, int str_len)
#else
char *
scsi_sense_string(struct cam_device *device, struct ccb_scsiio *csio,
char *str, int str_len)
#endif
{
struct sbuf sb;
sbuf_new(&sb, str, str_len, 0);
#ifdef _KERNEL
scsi_sense_sbuf(csio, &sb, SSS_FLAG_PRINT_COMMAND);
#else
scsi_sense_sbuf(device, csio, &sb, SSS_FLAG_PRINT_COMMAND);
#endif
sbuf_finish(&sb);
return(sbuf_data(&sb));
}
#ifdef _KERNEL
void
scsi_sense_print(struct ccb_scsiio *csio)
{
struct sbuf sb;
char str[512];
sbuf_new(&sb, str, sizeof(str), 0);
scsi_sense_sbuf(csio, &sb, SSS_FLAG_PRINT_COMMAND);
sbuf_finish(&sb);
sbuf_putbuf(&sb);
}
#else
void
scsi_sense_print(struct cam_device *device, struct ccb_scsiio *csio,
FILE *ofile)
{
struct sbuf sb;
char str[512];
if ((device == NULL) || (csio == NULL) || (ofile == NULL))
return;
sbuf_new(&sb, str, sizeof(str), 0);
scsi_sense_sbuf(device, csio, &sb, SSS_FLAG_PRINT_COMMAND);
sbuf_finish(&sb);
fprintf(ofile, "%s", sbuf_data(&sb));
}
#endif
void
scsi_extract_sense(struct scsi_sense_data *sense_data, int *error_code,
int *sense_key, int *asc, int *ascq)
{
scsi_extract_sense_len(sense_data, sizeof(*sense_data), error_code,
sense_key, asc, ascq, 0);
}
int
scsi_extract_sense_ccb(union ccb *ccb,
int *error_code, int *sense_key, int *asc, int *ascq)
{
struct scsi_sense_data *sense_data;
if (ccb->ccb_h.func_code != XPT_SCSI_IO ||
(ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_SCSI_STATUS_ERROR ||
(ccb->csio.scsi_status != SCSI_STATUS_CHECK_COND) ||
(ccb->ccb_h.status & CAM_AUTOSNS_VALID) == 0 ||
(ccb->ccb_h.flags & CAM_SENSE_PHYS))
return (0);
if (ccb->ccb_h.flags & CAM_SENSE_PTR)
bcopy((struct scsi_sense_data **)&ccb->csio.sense_data,
&sense_data, sizeof(struct scsi_sense_data *));
else
sense_data = &ccb->csio.sense_data;
scsi_extract_sense_len(sense_data,
ccb->csio.sense_len - ccb->csio.sense_resid,
error_code, sense_key, asc, ascq, 1);
if (*error_code == -1)
return (0);
return (1);
}
void
scsi_extract_sense_len(struct scsi_sense_data *sense_data, u_int sense_len,
int *error_code, int *sense_key, int *asc, int *ascq,
int show_errors)
{
if (sense_len == 0) {
if (show_errors == 0) {
*error_code = 0;
*sense_key = 0;
*asc = 0;
*ascq = 0;
} else {
*error_code = -1;
*sense_key = -1;
*asc = -1;
*ascq = -1;
}
return;
}
*error_code = sense_data->error_code & SSD_ERRCODE;
switch (*error_code) {
case SSD_DESC_CURRENT_ERROR:
case SSD_DESC_DEFERRED_ERROR: {
struct scsi_sense_data_desc *sense;
sense = (struct scsi_sense_data_desc *)sense_data;
if (SSD_DESC_IS_PRESENT(sense, sense_len, sense_key))
*sense_key = sense->sense_key & SSD_KEY;
else
*sense_key = (show_errors) ? -1 : 0;
if (SSD_DESC_IS_PRESENT(sense, sense_len, add_sense_code))
*asc = sense->add_sense_code;
else
*asc = (show_errors) ? -1 : 0;
if (SSD_DESC_IS_PRESENT(sense, sense_len, add_sense_code_qual))
*ascq = sense->add_sense_code_qual;
else
*ascq = (show_errors) ? -1 : 0;
break;
}
case SSD_CURRENT_ERROR:
case SSD_DEFERRED_ERROR:
default: {
struct scsi_sense_data_fixed *sense;
sense = (struct scsi_sense_data_fixed *)sense_data;
if (SSD_FIXED_IS_PRESENT(sense, sense_len, flags))
*sense_key = sense->flags & SSD_KEY;
else
*sense_key = (show_errors) ? -1 : 0;
if ((SSD_FIXED_IS_PRESENT(sense, sense_len, add_sense_code))
&& (SSD_FIXED_IS_FILLED(sense, add_sense_code)))
*asc = sense->add_sense_code;
else
*asc = (show_errors) ? -1 : 0;
if ((SSD_FIXED_IS_PRESENT(sense, sense_len,add_sense_code_qual))
&& (SSD_FIXED_IS_FILLED(sense, add_sense_code_qual)))
*ascq = sense->add_sense_code_qual;
else
*ascq = (show_errors) ? -1 : 0;
break;
}
}
}
int
scsi_get_sense_key(struct scsi_sense_data *sense_data, u_int sense_len,
int show_errors)
{
int error_code, sense_key, asc, ascq;
scsi_extract_sense_len(sense_data, sense_len, &error_code,
&sense_key, &asc, &ascq, show_errors);
return (sense_key);
}
int
scsi_get_asc(struct scsi_sense_data *sense_data, u_int sense_len,
int show_errors)
{
int error_code, sense_key, asc, ascq;
scsi_extract_sense_len(sense_data, sense_len, &error_code,
&sense_key, &asc, &ascq, show_errors);
return (asc);
}
int
scsi_get_ascq(struct scsi_sense_data *sense_data, u_int sense_len,
int show_errors)
{
int error_code, sense_key, asc, ascq;
scsi_extract_sense_len(sense_data, sense_len, &error_code,
&sense_key, &asc, &ascq, show_errors);
return (ascq);
}
void
scsi_print_inquiry_sbuf(struct sbuf *sb, struct scsi_inquiry_data *inq_data)
{
uint8_t type;
char *dtype, *qtype;
type = SID_TYPE(inq_data);
if (SID_QUAL_IS_VENDOR_UNIQUE(inq_data)) {
qtype = " (vendor-unique qualifier)";
} else {
switch (SID_QUAL(inq_data)) {
case SID_QUAL_LU_CONNECTED:
qtype = "";
break;
case SID_QUAL_LU_OFFLINE:
qtype = " (offline)";
break;
case SID_QUAL_RSVD:
qtype = " (reserved qualifier)";
break;
default:
case SID_QUAL_BAD_LU:
qtype = " (LUN not supported)";
break;
}
}
switch (type) {
case T_DIRECT:
dtype = "Direct Access";
break;
case T_SEQUENTIAL:
dtype = "Sequential Access";
break;
case T_PRINTER:
dtype = "Printer";
break;
case T_PROCESSOR:
dtype = "Processor";
break;
case T_WORM:
dtype = "WORM";
break;
case T_CDROM:
dtype = "CD-ROM";
break;
case T_SCANNER:
dtype = "Scanner";
break;
case T_OPTICAL:
dtype = "Optical";
break;
case T_CHANGER:
dtype = "Changer";
break;
case T_COMM:
dtype = "Communication";
break;
case T_STORARRAY:
dtype = "Storage Array";
break;
case T_ENCLOSURE:
dtype = "Enclosure Services";
break;
case T_RBC:
dtype = "Simplified Direct Access";
break;
case T_OCRW:
dtype = "Optical Card Read/Write";
break;
case T_OSD:
dtype = "Object-Based Storage";
break;
case T_ADC:
dtype = "Automation/Drive Interface";
break;
case T_ZBC_HM:
dtype = "Host Managed Zoned Block";
break;
case T_NODEVICE:
dtype = "Uninstalled";
break;
default:
dtype = "unknown";
break;
}
scsi_print_inquiry_short_sbuf(sb, inq_data);
sbuf_printf(sb, "%s %s ", SID_IS_REMOVABLE(inq_data) ? "Removable" : "Fixed", dtype);
if (SID_ANSI_REV(inq_data) == SCSI_REV_0)
sbuf_cat(sb, "SCSI ");
else if (SID_ANSI_REV(inq_data) <= SCSI_REV_SPC) {
sbuf_printf(sb, "SCSI-%d ", SID_ANSI_REV(inq_data));
} else {
sbuf_printf(sb, "SPC-%d SCSI ", SID_ANSI_REV(inq_data) - 2);
}
sbuf_printf(sb, "device%s\n", qtype);
}
void
scsi_print_inquiry(struct scsi_inquiry_data *inq_data)
{
struct sbuf sb;
char buffer[120];
sbuf_new(&sb, buffer, 120, SBUF_FIXEDLEN);
scsi_print_inquiry_sbuf(&sb, inq_data);
sbuf_finish(&sb);
sbuf_putbuf(&sb);
}
void
scsi_print_inquiry_short_sbuf(struct sbuf *sb, struct scsi_inquiry_data *inq_data)
{
sbuf_putc(sb, '<');
cam_strvis_sbuf(sb, inq_data->vendor, sizeof(inq_data->vendor), 0);
sbuf_putc(sb, ' ');
cam_strvis_sbuf(sb, inq_data->product, sizeof(inq_data->product), 0);
sbuf_putc(sb, ' ');
cam_strvis_sbuf(sb, inq_data->revision, sizeof(inq_data->revision), 0);
sbuf_cat(sb, "> ");
}
void
scsi_print_inquiry_short(struct scsi_inquiry_data *inq_data)
{
struct sbuf sb;
char buffer[84];
sbuf_new(&sb, buffer, 84, SBUF_FIXEDLEN);
scsi_print_inquiry_short_sbuf(&sb, inq_data);
sbuf_finish(&sb);
sbuf_putbuf(&sb);
}
static struct {
u_int period_factor;
u_int period;
} scsi_syncrates[] = {
{ 0x08, 625 },
{ 0x09, 1250 },
{ 0x0a, 2500 },
{ 0x0b, 3030 },
{ 0x0c, 5000 }
};
u_int
scsi_calc_syncsrate(u_int period_factor)
{
u_int i;
u_int num_syncrates;
if (period_factor == 0) {
return (3300);
}
num_syncrates = nitems(scsi_syncrates);
for (i = 0; i < num_syncrates; i++) {
if (period_factor == scsi_syncrates[i].period_factor) {
return (100000000 / scsi_syncrates[i].period);
}
}
return (10000000 / (period_factor * 4 * 10));
}
u_int
scsi_calc_syncparam(u_int period)
{
u_int i;
u_int num_syncrates;
if (period == 0)
return (~0);
period *= 10;
num_syncrates = nitems(scsi_syncrates);
for (i = 0; i < num_syncrates; i++) {
if (period <= scsi_syncrates[i].period) {
return (scsi_syncrates[i].period_factor);
}
}
return (period/400);
}
int
scsi_devid_is_naa_ieee_reg(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
struct scsi_vpd_id_naa_basic *naa;
int n;
descr = (struct scsi_vpd_id_descriptor *)bufp;
naa = (struct scsi_vpd_id_naa_basic *)descr->identifier;
if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_NAA)
return 0;
if (descr->length < sizeof(struct scsi_vpd_id_naa_ieee_reg))
return 0;
n = naa->naa >> SVPD_ID_NAA_NAA_SHIFT;
if (n != SVPD_ID_NAA_LOCAL_REG && n != SVPD_ID_NAA_IEEE_REG)
return 0;
return 1;
}
int
scsi_devid_is_sas_target(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
descr = (struct scsi_vpd_id_descriptor *)bufp;
if (!scsi_devid_is_naa_ieee_reg(bufp))
return 0;
if ((descr->id_type & SVPD_ID_PIV) == 0)
return 0;
if ((descr->proto_codeset >> SVPD_ID_PROTO_SHIFT) != SCSI_PROTO_SAS)
return 0;
return 1;
}
int
scsi_devid_is_lun_eui64(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
descr = (struct scsi_vpd_id_descriptor *)bufp;
if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
return 0;
if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_EUI64)
return 0;
return 1;
}
int
scsi_devid_is_lun_naa(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
descr = (struct scsi_vpd_id_descriptor *)bufp;
if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
return 0;
if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_NAA)
return 0;
return 1;
}
int
scsi_devid_is_lun_t10(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
descr = (struct scsi_vpd_id_descriptor *)bufp;
if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
return 0;
if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_T10)
return 0;
return 1;
}
int
scsi_devid_is_lun_name(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
descr = (struct scsi_vpd_id_descriptor *)bufp;
if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
return 0;
if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_SCSI_NAME)
return 0;
return 1;
}
int
scsi_devid_is_lun_md5(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
descr = (struct scsi_vpd_id_descriptor *)bufp;
if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
return 0;
if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_MD5_LUN_ID)
return 0;
return 1;
}
int
scsi_devid_is_lun_uuid(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
descr = (struct scsi_vpd_id_descriptor *)bufp;
if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
return 0;
if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_UUID)
return 0;
return 1;
}
int
scsi_devid_is_port_naa(uint8_t *bufp)
{
struct scsi_vpd_id_descriptor *descr;
descr = (struct scsi_vpd_id_descriptor *)bufp;
if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_PORT)
return 0;
if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_NAA)
return 0;
return 1;
}
struct scsi_vpd_id_descriptor *
scsi_get_devid_desc(struct scsi_vpd_id_descriptor *desc, uint32_t len,
scsi_devid_checkfn_t ck_fn)
{
uint8_t *desc_buf_end;
desc_buf_end = (uint8_t *)desc + len;
for (; desc->identifier <= desc_buf_end &&
desc->identifier + desc->length <= desc_buf_end;
desc = (struct scsi_vpd_id_descriptor *)(desc->identifier
+ desc->length)) {
if (ck_fn == NULL || ck_fn((uint8_t *)desc) != 0)
return (desc);
}
return (NULL);
}
struct scsi_vpd_id_descriptor *
scsi_get_devid(struct scsi_vpd_device_id *id, uint32_t page_len,
scsi_devid_checkfn_t ck_fn)
{
uint32_t len;
if (page_len < sizeof(*id))
return (NULL);
len = MIN(scsi_2btoul(id->length), page_len - sizeof(*id));
return (scsi_get_devid_desc((struct scsi_vpd_id_descriptor *)
id->desc_list, len, ck_fn));
}
int
scsi_transportid_sbuf(struct sbuf *sb, struct scsi_transportid_header *hdr,
uint32_t valid_len)
{
switch (hdr->format_protocol & SCSI_TRN_PROTO_MASK) {
case SCSI_PROTO_FC: {
struct scsi_transportid_fcp *fcp;
uint64_t n_port_name;
fcp = (struct scsi_transportid_fcp *)hdr;
n_port_name = scsi_8btou64(fcp->n_port_name);
sbuf_printf(sb, "FCP address: 0x%.16jx",(uintmax_t)n_port_name);
break;
}
case SCSI_PROTO_SPI: {
struct scsi_transportid_spi *spi;
spi = (struct scsi_transportid_spi *)hdr;
sbuf_printf(sb, "SPI address: %u,%u",
scsi_2btoul(spi->scsi_addr),
scsi_2btoul(spi->rel_trgt_port_id));
break;
}
case SCSI_PROTO_SSA:
break;
case SCSI_PROTO_1394: {
struct scsi_transportid_1394 *sbp;
uint64_t eui64;
sbp = (struct scsi_transportid_1394 *)hdr;
eui64 = scsi_8btou64(sbp->eui64);
sbuf_printf(sb, "SBP address: 0x%.16jx", (uintmax_t)eui64);
break;
}
case SCSI_PROTO_RDMA: {
struct scsi_transportid_rdma *rdma;
unsigned int i;
rdma = (struct scsi_transportid_rdma *)hdr;
sbuf_cat(sb, "RDMA address: 0x");
for (i = 0; i < sizeof(rdma->initiator_port_id); i++)
sbuf_printf(sb, "%02x", rdma->initiator_port_id[i]);
break;
}
case SCSI_PROTO_ISCSI: {
uint32_t add_len, i;
uint8_t *iscsi_name = NULL;
int nul_found = 0;
sbuf_cat(sb, "iSCSI address: ");
if ((hdr->format_protocol & SCSI_TRN_FORMAT_MASK) ==
SCSI_TRN_ISCSI_FORMAT_DEVICE) {
struct scsi_transportid_iscsi_device *dev;
dev = (struct scsi_transportid_iscsi_device *)hdr;
add_len = scsi_2btoul(dev->additional_length);
add_len = MIN(add_len, valid_len -
__offsetof(struct scsi_transportid_iscsi_device,
iscsi_name));
iscsi_name = &dev->iscsi_name[0];
} else if ((hdr->format_protocol & SCSI_TRN_FORMAT_MASK) ==
SCSI_TRN_ISCSI_FORMAT_PORT) {
struct scsi_transportid_iscsi_port *port;
port = (struct scsi_transportid_iscsi_port *)hdr;
add_len = scsi_2btoul(port->additional_length);
add_len = MIN(add_len, valid_len -
__offsetof(struct scsi_transportid_iscsi_port,
iscsi_name));
iscsi_name = &port->iscsi_name[0];
} else {
sbuf_printf(sb, "unknown format %x",
(hdr->format_protocol &
SCSI_TRN_FORMAT_MASK) >>
SCSI_TRN_FORMAT_SHIFT);
break;
}
if (add_len == 0) {
sbuf_cat(sb, "not enough data");
break;
}
for (i = 0; i < add_len; i++) {
if (iscsi_name[i] == '\0') {
nul_found = 1;
break;
}
}
if (nul_found != 0)
sbuf_cat(sb, iscsi_name);
else
sbuf_bcat(sb, iscsi_name, add_len);
break;
}
case SCSI_PROTO_SAS: {
struct scsi_transportid_sas *sas;
uint64_t sas_addr;
sas = (struct scsi_transportid_sas *)hdr;
sas_addr = scsi_8btou64(sas->sas_address);
sbuf_printf(sb, "SAS address: 0x%.16jx", (uintmax_t)sas_addr);
break;
}
case SCSI_PROTO_ADITP:
case SCSI_PROTO_ATA:
case SCSI_PROTO_UAS:
sbuf_printf(sb, "No known Transport ID format for protocol "
"%#x", hdr->format_protocol & SCSI_TRN_PROTO_MASK);
break;
case SCSI_PROTO_SOP: {
struct scsi_transportid_sop *sop;
struct scsi_sop_routing_id_norm *rid;
sop = (struct scsi_transportid_sop *)hdr;
rid = (struct scsi_sop_routing_id_norm *)sop->routing_id;
sbuf_printf(sb, "SOP Routing ID: %u,%u,%u",
rid->bus, rid->devfunc >> SCSI_TRN_SOP_DEV_SHIFT,
rid->devfunc & SCSI_TRN_SOP_FUNC_NORM_MAX);
break;
}
case SCSI_PROTO_NONE:
default:
sbuf_printf(sb, "Unknown protocol %#x",
hdr->format_protocol & SCSI_TRN_PROTO_MASK);
break;
}
return (0);
}
struct scsi_nv scsi_proto_map[] = {
{ "fcp", SCSI_PROTO_FC },
{ "spi", SCSI_PROTO_SPI },
{ "ssa", SCSI_PROTO_SSA },
{ "sbp", SCSI_PROTO_1394 },
{ "1394", SCSI_PROTO_1394 },
{ "srp", SCSI_PROTO_RDMA },
{ "rdma", SCSI_PROTO_RDMA },
{ "iscsi", SCSI_PROTO_ISCSI },
{ "iqn", SCSI_PROTO_ISCSI },
{ "sas", SCSI_PROTO_SAS },
{ "aditp", SCSI_PROTO_ADITP },
{ "ata", SCSI_PROTO_ATA },
{ "uas", SCSI_PROTO_UAS },
{ "usb", SCSI_PROTO_UAS },
{ "sop", SCSI_PROTO_SOP }
};
const char *
scsi_nv_to_str(struct scsi_nv *table, int num_table_entries, uint64_t value)
{
int i;
for (i = 0; i < num_table_entries; i++) {
if (table[i].value == value)
return (table[i].name);
}
return (NULL);
}
scsi_nv_status
scsi_get_nv(struct scsi_nv *table, int num_table_entries,
char *name, int *table_entry, scsi_nv_flags flags)
{
int i, num_matches = 0;
for (i = 0; i < num_table_entries; i++) {
size_t table_len, name_len;
table_len = strlen(table[i].name);
name_len = strlen(name);
if ((((flags & SCSI_NV_FLAG_IG_CASE) != 0)
&& (strncasecmp(table[i].name, name, name_len) == 0))
|| (((flags & SCSI_NV_FLAG_IG_CASE) == 0)
&& (strncmp(table[i].name, name, name_len) == 0))) {
*table_entry = i;
if (table_len == name_len)
return (SCSI_NV_FOUND);
num_matches++;
}
}
if (num_matches > 1)
return (SCSI_NV_AMBIGUOUS);
else if (num_matches == 1)
return (SCSI_NV_FOUND);
else
return (SCSI_NV_NOT_FOUND);
}
int
scsi_parse_transportid_64bit(int proto_id, char *id_str,
struct scsi_transportid_header **hdr,
unsigned int *alloc_len,
#ifdef _KERNEL
struct malloc_type *type, int flags,
#endif
char *error_str, int error_str_len)
{
uint64_t value;
char *endptr;
int retval;
size_t alloc_size;
retval = 0;
value = strtouq(id_str, &endptr, 0);
if (*endptr != '\0') {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: error "
"parsing ID %s, 64-bit number required",
__func__, id_str);
}
retval = 1;
goto bailout;
}
switch (proto_id) {
case SCSI_PROTO_FC:
alloc_size = sizeof(struct scsi_transportid_fcp);
break;
case SCSI_PROTO_1394:
alloc_size = sizeof(struct scsi_transportid_1394);
break;
case SCSI_PROTO_SAS:
alloc_size = sizeof(struct scsi_transportid_sas);
break;
default:
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: unsupported "
"protocol %d", __func__, proto_id);
}
retval = 1;
goto bailout;
break;
}
#ifdef _KERNEL
*hdr = malloc(alloc_size, type, flags);
#else
*hdr = malloc(alloc_size);
#endif
if (*hdr == NULL) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: unable to "
"allocate %zu bytes", __func__, alloc_size);
}
retval = 1;
goto bailout;
}
*alloc_len = alloc_size;
bzero(*hdr, alloc_size);
switch (proto_id) {
case SCSI_PROTO_FC: {
struct scsi_transportid_fcp *fcp;
fcp = (struct scsi_transportid_fcp *)(*hdr);
fcp->format_protocol = SCSI_PROTO_FC |
SCSI_TRN_FCP_FORMAT_DEFAULT;
scsi_u64to8b(value, fcp->n_port_name);
break;
}
case SCSI_PROTO_1394: {
struct scsi_transportid_1394 *sbp;
sbp = (struct scsi_transportid_1394 *)(*hdr);
sbp->format_protocol = SCSI_PROTO_1394 |
SCSI_TRN_1394_FORMAT_DEFAULT;
scsi_u64to8b(value, sbp->eui64);
break;
}
case SCSI_PROTO_SAS: {
struct scsi_transportid_sas *sas;
sas = (struct scsi_transportid_sas *)(*hdr);
sas->format_protocol = SCSI_PROTO_SAS |
SCSI_TRN_SAS_FORMAT_DEFAULT;
scsi_u64to8b(value, sas->sas_address);
break;
}
default:
break;
}
bailout:
return (retval);
}
int
scsi_parse_transportid_spi(char *id_str, struct scsi_transportid_header **hdr,
unsigned int *alloc_len,
#ifdef _KERNEL
struct malloc_type *type, int flags,
#endif
char *error_str, int error_str_len)
{
unsigned long scsi_addr, target_port;
struct scsi_transportid_spi *spi;
char *tmpstr, *endptr;
int retval;
retval = 0;
tmpstr = strsep(&id_str, ",");
if (tmpstr == NULL) {
if (error_str != NULL) {
snprintf(error_str, error_str_len,
"%s: no ID found", __func__);
}
retval = 1;
goto bailout;
}
scsi_addr = strtoul(tmpstr, &endptr, 0);
if (*endptr != '\0') {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: error "
"parsing SCSI ID %s, number required",
__func__, tmpstr);
}
retval = 1;
goto bailout;
}
if (id_str == NULL) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: no relative "
"target port found", __func__);
}
retval = 1;
goto bailout;
}
target_port = strtoul(id_str, &endptr, 0);
if (*endptr != '\0') {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: error "
"parsing relative target port %s, number "
"required", __func__, id_str);
}
retval = 1;
goto bailout;
}
#ifdef _KERNEL
spi = malloc(sizeof(*spi), type, flags);
#else
spi = malloc(sizeof(*spi));
#endif
if (spi == NULL) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: unable to "
"allocate %zu bytes", __func__,
sizeof(*spi));
}
retval = 1;
goto bailout;
}
*alloc_len = sizeof(*spi);
bzero(spi, sizeof(*spi));
spi->format_protocol = SCSI_PROTO_SPI | SCSI_TRN_SPI_FORMAT_DEFAULT;
scsi_ulto2b(scsi_addr, spi->scsi_addr);
scsi_ulto2b(target_port, spi->rel_trgt_port_id);
*hdr = (struct scsi_transportid_header *)spi;
bailout:
return (retval);
}
int
scsi_parse_transportid_rdma(char *id_str, struct scsi_transportid_header **hdr,
unsigned int *alloc_len,
#ifdef _KERNEL
struct malloc_type *type, int flags,
#endif
char *error_str, int error_str_len)
{
struct scsi_transportid_rdma *rdma;
int retval;
size_t id_len, rdma_id_size;
uint8_t rdma_id[SCSI_TRN_RDMA_PORT_LEN];
char *tmpstr;
unsigned int i, j;
retval = 0;
id_len = strlen(id_str);
rdma_id_size = SCSI_TRN_RDMA_PORT_LEN;
if ((id_len != (rdma_id_size * 2))
&& (id_len != ((rdma_id_size * 2) + 2))) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: RDMA ID "
"must be 32 hex digits (0x prefix "
"optional), only %zu seen", __func__, id_len);
}
retval = 1;
goto bailout;
}
tmpstr = id_str;
if (id_len == ((rdma_id_size * 2) + 2)) {
if ((tmpstr[0] == '0')
&& ((tmpstr[1] == 'x') || (tmpstr[1] == 'X'))) {
tmpstr += 2;
} else {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: RDMA "
"ID prefix, if used, must be \"0x\", "
"got %s", __func__, tmpstr);
}
retval = 1;
goto bailout;
}
}
bzero(rdma_id, sizeof(rdma_id));
for (i = 0; i < (rdma_id_size * 2); i++) {
int cur_shift;
unsigned char c;
j = i >> 1;
if ((i % 2) == 0)
cur_shift = 4;
else
cur_shift = 0;
c = tmpstr[i];
if (isdigit(c))
c -= '0';
else if (isalpha(c))
c -= isupper(c) ? 'A' - 10 : 'a' - 10;
else {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: "
"RDMA ID must be hex digits, got "
"invalid character %c", __func__,
tmpstr[i]);
}
retval = 1;
goto bailout;
}
if (c > 0xf) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: "
"RDMA ID must be hex digits, got "
"invalid character %c", __func__,
tmpstr[i]);
}
retval = 1;
goto bailout;
}
rdma_id[j] |= c << cur_shift;
}
#ifdef _KERNEL
rdma = malloc(sizeof(*rdma), type, flags);
#else
rdma = malloc(sizeof(*rdma));
#endif
if (rdma == NULL) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: unable to "
"allocate %zu bytes", __func__,
sizeof(*rdma));
}
retval = 1;
goto bailout;
}
*alloc_len = sizeof(*rdma);
bzero(rdma, *alloc_len);
rdma->format_protocol = SCSI_PROTO_RDMA | SCSI_TRN_RDMA_FORMAT_DEFAULT;
bcopy(rdma_id, rdma->initiator_port_id, SCSI_TRN_RDMA_PORT_LEN);
*hdr = (struct scsi_transportid_header *)rdma;
bailout:
return (retval);
}
int
scsi_parse_transportid_iscsi(char *id_str, struct scsi_transportid_header **hdr,
unsigned int *alloc_len,
#ifdef _KERNEL
struct malloc_type *type, int flags,
#endif
char *error_str, int error_str_len)
{
size_t id_len, sep_len, id_size, name_len;
int retval;
unsigned int i, sep_pos, sep_found;
const char *sep_template = ",i,0x";
const char *iqn_prefix = "iqn.";
struct scsi_transportid_iscsi_device *iscsi;
retval = 0;
sep_found = 0;
id_len = strlen(id_str);
sep_len = strlen(sep_template);
for (i = 0, sep_pos = 0; i < id_len; i++) {
if (sep_pos == 0) {
if (id_str[i] == sep_template[sep_pos])
sep_pos++;
continue;
}
if (sep_pos < sep_len) {
if (id_str[i] == sep_template[sep_pos]) {
sep_pos++;
continue;
}
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: "
"invalid separator in iSCSI name "
"\"%s\"",
__func__, id_str);
}
retval = 1;
goto bailout;
} else {
sep_found = 1;
break;
}
}
if ((sep_pos != 0)
&& (sep_found == 0)) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: no digits "
"found after separator in iSCSI name \"%s\"",
__func__, id_str);
}
retval = 1;
goto bailout;
}
id_size = sizeof(*iscsi) + strlen(iqn_prefix) + id_len + 1;
#ifdef _KERNEL
iscsi = malloc(id_size, type, flags);
#else
iscsi = malloc(id_size);
#endif
if (iscsi == NULL) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: unable to "
"allocate %zu bytes", __func__, id_size);
}
retval = 1;
goto bailout;
}
*alloc_len = id_size;
bzero(iscsi, id_size);
iscsi->format_protocol = SCSI_PROTO_ISCSI;
if (sep_found == 0)
iscsi->format_protocol |= SCSI_TRN_ISCSI_FORMAT_DEVICE;
else
iscsi->format_protocol |= SCSI_TRN_ISCSI_FORMAT_PORT;
name_len = id_size - sizeof(*iscsi);
scsi_ulto2b(name_len, iscsi->additional_length);
snprintf(iscsi->iscsi_name, name_len, "%s%s", iqn_prefix, id_str);
*hdr = (struct scsi_transportid_header *)iscsi;
bailout:
return (retval);
}
int
scsi_parse_transportid_sop(char *id_str, struct scsi_transportid_header **hdr,
unsigned int *alloc_len,
#ifdef _KERNEL
struct malloc_type *type, int flags,
#endif
char *error_str, int error_str_len)
{
struct scsi_transportid_sop *sop;
unsigned long bus, device, function;
char *tmpstr, *endptr;
int retval, device_spec;
retval = 0;
device_spec = 0;
device = 0;
tmpstr = strsep(&id_str, ",");
if ((tmpstr == NULL)
|| (*tmpstr == '\0')) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: no ID found",
__func__);
}
retval = 1;
goto bailout;
}
bus = strtoul(tmpstr, &endptr, 0);
if (*endptr != '\0') {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: error "
"parsing PCIe bus %s, number required",
__func__, tmpstr);
}
retval = 1;
goto bailout;
}
if ((id_str == NULL)
|| (*id_str == '\0')) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: no PCIe "
"device or function found", __func__);
}
retval = 1;
goto bailout;
}
tmpstr = strsep(&id_str, ",");
function = strtoul(tmpstr, &endptr, 0);
if (*endptr != '\0') {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: error "
"parsing PCIe device/function %s, number "
"required", __func__, tmpstr);
}
retval = 1;
goto bailout;
}
if (id_str != NULL) {
if (*id_str == '\0') {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: "
"no PCIe function found", __func__);
}
retval = 1;
goto bailout;
}
device = function;
device_spec = 1;
function = strtoul(id_str, &endptr, 0);
if (*endptr != '\0') {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: "
"error parsing PCIe function %s, "
"number required", __func__, id_str);
}
retval = 1;
goto bailout;
}
}
if (bus > SCSI_TRN_SOP_BUS_MAX) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: bus value "
"%lu greater than maximum %u", __func__,
bus, SCSI_TRN_SOP_BUS_MAX);
}
retval = 1;
goto bailout;
}
if ((device_spec != 0)
&& (device > SCSI_TRN_SOP_DEV_MASK)) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: device value "
"%lu greater than maximum %u", __func__,
device, SCSI_TRN_SOP_DEV_MAX);
}
retval = 1;
goto bailout;
}
if (((device_spec != 0)
&& (function > SCSI_TRN_SOP_FUNC_NORM_MAX))
|| ((device_spec == 0)
&& (function > SCSI_TRN_SOP_FUNC_ALT_MAX))) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: function value "
"%lu greater than maximum %u", __func__,
function, (device_spec == 0) ?
SCSI_TRN_SOP_FUNC_ALT_MAX :
SCSI_TRN_SOP_FUNC_NORM_MAX);
}
retval = 1;
goto bailout;
}
#ifdef _KERNEL
sop = malloc(sizeof(*sop), type, flags);
#else
sop = malloc(sizeof(*sop));
#endif
if (sop == NULL) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: unable to "
"allocate %zu bytes", __func__, sizeof(*sop));
}
retval = 1;
goto bailout;
}
*alloc_len = sizeof(*sop);
bzero(sop, sizeof(*sop));
sop->format_protocol = SCSI_PROTO_SOP | SCSI_TRN_SOP_FORMAT_DEFAULT;
if (device_spec != 0) {
struct scsi_sop_routing_id_norm rid;
rid.bus = bus;
rid.devfunc = (device << SCSI_TRN_SOP_DEV_SHIFT) | function;
bcopy(&rid, sop->routing_id, MIN(sizeof(rid),
sizeof(sop->routing_id)));
} else {
struct scsi_sop_routing_id_alt rid;
rid.bus = bus;
rid.function = function;
bcopy(&rid, sop->routing_id, MIN(sizeof(rid),
sizeof(sop->routing_id)));
}
*hdr = (struct scsi_transportid_header *)sop;
bailout:
return (retval);
}
int
scsi_parse_transportid(char *transportid_str,
struct scsi_transportid_header **hdr,
unsigned int *alloc_len,
#ifdef _KERNEL
struct malloc_type *type, int flags,
#endif
char *error_str, int error_str_len)
{
char *tmpstr;
scsi_nv_status status;
u_int num_proto_entries;
int retval, table_entry;
retval = 0;
table_entry = 0;
tmpstr = strsep(&transportid_str, ",.");
if (tmpstr == NULL) {
if (error_str != NULL) {
snprintf(error_str, error_str_len,
"%s: transportid_str is NULL", __func__);
}
retval = 1;
goto bailout;
}
num_proto_entries = nitems(scsi_proto_map);
status = scsi_get_nv(scsi_proto_map, num_proto_entries, tmpstr,
&table_entry, SCSI_NV_FLAG_IG_CASE);
if (status != SCSI_NV_FOUND) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: %s protocol "
"name %s", __func__,
(status == SCSI_NV_AMBIGUOUS) ? "ambiguous" :
"invalid", tmpstr);
}
retval = 1;
goto bailout;
}
switch (scsi_proto_map[table_entry].value) {
case SCSI_PROTO_FC:
case SCSI_PROTO_1394:
case SCSI_PROTO_SAS:
retval = scsi_parse_transportid_64bit(
scsi_proto_map[table_entry].value, transportid_str, hdr,
alloc_len,
#ifdef _KERNEL
type, flags,
#endif
error_str, error_str_len);
break;
case SCSI_PROTO_SPI:
retval = scsi_parse_transportid_spi(transportid_str, hdr,
alloc_len,
#ifdef _KERNEL
type, flags,
#endif
error_str, error_str_len);
break;
case SCSI_PROTO_RDMA:
retval = scsi_parse_transportid_rdma(transportid_str, hdr,
alloc_len,
#ifdef _KERNEL
type, flags,
#endif
error_str, error_str_len);
break;
case SCSI_PROTO_ISCSI:
retval = scsi_parse_transportid_iscsi(transportid_str, hdr,
alloc_len,
#ifdef _KERNEL
type, flags,
#endif
error_str, error_str_len);
break;
case SCSI_PROTO_SOP:
retval = scsi_parse_transportid_sop(transportid_str, hdr,
alloc_len,
#ifdef _KERNEL
type, flags,
#endif
error_str, error_str_len);
break;
case SCSI_PROTO_SSA:
case SCSI_PROTO_ADITP:
case SCSI_PROTO_ATA:
case SCSI_PROTO_UAS:
case SCSI_PROTO_NONE:
default:
retval = 1;
if (error_str != NULL) {
snprintf(error_str, error_str_len, "%s: no Transport "
"ID format exists for protocol %s",
__func__, tmpstr);
}
goto bailout;
break;
}
bailout:
return (retval);
}
struct scsi_attrib_table_entry scsi_mam_attr_table[] = {
{ SMA_ATTR_REM_CAP_PARTITION, SCSI_ATTR_FLAG_NONE,
"Remaining Capacity in Partition",
"MB", scsi_attrib_int_sbuf, NULL },
{ SMA_ATTR_MAX_CAP_PARTITION, SCSI_ATTR_FLAG_NONE,
"Maximum Capacity in Partition",
"MB", scsi_attrib_int_sbuf, NULL },
{ SMA_ATTR_TAPEALERT_FLAGS, SCSI_ATTR_FLAG_HEX,
"TapeAlert Flags",
NULL, scsi_attrib_int_sbuf, NULL },
{ SMA_ATTR_LOAD_COUNT, SCSI_ATTR_FLAG_NONE,
"Load Count",
NULL, scsi_attrib_int_sbuf, NULL },
{ SMA_ATTR_MAM_SPACE_REMAINING, SCSI_ATTR_FLAG_NONE,
"MAM Space Remaining",
"bytes", scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_DEV_ASSIGNING_ORG, SCSI_ATTR_FLAG_NONE,
"Assigning Organization",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_FORMAT_DENSITY_CODE, SCSI_ATTR_FLAG_HEX,
"Format Density Code",
NULL, scsi_attrib_int_sbuf, NULL },
{ SMA_ATTR_INITIALIZATION_COUNT, SCSI_ATTR_FLAG_NONE,
"Initialization Count",
NULL, scsi_attrib_int_sbuf, NULL },
{ SMA_ATTR_VOLUME_ID, SCSI_ATTR_FLAG_NONE,
"Volume Identifier",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_VOLUME_CHANGE_REF, SCSI_ATTR_FLAG_HEX,
"Volume Change Reference",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_DEV_SERIAL_LAST_LOAD, SCSI_ATTR_FLAG_NONE,
"Device Vendor/Serial at Last Load",
NULL, scsi_attrib_vendser_sbuf,
NULL },
{ SMA_ATTR_DEV_SERIAL_LAST_LOAD_1, SCSI_ATTR_FLAG_NONE,
"Device Vendor/Serial at Last Load - 1",
NULL, scsi_attrib_vendser_sbuf,
NULL },
{ SMA_ATTR_DEV_SERIAL_LAST_LOAD_2, SCSI_ATTR_FLAG_NONE,
"Device Vendor/Serial at Last Load - 2",
NULL, scsi_attrib_vendser_sbuf,
NULL },
{ SMA_ATTR_DEV_SERIAL_LAST_LOAD_3, SCSI_ATTR_FLAG_NONE,
"Device Vendor/Serial at Last Load - 3",
NULL, scsi_attrib_vendser_sbuf,
NULL },
{ SMA_ATTR_TOTAL_MB_WRITTEN_LT, SCSI_ATTR_FLAG_NONE,
"Total MB Written in Medium Life",
"MB", scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_TOTAL_MB_READ_LT, SCSI_ATTR_FLAG_NONE,
"Total MB Read in Medium Life",
"MB", scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_TOTAL_MB_WRITTEN_CUR, SCSI_ATTR_FLAG_NONE,
"Total MB Written in Current/Last Load",
"MB", scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_TOTAL_MB_READ_CUR, SCSI_ATTR_FLAG_NONE,
"Total MB Read in Current/Last Load",
"MB", scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_FIRST_ENC_BLOCK, SCSI_ATTR_FLAG_NONE,
"Logical Position of First Encrypted Block",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_NEXT_UNENC_BLOCK, SCSI_ATTR_FLAG_NONE,
"Logical Position of First Unencrypted Block after First "
"Encrypted Block",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_MEDIUM_USAGE_HIST, SCSI_ATTR_FLAG_NONE,
"Medium Usage History",
NULL, NULL,
NULL },
{ SMA_ATTR_PART_USAGE_HIST, SCSI_ATTR_FLAG_NONE,
"Partition Usage History",
NULL, NULL,
NULL },
{ SMA_ATTR_MED_MANUF, SCSI_ATTR_FLAG_NONE,
"Medium Manufacturer",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_MED_SERIAL, SCSI_ATTR_FLAG_NONE,
"Medium Serial Number",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_MED_LENGTH, SCSI_ATTR_FLAG_NONE,
"Medium Length",
"m", scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_MED_WIDTH, SCSI_ATTR_FLAG_FP | SCSI_ATTR_FLAG_DIV_10 |
SCSI_ATTR_FLAG_FP_1DIGIT,
"Medium Width",
"mm", scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_MED_ASSIGNING_ORG, SCSI_ATTR_FLAG_NONE,
"Assigning Organization",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_MED_DENSITY_CODE, SCSI_ATTR_FLAG_HEX,
"Medium Density Code",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_MED_MANUF_DATE, SCSI_ATTR_FLAG_NONE,
"Medium Manufacture Date",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_MAM_CAPACITY, SCSI_ATTR_FLAG_NONE,
"MAM Capacity",
"bytes", scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_MED_TYPE, SCSI_ATTR_FLAG_HEX,
"Medium Type",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_MED_TYPE_INFO, SCSI_ATTR_FLAG_HEX,
"Medium Type Information",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_MED_SERIAL_NUM, SCSI_ATTR_FLAG_NONE,
"Medium Serial Number",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_APP_VENDOR, SCSI_ATTR_FLAG_NONE,
"Application Vendor",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_APP_NAME, SCSI_ATTR_FLAG_NONE,
"Application Name",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_APP_VERSION, SCSI_ATTR_FLAG_NONE,
"Application Version",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_USER_MED_TEXT_LABEL, SCSI_ATTR_FLAG_NONE,
"User Medium Text Label",
NULL, scsi_attrib_text_sbuf,
NULL },
{ SMA_ATTR_LAST_WRITTEN_TIME, SCSI_ATTR_FLAG_NONE,
"Date and Time Last Written",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_TEXT_LOCAL_ID, SCSI_ATTR_FLAG_HEX,
"Text Localization Identifier",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_BARCODE, SCSI_ATTR_FLAG_NONE,
"Barcode",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_HOST_OWNER_NAME, SCSI_ATTR_FLAG_NONE,
"Owning Host Textual Name",
NULL, scsi_attrib_text_sbuf,
NULL },
{ SMA_ATTR_MEDIA_POOL, SCSI_ATTR_FLAG_NONE,
"Media Pool",
NULL, scsi_attrib_text_sbuf,
NULL },
{ SMA_ATTR_PART_USER_LABEL, SCSI_ATTR_FLAG_NONE,
"Partition User Text Label",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_LOAD_UNLOAD_AT_PART, SCSI_ATTR_FLAG_NONE,
"Load/Unload at Partition",
NULL, scsi_attrib_int_sbuf,
NULL },
{ SMA_ATTR_APP_FORMAT_VERSION, SCSI_ATTR_FLAG_NONE,
"Application Format Version",
NULL, scsi_attrib_ascii_sbuf,
NULL },
{ SMA_ATTR_VOL_COHERENCY_INFO, SCSI_ATTR_FLAG_NONE,
"Volume Coherency Information",
NULL, scsi_attrib_volcoh_sbuf,
NULL },
{ 0x0ff1, SCSI_ATTR_FLAG_NONE,
"Spectra MLM Creation",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x0ff2, SCSI_ATTR_FLAG_NONE,
"Spectra MLM C3",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x0ff3, SCSI_ATTR_FLAG_NONE,
"Spectra MLM RW",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x0ff4, SCSI_ATTR_FLAG_NONE,
"Spectra MLM SDC List",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x0ff7, SCSI_ATTR_FLAG_NONE,
"Spectra MLM Post Scan",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x0ffe, SCSI_ATTR_FLAG_NONE,
"Spectra MLM Checksum",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x17f1, SCSI_ATTR_FLAG_NONE,
"Spectra MLM Creation",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x17f2, SCSI_ATTR_FLAG_NONE,
"Spectra MLM C3",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x17f3, SCSI_ATTR_FLAG_NONE,
"Spectra MLM RW",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x17f4, SCSI_ATTR_FLAG_NONE,
"Spectra MLM SDC List",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x17f7, SCSI_ATTR_FLAG_NONE,
"Spectra MLM Post Scan",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
{ 0x17ff, SCSI_ATTR_FLAG_NONE,
"Spectra MLM Checksum",
NULL, scsi_attrib_hexdump_sbuf,
NULL },
};
int
scsi_attrib_volcoh_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
uint32_t valid_len, uint32_t flags,
uint32_t output_flags, char *error_str,
int error_str_len)
{
size_t avail_len;
uint32_t field_size;
uint64_t tmp_val;
uint8_t *cur_ptr;
int retval;
int vcr_len, as_len;
retval = 0;
tmp_val = 0;
field_size = scsi_2btoul(hdr->length);
avail_len = valid_len - sizeof(*hdr);
if (field_size > avail_len) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "Available "
"length of attribute ID 0x%.4x %zu < field "
"length %u", scsi_2btoul(hdr->id), avail_len,
field_size);
}
retval = 1;
goto bailout;
} else if (field_size == 0) {
goto bailout;
}
cur_ptr = hdr->attribute;
vcr_len = *cur_ptr;
cur_ptr++;
sbuf_cat(sb, "\n\tVolume Change Reference Value:");
switch (vcr_len) {
case 0:
if (error_str != NULL) {
snprintf(error_str, error_str_len, "Volume Change "
"Reference value has length of 0");
}
retval = 1;
goto bailout;
break;
case 1:
tmp_val = *cur_ptr;
break;
case 2:
tmp_val = scsi_2btoul(cur_ptr);
break;
case 3:
tmp_val = scsi_3btoul(cur_ptr);
break;
case 4:
tmp_val = scsi_4btoul(cur_ptr);
break;
case 8:
tmp_val = scsi_8btou64(cur_ptr);
break;
default:
sbuf_putc(sb, '\n');
sbuf_hexdump(sb, cur_ptr, vcr_len, NULL, 0);
break;
}
if (vcr_len <= 8)
sbuf_printf(sb, " 0x%jx\n", (uintmax_t)tmp_val);
cur_ptr += vcr_len;
tmp_val = scsi_8btou64(cur_ptr);
sbuf_printf(sb, "\tVolume Coherency Count: %ju\n", (uintmax_t)tmp_val);
cur_ptr += sizeof(tmp_val);
tmp_val = scsi_8btou64(cur_ptr);
sbuf_printf(sb, "\tVolume Coherency Set Identifier: 0x%jx\n",
(uintmax_t)tmp_val);
cur_ptr += sizeof(tmp_val);
as_len = scsi_2btoul(cur_ptr);
cur_ptr += sizeof(uint16_t);
sbuf_cat(sb, "\tApplication Client Specific Information: ");
if (((as_len == SCSI_LTFS_VER0_LEN)
|| (as_len == SCSI_LTFS_VER1_LEN))
&& (strncmp(cur_ptr, SCSI_LTFS_STR_NAME, SCSI_LTFS_STR_LEN) == 0)) {
sbuf_cat(sb, "LTFS\n");
cur_ptr += SCSI_LTFS_STR_LEN + 1;
if (cur_ptr[SCSI_LTFS_UUID_LEN] != '\0')
cur_ptr[SCSI_LTFS_UUID_LEN] = '\0';
sbuf_printf(sb, "\tLTFS UUID: %s\n", cur_ptr);
cur_ptr += SCSI_LTFS_UUID_LEN + 1;
sbuf_printf(sb, "\tLTFS Version: %d\n", *cur_ptr);
} else {
sbuf_cat(sb, "Unknown\n");
sbuf_hexdump(sb, cur_ptr, as_len, NULL, 0);
}
bailout:
return (retval);
}
int
scsi_attrib_vendser_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
uint32_t valid_len, uint32_t flags,
uint32_t output_flags, char *error_str,
int error_str_len)
{
size_t avail_len;
uint32_t field_size;
struct scsi_attrib_vendser *vendser;
cam_strvis_flags strvis_flags;
int retval = 0;
field_size = scsi_2btoul(hdr->length);
avail_len = valid_len - sizeof(*hdr);
if (field_size > avail_len) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "Available "
"length of attribute ID 0x%.4x %zu < field "
"length %u", scsi_2btoul(hdr->id), avail_len,
field_size);
}
retval = 1;
goto bailout;
} else if (field_size == 0) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "The length of "
"attribute ID 0x%.4x is 0",
scsi_2btoul(hdr->id));
}
retval = 1;
goto bailout;
}
vendser = (struct scsi_attrib_vendser *)hdr->attribute;
switch (output_flags & SCSI_ATTR_OUTPUT_NONASCII_MASK) {
case SCSI_ATTR_OUTPUT_NONASCII_TRIM:
strvis_flags = CAM_STRVIS_FLAG_NONASCII_TRIM;
break;
case SCSI_ATTR_OUTPUT_NONASCII_RAW:
strvis_flags = CAM_STRVIS_FLAG_NONASCII_RAW;
break;
case SCSI_ATTR_OUTPUT_NONASCII_ESC:
default:
strvis_flags = CAM_STRVIS_FLAG_NONASCII_ESC;
break;
}
cam_strvis_sbuf(sb, vendser->vendor, sizeof(vendser->vendor),
strvis_flags);
sbuf_putc(sb, ' ');
cam_strvis_sbuf(sb, vendser->serial_num, sizeof(vendser->serial_num),
strvis_flags);
bailout:
return (retval);
}
int
scsi_attrib_hexdump_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
uint32_t valid_len, uint32_t flags,
uint32_t output_flags, char *error_str,
int error_str_len)
{
uint32_t field_size;
ssize_t avail_len;
uint32_t print_len;
uint8_t *num_ptr;
int retval = 0;
field_size = scsi_2btoul(hdr->length);
avail_len = valid_len - sizeof(*hdr);
print_len = MIN(avail_len, field_size);
num_ptr = hdr->attribute;
if (print_len > 0) {
sbuf_putc(sb, '\n');
sbuf_hexdump(sb, num_ptr, print_len, NULL, 0);
}
return (retval);
}
int
scsi_attrib_int_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
uint32_t valid_len, uint32_t flags,
uint32_t output_flags, char *error_str,
int error_str_len)
{
uint64_t print_number;
size_t avail_len;
uint32_t number_size;
int retval = 0;
number_size = scsi_2btoul(hdr->length);
avail_len = valid_len - sizeof(*hdr);
if (avail_len < number_size) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "Available "
"length of attribute ID 0x%.4x %zu < field "
"length %u", scsi_2btoul(hdr->id), avail_len,
number_size);
}
retval = 1;
goto bailout;
}
switch (number_size) {
case 0:
goto bailout;
break;
case 1:
print_number = hdr->attribute[0];
break;
case 2:
print_number = scsi_2btoul(hdr->attribute);
break;
case 3:
print_number = scsi_3btoul(hdr->attribute);
break;
case 4:
print_number = scsi_4btoul(hdr->attribute);
break;
case 8:
print_number = scsi_8btou64(hdr->attribute);
break;
default:
retval = scsi_attrib_hexdump_sbuf(sb, hdr, valid_len,
flags, output_flags,
error_str, error_str_len);
goto bailout;
break;
}
if (flags & SCSI_ATTR_FLAG_FP) {
#ifndef _KERNEL
long double num_float;
num_float = (long double)print_number;
if (flags & SCSI_ATTR_FLAG_DIV_10)
num_float /= 10;
sbuf_printf(sb, "%.*Lf", (flags & SCSI_ATTR_FLAG_FP_1DIGIT) ?
1 : 0, num_float);
#else
sbuf_printf(sb, "%ju", (flags & SCSI_ATTR_FLAG_DIV_10) ?
(print_number / 10) : print_number);
#endif
} else if (flags & SCSI_ATTR_FLAG_HEX) {
sbuf_printf(sb, "0x%jx", (uintmax_t)print_number);
} else
sbuf_printf(sb, "%ju", (uintmax_t)print_number);
bailout:
return (retval);
}
int
scsi_attrib_ascii_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
uint32_t valid_len, uint32_t flags,
uint32_t output_flags, char *error_str,
int error_str_len)
{
size_t avail_len;
uint32_t field_size, print_size;
int retval = 0;
avail_len = valid_len - sizeof(*hdr);
field_size = scsi_2btoul(hdr->length);
print_size = MIN(avail_len, field_size);
if (print_size > 0) {
cam_strvis_flags strvis_flags;
switch (output_flags & SCSI_ATTR_OUTPUT_NONASCII_MASK) {
case SCSI_ATTR_OUTPUT_NONASCII_TRIM:
strvis_flags = CAM_STRVIS_FLAG_NONASCII_TRIM;
break;
case SCSI_ATTR_OUTPUT_NONASCII_RAW:
strvis_flags = CAM_STRVIS_FLAG_NONASCII_RAW;
break;
case SCSI_ATTR_OUTPUT_NONASCII_ESC:
default:
strvis_flags = CAM_STRVIS_FLAG_NONASCII_ESC;
break;
}
cam_strvis_sbuf(sb, hdr->attribute, print_size, strvis_flags);
} else if (avail_len < field_size) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "Available "
"length of attribute ID 0x%.4x %zu < field "
"length %u", scsi_2btoul(hdr->id), avail_len,
field_size);
}
retval = 1;
}
return (retval);
}
int
scsi_attrib_text_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
uint32_t valid_len, uint32_t flags,
uint32_t output_flags, char *error_str,
int error_str_len)
{
size_t avail_len;
uint32_t field_size, print_size;
int retval = 0;
int esc_text = 1;
avail_len = valid_len - sizeof(*hdr);
field_size = scsi_2btoul(hdr->length);
print_size = MIN(avail_len, field_size);
if ((output_flags & SCSI_ATTR_OUTPUT_TEXT_MASK) ==
SCSI_ATTR_OUTPUT_TEXT_RAW)
esc_text = 0;
if (print_size > 0) {
uint32_t i;
for (i = 0; i < print_size; i++) {
if (hdr->attribute[i] == '\0')
continue;
else if (((unsigned char)hdr->attribute[i] < 0x80)
|| (esc_text == 0))
sbuf_putc(sb, hdr->attribute[i]);
else
sbuf_printf(sb, "%%%02x",
(unsigned char)hdr->attribute[i]);
}
} else if (avail_len < field_size) {
if (error_str != NULL) {
snprintf(error_str, error_str_len, "Available "
"length of attribute ID 0x%.4x %zu < field "
"length %u", scsi_2btoul(hdr->id), avail_len,
field_size);
}
retval = 1;
}
return (retval);
}
struct scsi_attrib_table_entry *
scsi_find_attrib_entry(struct scsi_attrib_table_entry *table,
size_t num_table_entries, uint32_t id)
{
uint32_t i;
for (i = 0; i < num_table_entries; i++) {
if (table[i].id == id)
return (&table[i]);
}
return (NULL);
}
struct scsi_attrib_table_entry *
scsi_get_attrib_entry(uint32_t id)
{
return (scsi_find_attrib_entry(scsi_mam_attr_table,
nitems(scsi_mam_attr_table), id));
}
int
scsi_attrib_value_sbuf(struct sbuf *sb, uint32_t valid_len,
struct scsi_mam_attribute_header *hdr, uint32_t output_flags,
char *error_str, size_t error_str_len)
{
int retval;
switch (hdr->byte2 & SMA_FORMAT_MASK) {
case SMA_FORMAT_ASCII:
retval = scsi_attrib_ascii_sbuf(sb, hdr, valid_len,
SCSI_ATTR_FLAG_NONE, output_flags, error_str,error_str_len);
break;
case SMA_FORMAT_BINARY:
if (scsi_2btoul(hdr->length) <= 8)
retval = scsi_attrib_int_sbuf(sb, hdr, valid_len,
SCSI_ATTR_FLAG_NONE, output_flags, error_str,
error_str_len);
else
retval = scsi_attrib_hexdump_sbuf(sb, hdr, valid_len,
SCSI_ATTR_FLAG_NONE, output_flags, error_str,
error_str_len);
break;
case SMA_FORMAT_TEXT:
retval = scsi_attrib_text_sbuf(sb, hdr, valid_len,
SCSI_ATTR_FLAG_NONE, output_flags, error_str,
error_str_len);
break;
default:
if (error_str != NULL) {
snprintf(error_str, error_str_len, "Unknown attribute "
"format 0x%x", hdr->byte2 & SMA_FORMAT_MASK);
}
retval = 1;
goto bailout;
break;
}
sbuf_trim(sb);
bailout:
return (retval);
}
void
scsi_attrib_prefix_sbuf(struct sbuf *sb, uint32_t output_flags,
struct scsi_mam_attribute_header *hdr,
uint32_t valid_len, const char *desc)
{
int need_space = 0;
uint32_t len;
uint32_t id;
if (valid_len < sizeof(*hdr))
return;
id = scsi_2btoul(hdr->id);
len = scsi_2btoul(hdr->length);
if ((output_flags & SCSI_ATTR_OUTPUT_FIELD_MASK) ==
SCSI_ATTR_OUTPUT_FIELD_NONE)
return;
if ((output_flags & SCSI_ATTR_OUTPUT_FIELD_DESC)
&& (desc != NULL)) {
sbuf_cat(sb, desc);
need_space = 1;
}
if (output_flags & SCSI_ATTR_OUTPUT_FIELD_NUM) {
sbuf_printf(sb, "%s(0x%.4x)", (need_space) ? " " : "", id);
need_space = 0;
}
if (output_flags & SCSI_ATTR_OUTPUT_FIELD_SIZE) {
sbuf_printf(sb, "%s[%d]", (need_space) ? " " : "", len);
need_space = 0;
}
if (output_flags & SCSI_ATTR_OUTPUT_FIELD_RW) {
sbuf_printf(sb, "%s(%s)", (need_space) ? " " : "",
(hdr->byte2 & SMA_READ_ONLY) ? "RO" : "RW");
}
sbuf_cat(sb, ": ");
}
int
scsi_attrib_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
uint32_t valid_len, struct scsi_attrib_table_entry *user_table,
size_t num_user_entries, int prefer_user_table,
uint32_t output_flags, char *error_str, int error_str_len)
{
int retval;
struct scsi_attrib_table_entry *table1 = NULL, *table2 = NULL;
struct scsi_attrib_table_entry *entry = NULL;
size_t table1_size = 0, table2_size = 0;
uint32_t id;
retval = 0;
if (valid_len < sizeof(*hdr)) {
retval = 1;
goto bailout;
}
id = scsi_2btoul(hdr->id);
if (user_table != NULL) {
if (prefer_user_table != 0) {
table1 = user_table;
table1_size = num_user_entries;
table2 = scsi_mam_attr_table;
table2_size = nitems(scsi_mam_attr_table);
} else {
table1 = scsi_mam_attr_table;
table1_size = nitems(scsi_mam_attr_table);
table2 = user_table;
table2_size = num_user_entries;
}
} else {
table1 = scsi_mam_attr_table;
table1_size = nitems(scsi_mam_attr_table);
}
entry = scsi_find_attrib_entry(table1, table1_size, id);
if (entry != NULL) {
scsi_attrib_prefix_sbuf(sb, output_flags, hdr, valid_len,
entry->desc);
if (entry->to_str == NULL)
goto print_default;
retval = entry->to_str(sb, hdr, valid_len, entry->flags,
output_flags, error_str, error_str_len);
goto bailout;
}
if (table2 != NULL) {
entry = scsi_find_attrib_entry(table2, table2_size, id);
if (entry != NULL) {
if (entry->to_str == NULL)
goto print_default;
scsi_attrib_prefix_sbuf(sb, output_flags, hdr,
valid_len, entry->desc);
retval = entry->to_str(sb, hdr, valid_len, entry->flags,
output_flags, error_str,
error_str_len);
goto bailout;
}
}
scsi_attrib_prefix_sbuf(sb, output_flags, hdr, valid_len, NULL);
print_default:
retval = scsi_attrib_value_sbuf(sb, valid_len, hdr, output_flags,
error_str, error_str_len);
bailout:
if (retval == 0) {
if ((entry != NULL)
&& (entry->suffix != NULL))
sbuf_printf(sb, " %s", entry->suffix);
sbuf_trim(sb);
sbuf_putc(sb, '\n');
}
return (retval);
}
void
scsi_test_unit_ready(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t sense_len, uint32_t timeout)
{
struct scsi_test_unit_ready *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_NONE,
tag_action,
NULL,
0,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_test_unit_ready *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = TEST_UNIT_READY;
}
void
scsi_request_sense(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
void *data_ptr, uint8_t dxfer_len, uint8_t tag_action,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_request_sense *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_request_sense *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = REQUEST_SENSE;
scsi_cmd->length = dxfer_len;
}
void
scsi_inquiry(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t *inq_buf, uint32_t inq_len,
int evpd, uint8_t page_code, uint8_t sense_len,
uint32_t timeout)
{
struct scsi_inquiry *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
inq_buf,
inq_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_inquiry *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = INQUIRY;
if (evpd) {
scsi_cmd->byte2 |= SI_EVPD;
scsi_cmd->page_code = page_code;
}
scsi_ulto2b(inq_len, scsi_cmd->length);
}
void
scsi_mode_sense(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *), uint8_t tag_action,
int dbd, uint8_t pc, uint8_t page, uint8_t *param_buf, uint32_t param_len,
uint8_t sense_len, uint32_t timeout)
{
scsi_mode_sense_subpage(csio, retries, cbfcnp, tag_action, dbd,
pc, page, 0, param_buf, param_len, 0, sense_len, timeout);
}
void
scsi_mode_sense_len(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *), uint8_t tag_action,
int dbd, uint8_t pc, uint8_t page, uint8_t *param_buf, uint32_t param_len,
int minimum_cmd_size, uint8_t sense_len, uint32_t timeout)
{
scsi_mode_sense_subpage(csio, retries, cbfcnp, tag_action, dbd,
pc, page, 0, param_buf, param_len, minimum_cmd_size,
sense_len, timeout);
}
void
scsi_mode_sense_subpage(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *), uint8_t tag_action,
int dbd, uint8_t pc, uint8_t page, uint8_t subpage, uint8_t *param_buf,
uint32_t param_len, int minimum_cmd_size, uint8_t sense_len,
uint32_t timeout)
{
uint8_t cdb_len;
if ((param_len < 256)
&& (minimum_cmd_size < 10)) {
struct scsi_mode_sense_6 *scsi_cmd;
scsi_cmd = (struct scsi_mode_sense_6 *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MODE_SENSE_6;
if (dbd != 0)
scsi_cmd->byte2 |= SMS_DBD;
scsi_cmd->page = pc | page;
scsi_cmd->subpage = subpage;
scsi_cmd->length = param_len;
cdb_len = sizeof(*scsi_cmd);
} else {
struct scsi_mode_sense_10 *scsi_cmd;
scsi_cmd = (struct scsi_mode_sense_10 *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MODE_SENSE_10;
if (dbd != 0)
scsi_cmd->byte2 |= SMS_DBD;
scsi_cmd->page = pc | page;
scsi_cmd->subpage = subpage;
scsi_ulto2b(param_len, scsi_cmd->length);
cdb_len = sizeof(*scsi_cmd);
}
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
param_buf,
param_len,
sense_len,
cdb_len,
timeout);
}
void
scsi_mode_select(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int scsi_page_fmt, int save_pages,
uint8_t *param_buf, uint32_t param_len, uint8_t sense_len,
uint32_t timeout)
{
scsi_mode_select_len(csio, retries, cbfcnp, tag_action,
scsi_page_fmt, save_pages, param_buf,
param_len, 0, sense_len, timeout);
}
void
scsi_mode_select_len(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int scsi_page_fmt, int save_pages,
uint8_t *param_buf, uint32_t param_len,
int minimum_cmd_size, uint8_t sense_len,
uint32_t timeout)
{
uint8_t cdb_len;
if ((param_len < 256)
&& (minimum_cmd_size < 10)) {
struct scsi_mode_select_6 *scsi_cmd;
scsi_cmd = (struct scsi_mode_select_6 *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MODE_SELECT_6;
if (scsi_page_fmt != 0)
scsi_cmd->byte2 |= SMS_PF;
if (save_pages != 0)
scsi_cmd->byte2 |= SMS_SP;
scsi_cmd->length = param_len;
cdb_len = sizeof(*scsi_cmd);
} else {
struct scsi_mode_select_10 *scsi_cmd;
scsi_cmd =
(struct scsi_mode_select_10 *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MODE_SELECT_10;
if (scsi_page_fmt != 0)
scsi_cmd->byte2 |= SMS_PF;
if (save_pages != 0)
scsi_cmd->byte2 |= SMS_SP;
scsi_ulto2b(param_len, scsi_cmd->length);
cdb_len = sizeof(*scsi_cmd);
}
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
param_buf,
param_len,
sense_len,
cdb_len,
timeout);
}
void
scsi_log_sense(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t page_code, uint8_t page,
int save_pages, int ppc, uint32_t paramptr,
uint8_t *param_buf, uint32_t param_len, uint8_t sense_len,
uint32_t timeout)
{
struct scsi_log_sense *scsi_cmd;
uint8_t cdb_len;
scsi_cmd = (struct scsi_log_sense *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = LOG_SENSE;
scsi_cmd->page = page_code | page;
if (save_pages != 0)
scsi_cmd->byte2 |= SLS_SP;
if (ppc != 0)
scsi_cmd->byte2 |= SLS_PPC;
scsi_ulto2b(paramptr, scsi_cmd->paramptr);
scsi_ulto2b(param_len, scsi_cmd->length);
cdb_len = sizeof(*scsi_cmd);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
param_buf,
param_len,
sense_len,
cdb_len,
timeout);
}
void
scsi_log_select(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t page_code, int save_pages,
int pc_reset, uint8_t *param_buf, uint32_t param_len,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_log_select *scsi_cmd;
uint8_t cdb_len;
scsi_cmd = (struct scsi_log_select *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = LOG_SELECT;
scsi_cmd->page = page_code & SLS_PAGE_CODE;
if (save_pages != 0)
scsi_cmd->byte2 |= SLS_SP;
if (pc_reset != 0)
scsi_cmd->byte2 |= SLS_PCR;
scsi_ulto2b(param_len, scsi_cmd->length);
cdb_len = sizeof(*scsi_cmd);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
param_buf,
param_len,
sense_len,
cdb_len,
timeout);
}
void
scsi_prevent(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t action,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_prevent *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_NONE,
tag_action,
NULL,
0,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_prevent *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = PREVENT_ALLOW;
scsi_cmd->how = action;
}
void
scsi_read_capacity(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action,
struct scsi_read_capacity_data *rcap_buf,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_read_capacity *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
(uint8_t *)rcap_buf,
sizeof(*rcap_buf),
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_read_capacity *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = READ_CAPACITY;
}
void
scsi_read_capacity_16(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint64_t lba, int reladr, int pmi,
uint8_t *rcap_buf, int rcap_buf_len, uint8_t sense_len,
uint32_t timeout)
{
struct scsi_read_capacity_16 *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
(uint8_t *)rcap_buf,
rcap_buf_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_read_capacity_16 *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = SERVICE_ACTION_IN;
scsi_cmd->service_action = SRC16_SERVICE_ACTION;
scsi_u64to8b(lba, scsi_cmd->addr);
scsi_ulto4b(rcap_buf_len, scsi_cmd->alloc_len);
if (pmi)
reladr |= SRC16_PMI;
if (reladr)
reladr |= SRC16_RELADR;
}
void
scsi_report_luns(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t select_report,
struct scsi_report_luns_data *rpl_buf, uint32_t alloc_len,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_report_luns *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
(uint8_t *)rpl_buf,
alloc_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_report_luns *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = REPORT_LUNS;
scsi_cmd->select_report = select_report;
scsi_ulto4b(alloc_len, scsi_cmd->length);
}
void
scsi_report_target_group(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t pdf,
void *buf, uint32_t alloc_len,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_target_group *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
(uint8_t *)buf,
alloc_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_target_group *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MAINTENANCE_IN;
scsi_cmd->service_action = REPORT_TARGET_PORT_GROUPS | pdf;
scsi_ulto4b(alloc_len, scsi_cmd->length);
}
void
scsi_report_timestamp(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t pdf,
void *buf, uint32_t alloc_len,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_timestamp *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
(uint8_t *)buf,
alloc_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_timestamp *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MAINTENANCE_IN;
scsi_cmd->service_action = REPORT_TIMESTAMP | pdf;
scsi_ulto4b(alloc_len, scsi_cmd->length);
}
void
scsi_set_target_group(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, void *buf, uint32_t alloc_len,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_target_group *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
(uint8_t *)buf,
alloc_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_target_group *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MAINTENANCE_OUT;
scsi_cmd->service_action = SET_TARGET_PORT_GROUPS;
scsi_ulto4b(alloc_len, scsi_cmd->length);
}
void
scsi_create_timestamp(uint8_t *timestamp_6b_buf,
uint64_t timestamp)
{
uint8_t buf[8];
scsi_u64to8b(timestamp, buf);
memcpy(timestamp_6b_buf, &buf[2], 6);
}
void
scsi_set_timestamp(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, void *buf, uint32_t alloc_len,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_timestamp *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
(uint8_t *) buf,
alloc_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_timestamp *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = MAINTENANCE_OUT;
scsi_cmd->service_action = SET_TIMESTAMP;
scsi_ulto4b(alloc_len, scsi_cmd->length);
}
void
scsi_synchronize_cache(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint32_t begin_lba,
uint16_t lb_count, uint8_t sense_len,
uint32_t timeout)
{
struct scsi_sync_cache *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_NONE,
tag_action,
NULL,
0,
sense_len,
sizeof(*scsi_cmd),
timeout);
scsi_cmd = (struct scsi_sync_cache *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = SYNCHRONIZE_CACHE;
scsi_ulto4b(begin_lba, scsi_cmd->begin_lba);
scsi_ulto2b(lb_count, scsi_cmd->lb_count);
}
void
scsi_read_write(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int readop, uint8_t byte2,
int minimum_cmd_size, uint64_t lba, uint32_t block_count,
uint8_t *data_ptr, uint32_t dxfer_len, uint8_t sense_len,
uint32_t timeout)
{
int read;
uint8_t cdb_len;
read = (readop & SCSI_RW_DIRMASK) == SCSI_RW_READ;
if ((minimum_cmd_size < 10)
&& ((lba & 0x1fffff) == lba)
&& ((block_count & 0xff) == block_count)
&& (byte2 == 0)) {
struct scsi_rw_6 *scsi_cmd;
scsi_cmd = (struct scsi_rw_6 *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = read ? READ_6 : WRITE_6;
scsi_ulto3b(lba, scsi_cmd->addr);
scsi_cmd->length = block_count & 0xff;
scsi_cmd->control = 0;
cdb_len = sizeof(*scsi_cmd);
CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
("6byte: %x%x%x:%d:%d\n", scsi_cmd->addr[0],
scsi_cmd->addr[1], scsi_cmd->addr[2],
scsi_cmd->length, dxfer_len));
} else if ((minimum_cmd_size < 12)
&& ((block_count & 0xffff) == block_count)
&& ((lba & 0xffffffff) == lba)) {
struct scsi_rw_10 *scsi_cmd;
scsi_cmd = (struct scsi_rw_10 *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = read ? READ_10 : WRITE_10;
scsi_cmd->byte2 = byte2;
scsi_ulto4b(lba, scsi_cmd->addr);
scsi_cmd->reserved = 0;
scsi_ulto2b(block_count, scsi_cmd->length);
scsi_cmd->control = 0;
cdb_len = sizeof(*scsi_cmd);
CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
("10byte: %x%x%x%x:%x%x: %d\n", scsi_cmd->addr[0],
scsi_cmd->addr[1], scsi_cmd->addr[2],
scsi_cmd->addr[3], scsi_cmd->length[0],
scsi_cmd->length[1], dxfer_len));
} else if ((minimum_cmd_size < 16)
&& ((block_count & 0xffffffff) == block_count)
&& ((lba & 0xffffffff) == lba)) {
struct scsi_rw_12 *scsi_cmd;
scsi_cmd = (struct scsi_rw_12 *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = read ? READ_12 : WRITE_12;
scsi_cmd->byte2 = byte2;
scsi_ulto4b(lba, scsi_cmd->addr);
scsi_cmd->reserved = 0;
scsi_ulto4b(block_count, scsi_cmd->length);
scsi_cmd->control = 0;
cdb_len = sizeof(*scsi_cmd);
CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
("12byte: %x%x%x%x:%x%x%x%x: %d\n", scsi_cmd->addr[0],
scsi_cmd->addr[1], scsi_cmd->addr[2],
scsi_cmd->addr[3], scsi_cmd->length[0],
scsi_cmd->length[1], scsi_cmd->length[2],
scsi_cmd->length[3], dxfer_len));
} else {
struct scsi_rw_16 *scsi_cmd;
scsi_cmd = (struct scsi_rw_16 *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = read ? READ_16 : WRITE_16;
scsi_cmd->byte2 = byte2;
scsi_u64to8b(lba, scsi_cmd->addr);
scsi_cmd->reserved = 0;
scsi_ulto4b(block_count, scsi_cmd->length);
scsi_cmd->control = 0;
cdb_len = sizeof(*scsi_cmd);
}
cam_fill_csio(csio,
retries,
cbfcnp,
(read ? CAM_DIR_IN : CAM_DIR_OUT) |
((readop & SCSI_RW_BIO) != 0 ? CAM_DATA_BIO : 0),
tag_action,
data_ptr,
dxfer_len,
sense_len,
cdb_len,
timeout);
}
void
scsi_write_same(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t byte2,
int minimum_cmd_size, uint64_t lba, uint32_t block_count,
uint8_t *data_ptr, uint32_t dxfer_len, uint8_t sense_len,
uint32_t timeout)
{
uint8_t cdb_len;
if ((minimum_cmd_size < 16) &&
((block_count & 0xffff) == block_count) &&
((lba & 0xffffffff) == lba)) {
struct scsi_write_same_10 *scsi_cmd;
scsi_cmd = (struct scsi_write_same_10 *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = WRITE_SAME_10;
scsi_cmd->byte2 = byte2;
scsi_ulto4b(lba, scsi_cmd->addr);
scsi_cmd->group = 0;
scsi_ulto2b(block_count, scsi_cmd->length);
scsi_cmd->control = 0;
cdb_len = sizeof(*scsi_cmd);
CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
("10byte: %x%x%x%x:%x%x: %d\n", scsi_cmd->addr[0],
scsi_cmd->addr[1], scsi_cmd->addr[2],
scsi_cmd->addr[3], scsi_cmd->length[0],
scsi_cmd->length[1], dxfer_len));
} else {
struct scsi_write_same_16 *scsi_cmd;
scsi_cmd = (struct scsi_write_same_16 *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = WRITE_SAME_16;
scsi_cmd->byte2 = byte2;
scsi_u64to8b(lba, scsi_cmd->addr);
scsi_ulto4b(block_count, scsi_cmd->length);
scsi_cmd->group = 0;
scsi_cmd->control = 0;
cdb_len = sizeof(*scsi_cmd);
CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
("16byte: %x%x%x%x%x%x%x%x:%x%x%x%x: %d\n",
scsi_cmd->addr[0], scsi_cmd->addr[1],
scsi_cmd->addr[2], scsi_cmd->addr[3],
scsi_cmd->addr[4], scsi_cmd->addr[5],
scsi_cmd->addr[6], scsi_cmd->addr[7],
scsi_cmd->length[0], scsi_cmd->length[1],
scsi_cmd->length[2], scsi_cmd->length[3],
dxfer_len));
}
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
data_ptr,
dxfer_len,
sense_len,
cdb_len,
timeout);
}
void
scsi_ata_identify(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t *data_ptr,
uint16_t dxfer_len, uint8_t sense_len,
uint32_t timeout)
{
scsi_ata_pass(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
AP_PROTO_PIO_IN,
AP_FLAG_TDIR_FROM_DEV |
AP_FLAG_BYT_BLOK_BLOCKS |
AP_FLAG_TLEN_SECT_CNT,
0,
dxfer_len / 512,
0,
ATA_ATA_IDENTIFY,
0,
0,
0,
0,
data_ptr,
dxfer_len,
NULL,
0,
0,
sense_len,
timeout);
}
void
scsi_ata_trim(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint16_t block_count,
uint8_t *data_ptr, uint16_t dxfer_len, uint8_t sense_len,
uint32_t timeout)
{
scsi_ata_pass_16(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
AP_EXTEND|AP_PROTO_DMA,
AP_FLAG_TLEN_SECT_CNT|AP_FLAG_BYT_BLOK_BLOCKS,
ATA_DSM_TRIM,
block_count,
0,
ATA_DATA_SET_MANAGEMENT,
0,
data_ptr,
dxfer_len,
sense_len,
timeout);
}
int
scsi_ata_read_log(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint32_t log_address,
uint32_t page_number, uint16_t block_count,
uint8_t protocol, uint8_t *data_ptr, uint32_t dxfer_len,
uint8_t sense_len, uint32_t timeout)
{
uint8_t command, protocol_out;
uint16_t count_out;
uint64_t lba;
int retval;
retval = 0;
switch (protocol) {
case AP_PROTO_DMA:
count_out = block_count;
command = ATA_READ_LOG_DMA_EXT;
protocol_out = AP_PROTO_DMA;
break;
case AP_PROTO_PIO_IN:
default:
count_out = block_count;
command = ATA_READ_LOG_EXT;
protocol_out = AP_PROTO_PIO_IN;
break;
}
lba = (((uint64_t)page_number & 0xff00) << 32) |
((page_number & 0x00ff) << 8) |
(log_address & 0xff);
protocol_out |= AP_EXTEND;
retval = scsi_ata_pass(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
protocol_out,
AP_FLAG_TLEN_SECT_CNT |
AP_FLAG_BYT_BLOK_BLOCKS |
AP_FLAG_TDIR_FROM_DEV,
0,
count_out,
lba,
command,
0,
0,
0,
0,
data_ptr,
dxfer_len,
NULL,
0,
0,
sense_len,
timeout);
return (retval);
}
int scsi_ata_setfeatures(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t feature,
uint64_t lba, uint32_t count,
uint8_t sense_len, uint32_t timeout)
{
return (scsi_ata_pass(csio,
retries,
cbfcnp,
CAM_DIR_NONE,
tag_action,
AP_PROTO_PIO_IN,
AP_FLAG_TDIR_FROM_DEV |
AP_FLAG_BYT_BLOK_BYTES |
AP_FLAG_TLEN_SECT_CNT,
feature,
count,
lba,
ATA_SETFEATURES,
0,
0,
0,
0,
NULL,
0,
NULL,
0,
0,
sense_len,
timeout));
}
int
scsi_ata_pass(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
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 device, uint8_t icc, uint32_t auxiliary,
uint8_t control, uint8_t *data_ptr, uint32_t dxfer_len,
uint8_t *cdb_storage, size_t cdb_storage_len,
int minimum_cmd_size, uint8_t sense_len, uint32_t timeout)
{
uint32_t cam_flags;
uint8_t *cdb_ptr;
int cmd_size;
int retval;
uint8_t cdb_len;
retval = 0;
cam_flags = flags;
if (minimum_cmd_size <= 12)
cmd_size = 12;
else if (minimum_cmd_size > 16)
cmd_size = 32;
else
cmd_size = 16;
if (((lba > ATA_MAX_28BIT_LBA)
|| (sector_count > 255)
|| (features > 255)
|| (protocol & AP_EXTEND))
&& ((cmd_size < 16)
|| ((protocol & AP_EXTEND) == 0))) {
if (cmd_size < 16)
cmd_size = 16;
protocol |= AP_EXTEND;
}
if ((icc != 0)
|| (auxiliary != 0)) {
cmd_size = 32;
protocol |= AP_EXTEND;
}
if ((cmd_size > sizeof(csio->cdb_io.cdb_bytes))
&& ((cdb_storage == NULL)
|| (cdb_storage_len < cmd_size))) {
retval = 1;
goto bailout;
}
if (cmd_size <= sizeof(csio->cdb_io.cdb_bytes))
cdb_ptr = csio->cdb_io.cdb_bytes;
else {
cdb_ptr = cdb_storage;
cam_flags |= CAM_CDB_POINTER;
}
if (cmd_size <= 12) {
struct ata_pass_12 *cdb;
cdb = (struct ata_pass_12 *)cdb_ptr;
cdb_len = sizeof(*cdb);
bzero(cdb, cdb_len);
cdb->opcode = ATA_PASS_12;
cdb->protocol = protocol;
cdb->flags = ata_flags;
cdb->features = features;
cdb->sector_count = sector_count;
cdb->lba_low = lba & 0xff;
cdb->lba_mid = (lba >> 8) & 0xff;
cdb->lba_high = (lba >> 16) & 0xff;
cdb->device = ((lba >> 24) & 0xf) | ATA_DEV_LBA;
cdb->command = command;
cdb->control = control;
} else if (cmd_size <= 16) {
struct ata_pass_16 *cdb;
cdb = (struct ata_pass_16 *)cdb_ptr;
cdb_len = sizeof(*cdb);
bzero(cdb, cdb_len);
cdb->opcode = ATA_PASS_16;
cdb->protocol = protocol;
cdb->flags = ata_flags;
cdb->features = features & 0xff;
cdb->sector_count = sector_count & 0xff;
cdb->lba_low = lba & 0xff;
cdb->lba_mid = (lba >> 8) & 0xff;
cdb->lba_high = (lba >> 16) & 0xff;
if (protocol & AP_EXTEND) {
cdb->lba_low_ext = (lba >> 24) & 0xff;
cdb->lba_mid_ext = (lba >> 32) & 0xff;
cdb->lba_high_ext = (lba >> 40) & 0xff;
cdb->features_ext = (features >> 8) & 0xff;
cdb->sector_count_ext = (sector_count >> 8) & 0xff;
cdb->device = device | ATA_DEV_LBA;
} else {
cdb->lba_low_ext = (lba >> 24) & 0xf;
cdb->device = ((lba >> 24) & 0xf) | ATA_DEV_LBA;
}
cdb->command = command;
cdb->control = control;
} else {
struct ata_pass_32 *cdb;
uint8_t tmp_lba[8];
cdb = (struct ata_pass_32 *)cdb_ptr;
cdb_len = sizeof(*cdb);
bzero(cdb, cdb_len);
cdb->opcode = VARIABLE_LEN_CDB;
cdb->control = control;
cdb->length = sizeof(*cdb) - __offsetof(struct ata_pass_32,
service_action);
scsi_ulto2b(ATA_PASS_32_SA, cdb->service_action);
cdb->protocol = protocol;
cdb->flags = ata_flags;
if ((protocol & AP_EXTEND) == 0) {
lba &= 0x0fffffff;
cdb->device = ((lba >> 24) & 0xf) | ATA_DEV_LBA;
features &= 0xff;
sector_count &= 0xff;
} else {
cdb->device = device | ATA_DEV_LBA;
}
scsi_u64to8b(lba, tmp_lba);
bcopy(&tmp_lba[2], cdb->lba, sizeof(cdb->lba));
scsi_ulto2b(features, cdb->features);
scsi_ulto2b(sector_count, cdb->count);
cdb->command = command;
cdb->icc = icc;
scsi_ulto4b(auxiliary, cdb->auxiliary);
}
cam_fill_csio(csio,
retries,
cbfcnp,
cam_flags,
tag_action,
data_ptr,
dxfer_len,
sense_len,
cmd_size,
timeout);
bailout:
return (retval);
}
void
scsi_ata_pass_16(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
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 control, uint8_t *data_ptr, uint16_t dxfer_len,
uint8_t sense_len, uint32_t timeout)
{
struct ata_pass_16 *ata_cmd;
ata_cmd = (struct ata_pass_16 *)&csio->cdb_io.cdb_bytes;
ata_cmd->opcode = ATA_PASS_16;
ata_cmd->protocol = protocol;
ata_cmd->flags = ata_flags;
ata_cmd->features_ext = features >> 8;
ata_cmd->features = features;
ata_cmd->sector_count_ext = sector_count >> 8;
ata_cmd->sector_count = sector_count;
ata_cmd->lba_low = lba;
ata_cmd->lba_mid = lba >> 8;
ata_cmd->lba_high = lba >> 16;
ata_cmd->device = ATA_DEV_LBA;
if (protocol & AP_EXTEND) {
ata_cmd->lba_low_ext = lba >> 24;
ata_cmd->lba_mid_ext = lba >> 32;
ata_cmd->lba_high_ext = lba >> 40;
} else
ata_cmd->device |= (lba >> 24) & 0x0f;
ata_cmd->command = command;
ata_cmd->control = control;
cam_fill_csio(csio,
retries,
cbfcnp,
flags,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*ata_cmd),
timeout);
}
void
scsi_unmap(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t byte2,
uint8_t *data_ptr, uint16_t dxfer_len, uint8_t sense_len,
uint32_t timeout)
{
struct scsi_unmap *scsi_cmd;
scsi_cmd = (struct scsi_unmap *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = UNMAP;
scsi_cmd->byte2 = byte2;
scsi_ulto4b(0, scsi_cmd->reserved);
scsi_cmd->group = 0;
scsi_ulto2b(dxfer_len, scsi_cmd->length);
scsi_cmd->control = 0;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_receive_diagnostic_results(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb*),
uint8_t tag_action, int pcv, uint8_t page_code,
uint8_t *data_ptr, uint16_t allocation_length,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_receive_diag *scsi_cmd;
scsi_cmd = (struct scsi_receive_diag *)&csio->cdb_io.cdb_bytes;
memset(scsi_cmd, 0, sizeof(*scsi_cmd));
scsi_cmd->opcode = RECEIVE_DIAGNOSTIC;
if (pcv) {
scsi_cmd->byte2 |= SRD_PCV;
scsi_cmd->page_code = page_code;
}
scsi_ulto2b(allocation_length, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
data_ptr,
allocation_length,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_send_diagnostic(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int unit_offline, int device_offline,
int self_test, int page_format, int self_test_code,
uint8_t *data_ptr, uint16_t param_list_length,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_send_diag *scsi_cmd;
scsi_cmd = (struct scsi_send_diag *)&csio->cdb_io.cdb_bytes;
memset(scsi_cmd, 0, sizeof(*scsi_cmd));
scsi_cmd->opcode = SEND_DIAGNOSTIC;
if (self_test)
self_test_code = SSD_SELF_TEST_CODE_NONE;
scsi_cmd->byte2 = ((self_test_code << SSD_SELF_TEST_CODE_SHIFT)
& SSD_SELF_TEST_CODE_MASK)
| (unit_offline ? SSD_UNITOFFL : 0)
| (device_offline ? SSD_DEVOFFL : 0)
| (self_test ? SSD_SELFTEST : 0)
| (page_format ? SSD_PF : 0);
scsi_ulto2b(param_list_length, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
param_list_length ? CAM_DIR_OUT : CAM_DIR_NONE,
tag_action,
data_ptr,
param_list_length,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_get_physical_element_status(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t *data_ptr,
uint16_t allocation_length, uint8_t report_type,
uint32_t starting_element,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_get_physical_element_status *scsi_cmd;
scsi_cmd = (struct scsi_get_physical_element_status *)&csio->cdb_io.cdb_bytes;
memset(scsi_cmd, 0, sizeof(*scsi_cmd));
scsi_cmd->opcode = SERVICE_ACTION_IN;
scsi_cmd->service_action = GET_PHYSICAL_ELEMENT_STATUS;
scsi_ulto4b(starting_element, scsi_cmd->starting_element);
scsi_ulto4b(allocation_length, scsi_cmd->allocation_length);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
data_ptr,
allocation_length,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_remove_element_and_truncate(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action,
uint64_t requested_capacity, uint32_t element_id,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_remove_element_and_truncate *scsi_cmd;
scsi_cmd = (struct scsi_remove_element_and_truncate *)&csio->cdb_io.cdb_bytes;
memset(scsi_cmd, 0, sizeof(*scsi_cmd));
scsi_cmd->opcode = SERVICE_ACTION_IN;
scsi_cmd->service_action = REMOVE_ELEMENT_AND_TRUNCATE;
scsi_u64to8b(requested_capacity, scsi_cmd->requested_capacity);
scsi_ulto4b(element_id, scsi_cmd->element_identifier);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
NULL,
0,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_restore_elements_and_rebuild(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_service_action_in *scsi_cmd;
scsi_cmd = (struct scsi_service_action_in *)&csio->cdb_io.cdb_bytes;
memset(scsi_cmd, 0, sizeof(*scsi_cmd));
scsi_cmd->opcode = SERVICE_ACTION_IN;
scsi_cmd->service_action = RESTORE_ELEMENTS_AND_REBUILD;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
NULL,
0,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_read_buffer(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb*),
uint8_t tag_action, int mode,
uint8_t buffer_id, uint32_t offset,
uint8_t *data_ptr, uint32_t allocation_length,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_read_buffer *scsi_cmd;
scsi_cmd = (struct scsi_read_buffer *)&csio->cdb_io.cdb_bytes;
memset(scsi_cmd, 0, sizeof(*scsi_cmd));
scsi_cmd->opcode = READ_BUFFER;
scsi_cmd->byte2 = mode;
scsi_cmd->buffer_id = buffer_id;
scsi_ulto3b(offset, scsi_cmd->offset);
scsi_ulto3b(allocation_length, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
data_ptr,
allocation_length,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_write_buffer(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int mode,
uint8_t buffer_id, uint32_t offset,
uint8_t *data_ptr, uint32_t param_list_length,
uint8_t sense_len, uint32_t timeout)
{
struct scsi_write_buffer *scsi_cmd;
scsi_cmd = (struct scsi_write_buffer *)&csio->cdb_io.cdb_bytes;
memset(scsi_cmd, 0, sizeof(*scsi_cmd));
scsi_cmd->opcode = WRITE_BUFFER;
scsi_cmd->byte2 = mode;
scsi_cmd->buffer_id = buffer_id;
scsi_ulto3b(offset, scsi_cmd->offset);
scsi_ulto3b(param_list_length, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
param_list_length ? CAM_DIR_OUT : CAM_DIR_NONE,
tag_action,
data_ptr,
param_list_length,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_start_stop(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int start, int load_eject,
int immediate, uint8_t sense_len, uint32_t timeout)
{
struct scsi_start_stop_unit *scsi_cmd;
int extra_flags = 0;
scsi_cmd = (struct scsi_start_stop_unit *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = START_STOP_UNIT;
if (start != 0) {
scsi_cmd->how |= SSS_START;
extra_flags |= CAM_HIGH_POWER;
}
if (load_eject != 0)
scsi_cmd->how |= SSS_LOEJ;
if (immediate != 0)
scsi_cmd->byte2 |= SSS_IMMED;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_NONE | extra_flags,
tag_action,
NULL,
0,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_read_attribute(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint8_t service_action,
uint32_t element, uint8_t elem_type, int logical_volume,
int partition, uint32_t first_attribute, int cache,
uint8_t *data_ptr, uint32_t length, int sense_len,
uint32_t timeout)
{
struct scsi_read_attribute *scsi_cmd;
scsi_cmd = (struct scsi_read_attribute *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = READ_ATTRIBUTE;
scsi_cmd->service_action = service_action;
scsi_ulto2b(element, scsi_cmd->element);
scsi_cmd->elem_type = elem_type;
scsi_cmd->logical_volume = logical_volume;
scsi_cmd->partition = partition;
scsi_ulto2b(first_attribute, scsi_cmd->first_attribute);
scsi_ulto4b(length, scsi_cmd->length);
if (cache != 0)
scsi_cmd->cache |= SRA_CACHE;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
data_ptr,
length,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_write_attribute(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint32_t element, int logical_volume,
int partition, int wtc, uint8_t *data_ptr,
uint32_t length, int sense_len, uint32_t timeout)
{
struct scsi_write_attribute *scsi_cmd;
scsi_cmd = (struct scsi_write_attribute *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = WRITE_ATTRIBUTE;
if (wtc != 0)
scsi_cmd->byte2 = SWA_WTC;
scsi_ulto3b(element, scsi_cmd->element);
scsi_cmd->logical_volume = logical_volume;
scsi_cmd->partition = partition;
scsi_ulto4b(length, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
data_ptr,
length,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_persistent_reserve_in(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int service_action,
uint8_t *data_ptr, uint32_t dxfer_len, int sense_len,
int timeout)
{
struct scsi_per_res_in *scsi_cmd;
scsi_cmd = (struct scsi_per_res_in *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = PERSISTENT_RES_IN;
scsi_cmd->action = service_action;
scsi_ulto2b(dxfer_len, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_persistent_reserve_out(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, int service_action,
int scope, int res_type, uint8_t *data_ptr,
uint32_t dxfer_len, int sense_len, int timeout)
{
struct scsi_per_res_out *scsi_cmd;
scsi_cmd = (struct scsi_per_res_out *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = PERSISTENT_RES_OUT;
scsi_cmd->action = service_action;
scsi_cmd->scope_type = scope | res_type;
scsi_ulto4b(dxfer_len, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_security_protocol_in(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint32_t security_protocol,
uint32_t security_protocol_specific, int byte4,
uint8_t *data_ptr, uint32_t dxfer_len, int sense_len,
int timeout)
{
struct scsi_security_protocol_in *scsi_cmd;
scsi_cmd = (struct scsi_security_protocol_in *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = SECURITY_PROTOCOL_IN;
scsi_cmd->security_protocol = security_protocol;
scsi_ulto2b(security_protocol_specific,
scsi_cmd->security_protocol_specific);
scsi_cmd->byte4 = byte4;
scsi_ulto4b(dxfer_len, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
void
scsi_security_protocol_out(struct ccb_scsiio *csio, uint32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
uint8_t tag_action, uint32_t security_protocol,
uint32_t security_protocol_specific, int byte4,
uint8_t *data_ptr, uint32_t dxfer_len, int sense_len,
int timeout)
{
struct scsi_security_protocol_out *scsi_cmd;
scsi_cmd = (struct scsi_security_protocol_out *)&csio->cdb_io.cdb_bytes;
bzero(scsi_cmd, sizeof(*scsi_cmd));
scsi_cmd->opcode = SECURITY_PROTOCOL_OUT;
scsi_cmd->security_protocol = security_protocol;
scsi_ulto2b(security_protocol_specific,
scsi_cmd->security_protocol_specific);
scsi_cmd->byte4 = byte4;
scsi_ulto4b(dxfer_len, scsi_cmd->length);
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_OUT,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*scsi_cmd),
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,
CAM_DIR_IN,
tag_action,
data_ptr,
dxfer_len,
sense_len,
sizeof(*scsi_cmd),
timeout);
}
int
scsi_inquiry_match(caddr_t inqbuffer, caddr_t table_entry)
{
struct scsi_inquiry_pattern *entry;
struct scsi_inquiry_data *inq;
entry = (struct scsi_inquiry_pattern *)table_entry;
inq = (struct scsi_inquiry_data *)inqbuffer;
if (((SID_TYPE(inq) == entry->type)
|| (entry->type == T_ANY))
&& (SID_IS_REMOVABLE(inq) ? entry->media_type & SIP_MEDIA_REMOVABLE
: entry->media_type & SIP_MEDIA_FIXED)
&& (cam_strmatch(inq->vendor, entry->vendor, sizeof(inq->vendor)) == 0)
&& (cam_strmatch(inq->product, entry->product,
sizeof(inq->product)) == 0)
&& (cam_strmatch(inq->revision, entry->revision,
sizeof(inq->revision)) == 0)) {
return (0);
}
return (-1);
}
int
scsi_static_inquiry_match(caddr_t inqbuffer, caddr_t table_entry)
{
struct scsi_static_inquiry_pattern *entry;
struct scsi_inquiry_data *inq;
entry = (struct scsi_static_inquiry_pattern *)table_entry;
inq = (struct scsi_inquiry_data *)inqbuffer;
if (((SID_TYPE(inq) == entry->type)
|| (entry->type == T_ANY))
&& (SID_IS_REMOVABLE(inq) ? entry->media_type & SIP_MEDIA_REMOVABLE
: entry->media_type & SIP_MEDIA_FIXED)
&& (cam_strmatch(inq->vendor, entry->vendor, sizeof(inq->vendor)) == 0)
&& (cam_strmatch(inq->product, entry->product,
sizeof(inq->product)) == 0)
&& (cam_strmatch(inq->revision, entry->revision,
sizeof(inq->revision)) == 0)) {
return (0);
}
return (-1);
}
int
scsi_devid_match(uint8_t *lhs, size_t lhs_len, uint8_t *rhs, size_t rhs_len)
{
struct scsi_vpd_id_descriptor *lhs_id;
struct scsi_vpd_id_descriptor *lhs_last;
struct scsi_vpd_id_descriptor *rhs_last;
uint8_t *lhs_end;
uint8_t *rhs_end;
lhs_end = lhs + lhs_len;
rhs_end = rhs + rhs_len;
lhs_last = (struct scsi_vpd_id_descriptor *)
(lhs_end - __offsetof(struct scsi_vpd_id_descriptor, identifier));
rhs_last = (struct scsi_vpd_id_descriptor *)
(rhs_end - __offsetof(struct scsi_vpd_id_descriptor, identifier));
lhs_id = (struct scsi_vpd_id_descriptor *)lhs;
while (lhs_id <= lhs_last
&& (lhs_id->identifier + lhs_id->length) <= lhs_end) {
struct scsi_vpd_id_descriptor *rhs_id;
rhs_id = (struct scsi_vpd_id_descriptor *)rhs;
while (rhs_id <= rhs_last
&& (rhs_id->identifier + rhs_id->length) <= rhs_end) {
if ((rhs_id->id_type &
(SVPD_ID_ASSOC_MASK | SVPD_ID_TYPE_MASK)) ==
(lhs_id->id_type &
(SVPD_ID_ASSOC_MASK | SVPD_ID_TYPE_MASK))
&& rhs_id->length == lhs_id->length
&& memcmp(rhs_id->identifier, lhs_id->identifier,
rhs_id->length) == 0)
return (0);
rhs_id = (struct scsi_vpd_id_descriptor *)
(rhs_id->identifier + rhs_id->length);
}
lhs_id = (struct scsi_vpd_id_descriptor *)
(lhs_id->identifier + lhs_id->length);
}
return (-1);
}
#ifdef _KERNEL
int
scsi_vpd_supported_page(struct cam_periph *periph, uint8_t page_id)
{
struct cam_ed *device;
struct scsi_vpd_supported_pages *vpds;
int i, num_pages;
device = periph->path->device;
vpds = (struct scsi_vpd_supported_pages *)device->supported_vpds;
if (vpds != NULL) {
num_pages = device->supported_vpds_len -
SVPD_SUPPORTED_PAGES_HDR_LEN;
for (i = 0; i < num_pages; i++) {
if (vpds->page_list[i] == page_id)
return (1);
}
}
return (0);
}
static void
init_scsi_delay(void)
{
int delay;
delay = SCSI_DELAY;
TUNABLE_INT_FETCH("kern.cam.scsi_delay", &delay);
if (set_scsi_delay(delay) != 0) {
printf("cam: invalid value for tunable kern.cam.scsi_delay\n");
set_scsi_delay(SCSI_DELAY);
}
}
SYSINIT(scsi_delay, SI_SUB_TUNABLES, SI_ORDER_ANY, init_scsi_delay, NULL);
static int
sysctl_scsi_delay(SYSCTL_HANDLER_ARGS)
{
int error, delay;
delay = scsi_delay;
error = sysctl_handle_int(oidp, &delay, 0, req);
if (error != 0 || req->newptr == NULL)
return (error);
return (set_scsi_delay(delay));
}
SYSCTL_PROC(_kern_cam, OID_AUTO, scsi_delay,
CTLTYPE_INT | CTLFLAG_RWTUN | CTLFLAG_NOFETCH | CTLFLAG_MPSAFE,
0, 0, sysctl_scsi_delay, "I",
"Delay to allow devices to settle after a SCSI bus reset (ms)");
static int
set_scsi_delay(int delay)
{
if (delay == 0) {
printf("cam: using minimum scsi_delay (%dms)\n",
SCSI_MIN_DELAY);
delay = SCSI_MIN_DELAY;
}
if (delay < SCSI_MIN_DELAY)
return (EINVAL);
scsi_delay = delay;
return (0);
}
#endif