Home | History | Annotate | Line # | Download | only in scsipi
scsipi_verbose.c revision 1.7
      1  1.7    mjacob /*	$NetBSD: scsipi_verbose.c,v 1.7 1998/07/30 00:49:21 mjacob Exp $	*/
      2  1.1  christos 
      3  1.1  christos /*
      4  1.1  christos  * Copyright (c) 1994, 1995, 1997 Charles M. Hannum.  All rights reserved.
      5  1.1  christos  *
      6  1.1  christos  * Redistribution and use in source and binary forms, with or without
      7  1.1  christos  * modification, are permitted provided that the following conditions
      8  1.1  christos  * are met:
      9  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     10  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     11  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     13  1.1  christos  *    documentation and/or other materials provided with the distribution.
     14  1.1  christos  * 3. All advertising materials mentioning features or use of this software
     15  1.1  christos  *    must display the following acknowledgement:
     16  1.1  christos  *	This product includes software developed by Charles M. Hannum.
     17  1.1  christos  * 4. The name of the author may not be used to endorse or promote products
     18  1.1  christos  *    derived from this software without specific prior written permission.
     19  1.1  christos  *
     20  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  1.1  christos  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  1.1  christos  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  1.1  christos  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  1.1  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  1.1  christos  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  1.1  christos  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  1.1  christos  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  1.1  christos  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  1.1  christos  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30  1.1  christos  */
     31  1.1  christos 
     32  1.1  christos #include <sys/types.h>
     33  1.1  christos #include <sys/param.h>
     34  1.1  christos #include <sys/time.h>
     35  1.1  christos #include <sys/proc.h>
     36  1.1  christos #include <sys/device.h>
     37  1.1  christos 
     38  1.1  christos #ifdef _KERNEL
     39  1.1  christos #include <sys/systm.h>
     40  1.1  christos 
     41  1.7    mjacob #include "opt_scsi.h"
     42  1.1  christos #else
     43  1.1  christos #include <stdio.h>
     44  1.1  christos #endif
     45  1.1  christos #include <dev/scsipi/scsipi_all.h>
     46  1.1  christos #include <dev/scsipi/scsi_all.h>
     47  1.1  christos #include <dev/scsipi/scsipiconf.h>
     48  1.1  christos #include <dev/scsipi/scsiconf.h>
     49  1.1  christos 
     50  1.1  christos static const char *sense_keys[16] = {
     51  1.1  christos 	"No Additional Sense",
     52  1.6    mjacob 	"Recovered Error",
     53  1.1  christos 	"Not Ready",
     54  1.1  christos 	"Media Error",
     55  1.1  christos 	"Hardware Error",
     56  1.1  christos 	"Illegal Request",
     57  1.1  christos 	"Unit Attention",
     58  1.1  christos 	"Write Protected",
     59  1.1  christos 	"Blank Check",
     60  1.1  christos 	"Vendor Unique",
     61  1.1  christos 	"Copy Aborted",
     62  1.1  christos 	"Aborted Command",
     63  1.1  christos 	"Equal Error",
     64  1.1  christos 	"Volume Overflow",
     65  1.1  christos 	"Miscompare Error",
     66  1.1  christos 	"Reserved"
     67  1.1  christos };
     68  1.1  christos 
     69  1.1  christos static const struct {
     70  1.1  christos 	unsigned char asc;
     71  1.1  christos 	unsigned char ascq;
     72  1.1  christos 	char *description;
     73  1.1  christos } adesc[] = {
     74  1.1  christos { 0x00, 0x00, "No Additional Sense Information" },
     75  1.1  christos { 0x00, 0x01, "Filemark Detected" },
     76  1.1  christos { 0x00, 0x02, "End-Of-Partition/Medium Detected" },
     77  1.1  christos { 0x00, 0x03, "Setmark Detected" },
     78  1.1  christos { 0x00, 0x04, "Beginning-Of-Partition/Medium Detected" },
     79  1.1  christos { 0x00, 0x05, "End-Of-Data Detected" },
     80  1.1  christos { 0x00, 0x06, "I/O Process Terminated" },
     81  1.1  christos { 0x00, 0x11, "Audio Play Operation In Progress" },
     82  1.1  christos { 0x00, 0x12, "Audio Play Operation Paused" },
     83  1.1  christos { 0x00, 0x13, "Audio Play Operation Successfully Completed" },
     84  1.1  christos { 0x00, 0x14, "Audio Play Operation Stopped Due to Error" },
     85  1.1  christos { 0x00, 0x15, "No Current Audio Status To Return" },
     86  1.1  christos { 0x01, 0x00, "No Index/Sector Signal" },
     87  1.1  christos { 0x02, 0x00, "No Seek Complete" },
     88  1.1  christos { 0x03, 0x00, "Peripheral Device Write Fault" },
     89  1.1  christos { 0x03, 0x01, "No Write Current" },
     90  1.1  christos { 0x03, 0x02, "Excessive Write Errors" },
     91  1.1  christos { 0x04, 0x00, "Logical Unit Not Ready, Cause Not Reportable" },
     92  1.1  christos { 0x04, 0x01, "Logical Unit Is in Process Of Becoming Ready" },
     93  1.1  christos { 0x04, 0x02, "Logical Unit Not Ready, Initialization Command Required" },
     94  1.1  christos { 0x04, 0x03, "Logical Unit Not Ready, Manual Intervention Required" },
     95  1.1  christos { 0x04, 0x04, "Logical Unit Not Ready, Format In Progress" },
     96  1.1  christos { 0x05, 0x00, "Logical Unit Does Not Respond To Selection" },
     97  1.1  christos { 0x06, 0x00, "No Reference Position Found" },
     98  1.1  christos { 0x07, 0x00, "Multiple Peripheral Devices Selected" },
     99  1.1  christos { 0x08, 0x00, "Logical Unit Communication Failure" },
    100  1.1  christos { 0x08, 0x01, "Logical Unit Communication Timeout" },
    101  1.1  christos { 0x08, 0x02, "Logical Unit Communication Parity Error" },
    102  1.1  christos { 0x09, 0x00, "Track Following Error" },
    103  1.1  christos { 0x09, 0x01, "Tracking Servo Failure" },
    104  1.1  christos { 0x09, 0x02, "Focus Servo Failure" },
    105  1.1  christos { 0x09, 0x03, "Spindle Servo Failure" },
    106  1.1  christos { 0x0A, 0x00, "Error Log Overflow" },
    107  1.1  christos { 0x0C, 0x00, "Write Error" },
    108  1.1  christos { 0x0C, 0x01, "Write Error Recovered with Auto Reallocation" },
    109  1.1  christos { 0x0C, 0x02, "Write Error - Auto Reallocate Failed" },
    110  1.1  christos { 0x10, 0x00, "ID CRC Or ECC Error" },
    111  1.1  christos { 0x11, 0x00, "Unrecovered Read Error" },
    112  1.1  christos { 0x11, 0x01, "Read Retried Exhausted" },
    113  1.1  christos { 0x11, 0x02, "Error Too Long To Correct" },
    114  1.1  christos { 0x11, 0x03, "Multiple Read Errors" },
    115  1.1  christos { 0x11, 0x04, "Unrecovered Read Error - Auto Reallocate Failed" },
    116  1.1  christos { 0x11, 0x05, "L-EC Uncorrectable Error" },
    117  1.1  christos { 0x11, 0x06, "CIRC Unrecovered Error" },
    118  1.1  christos { 0x11, 0x07, "Data Resynchronization Error" },
    119  1.1  christos { 0x11, 0x08, "Incomplete Block Found" },
    120  1.1  christos { 0x11, 0x09, "No Gap Found" },
    121  1.1  christos { 0x11, 0x0A, "Miscorrected Error" },
    122  1.1  christos { 0x11, 0x0B, "Uncorrected Read Error - Recommend Reassignment" },
    123  1.1  christos { 0x11, 0x0C, "Uncorrected Read Error - Recommend Rewrite the Data" },
    124  1.1  christos { 0x12, 0x00, "Address Mark Not Found for ID Field" },
    125  1.1  christos { 0x13, 0x00, "Address Mark Not Found for Data Field" },
    126  1.1  christos { 0x14, 0x00, "Recorded Entity Not Found" },
    127  1.1  christos { 0x14, 0x01, "Record Not Found" },
    128  1.1  christos { 0x14, 0x02, "Filemark or Setmark Not Found" },
    129  1.1  christos { 0x14, 0x03, "End-Of-Data Not Found" },
    130  1.1  christos { 0x14, 0x04, "Block Sequence Error" },
    131  1.1  christos { 0x15, 0x00, "Random Positioning Error" },
    132  1.1  christos { 0x15, 0x01, "Mechanical Positioning Error" },
    133  1.1  christos { 0x15, 0x02, "Positioning Error Detected By Read of Medium" },
    134  1.1  christos { 0x16, 0x00, "Data Synchronization Mark Error" },
    135  1.1  christos { 0x17, 0x00, "Recovered Data With No Error Correction Applied" },
    136  1.1  christos { 0x17, 0x01, "Recovered Data With Retries" },
    137  1.1  christos { 0x17, 0x02, "Recovered Data With Positive Head Offset" },
    138  1.1  christos { 0x17, 0x03, "Recovered Data With Negative Head Offset" },
    139  1.1  christos { 0x17, 0x04, "Recovered Data With Retries and/or CIRC Applied" },
    140  1.1  christos { 0x17, 0x05, "Recovered Data Using Previous Sector ID" },
    141  1.1  christos { 0x17, 0x06, "Recovered Data Without ECC - Data Auto-Reallocated" },
    142  1.1  christos { 0x17, 0x07, "Recovered Data Without ECC - Recommend Reassignment" },
    143  1.1  christos { 0x17, 0x08, "Recovered Data Without ECC - Recommend Rewrite" },
    144  1.1  christos { 0x18, 0x00, "Recovered Data With Error Correction Applied" },
    145  1.1  christos { 0x18, 0x01, "Recovered Data With Error Correction & Retries Applied" },
    146  1.1  christos { 0x18, 0x02, "Recovered Data - Data Auto-Reallocated" },
    147  1.1  christos { 0x18, 0x03, "Recovered Data With CIRC" },
    148  1.1  christos { 0x18, 0x04, "Recovered Data With LEC" },
    149  1.1  christos { 0x18, 0x05, "Recovered Data - Recommend Reassignment" },
    150  1.1  christos { 0x18, 0x06, "Recovered Data - Recommend Rewrite" },
    151  1.1  christos { 0x19, 0x00, "Defect List Error" },
    152  1.1  christos { 0x19, 0x01, "Defect List Not Available" },
    153  1.1  christos { 0x19, 0x02, "Defect List Error in Primary List" },
    154  1.1  christos { 0x19, 0x03, "Defect List Error in Grown List" },
    155  1.1  christos { 0x1A, 0x00, "Parameter List Length Error" },
    156  1.1  christos { 0x1B, 0x00, "Synchronous Data Transfer Error" },
    157  1.1  christos { 0x1C, 0x00, "Defect List Not Found" },
    158  1.1  christos { 0x1C, 0x01, "Primary Defect List Not Found" },
    159  1.1  christos { 0x1C, 0x02, "Grown Defect List Not Found" },
    160  1.1  christos { 0x1D, 0x00, "Miscompare During Verify Operation" },
    161  1.1  christos { 0x1E, 0x00, "Recovered ID with ECC" },
    162  1.1  christos { 0x20, 0x00, "Invalid Command Operation Code" },
    163  1.1  christos { 0x21, 0x00, "Logical Block Address Out of Range" },
    164  1.1  christos { 0x21, 0x01, "Invalid Element Address" },
    165  1.1  christos { 0x22, 0x00, "Illegal Function (Should 20 00, 24 00, or 26 00)" },
    166  1.1  christos { 0x24, 0x00, "Illegal Field in CDB" },
    167  1.1  christos { 0x25, 0x00, "Logical Unit Not Supported" },
    168  1.1  christos { 0x26, 0x00, "Invalid Field In Parameter List" },
    169  1.1  christos { 0x26, 0x01, "Parameter Not Supported" },
    170  1.1  christos { 0x26, 0x02, "Parameter Value Invalid" },
    171  1.1  christos { 0x26, 0x03, "Threshold Parameters Not Supported" },
    172  1.1  christos { 0x27, 0x00, "Write Protected" },
    173  1.1  christos { 0x28, 0x00, "Not Ready To Ready Transition (Medium May Have Changed)" },
    174  1.1  christos { 0x28, 0x01, "Import Or Export Element Accessed" },
    175  1.1  christos { 0x29, 0x00, "Power On, Reset, or Bus Device Reset Occurred" },
    176  1.1  christos { 0x2A, 0x00, "Parameters Changed" },
    177  1.1  christos { 0x2A, 0x01, "Mode Parameters Changed" },
    178  1.1  christos { 0x2A, 0x02, "Log Parameters Changed" },
    179  1.1  christos { 0x2B, 0x00, "Copy Cannot Execute Since Host Cannot Disconnect" },
    180  1.1  christos { 0x2C, 0x00, "Command Sequence Error" },
    181  1.1  christos { 0x2C, 0x01, "Too Many Windows Specified" },
    182  1.1  christos { 0x2C, 0x02, "Invalid Combination of Windows Specified" },
    183  1.1  christos { 0x2D, 0x00, "Overwrite Error On Update In Place" },
    184  1.1  christos { 0x2F, 0x00, "Commands Cleared By Another Initiator" },
    185  1.1  christos { 0x30, 0x00, "Incompatible Medium Installed" },
    186  1.1  christos { 0x30, 0x01, "Cannot Read Medium - Unknown Format" },
    187  1.1  christos { 0x30, 0x02, "Cannot Read Medium - Incompatible Format" },
    188  1.1  christos { 0x30, 0x03, "Cleaning Cartridge Installed" },
    189  1.1  christos { 0x31, 0x00, "Medium Format Corrupted" },
    190  1.1  christos { 0x31, 0x01, "Format Command Failed" },
    191  1.1  christos { 0x32, 0x00, "No Defect Spare Location Available" },
    192  1.1  christos { 0x32, 0x01, "Defect List Update Failure" },
    193  1.1  christos { 0x33, 0x00, "Tape Length Error" },
    194  1.1  christos { 0x36, 0x00, "Ribbon, Ink, or Toner Failure" },
    195  1.1  christos { 0x37, 0x00, "Rounded Parameter" },
    196  1.1  christos { 0x39, 0x00, "Saving Parameters Not Supported" },
    197  1.1  christos { 0x3A, 0x00, "Medium Not Present" },
    198  1.1  christos { 0x3B, 0x00, "Positioning Error" },
    199  1.1  christos { 0x3B, 0x01, "Tape Position Error At Beginning-of-Medium" },
    200  1.1  christos { 0x3B, 0x02, "Tape Position Error At End-of-Medium" },
    201  1.1  christos { 0x3B, 0x03, "Tape or Electronic Vertical Forms Unit Not Ready" },
    202  1.1  christos { 0x3B, 0x04, "Slew Failure" },
    203  1.1  christos { 0x3B, 0x05, "Paper Jam" },
    204  1.1  christos { 0x3B, 0x06, "Failed To Sense Top-Of-Form" },
    205  1.1  christos { 0x3B, 0x07, "Failed To Sense Bottom-Of-Form" },
    206  1.1  christos { 0x3B, 0x08, "Reposition Error" },
    207  1.1  christos { 0x3B, 0x09, "Read Past End Of Medium" },
    208  1.1  christos { 0x3B, 0x0A, "Read Past Begining Of Medium" },
    209  1.1  christos { 0x3B, 0x0B, "Position Past End Of Medium" },
    210  1.1  christos { 0x3B, 0x0C, "Position Past Beginning Of Medium" },
    211  1.1  christos { 0x3B, 0x0D, "Medium Destination Element Full" },
    212  1.1  christos { 0x3B, 0x0E, "Medium Source Element Empty" },
    213  1.1  christos { 0x3D, 0x00, "Invalid Bits In IDENTFY Message" },
    214  1.1  christos { 0x3E, 0x00, "Logical Unit Has Not Self-Configured Yet" },
    215  1.1  christos { 0x3F, 0x00, "Target Operating Conditions Have Changed" },
    216  1.1  christos { 0x3F, 0x01, "Microcode Has Changed" },
    217  1.1  christos { 0x3F, 0x02, "Changed Operating Definition" },
    218  1.1  christos { 0x3F, 0x03, "INQUIRY Data Has Changed" },
    219  1.1  christos { 0x40, 0x00, "RAM FAILURE (Should Use 40 NN)" },
    220  1.1  christos { 0x41, 0x00, "Data Path FAILURE (Should Use 40 NN)" },
    221  1.1  christos { 0x42, 0x00, "Power-On or Self-Test FAILURE (Should Use 40 NN)" },
    222  1.1  christos { 0x43, 0x00, "Message Error" },
    223  1.1  christos { 0x44, 0x00, "Internal Target Failure" },
    224  1.1  christos { 0x45, 0x00, "Select Or Reselect Failure" },
    225  1.1  christos { 0x46, 0x00, "Unsuccessful Soft Reset" },
    226  1.1  christos { 0x47, 0x00, "SCSI Parity Error" },
    227  1.1  christos { 0x48, 0x00, "INITIATOR DETECTED ERROR Message Received" },
    228  1.1  christos { 0x49, 0x00, "Invalid Message Error" },
    229  1.1  christos { 0x4A, 0x00, "Command Phase Error" },
    230  1.1  christos { 0x4B, 0x00, "Data Phase Error" },
    231  1.1  christos { 0x4C, 0x00, "Logical Unit Failed Self-Configuration" },
    232  1.1  christos { 0x4E, 0x00, "Overlapped Commands Attempted" },
    233  1.1  christos { 0x50, 0x00, "Write Append Error" },
    234  1.1  christos { 0x50, 0x01, "Write Append Position Error" },
    235  1.1  christos { 0x50, 0x01, "Write Append Position Error" },
    236  1.1  christos { 0x50, 0x02, "Position Error Related To Timing" },
    237  1.1  christos { 0x51, 0x00, "Erase Failure" },
    238  1.1  christos { 0x52, 0x00, "Cartridge Fault" },
    239  1.1  christos { 0x53, 0x00, "Media Load or Eject Failed" },
    240  1.1  christos { 0x53, 0x01, "Unload Tape Failure" },
    241  1.1  christos { 0x53, 0x02, "Medium Removal Prevented" },
    242  1.1  christos { 0x54, 0x00, "SCSI To Host System Interface Failure" },
    243  1.1  christos { 0x55, 0x00, "System Resource Failure" },
    244  1.1  christos { 0x57, 0x00, "Unable To Recover Table-Of-Contents" },
    245  1.1  christos { 0x58, 0x00, "Generation Does Not Exist" },
    246  1.1  christos { 0x59, 0x00, "Updated Block Read" },
    247  1.1  christos { 0x5A, 0x00, "Operator Request or State Change Input (Unspecified)" },
    248  1.1  christos { 0x5A, 0x01, "Operator Medium Removal Requested" },
    249  1.1  christos { 0x5A, 0x02, "Operator Selected Write Protect" },
    250  1.1  christos { 0x5A, 0x03, "Operator Selected Write Permit" },
    251  1.1  christos { 0x5B, 0x00, "Log Exception" },
    252  1.1  christos { 0x5B, 0x01, "Threshold Condition Met" },
    253  1.1  christos { 0x5B, 0x02, "Log Counter At Maximum" },
    254  1.1  christos { 0x5B, 0x03, "Log List Codes Exhausted" },
    255  1.1  christos { 0x5C, 0x00, "RPL Status Change" },
    256  1.1  christos { 0x5C, 0x01, "Spindles Synchronized" },
    257  1.1  christos { 0x5C, 0x02, "Spindles Not Synchronized" },
    258  1.1  christos { 0x60, 0x00, "Lamp Failure" },
    259  1.1  christos { 0x61, 0x00, "Video Acquisition Error" },
    260  1.1  christos { 0x61, 0x01, "Unable To Acquire Video" },
    261  1.1  christos { 0x61, 0x02, "Out Of Focus" },
    262  1.1  christos { 0x62, 0x00, "Scan Head Positioning Error" },
    263  1.1  christos { 0x63, 0x00, "End Of User Area Encountered On This Track" },
    264  1.1  christos { 0x64, 0x00, "Illegal Mode For This Track" },
    265  1.1  christos { 0x00, 0x00, NULL }
    266  1.1  christos };
    267  1.1  christos 
    268  1.1  christos static __inline void asc2ascii __P((unsigned char, unsigned char, char *));
    269  1.1  christos 
    270  1.1  christos static __inline void
    271  1.1  christos asc2ascii(asc, ascq, result)
    272  1.1  christos 	unsigned char asc, ascq;
    273  1.1  christos 	char *result;
    274  1.1  christos {
    275  1.1  christos 	register int i = 0;
    276  1.1  christos 
    277  1.1  christos 	while (adesc[i].description != NULL) {
    278  1.1  christos 		if (adesc[i].asc == asc && adesc[i].ascq == ascq)
    279  1.1  christos 			break;
    280  1.1  christos 		i++;
    281  1.1  christos 	}
    282  1.1  christos 	if (adesc[i].description == NULL) {
    283  1.1  christos 		if (asc == 0x40 && ascq != 0)
    284  1.1  christos 			(void)sprintf(result,
    285  1.1  christos 			    "Diagnostic Failure on Component 0x%02x",
    286  1.1  christos 			    ascq & 0xff);
    287  1.1  christos 		else
    288  1.1  christos 			(void)sprintf(result, "ASC 0x%02x ASCQ 0x%02x",
    289  1.1  christos 			    asc & 0xff, ascq & 0xff);
    290  1.1  christos 	} else
    291  1.1  christos 		(void)strcpy(result, adesc[i].description);
    292  1.1  christos }
    293  1.1  christos 
    294  1.1  christos void
    295  1.1  christos scsi_print_sense_data(sense, verbosity)
    296  1.1  christos 	struct scsipi_sense_data *sense;
    297  1.1  christos 	int verbosity;
    298  1.1  christos {
    299  1.1  christos 	int32_t info;
    300  1.1  christos 	register int i, j, k;
    301  1.1  christos 	char *sbs, *s = (char *) sense;
    302  1.1  christos 
    303  1.1  christos 	/*
    304  1.1  christos 	 * Basics- print out SENSE KEY
    305  1.1  christos 	 */
    306  1.2    mjacob 	printf("    SENSE KEY:  %s", scsi_decode_sense(s, 0));
    307  1.1  christos 
    308  1.1  christos 	/*
    309  1.1  christos 	 * Print out, unqualified but aligned, FMK, EOM and ILI status.
    310  1.1  christos 	 */
    311  1.1  christos 	if (s[2] & 0xe0) {
    312  1.1  christos 		char pad;
    313  1.4    mjacob 	        printf("\n              ");
    314  1.1  christos 		pad = ' ';
    315  1.1  christos 		if (s[2] & SSD_FILEMARK) {
    316  1.1  christos 			printf("%c Filemark Detected", pad);
    317  1.1  christos 			pad = ',';
    318  1.1  christos 		}
    319  1.1  christos 		if (s[2] & SSD_EOM) {
    320  1.1  christos 			printf("%c EOM Detected", pad);
    321  1.1  christos 			pad = ',';
    322  1.1  christos 		}
    323  1.1  christos 		if (s[2] & SSD_ILI)
    324  1.1  christos 			printf("%c Incorrect Length Indicator Set", pad);
    325  1.1  christos 	}
    326  1.1  christos 
    327  1.1  christos 	/*
    328  1.1  christos 	 * Now we should figure out, based upon device type, how
    329  1.1  christos 	 * to format the information field. Unfortunately, that's
    330  1.1  christos 	 * not convenient here, so we'll print it as a signed
    331  1.1  christos 	 * 32 bit integer.
    332  1.1  christos 	 */
    333  1.1  christos 	info = _4btol(&s[3]);
    334  1.1  christos 	if (info)
    335  1.1  christos 		printf("\n   INFO FIELD:  %d", info);
    336  1.1  christos 
    337  1.1  christos 	/*
    338  1.1  christos 	 * Now we check additional length to see whether there is
    339  1.1  christos 	 * more information to extract.
    340  1.1  christos 	 */
    341  1.1  christos 
    342  1.1  christos 	/* enough for command specific information? */
    343  1.5    mjacob 	if (((unsigned int) s[7]) < 4) {
    344  1.1  christos 		printf("\n");
    345  1.1  christos 		return;
    346  1.1  christos 	}
    347  1.1  christos 	info = _4btol(&s[8]);
    348  1.1  christos 	if (info)
    349  1.1  christos 		printf("\n COMMAND INFO:  %d (0x%x)", info, info);
    350  1.1  christos 
    351  1.1  christos 	/*
    352  1.1  christos 	 * Decode ASC && ASCQ info, plus FRU, plus the rest...
    353  1.1  christos 	 */
    354  1.1  christos 
    355  1.1  christos 	sbs = scsi_decode_sense(s, 1);
    356  1.1  christos 	if (sbs)
    357  1.1  christos 		printf("\n     ASC/ASCQ:  %s", sbs);
    358  1.1  christos 	if (s[14] != 0)
    359  1.1  christos 		printf("\n     FRU CODE:  0x%x", s[14] & 0xff);
    360  1.1  christos 	sbs = scsi_decode_sense(s, 3);
    361  1.1  christos 	if (sbs)
    362  1.1  christos 		printf("\n         SKSV:  %s", sbs);
    363  1.1  christos 	printf("\n");
    364  1.1  christos 	if (verbosity == 0) {
    365  1.1  christos 		printf("\n");
    366  1.1  christos 		return;
    367  1.1  christos 	}
    368  1.1  christos 
    369  1.1  christos 	/*
    370  1.1  christos 	 * Now figure whether we should print any additional informtion.
    371  1.1  christos 	 *
    372  1.1  christos 	 * Where should we start from? If we had SKSV data,
    373  1.1  christos 	 * start from offset 18, else from offset 15.
    374  1.1  christos 	 *
    375  1.1  christos 	 * From that point until the end of the buffer, check for any
    376  1.1  christos 	 * nonzero data. If we have some, go back and print the lot,
    377  1.1  christos 	 * otherwise we're done.
    378  1.1  christos 	 */
    379  1.1  christos 	if (sbs)
    380  1.1  christos 		i = 18;
    381  1.1  christos 	else
    382  1.1  christos 		i = 15;
    383  1.1  christos 	for (j = i; j < sizeof (*sense); j++)
    384  1.1  christos 		if (s[j])
    385  1.1  christos 			break;
    386  1.1  christos 	if (j == sizeof (*sense))
    387  1.1  christos 		return;
    388  1.1  christos 
    389  1.1  christos 	printf("\n Additional Sense Information (byte %d out...):\n", i);
    390  1.1  christos 	if (i == 15) {
    391  1.1  christos 		printf("\n\t%2d:", i);
    392  1.1  christos 		k = 7;
    393  1.1  christos 	} else {
    394  1.1  christos 		printf("\n\t%2d:", i);
    395  1.1  christos 		k = 2;
    396  1.1  christos 		j -= 2;
    397  1.1  christos 	}
    398  1.1  christos 	while (j > 0) {
    399  1.1  christos 		if (i >= sizeof (*sense))
    400  1.1  christos 			break;
    401  1.1  christos 		if (k == 8) {
    402  1.1  christos 			k = 0;
    403  1.1  christos 			printf("\n\t%2d:", i);
    404  1.1  christos 		}
    405  1.1  christos 		printf(" 0x%02x", s[i] & 0xff);
    406  1.1  christos 		k++;
    407  1.1  christos 		j--;
    408  1.1  christos 		i++;
    409  1.1  christos 	}
    410  1.1  christos 	printf("\n\n");
    411  1.1  christos }
    412  1.1  christos 
    413  1.1  christos char *
    414  1.1  christos scsi_decode_sense(sinfo, flag)
    415  1.1  christos 	void *sinfo;
    416  1.1  christos 	int flag;
    417  1.1  christos {
    418  1.1  christos 	unsigned char *snsbuf;
    419  1.1  christos 	unsigned char skey;
    420  1.1  christos 	static char rqsbuf[132];
    421  1.1  christos 
    422  1.1  christos 	skey = 0;
    423  1.1  christos 
    424  1.1  christos 	snsbuf = (unsigned char *) sinfo;
    425  1.1  christos 	if (flag == 0 || flag == 2 || flag == 3)
    426  1.1  christos 		skey = snsbuf[2] & 0xf;
    427  1.1  christos 	if (flag == 0) {			/* Sense Key Only */
    428  1.1  christos 		(void) strcpy(rqsbuf, sense_keys[skey]);
    429  1.1  christos 		return (rqsbuf);
    430  1.1  christos 	} else if (flag == 1) {			/* ASC/ASCQ Only */
    431  1.1  christos 		asc2ascii(snsbuf[12], snsbuf[13], rqsbuf);
    432  1.1  christos 		return (rqsbuf);
    433  1.1  christos 	} else  if (flag == 2) {		/* Sense Key && ASC/ASCQ */
    434  1.1  christos 		auto char localbuf[64];
    435  1.1  christos 		asc2ascii(snsbuf[12], snsbuf[13], localbuf);
    436  1.1  christos 		(void) sprintf(rqsbuf, "%s, %s", sense_keys[skey], localbuf);
    437  1.1  christos 		return (rqsbuf);
    438  1.1  christos 	} else if (flag == 3 && snsbuf[7] >= 9 && (snsbuf[15] & 0x80)) {
    439  1.1  christos 		/*
    440  1.1  christos 		 * SKSV Data
    441  1.1  christos 		 */
    442  1.1  christos 		switch (skey) {
    443  1.4    mjacob 		case SKEY_ILLEGAL_REQUEST:
    444  1.1  christos 			if (snsbuf[15] & 0x8)
    445  1.1  christos 				(void)sprintf(rqsbuf,
    446  1.1  christos 				    "Error in %s, Offset %d, bit %d",
    447  1.1  christos 				    (snsbuf[15] & 0x40)? "CDB" : "Parameters",
    448  1.1  christos 				    (snsbuf[16] & 0xff) << 8 |
    449  1.1  christos 				    (snsbuf[17] & 0xff), snsbuf[15] & 0x7);
    450  1.1  christos 			else
    451  1.1  christos 				(void)sprintf(rqsbuf,
    452  1.1  christos 				    "Error in %s, Offset %d",
    453  1.1  christos 				    (snsbuf[15] & 0x40)? "CDB" : "Parameters",
    454  1.1  christos 				    (snsbuf[16] & 0xff) << 8 |
    455  1.1  christos 				    (snsbuf[17] & 0xff));
    456  1.1  christos 			return (rqsbuf);
    457  1.6    mjacob 		case SKEY_RECOVERED_ERROR:
    458  1.4    mjacob 		case SKEY_MEDIUM_ERROR:
    459  1.4    mjacob 		case SKEY_HARDWARE_ERROR:
    460  1.1  christos 			(void)sprintf(rqsbuf, "Actual Retry Count: %d",
    461  1.1  christos 			    (snsbuf[16] & 0xff) << 8 | (snsbuf[17] & 0xff));
    462  1.1  christos 			return (rqsbuf);
    463  1.4    mjacob 		case SKEY_NOT_READY:
    464  1.1  christos 			(void)sprintf(rqsbuf, "Progress Indicator: %d",
    465  1.1  christos 			    (snsbuf[16] & 0xff) << 8 | (snsbuf[17] & 0xff));
    466  1.1  christos 			return (rqsbuf);
    467  1.1  christos 		default:
    468  1.1  christos 			break;
    469  1.1  christos 		}
    470  1.1  christos 	}
    471  1.1  christos 	return (NULL);
    472  1.1  christos }
    473  1.1  christos 
    474  1.1  christos void
    475  1.1  christos scsi_print_sense(xs, verbosity)
    476  1.1  christos 	struct scsipi_xfer *xs;
    477  1.1  christos 	int verbosity;
    478  1.1  christos {
    479  1.3    mjacob 	int i, j;
    480  1.3    mjacob 
    481  1.1  christos 	xs->sc_link->sc_print_addr(xs->sc_link);
    482  1.3    mjacob  	printf(" Check Condition on CDB: 0x%02x", xs->cmd->opcode);
    483  1.3    mjacob 
    484  1.3    mjacob  	switch (CDB_GROUPID(xs->cmd->opcode)) {
    485  1.3    mjacob  	case CDB_GROUPID_0:
    486  1.3    mjacob  		j = CDB_GROUP0;
    487  1.3    mjacob  		break;
    488  1.3    mjacob  	case CDB_GROUPID_1:
    489  1.3    mjacob  		j = CDB_GROUP1;
    490  1.3    mjacob  		break;
    491  1.3    mjacob  	case CDB_GROUPID_2:
    492  1.3    mjacob  		j = CDB_GROUP2;
    493  1.3    mjacob  		break;
    494  1.3    mjacob  	case CDB_GROUPID_3:
    495  1.3    mjacob  		j = CDB_GROUP3;
    496  1.3    mjacob  		break;
    497  1.3    mjacob  	case CDB_GROUPID_4:
    498  1.3    mjacob  		j = CDB_GROUP4;
    499  1.3    mjacob  		break;
    500  1.3    mjacob  	case CDB_GROUPID_5:
    501  1.3    mjacob  		j = CDB_GROUP5;
    502  1.3    mjacob  		break;
    503  1.3    mjacob  	case CDB_GROUPID_6:
    504  1.3    mjacob  		j = CDB_GROUP6;
    505  1.3    mjacob  		break;
    506  1.3    mjacob  	case CDB_GROUPID_7:
    507  1.3    mjacob  		j = CDB_GROUP7;
    508  1.3    mjacob  		break;
    509  1.3    mjacob  	default:
    510  1.3    mjacob  		j = 0;
    511  1.3    mjacob  	}
    512  1.3    mjacob  	if (j == 0)
    513  1.3    mjacob  		j = sizeof (xs->cmd->bytes);
    514  1.3    mjacob  	for (i = 0; i < j-1; i++) /* already done the opcode */
    515  1.3    mjacob  		printf(" %02x", xs->cmd->bytes[i]);
    516  1.3    mjacob  	printf("\n");
    517  1.1  christos 	scsi_print_sense_data(&xs->sense.scsi_sense, verbosity);
    518  1.1  christos }
    519