#include <sys/param.h>
#ifdef _KERNEL
#include <opt_scsi.h>
#include <sys/systm.h>
#include <sys/libkern.h>
#include <sys/kernel.h>
#include <sys/sysctl.h>
#else
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define ksnprintf snprintf
#define kprintf printf
#define kbsearch bsearch
#endif
#include "../cam.h"
#include "../cam_ccb.h"
#include "../cam_xpt.h"
#include "../cam_xpt_periph.h"
#include "scsi_all.h"
#include <sys/sbuf.h>
#ifndef _KERNEL
#include <sys/camlib.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*", "*"},
NELEM(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, 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" },
{ 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, 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)" },
{ 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)" },
{ 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)" },
{ 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(u_int16_t opcode, struct scsi_inquiry_data *inq_data)
{
caddr_t match;
int i, j;
u_int32_t opmask;
u_int16_t pd_type;
int num_ops[2];
struct op_table_entry *table[2];
int num_tables;
pd_type = SID_TYPE(inq_data);
match = cam_quirkmatch((caddr_t)inq_data,
(caddr_t)scsi_op_quirk_table,
NELEM(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] = NELEM(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] = NELEM(scsi_op_codes);
num_tables = 1;
}
if (pd_type == T_RBC)
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(u_int16_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_TUR|SSQ_MANY|SSQ_DECREMENT_COUNT|EBUSY,
"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_RESERVED, SS_FATAL|EIO, "RESERVED" }
};
const int sense_key_table_size = NELEM(sense_key_table);
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 scsi_sense_quirk_entry sense_quirk_table[] = {
{
{T_DIRECT, SIP_MEDIA_FIXED, "QUANTUM", "FIREBALL S*", "*"},
0,
NELEM(quantum_fireball_entries),
NULL,
quantum_fireball_entries
},
{
{T_DIRECT, SIP_MEDIA_REMOVABLE, "SONY", "SMO-*", "*"},
0,
NELEM(sony_mo_entries),
NULL,
sony_mo_entries
}
};
const int sense_quirk_table_size = NELEM(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_RDEF,
"ATA pass through information available") },
{ SST(0x00, 0x1E, SS_RDEF,
"Conflicting SA creation request") },
{ SST(0x01, 0x00, SS_RDEF,
"No index/sector signal") },
{ SST(0x02, 0x00, SS_RDEF,
"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_TUR | SSQ_MANY | SSQ_DECREMENT_COUNT | EIO,
"Logical unit not ready, cause not reportable") },
{ SST(0x04, 0x01, SS_TUR | SSQ_MANY | SSQ_DECREMENT_COUNT | 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_RDEF,
"Logical unit not ready, self-test in progress") },
{ SST(0x04, 0x0A, SS_RDEF,
"Logical unit not accessible, asymmetric access state transition")},
{ SST(0x04, 0x0B, SS_RDEF,
"Logical unit not accessible, target port in standby state") },
{ SST(0x04, 0x0C, SS_RDEF,
"Logical unit not accessible, target port in unavailable state") },
{ SST(0x04, 0x0D, SS_RDEF,
"Logical unit not ready, structure check required") },
{ SST(0x04, 0x10, SS_RDEF,
"Logical unit not ready, auxiliary memory not accessible") },
{ SST(0x04, 0x11, SS_RDEF,
"Logical unit not ready, notify (enable spinup) required") },
{ SST(0x04, 0x12, SS_RDEF,
"Logical unit not ready, offline") },
{ SST(0x04, 0x13, SS_RDEF,
"Logical unit not ready, SA creation 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(0x0A, 0x00, SS_FATAL | ENOSPC,
"Error log overflow") },
{ SST(0x0B, 0x00, SS_RDEF,
"Warning") },
{ SST(0x0B, 0x01, SS_RDEF,
"Warning - specified temperature exceeded") },
{ SST(0x0B, 0x02, SS_RDEF,
"Warning - enclosure degraded") },
{ SST(0x0B, 0x03, SS_RDEF,
"Warning - background self-test failed") },
{ SST(0x0B, 0x04, SS_RDEF,
"Warning - background pre-scan detected medium error") },
{ SST(0x0B, 0x05, SS_RDEF,
"Warning - background medium scan detected medium error") },
{ SST(0x0B, 0x06, SS_RDEF,
"Warning - non-volatile cache now volatile") },
{ SST(0x0B, 0x07, SS_RDEF,
"Warning - degraded power to non-volatile cache") },
{ 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, 0x0F, SS_RDEF,
"Defects in error window") },
{ 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_RDEF,
"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(0x11, 0x00, SS_RDEF,
"Unrecovered read error") },
{ SST(0x11, 0x01, SS_RDEF,
"Read retries exhausted") },
{ SST(0x11, 0x02, SS_RDEF,
"Error too long to correct") },
{ SST(0x11, 0x03, SS_RDEF,
"Multiple read errors") },
{ SST(0x11, 0x04, SS_RDEF,
"Unrecovered read error - auto reallocate failed") },
{ SST(0x11, 0x05, SS_RDEF,
"L-EC uncorrectable error") },
{ SST(0x11, 0x06, SS_RDEF,
"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_RDEF,
"Unrecovered read error - recommend reassignment") },
{ SST(0x11, 0x0C, SS_RDEF,
"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(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_RDEF,
"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(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_RDEF,
"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(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(0x22, 0x00, SS_FATAL | EINVAL,
"Illegal function (use 20 00, 24 00, or 26 00)") },
{ 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(0x25, 0x00, SS_FATAL | ENXIO,
"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_RDEF,
"Too many target descriptors") },
{ SST(0x26, 0x07, SS_RDEF,
"Unsupported target descriptor type code") },
{ SST(0x26, 0x08, SS_RDEF,
"Too many segment descriptors") },
{ SST(0x26, 0x09, SS_RDEF,
"Unsupported segment descriptor type code") },
{ SST(0x26, 0x0A, SS_RDEF,
"Unexpected inexact segment") },
{ SST(0x26, 0x0B, SS_RDEF,
"Inline data length exceeded") },
{ SST(0x26, 0x0C, SS_RDEF,
"Invalid operation for copy source or destination") },
{ SST(0x26, 0x0D, SS_RDEF,
"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(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(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(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(0x2D, 0x00, SS_RDEF,
"Overwrite error on update in place") },
{ SST(0x2E, 0x00, SS_RDEF,
"Insufficient time for operation") },
{ 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(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(0x31, 0x00, SS_RDEF,
"Medium format corrupted") },
{ SST(0x31, 0x01, SS_RDEF,
"Format command failed") },
{ SST(0x31, 0x02, SS_RDEF,
"Zoned formatting failed due to spare linking") },
{ 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(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(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_RDEF,
"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,
"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(0x40, 0x00, SS_RDEF,
"RAM failure") },
{ SST(0x40, 0x80, SS_RDEF,
"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_RDEF,
"Internal target failure") },
{ 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(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(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(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_RDEF,
"Failure prediction threshold exceeded") },
{ SST(0x5D, 0x01, SS_RDEF,
"Media failure prediction threshold exceeded") },
{ SST(0x5D, 0x02, SS_RDEF,
"Logical unit failure prediction threshold exceeded") },
{ SST(0x5D, 0x03, SS_RDEF,
"Spare area exhaustion prediction threshold exceeded") },
{ SST(0x5D, 0x10, SS_RDEF,
"Hardware impending failure general hard drive failure") },
{ SST(0x5D, 0x11, SS_RDEF,
"Hardware impending failure drive error rate too high") },
{ SST(0x5D, 0x12, SS_RDEF,
"Hardware impending failure data error rate too high") },
{ SST(0x5D, 0x13, SS_RDEF,
"Hardware impending failure seek error rate too high") },
{ SST(0x5D, 0x14, SS_RDEF,
"Hardware impending failure too many block reassigns") },
{ SST(0x5D, 0x15, SS_RDEF,
"Hardware impending failure access times too high") },
{ SST(0x5D, 0x16, SS_RDEF,
"Hardware impending failure start unit times too high") },
{ SST(0x5D, 0x17, SS_RDEF,
"Hardware impending failure channel parametrics") },
{ SST(0x5D, 0x18, SS_RDEF,
"Hardware impending failure controller detected") },
{ SST(0x5D, 0x19, SS_RDEF,
"Hardware impending failure throughput performance") },
{ SST(0x5D, 0x1A, SS_RDEF,
"Hardware impending failure seek time performance") },
{ SST(0x5D, 0x1B, SS_RDEF,
"Hardware impending failure spin-up retry count") },
{ SST(0x5D, 0x1C, SS_RDEF,
"Hardware impending failure drive calibration retry count") },
{ SST(0x5D, 0x20, SS_RDEF,
"Controller impending failure general hard drive failure") },
{ SST(0x5D, 0x21, SS_RDEF,
"Controller impending failure drive error rate too high") },
{ SST(0x5D, 0x22, SS_RDEF,
"Controller impending failure data error rate too high") },
{ SST(0x5D, 0x23, SS_RDEF,
"Controller impending failure seek error rate too high") },
{ SST(0x5D, 0x24, SS_RDEF,
"Controller impending failure too many block reassigns") },
{ SST(0x5D, 0x25, SS_RDEF,
"Controller impending failure access times too high") },
{ SST(0x5D, 0x26, SS_RDEF,
"Controller impending failure start unit times too high") },
{ SST(0x5D, 0x27, SS_RDEF,
"Controller impending failure channel parametrics") },
{ SST(0x5D, 0x28, SS_RDEF,
"Controller impending failure controller detected") },
{ SST(0x5D, 0x29, SS_RDEF,
"Controller impending failure throughput performance") },
{ SST(0x5D, 0x2A, SS_RDEF,
"Controller impending failure seek time performance") },
{ SST(0x5D, 0x2B, SS_RDEF,
"Controller impending failure spin-up retry count") },
{ SST(0x5D, 0x2C, SS_RDEF,
"Controller impending failure drive calibration retry count") },
{ SST(0x5D, 0x30, SS_RDEF,
"Data channel impending failure general hard drive failure") },
{ SST(0x5D, 0x31, SS_RDEF,
"Data channel impending failure drive error rate too high") },
{ SST(0x5D, 0x32, SS_RDEF,
"Data channel impending failure data error rate too high") },
{ SST(0x5D, 0x33, SS_RDEF,
"Data channel impending failure seek error rate too high") },
{ SST(0x5D, 0x34, SS_RDEF,
"Data channel impending failure too many block reassigns") },
{ SST(0x5D, 0x35, SS_RDEF,
"Data channel impending failure access times too high") },
{ SST(0x5D, 0x36, SS_RDEF,
"Data channel impending failure start unit times too high") },
{ SST(0x5D, 0x37, SS_RDEF,
"Data channel impending failure channel parametrics") },
{ SST(0x5D, 0x38, SS_RDEF,
"Data channel impending failure controller detected") },
{ SST(0x5D, 0x39, SS_RDEF,
"Data channel impending failure throughput performance") },
{ SST(0x5D, 0x3A, SS_RDEF,
"Data channel impending failure seek time performance") },
{ SST(0x5D, 0x3B, SS_RDEF,
"Data channel impending failure spin-up retry count") },
{ SST(0x5D, 0x3C, SS_RDEF,
"Data channel impending failure drive calibration retry count") },
{ SST(0x5D, 0x40, SS_RDEF,
"Servo impending failure general hard drive failure") },
{ SST(0x5D, 0x41, SS_RDEF,
"Servo impending failure drive error rate too high") },
{ SST(0x5D, 0x42, SS_RDEF,
"Servo impending failure data error rate too high") },
{ SST(0x5D, 0x43, SS_RDEF,
"Servo impending failure seek error rate too high") },
{ SST(0x5D, 0x44, SS_RDEF,
"Servo impending failure too many block reassigns") },
{ SST(0x5D, 0x45, SS_RDEF,
"Servo impending failure access times too high") },
{ SST(0x5D, 0x46, SS_RDEF,
"Servo impending failure start unit times too high") },
{ SST(0x5D, 0x47, SS_RDEF,
"Servo impending failure channel parametrics") },
{ SST(0x5D, 0x48, SS_RDEF,
"Servo impending failure controller detected") },
{ SST(0x5D, 0x49, SS_RDEF,
"Servo impending failure throughput performance") },
{ SST(0x5D, 0x4A, SS_RDEF,
"Servo impending failure seek time performance") },
{ SST(0x5D, 0x4B, SS_RDEF,
"Servo impending failure spin-up retry count") },
{ SST(0x5D, 0x4C, SS_RDEF,
"Servo impending failure drive calibration retry count") },
{ SST(0x5D, 0x50, SS_RDEF,
"Spindle impending failure general hard drive failure") },
{ SST(0x5D, 0x51, SS_RDEF,
"Spindle impending failure drive error rate too high") },
{ SST(0x5D, 0x52, SS_RDEF,
"Spindle impending failure data error rate too high") },
{ SST(0x5D, 0x53, SS_RDEF,
"Spindle impending failure seek error rate too high") },
{ SST(0x5D, 0x54, SS_RDEF,
"Spindle impending failure too many block reassigns") },
{ SST(0x5D, 0x55, SS_RDEF,
"Spindle impending failure access times too high") },
{ SST(0x5D, 0x56, SS_RDEF,
"Spindle impending failure start unit times too high") },
{ SST(0x5D, 0x57, SS_RDEF,
"Spindle impending failure channel parametrics") },
{ SST(0x5D, 0x58, SS_RDEF,
"Spindle impending failure controller detected") },
{ SST(0x5D, 0x59, SS_RDEF,
"Spindle impending failure throughput performance") },
{ SST(0x5D, 0x5A, SS_RDEF,
"Spindle impending failure seek time performance") },
{ SST(0x5D, 0x5B, SS_RDEF,
"Spindle impending failure spin-up retry count") },
{ SST(0x5D, 0x5C, SS_RDEF,
"Spindle impending failure drive calibration retry count") },
{ SST(0x5D, 0x60, SS_RDEF,
"Firmware impending failure general hard drive failure") },
{ SST(0x5D, 0x61, SS_RDEF,
"Firmware impending failure drive error rate too high") },
{ SST(0x5D, 0x62, SS_RDEF,
"Firmware impending failure data error rate too high") },
{ SST(0x5D, 0x63, SS_RDEF,
"Firmware impending failure seek error rate too high") },
{ SST(0x5D, 0x64, SS_RDEF,
"Firmware impending failure too many block reassigns") },
{ SST(0x5D, 0x65, SS_RDEF,
"Firmware impending failure access times too high") },
{ SST(0x5D, 0x66, SS_RDEF,
"Firmware impending failure start unit times too high") },
{ SST(0x5D, 0x67, SS_RDEF,
"Firmware impending failure channel parametrics") },
{ SST(0x5D, 0x68, SS_RDEF,
"Firmware impending failure controller detected") },
{ SST(0x5D, 0x69, SS_RDEF,
"Firmware impending failure throughput performance") },
{ SST(0x5D, 0x6A, SS_RDEF,
"Firmware impending failure seek time performance") },
{ SST(0x5D, 0x6B, SS_RDEF,
"Firmware impending failure spin-up retry count") },
{ SST(0x5D, 0x6C, SS_RDEF,
"Firmware impending failure drive calibration retry count") },
{ SST(0x5D, 0xFF, SS_RDEF,
"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, 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(0x68, 0x00, SS_RDEF,
"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(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 usable") },
{ 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_RDEF,
"Logical unit access not authorized") },
{ SST(0x74, 0x79, SS_RDEF,
"Security conflict in translated device") }
};
const int asc_table_size = NELEM(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] = sense_key_table_size;
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] = sense_key_table_size;
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 = kbsearch(&asc_ascq, asc_tables[i],
asc_tables_size[i],
sizeof(**asc_tables),
ascentrycomp);
if (found_entry) {
*asc_entry = (struct asc_table_entry *)found_entry;
break;
}
}
for (i = 0; i < num_sense_tables; i++) {
void *found_entry;
found_entry = kbsearch(&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);
*sense_key_desc = sense_entry->desc;
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,
u_int32_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;
scsi_extract_sense(&csio->sense_data, &error_code,
&sense_key, &asc, &ascq);
if (error_code == SSD_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
action = sense_entry->action;
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;
}
}
}
#if 0
if (bootverbose)
sense_flags |= SF_PRINT_ALWAYS;
#endif
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(u_int8_t *cdb_ptr, char *cdb_string, size_t len)
{
u_int8_t cdb_len;
int i;
if (cdb_ptr == NULL)
return("");
cdb_len = 0;
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;
}
*cdb_string = '\0';
for (i = 0; i < cdb_len; i++)
ksnprintf(cdb_string + strlen(cdb_string),
len - strlen(cdb_string), "%x ", cdb_ptr[i]);
return(cdb_string);
}
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];
ksnprintf(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;
char cdb_str[(SCSI_MAX_CDBLEN * 3) + 1];
#ifdef _KERNEL
struct ccb_getdev *cgd;
struct scsi_inquiry_data copy_data;
#endif
#ifdef _KERNEL
cgd = &xpt_alloc_ccb()->cgd;
xpt_setup_ccb(&cgd->ccb_h,
csio->ccb_h.path,
1);
cgd->ccb_h.func_code = XPT_GDEV_TYPE;
xpt_action((union ccb *)cgd);
if (cgd->ccb_h.status == CAM_DEV_NOT_THERE)
cgd->inq_data.device = T_DIRECT;
copy_data = cgd->inq_data;
inq_data = ©_data;
xpt_free_ccb(&cgd->ccb_h);
#else
inq_data = &device->inq_data;
#endif
if ((csio->ccb_h.flags & CAM_CDB_POINTER) != 0) {
sbuf_printf(sb, "%s. CDB: %s",
scsi_op_desc(csio->cdb_io.cdb_ptr[0], inq_data),
scsi_cdb_string(csio->cdb_io.cdb_ptr, cdb_str,
sizeof(cdb_str)));
} else {
sbuf_printf(sb, "%s. CDB: %s",
scsi_op_desc(csio->cdb_io.cdb_bytes[0], inq_data),
scsi_cdb_string(csio->cdb_io.cdb_bytes, cdb_str,
sizeof(cdb_str)));
}
return(0);
}
#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;
struct scsi_inquiry_data copy_data;
#endif
u_int32_t info;
int error_code;
int sense_key;
int asc, ascq;
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
cgd = &xpt_alloc_ccb()->cgd;
xpt_setup_ccb(&cgd->ccb_h, csio->ccb_h.path, 1);
cgd->ccb_h.func_code = XPT_GDEV_TYPE;
xpt_action((union ccb *)cgd);
if (cgd->ccb_h.status == CAM_DEV_NOT_THERE)
cgd->inq_data.device = T_DIRECT;
copy_data = cgd->inq_data;
inq_data = ©_data;
xpt_free_ccb(&cgd->ccb_h);
#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
}
if (csio->ccb_h.flags & CAM_SENSE_PTR) {
if (csio->ccb_h.flags & CAM_SENSE_PHYS)
return(-1);
else {
bcopy(&csio->sense_data, &sense,
sizeof(struct scsi_sense_data *));
}
} else {
if (csio->ccb_h.flags & CAM_SENSE_PHYS)
return(-1);
else
sense = &csio->sense_data;
}
sbuf_cat(sb, path_str);
error_code = sense->error_code & SSD_ERRCODE;
sense_key = sense->flags & SSD_KEY;
switch (error_code) {
case SSD_DEFERRED_ERROR:
sbuf_printf(sb, "Deferred Error: ");
case SSD_CURRENT_ERROR:
{
const char *sense_key_desc;
const char *asc_desc;
asc = (sense->extra_len >= 5) ? sense->add_sense_code : 0;
ascq = (sense->extra_len >= 6) ? sense->add_sense_code_qual : 0;
scsi_sense_desc(sense_key, asc, ascq, inq_data,
&sense_key_desc, &asc_desc);
sbuf_cat(sb, sense_key_desc);
info = scsi_4btoul(sense->info);
if (sense->error_code & SSD_ERRCODE_VALID) {
switch (sense_key) {
case SSD_KEY_NOT_READY:
case SSD_KEY_ILLEGAL_REQUEST:
case SSD_KEY_UNIT_ATTENTION:
case SSD_KEY_DATA_PROTECT:
break;
case SSD_KEY_BLANK_CHECK:
sbuf_printf(sb, " req sz: %d (decimal)", info);
break;
default:
if (info) {
if (sense->flags & SSD_ILI) {
sbuf_printf(sb, " ILI (length "
"mismatch): %d", info);
} else {
sbuf_printf(sb, " info:%x",
info);
}
}
}
} else if (info) {
sbuf_printf(sb, " info?:%x", info);
}
if (sense->extra_len >= 4) {
if (bcmp(sense->cmd_spec_info, "\0\0\0\0", 4)) {
sbuf_printf(sb, " csi:%x,%x,%x,%x",
sense->cmd_spec_info[0],
sense->cmd_spec_info[1],
sense->cmd_spec_info[2],
sense->cmd_spec_info[3]);
}
}
sbuf_printf(sb, " asc:%x,%x\n%s%s", asc, ascq,
path_str, asc_desc);
if (sense->extra_len >= 7 && sense->fru) {
sbuf_printf(sb, " field replaceable unit: %x",
sense->fru);
}
if ((sense->extra_len >= 10)
&& (sense->sense_key_spec[0] & SSD_SCS_VALID) != 0) {
switch(sense_key) {
case SSD_KEY_ILLEGAL_REQUEST: {
int bad_command;
char tmpstr2[40];
if (sense->sense_key_spec[0] & 0x40)
bad_command = 1;
else
bad_command = 0;
tmpstr2[0] = '\0';
if (sense->sense_key_spec[0] & 0x08)
ksnprintf(tmpstr2, sizeof(tmpstr2),
"bit %d",
sense->sense_key_spec[0] & 0x7);
sbuf_printf(sb, ": %s byte %d %s is invalid",
bad_command ? "Command" : "Data",
scsi_2btoul(&sense->sense_key_spec[1]),
tmpstr2);
break;
}
case SSD_KEY_RECOVERED_ERROR:
case SSD_KEY_HARDWARE_ERROR:
case SSD_KEY_MEDIUM_ERROR:
sbuf_printf(sb, " actual retry count: %d",
scsi_2btoul(
&sense->sense_key_spec[1]));
break;
default:
sbuf_printf(sb, " sks:%#x,%#x",
sense->sense_key_spec[0],
scsi_2btoul(
&sense->sense_key_spec[1]));
break;
}
}
break;
}
default:
sbuf_printf(sb, "Sense Error Code 0x%x", sense->error_code);
if (sense->error_code & SSD_ERRCODE_VALID) {
sbuf_printf(sb, " at block no. %d (decimal)",
info = scsi_4btoul(sense->info));
}
}
sbuf_printf(sb, "\n");
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);
kprintf("%s", sbuf_data(&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_print_inquiry(struct scsi_inquiry_data *inq_data)
{
u_int8_t type;
char *dtype, *qtype;
char vendor[16], product[48], revision[16], rstr[4];
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_NODEVICE:
dtype = "Uninstalled";
break;
default:
dtype = "unknown";
break;
}
cam_strvis(vendor, inq_data->vendor, sizeof(inq_data->vendor),
sizeof(vendor));
cam_strvis(product, inq_data->product, sizeof(inq_data->product),
sizeof(product));
cam_strvis(revision, inq_data->revision, sizeof(inq_data->revision),
sizeof(revision));
if (SID_ANSI_REV(inq_data) == SCSI_REV_CCS)
bcopy("CCS", rstr, 4);
else
ksnprintf(rstr, sizeof (rstr), "%d", SID_ANSI_REV(inq_data));
kprintf("<%s %s %s> %s %s SCSI-%s device %s\n",
vendor, product, revision,
SID_IS_REMOVABLE(inq_data) ? "Removable" : "Fixed",
dtype, rstr, qtype);
}
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)
{
int i;
int num_syncrates;
if (period_factor == 0) {
return (3300);
}
num_syncrates = NELEM(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)
{
int i;
int num_syncrates;
if (period == 0)
return (~0);
period *= 10;
num_syncrates = NELEM(scsi_syncrates);
for (i = 0; i < num_syncrates; i++) {
if (period <= scsi_syncrates[i].period) {
return (scsi_syncrates[i].period_factor);
}
}
return (period/400);
}
void
scsi_test_unit_ready(struct ccb_scsiio *csio, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, u_int8_t sense_len, u_int32_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, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
void *data_ptr, u_int8_t dxfer_len, u_int8_t tag_action,
u_int8_t sense_len, u_int32_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, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, u_int8_t *inq_buf, u_int32_t inq_len,
int evpd, u_int8_t page_code, u_int8_t sense_len,
u_int32_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;
}
if (inq_len == 256)
inq_len = 0;
scsi_cmd->length = inq_len;
}
void
scsi_mode_sense(struct ccb_scsiio *csio, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, int dbd, u_int8_t page_code,
u_int8_t page, u_int8_t *param_buf, u_int32_t param_len,
u_int8_t sense_len, u_int32_t timeout)
{
scsi_mode_sense_len(csio, retries, cbfcnp, tag_action, dbd,
page_code, page, param_buf, param_len, 0,
sense_len, timeout);
}
void
scsi_mode_sense_len(struct ccb_scsiio *csio, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, int dbd, u_int8_t page_code,
u_int8_t page, u_int8_t *param_buf, u_int32_t param_len,
int minimum_cmd_size, u_int8_t sense_len, u_int32_t timeout)
{
u_int8_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 = page_code | page;
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 = page_code | page;
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, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, int scsi_page_fmt, int save_pages,
u_int8_t *param_buf, u_int32_t param_len, u_int8_t sense_len,
u_int32_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, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, int scsi_page_fmt, int save_pages,
u_int8_t *param_buf, u_int32_t param_len,
int minimum_cmd_size, u_int8_t sense_len,
u_int32_t timeout)
{
u_int8_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_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,
struct scsi_read_capacity_data_16 *rcap_buf,
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,
(u_int8_t *)rcap_buf,
sizeof(*rcap_buf),
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 = READ_CAPACITY_16;
scsi_cmd->service_action = SRC16_SERVICE_ACTION;
scsi_u64to8b(lba, scsi_cmd->addr);
scsi_ulto4b(sizeof(*rcap_buf), scsi_cmd->alloc_len);
if (pmi)
reladr |= SRC16_PMI;
if (reladr)
reladr |= SRC16_RELADR;
}
void
scsi_prevent(struct ccb_scsiio *csio, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, u_int8_t action,
u_int8_t sense_len, u_int32_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, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action,
struct scsi_read_capacity_data *rcap_buf,
u_int8_t sense_len, u_int32_t timeout)
{
struct scsi_read_capacity *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
(u_int8_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_report_luns(struct ccb_scsiio *csio, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, u_int8_t select_report,
struct scsi_report_luns_data *rpl_buf, u_int32_t alloc_len,
u_int8_t sense_len, u_int32_t timeout)
{
struct scsi_report_luns *scsi_cmd;
cam_fill_csio(csio,
retries,
cbfcnp,
CAM_DIR_IN,
tag_action,
(u_int8_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_synchronize_cache(struct ccb_scsiio *csio, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, u_int32_t begin_lba,
u_int16_t lb_count, u_int8_t sense_len,
u_int32_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, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, int readop, u_int8_t byte2,
int minimum_cmd_size, u_int64_t lba, u_int32_t block_count,
u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
u_int32_t timeout)
{
u_int8_t cdb_len;
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 = readop ? 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 & 0xffffffffU) == lba)) {
struct scsi_rw_10 *scsi_cmd;
scsi_cmd = (struct scsi_rw_10 *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = readop ? 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 & 0xffffffffU) == block_count)
&& ((lba & 0xffffffffU) == lba)) {
struct scsi_rw_12 *scsi_cmd;
scsi_cmd = (struct scsi_rw_12 *)&csio->cdb_io.cdb_bytes;
scsi_cmd->opcode = readop ? 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 = readop ? 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,
readop ? CAM_DIR_IN : CAM_DIR_OUT,
tag_action,
data_ptr,
dxfer_len,
sense_len,
cdb_len,
timeout);
}
void
scsi_start_stop(struct ccb_scsiio *csio, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, int start, int load_eject,
int immediate, u_int8_t sense_len, u_int32_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_log_sense(struct ccb_scsiio *csio, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, u_int8_t page_code, u_int8_t page,
int save_pages, int ppc, u_int32_t paramptr,
u_int8_t *param_buf, u_int32_t param_len, u_int8_t sense_len,
u_int32_t timeout)
{
struct scsi_log_sense *scsi_cmd;
u_int8_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, u_int32_t retries,
void (*cbfcnp)(struct cam_periph *, union ccb *),
u_int8_t tag_action, u_int8_t page_code, int save_pages,
int pc_reset, u_int8_t *param_buf, u_int32_t param_len,
u_int8_t sense_len, u_int32_t timeout)
{
struct scsi_log_select *scsi_cmd;
u_int8_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);
}
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);
}
#ifdef _KERNEL
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) {
kprintf("cam: invalid value for tunable kern.cam.scsi_delay\n");
set_scsi_delay(SCSI_DELAY);
}
}
SYSINIT(scsi_delay, SI_BOOT1_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_RW,
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) {
kprintf("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
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);
}