scsi_all.c revision 311415
1/*-
2 * Implementation of Utility functions for all SCSI device types.
3 *
4 * Copyright (c) 1997, 1998, 1999 Justin T. Gibbs.
5 * Copyright (c) 1997, 1998, 2003 Kenneth D. Merry.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions, and the following disclaimer,
13 *    without modification, immediately at the beginning of the file.
14 * 2. The name of the author may not be used to endorse or promote products
15 *    derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: stable/10/sys/cam/scsi/scsi_all.c 311415 2017-01-05 11:35:10Z mav $");
32
33#include <sys/param.h>
34#include <sys/types.h>
35#include <sys/stdint.h>
36
37#ifdef _KERNEL
38#include <opt_scsi.h>
39
40#include <sys/systm.h>
41#include <sys/libkern.h>
42#include <sys/kernel.h>
43#include <sys/lock.h>
44#include <sys/malloc.h>
45#include <sys/mutex.h>
46#include <sys/sysctl.h>
47#include <sys/ctype.h>
48#else
49#include <errno.h>
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
53#include <ctype.h>
54#endif
55
56#include <cam/cam.h>
57#include <cam/cam_ccb.h>
58#include <cam/cam_queue.h>
59#include <cam/cam_xpt.h>
60#include <cam/scsi/scsi_all.h>
61#include <sys/ata.h>
62#include <sys/sbuf.h>
63
64#ifdef _KERNEL
65#include <cam/cam_periph.h>
66#include <cam/cam_xpt_sim.h>
67#include <cam/cam_xpt_periph.h>
68#include <cam/cam_xpt_internal.h>
69#else
70#include <camlib.h>
71#include <stddef.h>
72
73#ifndef FALSE
74#define FALSE   0
75#endif /* FALSE */
76#ifndef TRUE
77#define TRUE    1
78#endif /* TRUE */
79#define ERESTART        -1              /* restart syscall */
80#define EJUSTRETURN     -2              /* don't modify regs, just return */
81#endif /* !_KERNEL */
82
83/*
84 * This is the default number of milliseconds we wait for devices to settle
85 * after a SCSI bus reset.
86 */
87#ifndef SCSI_DELAY
88#define SCSI_DELAY 2000
89#endif
90/*
91 * All devices need _some_ sort of bus settle delay, so we'll set it to
92 * a minimum value of 100ms. Note that this is pertinent only for SPI-
93 * not transport like Fibre Channel or iSCSI where 'delay' is completely
94 * meaningless.
95 */
96#ifndef SCSI_MIN_DELAY
97#define SCSI_MIN_DELAY 100
98#endif
99/*
100 * Make sure the user isn't using seconds instead of milliseconds.
101 */
102#if (SCSI_DELAY < SCSI_MIN_DELAY && SCSI_DELAY != 0)
103#error "SCSI_DELAY is in milliseconds, not seconds!  Please use a larger value"
104#endif
105
106int scsi_delay;
107
108static int	ascentrycomp(const void *key, const void *member);
109static int	senseentrycomp(const void *key, const void *member);
110static void	fetchtableentries(int sense_key, int asc, int ascq,
111				  struct scsi_inquiry_data *,
112				  const struct sense_key_table_entry **,
113				  const struct asc_table_entry **);
114#ifdef _KERNEL
115static void	init_scsi_delay(void);
116static int	sysctl_scsi_delay(SYSCTL_HANDLER_ARGS);
117static int	set_scsi_delay(int delay);
118#endif
119
120#if !defined(SCSI_NO_OP_STRINGS)
121
122#define	D	(1 << T_DIRECT)
123#define	T	(1 << T_SEQUENTIAL)
124#define	L	(1 << T_PRINTER)
125#define	P	(1 << T_PROCESSOR)
126#define	W	(1 << T_WORM)
127#define	R	(1 << T_CDROM)
128#define	O	(1 << T_OPTICAL)
129#define	M	(1 << T_CHANGER)
130#define	A	(1 << T_STORARRAY)
131#define	E	(1 << T_ENCLOSURE)
132#define	B	(1 << T_RBC)
133#define	K	(1 << T_OCRW)
134#define	V	(1 << T_ADC)
135#define	F	(1 << T_OSD)
136#define	S	(1 << T_SCANNER)
137#define	C	(1 << T_COMM)
138
139#define ALL	(D | T | L | P | W | R | O | M | A | E | B | K | V | F | S | C)
140
141static struct op_table_entry plextor_cd_ops[] = {
142	{ 0xD8, R, "CD-DA READ" }
143};
144
145static struct scsi_op_quirk_entry scsi_op_quirk_table[] = {
146	{
147		/*
148		 * I believe that 0xD8 is the Plextor proprietary command
149		 * to read CD-DA data.  I'm not sure which Plextor CDROM
150		 * models support the command, though.  I know for sure
151		 * that the 4X, 8X, and 12X models do, and presumably the
152		 * 12-20X does.  I don't know about any earlier models,
153		 * though.  If anyone has any more complete information,
154		 * feel free to change this quirk entry.
155		 */
156		{T_CDROM, SIP_MEDIA_REMOVABLE, "PLEXTOR", "CD-ROM PX*", "*"},
157		sizeof(plextor_cd_ops)/sizeof(struct op_table_entry),
158		plextor_cd_ops
159	}
160};
161
162static struct op_table_entry scsi_op_codes[] = {
163	/*
164	 * From: http://www.t10.org/lists/op-num.txt
165	 * Modifications by Kenneth Merry (ken@FreeBSD.ORG)
166	 *              and Jung-uk Kim (jkim@FreeBSD.org)
167	 *
168	 * Note:  order is important in this table, scsi_op_desc() currently
169	 * depends on the opcodes in the table being in order to save
170	 * search time.
171	 * Note:  scanner and comm. devices are carried over from the previous
172	 * version because they were removed in the latest spec.
173	 */
174	/* File: OP-NUM.TXT
175	 *
176	 * SCSI Operation Codes
177	 * Numeric Sorted Listing
178	 * as of  5/26/15
179	 *
180	 *     D - DIRECT ACCESS DEVICE (SBC-2)                device column key
181	 *     .T - SEQUENTIAL ACCESS DEVICE (SSC-2)           -----------------
182	 *     . L - PRINTER DEVICE (SSC)                      M = Mandatory
183	 *     .  P - PROCESSOR DEVICE (SPC)                   O = Optional
184	 *     .  .W - WRITE ONCE READ MULTIPLE DEVICE (SBC-2) V = Vendor spec.
185	 *     .  . R - CD/DVE DEVICE (MMC-3)                  Z = Obsolete
186	 *     .  .  O - OPTICAL MEMORY DEVICE (SBC-2)
187	 *     .  .  .M - MEDIA CHANGER DEVICE (SMC-2)
188	 *     .  .  . A - STORAGE ARRAY DEVICE (SCC-2)
189	 *     .  .  . .E - ENCLOSURE SERVICES DEVICE (SES)
190	 *     .  .  .  .B - SIMPLIFIED DIRECT-ACCESS DEVICE (RBC)
191	 *     .  .  .  . K - OPTICAL CARD READER/WRITER DEVICE (OCRW)
192	 *     .  .  .  .  V - AUTOMATION/DRIVE INTERFACE (ADC)
193	 *     .  .  .  .  .F - OBJECT-BASED STORAGE (OSD)
194	 * OP  DTLPWROMAEBKVF  Description
195	 * --  --------------  ---------------------------------------------- */
196	/* 00  MMMMMMMMMMMMMM  TEST UNIT READY */
197	{ 0x00,	ALL, "TEST UNIT READY" },
198	/* 01   M              REWIND */
199	{ 0x01,	T, "REWIND" },
200	/* 01  Z V ZZZZ        REZERO UNIT */
201	{ 0x01,	D | W | R | O | M, "REZERO UNIT" },
202	/* 02  VVVVVV V */
203	/* 03  MMMMMMMMMMOMMM  REQUEST SENSE */
204	{ 0x03,	ALL, "REQUEST SENSE" },
205	/* 04  M    OO         FORMAT UNIT */
206	{ 0x04,	D | R | O, "FORMAT UNIT" },
207	/* 04   O              FORMAT MEDIUM */
208	{ 0x04,	T, "FORMAT MEDIUM" },
209	/* 04    O             FORMAT */
210	{ 0x04,	L, "FORMAT" },
211	/* 05  VMVVVV V        READ BLOCK LIMITS */
212	{ 0x05,	T, "READ BLOCK LIMITS" },
213	/* 06  VVVVVV V */
214	/* 07  OVV O OV        REASSIGN BLOCKS */
215	{ 0x07,	D | W | O, "REASSIGN BLOCKS" },
216	/* 07         O        INITIALIZE ELEMENT STATUS */
217	{ 0x07,	M, "INITIALIZE ELEMENT STATUS" },
218	/* 08  MOV O OV        READ(6) */
219	{ 0x08,	D | T | W | O, "READ(6)" },
220	/* 08     O            RECEIVE */
221	{ 0x08,	P, "RECEIVE" },
222	/* 08                  GET MESSAGE(6) */
223	{ 0x08, C, "GET MESSAGE(6)" },
224	/* 09  VVVVVV V */
225	/* 0A  OO  O OV        WRITE(6) */
226	{ 0x0A,	D | T | W | O, "WRITE(6)" },
227	/* 0A     M            SEND(6) */
228	{ 0x0A,	P, "SEND(6)" },
229	/* 0A                  SEND MESSAGE(6) */
230	{ 0x0A, C, "SEND MESSAGE(6)" },
231	/* 0A    M             PRINT */
232	{ 0x0A,	L, "PRINT" },
233	/* 0B  Z   ZOZV        SEEK(6) */
234	{ 0x0B,	D | W | R | O, "SEEK(6)" },
235	/* 0B   O              SET CAPACITY */
236	{ 0x0B,	T, "SET CAPACITY" },
237	/* 0B    O             SLEW AND PRINT */
238	{ 0x0B,	L, "SLEW AND PRINT" },
239	/* 0C  VVVVVV V */
240	/* 0D  VVVVVV V */
241	/* 0E  VVVVVV V */
242	/* 0F  VOVVVV V        READ REVERSE(6) */
243	{ 0x0F,	T, "READ REVERSE(6)" },
244	/* 10  VM VVV          WRITE FILEMARKS(6) */
245	{ 0x10,	T, "WRITE FILEMARKS(6)" },
246	/* 10    O             SYNCHRONIZE BUFFER */
247	{ 0x10,	L, "SYNCHRONIZE BUFFER" },
248	/* 11  VMVVVV          SPACE(6) */
249	{ 0x11,	T, "SPACE(6)" },
250	/* 12  MMMMMMMMMMMMMM  INQUIRY */
251	{ 0x12,	ALL, "INQUIRY" },
252	/* 13  V VVVV */
253	/* 13   O              VERIFY(6) */
254	{ 0x13,	T, "VERIFY(6)" },
255	/* 14  VOOVVV          RECOVER BUFFERED DATA */
256	{ 0x14,	T | L, "RECOVER BUFFERED DATA" },
257	/* 15  OMO O OOOO OO   MODE SELECT(6) */
258	{ 0x15,	ALL & ~(P | R | B | F), "MODE SELECT(6)" },
259	/* 16  ZZMZO OOOZ O    RESERVE(6) */
260	{ 0x16,	ALL & ~(R | B | V | F | C), "RESERVE(6)" },
261	/* 16         Z        RESERVE ELEMENT(6) */
262	{ 0x16,	M, "RESERVE ELEMENT(6)" },
263	/* 17  ZZMZO OOOZ O    RELEASE(6) */
264	{ 0x17,	ALL & ~(R | B | V | F | C), "RELEASE(6)" },
265	/* 17         Z        RELEASE ELEMENT(6) */
266	{ 0x17,	M, "RELEASE ELEMENT(6)" },
267	/* 18  ZZZZOZO    Z    COPY */
268	{ 0x18,	D | T | L | P | W | R | O | K | S, "COPY" },
269	/* 19  VMVVVV          ERASE(6) */
270	{ 0x19,	T, "ERASE(6)" },
271	/* 1A  OMO O OOOO OO   MODE SENSE(6) */
272	{ 0x1A,	ALL & ~(P | R | B | F), "MODE SENSE(6)" },
273	/* 1B  O   OOO O MO O  START STOP UNIT */
274	{ 0x1B,	D | W | R | O | A | B | K | F, "START STOP UNIT" },
275	/* 1B   O          M   LOAD UNLOAD */
276	{ 0x1B,	T | V, "LOAD UNLOAD" },
277	/* 1B                  SCAN */
278	{ 0x1B, S, "SCAN" },
279	/* 1B    O             STOP PRINT */
280	{ 0x1B,	L, "STOP PRINT" },
281	/* 1B         O        OPEN/CLOSE IMPORT/EXPORT ELEMENT */
282	{ 0x1B,	M, "OPEN/CLOSE IMPORT/EXPORT ELEMENT" },
283	/* 1C  OOOOO OOOM OOO  RECEIVE DIAGNOSTIC RESULTS */
284	{ 0x1C,	ALL & ~(R | B), "RECEIVE DIAGNOSTIC RESULTS" },
285	/* 1D  MMMMM MMOM MMM  SEND DIAGNOSTIC */
286	{ 0x1D,	ALL & ~(R | B), "SEND DIAGNOSTIC" },
287	/* 1E  OO  OOOO   O O  PREVENT ALLOW MEDIUM REMOVAL */
288	{ 0x1E,	D | T | W | R | O | M | K | F, "PREVENT ALLOW MEDIUM REMOVAL" },
289	/* 1F */
290	/* 20  V   VVV    V */
291	/* 21  V   VVV    V */
292	/* 22  V   VVV    V */
293	/* 23  V   V V    V */
294	/* 23       O          READ FORMAT CAPACITIES */
295	{ 0x23,	R, "READ FORMAT CAPACITIES" },
296	/* 24  V   VV          SET WINDOW */
297	{ 0x24, S, "SET WINDOW" },
298	/* 25  M   M M   M     READ CAPACITY(10) */
299	{ 0x25,	D | W | O | B, "READ CAPACITY(10)" },
300	/* 25       O          READ CAPACITY */
301	{ 0x25,	R, "READ CAPACITY" },
302	/* 25             M    READ CARD CAPACITY */
303	{ 0x25,	K, "READ CARD CAPACITY" },
304	/* 25                  GET WINDOW */
305	{ 0x25, S, "GET WINDOW" },
306	/* 26  V   VV */
307	/* 27  V   VV */
308	/* 28  M   MOM   MM    READ(10) */
309	{ 0x28,	D | W | R | O | B | K | S, "READ(10)" },
310	/* 28                  GET MESSAGE(10) */
311	{ 0x28, C, "GET MESSAGE(10)" },
312	/* 29  V   VVO         READ GENERATION */
313	{ 0x29,	O, "READ GENERATION" },
314	/* 2A  O   MOM   MO    WRITE(10) */
315	{ 0x2A,	D | W | R | O | B | K, "WRITE(10)" },
316	/* 2A                  SEND(10) */
317	{ 0x2A, S, "SEND(10)" },
318	/* 2A                  SEND MESSAGE(10) */
319	{ 0x2A, C, "SEND MESSAGE(10)" },
320	/* 2B  Z   OOO    O    SEEK(10) */
321	{ 0x2B,	D | W | R | O | K, "SEEK(10)" },
322	/* 2B   O              LOCATE(10) */
323	{ 0x2B,	T, "LOCATE(10)" },
324	/* 2B         O        POSITION TO ELEMENT */
325	{ 0x2B,	M, "POSITION TO ELEMENT" },
326	/* 2C  V    OO         ERASE(10) */
327	{ 0x2C,	R | O, "ERASE(10)" },
328	/* 2D        O         READ UPDATED BLOCK */
329	{ 0x2D,	O, "READ UPDATED BLOCK" },
330	/* 2D  V */
331	/* 2E  O   OOO   MO    WRITE AND VERIFY(10) */
332	{ 0x2E,	D | W | R | O | B | K, "WRITE AND VERIFY(10)" },
333	/* 2F  O   OOO         VERIFY(10) */
334	{ 0x2F,	D | W | R | O, "VERIFY(10)" },
335	/* 30  Z   ZZZ         SEARCH DATA HIGH(10) */
336	{ 0x30,	D | W | R | O, "SEARCH DATA HIGH(10)" },
337	/* 31  Z   ZZZ         SEARCH DATA EQUAL(10) */
338	{ 0x31,	D | W | R | O, "SEARCH DATA EQUAL(10)" },
339	/* 31                  OBJECT POSITION */
340	{ 0x31, S, "OBJECT POSITION" },
341	/* 32  Z   ZZZ         SEARCH DATA LOW(10) */
342	{ 0x32,	D | W | R | O, "SEARCH DATA LOW(10)" },
343	/* 33  Z   OZO         SET LIMITS(10) */
344	{ 0x33,	D | W | R | O, "SET LIMITS(10)" },
345	/* 34  O   O O    O    PRE-FETCH(10) */
346	{ 0x34,	D | W | O | K, "PRE-FETCH(10)" },
347	/* 34   M              READ POSITION */
348	{ 0x34,	T, "READ POSITION" },
349	/* 34                  GET DATA BUFFER STATUS */
350	{ 0x34, S, "GET DATA BUFFER STATUS" },
351	/* 35  O   OOO   MO    SYNCHRONIZE CACHE(10) */
352	{ 0x35,	D | W | R | O | B | K, "SYNCHRONIZE CACHE(10)" },
353	/* 36  Z   O O    O    LOCK UNLOCK CACHE(10) */
354	{ 0x36,	D | W | O | K, "LOCK UNLOCK CACHE(10)" },
355	/* 37  O     O         READ DEFECT DATA(10) */
356	{ 0x37,	D | O, "READ DEFECT DATA(10)" },
357	/* 37         O        INITIALIZE ELEMENT STATUS WITH RANGE */
358	{ 0x37,	M, "INITIALIZE ELEMENT STATUS WITH RANGE" },
359	/* 38      O O    O    MEDIUM SCAN */
360	{ 0x38,	W | O | K, "MEDIUM SCAN" },
361	/* 39  ZZZZOZO    Z    COMPARE */
362	{ 0x39,	D | T | L | P | W | R | O | K | S, "COMPARE" },
363	/* 3A  ZZZZOZO    Z    COPY AND VERIFY */
364	{ 0x3A,	D | T | L | P | W | R | O | K | S, "COPY AND VERIFY" },
365	/* 3B  OOOOOOOOOOMOOO  WRITE BUFFER */
366	{ 0x3B,	ALL, "WRITE BUFFER" },
367	/* 3C  OOOOOOOOOO OOO  READ BUFFER */
368	{ 0x3C,	ALL & ~(B), "READ BUFFER" },
369	/* 3D        O         UPDATE BLOCK */
370	{ 0x3D,	O, "UPDATE BLOCK" },
371	/* 3E  O   O O         READ LONG(10) */
372	{ 0x3E,	D | W | O, "READ LONG(10)" },
373	/* 3F  O   O O         WRITE LONG(10) */
374	{ 0x3F,	D | W | O, "WRITE LONG(10)" },
375	/* 40  ZZZZOZOZ        CHANGE DEFINITION */
376	{ 0x40,	D | T | L | P | W | R | O | M | S | C, "CHANGE DEFINITION" },
377	/* 41  O               WRITE SAME(10) */
378	{ 0x41,	D, "WRITE SAME(10)" },
379	/* 42       O          UNMAP */
380	{ 0x42,	D, "UNMAP" },
381	/* 42       O          READ SUB-CHANNEL */
382	{ 0x42,	R, "READ SUB-CHANNEL" },
383	/* 43       O          READ TOC/PMA/ATIP */
384	{ 0x43,	R, "READ TOC/PMA/ATIP" },
385	/* 44   M          M   REPORT DENSITY SUPPORT */
386	{ 0x44,	T | V, "REPORT DENSITY SUPPORT" },
387	/* 44                  READ HEADER */
388	/* 45       O          PLAY AUDIO(10) */
389	{ 0x45,	R, "PLAY AUDIO(10)" },
390	/* 46       M          GET CONFIGURATION */
391	{ 0x46,	R, "GET CONFIGURATION" },
392	/* 47       O          PLAY AUDIO MSF */
393	{ 0x47,	R, "PLAY AUDIO MSF" },
394	/* 48 */
395	/* 49 */
396	/* 4A       M          GET EVENT STATUS NOTIFICATION */
397	{ 0x4A,	R, "GET EVENT STATUS NOTIFICATION" },
398	/* 4B       O          PAUSE/RESUME */
399	{ 0x4B,	R, "PAUSE/RESUME" },
400	/* 4C  OOOOO OOOO OOO  LOG SELECT */
401	{ 0x4C,	ALL & ~(R | B), "LOG SELECT" },
402	/* 4D  OOOOO OOOO OMO  LOG SENSE */
403	{ 0x4D,	ALL & ~(R | B), "LOG SENSE" },
404	/* 4E       O          STOP PLAY/SCAN */
405	{ 0x4E,	R, "STOP PLAY/SCAN" },
406	/* 4F */
407	/* 50  O               XDWRITE(10) */
408	{ 0x50,	D, "XDWRITE(10)" },
409	/* 51  O               XPWRITE(10) */
410	{ 0x51,	D, "XPWRITE(10)" },
411	/* 51       O          READ DISC INFORMATION */
412	{ 0x51,	R, "READ DISC INFORMATION" },
413	/* 52  O               XDREAD(10) */
414	{ 0x52,	D, "XDREAD(10)" },
415	/* 52       O          READ TRACK INFORMATION */
416	{ 0x52,	R, "READ TRACK INFORMATION" },
417	/* 53       O          RESERVE TRACK */
418	{ 0x53,	R, "RESERVE TRACK" },
419	/* 54       O          SEND OPC INFORMATION */
420	{ 0x54,	R, "SEND OPC INFORMATION" },
421	/* 55  OOO OMOOOOMOMO  MODE SELECT(10) */
422	{ 0x55,	ALL & ~(P), "MODE SELECT(10)" },
423	/* 56  ZZMZO OOOZ      RESERVE(10) */
424	{ 0x56,	ALL & ~(R | B | K | V | F | C), "RESERVE(10)" },
425	/* 56         Z        RESERVE ELEMENT(10) */
426	{ 0x56,	M, "RESERVE ELEMENT(10)" },
427	/* 57  ZZMZO OOOZ      RELEASE(10) */
428	{ 0x57,	ALL & ~(R | B | K | V | F | C), "RELEASE(10)" },
429	/* 57         Z        RELEASE ELEMENT(10) */
430	{ 0x57,	M, "RELEASE ELEMENT(10)" },
431	/* 58       O          REPAIR TRACK */
432	{ 0x58,	R, "REPAIR TRACK" },
433	/* 59 */
434	/* 5A  OOO OMOOOOMOMO  MODE SENSE(10) */
435	{ 0x5A,	ALL & ~(P), "MODE SENSE(10)" },
436	/* 5B       O          CLOSE TRACK/SESSION */
437	{ 0x5B,	R, "CLOSE TRACK/SESSION" },
438	/* 5C       O          READ BUFFER CAPACITY */
439	{ 0x5C,	R, "READ BUFFER CAPACITY" },
440	/* 5D       O          SEND CUE SHEET */
441	{ 0x5D,	R, "SEND CUE SHEET" },
442	/* 5E  OOOOO OOOO   M  PERSISTENT RESERVE IN */
443	{ 0x5E,	ALL & ~(R | B | K | V | C), "PERSISTENT RESERVE IN" },
444	/* 5F  OOOOO OOOO   M  PERSISTENT RESERVE OUT */
445	{ 0x5F,	ALL & ~(R | B | K | V | C), "PERSISTENT RESERVE OUT" },
446	/* 7E  OO   O OOOO O   extended CDB */
447	{ 0x7E,	D | T | R | M | A | E | B | V, "extended CDB" },
448	/* 7F  O            M  variable length CDB (more than 16 bytes) */
449	{ 0x7F,	D | F, "variable length CDB (more than 16 bytes)" },
450	/* 80  Z               XDWRITE EXTENDED(16) */
451	{ 0x80,	D, "XDWRITE EXTENDED(16)" },
452	/* 80   M              WRITE FILEMARKS(16) */
453	{ 0x80,	T, "WRITE FILEMARKS(16)" },
454	/* 81  Z               REBUILD(16) */
455	{ 0x81,	D, "REBUILD(16)" },
456	/* 81   O              READ REVERSE(16) */
457	{ 0x81,	T, "READ REVERSE(16)" },
458	/* 82  Z               REGENERATE(16) */
459	{ 0x82,	D, "REGENERATE(16)" },
460	/* 83  OOOOO O    OO   EXTENDED COPY */
461	{ 0x83,	D | T | L | P | W | O | K | V, "EXTENDED COPY" },
462	/* 84  OOOOO O    OO   RECEIVE COPY RESULTS */
463	{ 0x84,	D | T | L | P | W | O | K | V, "RECEIVE COPY RESULTS" },
464	/* 85  O    O    O     ATA COMMAND PASS THROUGH(16) */
465	{ 0x85,	D | R | B, "ATA COMMAND PASS THROUGH(16)" },
466	/* 86  OO OO OOOOOOO   ACCESS CONTROL IN */
467	{ 0x86,	ALL & ~(L | R | F), "ACCESS CONTROL IN" },
468	/* 87  OO OO OOOOOOO   ACCESS CONTROL OUT */
469	{ 0x87,	ALL & ~(L | R | F), "ACCESS CONTROL OUT" },
470	/*
471	 * XXX READ(16)/WRITE(16) were not listed for CD/DVE in op-num.txt
472	 * but we had it since r1.40.  Do we really want them?
473	 */
474	/* 88  MM  O O   O     READ(16) */
475	{ 0x88,	D | T | W | O | B, "READ(16)" },
476	/* 89  O               COMPARE AND WRITE*/
477	{ 0x89,	D, "COMPARE AND WRITE" },
478	/* 8A  OM  O O   O     WRITE(16) */
479	{ 0x8A,	D | T | W | O | B, "WRITE(16)" },
480	/* 8B  O               ORWRITE */
481	{ 0x8B,	D, "ORWRITE" },
482	/* 8C  OO  O OO  O M   READ ATTRIBUTE */
483	{ 0x8C,	D | T | W | O | M | B | V, "READ ATTRIBUTE" },
484	/* 8D  OO  O OO  O O   WRITE ATTRIBUTE */
485	{ 0x8D,	D | T | W | O | M | B | V, "WRITE ATTRIBUTE" },
486	/* 8E  O   O O   O     WRITE AND VERIFY(16) */
487	{ 0x8E,	D | W | O | B, "WRITE AND VERIFY(16)" },
488	/* 8F  OO  O O   O     VERIFY(16) */
489	{ 0x8F,	D | T | W | O | B, "VERIFY(16)" },
490	/* 90  O   O O   O     PRE-FETCH(16) */
491	{ 0x90,	D | W | O | B, "PRE-FETCH(16)" },
492	/* 91  O   O O   O     SYNCHRONIZE CACHE(16) */
493	{ 0x91,	D | W | O | B, "SYNCHRONIZE CACHE(16)" },
494	/* 91   O              SPACE(16) */
495	{ 0x91,	T, "SPACE(16)" },
496	/* 92  Z   O O         LOCK UNLOCK CACHE(16) */
497	{ 0x92,	D | W | O, "LOCK UNLOCK CACHE(16)" },
498	/* 92   O              LOCATE(16) */
499	{ 0x92,	T, "LOCATE(16)" },
500	/* 93  O               WRITE SAME(16) */
501	{ 0x93,	D, "WRITE SAME(16)" },
502	/* 93   M              ERASE(16) */
503	{ 0x93,	T, "ERASE(16)" },
504	/* 94  O               ZBC OUT */
505	{ 0x94,	D, "ZBC OUT" },
506	/* 95  O               ZBC OUT */
507	{ 0x95,	D, "ZBC OUT" },
508	/* 96 */
509	/* 97 */
510	/* 98 */
511	/* 99 */
512	/* 9A  O               WRITE STREAM(16) */
513	{ 0x9A,	D, "WRITE STREAM(16)" },
514	/* 9B  OOOOOOOOOO OOO  READ BUFFER(16) */
515	{ 0x9B,	ALL & ~(B) , "READ BUFFER(16)" },
516	/* 9C  O              WRITE ATOMIC(16) */
517	{ 0x9C, D, "WRITE ATOMIC(16)" },
518	/* 9D                  SERVICE ACTION BIDIRECTIONAL */
519	{ 0x9D, ALL, "SERVICE ACTION BIDIRECTIONAL" },
520	/* XXX KDM ALL for this?  op-num.txt defines it for none.. */
521	/* 9E                  SERVICE ACTION IN(16) */
522	{ 0x9E, ALL, "SERVICE ACTION IN(16)" },
523	/* XXX KDM ALL for this?  op-num.txt defines it for ADC.. */
524	/* 9F              M   SERVICE ACTION OUT(16) */
525	{ 0x9F,	ALL, "SERVICE ACTION OUT(16)" },
526	/* A0  MMOOO OMMM OMO  REPORT LUNS */
527	{ 0xA0,	ALL & ~(R | B), "REPORT LUNS" },
528	/* A1       O          BLANK */
529	{ 0xA1,	R, "BLANK" },
530	/* A1  O         O     ATA COMMAND PASS THROUGH(12) */
531	{ 0xA1,	D | B, "ATA COMMAND PASS THROUGH(12)" },
532	/* A2  OO   O      O   SECURITY PROTOCOL IN */
533	{ 0xA2,	D | T | R | V, "SECURITY PROTOCOL IN" },
534	/* A3  OOO O OOMOOOM   MAINTENANCE (IN) */
535	{ 0xA3,	ALL & ~(P | R | F), "MAINTENANCE (IN)" },
536	/* A3       O          SEND KEY */
537	{ 0xA3,	R, "SEND KEY" },
538	/* A4  OOO O OOOOOOO   MAINTENANCE (OUT) */
539	{ 0xA4,	ALL & ~(P | R | F), "MAINTENANCE (OUT)" },
540	/* A4       O          REPORT KEY */
541	{ 0xA4,	R, "REPORT KEY" },
542	/* A5   O  O OM        MOVE MEDIUM */
543	{ 0xA5,	T | W | O | M, "MOVE MEDIUM" },
544	/* A5       O          PLAY AUDIO(12) */
545	{ 0xA5,	R, "PLAY AUDIO(12)" },
546	/* A6         O        EXCHANGE MEDIUM */
547	{ 0xA6,	M, "EXCHANGE MEDIUM" },
548	/* A6       O          LOAD/UNLOAD C/DVD */
549	{ 0xA6,	R, "LOAD/UNLOAD C/DVD" },
550	/* A7  ZZ  O O         MOVE MEDIUM ATTACHED */
551	{ 0xA7,	D | T | W | O, "MOVE MEDIUM ATTACHED" },
552	/* A7       O          SET READ AHEAD */
553	{ 0xA7,	R, "SET READ AHEAD" },
554	/* A8  O   OOO         READ(12) */
555	{ 0xA8,	D | W | R | O, "READ(12)" },
556	/* A8                  GET MESSAGE(12) */
557	{ 0xA8, C, "GET MESSAGE(12)" },
558	/* A9              O   SERVICE ACTION OUT(12) */
559	{ 0xA9,	V, "SERVICE ACTION OUT(12)" },
560	/* AA  O   OOO         WRITE(12) */
561	{ 0xAA,	D | W | R | O, "WRITE(12)" },
562	/* AA                  SEND MESSAGE(12) */
563	{ 0xAA, C, "SEND MESSAGE(12)" },
564	/* AB       O      O   SERVICE ACTION IN(12) */
565	{ 0xAB,	R | V, "SERVICE ACTION IN(12)" },
566	/* AC        O         ERASE(12) */
567	{ 0xAC,	O, "ERASE(12)" },
568	/* AC       O          GET PERFORMANCE */
569	{ 0xAC,	R, "GET PERFORMANCE" },
570	/* AD       O          READ DVD STRUCTURE */
571	{ 0xAD,	R, "READ DVD STRUCTURE" },
572	/* AE  O   O O         WRITE AND VERIFY(12) */
573	{ 0xAE,	D | W | O, "WRITE AND VERIFY(12)" },
574	/* AF  O   OZO         VERIFY(12) */
575	{ 0xAF,	D | W | R | O, "VERIFY(12)" },
576	/* B0      ZZZ         SEARCH DATA HIGH(12) */
577	{ 0xB0,	W | R | O, "SEARCH DATA HIGH(12)" },
578	/* B1      ZZZ         SEARCH DATA EQUAL(12) */
579	{ 0xB1,	W | R | O, "SEARCH DATA EQUAL(12)" },
580	/* B2      ZZZ         SEARCH DATA LOW(12) */
581	{ 0xB2,	W | R | O, "SEARCH DATA LOW(12)" },
582	/* B3  Z   OZO         SET LIMITS(12) */
583	{ 0xB3,	D | W | R | O, "SET LIMITS(12)" },
584	/* B4  ZZ  OZO         READ ELEMENT STATUS ATTACHED */
585	{ 0xB4,	D | T | W | R | O, "READ ELEMENT STATUS ATTACHED" },
586	/* B5  OO   O      O   SECURITY PROTOCOL OUT */
587	{ 0xB5,	D | T | R | V, "SECURITY PROTOCOL OUT" },
588	/* B5         O        REQUEST VOLUME ELEMENT ADDRESS */
589	{ 0xB5,	M, "REQUEST VOLUME ELEMENT ADDRESS" },
590	/* B6         O        SEND VOLUME TAG */
591	{ 0xB6,	M, "SEND VOLUME TAG" },
592	/* B6       O          SET STREAMING */
593	{ 0xB6,	R, "SET STREAMING" },
594	/* B7  O     O         READ DEFECT DATA(12) */
595	{ 0xB7,	D | O, "READ DEFECT DATA(12)" },
596	/* B8   O  OZOM        READ ELEMENT STATUS */
597	{ 0xB8,	T | W | R | O | M, "READ ELEMENT STATUS" },
598	/* B9       O          READ CD MSF */
599	{ 0xB9,	R, "READ CD MSF" },
600	/* BA  O   O OOMO      REDUNDANCY GROUP (IN) */
601	{ 0xBA,	D | W | O | M | A | E, "REDUNDANCY GROUP (IN)" },
602	/* BA       O          SCAN */
603	{ 0xBA,	R, "SCAN" },
604	/* BB  O   O OOOO      REDUNDANCY GROUP (OUT) */
605	{ 0xBB,	D | W | O | M | A | E, "REDUNDANCY GROUP (OUT)" },
606	/* BB       O          SET CD SPEED */
607	{ 0xBB,	R, "SET CD SPEED" },
608	/* BC  O   O OOMO      SPARE (IN) */
609	{ 0xBC,	D | W | O | M | A | E, "SPARE (IN)" },
610	/* BD  O   O OOOO      SPARE (OUT) */
611	{ 0xBD,	D | W | O | M | A | E, "SPARE (OUT)" },
612	/* BD       O          MECHANISM STATUS */
613	{ 0xBD,	R, "MECHANISM STATUS" },
614	/* BE  O   O OOMO      VOLUME SET (IN) */
615	{ 0xBE,	D | W | O | M | A | E, "VOLUME SET (IN)" },
616	/* BE       O          READ CD */
617	{ 0xBE,	R, "READ CD" },
618	/* BF  O   O OOOO      VOLUME SET (OUT) */
619	{ 0xBF,	D | W | O | M | A | E, "VOLUME SET (OUT)" },
620	/* BF       O          SEND DVD STRUCTURE */
621	{ 0xBF,	R, "SEND DVD STRUCTURE" }
622};
623
624const char *
625scsi_op_desc(u_int16_t opcode, struct scsi_inquiry_data *inq_data)
626{
627	caddr_t match;
628	int i, j;
629	u_int32_t opmask;
630	u_int16_t pd_type;
631	int       num_ops[2];
632	struct op_table_entry *table[2];
633	int num_tables;
634
635	/*
636	 * If we've got inquiry data, use it to determine what type of
637	 * device we're dealing with here.  Otherwise, assume direct
638	 * access.
639	 */
640	if (inq_data == NULL) {
641		pd_type = T_DIRECT;
642		match = NULL;
643	} else {
644		pd_type = SID_TYPE(inq_data);
645
646		match = cam_quirkmatch((caddr_t)inq_data,
647				       (caddr_t)scsi_op_quirk_table,
648				       sizeof(scsi_op_quirk_table)/
649				       sizeof(*scsi_op_quirk_table),
650				       sizeof(*scsi_op_quirk_table),
651				       scsi_inquiry_match);
652	}
653
654	if (match != NULL) {
655		table[0] = ((struct scsi_op_quirk_entry *)match)->op_table;
656		num_ops[0] = ((struct scsi_op_quirk_entry *)match)->num_ops;
657		table[1] = scsi_op_codes;
658		num_ops[1] = sizeof(scsi_op_codes)/sizeof(scsi_op_codes[0]);
659		num_tables = 2;
660	} else {
661		/*
662		 * If this is true, we have a vendor specific opcode that
663		 * wasn't covered in the quirk table.
664		 */
665		if ((opcode > 0xBF) || ((opcode > 0x5F) && (opcode < 0x80)))
666			return("Vendor Specific Command");
667
668		table[0] = scsi_op_codes;
669		num_ops[0] = sizeof(scsi_op_codes)/sizeof(scsi_op_codes[0]);
670		num_tables = 1;
671	}
672
673	/* RBC is 'Simplified' Direct Access Device */
674	if (pd_type == T_RBC)
675		pd_type = T_DIRECT;
676
677	/* Map NODEVICE to Direct Access Device to handle REPORT LUNS, etc. */
678	if (pd_type == T_NODEVICE)
679		pd_type = T_DIRECT;
680
681	opmask = 1 << pd_type;
682
683	for (j = 0; j < num_tables; j++) {
684		for (i = 0;i < num_ops[j] && table[j][i].opcode <= opcode; i++){
685			if ((table[j][i].opcode == opcode)
686			 && ((table[j][i].opmask & opmask) != 0))
687				return(table[j][i].desc);
688		}
689	}
690
691	/*
692	 * If we can't find a match for the command in the table, we just
693	 * assume it's a vendor specifc command.
694	 */
695	return("Vendor Specific Command");
696
697}
698
699#else /* SCSI_NO_OP_STRINGS */
700
701const char *
702scsi_op_desc(u_int16_t opcode, struct scsi_inquiry_data *inq_data)
703{
704	return("");
705}
706
707#endif
708
709
710#if !defined(SCSI_NO_SENSE_STRINGS)
711#define SST(asc, ascq, action, desc) \
712	asc, ascq, action, desc
713#else
714const char empty_string[] = "";
715
716#define SST(asc, ascq, action, desc) \
717	asc, ascq, action, empty_string
718#endif
719
720const struct sense_key_table_entry sense_key_table[] =
721{
722	{ SSD_KEY_NO_SENSE, SS_NOP, "NO SENSE" },
723	{ SSD_KEY_RECOVERED_ERROR, SS_NOP|SSQ_PRINT_SENSE, "RECOVERED ERROR" },
724	{ SSD_KEY_NOT_READY, SS_RDEF, "NOT READY" },
725	{ SSD_KEY_MEDIUM_ERROR, SS_RDEF, "MEDIUM ERROR" },
726	{ SSD_KEY_HARDWARE_ERROR, SS_RDEF, "HARDWARE FAILURE" },
727	{ SSD_KEY_ILLEGAL_REQUEST, SS_FATAL|EINVAL, "ILLEGAL REQUEST" },
728	{ SSD_KEY_UNIT_ATTENTION, SS_FATAL|ENXIO, "UNIT ATTENTION" },
729	{ SSD_KEY_DATA_PROTECT, SS_FATAL|EACCES, "DATA PROTECT" },
730	{ SSD_KEY_BLANK_CHECK, SS_FATAL|ENOSPC, "BLANK CHECK" },
731	{ SSD_KEY_Vendor_Specific, SS_FATAL|EIO, "Vendor Specific" },
732	{ SSD_KEY_COPY_ABORTED, SS_FATAL|EIO, "COPY ABORTED" },
733	{ SSD_KEY_ABORTED_COMMAND, SS_RDEF, "ABORTED COMMAND" },
734	{ SSD_KEY_EQUAL, SS_NOP, "EQUAL" },
735	{ SSD_KEY_VOLUME_OVERFLOW, SS_FATAL|EIO, "VOLUME OVERFLOW" },
736	{ SSD_KEY_MISCOMPARE, SS_NOP, "MISCOMPARE" },
737	{ SSD_KEY_COMPLETED, SS_NOP, "COMPLETED" }
738};
739
740const int sense_key_table_size =
741    sizeof(sense_key_table)/sizeof(sense_key_table[0]);
742
743static struct asc_table_entry quantum_fireball_entries[] = {
744	{ SST(0x04, 0x0b, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
745	     "Logical unit not ready, initializing cmd. required") }
746};
747
748static struct asc_table_entry sony_mo_entries[] = {
749	{ SST(0x04, 0x00, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
750	     "Logical unit not ready, cause not reportable") }
751};
752
753static struct asc_table_entry hgst_entries[] = {
754	{ SST(0x04, 0xF0, SS_RDEF,
755	    "Vendor Unique - Logical Unit Not Ready") },
756	{ SST(0x0A, 0x01, SS_RDEF,
757	    "Unrecovered Super Certification Log Write Error") },
758	{ SST(0x0A, 0x02, SS_RDEF,
759	    "Unrecovered Super Certification Log Read Error") },
760	{ SST(0x15, 0x03, SS_RDEF,
761	    "Unrecovered Sector Error") },
762	{ SST(0x3E, 0x04, SS_RDEF,
763	    "Unrecovered Self-Test Hard-Cache Test Fail") },
764	{ SST(0x3E, 0x05, SS_RDEF,
765	    "Unrecovered Self-Test OTF-Cache Fail") },
766	{ SST(0x40, 0x00, SS_RDEF,
767	    "Unrecovered SAT No Buffer Overflow Error") },
768	{ SST(0x40, 0x01, SS_RDEF,
769	    "Unrecovered SAT Buffer Overflow Error") },
770	{ SST(0x40, 0x02, SS_RDEF,
771	    "Unrecovered SAT No Buffer Overflow With ECS Fault") },
772	{ SST(0x40, 0x03, SS_RDEF,
773	    "Unrecovered SAT Buffer Overflow With ECS Fault") },
774	{ SST(0x40, 0x81, SS_RDEF,
775	    "DRAM Failure") },
776	{ SST(0x44, 0x0B, SS_RDEF,
777	    "Vendor Unique - Internal Target Failure") },
778	{ SST(0x44, 0xF2, SS_RDEF,
779	    "Vendor Unique - Internal Target Failure") },
780	{ SST(0x44, 0xF6, SS_RDEF,
781	    "Vendor Unique - Internal Target Failure") },
782	{ SST(0x44, 0xF9, SS_RDEF,
783	    "Vendor Unique - Internal Target Failure") },
784	{ SST(0x44, 0xFA, SS_RDEF,
785	    "Vendor Unique - Internal Target Failure") },
786	{ SST(0x5D, 0x22, SS_RDEF,
787	    "Extreme Over-Temperature Warning") },
788	{ SST(0x5D, 0x50, SS_RDEF,
789	    "Load/Unload cycle Count Warning") },
790	{ SST(0x81, 0x00, SS_RDEF,
791	    "Vendor Unique - Internal Logic Error") },
792	{ SST(0x85, 0x00, SS_RDEF,
793	    "Vendor Unique - Internal Key Seed Error") },
794};
795
796static struct asc_table_entry seagate_entries[] = {
797	{ SST(0x04, 0xF0, SS_RDEF,
798	    "Logical Unit Not Ready, super certify in Progress") },
799	{ SST(0x08, 0x86, SS_RDEF,
800	    "Write Fault Data Corruption") },
801	{ SST(0x09, 0x0D, SS_RDEF,
802	    "Tracking Failure") },
803	{ SST(0x09, 0x0E, SS_RDEF,
804	    "ETF Failure") },
805	{ SST(0x0B, 0x5D, SS_RDEF,
806	    "Pre-SMART Warning") },
807	{ SST(0x0B, 0x85, SS_RDEF,
808	    "5V Voltage Warning") },
809	{ SST(0x0B, 0x8C, SS_RDEF,
810	    "12V Voltage Warning") },
811	{ SST(0x0C, 0xFF, SS_RDEF,
812	    "Write Error - Too many error recovery revs") },
813	{ SST(0x11, 0xFF, SS_RDEF,
814	    "Unrecovered Read Error - Too many error recovery revs") },
815	{ SST(0x19, 0x0E, SS_RDEF,
816	    "Fewer than 1/2 defect list copies") },
817	{ SST(0x20, 0xF3, SS_RDEF,
818	    "Illegal CDB linked to skip mask cmd") },
819	{ SST(0x24, 0xF0, SS_RDEF,
820	    "Illegal byte in CDB, LBA not matching") },
821	{ SST(0x24, 0xF1, SS_RDEF,
822	    "Illegal byte in CDB, LEN not matching") },
823	{ SST(0x24, 0xF2, SS_RDEF,
824	    "Mask not matching transfer length") },
825	{ SST(0x24, 0xF3, SS_RDEF,
826	    "Drive formatted without plist") },
827	{ SST(0x26, 0x95, SS_RDEF,
828	    "Invalid Field Parameter - CAP File") },
829	{ SST(0x26, 0x96, SS_RDEF,
830	    "Invalid Field Parameter - RAP File") },
831	{ SST(0x26, 0x97, SS_RDEF,
832	    "Invalid Field Parameter - TMS Firmware Tag") },
833	{ SST(0x26, 0x98, SS_RDEF,
834	    "Invalid Field Parameter - Check Sum") },
835	{ SST(0x26, 0x99, SS_RDEF,
836	    "Invalid Field Parameter - Firmware Tag") },
837	{ SST(0x29, 0x08, SS_RDEF,
838	    "Write Log Dump data") },
839	{ SST(0x29, 0x09, SS_RDEF,
840	    "Write Log Dump data") },
841	{ SST(0x29, 0x0A, SS_RDEF,
842	    "Reserved disk space") },
843	{ SST(0x29, 0x0B, SS_RDEF,
844	    "SDBP") },
845	{ SST(0x29, 0x0C, SS_RDEF,
846	    "SDBP") },
847	{ SST(0x31, 0x91, SS_RDEF,
848	    "Format Corrupted World Wide Name (WWN) is Invalid") },
849	{ SST(0x32, 0x03, SS_RDEF,
850	    "Defect List - Length exceeds Command Allocated Length") },
851	{ SST(0x33, 0x00, SS_RDEF,
852	    "Flash not ready for access") },
853	{ SST(0x3F, 0x70, SS_RDEF,
854	    "Invalid RAP block") },
855	{ SST(0x3F, 0x71, SS_RDEF,
856	    "RAP/ETF mismatch") },
857	{ SST(0x3F, 0x90, SS_RDEF,
858	    "Invalid CAP block") },
859	{ SST(0x3F, 0x91, SS_RDEF,
860	    "World Wide Name (WWN) Mismatch") },
861	{ SST(0x40, 0x01, SS_RDEF,
862	    "DRAM Parity Error") },
863	{ SST(0x40, 0x02, SS_RDEF,
864	    "DRAM Parity Error") },
865	{ SST(0x42, 0x0A, SS_RDEF,
866	    "Loopback Test") },
867	{ SST(0x42, 0x0B, SS_RDEF,
868	    "Loopback Test") },
869	{ SST(0x44, 0xF2, SS_RDEF,
870	    "Compare error during data integrity check") },
871	{ SST(0x44, 0xF6, SS_RDEF,
872	    "Unrecoverable error during data integrity check") },
873	{ SST(0x47, 0x80, SS_RDEF,
874	    "Fibre Channel Sequence Error") },
875	{ SST(0x4E, 0x01, SS_RDEF,
876	    "Information Unit Too Short") },
877	{ SST(0x80, 0x00, SS_RDEF,
878	    "General Firmware Error / Command Timeout") },
879	{ SST(0x80, 0x01, SS_RDEF,
880	    "Command Timeout") },
881	{ SST(0x80, 0x02, SS_RDEF,
882	    "Command Timeout") },
883	{ SST(0x80, 0x80, SS_RDEF,
884	    "FC FIFO Error During Read Transfer") },
885	{ SST(0x80, 0x81, SS_RDEF,
886	    "FC FIFO Error During Write Transfer") },
887	{ SST(0x80, 0x82, SS_RDEF,
888	    "DISC FIFO Error During Read Transfer") },
889	{ SST(0x80, 0x83, SS_RDEF,
890	    "DISC FIFO Error During Write Transfer") },
891	{ SST(0x80, 0x84, SS_RDEF,
892	    "LBA Seeded LRC Error on Read") },
893	{ SST(0x80, 0x85, SS_RDEF,
894	    "LBA Seeded LRC Error on Write") },
895	{ SST(0x80, 0x86, SS_RDEF,
896	    "IOEDC Error on Read") },
897	{ SST(0x80, 0x87, SS_RDEF,
898	    "IOEDC Error on Write") },
899	{ SST(0x80, 0x88, SS_RDEF,
900	    "Host Parity Check Failed") },
901	{ SST(0x80, 0x89, SS_RDEF,
902	    "IOEDC error on read detected by formatter") },
903	{ SST(0x80, 0x8A, SS_RDEF,
904	    "Host Parity Errors / Host FIFO Initialization Failed") },
905	{ SST(0x80, 0x8B, SS_RDEF,
906	    "Host Parity Errors") },
907	{ SST(0x80, 0x8C, SS_RDEF,
908	    "Host Parity Errors") },
909	{ SST(0x80, 0x8D, SS_RDEF,
910	    "Host Parity Errors") },
911	{ SST(0x81, 0x00, SS_RDEF,
912	    "LA Check Failed") },
913	{ SST(0x82, 0x00, SS_RDEF,
914	    "Internal client detected insufficient buffer") },
915	{ SST(0x84, 0x00, SS_RDEF,
916	    "Scheduled Diagnostic And Repair") },
917};
918
919static struct scsi_sense_quirk_entry sense_quirk_table[] = {
920	{
921		/*
922		 * XXX The Quantum Fireball ST and SE like to return 0x04 0x0b
923		 * when they really should return 0x04 0x02.
924		 */
925		{T_DIRECT, SIP_MEDIA_FIXED, "QUANTUM", "FIREBALL S*", "*"},
926		/*num_sense_keys*/0,
927		sizeof(quantum_fireball_entries)/sizeof(struct asc_table_entry),
928		/*sense key entries*/NULL,
929		quantum_fireball_entries
930	},
931	{
932		/*
933		 * This Sony MO drive likes to return 0x04, 0x00 when it
934		 * isn't spun up.
935		 */
936		{T_DIRECT, SIP_MEDIA_REMOVABLE, "SONY", "SMO-*", "*"},
937		/*num_sense_keys*/0,
938		sizeof(sony_mo_entries)/sizeof(struct asc_table_entry),
939		/*sense key entries*/NULL,
940		sony_mo_entries
941	},
942	{
943		/*
944		 * HGST vendor-specific error codes
945		 */
946		{T_DIRECT, SIP_MEDIA_FIXED, "HGST", "*", "*"},
947		/*num_sense_keys*/0,
948		sizeof(hgst_entries)/sizeof(struct asc_table_entry),
949		/*sense key entries*/NULL,
950		hgst_entries
951	},
952	{
953		/*
954		 * SEAGATE vendor-specific error codes
955		 */
956		{T_DIRECT, SIP_MEDIA_FIXED, "SEAGATE", "*", "*"},
957		/*num_sense_keys*/0,
958		sizeof(seagate_entries)/sizeof(struct asc_table_entry),
959		/*sense key entries*/NULL,
960		seagate_entries
961	}
962};
963
964const int sense_quirk_table_size =
965    sizeof(sense_quirk_table)/sizeof(sense_quirk_table[0]);
966
967static struct asc_table_entry asc_table[] = {
968	/*
969	 * From: http://www.t10.org/lists/asc-num.txt
970	 * Modifications by Jung-uk Kim (jkim@FreeBSD.org)
971	 */
972	/*
973	 * File: ASC-NUM.TXT
974	 *
975	 * SCSI ASC/ASCQ Assignments
976	 * Numeric Sorted Listing
977	 * as of  8/12/15
978	 *
979	 * D - DIRECT ACCESS DEVICE (SBC-2)                   device column key
980	 * .T - SEQUENTIAL ACCESS DEVICE (SSC)               -------------------
981	 * . L - PRINTER DEVICE (SSC)                           blank = reserved
982	 * .  P - PROCESSOR DEVICE (SPC)                     not blank = allowed
983	 * .  .W - WRITE ONCE READ MULTIPLE DEVICE (SBC-2)
984	 * .  . R - CD DEVICE (MMC)
985	 * .  .  O - OPTICAL MEMORY DEVICE (SBC-2)
986	 * .  .  .M - MEDIA CHANGER DEVICE (SMC)
987	 * .  .  . A - STORAGE ARRAY DEVICE (SCC)
988	 * .  .  .  E - ENCLOSURE SERVICES DEVICE (SES)
989	 * .  .  .  .B - SIMPLIFIED DIRECT-ACCESS DEVICE (RBC)
990	 * .  .  .  . K - OPTICAL CARD READER/WRITER DEVICE (OCRW)
991	 * .  .  .  .  V - AUTOMATION/DRIVE INTERFACE (ADC)
992	 * .  .  .  .  .F - OBJECT-BASED STORAGE (OSD)
993	 * DTLPWROMAEBKVF
994	 * ASC      ASCQ  Action
995	 * Description
996	 */
997	/* DTLPWROMAEBKVF */
998	{ SST(0x00, 0x00, SS_NOP,
999	    "No additional sense information") },
1000	/*  T             */
1001	{ SST(0x00, 0x01, SS_RDEF,
1002	    "Filemark detected") },
1003	/*  T             */
1004	{ SST(0x00, 0x02, SS_RDEF,
1005	    "End-of-partition/medium detected") },
1006	/*  T             */
1007	{ SST(0x00, 0x03, SS_RDEF,
1008	    "Setmark detected") },
1009	/*  T             */
1010	{ SST(0x00, 0x04, SS_RDEF,
1011	    "Beginning-of-partition/medium detected") },
1012	/*  TL            */
1013	{ SST(0x00, 0x05, SS_RDEF,
1014	    "End-of-data detected") },
1015	/* DTLPWROMAEBKVF */
1016	{ SST(0x00, 0x06, SS_RDEF,
1017	    "I/O process terminated") },
1018	/*  T             */
1019	{ SST(0x00, 0x07, SS_RDEF,	/* XXX TBD */
1020	    "Programmable early warning detected") },
1021	/*      R         */
1022	{ SST(0x00, 0x11, SS_FATAL | EBUSY,
1023	    "Audio play operation in progress") },
1024	/*      R         */
1025	{ SST(0x00, 0x12, SS_NOP,
1026	    "Audio play operation paused") },
1027	/*      R         */
1028	{ SST(0x00, 0x13, SS_NOP,
1029	    "Audio play operation successfully completed") },
1030	/*      R         */
1031	{ SST(0x00, 0x14, SS_RDEF,
1032	    "Audio play operation stopped due to error") },
1033	/*      R         */
1034	{ SST(0x00, 0x15, SS_NOP,
1035	    "No current audio status to return") },
1036	/* DTLPWROMAEBKVF */
1037	{ SST(0x00, 0x16, SS_FATAL | EBUSY,
1038	    "Operation in progress") },
1039	/* DTL WROMAEBKVF */
1040	{ SST(0x00, 0x17, SS_RDEF,
1041	    "Cleaning requested") },
1042	/*  T             */
1043	{ SST(0x00, 0x18, SS_RDEF,	/* XXX TBD */
1044	    "Erase operation in progress") },
1045	/*  T             */
1046	{ SST(0x00, 0x19, SS_RDEF,	/* XXX TBD */
1047	    "Locate operation in progress") },
1048	/*  T             */
1049	{ SST(0x00, 0x1A, SS_RDEF,	/* XXX TBD */
1050	    "Rewind operation in progress") },
1051	/*  T             */
1052	{ SST(0x00, 0x1B, SS_RDEF,	/* XXX TBD */
1053	    "Set capacity operation in progress") },
1054	/*  T             */
1055	{ SST(0x00, 0x1C, SS_RDEF,	/* XXX TBD */
1056	    "Verify operation in progress") },
1057	/* DT        B    */
1058	{ SST(0x00, 0x1D, SS_NOP,
1059	    "ATA pass through information available") },
1060	/* DT   R MAEBKV  */
1061	{ SST(0x00, 0x1E, SS_RDEF,	/* XXX TBD */
1062	    "Conflicting SA creation request") },
1063	/* DT        B    */
1064	{ SST(0x00, 0x1F, SS_RDEF,	/* XXX TBD */
1065	    "Logical unit transitioning to another power condition") },
1066	/* DT P      B    */
1067	{ SST(0x00, 0x20, SS_NOP,
1068	    "Extended copy information available") },
1069	/* D              */
1070	{ SST(0x00, 0x21, SS_RDEF,	/* XXX TBD */
1071	    "Atomic command aborted due to ACA") },
1072	/* D   W O   BK   */
1073	{ SST(0x01, 0x00, SS_RDEF,
1074	    "No index/sector signal") },
1075	/* D   WRO   BK   */
1076	{ SST(0x02, 0x00, SS_RDEF,
1077	    "No seek complete") },
1078	/* DTL W O   BK   */
1079	{ SST(0x03, 0x00, SS_RDEF,
1080	    "Peripheral device write fault") },
1081	/*  T             */
1082	{ SST(0x03, 0x01, SS_RDEF,
1083	    "No write current") },
1084	/*  T             */
1085	{ SST(0x03, 0x02, SS_RDEF,
1086	    "Excessive write errors") },
1087	/* DTLPWROMAEBKVF */
1088	{ SST(0x04, 0x00, SS_RDEF,
1089	    "Logical unit not ready, cause not reportable") },
1090	/* DTLPWROMAEBKVF */
1091	{ SST(0x04, 0x01, SS_WAIT | EBUSY,
1092	    "Logical unit is in process of becoming ready") },
1093	/* DTLPWROMAEBKVF */
1094	{ SST(0x04, 0x02, SS_START | SSQ_DECREMENT_COUNT | ENXIO,
1095	    "Logical unit not ready, initializing command required") },
1096	/* DTLPWROMAEBKVF */
1097	{ SST(0x04, 0x03, SS_FATAL | ENXIO,
1098	    "Logical unit not ready, manual intervention required") },
1099	/* DTL  RO   B    */
1100	{ SST(0x04, 0x04, SS_FATAL | EBUSY,
1101	    "Logical unit not ready, format in progress") },
1102	/* DT  W O A BK F */
1103	{ SST(0x04, 0x05, SS_FATAL | EBUSY,
1104	    "Logical unit not ready, rebuild in progress") },
1105	/* DT  W O A BK   */
1106	{ SST(0x04, 0x06, SS_FATAL | EBUSY,
1107	    "Logical unit not ready, recalculation in progress") },
1108	/* DTLPWROMAEBKVF */
1109	{ SST(0x04, 0x07, SS_FATAL | EBUSY,
1110	    "Logical unit not ready, operation in progress") },
1111	/*      R         */
1112	{ SST(0x04, 0x08, SS_FATAL | EBUSY,
1113	    "Logical unit not ready, long write in progress") },
1114	/* DTLPWROMAEBKVF */
1115	{ SST(0x04, 0x09, SS_RDEF,	/* XXX TBD */
1116	    "Logical unit not ready, self-test in progress") },
1117	/* DTLPWROMAEBKVF */
1118	{ SST(0x04, 0x0A, SS_WAIT | ENXIO,
1119	    "Logical unit not accessible, asymmetric access state transition")},
1120	/* DTLPWROMAEBKVF */
1121	{ SST(0x04, 0x0B, SS_FATAL | ENXIO,
1122	    "Logical unit not accessible, target port in standby state") },
1123	/* DTLPWROMAEBKVF */
1124	{ SST(0x04, 0x0C, SS_FATAL | ENXIO,
1125	    "Logical unit not accessible, target port in unavailable state") },
1126	/*              F */
1127	{ SST(0x04, 0x0D, SS_RDEF,	/* XXX TBD */
1128	    "Logical unit not ready, structure check required") },
1129	/* DTL WR MAEBKVF */
1130	{ SST(0x04, 0x0E, SS_RDEF,	/* XXX TBD */
1131	    "Logical unit not ready, security session in progress") },
1132	/* DT  WROM  B    */
1133	{ SST(0x04, 0x10, SS_RDEF,	/* XXX TBD */
1134	    "Logical unit not ready, auxiliary memory not accessible") },
1135	/* DT  WRO AEB VF */
1136	{ SST(0x04, 0x11, SS_WAIT | EBUSY,
1137	    "Logical unit not ready, notify (enable spinup) required") },
1138	/*        M    V  */
1139	{ SST(0x04, 0x12, SS_RDEF,	/* XXX TBD */
1140	    "Logical unit not ready, offline") },
1141	/* DT   R MAEBKV  */
1142	{ SST(0x04, 0x13, SS_RDEF,	/* XXX TBD */
1143	    "Logical unit not ready, SA creation in progress") },
1144	/* D         B    */
1145	{ SST(0x04, 0x14, SS_RDEF,	/* XXX TBD */
1146	    "Logical unit not ready, space allocation in progress") },
1147	/*        M       */
1148	{ SST(0x04, 0x15, SS_RDEF,	/* XXX TBD */
1149	    "Logical unit not ready, robotics disabled") },
1150	/*        M       */
1151	{ SST(0x04, 0x16, SS_RDEF,	/* XXX TBD */
1152	    "Logical unit not ready, configuration required") },
1153	/*        M       */
1154	{ SST(0x04, 0x17, SS_RDEF,	/* XXX TBD */
1155	    "Logical unit not ready, calibration required") },
1156	/*        M       */
1157	{ SST(0x04, 0x18, SS_RDEF,	/* XXX TBD */
1158	    "Logical unit not ready, a door is open") },
1159	/*        M       */
1160	{ SST(0x04, 0x19, SS_RDEF,	/* XXX TBD */
1161	    "Logical unit not ready, operating in sequential mode") },
1162	/* DT        B    */
1163	{ SST(0x04, 0x1A, SS_RDEF,	/* XXX TBD */
1164	    "Logical unit not ready, START/STOP UNIT command in progress") },
1165	/* D         B    */
1166	{ SST(0x04, 0x1B, SS_RDEF,	/* XXX TBD */
1167	    "Logical unit not ready, sanitize in progress") },
1168	/* DT     MAEB    */
1169	{ SST(0x04, 0x1C, SS_RDEF,	/* XXX TBD */
1170	    "Logical unit not ready, additional power use not yet granted") },
1171	/* D              */
1172	{ SST(0x04, 0x1D, SS_RDEF,	/* XXX TBD */
1173	    "Logical unit not ready, configuration in progress") },
1174	/* D              */
1175	{ SST(0x04, 0x1E, SS_FATAL | ENXIO,
1176	    "Logical unit not ready, microcode activation required") },
1177	/* DTLPWROMAEBKVF */
1178	{ SST(0x04, 0x1F, SS_FATAL | ENXIO,
1179	    "Logical unit not ready, microcode download required") },
1180	/* DTLPWROMAEBKVF */
1181	{ SST(0x04, 0x20, SS_RDEF,	/* XXX TBD */
1182	    "Logical unit not ready, logical unit reset required") },
1183	/* DTLPWROMAEBKVF */
1184	{ SST(0x04, 0x21, SS_RDEF,	/* XXX TBD */
1185	    "Logical unit not ready, hard reset required") },
1186	/* DTLPWROMAEBKVF */
1187	{ SST(0x04, 0x22, SS_RDEF,	/* XXX TBD */
1188	    "Logical unit not ready, power cycle required") },
1189	/* DTL WROMAEBKVF */
1190	{ SST(0x05, 0x00, SS_RDEF,
1191	    "Logical unit does not respond to selection") },
1192	/* D   WROM  BK   */
1193	{ SST(0x06, 0x00, SS_RDEF,
1194	    "No reference position found") },
1195	/* DTL WROM  BK   */
1196	{ SST(0x07, 0x00, SS_RDEF,
1197	    "Multiple peripheral devices selected") },
1198	/* DTL WROMAEBKVF */
1199	{ SST(0x08, 0x00, SS_RDEF,
1200	    "Logical unit communication failure") },
1201	/* DTL WROMAEBKVF */
1202	{ SST(0x08, 0x01, SS_RDEF,
1203	    "Logical unit communication time-out") },
1204	/* DTL WROMAEBKVF */
1205	{ SST(0x08, 0x02, SS_RDEF,
1206	    "Logical unit communication parity error") },
1207	/* DT   ROM  BK   */
1208	{ SST(0x08, 0x03, SS_RDEF,
1209	    "Logical unit communication CRC error (Ultra-DMA/32)") },
1210	/* DTLPWRO    K   */
1211	{ SST(0x08, 0x04, SS_RDEF,	/* XXX TBD */
1212	    "Unreachable copy target") },
1213	/* DT  WRO   B    */
1214	{ SST(0x09, 0x00, SS_RDEF,
1215	    "Track following error") },
1216	/*     WRO    K   */
1217	{ SST(0x09, 0x01, SS_RDEF,
1218	    "Tracking servo failure") },
1219	/*     WRO    K   */
1220	{ SST(0x09, 0x02, SS_RDEF,
1221	    "Focus servo failure") },
1222	/*     WRO        */
1223	{ SST(0x09, 0x03, SS_RDEF,
1224	    "Spindle servo failure") },
1225	/* DT  WRO   B    */
1226	{ SST(0x09, 0x04, SS_RDEF,
1227	    "Head select fault") },
1228	/* DT   RO   B    */
1229	{ SST(0x09, 0x05, SS_RDEF,
1230	    "Vibration induced tracking error") },
1231	/* DTLPWROMAEBKVF */
1232	{ SST(0x0A, 0x00, SS_FATAL | ENOSPC,
1233	    "Error log overflow") },
1234	/* DTLPWROMAEBKVF */
1235	{ SST(0x0B, 0x00, SS_NOP | SSQ_PRINT_SENSE,
1236	    "Warning") },
1237	/* DTLPWROMAEBKVF */
1238	{ SST(0x0B, 0x01, SS_NOP | SSQ_PRINT_SENSE,
1239	    "Warning - specified temperature exceeded") },
1240	/* DTLPWROMAEBKVF */
1241	{ SST(0x0B, 0x02, SS_NOP | SSQ_PRINT_SENSE,
1242	    "Warning - enclosure degraded") },
1243	/* DTLPWROMAEBKVF */
1244	{ SST(0x0B, 0x03, SS_NOP | SSQ_PRINT_SENSE,
1245	    "Warning - background self-test failed") },
1246	/* DTLPWRO AEBKVF */
1247	{ SST(0x0B, 0x04, SS_NOP | SSQ_PRINT_SENSE,
1248	    "Warning - background pre-scan detected medium error") },
1249	/* DTLPWRO AEBKVF */
1250	{ SST(0x0B, 0x05, SS_NOP | SSQ_PRINT_SENSE,
1251	    "Warning - background medium scan detected medium error") },
1252	/* DTLPWROMAEBKVF */
1253	{ SST(0x0B, 0x06, SS_NOP | SSQ_PRINT_SENSE,
1254	    "Warning - non-volatile cache now volatile") },
1255	/* DTLPWROMAEBKVF */
1256	{ SST(0x0B, 0x07, SS_NOP | SSQ_PRINT_SENSE,
1257	    "Warning - degraded power to non-volatile cache") },
1258	/* DTLPWROMAEBKVF */
1259	{ SST(0x0B, 0x08, SS_NOP | SSQ_PRINT_SENSE,
1260	    "Warning - power loss expected") },
1261	/* D              */
1262	{ SST(0x0B, 0x09, SS_NOP | SSQ_PRINT_SENSE,
1263	    "Warning - device statistics notification available") },
1264	/* DTLPWROMAEBKVF */
1265	{ SST(0x0B, 0x0A, SS_NOP | SSQ_PRINT_SENSE,
1266	    "Warning - High critical temperature limit exceeded") },
1267	/* DTLPWROMAEBKVF */
1268	{ SST(0x0B, 0x0B, SS_NOP | SSQ_PRINT_SENSE,
1269	    "Warning - Low critical temperature limit exceeded") },
1270	/* DTLPWROMAEBKVF */
1271	{ SST(0x0B, 0x0C, SS_NOP | SSQ_PRINT_SENSE,
1272	    "Warning - High operating temperature limit exceeded") },
1273	/* DTLPWROMAEBKVF */
1274	{ SST(0x0B, 0x0D, SS_NOP | SSQ_PRINT_SENSE,
1275	    "Warning - Low operating temperature limit exceeded") },
1276	/* DTLPWROMAEBKVF */
1277	{ SST(0x0B, 0x0E, SS_NOP | SSQ_PRINT_SENSE,
1278	    "Warning - High citical humidity limit exceeded") },
1279	/* DTLPWROMAEBKVF */
1280	{ SST(0x0B, 0x0F, SS_NOP | SSQ_PRINT_SENSE,
1281	    "Warning - Low citical humidity limit exceeded") },
1282	/* DTLPWROMAEBKVF */
1283	{ SST(0x0B, 0x10, SS_NOP | SSQ_PRINT_SENSE,
1284	    "Warning - High operating humidity limit exceeded") },
1285	/* DTLPWROMAEBKVF */
1286	{ SST(0x0B, 0x11, SS_NOP | SSQ_PRINT_SENSE,
1287	    "Warning - Low operating humidity limit exceeded") },
1288	/*  T   R         */
1289	{ SST(0x0C, 0x00, SS_RDEF,
1290	    "Write error") },
1291	/*            K   */
1292	{ SST(0x0C, 0x01, SS_NOP | SSQ_PRINT_SENSE,
1293	    "Write error - recovered with auto reallocation") },
1294	/* D   W O   BK   */
1295	{ SST(0x0C, 0x02, SS_RDEF,
1296	    "Write error - auto reallocation failed") },
1297	/* D   W O   BK   */
1298	{ SST(0x0C, 0x03, SS_RDEF,
1299	    "Write error - recommend reassignment") },
1300	/* DT  W O   B    */
1301	{ SST(0x0C, 0x04, SS_RDEF,
1302	    "Compression check miscompare error") },
1303	/* DT  W O   B    */
1304	{ SST(0x0C, 0x05, SS_RDEF,
1305	    "Data expansion occurred during compression") },
1306	/* DT  W O   B    */
1307	{ SST(0x0C, 0x06, SS_RDEF,
1308	    "Block not compressible") },
1309	/*      R         */
1310	{ SST(0x0C, 0x07, SS_RDEF,
1311	    "Write error - recovery needed") },
1312	/*      R         */
1313	{ SST(0x0C, 0x08, SS_RDEF,
1314	    "Write error - recovery failed") },
1315	/*      R         */
1316	{ SST(0x0C, 0x09, SS_RDEF,
1317	    "Write error - loss of streaming") },
1318	/*      R         */
1319	{ SST(0x0C, 0x0A, SS_RDEF,
1320	    "Write error - padding blocks added") },
1321	/* DT  WROM  B    */
1322	{ SST(0x0C, 0x0B, SS_RDEF,	/* XXX TBD */
1323	    "Auxiliary memory write error") },
1324	/* DTLPWRO AEBKVF */
1325	{ SST(0x0C, 0x0C, SS_RDEF,	/* XXX TBD */
1326	    "Write error - unexpected unsolicited data") },
1327	/* DTLPWRO AEBKVF */
1328	{ SST(0x0C, 0x0D, SS_RDEF,	/* XXX TBD */
1329	    "Write error - not enough unsolicited data") },
1330	/* DT  W O   BK   */
1331	{ SST(0x0C, 0x0E, SS_RDEF,	/* XXX TBD */
1332	    "Multiple write errors") },
1333	/*      R         */
1334	{ SST(0x0C, 0x0F, SS_RDEF,	/* XXX TBD */
1335	    "Defects in error window") },
1336	/* D              */
1337	{ SST(0x0C, 0x10, SS_RDEF,	/* XXX TBD */
1338	    "Incomplete multiple atomic write operations") },
1339	/* D              */
1340	{ SST(0x0C, 0x11, SS_RDEF,	/* XXX TBD */
1341	    "Write error - recovery scan needed") },
1342	/* D              */
1343	{ SST(0x0C, 0x12, SS_RDEF,	/* XXX TBD */
1344	    "Write error - insufficient zone resources") },
1345	/* DTLPWRO A  K   */
1346	{ SST(0x0D, 0x00, SS_RDEF,	/* XXX TBD */
1347	    "Error detected by third party temporary initiator") },
1348	/* DTLPWRO A  K   */
1349	{ SST(0x0D, 0x01, SS_RDEF,	/* XXX TBD */
1350	    "Third party device failure") },
1351	/* DTLPWRO A  K   */
1352	{ SST(0x0D, 0x02, SS_RDEF,	/* XXX TBD */
1353	    "Copy target device not reachable") },
1354	/* DTLPWRO A  K   */
1355	{ SST(0x0D, 0x03, SS_RDEF,	/* XXX TBD */
1356	    "Incorrect copy target device type") },
1357	/* DTLPWRO A  K   */
1358	{ SST(0x0D, 0x04, SS_RDEF,	/* XXX TBD */
1359	    "Copy target device data underrun") },
1360	/* DTLPWRO A  K   */
1361	{ SST(0x0D, 0x05, SS_RDEF,	/* XXX TBD */
1362	    "Copy target device data overrun") },
1363	/* DT PWROMAEBK F */
1364	{ SST(0x0E, 0x00, SS_RDEF,	/* XXX TBD */
1365	    "Invalid information unit") },
1366	/* DT PWROMAEBK F */
1367	{ SST(0x0E, 0x01, SS_RDEF,	/* XXX TBD */
1368	    "Information unit too short") },
1369	/* DT PWROMAEBK F */
1370	{ SST(0x0E, 0x02, SS_RDEF,	/* XXX TBD */
1371	    "Information unit too long") },
1372	/* DT P R MAEBK F */
1373	{ SST(0x0E, 0x03, SS_RDEF,	/* XXX TBD */
1374	    "Invalid field in command information unit") },
1375	/* D   W O   BK   */
1376	{ SST(0x10, 0x00, SS_RDEF,
1377	    "ID CRC or ECC error") },
1378	/* DT  W O        */
1379	{ SST(0x10, 0x01, SS_RDEF,	/* XXX TBD */
1380	    "Logical block guard check failed") },
1381	/* DT  W O        */
1382	{ SST(0x10, 0x02, SS_RDEF,	/* XXX TBD */
1383	    "Logical block application tag check failed") },
1384	/* DT  W O        */
1385	{ SST(0x10, 0x03, SS_RDEF,	/* XXX TBD */
1386	    "Logical block reference tag check failed") },
1387	/*  T             */
1388	{ SST(0x10, 0x04, SS_RDEF,	/* XXX TBD */
1389	    "Logical block protection error on recovered buffer data") },
1390	/*  T             */
1391	{ SST(0x10, 0x05, SS_RDEF,	/* XXX TBD */
1392	    "Logical block protection method error") },
1393	/* DT  WRO   BK   */
1394	{ SST(0x11, 0x00, SS_FATAL|EIO,
1395	    "Unrecovered read error") },
1396	/* DT  WRO   BK   */
1397	{ SST(0x11, 0x01, SS_FATAL|EIO,
1398	    "Read retries exhausted") },
1399	/* DT  WRO   BK   */
1400	{ SST(0x11, 0x02, SS_FATAL|EIO,
1401	    "Error too long to correct") },
1402	/* DT  W O   BK   */
1403	{ SST(0x11, 0x03, SS_FATAL|EIO,
1404	    "Multiple read errors") },
1405	/* D   W O   BK   */
1406	{ SST(0x11, 0x04, SS_FATAL|EIO,
1407	    "Unrecovered read error - auto reallocate failed") },
1408	/*     WRO   B    */
1409	{ SST(0x11, 0x05, SS_FATAL|EIO,
1410	    "L-EC uncorrectable error") },
1411	/*     WRO   B    */
1412	{ SST(0x11, 0x06, SS_FATAL|EIO,
1413	    "CIRC unrecovered error") },
1414	/*     W O   B    */
1415	{ SST(0x11, 0x07, SS_RDEF,
1416	    "Data re-synchronization error") },
1417	/*  T             */
1418	{ SST(0x11, 0x08, SS_RDEF,
1419	    "Incomplete block read") },
1420	/*  T             */
1421	{ SST(0x11, 0x09, SS_RDEF,
1422	    "No gap found") },
1423	/* DT    O   BK   */
1424	{ SST(0x11, 0x0A, SS_RDEF,
1425	    "Miscorrected error") },
1426	/* D   W O   BK   */
1427	{ SST(0x11, 0x0B, SS_FATAL|EIO,
1428	    "Unrecovered read error - recommend reassignment") },
1429	/* D   W O   BK   */
1430	{ SST(0x11, 0x0C, SS_FATAL|EIO,
1431	    "Unrecovered read error - recommend rewrite the data") },
1432	/* DT  WRO   B    */
1433	{ SST(0x11, 0x0D, SS_RDEF,
1434	    "De-compression CRC error") },
1435	/* DT  WRO   B    */
1436	{ SST(0x11, 0x0E, SS_RDEF,
1437	    "Cannot decompress using declared algorithm") },
1438	/*      R         */
1439	{ SST(0x11, 0x0F, SS_RDEF,
1440	    "Error reading UPC/EAN number") },
1441	/*      R         */
1442	{ SST(0x11, 0x10, SS_RDEF,
1443	    "Error reading ISRC number") },
1444	/*      R         */
1445	{ SST(0x11, 0x11, SS_RDEF,
1446	    "Read error - loss of streaming") },
1447	/* DT  WROM  B    */
1448	{ SST(0x11, 0x12, SS_RDEF,	/* XXX TBD */
1449	    "Auxiliary memory read error") },
1450	/* DTLPWRO AEBKVF */
1451	{ SST(0x11, 0x13, SS_RDEF,	/* XXX TBD */
1452	    "Read error - failed retransmission request") },
1453	/* D              */
1454	{ SST(0x11, 0x14, SS_RDEF,	/* XXX TBD */
1455	    "Read error - LBA marked bad by application client") },
1456	/* D              */
1457	{ SST(0x11, 0x15, SS_RDEF,	/* XXX TBD */
1458	    "Write after sanitize required") },
1459	/* D   W O   BK   */
1460	{ SST(0x12, 0x00, SS_RDEF,
1461	    "Address mark not found for ID field") },
1462	/* D   W O   BK   */
1463	{ SST(0x13, 0x00, SS_RDEF,
1464	    "Address mark not found for data field") },
1465	/* DTL WRO   BK   */
1466	{ SST(0x14, 0x00, SS_RDEF,
1467	    "Recorded entity not found") },
1468	/* DT  WRO   BK   */
1469	{ SST(0x14, 0x01, SS_RDEF,
1470	    "Record not found") },
1471	/*  T             */
1472	{ SST(0x14, 0x02, SS_RDEF,
1473	    "Filemark or setmark not found") },
1474	/*  T             */
1475	{ SST(0x14, 0x03, SS_RDEF,
1476	    "End-of-data not found") },
1477	/*  T             */
1478	{ SST(0x14, 0x04, SS_RDEF,
1479	    "Block sequence error") },
1480	/* DT  W O   BK   */
1481	{ SST(0x14, 0x05, SS_RDEF,
1482	    "Record not found - recommend reassignment") },
1483	/* DT  W O   BK   */
1484	{ SST(0x14, 0x06, SS_RDEF,
1485	    "Record not found - data auto-reallocated") },
1486	/*  T             */
1487	{ SST(0x14, 0x07, SS_RDEF,	/* XXX TBD */
1488	    "Locate operation failure") },
1489	/* DTL WROM  BK   */
1490	{ SST(0x15, 0x00, SS_RDEF,
1491	    "Random positioning error") },
1492	/* DTL WROM  BK   */
1493	{ SST(0x15, 0x01, SS_RDEF,
1494	    "Mechanical positioning error") },
1495	/* DT  WRO   BK   */
1496	{ SST(0x15, 0x02, SS_RDEF,
1497	    "Positioning error detected by read of medium") },
1498	/* D   W O   BK   */
1499	{ SST(0x16, 0x00, SS_RDEF,
1500	    "Data synchronization mark error") },
1501	/* D   W O   BK   */
1502	{ SST(0x16, 0x01, SS_RDEF,
1503	    "Data sync error - data rewritten") },
1504	/* D   W O   BK   */
1505	{ SST(0x16, 0x02, SS_RDEF,
1506	    "Data sync error - recommend rewrite") },
1507	/* D   W O   BK   */
1508	{ SST(0x16, 0x03, SS_NOP | SSQ_PRINT_SENSE,
1509	    "Data sync error - data auto-reallocated") },
1510	/* D   W O   BK   */
1511	{ SST(0x16, 0x04, SS_RDEF,
1512	    "Data sync error - recommend reassignment") },
1513	/* DT  WRO   BK   */
1514	{ SST(0x17, 0x00, SS_NOP | SSQ_PRINT_SENSE,
1515	    "Recovered data with no error correction applied") },
1516	/* DT  WRO   BK   */
1517	{ SST(0x17, 0x01, SS_NOP | SSQ_PRINT_SENSE,
1518	    "Recovered data with retries") },
1519	/* DT  WRO   BK   */
1520	{ SST(0x17, 0x02, SS_NOP | SSQ_PRINT_SENSE,
1521	    "Recovered data with positive head offset") },
1522	/* DT  WRO   BK   */
1523	{ SST(0x17, 0x03, SS_NOP | SSQ_PRINT_SENSE,
1524	    "Recovered data with negative head offset") },
1525	/*     WRO   B    */
1526	{ SST(0x17, 0x04, SS_NOP | SSQ_PRINT_SENSE,
1527	    "Recovered data with retries and/or CIRC applied") },
1528	/* D   WRO   BK   */
1529	{ SST(0x17, 0x05, SS_NOP | SSQ_PRINT_SENSE,
1530	    "Recovered data using previous sector ID") },
1531	/* D   W O   BK   */
1532	{ SST(0x17, 0x06, SS_NOP | SSQ_PRINT_SENSE,
1533	    "Recovered data without ECC - data auto-reallocated") },
1534	/* D   WRO   BK   */
1535	{ SST(0x17, 0x07, SS_NOP | SSQ_PRINT_SENSE,
1536	    "Recovered data without ECC - recommend reassignment") },
1537	/* D   WRO   BK   */
1538	{ SST(0x17, 0x08, SS_NOP | SSQ_PRINT_SENSE,
1539	    "Recovered data without ECC - recommend rewrite") },
1540	/* D   WRO   BK   */
1541	{ SST(0x17, 0x09, SS_NOP | SSQ_PRINT_SENSE,
1542	    "Recovered data without ECC - data rewritten") },
1543	/* DT  WRO   BK   */
1544	{ SST(0x18, 0x00, SS_NOP | SSQ_PRINT_SENSE,
1545	    "Recovered data with error correction applied") },
1546	/* D   WRO   BK   */
1547	{ SST(0x18, 0x01, SS_NOP | SSQ_PRINT_SENSE,
1548	    "Recovered data with error corr. & retries applied") },
1549	/* D   WRO   BK   */
1550	{ SST(0x18, 0x02, SS_NOP | SSQ_PRINT_SENSE,
1551	    "Recovered data - data auto-reallocated") },
1552	/*      R         */
1553	{ SST(0x18, 0x03, SS_NOP | SSQ_PRINT_SENSE,
1554	    "Recovered data with CIRC") },
1555	/*      R         */
1556	{ SST(0x18, 0x04, SS_NOP | SSQ_PRINT_SENSE,
1557	    "Recovered data with L-EC") },
1558	/* D   WRO   BK   */
1559	{ SST(0x18, 0x05, SS_NOP | SSQ_PRINT_SENSE,
1560	    "Recovered data - recommend reassignment") },
1561	/* D   WRO   BK   */
1562	{ SST(0x18, 0x06, SS_NOP | SSQ_PRINT_SENSE,
1563	    "Recovered data - recommend rewrite") },
1564	/* D   W O   BK   */
1565	{ SST(0x18, 0x07, SS_NOP | SSQ_PRINT_SENSE,
1566	    "Recovered data with ECC - data rewritten") },
1567	/*      R         */
1568	{ SST(0x18, 0x08, SS_RDEF,	/* XXX TBD */
1569	    "Recovered data with linking") },
1570	/* D     O    K   */
1571	{ SST(0x19, 0x00, SS_RDEF,
1572	    "Defect list error") },
1573	/* D     O    K   */
1574	{ SST(0x19, 0x01, SS_RDEF,
1575	    "Defect list not available") },
1576	/* D     O    K   */
1577	{ SST(0x19, 0x02, SS_RDEF,
1578	    "Defect list error in primary list") },
1579	/* D     O    K   */
1580	{ SST(0x19, 0x03, SS_RDEF,
1581	    "Defect list error in grown list") },
1582	/* DTLPWROMAEBKVF */
1583	{ SST(0x1A, 0x00, SS_RDEF,
1584	    "Parameter list length error") },
1585	/* DTLPWROMAEBKVF */
1586	{ SST(0x1B, 0x00, SS_RDEF,
1587	    "Synchronous data transfer error") },
1588	/* D     O   BK   */
1589	{ SST(0x1C, 0x00, SS_RDEF,
1590	    "Defect list not found") },
1591	/* D     O   BK   */
1592	{ SST(0x1C, 0x01, SS_RDEF,
1593	    "Primary defect list not found") },
1594	/* D     O   BK   */
1595	{ SST(0x1C, 0x02, SS_RDEF,
1596	    "Grown defect list not found") },
1597	/* DT  WRO   BK   */
1598	{ SST(0x1D, 0x00, SS_FATAL,
1599	    "Miscompare during verify operation") },
1600	/* D         B    */
1601	{ SST(0x1D, 0x01, SS_RDEF,	/* XXX TBD */
1602	    "Miscomparable verify of unmapped LBA") },
1603	/* D   W O   BK   */
1604	{ SST(0x1E, 0x00, SS_NOP | SSQ_PRINT_SENSE,
1605	    "Recovered ID with ECC correction") },
1606	/* D     O    K   */
1607	{ SST(0x1F, 0x00, SS_RDEF,
1608	    "Partial defect list transfer") },
1609	/* DTLPWROMAEBKVF */
1610	{ SST(0x20, 0x00, SS_FATAL | EINVAL,
1611	    "Invalid command operation code") },
1612	/* DT PWROMAEBK   */
1613	{ SST(0x20, 0x01, SS_RDEF,	/* XXX TBD */
1614	    "Access denied - initiator pending-enrolled") },
1615	/* DT PWROMAEBK   */
1616	{ SST(0x20, 0x02, SS_RDEF,	/* XXX TBD */
1617	    "Access denied - no access rights") },
1618	/* DT PWROMAEBK   */
1619	{ SST(0x20, 0x03, SS_RDEF,	/* XXX TBD */
1620	    "Access denied - invalid mgmt ID key") },
1621	/*  T             */
1622	{ SST(0x20, 0x04, SS_RDEF,	/* XXX TBD */
1623	    "Illegal command while in write capable state") },
1624	/*  T             */
1625	{ SST(0x20, 0x05, SS_RDEF,	/* XXX TBD */
1626	    "Obsolete") },
1627	/*  T             */
1628	{ SST(0x20, 0x06, SS_RDEF,	/* XXX TBD */
1629	    "Illegal command while in explicit address mode") },
1630	/*  T             */
1631	{ SST(0x20, 0x07, SS_RDEF,	/* XXX TBD */
1632	    "Illegal command while in implicit address mode") },
1633	/* DT PWROMAEBK   */
1634	{ SST(0x20, 0x08, SS_RDEF,	/* XXX TBD */
1635	    "Access denied - enrollment conflict") },
1636	/* DT PWROMAEBK   */
1637	{ SST(0x20, 0x09, SS_RDEF,	/* XXX TBD */
1638	    "Access denied - invalid LU identifier") },
1639	/* DT PWROMAEBK   */
1640	{ SST(0x20, 0x0A, SS_RDEF,	/* XXX TBD */
1641	    "Access denied - invalid proxy token") },
1642	/* DT PWROMAEBK   */
1643	{ SST(0x20, 0x0B, SS_RDEF,	/* XXX TBD */
1644	    "Access denied - ACL LUN conflict") },
1645	/*  T             */
1646	{ SST(0x20, 0x0C, SS_FATAL | EINVAL,
1647	    "Illegal command when not in append-only mode") },
1648	/* DT  WRO   BK   */
1649	{ SST(0x21, 0x00, SS_FATAL | EINVAL,
1650	    "Logical block address out of range") },
1651	/* DT  WROM  BK   */
1652	{ SST(0x21, 0x01, SS_FATAL | EINVAL,
1653	    "Invalid element address") },
1654	/*      R         */
1655	{ SST(0x21, 0x02, SS_RDEF,	/* XXX TBD */
1656	    "Invalid address for write") },
1657	/*      R         */
1658	{ SST(0x21, 0x03, SS_RDEF,	/* XXX TBD */
1659	    "Invalid write crossing layer jump") },
1660	/* D              */
1661	{ SST(0x21, 0x04, SS_RDEF,	/* XXX TBD */
1662	    "Unaligned write command") },
1663	/* D              */
1664	{ SST(0x21, 0x05, SS_RDEF,	/* XXX TBD */
1665	    "Write boundary violation") },
1666	/* D              */
1667	{ SST(0x21, 0x06, SS_RDEF,	/* XXX TBD */
1668	    "Attempt to read invalid data") },
1669	/* D              */
1670	{ SST(0x21, 0x07, SS_RDEF,	/* XXX TBD */
1671	    "Read boundary violation") },
1672	/* D              */
1673	{ SST(0x22, 0x00, SS_FATAL | EINVAL,
1674	    "Illegal function (use 20 00, 24 00, or 26 00)") },
1675	/* DT P      B    */
1676	{ SST(0x23, 0x00, SS_FATAL | EINVAL,
1677	    "Invalid token operation, cause not reportable") },
1678	/* DT P      B    */
1679	{ SST(0x23, 0x01, SS_FATAL | EINVAL,
1680	    "Invalid token operation, unsupported token type") },
1681	/* DT P      B    */
1682	{ SST(0x23, 0x02, SS_FATAL | EINVAL,
1683	    "Invalid token operation, remote token usage not supported") },
1684	/* DT P      B    */
1685	{ SST(0x23, 0x03, SS_FATAL | EINVAL,
1686	    "Invalid token operation, remote ROD token creation not supported") },
1687	/* DT P      B    */
1688	{ SST(0x23, 0x04, SS_FATAL | EINVAL,
1689	    "Invalid token operation, token unknown") },
1690	/* DT P      B    */
1691	{ SST(0x23, 0x05, SS_FATAL | EINVAL,
1692	    "Invalid token operation, token corrupt") },
1693	/* DT P      B    */
1694	{ SST(0x23, 0x06, SS_FATAL | EINVAL,
1695	    "Invalid token operation, token revoked") },
1696	/* DT P      B    */
1697	{ SST(0x23, 0x07, SS_FATAL | EINVAL,
1698	    "Invalid token operation, token expired") },
1699	/* DT P      B    */
1700	{ SST(0x23, 0x08, SS_FATAL | EINVAL,
1701	    "Invalid token operation, token cancelled") },
1702	/* DT P      B    */
1703	{ SST(0x23, 0x09, SS_FATAL | EINVAL,
1704	    "Invalid token operation, token deleted") },
1705	/* DT P      B    */
1706	{ SST(0x23, 0x0A, SS_FATAL | EINVAL,
1707	    "Invalid token operation, invalid token length") },
1708	/* DTLPWROMAEBKVF */
1709	{ SST(0x24, 0x00, SS_FATAL | EINVAL,
1710	    "Invalid field in CDB") },
1711	/* DTLPWRO AEBKVF */
1712	{ SST(0x24, 0x01, SS_RDEF,	/* XXX TBD */
1713	    "CDB decryption error") },
1714	/*  T             */
1715	{ SST(0x24, 0x02, SS_RDEF,	/* XXX TBD */
1716	    "Obsolete") },
1717	/*  T             */
1718	{ SST(0x24, 0x03, SS_RDEF,	/* XXX TBD */
1719	    "Obsolete") },
1720	/*              F */
1721	{ SST(0x24, 0x04, SS_RDEF,	/* XXX TBD */
1722	    "Security audit value frozen") },
1723	/*              F */
1724	{ SST(0x24, 0x05, SS_RDEF,	/* XXX TBD */
1725	    "Security working key frozen") },
1726	/*              F */
1727	{ SST(0x24, 0x06, SS_RDEF,	/* XXX TBD */
1728	    "NONCE not unique") },
1729	/*              F */
1730	{ SST(0x24, 0x07, SS_RDEF,	/* XXX TBD */
1731	    "NONCE timestamp out of range") },
1732	/* DT   R MAEBKV  */
1733	{ SST(0x24, 0x08, SS_RDEF,	/* XXX TBD */
1734	    "Invalid XCDB") },
1735	/* DTLPWROMAEBKVF */
1736	{ SST(0x25, 0x00, SS_FATAL | ENXIO | SSQ_LOST,
1737	    "Logical unit not supported") },
1738	/* DTLPWROMAEBKVF */
1739	{ SST(0x26, 0x00, SS_FATAL | EINVAL,
1740	    "Invalid field in parameter list") },
1741	/* DTLPWROMAEBKVF */
1742	{ SST(0x26, 0x01, SS_FATAL | EINVAL,
1743	    "Parameter not supported") },
1744	/* DTLPWROMAEBKVF */
1745	{ SST(0x26, 0x02, SS_FATAL | EINVAL,
1746	    "Parameter value invalid") },
1747	/* DTLPWROMAE K   */
1748	{ SST(0x26, 0x03, SS_FATAL | EINVAL,
1749	    "Threshold parameters not supported") },
1750	/* DTLPWROMAEBKVF */
1751	{ SST(0x26, 0x04, SS_FATAL | EINVAL,
1752	    "Invalid release of persistent reservation") },
1753	/* DTLPWRO A BK   */
1754	{ SST(0x26, 0x05, SS_RDEF,	/* XXX TBD */
1755	    "Data decryption error") },
1756	/* DTLPWRO    K   */
1757	{ SST(0x26, 0x06, SS_FATAL | EINVAL,
1758	    "Too many target descriptors") },
1759	/* DTLPWRO    K   */
1760	{ SST(0x26, 0x07, SS_FATAL | EINVAL,
1761	    "Unsupported target descriptor type code") },
1762	/* DTLPWRO    K   */
1763	{ SST(0x26, 0x08, SS_FATAL | EINVAL,
1764	    "Too many segment descriptors") },
1765	/* DTLPWRO    K   */
1766	{ SST(0x26, 0x09, SS_FATAL | EINVAL,
1767	    "Unsupported segment descriptor type code") },
1768	/* DTLPWRO    K   */
1769	{ SST(0x26, 0x0A, SS_FATAL | EINVAL,
1770	    "Unexpected inexact segment") },
1771	/* DTLPWRO    K   */
1772	{ SST(0x26, 0x0B, SS_FATAL | EINVAL,
1773	    "Inline data length exceeded") },
1774	/* DTLPWRO    K   */
1775	{ SST(0x26, 0x0C, SS_FATAL | EINVAL,
1776	    "Invalid operation for copy source or destination") },
1777	/* DTLPWRO    K   */
1778	{ SST(0x26, 0x0D, SS_FATAL | EINVAL,
1779	    "Copy segment granularity violation") },
1780	/* DT PWROMAEBK   */
1781	{ SST(0x26, 0x0E, SS_RDEF,	/* XXX TBD */
1782	    "Invalid parameter while port is enabled") },
1783	/*              F */
1784	{ SST(0x26, 0x0F, SS_RDEF,	/* XXX TBD */
1785	    "Invalid data-out buffer integrity check value") },
1786	/*  T             */
1787	{ SST(0x26, 0x10, SS_RDEF,	/* XXX TBD */
1788	    "Data decryption key fail limit reached") },
1789	/*  T             */
1790	{ SST(0x26, 0x11, SS_RDEF,	/* XXX TBD */
1791	    "Incomplete key-associated data set") },
1792	/*  T             */
1793	{ SST(0x26, 0x12, SS_RDEF,	/* XXX TBD */
1794	    "Vendor specific key reference not found") },
1795	/* D              */
1796	{ SST(0x26, 0x13, SS_RDEF,	/* XXX TBD */
1797	    "Application tag mode page is invalid") },
1798	/* DT  WRO   BK   */
1799	{ SST(0x27, 0x00, SS_FATAL | EACCES,
1800	    "Write protected") },
1801	/* DT  WRO   BK   */
1802	{ SST(0x27, 0x01, SS_FATAL | EACCES,
1803	    "Hardware write protected") },
1804	/* DT  WRO   BK   */
1805	{ SST(0x27, 0x02, SS_FATAL | EACCES,
1806	    "Logical unit software write protected") },
1807	/*  T   R         */
1808	{ SST(0x27, 0x03, SS_FATAL | EACCES,
1809	    "Associated write protect") },
1810	/*  T   R         */
1811	{ SST(0x27, 0x04, SS_FATAL | EACCES,
1812	    "Persistent write protect") },
1813	/*  T   R         */
1814	{ SST(0x27, 0x05, SS_FATAL | EACCES,
1815	    "Permanent write protect") },
1816	/*      R       F */
1817	{ SST(0x27, 0x06, SS_RDEF,	/* XXX TBD */
1818	    "Conditional write protect") },
1819	/* D         B    */
1820	{ SST(0x27, 0x07, SS_FATAL | ENOSPC,
1821	    "Space allocation failed write protect") },
1822	/* D              */
1823	{ SST(0x27, 0x08, SS_FATAL | EACCES,
1824	    "Zone is read only") },
1825	/* DTLPWROMAEBKVF */
1826	{ SST(0x28, 0x00, SS_FATAL | ENXIO,
1827	    "Not ready to ready change, medium may have changed") },
1828	/* DT  WROM  B    */
1829	{ SST(0x28, 0x01, SS_FATAL | ENXIO,
1830	    "Import or export element accessed") },
1831	/*      R         */
1832	{ SST(0x28, 0x02, SS_RDEF,	/* XXX TBD */
1833	    "Format-layer may have changed") },
1834	/*        M       */
1835	{ SST(0x28, 0x03, SS_RDEF,	/* XXX TBD */
1836	    "Import/export element accessed, medium changed") },
1837	/*
1838	 * XXX JGibbs - All of these should use the same errno, but I don't
1839	 * think ENXIO is the correct choice.  Should we borrow from
1840	 * the networking errnos?  ECONNRESET anyone?
1841	 */
1842	/* DTLPWROMAEBKVF */
1843	{ SST(0x29, 0x00, SS_FATAL | ENXIO,
1844	    "Power on, reset, or bus device reset occurred") },
1845	/* DTLPWROMAEBKVF */
1846	{ SST(0x29, 0x01, SS_RDEF,
1847	    "Power on occurred") },
1848	/* DTLPWROMAEBKVF */
1849	{ SST(0x29, 0x02, SS_RDEF,
1850	    "SCSI bus reset occurred") },
1851	/* DTLPWROMAEBKVF */
1852	{ SST(0x29, 0x03, SS_RDEF,
1853	    "Bus device reset function occurred") },
1854	/* DTLPWROMAEBKVF */
1855	{ SST(0x29, 0x04, SS_RDEF,
1856	    "Device internal reset") },
1857	/* DTLPWROMAEBKVF */
1858	{ SST(0x29, 0x05, SS_RDEF,
1859	    "Transceiver mode changed to single-ended") },
1860	/* DTLPWROMAEBKVF */
1861	{ SST(0x29, 0x06, SS_RDEF,
1862	    "Transceiver mode changed to LVD") },
1863	/* DTLPWROMAEBKVF */
1864	{ SST(0x29, 0x07, SS_RDEF,	/* XXX TBD */
1865	    "I_T nexus loss occurred") },
1866	/* DTL WROMAEBKVF */
1867	{ SST(0x2A, 0x00, SS_RDEF,
1868	    "Parameters changed") },
1869	/* DTL WROMAEBKVF */
1870	{ SST(0x2A, 0x01, SS_RDEF,
1871	    "Mode parameters changed") },
1872	/* DTL WROMAE K   */
1873	{ SST(0x2A, 0x02, SS_RDEF,
1874	    "Log parameters changed") },
1875	/* DTLPWROMAE K   */
1876	{ SST(0x2A, 0x03, SS_RDEF,
1877	    "Reservations preempted") },
1878	/* DTLPWROMAE     */
1879	{ SST(0x2A, 0x04, SS_RDEF,	/* XXX TBD */
1880	    "Reservations released") },
1881	/* DTLPWROMAE     */
1882	{ SST(0x2A, 0x05, SS_RDEF,	/* XXX TBD */
1883	    "Registrations preempted") },
1884	/* DTLPWROMAEBKVF */
1885	{ SST(0x2A, 0x06, SS_RDEF,	/* XXX TBD */
1886	    "Asymmetric access state changed") },
1887	/* DTLPWROMAEBKVF */
1888	{ SST(0x2A, 0x07, SS_RDEF,	/* XXX TBD */
1889	    "Implicit asymmetric access state transition failed") },
1890	/* DT  WROMAEBKVF */
1891	{ SST(0x2A, 0x08, SS_RDEF,	/* XXX TBD */
1892	    "Priority changed") },
1893	/* D              */
1894	{ SST(0x2A, 0x09, SS_RDEF,	/* XXX TBD */
1895	    "Capacity data has changed") },
1896	/* DT             */
1897	{ SST(0x2A, 0x0A, SS_RDEF,	/* XXX TBD */
1898	    "Error history I_T nexus cleared") },
1899	/* DT             */
1900	{ SST(0x2A, 0x0B, SS_RDEF,	/* XXX TBD */
1901	    "Error history snapshot released") },
1902	/*              F */
1903	{ SST(0x2A, 0x0C, SS_RDEF,	/* XXX TBD */
1904	    "Error recovery attributes have changed") },
1905	/*  T             */
1906	{ SST(0x2A, 0x0D, SS_RDEF,	/* XXX TBD */
1907	    "Data encryption capabilities changed") },
1908	/* DT     M E  V  */
1909	{ SST(0x2A, 0x10, SS_RDEF,	/* XXX TBD */
1910	    "Timestamp changed") },
1911	/*  T             */
1912	{ SST(0x2A, 0x11, SS_RDEF,	/* XXX TBD */
1913	    "Data encryption parameters changed by another I_T nexus") },
1914	/*  T             */
1915	{ SST(0x2A, 0x12, SS_RDEF,	/* XXX TBD */
1916	    "Data encryption parameters changed by vendor specific event") },
1917	/*  T             */
1918	{ SST(0x2A, 0x13, SS_RDEF,	/* XXX TBD */
1919	    "Data encryption key instance counter has changed") },
1920	/* DT   R MAEBKV  */
1921	{ SST(0x2A, 0x14, SS_RDEF,	/* XXX TBD */
1922	    "SA creation capabilities data has changed") },
1923	/*  T     M    V  */
1924	{ SST(0x2A, 0x15, SS_RDEF,	/* XXX TBD */
1925	    "Medium removal prevention preempted") },
1926	/* DTLPWRO    K   */
1927	{ SST(0x2B, 0x00, SS_RDEF,
1928	    "Copy cannot execute since host cannot disconnect") },
1929	/* DTLPWROMAEBKVF */
1930	{ SST(0x2C, 0x00, SS_RDEF,
1931	    "Command sequence error") },
1932	/*                */
1933	{ SST(0x2C, 0x01, SS_RDEF,
1934	    "Too many windows specified") },
1935	/*                */
1936	{ SST(0x2C, 0x02, SS_RDEF,
1937	    "Invalid combination of windows specified") },
1938	/*      R         */
1939	{ SST(0x2C, 0x03, SS_RDEF,
1940	    "Current program area is not empty") },
1941	/*      R         */
1942	{ SST(0x2C, 0x04, SS_RDEF,
1943	    "Current program area is empty") },
1944	/*           B    */
1945	{ SST(0x2C, 0x05, SS_RDEF,	/* XXX TBD */
1946	    "Illegal power condition request") },
1947	/*      R         */
1948	{ SST(0x2C, 0x06, SS_RDEF,	/* XXX TBD */
1949	    "Persistent prevent conflict") },
1950	/* DTLPWROMAEBKVF */
1951	{ SST(0x2C, 0x07, SS_RDEF,	/* XXX TBD */
1952	    "Previous busy status") },
1953	/* DTLPWROMAEBKVF */
1954	{ SST(0x2C, 0x08, SS_RDEF,	/* XXX TBD */
1955	    "Previous task set full status") },
1956	/* DTLPWROM EBKVF */
1957	{ SST(0x2C, 0x09, SS_RDEF,	/* XXX TBD */
1958	    "Previous reservation conflict status") },
1959	/*              F */
1960	{ SST(0x2C, 0x0A, SS_RDEF,	/* XXX TBD */
1961	    "Partition or collection contains user objects") },
1962	/*  T             */
1963	{ SST(0x2C, 0x0B, SS_RDEF,	/* XXX TBD */
1964	    "Not reserved") },
1965	/* D              */
1966	{ SST(0x2C, 0x0C, SS_RDEF,	/* XXX TBD */
1967	    "ORWRITE generation does not match") },
1968	/* D              */
1969	{ SST(0x2C, 0x0D, SS_RDEF,	/* XXX TBD */
1970	    "Reset write pointer not allowed") },
1971	/* D              */
1972	{ SST(0x2C, 0x0E, SS_RDEF,	/* XXX TBD */
1973	    "Zone is offline") },
1974	/* D              */
1975	{ SST(0x2C, 0x0F, SS_RDEF,	/* XXX TBD */
1976	    "Stream not open") },
1977	/* D              */
1978	{ SST(0x2C, 0x10, SS_RDEF,	/* XXX TBD */
1979	    "Unwritten data in zone") },
1980	/*  T             */
1981	{ SST(0x2D, 0x00, SS_RDEF,
1982	    "Overwrite error on update in place") },
1983	/*      R         */
1984	{ SST(0x2E, 0x00, SS_RDEF,	/* XXX TBD */
1985	    "Insufficient time for operation") },
1986	/* D              */
1987	{ SST(0x2E, 0x01, SS_RDEF,	/* XXX TBD */
1988	    "Command timeout before processing") },
1989	/* D              */
1990	{ SST(0x2E, 0x02, SS_RDEF,	/* XXX TBD */
1991	    "Command timeout during processing") },
1992	/* D              */
1993	{ SST(0x2E, 0x03, SS_RDEF,	/* XXX TBD */
1994	    "Command timeout during processing due to error recovery") },
1995	/* DTLPWROMAEBKVF */
1996	{ SST(0x2F, 0x00, SS_RDEF,
1997	    "Commands cleared by another initiator") },
1998	/* D              */
1999	{ SST(0x2F, 0x01, SS_RDEF,	/* XXX TBD */
2000	    "Commands cleared by power loss notification") },
2001	/* DTLPWROMAEBKVF */
2002	{ SST(0x2F, 0x02, SS_RDEF,	/* XXX TBD */
2003	    "Commands cleared by device server") },
2004	/* DTLPWROMAEBKVF */
2005	{ SST(0x2F, 0x03, SS_RDEF,	/* XXX TBD */
2006	    "Some commands cleared by queuing layer event") },
2007	/* DT  WROM  BK   */
2008	{ SST(0x30, 0x00, SS_RDEF,
2009	    "Incompatible medium installed") },
2010	/* DT  WRO   BK   */
2011	{ SST(0x30, 0x01, SS_RDEF,
2012	    "Cannot read medium - unknown format") },
2013	/* DT  WRO   BK   */
2014	{ SST(0x30, 0x02, SS_RDEF,
2015	    "Cannot read medium - incompatible format") },
2016	/* DT   R     K   */
2017	{ SST(0x30, 0x03, SS_RDEF,
2018	    "Cleaning cartridge installed") },
2019	/* DT  WRO   BK   */
2020	{ SST(0x30, 0x04, SS_RDEF,
2021	    "Cannot write medium - unknown format") },
2022	/* DT  WRO   BK   */
2023	{ SST(0x30, 0x05, SS_RDEF,
2024	    "Cannot write medium - incompatible format") },
2025	/* DT  WRO   B    */
2026	{ SST(0x30, 0x06, SS_RDEF,
2027	    "Cannot format medium - incompatible medium") },
2028	/* DTL WROMAEBKVF */
2029	{ SST(0x30, 0x07, SS_RDEF,
2030	    "Cleaning failure") },
2031	/*      R         */
2032	{ SST(0x30, 0x08, SS_RDEF,
2033	    "Cannot write - application code mismatch") },
2034	/*      R         */
2035	{ SST(0x30, 0x09, SS_RDEF,
2036	    "Current session not fixated for append") },
2037	/* DT  WRO AEBK   */
2038	{ SST(0x30, 0x0A, SS_RDEF,	/* XXX TBD */
2039	    "Cleaning request rejected") },
2040	/*  T             */
2041	{ SST(0x30, 0x0C, SS_RDEF,	/* XXX TBD */
2042	    "WORM medium - overwrite attempted") },
2043	/*  T             */
2044	{ SST(0x30, 0x0D, SS_RDEF,	/* XXX TBD */
2045	    "WORM medium - integrity check") },
2046	/*      R         */
2047	{ SST(0x30, 0x10, SS_RDEF,	/* XXX TBD */
2048	    "Medium not formatted") },
2049	/*        M       */
2050	{ SST(0x30, 0x11, SS_RDEF,	/* XXX TBD */
2051	    "Incompatible volume type") },
2052	/*        M       */
2053	{ SST(0x30, 0x12, SS_RDEF,	/* XXX TBD */
2054	    "Incompatible volume qualifier") },
2055	/*        M       */
2056	{ SST(0x30, 0x13, SS_RDEF,	/* XXX TBD */
2057	    "Cleaning volume expired") },
2058	/* DT  WRO   BK   */
2059	{ SST(0x31, 0x00, SS_RDEF,
2060	    "Medium format corrupted") },
2061	/* D L  RO   B    */
2062	{ SST(0x31, 0x01, SS_RDEF,
2063	    "Format command failed") },
2064	/*      R         */
2065	{ SST(0x31, 0x02, SS_RDEF,	/* XXX TBD */
2066	    "Zoned formatting failed due to spare linking") },
2067	/* D         B    */
2068	{ SST(0x31, 0x03, SS_RDEF,	/* XXX TBD */
2069	    "SANITIZE command failed") },
2070	/* D   W O   BK   */
2071	{ SST(0x32, 0x00, SS_RDEF,
2072	    "No defect spare location available") },
2073	/* D   W O   BK   */
2074	{ SST(0x32, 0x01, SS_RDEF,
2075	    "Defect list update failure") },
2076	/*  T             */
2077	{ SST(0x33, 0x00, SS_RDEF,
2078	    "Tape length error") },
2079	/* DTLPWROMAEBKVF */
2080	{ SST(0x34, 0x00, SS_RDEF,
2081	    "Enclosure failure") },
2082	/* DTLPWROMAEBKVF */
2083	{ SST(0x35, 0x00, SS_RDEF,
2084	    "Enclosure services failure") },
2085	/* DTLPWROMAEBKVF */
2086	{ SST(0x35, 0x01, SS_RDEF,
2087	    "Unsupported enclosure function") },
2088	/* DTLPWROMAEBKVF */
2089	{ SST(0x35, 0x02, SS_RDEF,
2090	    "Enclosure services unavailable") },
2091	/* DTLPWROMAEBKVF */
2092	{ SST(0x35, 0x03, SS_RDEF,
2093	    "Enclosure services transfer failure") },
2094	/* DTLPWROMAEBKVF */
2095	{ SST(0x35, 0x04, SS_RDEF,
2096	    "Enclosure services transfer refused") },
2097	/* DTL WROMAEBKVF */
2098	{ SST(0x35, 0x05, SS_RDEF,	/* XXX TBD */
2099	    "Enclosure services checksum error") },
2100	/*   L            */
2101	{ SST(0x36, 0x00, SS_RDEF,
2102	    "Ribbon, ink, or toner failure") },
2103	/* DTL WROMAEBKVF */
2104	{ SST(0x37, 0x00, SS_RDEF,
2105	    "Rounded parameter") },
2106	/*           B    */
2107	{ SST(0x38, 0x00, SS_RDEF,	/* XXX TBD */
2108	    "Event status notification") },
2109	/*           B    */
2110	{ SST(0x38, 0x02, SS_RDEF,	/* XXX TBD */
2111	    "ESN - power management class event") },
2112	/*           B    */
2113	{ SST(0x38, 0x04, SS_RDEF,	/* XXX TBD */
2114	    "ESN - media class event") },
2115	/*           B    */
2116	{ SST(0x38, 0x06, SS_RDEF,	/* XXX TBD */
2117	    "ESN - device busy class event") },
2118	/* D              */
2119	{ SST(0x38, 0x07, SS_RDEF,	/* XXX TBD */
2120	    "Thin provisioning soft threshold reached") },
2121	/* DTL WROMAE K   */
2122	{ SST(0x39, 0x00, SS_RDEF,
2123	    "Saving parameters not supported") },
2124	/* DTL WROM  BK   */
2125	{ SST(0x3A, 0x00, SS_FATAL | ENXIO,
2126	    "Medium not present") },
2127	/* DT  WROM  BK   */
2128	{ SST(0x3A, 0x01, SS_FATAL | ENXIO,
2129	    "Medium not present - tray closed") },
2130	/* DT  WROM  BK   */
2131	{ SST(0x3A, 0x02, SS_FATAL | ENXIO,
2132	    "Medium not present - tray open") },
2133	/* DT  WROM  B    */
2134	{ SST(0x3A, 0x03, SS_RDEF,	/* XXX TBD */
2135	    "Medium not present - loadable") },
2136	/* DT  WRO   B    */
2137	{ SST(0x3A, 0x04, SS_RDEF,	/* XXX TBD */
2138	    "Medium not present - medium auxiliary memory accessible") },
2139	/*  TL            */
2140	{ SST(0x3B, 0x00, SS_RDEF,
2141	    "Sequential positioning error") },
2142	/*  T             */
2143	{ SST(0x3B, 0x01, SS_RDEF,
2144	    "Tape position error at beginning-of-medium") },
2145	/*  T             */
2146	{ SST(0x3B, 0x02, SS_RDEF,
2147	    "Tape position error at end-of-medium") },
2148	/*   L            */
2149	{ SST(0x3B, 0x03, SS_RDEF,
2150	    "Tape or electronic vertical forms unit not ready") },
2151	/*   L            */
2152	{ SST(0x3B, 0x04, SS_RDEF,
2153	    "Slew failure") },
2154	/*   L            */
2155	{ SST(0x3B, 0x05, SS_RDEF,
2156	    "Paper jam") },
2157	/*   L            */
2158	{ SST(0x3B, 0x06, SS_RDEF,
2159	    "Failed to sense top-of-form") },
2160	/*   L            */
2161	{ SST(0x3B, 0x07, SS_RDEF,
2162	    "Failed to sense bottom-of-form") },
2163	/*  T             */
2164	{ SST(0x3B, 0x08, SS_RDEF,
2165	    "Reposition error") },
2166	/*                */
2167	{ SST(0x3B, 0x09, SS_RDEF,
2168	    "Read past end of medium") },
2169	/*                */
2170	{ SST(0x3B, 0x0A, SS_RDEF,
2171	    "Read past beginning of medium") },
2172	/*                */
2173	{ SST(0x3B, 0x0B, SS_RDEF,
2174	    "Position past end of medium") },
2175	/*  T             */
2176	{ SST(0x3B, 0x0C, SS_RDEF,
2177	    "Position past beginning of medium") },
2178	/* DT  WROM  BK   */
2179	{ SST(0x3B, 0x0D, SS_FATAL | ENOSPC,
2180	    "Medium destination element full") },
2181	/* DT  WROM  BK   */
2182	{ SST(0x3B, 0x0E, SS_RDEF,
2183	    "Medium source element empty") },
2184	/*      R         */
2185	{ SST(0x3B, 0x0F, SS_RDEF,
2186	    "End of medium reached") },
2187	/* DT  WROM  BK   */
2188	{ SST(0x3B, 0x11, SS_RDEF,
2189	    "Medium magazine not accessible") },
2190	/* DT  WROM  BK   */
2191	{ SST(0x3B, 0x12, SS_RDEF,
2192	    "Medium magazine removed") },
2193	/* DT  WROM  BK   */
2194	{ SST(0x3B, 0x13, SS_RDEF,
2195	    "Medium magazine inserted") },
2196	/* DT  WROM  BK   */
2197	{ SST(0x3B, 0x14, SS_RDEF,
2198	    "Medium magazine locked") },
2199	/* DT  WROM  BK   */
2200	{ SST(0x3B, 0x15, SS_RDEF,
2201	    "Medium magazine unlocked") },
2202	/*      R         */
2203	{ SST(0x3B, 0x16, SS_RDEF,	/* XXX TBD */
2204	    "Mechanical positioning or changer error") },
2205	/*              F */
2206	{ SST(0x3B, 0x17, SS_RDEF,	/* XXX TBD */
2207	    "Read past end of user object") },
2208	/*        M       */
2209	{ SST(0x3B, 0x18, SS_RDEF,	/* XXX TBD */
2210	    "Element disabled") },
2211	/*        M       */
2212	{ SST(0x3B, 0x19, SS_RDEF,	/* XXX TBD */
2213	    "Element enabled") },
2214	/*        M       */
2215	{ SST(0x3B, 0x1A, SS_RDEF,	/* XXX TBD */
2216	    "Data transfer device removed") },
2217	/*        M       */
2218	{ SST(0x3B, 0x1B, SS_RDEF,	/* XXX TBD */
2219	    "Data transfer device inserted") },
2220	/*  T             */
2221	{ SST(0x3B, 0x1C, SS_RDEF,	/* XXX TBD */
2222	    "Too many logical objects on partition to support operation") },
2223	/* DTLPWROMAE K   */
2224	{ SST(0x3D, 0x00, SS_RDEF,
2225	    "Invalid bits in IDENTIFY message") },
2226	/* DTLPWROMAEBKVF */
2227	{ SST(0x3E, 0x00, SS_RDEF,
2228	    "Logical unit has not self-configured yet") },
2229	/* DTLPWROMAEBKVF */
2230	{ SST(0x3E, 0x01, SS_RDEF,
2231	    "Logical unit failure") },
2232	/* DTLPWROMAEBKVF */
2233	{ SST(0x3E, 0x02, SS_RDEF,
2234	    "Timeout on logical unit") },
2235	/* DTLPWROMAEBKVF */
2236	{ SST(0x3E, 0x03, SS_RDEF,	/* XXX TBD */
2237	    "Logical unit failed self-test") },
2238	/* DTLPWROMAEBKVF */
2239	{ SST(0x3E, 0x04, SS_RDEF,	/* XXX TBD */
2240	    "Logical unit unable to update self-test log") },
2241	/* DTLPWROMAEBKVF */
2242	{ SST(0x3F, 0x00, SS_RDEF,
2243	    "Target operating conditions have changed") },
2244	/* DTLPWROMAEBKVF */
2245	{ SST(0x3F, 0x01, SS_RDEF,
2246	    "Microcode has been changed") },
2247	/* DTLPWROM  BK   */
2248	{ SST(0x3F, 0x02, SS_RDEF,
2249	    "Changed operating definition") },
2250	/* DTLPWROMAEBKVF */
2251	{ SST(0x3F, 0x03, SS_RDEF,
2252	    "INQUIRY data has changed") },
2253	/* DT  WROMAEBK   */
2254	{ SST(0x3F, 0x04, SS_RDEF,
2255	    "Component device attached") },
2256	/* DT  WROMAEBK   */
2257	{ SST(0x3F, 0x05, SS_RDEF,
2258	    "Device identifier changed") },
2259	/* DT  WROMAEB    */
2260	{ SST(0x3F, 0x06, SS_RDEF,
2261	    "Redundancy group created or modified") },
2262	/* DT  WROMAEB    */
2263	{ SST(0x3F, 0x07, SS_RDEF,
2264	    "Redundancy group deleted") },
2265	/* DT  WROMAEB    */
2266	{ SST(0x3F, 0x08, SS_RDEF,
2267	    "Spare created or modified") },
2268	/* DT  WROMAEB    */
2269	{ SST(0x3F, 0x09, SS_RDEF,
2270	    "Spare deleted") },
2271	/* DT  WROMAEBK   */
2272	{ SST(0x3F, 0x0A, SS_RDEF,
2273	    "Volume set created or modified") },
2274	/* DT  WROMAEBK   */
2275	{ SST(0x3F, 0x0B, SS_RDEF,
2276	    "Volume set deleted") },
2277	/* DT  WROMAEBK   */
2278	{ SST(0x3F, 0x0C, SS_RDEF,
2279	    "Volume set deassigned") },
2280	/* DT  WROMAEBK   */
2281	{ SST(0x3F, 0x0D, SS_RDEF,
2282	    "Volume set reassigned") },
2283	/* DTLPWROMAE     */
2284	{ SST(0x3F, 0x0E, SS_RDEF | SSQ_RESCAN ,
2285	    "Reported LUNs data has changed") },
2286	/* DTLPWROMAEBKVF */
2287	{ SST(0x3F, 0x0F, SS_RDEF,	/* XXX TBD */
2288	    "Echo buffer overwritten") },
2289	/* DT  WROM  B    */
2290	{ SST(0x3F, 0x10, SS_RDEF,	/* XXX TBD */
2291	    "Medium loadable") },
2292	/* DT  WROM  B    */
2293	{ SST(0x3F, 0x11, SS_RDEF,	/* XXX TBD */
2294	    "Medium auxiliary memory accessible") },
2295	/* DTLPWR MAEBK F */
2296	{ SST(0x3F, 0x12, SS_RDEF,	/* XXX TBD */
2297	    "iSCSI IP address added") },
2298	/* DTLPWR MAEBK F */
2299	{ SST(0x3F, 0x13, SS_RDEF,	/* XXX TBD */
2300	    "iSCSI IP address removed") },
2301	/* DTLPWR MAEBK F */
2302	{ SST(0x3F, 0x14, SS_RDEF,	/* XXX TBD */
2303	    "iSCSI IP address changed") },
2304	/* DTLPWR MAEBK   */
2305	{ SST(0x3F, 0x15, SS_RDEF,	/* XXX TBD */
2306	    "Inspect referrals sense descriptors") },
2307	/* DTLPWROMAEBKVF */
2308	{ SST(0x3F, 0x16, SS_RDEF,	/* XXX TBD */
2309	    "Microcode has been changed without reset") },
2310	/* D              */
2311	{ SST(0x3F, 0x17, SS_RDEF,	/* XXX TBD */
2312	    "Zone transition to full") },
2313	/* D              */
2314	{ SST(0x40, 0x00, SS_RDEF,
2315	    "RAM failure") },		/* deprecated - use 40 NN instead */
2316	/* DTLPWROMAEBKVF */
2317	{ SST(0x40, 0x80, SS_RDEF,
2318	    "Diagnostic failure: ASCQ = Component ID") },
2319	/* DTLPWROMAEBKVF */
2320	{ SST(0x40, 0xFF, SS_RDEF | SSQ_RANGE,
2321	    NULL) },			/* Range 0x80->0xFF */
2322	/* D              */
2323	{ SST(0x41, 0x00, SS_RDEF,
2324	    "Data path failure") },	/* deprecated - use 40 NN instead */
2325	/* D              */
2326	{ SST(0x42, 0x00, SS_RDEF,
2327	    "Power-on or self-test failure") },
2328					/* deprecated - use 40 NN instead */
2329	/* DTLPWROMAEBKVF */
2330	{ SST(0x43, 0x00, SS_RDEF,
2331	    "Message error") },
2332	/* DTLPWROMAEBKVF */
2333	{ SST(0x44, 0x00, SS_RDEF,
2334	    "Internal target failure") },
2335	/* DT P   MAEBKVF */
2336	{ SST(0x44, 0x01, SS_RDEF,	/* XXX TBD */
2337	    "Persistent reservation information lost") },
2338	/* DT        B    */
2339	{ SST(0x44, 0x71, SS_RDEF,	/* XXX TBD */
2340	    "ATA device failed set features") },
2341	/* DTLPWROMAEBKVF */
2342	{ SST(0x45, 0x00, SS_RDEF,
2343	    "Select or reselect failure") },
2344	/* DTLPWROM  BK   */
2345	{ SST(0x46, 0x00, SS_RDEF,
2346	    "Unsuccessful soft reset") },
2347	/* DTLPWROMAEBKVF */
2348	{ SST(0x47, 0x00, SS_RDEF,
2349	    "SCSI parity error") },
2350	/* DTLPWROMAEBKVF */
2351	{ SST(0x47, 0x01, SS_RDEF,	/* XXX TBD */
2352	    "Data phase CRC error detected") },
2353	/* DTLPWROMAEBKVF */
2354	{ SST(0x47, 0x02, SS_RDEF,	/* XXX TBD */
2355	    "SCSI parity error detected during ST data phase") },
2356	/* DTLPWROMAEBKVF */
2357	{ SST(0x47, 0x03, SS_RDEF,	/* XXX TBD */
2358	    "Information unit iuCRC error detected") },
2359	/* DTLPWROMAEBKVF */
2360	{ SST(0x47, 0x04, SS_RDEF,	/* XXX TBD */
2361	    "Asynchronous information protection error detected") },
2362	/* DTLPWROMAEBKVF */
2363	{ SST(0x47, 0x05, SS_RDEF,	/* XXX TBD */
2364	    "Protocol service CRC error") },
2365	/* DT     MAEBKVF */
2366	{ SST(0x47, 0x06, SS_RDEF,	/* XXX TBD */
2367	    "PHY test function in progress") },
2368	/* DT PWROMAEBK   */
2369	{ SST(0x47, 0x7F, SS_RDEF,	/* XXX TBD */
2370	    "Some commands cleared by iSCSI protocol event") },
2371	/* DTLPWROMAEBKVF */
2372	{ SST(0x48, 0x00, SS_RDEF,
2373	    "Initiator detected error message received") },
2374	/* DTLPWROMAEBKVF */
2375	{ SST(0x49, 0x00, SS_RDEF,
2376	    "Invalid message error") },
2377	/* DTLPWROMAEBKVF */
2378	{ SST(0x4A, 0x00, SS_RDEF,
2379	    "Command phase error") },
2380	/* DTLPWROMAEBKVF */
2381	{ SST(0x4B, 0x00, SS_RDEF,
2382	    "Data phase error") },
2383	/* DT PWROMAEBK   */
2384	{ SST(0x4B, 0x01, SS_RDEF,	/* XXX TBD */
2385	    "Invalid target port transfer tag received") },
2386	/* DT PWROMAEBK   */
2387	{ SST(0x4B, 0x02, SS_RDEF,	/* XXX TBD */
2388	    "Too much write data") },
2389	/* DT PWROMAEBK   */
2390	{ SST(0x4B, 0x03, SS_RDEF,	/* XXX TBD */
2391	    "ACK/NAK timeout") },
2392	/* DT PWROMAEBK   */
2393	{ SST(0x4B, 0x04, SS_RDEF,	/* XXX TBD */
2394	    "NAK received") },
2395	/* DT PWROMAEBK   */
2396	{ SST(0x4B, 0x05, SS_RDEF,	/* XXX TBD */
2397	    "Data offset error") },
2398	/* DT PWROMAEBK   */
2399	{ SST(0x4B, 0x06, SS_RDEF,	/* XXX TBD */
2400	    "Initiator response timeout") },
2401	/* DT PWROMAEBK F */
2402	{ SST(0x4B, 0x07, SS_RDEF,	/* XXX TBD */
2403	    "Connection lost") },
2404	/* DT PWROMAEBK F */
2405	{ SST(0x4B, 0x08, SS_RDEF,	/* XXX TBD */
2406	    "Data-in buffer overflow - data buffer size") },
2407	/* DT PWROMAEBK F */
2408	{ SST(0x4B, 0x09, SS_RDEF,	/* XXX TBD */
2409	    "Data-in buffer overflow - data buffer descriptor area") },
2410	/* DT PWROMAEBK F */
2411	{ SST(0x4B, 0x0A, SS_RDEF,	/* XXX TBD */
2412	    "Data-in buffer error") },
2413	/* DT PWROMAEBK F */
2414	{ SST(0x4B, 0x0B, SS_RDEF,	/* XXX TBD */
2415	    "Data-out buffer overflow - data buffer size") },
2416	/* DT PWROMAEBK F */
2417	{ SST(0x4B, 0x0C, SS_RDEF,	/* XXX TBD */
2418	    "Data-out buffer overflow - data buffer descriptor area") },
2419	/* DT PWROMAEBK F */
2420	{ SST(0x4B, 0x0D, SS_RDEF,	/* XXX TBD */
2421	    "Data-out buffer error") },
2422	/* DT PWROMAEBK F */
2423	{ SST(0x4B, 0x0E, SS_RDEF,	/* XXX TBD */
2424	    "PCIe fabric error") },
2425	/* DT PWROMAEBK F */
2426	{ SST(0x4B, 0x0F, SS_RDEF,	/* XXX TBD */
2427	    "PCIe completion timeout") },
2428	/* DT PWROMAEBK F */
2429	{ SST(0x4B, 0x10, SS_RDEF,	/* XXX TBD */
2430	    "PCIe completer abort") },
2431	/* DT PWROMAEBK F */
2432	{ SST(0x4B, 0x11, SS_RDEF,	/* XXX TBD */
2433	    "PCIe poisoned TLP received") },
2434	/* DT PWROMAEBK F */
2435	{ SST(0x4B, 0x12, SS_RDEF,	/* XXX TBD */
2436	    "PCIe ECRC check failed") },
2437	/* DT PWROMAEBK F */
2438	{ SST(0x4B, 0x13, SS_RDEF,	/* XXX TBD */
2439	    "PCIe unsupported request") },
2440	/* DT PWROMAEBK F */
2441	{ SST(0x4B, 0x14, SS_RDEF,	/* XXX TBD */
2442	    "PCIe ACS violation") },
2443	/* DT PWROMAEBK F */
2444	{ SST(0x4B, 0x15, SS_RDEF,	/* XXX TBD */
2445	    "PCIe TLP prefix blocket") },
2446	/* DTLPWROMAEBKVF */
2447	{ SST(0x4C, 0x00, SS_RDEF,
2448	    "Logical unit failed self-configuration") },
2449	/* DTLPWROMAEBKVF */
2450	{ SST(0x4D, 0x00, SS_RDEF,
2451	    "Tagged overlapped commands: ASCQ = Queue tag ID") },
2452	/* DTLPWROMAEBKVF */
2453	{ SST(0x4D, 0xFF, SS_RDEF | SSQ_RANGE,
2454	    NULL) },			/* Range 0x00->0xFF */
2455	/* DTLPWROMAEBKVF */
2456	{ SST(0x4E, 0x00, SS_RDEF,
2457	    "Overlapped commands attempted") },
2458	/*  T             */
2459	{ SST(0x50, 0x00, SS_RDEF,
2460	    "Write append error") },
2461	/*  T             */
2462	{ SST(0x50, 0x01, SS_RDEF,
2463	    "Write append position error") },
2464	/*  T             */
2465	{ SST(0x50, 0x02, SS_RDEF,
2466	    "Position error related to timing") },
2467	/*  T   RO        */
2468	{ SST(0x51, 0x00, SS_RDEF,
2469	    "Erase failure") },
2470	/*      R         */
2471	{ SST(0x51, 0x01, SS_RDEF,	/* XXX TBD */
2472	    "Erase failure - incomplete erase operation detected") },
2473	/*  T             */
2474	{ SST(0x52, 0x00, SS_RDEF,
2475	    "Cartridge fault") },
2476	/* DTL WROM  BK   */
2477	{ SST(0x53, 0x00, SS_RDEF,
2478	    "Media load or eject failed") },
2479	/*  T             */
2480	{ SST(0x53, 0x01, SS_RDEF,
2481	    "Unload tape failure") },
2482	/* DT  WROM  BK   */
2483	{ SST(0x53, 0x02, SS_RDEF,
2484	    "Medium removal prevented") },
2485	/*        M       */
2486	{ SST(0x53, 0x03, SS_RDEF,	/* XXX TBD */
2487	    "Medium removal prevented by data transfer element") },
2488	/*  T             */
2489	{ SST(0x53, 0x04, SS_RDEF,	/* XXX TBD */
2490	    "Medium thread or unthread failure") },
2491	/*        M       */
2492	{ SST(0x53, 0x05, SS_RDEF,	/* XXX TBD */
2493	    "Volume identifier invalid") },
2494	/*  T             */
2495	{ SST(0x53, 0x06, SS_RDEF,	/* XXX TBD */
2496	    "Volume identifier missing") },
2497	/*        M       */
2498	{ SST(0x53, 0x07, SS_RDEF,	/* XXX TBD */
2499	    "Duplicate volume identifier") },
2500	/*        M       */
2501	{ SST(0x53, 0x08, SS_RDEF,	/* XXX TBD */
2502	    "Element status unknown") },
2503	/*        M       */
2504	{ SST(0x53, 0x09, SS_RDEF,	/* XXX TBD */
2505	    "Data transfer device error - load failed") },
2506	/*        M       */
2507	{ SST(0x53, 0x0A, SS_RDEF,	/* XXX TBD */
2508	    "Data transfer device error - unload failed") },
2509	/*        M       */
2510	{ SST(0x53, 0x0B, SS_RDEF,	/* XXX TBD */
2511	    "Data transfer device error - unload missing") },
2512	/*        M       */
2513	{ SST(0x53, 0x0C, SS_RDEF,	/* XXX TBD */
2514	    "Data transfer device error - eject failed") },
2515	/*        M       */
2516	{ SST(0x53, 0x0D, SS_RDEF,	/* XXX TBD */
2517	    "Data transfer device error - library communication failed") },
2518	/*    P           */
2519	{ SST(0x54, 0x00, SS_RDEF,
2520	    "SCSI to host system interface failure") },
2521	/*    P           */
2522	{ SST(0x55, 0x00, SS_RDEF,
2523	    "System resource failure") },
2524	/* D     O   BK   */
2525	{ SST(0x55, 0x01, SS_FATAL | ENOSPC,
2526	    "System buffer full") },
2527	/* DTLPWROMAE K   */
2528	{ SST(0x55, 0x02, SS_RDEF,	/* XXX TBD */
2529	    "Insufficient reservation resources") },
2530	/* DTLPWROMAE K   */
2531	{ SST(0x55, 0x03, SS_RDEF,	/* XXX TBD */
2532	    "Insufficient resources") },
2533	/* DTLPWROMAE K   */
2534	{ SST(0x55, 0x04, SS_RDEF,	/* XXX TBD */
2535	    "Insufficient registration resources") },
2536	/* DT PWROMAEBK   */
2537	{ SST(0x55, 0x05, SS_RDEF,	/* XXX TBD */
2538	    "Insufficient access control resources") },
2539	/* DT  WROM  B    */
2540	{ SST(0x55, 0x06, SS_RDEF,	/* XXX TBD */
2541	    "Auxiliary memory out of space") },
2542	/*              F */
2543	{ SST(0x55, 0x07, SS_RDEF,	/* XXX TBD */
2544	    "Quota error") },
2545	/*  T             */
2546	{ SST(0x55, 0x08, SS_RDEF,	/* XXX TBD */
2547	    "Maximum number of supplemental decryption keys exceeded") },
2548	/*        M       */
2549	{ SST(0x55, 0x09, SS_RDEF,	/* XXX TBD */
2550	    "Medium auxiliary memory not accessible") },
2551	/*        M       */
2552	{ SST(0x55, 0x0A, SS_RDEF,	/* XXX TBD */
2553	    "Data currently unavailable") },
2554	/* DTLPWROMAEBKVF */
2555	{ SST(0x55, 0x0B, SS_RDEF,	/* XXX TBD */
2556	    "Insufficient power for operation") },
2557	/* DT P      B    */
2558	{ SST(0x55, 0x0C, SS_RDEF,	/* XXX TBD */
2559	    "Insufficient resources to create ROD") },
2560	/* DT P      B    */
2561	{ SST(0x55, 0x0D, SS_RDEF,	/* XXX TBD */
2562	    "Insufficient resources to create ROD token") },
2563	/* D              */
2564	{ SST(0x55, 0x0E, SS_RDEF,	/* XXX TBD */
2565	    "Insufficient zone resources") },
2566	/* D              */
2567	{ SST(0x55, 0x0F, SS_RDEF,	/* XXX TBD */
2568	    "Insufficient zone resources to complete write") },
2569	/* D              */
2570	{ SST(0x55, 0x10, SS_RDEF,	/* XXX TBD */
2571	    "Maximum number of streams open") },
2572	/*      R         */
2573	{ SST(0x57, 0x00, SS_RDEF,
2574	    "Unable to recover table-of-contents") },
2575	/*       O        */
2576	{ SST(0x58, 0x00, SS_RDEF,
2577	    "Generation does not exist") },
2578	/*       O        */
2579	{ SST(0x59, 0x00, SS_RDEF,
2580	    "Updated block read") },
2581	/* DTLPWRO   BK   */
2582	{ SST(0x5A, 0x00, SS_RDEF,
2583	    "Operator request or state change input") },
2584	/* DT  WROM  BK   */
2585	{ SST(0x5A, 0x01, SS_RDEF,
2586	    "Operator medium removal request") },
2587	/* DT  WRO A BK   */
2588	{ SST(0x5A, 0x02, SS_RDEF,
2589	    "Operator selected write protect") },
2590	/* DT  WRO A BK   */
2591	{ SST(0x5A, 0x03, SS_RDEF,
2592	    "Operator selected write permit") },
2593	/* DTLPWROM   K   */
2594	{ SST(0x5B, 0x00, SS_RDEF,
2595	    "Log exception") },
2596	/* DTLPWROM   K   */
2597	{ SST(0x5B, 0x01, SS_RDEF,
2598	    "Threshold condition met") },
2599	/* DTLPWROM   K   */
2600	{ SST(0x5B, 0x02, SS_RDEF,
2601	    "Log counter at maximum") },
2602	/* DTLPWROM   K   */
2603	{ SST(0x5B, 0x03, SS_RDEF,
2604	    "Log list codes exhausted") },
2605	/* D     O        */
2606	{ SST(0x5C, 0x00, SS_RDEF,
2607	    "RPL status change") },
2608	/* D     O        */
2609	{ SST(0x5C, 0x01, SS_NOP | SSQ_PRINT_SENSE,
2610	    "Spindles synchronized") },
2611	/* D     O        */
2612	{ SST(0x5C, 0x02, SS_RDEF,
2613	    "Spindles not synchronized") },
2614	/* DTLPWROMAEBKVF */
2615	{ SST(0x5D, 0x00, SS_NOP | SSQ_PRINT_SENSE,
2616	    "Failure prediction threshold exceeded") },
2617	/*      R    B    */
2618	{ SST(0x5D, 0x01, SS_NOP | SSQ_PRINT_SENSE,
2619	    "Media failure prediction threshold exceeded") },
2620	/*      R         */
2621	{ SST(0x5D, 0x02, SS_NOP | SSQ_PRINT_SENSE,
2622	    "Logical unit failure prediction threshold exceeded") },
2623	/*      R         */
2624	{ SST(0x5D, 0x03, SS_NOP | SSQ_PRINT_SENSE,
2625	    "Spare area exhaustion prediction threshold exceeded") },
2626	/* D         B    */
2627	{ SST(0x5D, 0x10, SS_NOP | SSQ_PRINT_SENSE,
2628	    "Hardware impending failure general hard drive failure") },
2629	/* D         B    */
2630	{ SST(0x5D, 0x11, SS_NOP | SSQ_PRINT_SENSE,
2631	    "Hardware impending failure drive error rate too high") },
2632	/* D         B    */
2633	{ SST(0x5D, 0x12, SS_NOP | SSQ_PRINT_SENSE,
2634	    "Hardware impending failure data error rate too high") },
2635	/* D         B    */
2636	{ SST(0x5D, 0x13, SS_NOP | SSQ_PRINT_SENSE,
2637	    "Hardware impending failure seek error rate too high") },
2638	/* D         B    */
2639	{ SST(0x5D, 0x14, SS_NOP | SSQ_PRINT_SENSE,
2640	    "Hardware impending failure too many block reassigns") },
2641	/* D         B    */
2642	{ SST(0x5D, 0x15, SS_NOP | SSQ_PRINT_SENSE,
2643	    "Hardware impending failure access times too high") },
2644	/* D         B    */
2645	{ SST(0x5D, 0x16, SS_NOP | SSQ_PRINT_SENSE,
2646	    "Hardware impending failure start unit times too high") },
2647	/* D         B    */
2648	{ SST(0x5D, 0x17, SS_NOP | SSQ_PRINT_SENSE,
2649	    "Hardware impending failure channel parametrics") },
2650	/* D         B    */
2651	{ SST(0x5D, 0x18, SS_NOP | SSQ_PRINT_SENSE,
2652	    "Hardware impending failure controller detected") },
2653	/* D         B    */
2654	{ SST(0x5D, 0x19, SS_NOP | SSQ_PRINT_SENSE,
2655	    "Hardware impending failure throughput performance") },
2656	/* D         B    */
2657	{ SST(0x5D, 0x1A, SS_NOP | SSQ_PRINT_SENSE,
2658	    "Hardware impending failure seek time performance") },
2659	/* D         B    */
2660	{ SST(0x5D, 0x1B, SS_NOP | SSQ_PRINT_SENSE,
2661	    "Hardware impending failure spin-up retry count") },
2662	/* D         B    */
2663	{ SST(0x5D, 0x1C, SS_NOP | SSQ_PRINT_SENSE,
2664	    "Hardware impending failure drive calibration retry count") },
2665	/* D         B    */
2666	{ SST(0x5D, 0x1D, SS_NOP | SSQ_PRINT_SENSE,
2667	    "Hardware impending failure power loss protection circuit") },
2668	/* D         B    */
2669	{ SST(0x5D, 0x20, SS_NOP | SSQ_PRINT_SENSE,
2670	    "Controller impending failure general hard drive failure") },
2671	/* D         B    */
2672	{ SST(0x5D, 0x21, SS_NOP | SSQ_PRINT_SENSE,
2673	    "Controller impending failure drive error rate too high") },
2674	/* D         B    */
2675	{ SST(0x5D, 0x22, SS_NOP | SSQ_PRINT_SENSE,
2676	    "Controller impending failure data error rate too high") },
2677	/* D         B    */
2678	{ SST(0x5D, 0x23, SS_NOP | SSQ_PRINT_SENSE,
2679	    "Controller impending failure seek error rate too high") },
2680	/* D         B    */
2681	{ SST(0x5D, 0x24, SS_NOP | SSQ_PRINT_SENSE,
2682	    "Controller impending failure too many block reassigns") },
2683	/* D         B    */
2684	{ SST(0x5D, 0x25, SS_NOP | SSQ_PRINT_SENSE,
2685	    "Controller impending failure access times too high") },
2686	/* D         B    */
2687	{ SST(0x5D, 0x26, SS_NOP | SSQ_PRINT_SENSE,
2688	    "Controller impending failure start unit times too high") },
2689	/* D         B    */
2690	{ SST(0x5D, 0x27, SS_NOP | SSQ_PRINT_SENSE,
2691	    "Controller impending failure channel parametrics") },
2692	/* D         B    */
2693	{ SST(0x5D, 0x28, SS_NOP | SSQ_PRINT_SENSE,
2694	    "Controller impending failure controller detected") },
2695	/* D         B    */
2696	{ SST(0x5D, 0x29, SS_NOP | SSQ_PRINT_SENSE,
2697	    "Controller impending failure throughput performance") },
2698	/* D         B    */
2699	{ SST(0x5D, 0x2A, SS_NOP | SSQ_PRINT_SENSE,
2700	    "Controller impending failure seek time performance") },
2701	/* D         B    */
2702	{ SST(0x5D, 0x2B, SS_NOP | SSQ_PRINT_SENSE,
2703	    "Controller impending failure spin-up retry count") },
2704	/* D         B    */
2705	{ SST(0x5D, 0x2C, SS_NOP | SSQ_PRINT_SENSE,
2706	    "Controller impending failure drive calibration retry count") },
2707	/* D         B    */
2708	{ SST(0x5D, 0x30, SS_NOP | SSQ_PRINT_SENSE,
2709	    "Data channel impending failure general hard drive failure") },
2710	/* D         B    */
2711	{ SST(0x5D, 0x31, SS_NOP | SSQ_PRINT_SENSE,
2712	    "Data channel impending failure drive error rate too high") },
2713	/* D         B    */
2714	{ SST(0x5D, 0x32, SS_NOP | SSQ_PRINT_SENSE,
2715	    "Data channel impending failure data error rate too high") },
2716	/* D         B    */
2717	{ SST(0x5D, 0x33, SS_NOP | SSQ_PRINT_SENSE,
2718	    "Data channel impending failure seek error rate too high") },
2719	/* D         B    */
2720	{ SST(0x5D, 0x34, SS_NOP | SSQ_PRINT_SENSE,
2721	    "Data channel impending failure too many block reassigns") },
2722	/* D         B    */
2723	{ SST(0x5D, 0x35, SS_NOP | SSQ_PRINT_SENSE,
2724	    "Data channel impending failure access times too high") },
2725	/* D         B    */
2726	{ SST(0x5D, 0x36, SS_NOP | SSQ_PRINT_SENSE,
2727	    "Data channel impending failure start unit times too high") },
2728	/* D         B    */
2729	{ SST(0x5D, 0x37, SS_NOP | SSQ_PRINT_SENSE,
2730	    "Data channel impending failure channel parametrics") },
2731	/* D         B    */
2732	{ SST(0x5D, 0x38, SS_NOP | SSQ_PRINT_SENSE,
2733	    "Data channel impending failure controller detected") },
2734	/* D         B    */
2735	{ SST(0x5D, 0x39, SS_NOP | SSQ_PRINT_SENSE,
2736	    "Data channel impending failure throughput performance") },
2737	/* D         B    */
2738	{ SST(0x5D, 0x3A, SS_NOP | SSQ_PRINT_SENSE,
2739	    "Data channel impending failure seek time performance") },
2740	/* D         B    */
2741	{ SST(0x5D, 0x3B, SS_NOP | SSQ_PRINT_SENSE,
2742	    "Data channel impending failure spin-up retry count") },
2743	/* D         B    */
2744	{ SST(0x5D, 0x3C, SS_NOP | SSQ_PRINT_SENSE,
2745	    "Data channel impending failure drive calibration retry count") },
2746	/* D         B    */
2747	{ SST(0x5D, 0x40, SS_NOP | SSQ_PRINT_SENSE,
2748	    "Servo impending failure general hard drive failure") },
2749	/* D         B    */
2750	{ SST(0x5D, 0x41, SS_NOP | SSQ_PRINT_SENSE,
2751	    "Servo impending failure drive error rate too high") },
2752	/* D         B    */
2753	{ SST(0x5D, 0x42, SS_NOP | SSQ_PRINT_SENSE,
2754	    "Servo impending failure data error rate too high") },
2755	/* D         B    */
2756	{ SST(0x5D, 0x43, SS_NOP | SSQ_PRINT_SENSE,
2757	    "Servo impending failure seek error rate too high") },
2758	/* D         B    */
2759	{ SST(0x5D, 0x44, SS_NOP | SSQ_PRINT_SENSE,
2760	    "Servo impending failure too many block reassigns") },
2761	/* D         B    */
2762	{ SST(0x5D, 0x45, SS_NOP | SSQ_PRINT_SENSE,
2763	    "Servo impending failure access times too high") },
2764	/* D         B    */
2765	{ SST(0x5D, 0x46, SS_NOP | SSQ_PRINT_SENSE,
2766	    "Servo impending failure start unit times too high") },
2767	/* D         B    */
2768	{ SST(0x5D, 0x47, SS_NOP | SSQ_PRINT_SENSE,
2769	    "Servo impending failure channel parametrics") },
2770	/* D         B    */
2771	{ SST(0x5D, 0x48, SS_NOP | SSQ_PRINT_SENSE,
2772	    "Servo impending failure controller detected") },
2773	/* D         B    */
2774	{ SST(0x5D, 0x49, SS_NOP | SSQ_PRINT_SENSE,
2775	    "Servo impending failure throughput performance") },
2776	/* D         B    */
2777	{ SST(0x5D, 0x4A, SS_NOP | SSQ_PRINT_SENSE,
2778	    "Servo impending failure seek time performance") },
2779	/* D         B    */
2780	{ SST(0x5D, 0x4B, SS_NOP | SSQ_PRINT_SENSE,
2781	    "Servo impending failure spin-up retry count") },
2782	/* D         B    */
2783	{ SST(0x5D, 0x4C, SS_NOP | SSQ_PRINT_SENSE,
2784	    "Servo impending failure drive calibration retry count") },
2785	/* D         B    */
2786	{ SST(0x5D, 0x50, SS_NOP | SSQ_PRINT_SENSE,
2787	    "Spindle impending failure general hard drive failure") },
2788	/* D         B    */
2789	{ SST(0x5D, 0x51, SS_NOP | SSQ_PRINT_SENSE,
2790	    "Spindle impending failure drive error rate too high") },
2791	/* D         B    */
2792	{ SST(0x5D, 0x52, SS_NOP | SSQ_PRINT_SENSE,
2793	    "Spindle impending failure data error rate too high") },
2794	/* D         B    */
2795	{ SST(0x5D, 0x53, SS_NOP | SSQ_PRINT_SENSE,
2796	    "Spindle impending failure seek error rate too high") },
2797	/* D         B    */
2798	{ SST(0x5D, 0x54, SS_NOP | SSQ_PRINT_SENSE,
2799	    "Spindle impending failure too many block reassigns") },
2800	/* D         B    */
2801	{ SST(0x5D, 0x55, SS_NOP | SSQ_PRINT_SENSE,
2802	    "Spindle impending failure access times too high") },
2803	/* D         B    */
2804	{ SST(0x5D, 0x56, SS_NOP | SSQ_PRINT_SENSE,
2805	    "Spindle impending failure start unit times too high") },
2806	/* D         B    */
2807	{ SST(0x5D, 0x57, SS_NOP | SSQ_PRINT_SENSE,
2808	    "Spindle impending failure channel parametrics") },
2809	/* D         B    */
2810	{ SST(0x5D, 0x58, SS_NOP | SSQ_PRINT_SENSE,
2811	    "Spindle impending failure controller detected") },
2812	/* D         B    */
2813	{ SST(0x5D, 0x59, SS_NOP | SSQ_PRINT_SENSE,
2814	    "Spindle impending failure throughput performance") },
2815	/* D         B    */
2816	{ SST(0x5D, 0x5A, SS_NOP | SSQ_PRINT_SENSE,
2817	    "Spindle impending failure seek time performance") },
2818	/* D         B    */
2819	{ SST(0x5D, 0x5B, SS_NOP | SSQ_PRINT_SENSE,
2820	    "Spindle impending failure spin-up retry count") },
2821	/* D         B    */
2822	{ SST(0x5D, 0x5C, SS_NOP | SSQ_PRINT_SENSE,
2823	    "Spindle impending failure drive calibration retry count") },
2824	/* D         B    */
2825	{ SST(0x5D, 0x60, SS_NOP | SSQ_PRINT_SENSE,
2826	    "Firmware impending failure general hard drive failure") },
2827	/* D         B    */
2828	{ SST(0x5D, 0x61, SS_NOP | SSQ_PRINT_SENSE,
2829	    "Firmware impending failure drive error rate too high") },
2830	/* D         B    */
2831	{ SST(0x5D, 0x62, SS_NOP | SSQ_PRINT_SENSE,
2832	    "Firmware impending failure data error rate too high") },
2833	/* D         B    */
2834	{ SST(0x5D, 0x63, SS_NOP | SSQ_PRINT_SENSE,
2835	    "Firmware impending failure seek error rate too high") },
2836	/* D         B    */
2837	{ SST(0x5D, 0x64, SS_NOP | SSQ_PRINT_SENSE,
2838	    "Firmware impending failure too many block reassigns") },
2839	/* D         B    */
2840	{ SST(0x5D, 0x65, SS_NOP | SSQ_PRINT_SENSE,
2841	    "Firmware impending failure access times too high") },
2842	/* D         B    */
2843	{ SST(0x5D, 0x66, SS_NOP | SSQ_PRINT_SENSE,
2844	    "Firmware impending failure start unit times too high") },
2845	/* D         B    */
2846	{ SST(0x5D, 0x67, SS_NOP | SSQ_PRINT_SENSE,
2847	    "Firmware impending failure channel parametrics") },
2848	/* D         B    */
2849	{ SST(0x5D, 0x68, SS_NOP | SSQ_PRINT_SENSE,
2850	    "Firmware impending failure controller detected") },
2851	/* D         B    */
2852	{ SST(0x5D, 0x69, SS_NOP | SSQ_PRINT_SENSE,
2853	    "Firmware impending failure throughput performance") },
2854	/* D         B    */
2855	{ SST(0x5D, 0x6A, SS_NOP | SSQ_PRINT_SENSE,
2856	    "Firmware impending failure seek time performance") },
2857	/* D         B    */
2858	{ SST(0x5D, 0x6B, SS_NOP | SSQ_PRINT_SENSE,
2859	    "Firmware impending failure spin-up retry count") },
2860	/* D         B    */
2861	{ SST(0x5D, 0x6C, SS_NOP | SSQ_PRINT_SENSE,
2862	    "Firmware impending failure drive calibration retry count") },
2863	/* D         B    */
2864	{ SST(0x5D, 0x73, SS_NOP | SSQ_PRINT_SENSE,
2865	    "Media impending failure endurance limit met") },
2866	/* DTLPWROMAEBKVF */
2867	{ SST(0x5D, 0xFF, SS_NOP | SSQ_PRINT_SENSE,
2868	    "Failure prediction threshold exceeded (false)") },
2869	/* DTLPWRO A  K   */
2870	{ SST(0x5E, 0x00, SS_RDEF,
2871	    "Low power condition on") },
2872	/* DTLPWRO A  K   */
2873	{ SST(0x5E, 0x01, SS_RDEF,
2874	    "Idle condition activated by timer") },
2875	/* DTLPWRO A  K   */
2876	{ SST(0x5E, 0x02, SS_RDEF,
2877	    "Standby condition activated by timer") },
2878	/* DTLPWRO A  K   */
2879	{ SST(0x5E, 0x03, SS_RDEF,
2880	    "Idle condition activated by command") },
2881	/* DTLPWRO A  K   */
2882	{ SST(0x5E, 0x04, SS_RDEF,
2883	    "Standby condition activated by command") },
2884	/* DTLPWRO A  K   */
2885	{ SST(0x5E, 0x05, SS_RDEF,
2886	    "Idle-B condition activated by timer") },
2887	/* DTLPWRO A  K   */
2888	{ SST(0x5E, 0x06, SS_RDEF,
2889	    "Idle-B condition activated by command") },
2890	/* DTLPWRO A  K   */
2891	{ SST(0x5E, 0x07, SS_RDEF,
2892	    "Idle-C condition activated by timer") },
2893	/* DTLPWRO A  K   */
2894	{ SST(0x5E, 0x08, SS_RDEF,
2895	    "Idle-C condition activated by command") },
2896	/* DTLPWRO A  K   */
2897	{ SST(0x5E, 0x09, SS_RDEF,
2898	    "Standby-Y condition activated by timer") },
2899	/* DTLPWRO A  K   */
2900	{ SST(0x5E, 0x0A, SS_RDEF,
2901	    "Standby-Y condition activated by command") },
2902	/*           B    */
2903	{ SST(0x5E, 0x41, SS_RDEF,	/* XXX TBD */
2904	    "Power state change to active") },
2905	/*           B    */
2906	{ SST(0x5E, 0x42, SS_RDEF,	/* XXX TBD */
2907	    "Power state change to idle") },
2908	/*           B    */
2909	{ SST(0x5E, 0x43, SS_RDEF,	/* XXX TBD */
2910	    "Power state change to standby") },
2911	/*           B    */
2912	{ SST(0x5E, 0x45, SS_RDEF,	/* XXX TBD */
2913	    "Power state change to sleep") },
2914	/*           BK   */
2915	{ SST(0x5E, 0x47, SS_RDEF,	/* XXX TBD */
2916	    "Power state change to device control") },
2917	/*                */
2918	{ SST(0x60, 0x00, SS_RDEF,
2919	    "Lamp failure") },
2920	/*                */
2921	{ SST(0x61, 0x00, SS_RDEF,
2922	    "Video acquisition error") },
2923	/*                */
2924	{ SST(0x61, 0x01, SS_RDEF,
2925	    "Unable to acquire video") },
2926	/*                */
2927	{ SST(0x61, 0x02, SS_RDEF,
2928	    "Out of focus") },
2929	/*                */
2930	{ SST(0x62, 0x00, SS_RDEF,
2931	    "Scan head positioning error") },
2932	/*      R         */
2933	{ SST(0x63, 0x00, SS_RDEF,
2934	    "End of user area encountered on this track") },
2935	/*      R         */
2936	{ SST(0x63, 0x01, SS_FATAL | ENOSPC,
2937	    "Packet does not fit in available space") },
2938	/*      R         */
2939	{ SST(0x64, 0x00, SS_FATAL | ENXIO,
2940	    "Illegal mode for this track") },
2941	/*      R         */
2942	{ SST(0x64, 0x01, SS_RDEF,
2943	    "Invalid packet size") },
2944	/* DTLPWROMAEBKVF */
2945	{ SST(0x65, 0x00, SS_RDEF,
2946	    "Voltage fault") },
2947	/*                */
2948	{ SST(0x66, 0x00, SS_RDEF,
2949	    "Automatic document feeder cover up") },
2950	/*                */
2951	{ SST(0x66, 0x01, SS_RDEF,
2952	    "Automatic document feeder lift up") },
2953	/*                */
2954	{ SST(0x66, 0x02, SS_RDEF,
2955	    "Document jam in automatic document feeder") },
2956	/*                */
2957	{ SST(0x66, 0x03, SS_RDEF,
2958	    "Document miss feed automatic in document feeder") },
2959	/*         A      */
2960	{ SST(0x67, 0x00, SS_RDEF,
2961	    "Configuration failure") },
2962	/*         A      */
2963	{ SST(0x67, 0x01, SS_RDEF,
2964	    "Configuration of incapable logical units failed") },
2965	/*         A      */
2966	{ SST(0x67, 0x02, SS_RDEF,
2967	    "Add logical unit failed") },
2968	/*         A      */
2969	{ SST(0x67, 0x03, SS_RDEF,
2970	    "Modification of logical unit failed") },
2971	/*         A      */
2972	{ SST(0x67, 0x04, SS_RDEF,
2973	    "Exchange of logical unit failed") },
2974	/*         A      */
2975	{ SST(0x67, 0x05, SS_RDEF,
2976	    "Remove of logical unit failed") },
2977	/*         A      */
2978	{ SST(0x67, 0x06, SS_RDEF,
2979	    "Attachment of logical unit failed") },
2980	/*         A      */
2981	{ SST(0x67, 0x07, SS_RDEF,
2982	    "Creation of logical unit failed") },
2983	/*         A      */
2984	{ SST(0x67, 0x08, SS_RDEF,	/* XXX TBD */
2985	    "Assign failure occurred") },
2986	/*         A      */
2987	{ SST(0x67, 0x09, SS_RDEF,	/* XXX TBD */
2988	    "Multiply assigned logical unit") },
2989	/* DTLPWROMAEBKVF */
2990	{ SST(0x67, 0x0A, SS_RDEF,	/* XXX TBD */
2991	    "Set target port groups command failed") },
2992	/* DT        B    */
2993	{ SST(0x67, 0x0B, SS_RDEF,	/* XXX TBD */
2994	    "ATA device feature not enabled") },
2995	/*         A      */
2996	{ SST(0x68, 0x00, SS_RDEF,
2997	    "Logical unit not configured") },
2998	/* D              */
2999	{ SST(0x68, 0x01, SS_RDEF,
3000	    "Subsidiary logical unit not configured") },
3001	/*         A      */
3002	{ SST(0x69, 0x00, SS_RDEF,
3003	    "Data loss on logical unit") },
3004	/*         A      */
3005	{ SST(0x69, 0x01, SS_RDEF,
3006	    "Multiple logical unit failures") },
3007	/*         A      */
3008	{ SST(0x69, 0x02, SS_RDEF,
3009	    "Parity/data mismatch") },
3010	/*         A      */
3011	{ SST(0x6A, 0x00, SS_RDEF,
3012	    "Informational, refer to log") },
3013	/*         A      */
3014	{ SST(0x6B, 0x00, SS_RDEF,
3015	    "State change has occurred") },
3016	/*         A      */
3017	{ SST(0x6B, 0x01, SS_RDEF,
3018	    "Redundancy level got better") },
3019	/*         A      */
3020	{ SST(0x6B, 0x02, SS_RDEF,
3021	    "Redundancy level got worse") },
3022	/*         A      */
3023	{ SST(0x6C, 0x00, SS_RDEF,
3024	    "Rebuild failure occurred") },
3025	/*         A      */
3026	{ SST(0x6D, 0x00, SS_RDEF,
3027	    "Recalculate failure occurred") },
3028	/*         A      */
3029	{ SST(0x6E, 0x00, SS_RDEF,
3030	    "Command to logical unit failed") },
3031	/*      R         */
3032	{ SST(0x6F, 0x00, SS_RDEF,	/* XXX TBD */
3033	    "Copy protection key exchange failure - authentication failure") },
3034	/*      R         */
3035	{ SST(0x6F, 0x01, SS_RDEF,	/* XXX TBD */
3036	    "Copy protection key exchange failure - key not present") },
3037	/*      R         */
3038	{ SST(0x6F, 0x02, SS_RDEF,	/* XXX TBD */
3039	    "Copy protection key exchange failure - key not established") },
3040	/*      R         */
3041	{ SST(0x6F, 0x03, SS_RDEF,	/* XXX TBD */
3042	    "Read of scrambled sector without authentication") },
3043	/*      R         */
3044	{ SST(0x6F, 0x04, SS_RDEF,	/* XXX TBD */
3045	    "Media region code is mismatched to logical unit region") },
3046	/*      R         */
3047	{ SST(0x6F, 0x05, SS_RDEF,	/* XXX TBD */
3048	    "Drive region must be permanent/region reset count error") },
3049	/*      R         */
3050	{ SST(0x6F, 0x06, SS_RDEF,	/* XXX TBD */
3051	    "Insufficient block count for binding NONCE recording") },
3052	/*      R         */
3053	{ SST(0x6F, 0x07, SS_RDEF,	/* XXX TBD */
3054	    "Conflict in binding NONCE recording") },
3055	/*  T             */
3056	{ SST(0x70, 0x00, SS_RDEF,
3057	    "Decompression exception short: ASCQ = Algorithm ID") },
3058	/*  T             */
3059	{ SST(0x70, 0xFF, SS_RDEF | SSQ_RANGE,
3060	    NULL) },			/* Range 0x00 -> 0xFF */
3061	/*  T             */
3062	{ SST(0x71, 0x00, SS_RDEF,
3063	    "Decompression exception long: ASCQ = Algorithm ID") },
3064	/*  T             */
3065	{ SST(0x71, 0xFF, SS_RDEF | SSQ_RANGE,
3066	    NULL) },			/* Range 0x00 -> 0xFF */
3067	/*      R         */
3068	{ SST(0x72, 0x00, SS_RDEF,
3069	    "Session fixation error") },
3070	/*      R         */
3071	{ SST(0x72, 0x01, SS_RDEF,
3072	    "Session fixation error writing lead-in") },
3073	/*      R         */
3074	{ SST(0x72, 0x02, SS_RDEF,
3075	    "Session fixation error writing lead-out") },
3076	/*      R         */
3077	{ SST(0x72, 0x03, SS_RDEF,
3078	    "Session fixation error - incomplete track in session") },
3079	/*      R         */
3080	{ SST(0x72, 0x04, SS_RDEF,
3081	    "Empty or partially written reserved track") },
3082	/*      R         */
3083	{ SST(0x72, 0x05, SS_RDEF,	/* XXX TBD */
3084	    "No more track reservations allowed") },
3085	/*      R         */
3086	{ SST(0x72, 0x06, SS_RDEF,	/* XXX TBD */
3087	    "RMZ extension is not allowed") },
3088	/*      R         */
3089	{ SST(0x72, 0x07, SS_RDEF,	/* XXX TBD */
3090	    "No more test zone extensions are allowed") },
3091	/*      R         */
3092	{ SST(0x73, 0x00, SS_RDEF,
3093	    "CD control error") },
3094	/*      R         */
3095	{ SST(0x73, 0x01, SS_RDEF,
3096	    "Power calibration area almost full") },
3097	/*      R         */
3098	{ SST(0x73, 0x02, SS_FATAL | ENOSPC,
3099	    "Power calibration area is full") },
3100	/*      R         */
3101	{ SST(0x73, 0x03, SS_RDEF,
3102	    "Power calibration area error") },
3103	/*      R         */
3104	{ SST(0x73, 0x04, SS_RDEF,
3105	    "Program memory area update failure") },
3106	/*      R         */
3107	{ SST(0x73, 0x05, SS_RDEF,
3108	    "Program memory area is full") },
3109	/*      R         */
3110	{ SST(0x73, 0x06, SS_RDEF,	/* XXX TBD */
3111	    "RMA/PMA is almost full") },
3112	/*      R         */
3113	{ SST(0x73, 0x10, SS_RDEF,	/* XXX TBD */
3114	    "Current power calibration area almost full") },
3115	/*      R         */
3116	{ SST(0x73, 0x11, SS_RDEF,	/* XXX TBD */
3117	    "Current power calibration area is full") },
3118	/*      R         */
3119	{ SST(0x73, 0x17, SS_RDEF,	/* XXX TBD */
3120	    "RDZ is full") },
3121	/*  T             */
3122	{ SST(0x74, 0x00, SS_RDEF,	/* XXX TBD */
3123	    "Security error") },
3124	/*  T             */
3125	{ SST(0x74, 0x01, SS_RDEF,	/* XXX TBD */
3126	    "Unable to decrypt data") },
3127	/*  T             */
3128	{ SST(0x74, 0x02, SS_RDEF,	/* XXX TBD */
3129	    "Unencrypted data encountered while decrypting") },
3130	/*  T             */
3131	{ SST(0x74, 0x03, SS_RDEF,	/* XXX TBD */
3132	    "Incorrect data encryption key") },
3133	/*  T             */
3134	{ SST(0x74, 0x04, SS_RDEF,	/* XXX TBD */
3135	    "Cryptographic integrity validation failed") },
3136	/*  T             */
3137	{ SST(0x74, 0x05, SS_RDEF,	/* XXX TBD */
3138	    "Error decrypting data") },
3139	/*  T             */
3140	{ SST(0x74, 0x06, SS_RDEF,	/* XXX TBD */
3141	    "Unknown signature verification key") },
3142	/*  T             */
3143	{ SST(0x74, 0x07, SS_RDEF,	/* XXX TBD */
3144	    "Encryption parameters not useable") },
3145	/* DT   R M E  VF */
3146	{ SST(0x74, 0x08, SS_RDEF,	/* XXX TBD */
3147	    "Digital signature validation failure") },
3148	/*  T             */
3149	{ SST(0x74, 0x09, SS_RDEF,	/* XXX TBD */
3150	    "Encryption mode mismatch on read") },
3151	/*  T             */
3152	{ SST(0x74, 0x0A, SS_RDEF,	/* XXX TBD */
3153	    "Encrypted block not raw read enabled") },
3154	/*  T             */
3155	{ SST(0x74, 0x0B, SS_RDEF,	/* XXX TBD */
3156	    "Incorrect encryption parameters") },
3157	/* DT   R MAEBKV  */
3158	{ SST(0x74, 0x0C, SS_RDEF,	/* XXX TBD */
3159	    "Unable to decrypt parameter list") },
3160	/*  T             */
3161	{ SST(0x74, 0x0D, SS_RDEF,	/* XXX TBD */
3162	    "Encryption algorithm disabled") },
3163	/* DT   R MAEBKV  */
3164	{ SST(0x74, 0x10, SS_RDEF,	/* XXX TBD */
3165	    "SA creation parameter value invalid") },
3166	/* DT   R MAEBKV  */
3167	{ SST(0x74, 0x11, SS_RDEF,	/* XXX TBD */
3168	    "SA creation parameter value rejected") },
3169	/* DT   R MAEBKV  */
3170	{ SST(0x74, 0x12, SS_RDEF,	/* XXX TBD */
3171	    "Invalid SA usage") },
3172	/*  T             */
3173	{ SST(0x74, 0x21, SS_RDEF,	/* XXX TBD */
3174	    "Data encryption configuration prevented") },
3175	/* DT   R MAEBKV  */
3176	{ SST(0x74, 0x30, SS_RDEF,	/* XXX TBD */
3177	    "SA creation parameter not supported") },
3178	/* DT   R MAEBKV  */
3179	{ SST(0x74, 0x40, SS_RDEF,	/* XXX TBD */
3180	    "Authentication failed") },
3181	/*             V  */
3182	{ SST(0x74, 0x61, SS_RDEF,	/* XXX TBD */
3183	    "External data encryption key manager access error") },
3184	/*             V  */
3185	{ SST(0x74, 0x62, SS_RDEF,	/* XXX TBD */
3186	    "External data encryption key manager error") },
3187	/*             V  */
3188	{ SST(0x74, 0x63, SS_RDEF,	/* XXX TBD */
3189	    "External data encryption key not found") },
3190	/*             V  */
3191	{ SST(0x74, 0x64, SS_RDEF,	/* XXX TBD */
3192	    "External data encryption request not authorized") },
3193	/*  T             */
3194	{ SST(0x74, 0x6E, SS_RDEF,	/* XXX TBD */
3195	    "External data encryption control timeout") },
3196	/*  T             */
3197	{ SST(0x74, 0x6F, SS_RDEF,	/* XXX TBD */
3198	    "External data encryption control error") },
3199	/* DT   R M E  V  */
3200	{ SST(0x74, 0x71, SS_FATAL | EACCES,
3201	    "Logical unit access not authorized") },
3202	/* D              */
3203	{ SST(0x74, 0x79, SS_FATAL | EACCES,
3204	    "Security conflict in translated device") }
3205};
3206
3207const int asc_table_size = sizeof(asc_table)/sizeof(asc_table[0]);
3208
3209struct asc_key
3210{
3211	int asc;
3212	int ascq;
3213};
3214
3215static int
3216ascentrycomp(const void *key, const void *member)
3217{
3218	int asc;
3219	int ascq;
3220	const struct asc_table_entry *table_entry;
3221
3222	asc = ((const struct asc_key *)key)->asc;
3223	ascq = ((const struct asc_key *)key)->ascq;
3224	table_entry = (const struct asc_table_entry *)member;
3225
3226	if (asc >= table_entry->asc) {
3227
3228		if (asc > table_entry->asc)
3229			return (1);
3230
3231		if (ascq <= table_entry->ascq) {
3232			/* Check for ranges */
3233			if (ascq == table_entry->ascq
3234		 	 || ((table_entry->action & SSQ_RANGE) != 0
3235		  	   && ascq >= (table_entry - 1)->ascq))
3236				return (0);
3237			return (-1);
3238		}
3239		return (1);
3240	}
3241	return (-1);
3242}
3243
3244static int
3245senseentrycomp(const void *key, const void *member)
3246{
3247	int sense_key;
3248	const struct sense_key_table_entry *table_entry;
3249
3250	sense_key = *((const int *)key);
3251	table_entry = (const struct sense_key_table_entry *)member;
3252
3253	if (sense_key >= table_entry->sense_key) {
3254		if (sense_key == table_entry->sense_key)
3255			return (0);
3256		return (1);
3257	}
3258	return (-1);
3259}
3260
3261static void
3262fetchtableentries(int sense_key, int asc, int ascq,
3263		  struct scsi_inquiry_data *inq_data,
3264		  const struct sense_key_table_entry **sense_entry,
3265		  const struct asc_table_entry **asc_entry)
3266{
3267	caddr_t match;
3268	const struct asc_table_entry *asc_tables[2];
3269	const struct sense_key_table_entry *sense_tables[2];
3270	struct asc_key asc_ascq;
3271	size_t asc_tables_size[2];
3272	size_t sense_tables_size[2];
3273	int num_asc_tables;
3274	int num_sense_tables;
3275	int i;
3276
3277	/* Default to failure */
3278	*sense_entry = NULL;
3279	*asc_entry = NULL;
3280	match = NULL;
3281	if (inq_data != NULL)
3282		match = cam_quirkmatch((caddr_t)inq_data,
3283				       (caddr_t)sense_quirk_table,
3284				       sense_quirk_table_size,
3285				       sizeof(*sense_quirk_table),
3286				       scsi_inquiry_match);
3287
3288	if (match != NULL) {
3289		struct scsi_sense_quirk_entry *quirk;
3290
3291		quirk = (struct scsi_sense_quirk_entry *)match;
3292		asc_tables[0] = quirk->asc_info;
3293		asc_tables_size[0] = quirk->num_ascs;
3294		asc_tables[1] = asc_table;
3295		asc_tables_size[1] = asc_table_size;
3296		num_asc_tables = 2;
3297		sense_tables[0] = quirk->sense_key_info;
3298		sense_tables_size[0] = quirk->num_sense_keys;
3299		sense_tables[1] = sense_key_table;
3300		sense_tables_size[1] = sense_key_table_size;
3301		num_sense_tables = 2;
3302	} else {
3303		asc_tables[0] = asc_table;
3304		asc_tables_size[0] = asc_table_size;
3305		num_asc_tables = 1;
3306		sense_tables[0] = sense_key_table;
3307		sense_tables_size[0] = sense_key_table_size;
3308		num_sense_tables = 1;
3309	}
3310
3311	asc_ascq.asc = asc;
3312	asc_ascq.ascq = ascq;
3313	for (i = 0; i < num_asc_tables; i++) {
3314		void *found_entry;
3315
3316		found_entry = bsearch(&asc_ascq, asc_tables[i],
3317				      asc_tables_size[i],
3318				      sizeof(**asc_tables),
3319				      ascentrycomp);
3320
3321		if (found_entry) {
3322			*asc_entry = (struct asc_table_entry *)found_entry;
3323			break;
3324		}
3325	}
3326
3327	for (i = 0; i < num_sense_tables; i++) {
3328		void *found_entry;
3329
3330		found_entry = bsearch(&sense_key, sense_tables[i],
3331				      sense_tables_size[i],
3332				      sizeof(**sense_tables),
3333				      senseentrycomp);
3334
3335		if (found_entry) {
3336			*sense_entry =
3337			    (struct sense_key_table_entry *)found_entry;
3338			break;
3339		}
3340	}
3341}
3342
3343void
3344scsi_sense_desc(int sense_key, int asc, int ascq,
3345		struct scsi_inquiry_data *inq_data,
3346		const char **sense_key_desc, const char **asc_desc)
3347{
3348	const struct asc_table_entry *asc_entry;
3349	const struct sense_key_table_entry *sense_entry;
3350
3351	fetchtableentries(sense_key, asc, ascq,
3352			  inq_data,
3353			  &sense_entry,
3354			  &asc_entry);
3355
3356	if (sense_entry != NULL)
3357		*sense_key_desc = sense_entry->desc;
3358	else
3359		*sense_key_desc = "Invalid Sense Key";
3360
3361	if (asc_entry != NULL)
3362		*asc_desc = asc_entry->desc;
3363	else if (asc >= 0x80 && asc <= 0xff)
3364		*asc_desc = "Vendor Specific ASC";
3365	else if (ascq >= 0x80 && ascq <= 0xff)
3366		*asc_desc = "Vendor Specific ASCQ";
3367	else
3368		*asc_desc = "Reserved ASC/ASCQ pair";
3369}
3370
3371/*
3372 * Given sense and device type information, return the appropriate action.
3373 * If we do not understand the specific error as identified by the ASC/ASCQ
3374 * pair, fall back on the more generic actions derived from the sense key.
3375 */
3376scsi_sense_action
3377scsi_error_action(struct ccb_scsiio *csio, struct scsi_inquiry_data *inq_data,
3378		  u_int32_t sense_flags)
3379{
3380	const struct asc_table_entry *asc_entry;
3381	const struct sense_key_table_entry *sense_entry;
3382	int error_code, sense_key, asc, ascq;
3383	scsi_sense_action action;
3384
3385	if (!scsi_extract_sense_ccb((union ccb *)csio,
3386	    &error_code, &sense_key, &asc, &ascq)) {
3387		action = SS_RETRY | SSQ_DECREMENT_COUNT | SSQ_PRINT_SENSE | EIO;
3388	} else if ((error_code == SSD_DEFERRED_ERROR)
3389	 || (error_code == SSD_DESC_DEFERRED_ERROR)) {
3390		/*
3391		 * XXX dufault@FreeBSD.org
3392		 * This error doesn't relate to the command associated
3393		 * with this request sense.  A deferred error is an error
3394		 * for a command that has already returned GOOD status
3395		 * (see SCSI2 8.2.14.2).
3396		 *
3397		 * By my reading of that section, it looks like the current
3398		 * command has been cancelled, we should now clean things up
3399		 * (hopefully recovering any lost data) and then retry the
3400		 * current command.  There are two easy choices, both wrong:
3401		 *
3402		 * 1. Drop through (like we had been doing), thus treating
3403		 *    this as if the error were for the current command and
3404		 *    return and stop the current command.
3405		 *
3406		 * 2. Issue a retry (like I made it do) thus hopefully
3407		 *    recovering the current transfer, and ignoring the
3408		 *    fact that we've dropped a command.
3409		 *
3410		 * These should probably be handled in a device specific
3411		 * sense handler or punted back up to a user mode daemon
3412		 */
3413		action = SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE;
3414	} else {
3415		fetchtableentries(sense_key, asc, ascq,
3416				  inq_data,
3417				  &sense_entry,
3418				  &asc_entry);
3419
3420		/*
3421		 * Override the 'No additional Sense' entry (0,0)
3422		 * with the error action of the sense key.
3423		 */
3424		if (asc_entry != NULL
3425		 && (asc != 0 || ascq != 0))
3426			action = asc_entry->action;
3427		else if (sense_entry != NULL)
3428			action = sense_entry->action;
3429		else
3430			action = SS_RETRY|SSQ_DECREMENT_COUNT|SSQ_PRINT_SENSE;
3431
3432		if (sense_key == SSD_KEY_RECOVERED_ERROR) {
3433			/*
3434			 * The action succeeded but the device wants
3435			 * the user to know that some recovery action
3436			 * was required.
3437			 */
3438			action &= ~(SS_MASK|SSQ_MASK|SS_ERRMASK);
3439			action |= SS_NOP|SSQ_PRINT_SENSE;
3440		} else if (sense_key == SSD_KEY_ILLEGAL_REQUEST) {
3441			if ((sense_flags & SF_QUIET_IR) != 0)
3442				action &= ~SSQ_PRINT_SENSE;
3443		} else if (sense_key == SSD_KEY_UNIT_ATTENTION) {
3444			if ((sense_flags & SF_RETRY_UA) != 0
3445			 && (action & SS_MASK) == SS_FAIL) {
3446				action &= ~(SS_MASK|SSQ_MASK);
3447				action |= SS_RETRY|SSQ_DECREMENT_COUNT|
3448					  SSQ_PRINT_SENSE;
3449			}
3450			action |= SSQ_UA;
3451		}
3452	}
3453	if ((action & SS_MASK) >= SS_START &&
3454	    (sense_flags & SF_NO_RECOVERY)) {
3455		action &= ~SS_MASK;
3456		action |= SS_FAIL;
3457	} else if ((action & SS_MASK) == SS_RETRY &&
3458	    (sense_flags & SF_NO_RETRY)) {
3459		action &= ~SS_MASK;
3460		action |= SS_FAIL;
3461	}
3462	if ((sense_flags & SF_PRINT_ALWAYS) != 0)
3463		action |= SSQ_PRINT_SENSE;
3464	else if ((sense_flags & SF_NO_PRINT) != 0)
3465		action &= ~SSQ_PRINT_SENSE;
3466
3467	return (action);
3468}
3469
3470char *
3471scsi_cdb_string(u_int8_t *cdb_ptr, char *cdb_string, size_t len)
3472{
3473	struct sbuf sb;
3474	int error;
3475
3476	if (len == 0)
3477		return ("");
3478
3479	sbuf_new(&sb, cdb_string, len, SBUF_FIXEDLEN);
3480
3481	scsi_cdb_sbuf(cdb_ptr, &sb);
3482
3483	/* ENOMEM just means that the fixed buffer is full, OK to ignore */
3484	error = sbuf_finish(&sb);
3485	if (error != 0 && error != ENOMEM)
3486		return ("");
3487
3488	return(sbuf_data(&sb));
3489}
3490
3491void
3492scsi_cdb_sbuf(u_int8_t *cdb_ptr, struct sbuf *sb)
3493{
3494	u_int8_t cdb_len;
3495	int i;
3496
3497	if (cdb_ptr == NULL)
3498		return;
3499
3500	/*
3501	 * This is taken from the SCSI-3 draft spec.
3502	 * (T10/1157D revision 0.3)
3503	 * The top 3 bits of an opcode are the group code.  The next 5 bits
3504	 * are the command code.
3505	 * Group 0:  six byte commands
3506	 * Group 1:  ten byte commands
3507	 * Group 2:  ten byte commands
3508	 * Group 3:  reserved
3509	 * Group 4:  sixteen byte commands
3510	 * Group 5:  twelve byte commands
3511	 * Group 6:  vendor specific
3512	 * Group 7:  vendor specific
3513	 */
3514	switch((*cdb_ptr >> 5) & 0x7) {
3515		case 0:
3516			cdb_len = 6;
3517			break;
3518		case 1:
3519		case 2:
3520			cdb_len = 10;
3521			break;
3522		case 3:
3523		case 6:
3524		case 7:
3525			/* in this case, just print out the opcode */
3526			cdb_len = 1;
3527			break;
3528		case 4:
3529			cdb_len = 16;
3530			break;
3531		case 5:
3532			cdb_len = 12;
3533			break;
3534	}
3535
3536	for (i = 0; i < cdb_len; i++)
3537		sbuf_printf(sb, "%02hhx ", cdb_ptr[i]);
3538
3539	return;
3540}
3541
3542const char *
3543scsi_status_string(struct ccb_scsiio *csio)
3544{
3545	switch(csio->scsi_status) {
3546	case SCSI_STATUS_OK:
3547		return("OK");
3548	case SCSI_STATUS_CHECK_COND:
3549		return("Check Condition");
3550	case SCSI_STATUS_BUSY:
3551		return("Busy");
3552	case SCSI_STATUS_INTERMED:
3553		return("Intermediate");
3554	case SCSI_STATUS_INTERMED_COND_MET:
3555		return("Intermediate-Condition Met");
3556	case SCSI_STATUS_RESERV_CONFLICT:
3557		return("Reservation Conflict");
3558	case SCSI_STATUS_CMD_TERMINATED:
3559		return("Command Terminated");
3560	case SCSI_STATUS_QUEUE_FULL:
3561		return("Queue Full");
3562	case SCSI_STATUS_ACA_ACTIVE:
3563		return("ACA Active");
3564	case SCSI_STATUS_TASK_ABORTED:
3565		return("Task Aborted");
3566	default: {
3567		static char unkstr[64];
3568		snprintf(unkstr, sizeof(unkstr), "Unknown %#x",
3569			 csio->scsi_status);
3570		return(unkstr);
3571	}
3572	}
3573}
3574
3575/*
3576 * scsi_command_string() returns 0 for success and -1 for failure.
3577 */
3578#ifdef _KERNEL
3579int
3580scsi_command_string(struct ccb_scsiio *csio, struct sbuf *sb)
3581#else /* !_KERNEL */
3582int
3583scsi_command_string(struct cam_device *device, struct ccb_scsiio *csio,
3584		    struct sbuf *sb)
3585#endif /* _KERNEL/!_KERNEL */
3586{
3587	struct scsi_inquiry_data *inq_data;
3588#ifdef _KERNEL
3589	struct	  ccb_getdev *cgd;
3590#endif /* _KERNEL */
3591
3592#ifdef _KERNEL
3593	if ((cgd = (struct ccb_getdev*)xpt_alloc_ccb_nowait()) == NULL)
3594		return(-1);
3595	/*
3596	 * Get the device information.
3597	 */
3598	xpt_setup_ccb(&cgd->ccb_h,
3599		      csio->ccb_h.path,
3600		      CAM_PRIORITY_NORMAL);
3601	cgd->ccb_h.func_code = XPT_GDEV_TYPE;
3602	xpt_action((union ccb *)cgd);
3603
3604	/*
3605	 * If the device is unconfigured, just pretend that it is a hard
3606	 * drive.  scsi_op_desc() needs this.
3607	 */
3608	if (cgd->ccb_h.status == CAM_DEV_NOT_THERE)
3609		cgd->inq_data.device = T_DIRECT;
3610
3611	inq_data = &cgd->inq_data;
3612
3613#else /* !_KERNEL */
3614
3615	inq_data = &device->inq_data;
3616
3617#endif /* _KERNEL/!_KERNEL */
3618
3619	if ((csio->ccb_h.flags & CAM_CDB_POINTER) != 0) {
3620		sbuf_printf(sb, "%s. CDB: ",
3621			    scsi_op_desc(csio->cdb_io.cdb_ptr[0], inq_data));
3622		scsi_cdb_sbuf(csio->cdb_io.cdb_ptr, sb);
3623	} else {
3624		sbuf_printf(sb, "%s. CDB: ",
3625			    scsi_op_desc(csio->cdb_io.cdb_bytes[0], inq_data));
3626		scsi_cdb_sbuf(csio->cdb_io.cdb_bytes, sb);
3627	}
3628
3629#ifdef _KERNEL
3630	xpt_free_ccb((union ccb *)cgd);
3631#endif
3632
3633	return(0);
3634}
3635
3636/*
3637 * Iterate over sense descriptors.  Each descriptor is passed into iter_func().
3638 * If iter_func() returns 0, list traversal continues.  If iter_func()
3639 * returns non-zero, list traversal is stopped.
3640 */
3641void
3642scsi_desc_iterate(struct scsi_sense_data_desc *sense, u_int sense_len,
3643		  int (*iter_func)(struct scsi_sense_data_desc *sense,
3644				   u_int, struct scsi_sense_desc_header *,
3645				   void *), void *arg)
3646{
3647	int cur_pos;
3648	int desc_len;
3649
3650	/*
3651	 * First make sure the extra length field is present.
3652	 */
3653	if (SSD_DESC_IS_PRESENT(sense, sense_len, extra_len) == 0)
3654		return;
3655
3656	/*
3657	 * The length of data actually returned may be different than the
3658	 * extra_len recorded in the structure.
3659	 */
3660	desc_len = sense_len -offsetof(struct scsi_sense_data_desc, sense_desc);
3661
3662	/*
3663	 * Limit this further by the extra length reported, and the maximum
3664	 * allowed extra length.
3665	 */
3666	desc_len = MIN(desc_len, MIN(sense->extra_len, SSD_EXTRA_MAX));
3667
3668	/*
3669	 * Subtract the size of the header from the descriptor length.
3670	 * This is to ensure that we have at least the header left, so we
3671	 * don't have to check that inside the loop.  This can wind up
3672	 * being a negative value.
3673	 */
3674	desc_len -= sizeof(struct scsi_sense_desc_header);
3675
3676	for (cur_pos = 0; cur_pos < desc_len;) {
3677		struct scsi_sense_desc_header *header;
3678
3679		header = (struct scsi_sense_desc_header *)
3680			&sense->sense_desc[cur_pos];
3681
3682		/*
3683		 * Check to make sure we have the entire descriptor.  We
3684		 * don't call iter_func() unless we do.
3685		 *
3686		 * Note that although cur_pos is at the beginning of the
3687		 * descriptor, desc_len already has the header length
3688		 * subtracted.  So the comparison of the length in the
3689		 * header (which does not include the header itself) to
3690		 * desc_len - cur_pos is correct.
3691		 */
3692		if (header->length > (desc_len - cur_pos))
3693			break;
3694
3695		if (iter_func(sense, sense_len, header, arg) != 0)
3696			break;
3697
3698		cur_pos += sizeof(*header) + header->length;
3699	}
3700}
3701
3702struct scsi_find_desc_info {
3703	uint8_t desc_type;
3704	struct scsi_sense_desc_header *header;
3705};
3706
3707static int
3708scsi_find_desc_func(struct scsi_sense_data_desc *sense, u_int sense_len,
3709		    struct scsi_sense_desc_header *header, void *arg)
3710{
3711	struct scsi_find_desc_info *desc_info;
3712
3713	desc_info = (struct scsi_find_desc_info *)arg;
3714
3715	if (header->desc_type == desc_info->desc_type) {
3716		desc_info->header = header;
3717
3718		/* We found the descriptor, tell the iterator to stop. */
3719		return (1);
3720	} else
3721		return (0);
3722}
3723
3724/*
3725 * Given a descriptor type, return a pointer to it if it is in the sense
3726 * data and not truncated.  Avoiding truncating sense data will simplify
3727 * things significantly for the caller.
3728 */
3729uint8_t *
3730scsi_find_desc(struct scsi_sense_data_desc *sense, u_int sense_len,
3731	       uint8_t desc_type)
3732{
3733	struct scsi_find_desc_info desc_info;
3734
3735	desc_info.desc_type = desc_type;
3736	desc_info.header = NULL;
3737
3738	scsi_desc_iterate(sense, sense_len, scsi_find_desc_func, &desc_info);
3739
3740	return ((uint8_t *)desc_info.header);
3741}
3742
3743/*
3744 * Fill in SCSI sense data with the specified parameters.  This routine can
3745 * fill in either fixed or descriptor type sense data.
3746 */
3747void
3748scsi_set_sense_data_va(struct scsi_sense_data *sense_data,
3749		      scsi_sense_data_type sense_format, int current_error,
3750		      int sense_key, int asc, int ascq, va_list ap)
3751{
3752	int descriptor_sense;
3753	scsi_sense_elem_type elem_type;
3754
3755	/*
3756	 * Determine whether to return fixed or descriptor format sense
3757	 * data.  If the user specifies SSD_TYPE_NONE for some reason,
3758	 * they'll just get fixed sense data.
3759	 */
3760	if (sense_format == SSD_TYPE_DESC)
3761		descriptor_sense = 1;
3762	else
3763		descriptor_sense = 0;
3764
3765	/*
3766	 * Zero the sense data, so that we don't pass back any garbage data
3767	 * to the user.
3768	 */
3769	memset(sense_data, 0, sizeof(*sense_data));
3770
3771	if (descriptor_sense != 0) {
3772		struct scsi_sense_data_desc *sense;
3773
3774		sense = (struct scsi_sense_data_desc *)sense_data;
3775		/*
3776		 * The descriptor sense format eliminates the use of the
3777		 * valid bit.
3778		 */
3779		if (current_error != 0)
3780			sense->error_code = SSD_DESC_CURRENT_ERROR;
3781		else
3782			sense->error_code = SSD_DESC_DEFERRED_ERROR;
3783		sense->sense_key = sense_key;
3784		sense->add_sense_code = asc;
3785		sense->add_sense_code_qual = ascq;
3786		/*
3787		 * Start off with no extra length, since the above data
3788		 * fits in the standard descriptor sense information.
3789		 */
3790		sense->extra_len = 0;
3791		while ((elem_type = (scsi_sense_elem_type)va_arg(ap,
3792			scsi_sense_elem_type)) != SSD_ELEM_NONE) {
3793			int sense_len, len_to_copy;
3794			uint8_t *data;
3795
3796			if (elem_type >= SSD_ELEM_MAX) {
3797				printf("%s: invalid sense type %d\n", __func__,
3798				       elem_type);
3799				break;
3800			}
3801
3802			sense_len = (int)va_arg(ap, int);
3803			len_to_copy = MIN(sense_len, SSD_EXTRA_MAX -
3804					  sense->extra_len);
3805			data = (uint8_t *)va_arg(ap, uint8_t *);
3806
3807			/*
3808			 * We've already consumed the arguments for this one.
3809			 */
3810			if (elem_type == SSD_ELEM_SKIP)
3811				continue;
3812
3813			switch (elem_type) {
3814			case SSD_ELEM_DESC: {
3815
3816				/*
3817				 * This is a straight descriptor.  All we
3818				 * need to do is copy the data in.
3819				 */
3820				bcopy(data, &sense->sense_desc[
3821				      sense->extra_len], len_to_copy);
3822				sense->extra_len += len_to_copy;
3823				break;
3824			}
3825			case SSD_ELEM_SKS: {
3826				struct scsi_sense_sks sks;
3827
3828				bzero(&sks, sizeof(sks));
3829
3830				/*
3831				 * This is already-formatted sense key
3832				 * specific data.  We just need to fill out
3833				 * the header and copy everything in.
3834				 */
3835				bcopy(data, &sks.sense_key_spec,
3836				      MIN(len_to_copy,
3837				          sizeof(sks.sense_key_spec)));
3838
3839				sks.desc_type = SSD_DESC_SKS;
3840				sks.length = sizeof(sks) -
3841				    offsetof(struct scsi_sense_sks, reserved1);
3842				bcopy(&sks,&sense->sense_desc[sense->extra_len],
3843				      sizeof(sks));
3844				sense->extra_len += sizeof(sks);
3845				break;
3846			}
3847			case SSD_ELEM_INFO:
3848			case SSD_ELEM_COMMAND: {
3849				struct scsi_sense_command cmd;
3850				struct scsi_sense_info info;
3851				uint8_t *data_dest;
3852				uint8_t *descriptor;
3853				int descriptor_size, i, copy_len;
3854
3855				bzero(&cmd, sizeof(cmd));
3856				bzero(&info, sizeof(info));
3857
3858				/*
3859				 * Command or information data.  The
3860				 * operate in pretty much the same way.
3861				 */
3862				if (elem_type == SSD_ELEM_COMMAND) {
3863					len_to_copy = MIN(len_to_copy,
3864					    sizeof(cmd.command_info));
3865					descriptor = (uint8_t *)&cmd;
3866					descriptor_size  = sizeof(cmd);
3867					data_dest =(uint8_t *)&cmd.command_info;
3868					cmd.desc_type = SSD_DESC_COMMAND;
3869					cmd.length = sizeof(cmd) -
3870					    offsetof(struct scsi_sense_command,
3871						     reserved);
3872				} else {
3873					len_to_copy = MIN(len_to_copy,
3874					    sizeof(info.info));
3875					descriptor = (uint8_t *)&info;
3876					descriptor_size = sizeof(cmd);
3877					data_dest = (uint8_t *)&info.info;
3878					info.desc_type = SSD_DESC_INFO;
3879					info.byte2 = SSD_INFO_VALID;
3880					info.length = sizeof(info) -
3881					    offsetof(struct scsi_sense_info,
3882						     byte2);
3883				}
3884
3885				/*
3886				 * Copy this in reverse because the spec
3887				 * (SPC-4) says that when 4 byte quantities
3888				 * are stored in this 8 byte field, the
3889				 * first four bytes shall be 0.
3890				 *
3891				 * So we fill the bytes in from the end, and
3892				 * if we have less than 8 bytes to copy,
3893				 * the initial, most significant bytes will
3894				 * be 0.
3895				 */
3896				for (i = sense_len - 1; i >= 0 &&
3897				     len_to_copy > 0; i--, len_to_copy--)
3898					data_dest[len_to_copy - 1] = data[i];
3899
3900				/*
3901				 * This calculation looks much like the
3902				 * initial len_to_copy calculation, but
3903				 * we have to do it again here, because
3904				 * we're looking at a larger amount that
3905				 * may or may not fit.  It's not only the
3906				 * data the user passed in, but also the
3907				 * rest of the descriptor.
3908				 */
3909				copy_len = MIN(descriptor_size,
3910				    SSD_EXTRA_MAX - sense->extra_len);
3911				bcopy(descriptor, &sense->sense_desc[
3912				      sense->extra_len], copy_len);
3913				sense->extra_len += copy_len;
3914				break;
3915			}
3916			case SSD_ELEM_FRU: {
3917				struct scsi_sense_fru fru;
3918				int copy_len;
3919
3920				bzero(&fru, sizeof(fru));
3921
3922				fru.desc_type = SSD_DESC_FRU;
3923				fru.length = sizeof(fru) -
3924				    offsetof(struct scsi_sense_fru, reserved);
3925				fru.fru = *data;
3926
3927				copy_len = MIN(sizeof(fru), SSD_EXTRA_MAX -
3928					       sense->extra_len);
3929				bcopy(&fru, &sense->sense_desc[
3930				      sense->extra_len], copy_len);
3931				sense->extra_len += copy_len;
3932				break;
3933			}
3934			case SSD_ELEM_STREAM: {
3935				struct scsi_sense_stream stream_sense;
3936				int copy_len;
3937
3938				bzero(&stream_sense, sizeof(stream_sense));
3939				stream_sense.desc_type = SSD_DESC_STREAM;
3940				stream_sense.length = sizeof(stream_sense) -
3941				   offsetof(struct scsi_sense_stream, reserved);
3942				stream_sense.byte3 = *data;
3943
3944				copy_len = MIN(sizeof(stream_sense),
3945				    SSD_EXTRA_MAX - sense->extra_len);
3946				bcopy(&stream_sense, &sense->sense_desc[
3947				      sense->extra_len], copy_len);
3948				sense->extra_len += copy_len;
3949				break;
3950			}
3951			default:
3952				/*
3953				 * We shouldn't get here, but if we do, do
3954				 * nothing.  We've already consumed the
3955				 * arguments above.
3956				 */
3957				break;
3958			}
3959		}
3960	} else {
3961		struct scsi_sense_data_fixed *sense;
3962
3963		sense = (struct scsi_sense_data_fixed *)sense_data;
3964
3965		if (current_error != 0)
3966			sense->error_code = SSD_CURRENT_ERROR;
3967		else
3968			sense->error_code = SSD_DEFERRED_ERROR;
3969
3970		sense->flags = sense_key;
3971		sense->add_sense_code = asc;
3972		sense->add_sense_code_qual = ascq;
3973		/*
3974		 * We've set the ASC and ASCQ, so we have 6 more bytes of
3975		 * valid data.  If we wind up setting any of the other
3976		 * fields, we'll bump this to 10 extra bytes.
3977		 */
3978		sense->extra_len = 6;
3979
3980		while ((elem_type = (scsi_sense_elem_type)va_arg(ap,
3981			scsi_sense_elem_type)) != SSD_ELEM_NONE) {
3982			int sense_len, len_to_copy;
3983			uint8_t *data;
3984
3985			if (elem_type >= SSD_ELEM_MAX) {
3986				printf("%s: invalid sense type %d\n", __func__,
3987				       elem_type);
3988				break;
3989			}
3990			/*
3991			 * If we get in here, just bump the extra length to
3992			 * 10 bytes.  That will encompass anything we're
3993			 * going to set here.
3994			 */
3995			sense->extra_len = 10;
3996			sense_len = (int)va_arg(ap, int);
3997			data = (uint8_t *)va_arg(ap, uint8_t *);
3998
3999			switch (elem_type) {
4000			case SSD_ELEM_SKS:
4001				/*
4002				 * The user passed in pre-formatted sense
4003				 * key specific data.
4004				 */
4005				bcopy(data, &sense->sense_key_spec[0],
4006				      MIN(sizeof(sense->sense_key_spec),
4007				      sense_len));
4008				break;
4009			case SSD_ELEM_INFO:
4010			case SSD_ELEM_COMMAND: {
4011				uint8_t *data_dest;
4012				int i;
4013
4014				if (elem_type == SSD_ELEM_COMMAND) {
4015					data_dest = &sense->cmd_spec_info[0];
4016					len_to_copy = MIN(sense_len,
4017					    sizeof(sense->cmd_spec_info));
4018				} else {
4019					data_dest = &sense->info[0];
4020					len_to_copy = MIN(sense_len,
4021					    sizeof(sense->info));
4022
4023					/* Set VALID bit only if no overflow. */
4024					for (i = 0; i < sense_len - len_to_copy;
4025					    i++) {
4026						if (data[i] != 0)
4027							break;
4028					}
4029					if (i >= sense_len - len_to_copy) {
4030						sense->error_code |=
4031						    SSD_ERRCODE_VALID;
4032					}
4033				}
4034
4035				/*
4036			 	 * Copy this in reverse so that if we have
4037				 * less than 4 bytes to fill, the least
4038				 * significant bytes will be at the end.
4039				 * If we have more than 4 bytes, only the
4040				 * least significant bytes will be included.
4041				 */
4042				for (i = sense_len - 1; i >= 0 &&
4043				     len_to_copy > 0; i--, len_to_copy--)
4044					data_dest[len_to_copy - 1] = data[i];
4045
4046				break;
4047			}
4048			case SSD_ELEM_FRU:
4049				sense->fru = *data;
4050				break;
4051			case SSD_ELEM_STREAM:
4052				sense->flags |= *data;
4053				break;
4054			case SSD_ELEM_DESC:
4055			default:
4056
4057				/*
4058				 * If the user passes in descriptor sense,
4059				 * we can't handle that in fixed format.
4060				 * So just skip it, and any unknown argument
4061				 * types.
4062				 */
4063				break;
4064			}
4065		}
4066	}
4067}
4068
4069void
4070scsi_set_sense_data(struct scsi_sense_data *sense_data,
4071		    scsi_sense_data_type sense_format, int current_error,
4072		    int sense_key, int asc, int ascq, ...)
4073{
4074	va_list ap;
4075
4076	va_start(ap, ascq);
4077	scsi_set_sense_data_va(sense_data, sense_format, current_error,
4078			       sense_key, asc, ascq, ap);
4079	va_end(ap);
4080}
4081
4082/*
4083 * Get sense information for three similar sense data types.
4084 */
4085int
4086scsi_get_sense_info(struct scsi_sense_data *sense_data, u_int sense_len,
4087		    uint8_t info_type, uint64_t *info, int64_t *signed_info)
4088{
4089	scsi_sense_data_type sense_type;
4090
4091	if (sense_len == 0)
4092		goto bailout;
4093
4094	sense_type = scsi_sense_type(sense_data);
4095
4096	switch (sense_type) {
4097	case SSD_TYPE_DESC: {
4098		struct scsi_sense_data_desc *sense;
4099		uint8_t *desc;
4100
4101		sense = (struct scsi_sense_data_desc *)sense_data;
4102
4103		desc = scsi_find_desc(sense, sense_len, info_type);
4104		if (desc == NULL)
4105			goto bailout;
4106
4107		switch (info_type) {
4108		case SSD_DESC_INFO: {
4109			struct scsi_sense_info *info_desc;
4110
4111			info_desc = (struct scsi_sense_info *)desc;
4112			*info = scsi_8btou64(info_desc->info);
4113			if (signed_info != NULL)
4114				*signed_info = *info;
4115			break;
4116		}
4117		case SSD_DESC_COMMAND: {
4118			struct scsi_sense_command *cmd_desc;
4119
4120			cmd_desc = (struct scsi_sense_command *)desc;
4121
4122			*info = scsi_8btou64(cmd_desc->command_info);
4123			if (signed_info != NULL)
4124				*signed_info = *info;
4125			break;
4126		}
4127		case SSD_DESC_FRU: {
4128			struct scsi_sense_fru *fru_desc;
4129
4130			fru_desc = (struct scsi_sense_fru *)desc;
4131
4132			*info = fru_desc->fru;
4133			if (signed_info != NULL)
4134				*signed_info = (int8_t)fru_desc->fru;
4135			break;
4136		}
4137		default:
4138			goto bailout;
4139			break;
4140		}
4141		break;
4142	}
4143	case SSD_TYPE_FIXED: {
4144		struct scsi_sense_data_fixed *sense;
4145
4146		sense = (struct scsi_sense_data_fixed *)sense_data;
4147
4148		switch (info_type) {
4149		case SSD_DESC_INFO: {
4150			uint32_t info_val;
4151
4152			if ((sense->error_code & SSD_ERRCODE_VALID) == 0)
4153				goto bailout;
4154
4155			if (SSD_FIXED_IS_PRESENT(sense, sense_len, info) == 0)
4156				goto bailout;
4157
4158			info_val = scsi_4btoul(sense->info);
4159
4160			*info = info_val;
4161			if (signed_info != NULL)
4162				*signed_info = (int32_t)info_val;
4163			break;
4164		}
4165		case SSD_DESC_COMMAND: {
4166			uint32_t cmd_val;
4167
4168			if ((SSD_FIXED_IS_PRESENT(sense, sense_len,
4169			     cmd_spec_info) == 0)
4170			 || (SSD_FIXED_IS_FILLED(sense, cmd_spec_info) == 0))
4171				goto bailout;
4172
4173			cmd_val = scsi_4btoul(sense->cmd_spec_info);
4174			if (cmd_val == 0)
4175				goto bailout;
4176
4177			*info = cmd_val;
4178			if (signed_info != NULL)
4179				*signed_info = (int32_t)cmd_val;
4180			break;
4181		}
4182		case SSD_DESC_FRU:
4183			if ((SSD_FIXED_IS_PRESENT(sense, sense_len, fru) == 0)
4184			 || (SSD_FIXED_IS_FILLED(sense, fru) == 0))
4185				goto bailout;
4186
4187			if (sense->fru == 0)
4188				goto bailout;
4189
4190			*info = sense->fru;
4191			if (signed_info != NULL)
4192				*signed_info = (int8_t)sense->fru;
4193			break;
4194		default:
4195			goto bailout;
4196			break;
4197		}
4198		break;
4199	}
4200	default:
4201		goto bailout;
4202		break;
4203	}
4204
4205	return (0);
4206bailout:
4207	return (1);
4208}
4209
4210int
4211scsi_get_sks(struct scsi_sense_data *sense_data, u_int sense_len, uint8_t *sks)
4212{
4213	scsi_sense_data_type sense_type;
4214
4215	if (sense_len == 0)
4216		goto bailout;
4217
4218	sense_type = scsi_sense_type(sense_data);
4219
4220	switch (sense_type) {
4221	case SSD_TYPE_DESC: {
4222		struct scsi_sense_data_desc *sense;
4223		struct scsi_sense_sks *desc;
4224
4225		sense = (struct scsi_sense_data_desc *)sense_data;
4226
4227		desc = (struct scsi_sense_sks *)scsi_find_desc(sense, sense_len,
4228							       SSD_DESC_SKS);
4229		if (desc == NULL)
4230			goto bailout;
4231
4232		/*
4233		 * No need to check the SKS valid bit for descriptor sense.
4234		 * If the descriptor is present, it is valid.
4235		 */
4236		bcopy(desc->sense_key_spec, sks, sizeof(desc->sense_key_spec));
4237		break;
4238	}
4239	case SSD_TYPE_FIXED: {
4240		struct scsi_sense_data_fixed *sense;
4241
4242		sense = (struct scsi_sense_data_fixed *)sense_data;
4243
4244		if ((SSD_FIXED_IS_PRESENT(sense, sense_len, sense_key_spec)== 0)
4245		 || (SSD_FIXED_IS_FILLED(sense, sense_key_spec) == 0))
4246			goto bailout;
4247
4248		if ((sense->sense_key_spec[0] & SSD_SCS_VALID) == 0)
4249			goto bailout;
4250
4251		bcopy(sense->sense_key_spec, sks,sizeof(sense->sense_key_spec));
4252		break;
4253	}
4254	default:
4255		goto bailout;
4256		break;
4257	}
4258	return (0);
4259bailout:
4260	return (1);
4261}
4262
4263/*
4264 * Provide a common interface for fixed and descriptor sense to detect
4265 * whether we have block-specific sense information.  It is clear by the
4266 * presence of the block descriptor in descriptor mode, but we have to
4267 * infer from the inquiry data and ILI bit in fixed mode.
4268 */
4269int
4270scsi_get_block_info(struct scsi_sense_data *sense_data, u_int sense_len,
4271		    struct scsi_inquiry_data *inq_data, uint8_t *block_bits)
4272{
4273	scsi_sense_data_type sense_type;
4274
4275	if (inq_data != NULL) {
4276		switch (SID_TYPE(inq_data)) {
4277		case T_DIRECT:
4278		case T_RBC:
4279			break;
4280		default:
4281			goto bailout;
4282			break;
4283		}
4284	}
4285
4286	sense_type = scsi_sense_type(sense_data);
4287
4288	switch (sense_type) {
4289	case SSD_TYPE_DESC: {
4290		struct scsi_sense_data_desc *sense;
4291		struct scsi_sense_block *block;
4292
4293		sense = (struct scsi_sense_data_desc *)sense_data;
4294
4295		block = (struct scsi_sense_block *)scsi_find_desc(sense,
4296		    sense_len, SSD_DESC_BLOCK);
4297		if (block == NULL)
4298			goto bailout;
4299
4300		*block_bits = block->byte3;
4301		break;
4302	}
4303	case SSD_TYPE_FIXED: {
4304		struct scsi_sense_data_fixed *sense;
4305
4306		sense = (struct scsi_sense_data_fixed *)sense_data;
4307
4308		if (SSD_FIXED_IS_PRESENT(sense, sense_len, flags) == 0)
4309			goto bailout;
4310
4311		if ((sense->flags & SSD_ILI) == 0)
4312			goto bailout;
4313
4314		*block_bits = sense->flags & SSD_ILI;
4315		break;
4316	}
4317	default:
4318		goto bailout;
4319		break;
4320	}
4321	return (0);
4322bailout:
4323	return (1);
4324}
4325
4326int
4327scsi_get_stream_info(struct scsi_sense_data *sense_data, u_int sense_len,
4328		     struct scsi_inquiry_data *inq_data, uint8_t *stream_bits)
4329{
4330	scsi_sense_data_type sense_type;
4331
4332	if (inq_data != NULL) {
4333		switch (SID_TYPE(inq_data)) {
4334		case T_SEQUENTIAL:
4335			break;
4336		default:
4337			goto bailout;
4338			break;
4339		}
4340	}
4341
4342	sense_type = scsi_sense_type(sense_data);
4343
4344	switch (sense_type) {
4345	case SSD_TYPE_DESC: {
4346		struct scsi_sense_data_desc *sense;
4347		struct scsi_sense_stream *stream;
4348
4349		sense = (struct scsi_sense_data_desc *)sense_data;
4350
4351		stream = (struct scsi_sense_stream *)scsi_find_desc(sense,
4352		    sense_len, SSD_DESC_STREAM);
4353		if (stream == NULL)
4354			goto bailout;
4355
4356		*stream_bits = stream->byte3;
4357		break;
4358	}
4359	case SSD_TYPE_FIXED: {
4360		struct scsi_sense_data_fixed *sense;
4361
4362		sense = (struct scsi_sense_data_fixed *)sense_data;
4363
4364		if (SSD_FIXED_IS_PRESENT(sense, sense_len, flags) == 0)
4365			goto bailout;
4366
4367		if ((sense->flags & (SSD_ILI|SSD_EOM|SSD_FILEMARK)) == 0)
4368			goto bailout;
4369
4370		*stream_bits = sense->flags & (SSD_ILI|SSD_EOM|SSD_FILEMARK);
4371		break;
4372	}
4373	default:
4374		goto bailout;
4375		break;
4376	}
4377	return (0);
4378bailout:
4379	return (1);
4380}
4381
4382void
4383scsi_info_sbuf(struct sbuf *sb, uint8_t *cdb, int cdb_len,
4384	       struct scsi_inquiry_data *inq_data, uint64_t info)
4385{
4386	sbuf_printf(sb, "Info: %#jx", info);
4387}
4388
4389void
4390scsi_command_sbuf(struct sbuf *sb, uint8_t *cdb, int cdb_len,
4391		  struct scsi_inquiry_data *inq_data, uint64_t csi)
4392{
4393	sbuf_printf(sb, "Command Specific Info: %#jx", csi);
4394}
4395
4396
4397void
4398scsi_progress_sbuf(struct sbuf *sb, uint16_t progress)
4399{
4400	sbuf_printf(sb, "Progress: %d%% (%d/%d) complete",
4401		    (progress * 100) / SSD_SKS_PROGRESS_DENOM,
4402		    progress, SSD_SKS_PROGRESS_DENOM);
4403}
4404
4405/*
4406 * Returns 1 for failure (i.e. SKS isn't valid) and 0 for success.
4407 */
4408int
4409scsi_sks_sbuf(struct sbuf *sb, int sense_key, uint8_t *sks)
4410{
4411	if ((sks[0] & SSD_SKS_VALID) == 0)
4412		return (1);
4413
4414	switch (sense_key) {
4415	case SSD_KEY_ILLEGAL_REQUEST: {
4416		struct scsi_sense_sks_field *field;
4417		int bad_command;
4418		char tmpstr[40];
4419
4420		/*Field Pointer*/
4421		field = (struct scsi_sense_sks_field *)sks;
4422
4423		if (field->byte0 & SSD_SKS_FIELD_CMD)
4424			bad_command = 1;
4425		else
4426			bad_command = 0;
4427
4428		tmpstr[0] = '\0';
4429
4430		/* Bit pointer is valid */
4431		if (field->byte0 & SSD_SKS_BPV)
4432			snprintf(tmpstr, sizeof(tmpstr), "bit %d ",
4433				 field->byte0 & SSD_SKS_BIT_VALUE);
4434
4435		sbuf_printf(sb, "%s byte %d %sis invalid",
4436			    bad_command ? "Command" : "Data",
4437			    scsi_2btoul(field->field), tmpstr);
4438		break;
4439	}
4440	case SSD_KEY_UNIT_ATTENTION: {
4441		struct scsi_sense_sks_overflow *overflow;
4442
4443		overflow = (struct scsi_sense_sks_overflow *)sks;
4444
4445		/*UA Condition Queue Overflow*/
4446		sbuf_printf(sb, "Unit Attention Condition Queue %s",
4447			    (overflow->byte0 & SSD_SKS_OVERFLOW_SET) ?
4448			    "Overflowed" : "Did Not Overflow??");
4449		break;
4450	}
4451	case SSD_KEY_RECOVERED_ERROR:
4452	case SSD_KEY_HARDWARE_ERROR:
4453	case SSD_KEY_MEDIUM_ERROR: {
4454		struct scsi_sense_sks_retry *retry;
4455
4456		/*Actual Retry Count*/
4457		retry = (struct scsi_sense_sks_retry *)sks;
4458
4459		sbuf_printf(sb, "Actual Retry Count: %d",
4460			    scsi_2btoul(retry->actual_retry_count));
4461		break;
4462	}
4463	case SSD_KEY_NO_SENSE:
4464	case SSD_KEY_NOT_READY: {
4465		struct scsi_sense_sks_progress *progress;
4466		int progress_val;
4467
4468		/*Progress Indication*/
4469		progress = (struct scsi_sense_sks_progress *)sks;
4470		progress_val = scsi_2btoul(progress->progress);
4471
4472		scsi_progress_sbuf(sb, progress_val);
4473		break;
4474	}
4475	case SSD_KEY_COPY_ABORTED: {
4476		struct scsi_sense_sks_segment *segment;
4477		char tmpstr[40];
4478
4479		/*Segment Pointer*/
4480		segment = (struct scsi_sense_sks_segment *)sks;
4481
4482		tmpstr[0] = '\0';
4483
4484		if (segment->byte0 & SSD_SKS_SEGMENT_BPV)
4485			snprintf(tmpstr, sizeof(tmpstr), "bit %d ",
4486				 segment->byte0 & SSD_SKS_SEGMENT_BITPTR);
4487
4488		sbuf_printf(sb, "%s byte %d %sis invalid", (segment->byte0 &
4489			    SSD_SKS_SEGMENT_SD) ? "Segment" : "Data",
4490			    scsi_2btoul(segment->field), tmpstr);
4491		break;
4492	}
4493	default:
4494		sbuf_printf(sb, "Sense Key Specific: %#x,%#x", sks[0],
4495			    scsi_2btoul(&sks[1]));
4496		break;
4497	}
4498
4499	return (0);
4500}
4501
4502void
4503scsi_fru_sbuf(struct sbuf *sb, uint64_t fru)
4504{
4505	sbuf_printf(sb, "Field Replaceable Unit: %d", (int)fru);
4506}
4507
4508void
4509scsi_stream_sbuf(struct sbuf *sb, uint8_t stream_bits, uint64_t info)
4510{
4511	int need_comma;
4512
4513	need_comma = 0;
4514	/*
4515	 * XXX KDM this needs more descriptive decoding.
4516	 */
4517	if (stream_bits & SSD_DESC_STREAM_FM) {
4518		sbuf_printf(sb, "Filemark");
4519		need_comma = 1;
4520	}
4521
4522	if (stream_bits & SSD_DESC_STREAM_EOM) {
4523		sbuf_printf(sb, "%sEOM", (need_comma) ? "," : "");
4524		need_comma = 1;
4525	}
4526
4527	if (stream_bits & SSD_DESC_STREAM_ILI)
4528		sbuf_printf(sb, "%sILI", (need_comma) ? "," : "");
4529
4530	sbuf_printf(sb, ": Info: %#jx", (uintmax_t) info);
4531}
4532
4533void
4534scsi_block_sbuf(struct sbuf *sb, uint8_t block_bits, uint64_t info)
4535{
4536	if (block_bits & SSD_DESC_BLOCK_ILI)
4537		sbuf_printf(sb, "ILI: residue %#jx", (uintmax_t) info);
4538}
4539
4540void
4541scsi_sense_info_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4542		     u_int sense_len, uint8_t *cdb, int cdb_len,
4543		     struct scsi_inquiry_data *inq_data,
4544		     struct scsi_sense_desc_header *header)
4545{
4546	struct scsi_sense_info *info;
4547
4548	info = (struct scsi_sense_info *)header;
4549
4550	scsi_info_sbuf(sb, cdb, cdb_len, inq_data, scsi_8btou64(info->info));
4551}
4552
4553void
4554scsi_sense_command_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4555			u_int sense_len, uint8_t *cdb, int cdb_len,
4556			struct scsi_inquiry_data *inq_data,
4557			struct scsi_sense_desc_header *header)
4558{
4559	struct scsi_sense_command *command;
4560
4561	command = (struct scsi_sense_command *)header;
4562
4563	scsi_command_sbuf(sb, cdb, cdb_len, inq_data,
4564			  scsi_8btou64(command->command_info));
4565}
4566
4567void
4568scsi_sense_sks_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4569		    u_int sense_len, uint8_t *cdb, int cdb_len,
4570		    struct scsi_inquiry_data *inq_data,
4571		    struct scsi_sense_desc_header *header)
4572{
4573	struct scsi_sense_sks *sks;
4574	int error_code, sense_key, asc, ascq;
4575
4576	sks = (struct scsi_sense_sks *)header;
4577
4578	scsi_extract_sense_len(sense, sense_len, &error_code, &sense_key,
4579			       &asc, &ascq, /*show_errors*/ 1);
4580
4581	scsi_sks_sbuf(sb, sense_key, sks->sense_key_spec);
4582}
4583
4584void
4585scsi_sense_fru_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4586		    u_int sense_len, uint8_t *cdb, int cdb_len,
4587		    struct scsi_inquiry_data *inq_data,
4588		    struct scsi_sense_desc_header *header)
4589{
4590	struct scsi_sense_fru *fru;
4591
4592	fru = (struct scsi_sense_fru *)header;
4593
4594	scsi_fru_sbuf(sb, (uint64_t)fru->fru);
4595}
4596
4597void
4598scsi_sense_stream_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4599		       u_int sense_len, uint8_t *cdb, int cdb_len,
4600		       struct scsi_inquiry_data *inq_data,
4601		       struct scsi_sense_desc_header *header)
4602{
4603	struct scsi_sense_stream *stream;
4604	uint64_t info;
4605
4606	stream = (struct scsi_sense_stream *)header;
4607	info = 0;
4608
4609	scsi_get_sense_info(sense, sense_len, SSD_DESC_INFO, &info, NULL);
4610
4611	scsi_stream_sbuf(sb, stream->byte3, info);
4612}
4613
4614void
4615scsi_sense_block_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4616		      u_int sense_len, uint8_t *cdb, int cdb_len,
4617		      struct scsi_inquiry_data *inq_data,
4618		      struct scsi_sense_desc_header *header)
4619{
4620	struct scsi_sense_block *block;
4621	uint64_t info;
4622
4623	block = (struct scsi_sense_block *)header;
4624	info = 0;
4625
4626	scsi_get_sense_info(sense, sense_len, SSD_DESC_INFO, &info, NULL);
4627
4628	scsi_block_sbuf(sb, block->byte3, info);
4629}
4630
4631void
4632scsi_sense_progress_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4633			 u_int sense_len, uint8_t *cdb, int cdb_len,
4634			 struct scsi_inquiry_data *inq_data,
4635			 struct scsi_sense_desc_header *header)
4636{
4637	struct scsi_sense_progress *progress;
4638	const char *sense_key_desc;
4639	const char *asc_desc;
4640	int progress_val;
4641
4642	progress = (struct scsi_sense_progress *)header;
4643
4644	/*
4645	 * Get descriptions for the sense key, ASC, and ASCQ in the
4646	 * progress descriptor.  These could be different than the values
4647	 * in the overall sense data.
4648	 */
4649	scsi_sense_desc(progress->sense_key, progress->add_sense_code,
4650			progress->add_sense_code_qual, inq_data,
4651			&sense_key_desc, &asc_desc);
4652
4653	progress_val = scsi_2btoul(progress->progress);
4654
4655	/*
4656	 * The progress indicator is for the operation described by the
4657	 * sense key, ASC, and ASCQ in the descriptor.
4658	 */
4659	sbuf_cat(sb, sense_key_desc);
4660	sbuf_printf(sb, " asc:%x,%x (%s): ", progress->add_sense_code,
4661		    progress->add_sense_code_qual, asc_desc);
4662	scsi_progress_sbuf(sb, progress_val);
4663}
4664
4665/*
4666 * Generic sense descriptor printing routine.  This is used when we have
4667 * not yet implemented a specific printing routine for this descriptor.
4668 */
4669void
4670scsi_sense_generic_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4671			u_int sense_len, uint8_t *cdb, int cdb_len,
4672			struct scsi_inquiry_data *inq_data,
4673			struct scsi_sense_desc_header *header)
4674{
4675	int i;
4676	uint8_t *buf_ptr;
4677
4678	sbuf_printf(sb, "Descriptor %#x:", header->desc_type);
4679
4680	buf_ptr = (uint8_t *)&header[1];
4681
4682	for (i = 0; i < header->length; i++, buf_ptr++)
4683		sbuf_printf(sb, " %02x", *buf_ptr);
4684}
4685
4686/*
4687 * Keep this list in numeric order.  This speeds the array traversal.
4688 */
4689struct scsi_sense_desc_printer {
4690	uint8_t desc_type;
4691	/*
4692	 * The function arguments here are the superset of what is needed
4693	 * to print out various different descriptors.  Command and
4694	 * information descriptors need inquiry data and command type.
4695	 * Sense key specific descriptors need the sense key.
4696	 *
4697	 * The sense, cdb, and inquiry data arguments may be NULL, but the
4698	 * information printed may not be fully decoded as a result.
4699	 */
4700	void (*print_func)(struct sbuf *sb, struct scsi_sense_data *sense,
4701			   u_int sense_len, uint8_t *cdb, int cdb_len,
4702			   struct scsi_inquiry_data *inq_data,
4703			   struct scsi_sense_desc_header *header);
4704} scsi_sense_printers[] = {
4705	{SSD_DESC_INFO, scsi_sense_info_sbuf},
4706	{SSD_DESC_COMMAND, scsi_sense_command_sbuf},
4707	{SSD_DESC_SKS, scsi_sense_sks_sbuf},
4708	{SSD_DESC_FRU, scsi_sense_fru_sbuf},
4709	{SSD_DESC_STREAM, scsi_sense_stream_sbuf},
4710	{SSD_DESC_BLOCK, scsi_sense_block_sbuf},
4711	{SSD_DESC_PROGRESS, scsi_sense_progress_sbuf}
4712};
4713
4714void
4715scsi_sense_desc_sbuf(struct sbuf *sb, struct scsi_sense_data *sense,
4716		     u_int sense_len, uint8_t *cdb, int cdb_len,
4717		     struct scsi_inquiry_data *inq_data,
4718		     struct scsi_sense_desc_header *header)
4719{
4720	int i;
4721
4722	for (i = 0; i < (sizeof(scsi_sense_printers) /
4723	     sizeof(scsi_sense_printers[0])); i++) {
4724		struct scsi_sense_desc_printer *printer;
4725
4726		printer = &scsi_sense_printers[i];
4727
4728		/*
4729		 * The list is sorted, so quit if we've passed our
4730		 * descriptor number.
4731		 */
4732		if (printer->desc_type > header->desc_type)
4733			break;
4734
4735		if (printer->desc_type != header->desc_type)
4736			continue;
4737
4738		printer->print_func(sb, sense, sense_len, cdb, cdb_len,
4739				    inq_data, header);
4740
4741		return;
4742	}
4743
4744	/*
4745	 * No specific printing routine, so use the generic routine.
4746	 */
4747	scsi_sense_generic_sbuf(sb, sense, sense_len, cdb, cdb_len,
4748				inq_data, header);
4749}
4750
4751scsi_sense_data_type
4752scsi_sense_type(struct scsi_sense_data *sense_data)
4753{
4754	switch (sense_data->error_code & SSD_ERRCODE) {
4755	case SSD_DESC_CURRENT_ERROR:
4756	case SSD_DESC_DEFERRED_ERROR:
4757		return (SSD_TYPE_DESC);
4758		break;
4759	case SSD_CURRENT_ERROR:
4760	case SSD_DEFERRED_ERROR:
4761		return (SSD_TYPE_FIXED);
4762		break;
4763	default:
4764		break;
4765	}
4766
4767	return (SSD_TYPE_NONE);
4768}
4769
4770struct scsi_print_sense_info {
4771	struct sbuf *sb;
4772	char *path_str;
4773	uint8_t *cdb;
4774	int cdb_len;
4775	struct scsi_inquiry_data *inq_data;
4776};
4777
4778static int
4779scsi_print_desc_func(struct scsi_sense_data_desc *sense, u_int sense_len,
4780		     struct scsi_sense_desc_header *header, void *arg)
4781{
4782	struct scsi_print_sense_info *print_info;
4783
4784	print_info = (struct scsi_print_sense_info *)arg;
4785
4786	switch (header->desc_type) {
4787	case SSD_DESC_INFO:
4788	case SSD_DESC_FRU:
4789	case SSD_DESC_COMMAND:
4790	case SSD_DESC_SKS:
4791	case SSD_DESC_BLOCK:
4792	case SSD_DESC_STREAM:
4793		/*
4794		 * We have already printed these descriptors, if they are
4795		 * present.
4796		 */
4797		break;
4798	default: {
4799		sbuf_printf(print_info->sb, "%s", print_info->path_str);
4800		scsi_sense_desc_sbuf(print_info->sb,
4801				     (struct scsi_sense_data *)sense, sense_len,
4802				     print_info->cdb, print_info->cdb_len,
4803				     print_info->inq_data, header);
4804		sbuf_printf(print_info->sb, "\n");
4805		break;
4806	}
4807	}
4808
4809	/*
4810	 * Tell the iterator that we want to see more descriptors if they
4811	 * are present.
4812	 */
4813	return (0);
4814}
4815
4816void
4817scsi_sense_only_sbuf(struct scsi_sense_data *sense, u_int sense_len,
4818		     struct sbuf *sb, char *path_str,
4819		     struct scsi_inquiry_data *inq_data, uint8_t *cdb,
4820		     int cdb_len)
4821{
4822	int error_code, sense_key, asc, ascq;
4823
4824	sbuf_cat(sb, path_str);
4825
4826	scsi_extract_sense_len(sense, sense_len, &error_code, &sense_key,
4827			       &asc, &ascq, /*show_errors*/ 1);
4828
4829	sbuf_printf(sb, "SCSI sense: ");
4830	switch (error_code) {
4831	case SSD_DEFERRED_ERROR:
4832	case SSD_DESC_DEFERRED_ERROR:
4833		sbuf_printf(sb, "Deferred error: ");
4834
4835		/* FALLTHROUGH */
4836	case SSD_CURRENT_ERROR:
4837	case SSD_DESC_CURRENT_ERROR:
4838	{
4839		struct scsi_sense_data_desc *desc_sense;
4840		struct scsi_print_sense_info print_info;
4841		const char *sense_key_desc;
4842		const char *asc_desc;
4843		uint8_t sks[3];
4844		uint64_t val;
4845		int info_valid;
4846
4847		/*
4848		 * Get descriptions for the sense key, ASC, and ASCQ.  If
4849		 * these aren't present in the sense data (i.e. the sense
4850		 * data isn't long enough), the -1 values that
4851		 * scsi_extract_sense_len() returns will yield default
4852		 * or error descriptions.
4853		 */
4854		scsi_sense_desc(sense_key, asc, ascq, inq_data,
4855				&sense_key_desc, &asc_desc);
4856
4857		/*
4858		 * We first print the sense key and ASC/ASCQ.
4859		 */
4860		sbuf_cat(sb, sense_key_desc);
4861		sbuf_printf(sb, " asc:%x,%x (%s)\n", asc, ascq, asc_desc);
4862
4863		/*
4864		 * Get the info field if it is valid.
4865		 */
4866		if (scsi_get_sense_info(sense, sense_len, SSD_DESC_INFO,
4867					&val, NULL) == 0)
4868			info_valid = 1;
4869		else
4870			info_valid = 0;
4871
4872		if (info_valid != 0) {
4873			uint8_t bits;
4874
4875			/*
4876			 * Determine whether we have any block or stream
4877			 * device-specific information.
4878			 */
4879			if (scsi_get_block_info(sense, sense_len, inq_data,
4880						&bits) == 0) {
4881				sbuf_cat(sb, path_str);
4882				scsi_block_sbuf(sb, bits, val);
4883				sbuf_printf(sb, "\n");
4884			} else if (scsi_get_stream_info(sense, sense_len,
4885							inq_data, &bits) == 0) {
4886				sbuf_cat(sb, path_str);
4887				scsi_stream_sbuf(sb, bits, val);
4888				sbuf_printf(sb, "\n");
4889			} else if (val != 0) {
4890				/*
4891				 * The information field can be valid but 0.
4892				 * If the block or stream bits aren't set,
4893				 * and this is 0, it isn't terribly useful
4894				 * to print it out.
4895				 */
4896				sbuf_cat(sb, path_str);
4897				scsi_info_sbuf(sb, cdb, cdb_len, inq_data, val);
4898				sbuf_printf(sb, "\n");
4899			}
4900		}
4901
4902		/*
4903		 * Print the FRU.
4904		 */
4905		if (scsi_get_sense_info(sense, sense_len, SSD_DESC_FRU,
4906					&val, NULL) == 0) {
4907			sbuf_cat(sb, path_str);
4908			scsi_fru_sbuf(sb, val);
4909			sbuf_printf(sb, "\n");
4910		}
4911
4912		/*
4913		 * Print any command-specific information.
4914		 */
4915		if (scsi_get_sense_info(sense, sense_len, SSD_DESC_COMMAND,
4916					&val, NULL) == 0) {
4917			sbuf_cat(sb, path_str);
4918			scsi_command_sbuf(sb, cdb, cdb_len, inq_data, val);
4919			sbuf_printf(sb, "\n");
4920		}
4921
4922		/*
4923		 * Print out any sense-key-specific information.
4924		 */
4925		if (scsi_get_sks(sense, sense_len, sks) == 0) {
4926			sbuf_cat(sb, path_str);
4927			scsi_sks_sbuf(sb, sense_key, sks);
4928			sbuf_printf(sb, "\n");
4929		}
4930
4931		/*
4932		 * If this is fixed sense, we're done.  If we have
4933		 * descriptor sense, we might have more information
4934		 * available.
4935		 */
4936		if (scsi_sense_type(sense) != SSD_TYPE_DESC)
4937			break;
4938
4939		desc_sense = (struct scsi_sense_data_desc *)sense;
4940
4941		print_info.sb = sb;
4942		print_info.path_str = path_str;
4943		print_info.cdb = cdb;
4944		print_info.cdb_len = cdb_len;
4945		print_info.inq_data = inq_data;
4946
4947		/*
4948		 * Print any sense descriptors that we have not already printed.
4949		 */
4950		scsi_desc_iterate(desc_sense, sense_len, scsi_print_desc_func,
4951				  &print_info);
4952		break;
4953
4954	}
4955	case -1:
4956		/*
4957		 * scsi_extract_sense_len() sets values to -1 if the
4958		 * show_errors flag is set and they aren't present in the
4959		 * sense data.  This means that sense_len is 0.
4960		 */
4961		sbuf_printf(sb, "No sense data present\n");
4962		break;
4963	default: {
4964		sbuf_printf(sb, "Error code 0x%x", error_code);
4965		if (sense->error_code & SSD_ERRCODE_VALID) {
4966			struct scsi_sense_data_fixed *fixed_sense;
4967
4968			fixed_sense = (struct scsi_sense_data_fixed *)sense;
4969
4970			if (SSD_FIXED_IS_PRESENT(fixed_sense, sense_len, info)){
4971				uint32_t info;
4972
4973				info = scsi_4btoul(fixed_sense->info);
4974
4975				sbuf_printf(sb, " at block no. %d (decimal)",
4976					    info);
4977			}
4978		}
4979		sbuf_printf(sb, "\n");
4980		break;
4981	}
4982	}
4983}
4984
4985/*
4986 * scsi_sense_sbuf() returns 0 for success and -1 for failure.
4987 */
4988#ifdef _KERNEL
4989int
4990scsi_sense_sbuf(struct ccb_scsiio *csio, struct sbuf *sb,
4991		scsi_sense_string_flags flags)
4992#else /* !_KERNEL */
4993int
4994scsi_sense_sbuf(struct cam_device *device, struct ccb_scsiio *csio,
4995		struct sbuf *sb, scsi_sense_string_flags flags)
4996#endif /* _KERNEL/!_KERNEL */
4997{
4998	struct	  scsi_sense_data *sense;
4999	struct	  scsi_inquiry_data *inq_data;
5000#ifdef _KERNEL
5001	struct	  ccb_getdev *cgd;
5002#endif /* _KERNEL */
5003	char	  path_str[64];
5004	uint8_t	  *cdb;
5005
5006#ifndef _KERNEL
5007	if (device == NULL)
5008		return(-1);
5009#endif /* !_KERNEL */
5010	if ((csio == NULL) || (sb == NULL))
5011		return(-1);
5012
5013	/*
5014	 * If the CDB is a physical address, we can't deal with it..
5015	 */
5016	if ((csio->ccb_h.flags & CAM_CDB_PHYS) != 0)
5017		flags &= ~SSS_FLAG_PRINT_COMMAND;
5018
5019#ifdef _KERNEL
5020	xpt_path_string(csio->ccb_h.path, path_str, sizeof(path_str));
5021#else /* !_KERNEL */
5022	cam_path_string(device, path_str, sizeof(path_str));
5023#endif /* _KERNEL/!_KERNEL */
5024
5025#ifdef _KERNEL
5026	if ((cgd = (struct ccb_getdev*)xpt_alloc_ccb_nowait()) == NULL)
5027		return(-1);
5028	/*
5029	 * Get the device information.
5030	 */
5031	xpt_setup_ccb(&cgd->ccb_h,
5032		      csio->ccb_h.path,
5033		      CAM_PRIORITY_NORMAL);
5034	cgd->ccb_h.func_code = XPT_GDEV_TYPE;
5035	xpt_action((union ccb *)cgd);
5036
5037	/*
5038	 * If the device is unconfigured, just pretend that it is a hard
5039	 * drive.  scsi_op_desc() needs this.
5040	 */
5041	if (cgd->ccb_h.status == CAM_DEV_NOT_THERE)
5042		cgd->inq_data.device = T_DIRECT;
5043
5044	inq_data = &cgd->inq_data;
5045
5046#else /* !_KERNEL */
5047
5048	inq_data = &device->inq_data;
5049
5050#endif /* _KERNEL/!_KERNEL */
5051
5052	sense = NULL;
5053
5054	if (flags & SSS_FLAG_PRINT_COMMAND) {
5055
5056		sbuf_cat(sb, path_str);
5057
5058#ifdef _KERNEL
5059		scsi_command_string(csio, sb);
5060#else /* !_KERNEL */
5061		scsi_command_string(device, csio, sb);
5062#endif /* _KERNEL/!_KERNEL */
5063		sbuf_printf(sb, "\n");
5064	}
5065
5066	/*
5067	 * If the sense data is a physical pointer, forget it.
5068	 */
5069	if (csio->ccb_h.flags & CAM_SENSE_PTR) {
5070		if (csio->ccb_h.flags & CAM_SENSE_PHYS) {
5071#ifdef _KERNEL
5072			xpt_free_ccb((union ccb*)cgd);
5073#endif /* _KERNEL/!_KERNEL */
5074			return(-1);
5075		} else {
5076			/*
5077			 * bcopy the pointer to avoid unaligned access
5078			 * errors on finicky architectures.  We don't
5079			 * ensure that the sense data is pointer aligned.
5080			 */
5081			bcopy(&csio->sense_data, &sense,
5082			      sizeof(struct scsi_sense_data *));
5083		}
5084	} else {
5085		/*
5086		 * If the physical sense flag is set, but the sense pointer
5087		 * is not also set, we assume that the user is an idiot and
5088		 * return.  (Well, okay, it could be that somehow, the
5089		 * entire csio is physical, but we would have probably core
5090		 * dumped on one of the bogus pointer deferences above
5091		 * already.)
5092		 */
5093		if (csio->ccb_h.flags & CAM_SENSE_PHYS) {
5094#ifdef _KERNEL
5095			xpt_free_ccb((union ccb*)cgd);
5096#endif /* _KERNEL/!_KERNEL */
5097			return(-1);
5098		} else
5099			sense = &csio->sense_data;
5100	}
5101
5102	if (csio->ccb_h.flags & CAM_CDB_POINTER)
5103		cdb = csio->cdb_io.cdb_ptr;
5104	else
5105		cdb = csio->cdb_io.cdb_bytes;
5106
5107	scsi_sense_only_sbuf(sense, csio->sense_len - csio->sense_resid, sb,
5108			     path_str, inq_data, cdb, csio->cdb_len);
5109
5110#ifdef _KERNEL
5111	xpt_free_ccb((union ccb*)cgd);
5112#endif /* _KERNEL/!_KERNEL */
5113	return(0);
5114}
5115
5116
5117
5118#ifdef _KERNEL
5119char *
5120scsi_sense_string(struct ccb_scsiio *csio, char *str, int str_len)
5121#else /* !_KERNEL */
5122char *
5123scsi_sense_string(struct cam_device *device, struct ccb_scsiio *csio,
5124		  char *str, int str_len)
5125#endif /* _KERNEL/!_KERNEL */
5126{
5127	struct sbuf sb;
5128
5129	sbuf_new(&sb, str, str_len, 0);
5130
5131#ifdef _KERNEL
5132	scsi_sense_sbuf(csio, &sb, SSS_FLAG_PRINT_COMMAND);
5133#else /* !_KERNEL */
5134	scsi_sense_sbuf(device, csio, &sb, SSS_FLAG_PRINT_COMMAND);
5135#endif /* _KERNEL/!_KERNEL */
5136
5137	sbuf_finish(&sb);
5138
5139	return(sbuf_data(&sb));
5140}
5141
5142#ifdef _KERNEL
5143void
5144scsi_sense_print(struct ccb_scsiio *csio)
5145{
5146	struct sbuf sb;
5147	char str[512];
5148
5149	sbuf_new(&sb, str, sizeof(str), 0);
5150
5151	scsi_sense_sbuf(csio, &sb, SSS_FLAG_PRINT_COMMAND);
5152
5153	sbuf_finish(&sb);
5154
5155	printf("%s", sbuf_data(&sb));
5156}
5157
5158#else /* !_KERNEL */
5159void
5160scsi_sense_print(struct cam_device *device, struct ccb_scsiio *csio,
5161		 FILE *ofile)
5162{
5163	struct sbuf sb;
5164	char str[512];
5165
5166	if ((device == NULL) || (csio == NULL) || (ofile == NULL))
5167		return;
5168
5169	sbuf_new(&sb, str, sizeof(str), 0);
5170
5171	scsi_sense_sbuf(device, csio, &sb, SSS_FLAG_PRINT_COMMAND);
5172
5173	sbuf_finish(&sb);
5174
5175	fprintf(ofile, "%s", sbuf_data(&sb));
5176}
5177
5178#endif /* _KERNEL/!_KERNEL */
5179
5180/*
5181 * Extract basic sense information.  This is backward-compatible with the
5182 * previous implementation.  For new implementations,
5183 * scsi_extract_sense_len() is recommended.
5184 */
5185void
5186scsi_extract_sense(struct scsi_sense_data *sense_data, int *error_code,
5187		   int *sense_key, int *asc, int *ascq)
5188{
5189	scsi_extract_sense_len(sense_data, sizeof(*sense_data), error_code,
5190			       sense_key, asc, ascq, /*show_errors*/ 0);
5191}
5192
5193/*
5194 * Extract basic sense information from SCSI I/O CCB structure.
5195 */
5196int
5197scsi_extract_sense_ccb(union ccb *ccb,
5198    int *error_code, int *sense_key, int *asc, int *ascq)
5199{
5200	struct scsi_sense_data *sense_data;
5201
5202	/* Make sure there are some sense data we can access. */
5203	if (ccb->ccb_h.func_code != XPT_SCSI_IO ||
5204	    (ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_SCSI_STATUS_ERROR ||
5205	    (ccb->csio.scsi_status != SCSI_STATUS_CHECK_COND) ||
5206	    (ccb->ccb_h.status & CAM_AUTOSNS_VALID) == 0 ||
5207	    (ccb->ccb_h.flags & CAM_SENSE_PHYS))
5208		return (0);
5209
5210	if (ccb->ccb_h.flags & CAM_SENSE_PTR)
5211		bcopy(&ccb->csio.sense_data, &sense_data,
5212		    sizeof(struct scsi_sense_data *));
5213	else
5214		sense_data = &ccb->csio.sense_data;
5215	scsi_extract_sense_len(sense_data,
5216	    ccb->csio.sense_len - ccb->csio.sense_resid,
5217	    error_code, sense_key, asc, ascq, 1);
5218	if (*error_code == -1)
5219		return (0);
5220	return (1);
5221}
5222
5223/*
5224 * Extract basic sense information.  If show_errors is set, sense values
5225 * will be set to -1 if they are not present.
5226 */
5227void
5228scsi_extract_sense_len(struct scsi_sense_data *sense_data, u_int sense_len,
5229		       int *error_code, int *sense_key, int *asc, int *ascq,
5230		       int show_errors)
5231{
5232	/*
5233	 * If we have no length, we have no sense.
5234	 */
5235	if (sense_len == 0) {
5236		if (show_errors == 0) {
5237			*error_code = 0;
5238			*sense_key = 0;
5239			*asc = 0;
5240			*ascq = 0;
5241		} else {
5242			*error_code = -1;
5243			*sense_key = -1;
5244			*asc = -1;
5245			*ascq = -1;
5246		}
5247		return;
5248	}
5249
5250	*error_code = sense_data->error_code & SSD_ERRCODE;
5251
5252	switch (*error_code) {
5253	case SSD_DESC_CURRENT_ERROR:
5254	case SSD_DESC_DEFERRED_ERROR: {
5255		struct scsi_sense_data_desc *sense;
5256
5257		sense = (struct scsi_sense_data_desc *)sense_data;
5258
5259		if (SSD_DESC_IS_PRESENT(sense, sense_len, sense_key))
5260			*sense_key = sense->sense_key & SSD_KEY;
5261		else
5262			*sense_key = (show_errors) ? -1 : 0;
5263
5264		if (SSD_DESC_IS_PRESENT(sense, sense_len, add_sense_code))
5265			*asc = sense->add_sense_code;
5266		else
5267			*asc = (show_errors) ? -1 : 0;
5268
5269		if (SSD_DESC_IS_PRESENT(sense, sense_len, add_sense_code_qual))
5270			*ascq = sense->add_sense_code_qual;
5271		else
5272			*ascq = (show_errors) ? -1 : 0;
5273		break;
5274	}
5275	case SSD_CURRENT_ERROR:
5276	case SSD_DEFERRED_ERROR:
5277	default: {
5278		struct scsi_sense_data_fixed *sense;
5279
5280		sense = (struct scsi_sense_data_fixed *)sense_data;
5281
5282		if (SSD_FIXED_IS_PRESENT(sense, sense_len, flags))
5283			*sense_key = sense->flags & SSD_KEY;
5284		else
5285			*sense_key = (show_errors) ? -1 : 0;
5286
5287		if ((SSD_FIXED_IS_PRESENT(sense, sense_len, add_sense_code))
5288		 && (SSD_FIXED_IS_FILLED(sense, add_sense_code)))
5289			*asc = sense->add_sense_code;
5290		else
5291			*asc = (show_errors) ? -1 : 0;
5292
5293		if ((SSD_FIXED_IS_PRESENT(sense, sense_len,add_sense_code_qual))
5294		 && (SSD_FIXED_IS_FILLED(sense, add_sense_code_qual)))
5295			*ascq = sense->add_sense_code_qual;
5296		else
5297			*ascq = (show_errors) ? -1 : 0;
5298		break;
5299	}
5300	}
5301}
5302
5303int
5304scsi_get_sense_key(struct scsi_sense_data *sense_data, u_int sense_len,
5305		   int show_errors)
5306{
5307	int error_code, sense_key, asc, ascq;
5308
5309	scsi_extract_sense_len(sense_data, sense_len, &error_code,
5310			       &sense_key, &asc, &ascq, show_errors);
5311
5312	return (sense_key);
5313}
5314
5315int
5316scsi_get_asc(struct scsi_sense_data *sense_data, u_int sense_len,
5317	     int show_errors)
5318{
5319	int error_code, sense_key, asc, ascq;
5320
5321	scsi_extract_sense_len(sense_data, sense_len, &error_code,
5322			       &sense_key, &asc, &ascq, show_errors);
5323
5324	return (asc);
5325}
5326
5327int
5328scsi_get_ascq(struct scsi_sense_data *sense_data, u_int sense_len,
5329	      int show_errors)
5330{
5331	int error_code, sense_key, asc, ascq;
5332
5333	scsi_extract_sense_len(sense_data, sense_len, &error_code,
5334			       &sense_key, &asc, &ascq, show_errors);
5335
5336	return (ascq);
5337}
5338
5339/*
5340 * This function currently requires at least 36 bytes, or
5341 * SHORT_INQUIRY_LENGTH, worth of data to function properly.  If this
5342 * function needs more or less data in the future, another length should be
5343 * defined in scsi_all.h to indicate the minimum amount of data necessary
5344 * for this routine to function properly.
5345 */
5346void
5347scsi_print_inquiry(struct scsi_inquiry_data *inq_data)
5348{
5349	u_int8_t type;
5350	char *dtype, *qtype;
5351	char vendor[16], product[48], revision[16], rstr[12];
5352
5353	type = SID_TYPE(inq_data);
5354
5355	/*
5356	 * Figure out basic device type and qualifier.
5357	 */
5358	if (SID_QUAL_IS_VENDOR_UNIQUE(inq_data)) {
5359		qtype = " (vendor-unique qualifier)";
5360	} else {
5361		switch (SID_QUAL(inq_data)) {
5362		case SID_QUAL_LU_CONNECTED:
5363			qtype = "";
5364			break;
5365
5366		case SID_QUAL_LU_OFFLINE:
5367			qtype = " (offline)";
5368			break;
5369
5370		case SID_QUAL_RSVD:
5371			qtype = " (reserved qualifier)";
5372			break;
5373		default:
5374		case SID_QUAL_BAD_LU:
5375			qtype = " (LUN not supported)";
5376			break;
5377		}
5378	}
5379
5380	switch (type) {
5381	case T_DIRECT:
5382		dtype = "Direct Access";
5383		break;
5384	case T_SEQUENTIAL:
5385		dtype = "Sequential Access";
5386		break;
5387	case T_PRINTER:
5388		dtype = "Printer";
5389		break;
5390	case T_PROCESSOR:
5391		dtype = "Processor";
5392		break;
5393	case T_WORM:
5394		dtype = "WORM";
5395		break;
5396	case T_CDROM:
5397		dtype = "CD-ROM";
5398		break;
5399	case T_SCANNER:
5400		dtype = "Scanner";
5401		break;
5402	case T_OPTICAL:
5403		dtype = "Optical";
5404		break;
5405	case T_CHANGER:
5406		dtype = "Changer";
5407		break;
5408	case T_COMM:
5409		dtype = "Communication";
5410		break;
5411	case T_STORARRAY:
5412		dtype = "Storage Array";
5413		break;
5414	case T_ENCLOSURE:
5415		dtype = "Enclosure Services";
5416		break;
5417	case T_RBC:
5418		dtype = "Simplified Direct Access";
5419		break;
5420	case T_OCRW:
5421		dtype = "Optical Card Read/Write";
5422		break;
5423	case T_OSD:
5424		dtype = "Object-Based Storage";
5425		break;
5426	case T_ADC:
5427		dtype = "Automation/Drive Interface";
5428		break;
5429	case T_NODEVICE:
5430		dtype = "Uninstalled";
5431		break;
5432	default:
5433		dtype = "unknown";
5434		break;
5435	}
5436
5437	cam_strvis(vendor, inq_data->vendor, sizeof(inq_data->vendor),
5438		   sizeof(vendor));
5439	cam_strvis(product, inq_data->product, sizeof(inq_data->product),
5440		   sizeof(product));
5441	cam_strvis(revision, inq_data->revision, sizeof(inq_data->revision),
5442		   sizeof(revision));
5443
5444	if (SID_ANSI_REV(inq_data) == SCSI_REV_0)
5445		snprintf(rstr, sizeof(rstr), "SCSI");
5446	else if (SID_ANSI_REV(inq_data) <= SCSI_REV_SPC) {
5447		snprintf(rstr, sizeof(rstr), "SCSI-%d",
5448		    SID_ANSI_REV(inq_data));
5449	} else {
5450		snprintf(rstr, sizeof(rstr), "SPC-%d SCSI",
5451		    SID_ANSI_REV(inq_data) - 2);
5452	}
5453	printf("<%s %s %s> %s %s %s device%s\n",
5454	       vendor, product, revision,
5455	       SID_IS_REMOVABLE(inq_data) ? "Removable" : "Fixed",
5456	       dtype, rstr, qtype);
5457}
5458
5459void
5460scsi_print_inquiry_short(struct scsi_inquiry_data *inq_data)
5461{
5462	char vendor[16], product[48], revision[16];
5463
5464	cam_strvis(vendor, inq_data->vendor, sizeof(inq_data->vendor),
5465		   sizeof(vendor));
5466	cam_strvis(product, inq_data->product, sizeof(inq_data->product),
5467		   sizeof(product));
5468	cam_strvis(revision, inq_data->revision, sizeof(inq_data->revision),
5469		   sizeof(revision));
5470
5471	printf("<%s %s %s>", vendor, product, revision);
5472}
5473
5474/*
5475 * Table of syncrates that don't follow the "divisible by 4"
5476 * rule. This table will be expanded in future SCSI specs.
5477 */
5478static struct {
5479	u_int period_factor;
5480	u_int period;	/* in 100ths of ns */
5481} scsi_syncrates[] = {
5482	{ 0x08, 625 },	/* FAST-160 */
5483	{ 0x09, 1250 },	/* FAST-80 */
5484	{ 0x0a, 2500 },	/* FAST-40 40MHz */
5485	{ 0x0b, 3030 },	/* FAST-40 33MHz */
5486	{ 0x0c, 5000 }	/* FAST-20 */
5487};
5488
5489/*
5490 * Return the frequency in kHz corresponding to the given
5491 * sync period factor.
5492 */
5493u_int
5494scsi_calc_syncsrate(u_int period_factor)
5495{
5496	int i;
5497	int num_syncrates;
5498
5499	/*
5500	 * It's a bug if period is zero, but if it is anyway, don't
5501	 * die with a divide fault- instead return something which
5502	 * 'approximates' async
5503	 */
5504	if (period_factor == 0) {
5505		return (3300);
5506	}
5507
5508	num_syncrates = sizeof(scsi_syncrates) / sizeof(scsi_syncrates[0]);
5509	/* See if the period is in the "exception" table */
5510	for (i = 0; i < num_syncrates; i++) {
5511
5512		if (period_factor == scsi_syncrates[i].period_factor) {
5513			/* Period in kHz */
5514			return (100000000 / scsi_syncrates[i].period);
5515		}
5516	}
5517
5518	/*
5519	 * Wasn't in the table, so use the standard
5520	 * 4 times conversion.
5521	 */
5522	return (10000000 / (period_factor * 4 * 10));
5523}
5524
5525/*
5526 * Return the SCSI sync parameter that corresponsd to
5527 * the passed in period in 10ths of ns.
5528 */
5529u_int
5530scsi_calc_syncparam(u_int period)
5531{
5532	int i;
5533	int num_syncrates;
5534
5535	if (period == 0)
5536		return (~0);	/* Async */
5537
5538	/* Adjust for exception table being in 100ths. */
5539	period *= 10;
5540	num_syncrates = sizeof(scsi_syncrates) / sizeof(scsi_syncrates[0]);
5541	/* See if the period is in the "exception" table */
5542	for (i = 0; i < num_syncrates; i++) {
5543
5544		if (period <= scsi_syncrates[i].period) {
5545			/* Period in 100ths of ns */
5546			return (scsi_syncrates[i].period_factor);
5547		}
5548	}
5549
5550	/*
5551	 * Wasn't in the table, so use the standard
5552	 * 1/4 period in ns conversion.
5553	 */
5554	return (period/400);
5555}
5556
5557int
5558scsi_devid_is_naa_ieee_reg(uint8_t *bufp)
5559{
5560	struct scsi_vpd_id_descriptor *descr;
5561	struct scsi_vpd_id_naa_basic *naa;
5562
5563	descr = (struct scsi_vpd_id_descriptor *)bufp;
5564	naa = (struct scsi_vpd_id_naa_basic *)descr->identifier;
5565	if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_NAA)
5566		return 0;
5567	if (descr->length < sizeof(struct scsi_vpd_id_naa_ieee_reg))
5568		return 0;
5569	if ((naa->naa >> SVPD_ID_NAA_NAA_SHIFT) != SVPD_ID_NAA_IEEE_REG)
5570		return 0;
5571	return 1;
5572}
5573
5574int
5575scsi_devid_is_sas_target(uint8_t *bufp)
5576{
5577	struct scsi_vpd_id_descriptor *descr;
5578
5579	descr = (struct scsi_vpd_id_descriptor *)bufp;
5580	if (!scsi_devid_is_naa_ieee_reg(bufp))
5581		return 0;
5582	if ((descr->id_type & SVPD_ID_PIV) == 0) /* proto field reserved */
5583		return 0;
5584	if ((descr->proto_codeset >> SVPD_ID_PROTO_SHIFT) != SCSI_PROTO_SAS)
5585		return 0;
5586	return 1;
5587}
5588
5589int
5590scsi_devid_is_lun_eui64(uint8_t *bufp)
5591{
5592	struct scsi_vpd_id_descriptor *descr;
5593
5594	descr = (struct scsi_vpd_id_descriptor *)bufp;
5595	if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
5596		return 0;
5597	if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_EUI64)
5598		return 0;
5599	return 1;
5600}
5601
5602int
5603scsi_devid_is_lun_naa(uint8_t *bufp)
5604{
5605	struct scsi_vpd_id_descriptor *descr;
5606
5607	descr = (struct scsi_vpd_id_descriptor *)bufp;
5608	if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
5609		return 0;
5610	if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_NAA)
5611		return 0;
5612	return 1;
5613}
5614
5615int
5616scsi_devid_is_lun_t10(uint8_t *bufp)
5617{
5618	struct scsi_vpd_id_descriptor *descr;
5619
5620	descr = (struct scsi_vpd_id_descriptor *)bufp;
5621	if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
5622		return 0;
5623	if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_T10)
5624		return 0;
5625	return 1;
5626}
5627
5628int
5629scsi_devid_is_lun_name(uint8_t *bufp)
5630{
5631	struct scsi_vpd_id_descriptor *descr;
5632
5633	descr = (struct scsi_vpd_id_descriptor *)bufp;
5634	if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_LUN)
5635		return 0;
5636	if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_SCSI_NAME)
5637		return 0;
5638	return 1;
5639}
5640
5641int
5642scsi_devid_is_port_naa(uint8_t *bufp)
5643{
5644	struct scsi_vpd_id_descriptor *descr;
5645
5646	descr = (struct scsi_vpd_id_descriptor *)bufp;
5647	if ((descr->id_type & SVPD_ID_ASSOC_MASK) != SVPD_ID_ASSOC_PORT)
5648		return 0;
5649	if ((descr->id_type & SVPD_ID_TYPE_MASK) != SVPD_ID_TYPE_NAA)
5650		return 0;
5651	return 1;
5652}
5653
5654struct scsi_vpd_id_descriptor *
5655scsi_get_devid_desc(struct scsi_vpd_id_descriptor *desc, uint32_t len,
5656    scsi_devid_checkfn_t ck_fn)
5657{
5658	uint8_t *desc_buf_end;
5659
5660	desc_buf_end = (uint8_t *)desc + len;
5661
5662	for (; desc->identifier <= desc_buf_end &&
5663	    desc->identifier + desc->length <= desc_buf_end;
5664	    desc = (struct scsi_vpd_id_descriptor *)(desc->identifier
5665						    + desc->length)) {
5666
5667		if (ck_fn == NULL || ck_fn((uint8_t *)desc) != 0)
5668			return (desc);
5669	}
5670	return (NULL);
5671}
5672
5673struct scsi_vpd_id_descriptor *
5674scsi_get_devid(struct scsi_vpd_device_id *id, uint32_t page_len,
5675    scsi_devid_checkfn_t ck_fn)
5676{
5677	uint32_t len;
5678
5679	if (page_len < sizeof(*id))
5680		return (NULL);
5681	len = MIN(scsi_2btoul(id->length), page_len - sizeof(*id));
5682	return (scsi_get_devid_desc((struct scsi_vpd_id_descriptor *)
5683	    id->desc_list, len, ck_fn));
5684}
5685
5686int
5687scsi_transportid_sbuf(struct sbuf *sb, struct scsi_transportid_header *hdr,
5688		      uint32_t valid_len)
5689{
5690	switch (hdr->format_protocol & SCSI_TRN_PROTO_MASK) {
5691	case SCSI_PROTO_FC: {
5692		struct scsi_transportid_fcp *fcp;
5693		uint64_t n_port_name;
5694
5695		fcp = (struct scsi_transportid_fcp *)hdr;
5696
5697		n_port_name = scsi_8btou64(fcp->n_port_name);
5698
5699		sbuf_printf(sb, "FCP address: 0x%.16jx",(uintmax_t)n_port_name);
5700		break;
5701	}
5702	case SCSI_PROTO_SPI: {
5703		struct scsi_transportid_spi *spi;
5704
5705		spi = (struct scsi_transportid_spi *)hdr;
5706
5707		sbuf_printf(sb, "SPI address: %u,%u",
5708			    scsi_2btoul(spi->scsi_addr),
5709			    scsi_2btoul(spi->rel_trgt_port_id));
5710		break;
5711	}
5712	case SCSI_PROTO_SSA:
5713		/*
5714		 * XXX KDM there is no transport ID defined in SPC-4 for
5715		 * SSA.
5716		 */
5717		break;
5718	case SCSI_PROTO_1394: {
5719		struct scsi_transportid_1394 *sbp;
5720		uint64_t eui64;
5721
5722		sbp = (struct scsi_transportid_1394 *)hdr;
5723
5724		eui64 = scsi_8btou64(sbp->eui64);
5725		sbuf_printf(sb, "SBP address: 0x%.16jx", (uintmax_t)eui64);
5726		break;
5727	}
5728	case SCSI_PROTO_RDMA: {
5729		struct scsi_transportid_rdma *rdma;
5730		unsigned int i;
5731
5732		rdma = (struct scsi_transportid_rdma *)hdr;
5733
5734		sbuf_printf(sb, "RDMA address: 0x");
5735		for (i = 0; i < sizeof(rdma->initiator_port_id); i++)
5736			sbuf_printf(sb, "%02x", rdma->initiator_port_id[i]);
5737		break;
5738	}
5739	case SCSI_PROTO_ISCSI: {
5740		uint32_t add_len, i;
5741		uint8_t *iscsi_name = NULL;
5742		int nul_found = 0;
5743
5744		sbuf_printf(sb, "iSCSI address: ");
5745		if ((hdr->format_protocol & SCSI_TRN_FORMAT_MASK) ==
5746		    SCSI_TRN_ISCSI_FORMAT_DEVICE) {
5747			struct scsi_transportid_iscsi_device *dev;
5748
5749			dev = (struct scsi_transportid_iscsi_device *)hdr;
5750
5751			/*
5752			 * Verify how much additional data we really have.
5753			 */
5754			add_len = scsi_2btoul(dev->additional_length);
5755			add_len = MIN(add_len, valid_len -
5756				__offsetof(struct scsi_transportid_iscsi_device,
5757					   iscsi_name));
5758			iscsi_name = &dev->iscsi_name[0];
5759
5760		} else if ((hdr->format_protocol & SCSI_TRN_FORMAT_MASK) ==
5761			    SCSI_TRN_ISCSI_FORMAT_PORT) {
5762			struct scsi_transportid_iscsi_port *port;
5763
5764			port = (struct scsi_transportid_iscsi_port *)hdr;
5765
5766			add_len = scsi_2btoul(port->additional_length);
5767			add_len = MIN(add_len, valid_len -
5768				__offsetof(struct scsi_transportid_iscsi_port,
5769					   iscsi_name));
5770			iscsi_name = &port->iscsi_name[0];
5771		} else {
5772			sbuf_printf(sb, "unknown format %x",
5773				    (hdr->format_protocol &
5774				     SCSI_TRN_FORMAT_MASK) >>
5775				     SCSI_TRN_FORMAT_SHIFT);
5776			break;
5777		}
5778		if (add_len == 0) {
5779			sbuf_printf(sb, "not enough data");
5780			break;
5781		}
5782		/*
5783		 * This is supposed to be a NUL-terminated ASCII
5784		 * string, but you never know.  So we're going to
5785		 * check.  We need to do this because there is no
5786		 * sbuf equivalent of strncat().
5787		 */
5788		for (i = 0; i < add_len; i++) {
5789			if (iscsi_name[i] == '\0') {
5790				nul_found = 1;
5791				break;
5792			}
5793		}
5794		/*
5795		 * If there is a NUL in the name, we can just use
5796		 * sbuf_cat().  Otherwise we need to use sbuf_bcat().
5797		 */
5798		if (nul_found != 0)
5799			sbuf_cat(sb, iscsi_name);
5800		else
5801			sbuf_bcat(sb, iscsi_name, add_len);
5802		break;
5803	}
5804	case SCSI_PROTO_SAS: {
5805		struct scsi_transportid_sas *sas;
5806		uint64_t sas_addr;
5807
5808		sas = (struct scsi_transportid_sas *)hdr;
5809
5810		sas_addr = scsi_8btou64(sas->sas_address);
5811		sbuf_printf(sb, "SAS address: 0x%.16jx", (uintmax_t)sas_addr);
5812		break;
5813	}
5814	case SCSI_PROTO_ADITP:
5815	case SCSI_PROTO_ATA:
5816	case SCSI_PROTO_UAS:
5817		/*
5818		 * No Transport ID format for ADI, ATA or USB is defined in
5819		 * SPC-4.
5820		 */
5821		sbuf_printf(sb, "No known Transport ID format for protocol "
5822			    "%#x", hdr->format_protocol & SCSI_TRN_PROTO_MASK);
5823		break;
5824	case SCSI_PROTO_SOP: {
5825		struct scsi_transportid_sop *sop;
5826		struct scsi_sop_routing_id_norm *rid;
5827
5828		sop = (struct scsi_transportid_sop *)hdr;
5829		rid = (struct scsi_sop_routing_id_norm *)sop->routing_id;
5830
5831		/*
5832		 * Note that there is no alternate format specified in SPC-4
5833		 * for the PCIe routing ID, so we don't really have a way
5834		 * to know whether the second byte of the routing ID is
5835		 * a device and function or just a function.  So we just
5836		 * assume bus,device,function.
5837		 */
5838		sbuf_printf(sb, "SOP Routing ID: %u,%u,%u",
5839			    rid->bus, rid->devfunc >> SCSI_TRN_SOP_DEV_SHIFT,
5840			    rid->devfunc & SCSI_TRN_SOP_FUNC_NORM_MAX);
5841		break;
5842	}
5843	case SCSI_PROTO_NONE:
5844	default:
5845		sbuf_printf(sb, "Unknown protocol %#x",
5846			    hdr->format_protocol & SCSI_TRN_PROTO_MASK);
5847		break;
5848	}
5849
5850	return (0);
5851}
5852
5853struct scsi_nv scsi_proto_map[] = {
5854	{ "fcp", SCSI_PROTO_FC },
5855	{ "spi", SCSI_PROTO_SPI },
5856	{ "ssa", SCSI_PROTO_SSA },
5857	{ "sbp", SCSI_PROTO_1394 },
5858	{ "1394", SCSI_PROTO_1394 },
5859	{ "srp", SCSI_PROTO_RDMA },
5860	{ "rdma", SCSI_PROTO_RDMA },
5861	{ "iscsi", SCSI_PROTO_ISCSI },
5862	{ "iqn", SCSI_PROTO_ISCSI },
5863	{ "sas", SCSI_PROTO_SAS },
5864	{ "aditp", SCSI_PROTO_ADITP },
5865	{ "ata", SCSI_PROTO_ATA },
5866	{ "uas", SCSI_PROTO_UAS },
5867	{ "usb", SCSI_PROTO_UAS },
5868	{ "sop", SCSI_PROTO_SOP }
5869};
5870
5871const char *
5872scsi_nv_to_str(struct scsi_nv *table, int num_table_entries, uint64_t value)
5873{
5874	int i;
5875
5876	for (i = 0; i < num_table_entries; i++) {
5877		if (table[i].value == value)
5878			return (table[i].name);
5879	}
5880
5881	return (NULL);
5882}
5883
5884/*
5885 * Given a name/value table, find a value matching the given name.
5886 * Return values:
5887 *	SCSI_NV_FOUND - match found
5888 *	SCSI_NV_AMBIGUOUS - more than one match, none of them exact
5889 *	SCSI_NV_NOT_FOUND - no match found
5890 */
5891scsi_nv_status
5892scsi_get_nv(struct scsi_nv *table, int num_table_entries,
5893	    char *name, int *table_entry, scsi_nv_flags flags)
5894{
5895	int i, num_matches = 0;
5896
5897	for (i = 0; i < num_table_entries; i++) {
5898		size_t table_len, name_len;
5899
5900		table_len = strlen(table[i].name);
5901		name_len = strlen(name);
5902
5903		if ((((flags & SCSI_NV_FLAG_IG_CASE) != 0)
5904		  && (strncasecmp(table[i].name, name, name_len) == 0))
5905		|| (((flags & SCSI_NV_FLAG_IG_CASE) == 0)
5906		 && (strncmp(table[i].name, name, name_len) == 0))) {
5907			*table_entry = i;
5908
5909			/*
5910			 * Check for an exact match.  If we have the same
5911			 * number of characters in the table as the argument,
5912			 * and we already know they're the same, we have
5913			 * an exact match.
5914		 	 */
5915			if (table_len == name_len)
5916				return (SCSI_NV_FOUND);
5917
5918			/*
5919			 * Otherwise, bump up the number of matches.  We'll
5920			 * see later how many we have.
5921			 */
5922			num_matches++;
5923		}
5924	}
5925
5926	if (num_matches > 1)
5927		return (SCSI_NV_AMBIGUOUS);
5928	else if (num_matches == 1)
5929		return (SCSI_NV_FOUND);
5930	else
5931		return (SCSI_NV_NOT_FOUND);
5932}
5933
5934/*
5935 * Parse transport IDs for Fibre Channel, 1394 and SAS.  Since these are
5936 * all 64-bit numbers, the code is similar.
5937 */
5938int
5939scsi_parse_transportid_64bit(int proto_id, char *id_str,
5940			     struct scsi_transportid_header **hdr,
5941			     unsigned int *alloc_len,
5942#ifdef _KERNEL
5943			     struct malloc_type *type, int flags,
5944#endif
5945			     char *error_str, int error_str_len)
5946{
5947	uint64_t value;
5948	char *endptr;
5949	int retval;
5950	size_t alloc_size;
5951
5952	retval = 0;
5953
5954	value = strtouq(id_str, &endptr, 0);
5955	if (*endptr != '\0') {
5956		if (error_str != NULL) {
5957			snprintf(error_str, error_str_len, "%s: error "
5958				 "parsing ID %s, 64-bit number required",
5959				 __func__, id_str);
5960		}
5961		retval = 1;
5962		goto bailout;
5963	}
5964
5965	switch (proto_id) {
5966	case SCSI_PROTO_FC:
5967		alloc_size = sizeof(struct scsi_transportid_fcp);
5968		break;
5969	case SCSI_PROTO_1394:
5970		alloc_size = sizeof(struct scsi_transportid_1394);
5971		break;
5972	case SCSI_PROTO_SAS:
5973		alloc_size = sizeof(struct scsi_transportid_sas);
5974		break;
5975	default:
5976		if (error_str != NULL) {
5977			snprintf(error_str, error_str_len, "%s: unsupoprted "
5978				 "protocol %d", __func__, proto_id);
5979		}
5980		retval = 1;
5981		goto bailout;
5982		break; /* NOTREACHED */
5983	}
5984#ifdef _KERNEL
5985	*hdr = malloc(alloc_size, type, flags);
5986#else /* _KERNEL */
5987	*hdr = malloc(alloc_size);
5988#endif /*_KERNEL */
5989	if (*hdr == NULL) {
5990		if (error_str != NULL) {
5991			snprintf(error_str, error_str_len, "%s: unable to "
5992				 "allocate %zu bytes", __func__, alloc_size);
5993		}
5994		retval = 1;
5995		goto bailout;
5996	}
5997
5998	*alloc_len = alloc_size;
5999
6000	bzero(*hdr, alloc_size);
6001
6002	switch (proto_id) {
6003	case SCSI_PROTO_FC: {
6004		struct scsi_transportid_fcp *fcp;
6005
6006		fcp = (struct scsi_transportid_fcp *)(*hdr);
6007		fcp->format_protocol = SCSI_PROTO_FC |
6008				       SCSI_TRN_FCP_FORMAT_DEFAULT;
6009		scsi_u64to8b(value, fcp->n_port_name);
6010		break;
6011	}
6012	case SCSI_PROTO_1394: {
6013		struct scsi_transportid_1394 *sbp;
6014
6015		sbp = (struct scsi_transportid_1394 *)(*hdr);
6016		sbp->format_protocol = SCSI_PROTO_1394 |
6017				       SCSI_TRN_1394_FORMAT_DEFAULT;
6018		scsi_u64to8b(value, sbp->eui64);
6019		break;
6020	}
6021	case SCSI_PROTO_SAS: {
6022		struct scsi_transportid_sas *sas;
6023
6024		sas = (struct scsi_transportid_sas *)(*hdr);
6025		sas->format_protocol = SCSI_PROTO_SAS |
6026				       SCSI_TRN_SAS_FORMAT_DEFAULT;
6027		scsi_u64to8b(value, sas->sas_address);
6028		break;
6029	}
6030	default:
6031		break;
6032	}
6033bailout:
6034	return (retval);
6035}
6036
6037/*
6038 * Parse a SPI (Parallel SCSI) address of the form: id,rel_tgt_port
6039 */
6040int
6041scsi_parse_transportid_spi(char *id_str, struct scsi_transportid_header **hdr,
6042			   unsigned int *alloc_len,
6043#ifdef _KERNEL
6044			   struct malloc_type *type, int flags,
6045#endif
6046			   char *error_str, int error_str_len)
6047{
6048	unsigned long scsi_addr, target_port;
6049	struct scsi_transportid_spi *spi;
6050	char *tmpstr, *endptr;
6051	int retval;
6052
6053	retval = 0;
6054
6055	tmpstr = strsep(&id_str, ",");
6056	if (tmpstr == NULL) {
6057		if (error_str != NULL) {
6058			snprintf(error_str, error_str_len,
6059				 "%s: no ID found", __func__);
6060		}
6061		retval = 1;
6062		goto bailout;
6063	}
6064	scsi_addr = strtoul(tmpstr, &endptr, 0);
6065	if (*endptr != '\0') {
6066		if (error_str != NULL) {
6067			snprintf(error_str, error_str_len, "%s: error "
6068				 "parsing SCSI ID %s, number required",
6069				 __func__, tmpstr);
6070		}
6071		retval = 1;
6072		goto bailout;
6073	}
6074
6075	if (id_str == NULL) {
6076		if (error_str != NULL) {
6077			snprintf(error_str, error_str_len, "%s: no relative "
6078				 "target port found", __func__);
6079		}
6080		retval = 1;
6081		goto bailout;
6082	}
6083
6084	target_port = strtoul(id_str, &endptr, 0);
6085	if (*endptr != '\0') {
6086		if (error_str != NULL) {
6087			snprintf(error_str, error_str_len, "%s: error "
6088				 "parsing relative target port %s, number "
6089				 "required", __func__, id_str);
6090		}
6091		retval = 1;
6092		goto bailout;
6093	}
6094#ifdef _KERNEL
6095	spi = malloc(sizeof(*spi), type, flags);
6096#else
6097	spi = malloc(sizeof(*spi));
6098#endif
6099	if (spi == NULL) {
6100		if (error_str != NULL) {
6101			snprintf(error_str, error_str_len, "%s: unable to "
6102				 "allocate %zu bytes", __func__,
6103				 sizeof(*spi));
6104		}
6105		retval = 1;
6106		goto bailout;
6107	}
6108	*alloc_len = sizeof(*spi);
6109	bzero(spi, sizeof(*spi));
6110
6111	spi->format_protocol = SCSI_PROTO_SPI | SCSI_TRN_SPI_FORMAT_DEFAULT;
6112	scsi_ulto2b(scsi_addr, spi->scsi_addr);
6113	scsi_ulto2b(target_port, spi->rel_trgt_port_id);
6114
6115	*hdr = (struct scsi_transportid_header *)spi;
6116bailout:
6117	return (retval);
6118}
6119
6120/*
6121 * Parse an RDMA/SRP Initiator Port ID string.  This is 32 hexadecimal digits,
6122 * optionally prefixed by "0x" or "0X".
6123 */
6124int
6125scsi_parse_transportid_rdma(char *id_str, struct scsi_transportid_header **hdr,
6126			    unsigned int *alloc_len,
6127#ifdef _KERNEL
6128			    struct malloc_type *type, int flags,
6129#endif
6130			    char *error_str, int error_str_len)
6131{
6132	struct scsi_transportid_rdma *rdma;
6133	int retval;
6134	size_t id_len, rdma_id_size;
6135	uint8_t rdma_id[SCSI_TRN_RDMA_PORT_LEN];
6136	char *tmpstr;
6137	unsigned int i, j;
6138
6139	retval = 0;
6140	id_len = strlen(id_str);
6141	rdma_id_size = SCSI_TRN_RDMA_PORT_LEN;
6142
6143	/*
6144	 * Check the size.  It needs to be either 32 or 34 characters long.
6145	 */
6146	if ((id_len != (rdma_id_size * 2))
6147	 && (id_len != ((rdma_id_size * 2) + 2))) {
6148		if (error_str != NULL) {
6149			snprintf(error_str, error_str_len, "%s: RDMA ID "
6150				 "must be 32 hex digits (0x prefix "
6151				 "optional), only %zu seen", __func__, id_len);
6152		}
6153		retval = 1;
6154		goto bailout;
6155	}
6156
6157	tmpstr = id_str;
6158	/*
6159	 * If the user gave us 34 characters, the string needs to start
6160	 * with '0x'.
6161	 */
6162	if (id_len == ((rdma_id_size * 2) + 2)) {
6163	 	if ((tmpstr[0] == '0')
6164		 && ((tmpstr[1] == 'x') || (tmpstr[1] == 'X'))) {
6165			tmpstr += 2;
6166		} else {
6167			if (error_str != NULL) {
6168				snprintf(error_str, error_str_len, "%s: RDMA "
6169					 "ID prefix, if used, must be \"0x\", "
6170					 "got %s", __func__, tmpstr);
6171			}
6172			retval = 1;
6173			goto bailout;
6174		}
6175	}
6176	bzero(rdma_id, sizeof(rdma_id));
6177
6178	/*
6179	 * Convert ASCII hex into binary bytes.  There is no standard
6180	 * 128-bit integer type, and so no strtou128t() routine to convert
6181	 * from hex into a large integer.  In the end, we're not going to
6182	 * an integer, but rather to a byte array, so that and the fact
6183	 * that we require the user to give us 32 hex digits simplifies the
6184	 * logic.
6185	 */
6186	for (i = 0; i < (rdma_id_size * 2); i++) {
6187		int cur_shift;
6188		unsigned char c;
6189
6190		/* Increment the byte array one for every 2 hex digits */
6191		j = i >> 1;
6192
6193		/*
6194		 * The first digit in every pair is the most significant
6195		 * 4 bits.  The second is the least significant 4 bits.
6196		 */
6197		if ((i % 2) == 0)
6198			cur_shift = 4;
6199		else
6200			cur_shift = 0;
6201
6202		c = tmpstr[i];
6203		/* Convert the ASCII hex character into a number */
6204		if (isdigit(c))
6205			c -= '0';
6206		else if (isalpha(c))
6207			c -= isupper(c) ? 'A' - 10 : 'a' - 10;
6208		else {
6209			if (error_str != NULL) {
6210				snprintf(error_str, error_str_len, "%s: "
6211					 "RDMA ID must be hex digits, got "
6212					 "invalid character %c", __func__,
6213					 tmpstr[i]);
6214			}
6215			retval = 1;
6216			goto bailout;
6217		}
6218		/*
6219		 * The converted number can't be less than 0; the type is
6220		 * unsigned, and the subtraction logic will not give us
6221		 * a negative number.  So we only need to make sure that
6222		 * the value is not greater than 0xf.  (i.e. make sure the
6223		 * user didn't give us a value like "0x12jklmno").
6224		 */
6225		if (c > 0xf) {
6226			if (error_str != NULL) {
6227				snprintf(error_str, error_str_len, "%s: "
6228					 "RDMA ID must be hex digits, got "
6229					 "invalid character %c", __func__,
6230					 tmpstr[i]);
6231			}
6232			retval = 1;
6233			goto bailout;
6234		}
6235
6236		rdma_id[j] |= c << cur_shift;
6237	}
6238
6239#ifdef _KERNEL
6240	rdma = malloc(sizeof(*rdma), type, flags);
6241#else
6242	rdma = malloc(sizeof(*rdma));
6243#endif
6244	if (rdma == NULL) {
6245		if (error_str != NULL) {
6246			snprintf(error_str, error_str_len, "%s: unable to "
6247				 "allocate %zu bytes", __func__,
6248				 sizeof(*rdma));
6249		}
6250		retval = 1;
6251		goto bailout;
6252	}
6253	*alloc_len = sizeof(*rdma);
6254	bzero(rdma, *alloc_len);
6255
6256	rdma->format_protocol = SCSI_PROTO_RDMA | SCSI_TRN_RDMA_FORMAT_DEFAULT;
6257	bcopy(rdma_id, rdma->initiator_port_id, SCSI_TRN_RDMA_PORT_LEN);
6258
6259	*hdr = (struct scsi_transportid_header *)rdma;
6260
6261bailout:
6262	return (retval);
6263}
6264
6265/*
6266 * Parse an iSCSI name.  The format is either just the name:
6267 *
6268 *	iqn.2012-06.com.example:target0
6269 * or the name, separator and initiator session ID:
6270 *
6271 *	iqn.2012-06.com.example:target0,i,0x123
6272 *
6273 * The separator format is exact.
6274 */
6275int
6276scsi_parse_transportid_iscsi(char *id_str, struct scsi_transportid_header **hdr,
6277			     unsigned int *alloc_len,
6278#ifdef _KERNEL
6279			     struct malloc_type *type, int flags,
6280#endif
6281			     char *error_str, int error_str_len)
6282{
6283	size_t id_len, sep_len, id_size, name_len;
6284	int retval;
6285	unsigned int i, sep_pos, sep_found;
6286	const char *sep_template = ",i,0x";
6287	const char *iqn_prefix = "iqn.";
6288	struct scsi_transportid_iscsi_device *iscsi;
6289
6290	retval = 0;
6291	sep_found = 0;
6292
6293	id_len = strlen(id_str);
6294	sep_len = strlen(sep_template);
6295
6296	/*
6297	 * The separator is defined as exactly ',i,0x'.  Any other commas,
6298	 * or any other form, is an error.  So look for a comma, and once
6299	 * we find that, the next few characters must match the separator
6300	 * exactly.  Once we get through the separator, there should be at
6301	 * least one character.
6302	 */
6303	for (i = 0, sep_pos = 0; i < id_len; i++) {
6304		if (sep_pos == 0) {
6305		 	if (id_str[i] == sep_template[sep_pos])
6306				sep_pos++;
6307
6308			continue;
6309		}
6310		if (sep_pos < sep_len) {
6311			if (id_str[i] == sep_template[sep_pos]) {
6312				sep_pos++;
6313				continue;
6314			}
6315			if (error_str != NULL) {
6316				snprintf(error_str, error_str_len, "%s: "
6317					 "invalid separator in iSCSI name "
6318					 "\"%s\"",
6319					 __func__, id_str);
6320			}
6321			retval = 1;
6322			goto bailout;
6323		} else {
6324			sep_found = 1;
6325			break;
6326		}
6327	}
6328
6329	/*
6330	 * Check to see whether we have a separator but no digits after it.
6331	 */
6332	if ((sep_pos != 0)
6333	 && (sep_found == 0)) {
6334		if (error_str != NULL) {
6335			snprintf(error_str, error_str_len, "%s: no digits "
6336				 "found after separator in iSCSI name \"%s\"",
6337				 __func__, id_str);
6338		}
6339		retval = 1;
6340		goto bailout;
6341	}
6342
6343	/*
6344	 * The incoming ID string has the "iqn." prefix stripped off.  We
6345	 * need enough space for the base structure (the structures are the
6346	 * same for the two iSCSI forms), the prefix, the ID string and a
6347	 * terminating NUL.
6348	 */
6349	id_size = sizeof(*iscsi) + strlen(iqn_prefix) + id_len + 1;
6350
6351#ifdef _KERNEL
6352	iscsi = malloc(id_size, type, flags);
6353#else
6354	iscsi = malloc(id_size);
6355#endif
6356	if (iscsi == NULL) {
6357		if (error_str != NULL) {
6358			snprintf(error_str, error_str_len, "%s: unable to "
6359				 "allocate %zu bytes", __func__, id_size);
6360		}
6361		retval = 1;
6362		goto bailout;
6363	}
6364	*alloc_len = id_size;
6365	bzero(iscsi, id_size);
6366
6367	iscsi->format_protocol = SCSI_PROTO_ISCSI;
6368	if (sep_found == 0)
6369		iscsi->format_protocol |= SCSI_TRN_ISCSI_FORMAT_DEVICE;
6370	else
6371		iscsi->format_protocol |= SCSI_TRN_ISCSI_FORMAT_PORT;
6372	name_len = id_size - sizeof(*iscsi);
6373	scsi_ulto2b(name_len, iscsi->additional_length);
6374	snprintf(iscsi->iscsi_name, name_len, "%s%s", iqn_prefix, id_str);
6375
6376	*hdr = (struct scsi_transportid_header *)iscsi;
6377
6378bailout:
6379	return (retval);
6380}
6381
6382/*
6383 * Parse a SCSI over PCIe (SOP) identifier.  The Routing ID can either be
6384 * of the form 'bus,device,function' or 'bus,function'.
6385 */
6386int
6387scsi_parse_transportid_sop(char *id_str, struct scsi_transportid_header **hdr,
6388			   unsigned int *alloc_len,
6389#ifdef _KERNEL
6390			   struct malloc_type *type, int flags,
6391#endif
6392			   char *error_str, int error_str_len)
6393{
6394	struct scsi_transportid_sop *sop;
6395	unsigned long bus, device, function;
6396	char *tmpstr, *endptr;
6397	int retval, device_spec;
6398
6399	retval = 0;
6400	device_spec = 0;
6401	device = 0;
6402
6403	tmpstr = strsep(&id_str, ",");
6404	if ((tmpstr == NULL)
6405	 || (*tmpstr == '\0')) {
6406		if (error_str != NULL) {
6407			snprintf(error_str, error_str_len, "%s: no ID found",
6408				 __func__);
6409		}
6410		retval = 1;
6411		goto bailout;
6412	}
6413	bus = strtoul(tmpstr, &endptr, 0);
6414	if (*endptr != '\0') {
6415		if (error_str != NULL) {
6416			snprintf(error_str, error_str_len, "%s: error "
6417				 "parsing PCIe bus %s, number required",
6418				 __func__, tmpstr);
6419		}
6420		retval = 1;
6421		goto bailout;
6422	}
6423	if ((id_str == NULL)
6424	 || (*id_str == '\0')) {
6425		if (error_str != NULL) {
6426			snprintf(error_str, error_str_len, "%s: no PCIe "
6427				 "device or function found", __func__);
6428		}
6429		retval = 1;
6430		goto bailout;
6431	}
6432	tmpstr = strsep(&id_str, ",");
6433	function = strtoul(tmpstr, &endptr, 0);
6434	if (*endptr != '\0') {
6435		if (error_str != NULL) {
6436			snprintf(error_str, error_str_len, "%s: error "
6437				 "parsing PCIe device/function %s, number "
6438				 "required", __func__, tmpstr);
6439		}
6440		retval = 1;
6441		goto bailout;
6442	}
6443	/*
6444	 * Check to see whether the user specified a third value.  If so,
6445	 * the second is the device.
6446	 */
6447	if (id_str != NULL) {
6448		if (*id_str == '\0') {
6449			if (error_str != NULL) {
6450				snprintf(error_str, error_str_len, "%s: "
6451					 "no PCIe function found", __func__);
6452			}
6453			retval = 1;
6454			goto bailout;
6455		}
6456		device = function;
6457		device_spec = 1;
6458		function = strtoul(id_str, &endptr, 0);
6459		if (*endptr != '\0') {
6460			if (error_str != NULL) {
6461				snprintf(error_str, error_str_len, "%s: "
6462					 "error parsing PCIe function %s, "
6463					 "number required", __func__, id_str);
6464			}
6465			retval = 1;
6466			goto bailout;
6467		}
6468	}
6469	if (bus > SCSI_TRN_SOP_BUS_MAX) {
6470		if (error_str != NULL) {
6471			snprintf(error_str, error_str_len, "%s: bus value "
6472				 "%lu greater than maximum %u", __func__,
6473				 bus, SCSI_TRN_SOP_BUS_MAX);
6474		}
6475		retval = 1;
6476		goto bailout;
6477	}
6478
6479	if ((device_spec != 0)
6480	 && (device > SCSI_TRN_SOP_DEV_MASK)) {
6481		if (error_str != NULL) {
6482			snprintf(error_str, error_str_len, "%s: device value "
6483				 "%lu greater than maximum %u", __func__,
6484				 device, SCSI_TRN_SOP_DEV_MAX);
6485		}
6486		retval = 1;
6487		goto bailout;
6488	}
6489
6490	if (((device_spec != 0)
6491	  && (function > SCSI_TRN_SOP_FUNC_NORM_MAX))
6492	 || ((device_spec == 0)
6493	  && (function > SCSI_TRN_SOP_FUNC_ALT_MAX))) {
6494		if (error_str != NULL) {
6495			snprintf(error_str, error_str_len, "%s: function value "
6496				 "%lu greater than maximum %u", __func__,
6497				 function, (device_spec == 0) ?
6498				 SCSI_TRN_SOP_FUNC_ALT_MAX :
6499				 SCSI_TRN_SOP_FUNC_NORM_MAX);
6500		}
6501		retval = 1;
6502		goto bailout;
6503	}
6504
6505#ifdef _KERNEL
6506	sop = malloc(sizeof(*sop), type, flags);
6507#else
6508	sop = malloc(sizeof(*sop));
6509#endif
6510	if (sop == NULL) {
6511		if (error_str != NULL) {
6512			snprintf(error_str, error_str_len, "%s: unable to "
6513				 "allocate %zu bytes", __func__, sizeof(*sop));
6514		}
6515		retval = 1;
6516		goto bailout;
6517	}
6518	*alloc_len = sizeof(*sop);
6519	bzero(sop, sizeof(*sop));
6520	sop->format_protocol = SCSI_PROTO_SOP | SCSI_TRN_SOP_FORMAT_DEFAULT;
6521	if (device_spec != 0) {
6522		struct scsi_sop_routing_id_norm rid;
6523
6524		rid.bus = bus;
6525		rid.devfunc = (device << SCSI_TRN_SOP_DEV_SHIFT) | function;
6526		bcopy(&rid, sop->routing_id, MIN(sizeof(rid),
6527		      sizeof(sop->routing_id)));
6528	} else {
6529		struct scsi_sop_routing_id_alt rid;
6530
6531		rid.bus = bus;
6532		rid.function = function;
6533		bcopy(&rid, sop->routing_id, MIN(sizeof(rid),
6534		      sizeof(sop->routing_id)));
6535	}
6536
6537	*hdr = (struct scsi_transportid_header *)sop;
6538bailout:
6539	return (retval);
6540}
6541
6542/*
6543 * transportid_str: NUL-terminated string with format: protcol,id
6544 *		    The ID is protocol specific.
6545 * hdr:		    Storage will be allocated for the transport ID.
6546 * alloc_len:	    The amount of memory allocated is returned here.
6547 * type:	    Malloc bucket (kernel only).
6548 * flags:	    Malloc flags (kernel only).
6549 * error_str:	    If non-NULL, it will contain error information (without
6550 * 		    a terminating newline) if an error is returned.
6551 * error_str_len:   Allocated length of the error string.
6552 *
6553 * Returns 0 for success, non-zero for failure.
6554 */
6555int
6556scsi_parse_transportid(char *transportid_str,
6557		       struct scsi_transportid_header **hdr,
6558		       unsigned int *alloc_len,
6559#ifdef _KERNEL
6560		       struct malloc_type *type, int flags,
6561#endif
6562		       char *error_str, int error_str_len)
6563{
6564	char *tmpstr;
6565	scsi_nv_status status;
6566	int retval, num_proto_entries, table_entry;
6567
6568	retval = 0;
6569	table_entry = 0;
6570
6571	/*
6572	 * We do allow a period as well as a comma to separate the protocol
6573	 * from the ID string.  This is to accommodate iSCSI names, which
6574	 * start with "iqn.".
6575	 */
6576	tmpstr = strsep(&transportid_str, ",.");
6577	if (tmpstr == NULL) {
6578		if (error_str != NULL) {
6579			snprintf(error_str, error_str_len,
6580				 "%s: transportid_str is NULL", __func__);
6581		}
6582		retval = 1;
6583		goto bailout;
6584	}
6585
6586	num_proto_entries = sizeof(scsi_proto_map) /
6587			    sizeof(scsi_proto_map[0]);
6588	status = scsi_get_nv(scsi_proto_map, num_proto_entries, tmpstr,
6589			     &table_entry, SCSI_NV_FLAG_IG_CASE);
6590	if (status != SCSI_NV_FOUND) {
6591		if (error_str != NULL) {
6592			snprintf(error_str, error_str_len, "%s: %s protocol "
6593				 "name %s", __func__,
6594				 (status == SCSI_NV_AMBIGUOUS) ? "ambiguous" :
6595				 "invalid", tmpstr);
6596		}
6597		retval = 1;
6598		goto bailout;
6599	}
6600	switch (scsi_proto_map[table_entry].value) {
6601	case SCSI_PROTO_FC:
6602	case SCSI_PROTO_1394:
6603	case SCSI_PROTO_SAS:
6604		retval = scsi_parse_transportid_64bit(
6605		    scsi_proto_map[table_entry].value, transportid_str, hdr,
6606		    alloc_len,
6607#ifdef _KERNEL
6608		    type, flags,
6609#endif
6610		    error_str, error_str_len);
6611		break;
6612	case SCSI_PROTO_SPI:
6613		retval = scsi_parse_transportid_spi(transportid_str, hdr,
6614		    alloc_len,
6615#ifdef _KERNEL
6616		    type, flags,
6617#endif
6618		    error_str, error_str_len);
6619		break;
6620	case SCSI_PROTO_RDMA:
6621		retval = scsi_parse_transportid_rdma(transportid_str, hdr,
6622		    alloc_len,
6623#ifdef _KERNEL
6624		    type, flags,
6625#endif
6626		    error_str, error_str_len);
6627		break;
6628	case SCSI_PROTO_ISCSI:
6629		retval = scsi_parse_transportid_iscsi(transportid_str, hdr,
6630		    alloc_len,
6631#ifdef _KERNEL
6632		    type, flags,
6633#endif
6634		    error_str, error_str_len);
6635		break;
6636	case SCSI_PROTO_SOP:
6637		retval = scsi_parse_transportid_sop(transportid_str, hdr,
6638		    alloc_len,
6639#ifdef _KERNEL
6640		    type, flags,
6641#endif
6642		    error_str, error_str_len);
6643		break;
6644	case SCSI_PROTO_SSA:
6645	case SCSI_PROTO_ADITP:
6646	case SCSI_PROTO_ATA:
6647	case SCSI_PROTO_UAS:
6648	case SCSI_PROTO_NONE:
6649	default:
6650		/*
6651		 * There is no format defined for a Transport ID for these
6652		 * protocols.  So even if the user gives us something, we
6653		 * have no way to turn it into a standard SCSI Transport ID.
6654		 */
6655		retval = 1;
6656		if (error_str != NULL) {
6657			snprintf(error_str, error_str_len, "%s: no Transport "
6658				 "ID format exists for protocol %s",
6659				 __func__, tmpstr);
6660		}
6661		goto bailout;
6662		break;	/* NOTREACHED */
6663	}
6664bailout:
6665	return (retval);
6666}
6667
6668struct scsi_attrib_table_entry scsi_mam_attr_table[] = {
6669	{ SMA_ATTR_REM_CAP_PARTITION, SCSI_ATTR_FLAG_NONE,
6670	  "Remaining Capacity in Partition",
6671	  /*suffix*/ "MB", /*to_str*/ scsi_attrib_int_sbuf,/*parse_str*/ NULL },
6672	{ SMA_ATTR_MAX_CAP_PARTITION, SCSI_ATTR_FLAG_NONE,
6673	  "Maximum Capacity in Partition",
6674	  /*suffix*/"MB", /*to_str*/ scsi_attrib_int_sbuf, /*parse_str*/ NULL },
6675	{ SMA_ATTR_TAPEALERT_FLAGS, SCSI_ATTR_FLAG_HEX,
6676	  "TapeAlert Flags",
6677	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf, /*parse_str*/ NULL },
6678	{ SMA_ATTR_LOAD_COUNT, SCSI_ATTR_FLAG_NONE,
6679	  "Load Count",
6680	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf, /*parse_str*/ NULL },
6681	{ SMA_ATTR_MAM_SPACE_REMAINING, SCSI_ATTR_FLAG_NONE,
6682	  "MAM Space Remaining",
6683	  /*suffix*/"bytes", /*to_str*/ scsi_attrib_int_sbuf,
6684	  /*parse_str*/ NULL },
6685	{ SMA_ATTR_DEV_ASSIGNING_ORG, SCSI_ATTR_FLAG_NONE,
6686	  "Assigning Organization",
6687	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6688	  /*parse_str*/ NULL },
6689	{ SMA_ATTR_FORMAT_DENSITY_CODE, SCSI_ATTR_FLAG_HEX,
6690	  "Format Density Code",
6691	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf, /*parse_str*/ NULL },
6692	{ SMA_ATTR_INITIALIZATION_COUNT, SCSI_ATTR_FLAG_NONE,
6693	  "Initialization Count",
6694	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf, /*parse_str*/ NULL },
6695	{ SMA_ATTR_VOLUME_ID, SCSI_ATTR_FLAG_NONE,
6696	  "Volume Identifier",
6697	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6698	  /*parse_str*/ NULL },
6699	{ SMA_ATTR_VOLUME_CHANGE_REF, SCSI_ATTR_FLAG_HEX,
6700	  "Volume Change Reference",
6701	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf,
6702	  /*parse_str*/ NULL },
6703	{ SMA_ATTR_DEV_SERIAL_LAST_LOAD, SCSI_ATTR_FLAG_NONE,
6704	  "Device Vendor/Serial at Last Load",
6705	  /*suffix*/NULL, /*to_str*/ scsi_attrib_vendser_sbuf,
6706	  /*parse_str*/ NULL },
6707	{ SMA_ATTR_DEV_SERIAL_LAST_LOAD_1, SCSI_ATTR_FLAG_NONE,
6708	  "Device Vendor/Serial at Last Load - 1",
6709	  /*suffix*/NULL, /*to_str*/ scsi_attrib_vendser_sbuf,
6710	  /*parse_str*/ NULL },
6711	{ SMA_ATTR_DEV_SERIAL_LAST_LOAD_2, SCSI_ATTR_FLAG_NONE,
6712	  "Device Vendor/Serial at Last Load - 2",
6713	  /*suffix*/NULL, /*to_str*/ scsi_attrib_vendser_sbuf,
6714	  /*parse_str*/ NULL },
6715	{ SMA_ATTR_DEV_SERIAL_LAST_LOAD_3, SCSI_ATTR_FLAG_NONE,
6716	  "Device Vendor/Serial at Last Load - 3",
6717	  /*suffix*/NULL, /*to_str*/ scsi_attrib_vendser_sbuf,
6718	  /*parse_str*/ NULL },
6719	{ SMA_ATTR_TOTAL_MB_WRITTEN_LT, SCSI_ATTR_FLAG_NONE,
6720	  "Total MB Written in Medium Life",
6721	  /*suffix*/ "MB", /*to_str*/ scsi_attrib_int_sbuf,
6722	  /*parse_str*/ NULL },
6723	{ SMA_ATTR_TOTAL_MB_READ_LT, SCSI_ATTR_FLAG_NONE,
6724	  "Total MB Read in Medium Life",
6725	  /*suffix*/ "MB", /*to_str*/ scsi_attrib_int_sbuf,
6726	  /*parse_str*/ NULL },
6727	{ SMA_ATTR_TOTAL_MB_WRITTEN_CUR, SCSI_ATTR_FLAG_NONE,
6728	  "Total MB Written in Current/Last Load",
6729	  /*suffix*/ "MB", /*to_str*/ scsi_attrib_int_sbuf,
6730	  /*parse_str*/ NULL },
6731	{ SMA_ATTR_TOTAL_MB_READ_CUR, SCSI_ATTR_FLAG_NONE,
6732	  "Total MB Read in Current/Last Load",
6733	  /*suffix*/ "MB", /*to_str*/ scsi_attrib_int_sbuf,
6734	  /*parse_str*/ NULL },
6735	{ SMA_ATTR_FIRST_ENC_BLOCK, SCSI_ATTR_FLAG_NONE,
6736	  "Logical Position of First Encrypted Block",
6737	  /*suffix*/ NULL, /*to_str*/ scsi_attrib_int_sbuf,
6738	  /*parse_str*/ NULL },
6739	{ SMA_ATTR_NEXT_UNENC_BLOCK, SCSI_ATTR_FLAG_NONE,
6740	  "Logical Position of First Unencrypted Block after First "
6741	  "Encrypted Block",
6742	  /*suffix*/ NULL, /*to_str*/ scsi_attrib_int_sbuf,
6743	  /*parse_str*/ NULL },
6744	{ SMA_ATTR_MEDIUM_USAGE_HIST, SCSI_ATTR_FLAG_NONE,
6745	  "Medium Usage History",
6746	  /*suffix*/ NULL, /*to_str*/ NULL,
6747	  /*parse_str*/ NULL },
6748	{ SMA_ATTR_PART_USAGE_HIST, SCSI_ATTR_FLAG_NONE,
6749	  "Partition Usage History",
6750	  /*suffix*/ NULL, /*to_str*/ NULL,
6751	  /*parse_str*/ NULL },
6752	{ SMA_ATTR_MED_MANUF, SCSI_ATTR_FLAG_NONE,
6753	  "Medium Manufacturer",
6754	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6755	  /*parse_str*/ NULL },
6756	{ SMA_ATTR_MED_SERIAL, SCSI_ATTR_FLAG_NONE,
6757	  "Medium Serial Number",
6758	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6759	  /*parse_str*/ NULL },
6760	{ SMA_ATTR_MED_LENGTH, SCSI_ATTR_FLAG_NONE,
6761	  "Medium Length",
6762	  /*suffix*/"m", /*to_str*/ scsi_attrib_int_sbuf,
6763	  /*parse_str*/ NULL },
6764	{ SMA_ATTR_MED_WIDTH, SCSI_ATTR_FLAG_FP | SCSI_ATTR_FLAG_DIV_10 |
6765	  SCSI_ATTR_FLAG_FP_1DIGIT,
6766	  "Medium Width",
6767	  /*suffix*/"mm", /*to_str*/ scsi_attrib_int_sbuf,
6768	  /*parse_str*/ NULL },
6769	{ SMA_ATTR_MED_ASSIGNING_ORG, SCSI_ATTR_FLAG_NONE,
6770	  "Assigning Organization",
6771	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6772	  /*parse_str*/ NULL },
6773	{ SMA_ATTR_MED_DENSITY_CODE, SCSI_ATTR_FLAG_HEX,
6774	  "Medium Density Code",
6775	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf,
6776	  /*parse_str*/ NULL },
6777	{ SMA_ATTR_MED_MANUF_DATE, SCSI_ATTR_FLAG_NONE,
6778	  "Medium Manufacture Date",
6779	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6780	  /*parse_str*/ NULL },
6781	{ SMA_ATTR_MAM_CAPACITY, SCSI_ATTR_FLAG_NONE,
6782	  "MAM Capacity",
6783	  /*suffix*/"bytes", /*to_str*/ scsi_attrib_int_sbuf,
6784	  /*parse_str*/ NULL },
6785	{ SMA_ATTR_MED_TYPE, SCSI_ATTR_FLAG_HEX,
6786	  "Medium Type",
6787	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf,
6788	  /*parse_str*/ NULL },
6789	{ SMA_ATTR_MED_TYPE_INFO, SCSI_ATTR_FLAG_HEX,
6790	  "Medium Type Information",
6791	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf,
6792	  /*parse_str*/ NULL },
6793	{ SMA_ATTR_MED_SERIAL_NUM, SCSI_ATTR_FLAG_NONE,
6794	  "Medium Serial Number",
6795	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf,
6796	  /*parse_str*/ NULL },
6797	{ SMA_ATTR_APP_VENDOR, SCSI_ATTR_FLAG_NONE,
6798	  "Application Vendor",
6799	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6800	  /*parse_str*/ NULL },
6801	{ SMA_ATTR_APP_NAME, SCSI_ATTR_FLAG_NONE,
6802	  "Application Name",
6803	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6804	  /*parse_str*/ NULL },
6805	{ SMA_ATTR_APP_VERSION, SCSI_ATTR_FLAG_NONE,
6806	  "Application Version",
6807	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6808	  /*parse_str*/ NULL },
6809	{ SMA_ATTR_USER_MED_TEXT_LABEL, SCSI_ATTR_FLAG_NONE,
6810	  "User Medium Text Label",
6811	  /*suffix*/NULL, /*to_str*/ scsi_attrib_text_sbuf,
6812	  /*parse_str*/ NULL },
6813	{ SMA_ATTR_LAST_WRITTEN_TIME, SCSI_ATTR_FLAG_NONE,
6814	  "Date and Time Last Written",
6815	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6816	  /*parse_str*/ NULL },
6817	{ SMA_ATTR_TEXT_LOCAL_ID, SCSI_ATTR_FLAG_HEX,
6818	  "Text Localization Identifier",
6819	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf,
6820	  /*parse_str*/ NULL },
6821	{ SMA_ATTR_BARCODE, SCSI_ATTR_FLAG_NONE,
6822	  "Barcode",
6823	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6824	  /*parse_str*/ NULL },
6825	{ SMA_ATTR_HOST_OWNER_NAME, SCSI_ATTR_FLAG_NONE,
6826	  "Owning Host Textual Name",
6827	  /*suffix*/NULL, /*to_str*/ scsi_attrib_text_sbuf,
6828	  /*parse_str*/ NULL },
6829	{ SMA_ATTR_MEDIA_POOL, SCSI_ATTR_FLAG_NONE,
6830	  "Media Pool",
6831	  /*suffix*/NULL, /*to_str*/ scsi_attrib_text_sbuf,
6832	  /*parse_str*/ NULL },
6833	{ SMA_ATTR_PART_USER_LABEL, SCSI_ATTR_FLAG_NONE,
6834	  "Partition User Text Label",
6835	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6836	  /*parse_str*/ NULL },
6837	{ SMA_ATTR_LOAD_UNLOAD_AT_PART, SCSI_ATTR_FLAG_NONE,
6838	  "Load/Unload at Partition",
6839	  /*suffix*/NULL, /*to_str*/ scsi_attrib_int_sbuf,
6840	  /*parse_str*/ NULL },
6841	{ SMA_ATTR_APP_FORMAT_VERSION, SCSI_ATTR_FLAG_NONE,
6842	  "Application Format Version",
6843	  /*suffix*/NULL, /*to_str*/ scsi_attrib_ascii_sbuf,
6844	  /*parse_str*/ NULL },
6845	{ SMA_ATTR_VOL_COHERENCY_INFO, SCSI_ATTR_FLAG_NONE,
6846	  "Volume Coherency Information",
6847	  /*suffix*/NULL, /*to_str*/ scsi_attrib_volcoh_sbuf,
6848	  /*parse_str*/ NULL },
6849	{ 0x0ff1, SCSI_ATTR_FLAG_NONE,
6850	  "Spectra MLM Creation",
6851	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6852	  /*parse_str*/ NULL },
6853	{ 0x0ff2, SCSI_ATTR_FLAG_NONE,
6854	  "Spectra MLM C3",
6855	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6856	  /*parse_str*/ NULL },
6857	{ 0x0ff3, SCSI_ATTR_FLAG_NONE,
6858	  "Spectra MLM RW",
6859	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6860	  /*parse_str*/ NULL },
6861	{ 0x0ff4, SCSI_ATTR_FLAG_NONE,
6862	  "Spectra MLM SDC List",
6863	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6864	  /*parse_str*/ NULL },
6865	{ 0x0ff7, SCSI_ATTR_FLAG_NONE,
6866	  "Spectra MLM Post Scan",
6867	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6868	  /*parse_str*/ NULL },
6869	{ 0x0ffe, SCSI_ATTR_FLAG_NONE,
6870	  "Spectra MLM Checksum",
6871	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6872	  /*parse_str*/ NULL },
6873	{ 0x17f1, SCSI_ATTR_FLAG_NONE,
6874	  "Spectra MLM Creation",
6875	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6876	  /*parse_str*/ NULL },
6877	{ 0x17f2, SCSI_ATTR_FLAG_NONE,
6878	  "Spectra MLM C3",
6879	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6880	  /*parse_str*/ NULL },
6881	{ 0x17f3, SCSI_ATTR_FLAG_NONE,
6882	  "Spectra MLM RW",
6883	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6884	  /*parse_str*/ NULL },
6885	{ 0x17f4, SCSI_ATTR_FLAG_NONE,
6886	  "Spectra MLM SDC List",
6887	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6888	  /*parse_str*/ NULL },
6889	{ 0x17f7, SCSI_ATTR_FLAG_NONE,
6890	  "Spectra MLM Post Scan",
6891	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6892	  /*parse_str*/ NULL },
6893	{ 0x17ff, SCSI_ATTR_FLAG_NONE,
6894	  "Spectra MLM Checksum",
6895	  /*suffix*/NULL, /*to_str*/ scsi_attrib_hexdump_sbuf,
6896	  /*parse_str*/ NULL },
6897};
6898
6899/*
6900 * Print out Volume Coherency Information (Attribute 0x080c).
6901 * This field has two variable length members, including one at the
6902 * beginning, so it isn't practical to have a fixed structure definition.
6903 * This is current as of SSC4r03 (see section 4.2.21.3), dated March 25,
6904 * 2013.
6905 */
6906int
6907scsi_attrib_volcoh_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
6908			 uint32_t valid_len, uint32_t flags,
6909			 uint32_t output_flags, char *error_str,
6910			 int error_str_len)
6911{
6912	size_t avail_len;
6913	uint32_t field_size;
6914	uint64_t tmp_val;
6915	uint8_t *cur_ptr;
6916	int retval;
6917	int vcr_len, as_len;
6918
6919	retval = 0;
6920	tmp_val = 0;
6921
6922	field_size = scsi_2btoul(hdr->length);
6923	avail_len = valid_len - sizeof(*hdr);
6924	if (field_size > avail_len) {
6925		if (error_str != NULL) {
6926			snprintf(error_str, error_str_len, "Available "
6927				 "length of attribute ID 0x%.4x %zu < field "
6928				 "length %u", scsi_2btoul(hdr->id), avail_len,
6929				 field_size);
6930		}
6931		retval = 1;
6932		goto bailout;
6933	} else if (field_size == 0) {
6934		/*
6935		 * It isn't clear from the spec whether a field length of
6936		 * 0 is invalid here.  It probably is, but be lenient here
6937		 * to avoid inconveniencing the user.
6938		 */
6939		goto bailout;
6940	}
6941	cur_ptr = hdr->attribute;
6942	vcr_len = *cur_ptr;
6943	cur_ptr++;
6944
6945	sbuf_printf(sb, "\n\tVolume Change Reference Value:");
6946
6947	switch (vcr_len) {
6948	case 0:
6949		if (error_str != NULL) {
6950			snprintf(error_str, error_str_len, "Volume Change "
6951				 "Reference value has length of 0");
6952		}
6953		retval = 1;
6954		goto bailout;
6955		break; /*NOTREACHED*/
6956	case 1:
6957		tmp_val = *cur_ptr;
6958		break;
6959	case 2:
6960		tmp_val = scsi_2btoul(cur_ptr);
6961		break;
6962	case 3:
6963		tmp_val = scsi_3btoul(cur_ptr);
6964		break;
6965	case 4:
6966		tmp_val = scsi_4btoul(cur_ptr);
6967		break;
6968	case 8:
6969		tmp_val = scsi_8btou64(cur_ptr);
6970		break;
6971	default:
6972		sbuf_printf(sb, "\n");
6973		sbuf_hexdump(sb, cur_ptr, vcr_len, NULL, 0);
6974		break;
6975	}
6976	if (vcr_len <= 8)
6977		sbuf_printf(sb, " 0x%jx\n", (uintmax_t)tmp_val);
6978
6979	cur_ptr += vcr_len;
6980	tmp_val = scsi_8btou64(cur_ptr);
6981	sbuf_printf(sb, "\tVolume Coherency Count: %ju\n", (uintmax_t)tmp_val);
6982
6983	cur_ptr += sizeof(tmp_val);
6984	tmp_val = scsi_8btou64(cur_ptr);
6985	sbuf_printf(sb, "\tVolume Coherency Set Identifier: 0x%jx\n",
6986		    (uintmax_t)tmp_val);
6987
6988	/*
6989	 * Figure out how long the Application Client Specific Information
6990	 * is and produce a hexdump.
6991	 */
6992	cur_ptr += sizeof(tmp_val);
6993	as_len = scsi_2btoul(cur_ptr);
6994	cur_ptr += sizeof(uint16_t);
6995	sbuf_printf(sb, "\tApplication Client Specific Information: ");
6996	if (((as_len == SCSI_LTFS_VER0_LEN)
6997	  || (as_len == SCSI_LTFS_VER1_LEN))
6998	 && (strncmp(cur_ptr, SCSI_LTFS_STR_NAME, SCSI_LTFS_STR_LEN) == 0)) {
6999		sbuf_printf(sb, "LTFS\n");
7000		cur_ptr += SCSI_LTFS_STR_LEN + 1;
7001		if (cur_ptr[SCSI_LTFS_UUID_LEN] != '\0')
7002			cur_ptr[SCSI_LTFS_UUID_LEN] = '\0';
7003		sbuf_printf(sb, "\tLTFS UUID: %s\n", cur_ptr);
7004		cur_ptr += SCSI_LTFS_UUID_LEN + 1;
7005		/* XXX KDM check the length */
7006		sbuf_printf(sb, "\tLTFS Version: %d\n", *cur_ptr);
7007	} else {
7008		sbuf_printf(sb, "Unknown\n");
7009		sbuf_hexdump(sb, cur_ptr, as_len, NULL, 0);
7010	}
7011
7012bailout:
7013	return (retval);
7014}
7015
7016int
7017scsi_attrib_vendser_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
7018			 uint32_t valid_len, uint32_t flags,
7019			 uint32_t output_flags, char *error_str,
7020			 int error_str_len)
7021{
7022	size_t avail_len;
7023	uint32_t field_size;
7024	struct scsi_attrib_vendser *vendser;
7025	cam_strvis_flags strvis_flags;
7026	int retval = 0;
7027
7028	field_size = scsi_2btoul(hdr->length);
7029	avail_len = valid_len - sizeof(*hdr);
7030	if (field_size > avail_len) {
7031		if (error_str != NULL) {
7032			snprintf(error_str, error_str_len, "Available "
7033				 "length of attribute ID 0x%.4x %zu < field "
7034				 "length %u", scsi_2btoul(hdr->id), avail_len,
7035				 field_size);
7036		}
7037		retval = 1;
7038		goto bailout;
7039	} else if (field_size == 0) {
7040		/*
7041		 * A field size of 0 doesn't make sense here.  The device
7042		 * can at least give you the vendor ID, even if it can't
7043		 * give you the serial number.
7044		 */
7045		if (error_str != NULL) {
7046			snprintf(error_str, error_str_len, "The length of "
7047				 "attribute ID 0x%.4x is 0",
7048				 scsi_2btoul(hdr->id));
7049		}
7050		retval = 1;
7051		goto bailout;
7052	}
7053	vendser = (struct scsi_attrib_vendser *)hdr->attribute;
7054
7055	switch (output_flags & SCSI_ATTR_OUTPUT_NONASCII_MASK) {
7056	case SCSI_ATTR_OUTPUT_NONASCII_TRIM:
7057		strvis_flags = CAM_STRVIS_FLAG_NONASCII_TRIM;
7058		break;
7059	case SCSI_ATTR_OUTPUT_NONASCII_RAW:
7060		strvis_flags = CAM_STRVIS_FLAG_NONASCII_RAW;
7061		break;
7062	case SCSI_ATTR_OUTPUT_NONASCII_ESC:
7063	default:
7064		strvis_flags = CAM_STRVIS_FLAG_NONASCII_ESC;
7065		break;;
7066	}
7067	cam_strvis_sbuf(sb, vendser->vendor, sizeof(vendser->vendor),
7068	    strvis_flags);
7069	sbuf_putc(sb, ' ');
7070	cam_strvis_sbuf(sb, vendser->serial_num, sizeof(vendser->serial_num),
7071	    strvis_flags);
7072bailout:
7073	return (retval);
7074}
7075
7076int
7077scsi_attrib_hexdump_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
7078			 uint32_t valid_len, uint32_t flags,
7079			 uint32_t output_flags, char *error_str,
7080			 int error_str_len)
7081{
7082	uint32_t field_size;
7083	ssize_t avail_len;
7084	uint32_t print_len;
7085	uint8_t *num_ptr;
7086	int retval = 0;
7087
7088	field_size = scsi_2btoul(hdr->length);
7089	avail_len = valid_len - sizeof(*hdr);
7090	print_len = MIN(avail_len, field_size);
7091	num_ptr = hdr->attribute;
7092
7093	if (print_len > 0) {
7094		sbuf_printf(sb, "\n");
7095		sbuf_hexdump(sb, num_ptr, print_len, NULL, 0);
7096	}
7097
7098	return (retval);
7099}
7100
7101int
7102scsi_attrib_int_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
7103		     uint32_t valid_len, uint32_t flags,
7104		     uint32_t output_flags, char *error_str,
7105		     int error_str_len)
7106{
7107	uint64_t print_number;
7108	size_t avail_len;
7109	uint32_t number_size;
7110	int retval = 0;
7111
7112	number_size = scsi_2btoul(hdr->length);
7113
7114	avail_len = valid_len - sizeof(*hdr);
7115	if (avail_len < number_size) {
7116		if (error_str != NULL) {
7117			snprintf(error_str, error_str_len, "Available "
7118				 "length of attribute ID 0x%.4x %zu < field "
7119				 "length %u", scsi_2btoul(hdr->id), avail_len,
7120				 number_size);
7121		}
7122		retval = 1;
7123		goto bailout;
7124	}
7125
7126	switch (number_size) {
7127	case 0:
7128		/*
7129		 * We don't treat this as an error, since there may be
7130		 * scenarios where a device reports a field but then gives
7131		 * a length of 0.  See the note in scsi_attrib_ascii_sbuf().
7132		 */
7133		goto bailout;
7134		break; /*NOTREACHED*/
7135	case 1:
7136		print_number = hdr->attribute[0];
7137		break;
7138	case 2:
7139		print_number = scsi_2btoul(hdr->attribute);
7140		break;
7141	case 3:
7142		print_number = scsi_3btoul(hdr->attribute);
7143		break;
7144	case 4:
7145		print_number = scsi_4btoul(hdr->attribute);
7146		break;
7147	case 8:
7148		print_number = scsi_8btou64(hdr->attribute);
7149		break;
7150	default:
7151		/*
7152		 * If we wind up here, the number is too big to print
7153		 * normally, so just do a hexdump.
7154		 */
7155		retval = scsi_attrib_hexdump_sbuf(sb, hdr, valid_len,
7156						  flags, output_flags,
7157						  error_str, error_str_len);
7158		goto bailout;
7159		break;
7160	}
7161
7162	if (flags & SCSI_ATTR_FLAG_FP) {
7163#ifndef _KERNEL
7164		long double num_float;
7165
7166		num_float = (long double)print_number;
7167
7168		if (flags & SCSI_ATTR_FLAG_DIV_10)
7169			num_float /= 10;
7170
7171		sbuf_printf(sb, "%.*Lf", (flags & SCSI_ATTR_FLAG_FP_1DIGIT) ?
7172			    1 : 0, num_float);
7173#else /* _KERNEL */
7174		sbuf_printf(sb, "%ju", (flags & SCSI_ATTR_FLAG_DIV_10) ?
7175			    (print_number / 10) : print_number);
7176#endif /* _KERNEL */
7177	} else if (flags & SCSI_ATTR_FLAG_HEX) {
7178		sbuf_printf(sb, "0x%jx", (uintmax_t)print_number);
7179	} else
7180		sbuf_printf(sb, "%ju", (uintmax_t)print_number);
7181
7182bailout:
7183	return (retval);
7184}
7185
7186int
7187scsi_attrib_ascii_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
7188		       uint32_t valid_len, uint32_t flags,
7189		       uint32_t output_flags, char *error_str,
7190		       int error_str_len)
7191{
7192	size_t avail_len;
7193	uint32_t field_size, print_size;
7194	int retval = 0;
7195
7196	avail_len = valid_len - sizeof(*hdr);
7197	field_size = scsi_2btoul(hdr->length);
7198	print_size = MIN(avail_len, field_size);
7199
7200	if (print_size > 0) {
7201		cam_strvis_flags strvis_flags;
7202
7203		switch (output_flags & SCSI_ATTR_OUTPUT_NONASCII_MASK) {
7204		case SCSI_ATTR_OUTPUT_NONASCII_TRIM:
7205			strvis_flags = CAM_STRVIS_FLAG_NONASCII_TRIM;
7206			break;
7207		case SCSI_ATTR_OUTPUT_NONASCII_RAW:
7208			strvis_flags = CAM_STRVIS_FLAG_NONASCII_RAW;
7209			break;
7210		case SCSI_ATTR_OUTPUT_NONASCII_ESC:
7211		default:
7212			strvis_flags = CAM_STRVIS_FLAG_NONASCII_ESC;
7213			break;
7214		}
7215		cam_strvis_sbuf(sb, hdr->attribute, print_size, strvis_flags);
7216	} else if (avail_len < field_size) {
7217		/*
7218		 * We only report an error if the user didn't allocate
7219		 * enough space to hold the full value of this field.  If
7220		 * the field length is 0, that is allowed by the spec.
7221		 * e.g. in SPC-4r37, section 7.4.2.2.5, VOLUME IDENTIFIER
7222		 * "This attribute indicates the current volume identifier
7223		 * (see SMC-3) of the medium. If the device server supports
7224		 * this attribute but does not have access to the volume
7225		 * identifier, the device server shall report this attribute
7226		 * with an attribute length value of zero."
7227		 */
7228		if (error_str != NULL) {
7229			snprintf(error_str, error_str_len, "Available "
7230				 "length of attribute ID 0x%.4x %zu < field "
7231				 "length %u", scsi_2btoul(hdr->id), avail_len,
7232				 field_size);
7233		}
7234		retval = 1;
7235	}
7236
7237	return (retval);
7238}
7239
7240int
7241scsi_attrib_text_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
7242		      uint32_t valid_len, uint32_t flags,
7243		      uint32_t output_flags, char *error_str,
7244		      int error_str_len)
7245{
7246	size_t avail_len;
7247	uint32_t field_size, print_size;
7248	int retval = 0;
7249	int esc_text = 1;
7250
7251	avail_len = valid_len - sizeof(*hdr);
7252	field_size = scsi_2btoul(hdr->length);
7253	print_size = MIN(avail_len, field_size);
7254
7255	if ((output_flags & SCSI_ATTR_OUTPUT_TEXT_MASK) ==
7256	     SCSI_ATTR_OUTPUT_TEXT_RAW)
7257		esc_text = 0;
7258
7259	if (print_size > 0) {
7260		uint32_t i;
7261
7262		for (i = 0; i < print_size; i++) {
7263			if (hdr->attribute[i] == '\0')
7264				continue;
7265			else if (((unsigned char)hdr->attribute[i] < 0x80)
7266			      || (esc_text == 0))
7267				sbuf_putc(sb, hdr->attribute[i]);
7268			else
7269				sbuf_printf(sb, "%%%02x",
7270				    (unsigned char)hdr->attribute[i]);
7271		}
7272	} else if (avail_len < field_size) {
7273		/*
7274		 * We only report an error if the user didn't allocate
7275		 * enough space to hold the full value of this field.
7276		 */
7277		if (error_str != NULL) {
7278			snprintf(error_str, error_str_len, "Available "
7279				 "length of attribute ID 0x%.4x %zu < field "
7280				 "length %u", scsi_2btoul(hdr->id), avail_len,
7281				 field_size);
7282		}
7283		retval = 1;
7284	}
7285
7286	return (retval);
7287}
7288
7289struct scsi_attrib_table_entry *
7290scsi_find_attrib_entry(struct scsi_attrib_table_entry *table,
7291		       size_t num_table_entries, uint32_t id)
7292{
7293	uint32_t i;
7294
7295	for (i = 0; i < num_table_entries; i++) {
7296		if (table[i].id == id)
7297			return (&table[i]);
7298	}
7299
7300	return (NULL);
7301}
7302
7303struct scsi_attrib_table_entry *
7304scsi_get_attrib_entry(uint32_t id)
7305{
7306	return (scsi_find_attrib_entry(scsi_mam_attr_table,
7307		sizeof(scsi_mam_attr_table) / sizeof(scsi_mam_attr_table[0]),
7308		id));
7309}
7310
7311int
7312scsi_attrib_value_sbuf(struct sbuf *sb, uint32_t valid_len,
7313   struct scsi_mam_attribute_header *hdr, uint32_t output_flags,
7314   char *error_str, size_t error_str_len)
7315{
7316	int retval;
7317
7318	switch (hdr->byte2 & SMA_FORMAT_MASK) {
7319	case SMA_FORMAT_ASCII:
7320		retval = scsi_attrib_ascii_sbuf(sb, hdr, valid_len,
7321		    SCSI_ATTR_FLAG_NONE, output_flags, error_str,error_str_len);
7322		break;
7323	case SMA_FORMAT_BINARY:
7324		if (scsi_2btoul(hdr->length) <= 8)
7325			retval = scsi_attrib_int_sbuf(sb, hdr, valid_len,
7326			    SCSI_ATTR_FLAG_NONE, output_flags, error_str,
7327			    error_str_len);
7328		else
7329			retval = scsi_attrib_hexdump_sbuf(sb, hdr, valid_len,
7330			    SCSI_ATTR_FLAG_NONE, output_flags, error_str,
7331			    error_str_len);
7332		break;
7333	case SMA_FORMAT_TEXT:
7334		retval = scsi_attrib_text_sbuf(sb, hdr, valid_len,
7335		    SCSI_ATTR_FLAG_NONE, output_flags, error_str,
7336		    error_str_len);
7337		break;
7338	default:
7339		if (error_str != NULL) {
7340			snprintf(error_str, error_str_len, "Unknown attribute "
7341			    "format 0x%x", hdr->byte2 & SMA_FORMAT_MASK);
7342		}
7343		retval = 1;
7344		goto bailout;
7345		break; /*NOTREACHED*/
7346	}
7347
7348	sbuf_trim(sb);
7349
7350bailout:
7351
7352	return (retval);
7353}
7354
7355void
7356scsi_attrib_prefix_sbuf(struct sbuf *sb, uint32_t output_flags,
7357			struct scsi_mam_attribute_header *hdr,
7358			uint32_t valid_len, const char *desc)
7359{
7360	int need_space = 0;
7361	uint32_t len;
7362	uint32_t id;
7363
7364	/*
7365	 * We can't do anything if we don't have enough valid data for the
7366	 * header.
7367	 */
7368	if (valid_len < sizeof(*hdr))
7369		return;
7370
7371	id = scsi_2btoul(hdr->id);
7372	/*
7373	 * Note that we print out the value of the attribute listed in the
7374	 * header, regardless of whether we actually got that many bytes
7375	 * back from the device through the controller.  A truncated result
7376	 * could be the result of a failure to ask for enough data; the
7377	 * header indicates how many bytes are allocated for this attribute
7378	 * in the MAM.
7379	 */
7380	len = scsi_2btoul(hdr->length);
7381
7382	if ((output_flags & SCSI_ATTR_OUTPUT_FIELD_MASK) ==
7383	    SCSI_ATTR_OUTPUT_FIELD_NONE)
7384		return;
7385
7386	if ((output_flags & SCSI_ATTR_OUTPUT_FIELD_DESC)
7387	 && (desc != NULL)) {
7388		sbuf_printf(sb, "%s", desc);
7389		need_space = 1;
7390	}
7391
7392	if (output_flags & SCSI_ATTR_OUTPUT_FIELD_NUM) {
7393		sbuf_printf(sb, "%s(0x%.4x)", (need_space) ? " " : "", id);
7394		need_space = 0;
7395	}
7396
7397	if (output_flags & SCSI_ATTR_OUTPUT_FIELD_SIZE) {
7398		sbuf_printf(sb, "%s[%d]", (need_space) ? " " : "", len);
7399		need_space = 0;
7400	}
7401	if (output_flags & SCSI_ATTR_OUTPUT_FIELD_RW) {
7402		sbuf_printf(sb, "%s(%s)", (need_space) ? " " : "",
7403			    (hdr->byte2 & SMA_READ_ONLY) ? "RO" : "RW");
7404	}
7405	sbuf_printf(sb, ": ");
7406}
7407
7408int
7409scsi_attrib_sbuf(struct sbuf *sb, struct scsi_mam_attribute_header *hdr,
7410		 uint32_t valid_len, struct scsi_attrib_table_entry *user_table,
7411		 size_t num_user_entries, int prefer_user_table,
7412		 uint32_t output_flags, char *error_str, int error_str_len)
7413{
7414	int retval;
7415	struct scsi_attrib_table_entry *table1 = NULL, *table2 = NULL;
7416	struct scsi_attrib_table_entry *entry = NULL;
7417	size_t table1_size = 0, table2_size = 0;
7418	uint32_t id;
7419
7420	retval = 0;
7421
7422	if (valid_len < sizeof(*hdr)) {
7423		retval = 1;
7424		goto bailout;
7425	}
7426
7427	id = scsi_2btoul(hdr->id);
7428
7429	if (user_table != NULL) {
7430		if (prefer_user_table != 0) {
7431			table1 = user_table;
7432			table1_size = num_user_entries;
7433			table2 = scsi_mam_attr_table;
7434			table2_size = sizeof(scsi_mam_attr_table) /
7435				      sizeof(scsi_mam_attr_table[0]);
7436		} else {
7437			table1 = scsi_mam_attr_table;
7438			table1_size = sizeof(scsi_mam_attr_table) /
7439				      sizeof(scsi_mam_attr_table[0]);
7440			table2 = user_table;
7441			table2_size = num_user_entries;
7442		}
7443	} else {
7444		table1 = scsi_mam_attr_table;
7445		table1_size = sizeof(scsi_mam_attr_table) /
7446			      sizeof(scsi_mam_attr_table[0]);
7447	}
7448
7449	entry = scsi_find_attrib_entry(table1, table1_size, id);
7450	if (entry != NULL) {
7451		scsi_attrib_prefix_sbuf(sb, output_flags, hdr, valid_len,
7452					entry->desc);
7453		if (entry->to_str == NULL)
7454			goto print_default;
7455		retval = entry->to_str(sb, hdr, valid_len, entry->flags,
7456				       output_flags, error_str, error_str_len);
7457		goto bailout;
7458	}
7459	if (table2 != NULL) {
7460		entry = scsi_find_attrib_entry(table2, table2_size, id);
7461		if (entry != NULL) {
7462			if (entry->to_str == NULL)
7463				goto print_default;
7464
7465			scsi_attrib_prefix_sbuf(sb, output_flags, hdr,
7466						valid_len, entry->desc);
7467			retval = entry->to_str(sb, hdr, valid_len, entry->flags,
7468					       output_flags, error_str,
7469					       error_str_len);
7470			goto bailout;
7471		}
7472	}
7473
7474	scsi_attrib_prefix_sbuf(sb, output_flags, hdr, valid_len, NULL);
7475
7476print_default:
7477	retval = scsi_attrib_value_sbuf(sb, valid_len, hdr, output_flags,
7478	    error_str, error_str_len);
7479bailout:
7480	if (retval == 0) {
7481	 	if ((entry != NULL)
7482		 && (entry->suffix != NULL))
7483			sbuf_printf(sb, " %s", entry->suffix);
7484
7485		sbuf_trim(sb);
7486		sbuf_printf(sb, "\n");
7487	}
7488
7489	return (retval);
7490}
7491
7492void
7493scsi_test_unit_ready(struct ccb_scsiio *csio, u_int32_t retries,
7494		     void (*cbfcnp)(struct cam_periph *, union ccb *),
7495		     u_int8_t tag_action, u_int8_t sense_len, u_int32_t timeout)
7496{
7497	struct scsi_test_unit_ready *scsi_cmd;
7498
7499	cam_fill_csio(csio,
7500		      retries,
7501		      cbfcnp,
7502		      CAM_DIR_NONE,
7503		      tag_action,
7504		      /*data_ptr*/NULL,
7505		      /*dxfer_len*/0,
7506		      sense_len,
7507		      sizeof(*scsi_cmd),
7508		      timeout);
7509
7510	scsi_cmd = (struct scsi_test_unit_ready *)&csio->cdb_io.cdb_bytes;
7511	bzero(scsi_cmd, sizeof(*scsi_cmd));
7512	scsi_cmd->opcode = TEST_UNIT_READY;
7513}
7514
7515void
7516scsi_request_sense(struct ccb_scsiio *csio, u_int32_t retries,
7517		   void (*cbfcnp)(struct cam_periph *, union ccb *),
7518		   void *data_ptr, u_int8_t dxfer_len, u_int8_t tag_action,
7519		   u_int8_t sense_len, u_int32_t timeout)
7520{
7521	struct scsi_request_sense *scsi_cmd;
7522
7523	cam_fill_csio(csio,
7524		      retries,
7525		      cbfcnp,
7526		      CAM_DIR_IN,
7527		      tag_action,
7528		      data_ptr,
7529		      dxfer_len,
7530		      sense_len,
7531		      sizeof(*scsi_cmd),
7532		      timeout);
7533
7534	scsi_cmd = (struct scsi_request_sense *)&csio->cdb_io.cdb_bytes;
7535	bzero(scsi_cmd, sizeof(*scsi_cmd));
7536	scsi_cmd->opcode = REQUEST_SENSE;
7537	scsi_cmd->length = dxfer_len;
7538}
7539
7540void
7541scsi_inquiry(struct ccb_scsiio *csio, u_int32_t retries,
7542	     void (*cbfcnp)(struct cam_periph *, union ccb *),
7543	     u_int8_t tag_action, u_int8_t *inq_buf, u_int32_t inq_len,
7544	     int evpd, u_int8_t page_code, u_int8_t sense_len,
7545	     u_int32_t timeout)
7546{
7547	struct scsi_inquiry *scsi_cmd;
7548
7549	cam_fill_csio(csio,
7550		      retries,
7551		      cbfcnp,
7552		      /*flags*/CAM_DIR_IN,
7553		      tag_action,
7554		      /*data_ptr*/inq_buf,
7555		      /*dxfer_len*/inq_len,
7556		      sense_len,
7557		      sizeof(*scsi_cmd),
7558		      timeout);
7559
7560	scsi_cmd = (struct scsi_inquiry *)&csio->cdb_io.cdb_bytes;
7561	bzero(scsi_cmd, sizeof(*scsi_cmd));
7562	scsi_cmd->opcode = INQUIRY;
7563	if (evpd) {
7564		scsi_cmd->byte2 |= SI_EVPD;
7565		scsi_cmd->page_code = page_code;
7566	}
7567	scsi_ulto2b(inq_len, scsi_cmd->length);
7568}
7569
7570void
7571scsi_mode_sense(struct ccb_scsiio *csio, u_int32_t retries,
7572		void (*cbfcnp)(struct cam_periph *, union ccb *),
7573		u_int8_t tag_action, int dbd, u_int8_t page_code,
7574		u_int8_t page, u_int8_t *param_buf, u_int32_t param_len,
7575		u_int8_t sense_len, u_int32_t timeout)
7576{
7577
7578	scsi_mode_sense_len(csio, retries, cbfcnp, tag_action, dbd,
7579			    page_code, page, param_buf, param_len, 0,
7580			    sense_len, timeout);
7581}
7582
7583void
7584scsi_mode_sense_len(struct ccb_scsiio *csio, u_int32_t retries,
7585		    void (*cbfcnp)(struct cam_periph *, union ccb *),
7586		    u_int8_t tag_action, int dbd, u_int8_t page_code,
7587		    u_int8_t page, u_int8_t *param_buf, u_int32_t param_len,
7588		    int minimum_cmd_size, u_int8_t sense_len, u_int32_t timeout)
7589{
7590	u_int8_t cdb_len;
7591
7592	/*
7593	 * Use the smallest possible command to perform the operation.
7594	 */
7595	if ((param_len < 256)
7596	 && (minimum_cmd_size < 10)) {
7597		/*
7598		 * We can fit in a 6 byte cdb.
7599		 */
7600		struct scsi_mode_sense_6 *scsi_cmd;
7601
7602		scsi_cmd = (struct scsi_mode_sense_6 *)&csio->cdb_io.cdb_bytes;
7603		bzero(scsi_cmd, sizeof(*scsi_cmd));
7604		scsi_cmd->opcode = MODE_SENSE_6;
7605		if (dbd != 0)
7606			scsi_cmd->byte2 |= SMS_DBD;
7607		scsi_cmd->page = page_code | page;
7608		scsi_cmd->length = param_len;
7609		cdb_len = sizeof(*scsi_cmd);
7610	} else {
7611		/*
7612		 * Need a 10 byte cdb.
7613		 */
7614		struct scsi_mode_sense_10 *scsi_cmd;
7615
7616		scsi_cmd = (struct scsi_mode_sense_10 *)&csio->cdb_io.cdb_bytes;
7617		bzero(scsi_cmd, sizeof(*scsi_cmd));
7618		scsi_cmd->opcode = MODE_SENSE_10;
7619		if (dbd != 0)
7620			scsi_cmd->byte2 |= SMS_DBD;
7621		scsi_cmd->page = page_code | page;
7622		scsi_ulto2b(param_len, scsi_cmd->length);
7623		cdb_len = sizeof(*scsi_cmd);
7624	}
7625	cam_fill_csio(csio,
7626		      retries,
7627		      cbfcnp,
7628		      CAM_DIR_IN,
7629		      tag_action,
7630		      param_buf,
7631		      param_len,
7632		      sense_len,
7633		      cdb_len,
7634		      timeout);
7635}
7636
7637void
7638scsi_mode_select(struct ccb_scsiio *csio, u_int32_t retries,
7639		 void (*cbfcnp)(struct cam_periph *, union ccb *),
7640		 u_int8_t tag_action, int scsi_page_fmt, int save_pages,
7641		 u_int8_t *param_buf, u_int32_t param_len, u_int8_t sense_len,
7642		 u_int32_t timeout)
7643{
7644	scsi_mode_select_len(csio, retries, cbfcnp, tag_action,
7645			     scsi_page_fmt, save_pages, param_buf,
7646			     param_len, 0, sense_len, timeout);
7647}
7648
7649void
7650scsi_mode_select_len(struct ccb_scsiio *csio, u_int32_t retries,
7651		     void (*cbfcnp)(struct cam_periph *, union ccb *),
7652		     u_int8_t tag_action, int scsi_page_fmt, int save_pages,
7653		     u_int8_t *param_buf, u_int32_t param_len,
7654		     int minimum_cmd_size, u_int8_t sense_len,
7655		     u_int32_t timeout)
7656{
7657	u_int8_t cdb_len;
7658
7659	/*
7660	 * Use the smallest possible command to perform the operation.
7661	 */
7662	if ((param_len < 256)
7663	 && (minimum_cmd_size < 10)) {
7664		/*
7665		 * We can fit in a 6 byte cdb.
7666		 */
7667		struct scsi_mode_select_6 *scsi_cmd;
7668
7669		scsi_cmd = (struct scsi_mode_select_6 *)&csio->cdb_io.cdb_bytes;
7670		bzero(scsi_cmd, sizeof(*scsi_cmd));
7671		scsi_cmd->opcode = MODE_SELECT_6;
7672		if (scsi_page_fmt != 0)
7673			scsi_cmd->byte2 |= SMS_PF;
7674		if (save_pages != 0)
7675			scsi_cmd->byte2 |= SMS_SP;
7676		scsi_cmd->length = param_len;
7677		cdb_len = sizeof(*scsi_cmd);
7678	} else {
7679		/*
7680		 * Need a 10 byte cdb.
7681		 */
7682		struct scsi_mode_select_10 *scsi_cmd;
7683
7684		scsi_cmd =
7685		    (struct scsi_mode_select_10 *)&csio->cdb_io.cdb_bytes;
7686		bzero(scsi_cmd, sizeof(*scsi_cmd));
7687		scsi_cmd->opcode = MODE_SELECT_10;
7688		if (scsi_page_fmt != 0)
7689			scsi_cmd->byte2 |= SMS_PF;
7690		if (save_pages != 0)
7691			scsi_cmd->byte2 |= SMS_SP;
7692		scsi_ulto2b(param_len, scsi_cmd->length);
7693		cdb_len = sizeof(*scsi_cmd);
7694	}
7695	cam_fill_csio(csio,
7696		      retries,
7697		      cbfcnp,
7698		      CAM_DIR_OUT,
7699		      tag_action,
7700		      param_buf,
7701		      param_len,
7702		      sense_len,
7703		      cdb_len,
7704		      timeout);
7705}
7706
7707void
7708scsi_log_sense(struct ccb_scsiio *csio, u_int32_t retries,
7709	       void (*cbfcnp)(struct cam_periph *, union ccb *),
7710	       u_int8_t tag_action, u_int8_t page_code, u_int8_t page,
7711	       int save_pages, int ppc, u_int32_t paramptr,
7712	       u_int8_t *param_buf, u_int32_t param_len, u_int8_t sense_len,
7713	       u_int32_t timeout)
7714{
7715	struct scsi_log_sense *scsi_cmd;
7716	u_int8_t cdb_len;
7717
7718	scsi_cmd = (struct scsi_log_sense *)&csio->cdb_io.cdb_bytes;
7719	bzero(scsi_cmd, sizeof(*scsi_cmd));
7720	scsi_cmd->opcode = LOG_SENSE;
7721	scsi_cmd->page = page_code | page;
7722	if (save_pages != 0)
7723		scsi_cmd->byte2 |= SLS_SP;
7724	if (ppc != 0)
7725		scsi_cmd->byte2 |= SLS_PPC;
7726	scsi_ulto2b(paramptr, scsi_cmd->paramptr);
7727	scsi_ulto2b(param_len, scsi_cmd->length);
7728	cdb_len = sizeof(*scsi_cmd);
7729
7730	cam_fill_csio(csio,
7731		      retries,
7732		      cbfcnp,
7733		      /*flags*/CAM_DIR_IN,
7734		      tag_action,
7735		      /*data_ptr*/param_buf,
7736		      /*dxfer_len*/param_len,
7737		      sense_len,
7738		      cdb_len,
7739		      timeout);
7740}
7741
7742void
7743scsi_log_select(struct ccb_scsiio *csio, u_int32_t retries,
7744		void (*cbfcnp)(struct cam_periph *, union ccb *),
7745		u_int8_t tag_action, u_int8_t page_code, int save_pages,
7746		int pc_reset, u_int8_t *param_buf, u_int32_t param_len,
7747		u_int8_t sense_len, u_int32_t timeout)
7748{
7749	struct scsi_log_select *scsi_cmd;
7750	u_int8_t cdb_len;
7751
7752	scsi_cmd = (struct scsi_log_select *)&csio->cdb_io.cdb_bytes;
7753	bzero(scsi_cmd, sizeof(*scsi_cmd));
7754	scsi_cmd->opcode = LOG_SELECT;
7755	scsi_cmd->page = page_code & SLS_PAGE_CODE;
7756	if (save_pages != 0)
7757		scsi_cmd->byte2 |= SLS_SP;
7758	if (pc_reset != 0)
7759		scsi_cmd->byte2 |= SLS_PCR;
7760	scsi_ulto2b(param_len, scsi_cmd->length);
7761	cdb_len = sizeof(*scsi_cmd);
7762
7763	cam_fill_csio(csio,
7764		      retries,
7765		      cbfcnp,
7766		      /*flags*/CAM_DIR_OUT,
7767		      tag_action,
7768		      /*data_ptr*/param_buf,
7769		      /*dxfer_len*/param_len,
7770		      sense_len,
7771		      cdb_len,
7772		      timeout);
7773}
7774
7775/*
7776 * Prevent or allow the user to remove the media
7777 */
7778void
7779scsi_prevent(struct ccb_scsiio *csio, u_int32_t retries,
7780	     void (*cbfcnp)(struct cam_periph *, union ccb *),
7781	     u_int8_t tag_action, u_int8_t action,
7782	     u_int8_t sense_len, u_int32_t timeout)
7783{
7784	struct scsi_prevent *scsi_cmd;
7785
7786	cam_fill_csio(csio,
7787		      retries,
7788		      cbfcnp,
7789		      /*flags*/CAM_DIR_NONE,
7790		      tag_action,
7791		      /*data_ptr*/NULL,
7792		      /*dxfer_len*/0,
7793		      sense_len,
7794		      sizeof(*scsi_cmd),
7795		      timeout);
7796
7797	scsi_cmd = (struct scsi_prevent *)&csio->cdb_io.cdb_bytes;
7798	bzero(scsi_cmd, sizeof(*scsi_cmd));
7799	scsi_cmd->opcode = PREVENT_ALLOW;
7800	scsi_cmd->how = action;
7801}
7802
7803/* XXX allow specification of address and PMI bit and LBA */
7804void
7805scsi_read_capacity(struct ccb_scsiio *csio, u_int32_t retries,
7806		   void (*cbfcnp)(struct cam_periph *, union ccb *),
7807		   u_int8_t tag_action,
7808		   struct scsi_read_capacity_data *rcap_buf,
7809		   u_int8_t sense_len, u_int32_t timeout)
7810{
7811	struct scsi_read_capacity *scsi_cmd;
7812
7813	cam_fill_csio(csio,
7814		      retries,
7815		      cbfcnp,
7816		      /*flags*/CAM_DIR_IN,
7817		      tag_action,
7818		      /*data_ptr*/(u_int8_t *)rcap_buf,
7819		      /*dxfer_len*/sizeof(*rcap_buf),
7820		      sense_len,
7821		      sizeof(*scsi_cmd),
7822		      timeout);
7823
7824	scsi_cmd = (struct scsi_read_capacity *)&csio->cdb_io.cdb_bytes;
7825	bzero(scsi_cmd, sizeof(*scsi_cmd));
7826	scsi_cmd->opcode = READ_CAPACITY;
7827}
7828
7829void
7830scsi_read_capacity_16(struct ccb_scsiio *csio, uint32_t retries,
7831		      void (*cbfcnp)(struct cam_periph *, union ccb *),
7832		      uint8_t tag_action, uint64_t lba, int reladr, int pmi,
7833		      uint8_t *rcap_buf, int rcap_buf_len, uint8_t sense_len,
7834		      uint32_t timeout)
7835{
7836	struct scsi_read_capacity_16 *scsi_cmd;
7837
7838
7839	cam_fill_csio(csio,
7840		      retries,
7841		      cbfcnp,
7842		      /*flags*/CAM_DIR_IN,
7843		      tag_action,
7844		      /*data_ptr*/(u_int8_t *)rcap_buf,
7845		      /*dxfer_len*/rcap_buf_len,
7846		      sense_len,
7847		      sizeof(*scsi_cmd),
7848		      timeout);
7849	scsi_cmd = (struct scsi_read_capacity_16 *)&csio->cdb_io.cdb_bytes;
7850	bzero(scsi_cmd, sizeof(*scsi_cmd));
7851	scsi_cmd->opcode = SERVICE_ACTION_IN;
7852	scsi_cmd->service_action = SRC16_SERVICE_ACTION;
7853	scsi_u64to8b(lba, scsi_cmd->addr);
7854	scsi_ulto4b(rcap_buf_len, scsi_cmd->alloc_len);
7855	if (pmi)
7856		reladr |= SRC16_PMI;
7857	if (reladr)
7858		reladr |= SRC16_RELADR;
7859}
7860
7861void
7862scsi_report_luns(struct ccb_scsiio *csio, u_int32_t retries,
7863		 void (*cbfcnp)(struct cam_periph *, union ccb *),
7864		 u_int8_t tag_action, u_int8_t select_report,
7865		 struct scsi_report_luns_data *rpl_buf, u_int32_t alloc_len,
7866		 u_int8_t sense_len, u_int32_t timeout)
7867{
7868	struct scsi_report_luns *scsi_cmd;
7869
7870	cam_fill_csio(csio,
7871		      retries,
7872		      cbfcnp,
7873		      /*flags*/CAM_DIR_IN,
7874		      tag_action,
7875		      /*data_ptr*/(u_int8_t *)rpl_buf,
7876		      /*dxfer_len*/alloc_len,
7877		      sense_len,
7878		      sizeof(*scsi_cmd),
7879		      timeout);
7880	scsi_cmd = (struct scsi_report_luns *)&csio->cdb_io.cdb_bytes;
7881	bzero(scsi_cmd, sizeof(*scsi_cmd));
7882	scsi_cmd->opcode = REPORT_LUNS;
7883	scsi_cmd->select_report = select_report;
7884	scsi_ulto4b(alloc_len, scsi_cmd->length);
7885}
7886
7887void
7888scsi_report_target_group(struct ccb_scsiio *csio, u_int32_t retries,
7889		 void (*cbfcnp)(struct cam_periph *, union ccb *),
7890		 u_int8_t tag_action, u_int8_t pdf,
7891		 void *buf, u_int32_t alloc_len,
7892		 u_int8_t sense_len, u_int32_t timeout)
7893{
7894	struct scsi_target_group *scsi_cmd;
7895
7896	cam_fill_csio(csio,
7897		      retries,
7898		      cbfcnp,
7899		      /*flags*/CAM_DIR_IN,
7900		      tag_action,
7901		      /*data_ptr*/(u_int8_t *)buf,
7902		      /*dxfer_len*/alloc_len,
7903		      sense_len,
7904		      sizeof(*scsi_cmd),
7905		      timeout);
7906	scsi_cmd = (struct scsi_target_group *)&csio->cdb_io.cdb_bytes;
7907	bzero(scsi_cmd, sizeof(*scsi_cmd));
7908	scsi_cmd->opcode = MAINTENANCE_IN;
7909	scsi_cmd->service_action = REPORT_TARGET_PORT_GROUPS | pdf;
7910	scsi_ulto4b(alloc_len, scsi_cmd->length);
7911}
7912
7913void
7914scsi_set_target_group(struct ccb_scsiio *csio, u_int32_t retries,
7915		 void (*cbfcnp)(struct cam_periph *, union ccb *),
7916		 u_int8_t tag_action, void *buf, u_int32_t alloc_len,
7917		 u_int8_t sense_len, u_int32_t timeout)
7918{
7919	struct scsi_target_group *scsi_cmd;
7920
7921	cam_fill_csio(csio,
7922		      retries,
7923		      cbfcnp,
7924		      /*flags*/CAM_DIR_OUT,
7925		      tag_action,
7926		      /*data_ptr*/(u_int8_t *)buf,
7927		      /*dxfer_len*/alloc_len,
7928		      sense_len,
7929		      sizeof(*scsi_cmd),
7930		      timeout);
7931	scsi_cmd = (struct scsi_target_group *)&csio->cdb_io.cdb_bytes;
7932	bzero(scsi_cmd, sizeof(*scsi_cmd));
7933	scsi_cmd->opcode = MAINTENANCE_OUT;
7934	scsi_cmd->service_action = SET_TARGET_PORT_GROUPS;
7935	scsi_ulto4b(alloc_len, scsi_cmd->length);
7936}
7937
7938/*
7939 * Syncronize the media to the contents of the cache for
7940 * the given lba/count pair.  Specifying 0/0 means sync
7941 * the whole cache.
7942 */
7943void
7944scsi_synchronize_cache(struct ccb_scsiio *csio, u_int32_t retries,
7945		       void (*cbfcnp)(struct cam_periph *, union ccb *),
7946		       u_int8_t tag_action, u_int32_t begin_lba,
7947		       u_int16_t lb_count, u_int8_t sense_len,
7948		       u_int32_t timeout)
7949{
7950	struct scsi_sync_cache *scsi_cmd;
7951
7952	cam_fill_csio(csio,
7953		      retries,
7954		      cbfcnp,
7955		      /*flags*/CAM_DIR_NONE,
7956		      tag_action,
7957		      /*data_ptr*/NULL,
7958		      /*dxfer_len*/0,
7959		      sense_len,
7960		      sizeof(*scsi_cmd),
7961		      timeout);
7962
7963	scsi_cmd = (struct scsi_sync_cache *)&csio->cdb_io.cdb_bytes;
7964	bzero(scsi_cmd, sizeof(*scsi_cmd));
7965	scsi_cmd->opcode = SYNCHRONIZE_CACHE;
7966	scsi_ulto4b(begin_lba, scsi_cmd->begin_lba);
7967	scsi_ulto2b(lb_count, scsi_cmd->lb_count);
7968}
7969
7970void
7971scsi_read_write(struct ccb_scsiio *csio, u_int32_t retries,
7972		void (*cbfcnp)(struct cam_periph *, union ccb *),
7973		u_int8_t tag_action, int readop, u_int8_t byte2,
7974		int minimum_cmd_size, u_int64_t lba, u_int32_t block_count,
7975		u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
7976		u_int32_t timeout)
7977{
7978	int read;
7979	u_int8_t cdb_len;
7980
7981	read = (readop & SCSI_RW_DIRMASK) == SCSI_RW_READ;
7982
7983	/*
7984	 * Use the smallest possible command to perform the operation
7985	 * as some legacy hardware does not support the 10 byte commands.
7986	 * If any of the bits in byte2 is set, we have to go with a larger
7987	 * command.
7988	 */
7989	if ((minimum_cmd_size < 10)
7990	 && ((lba & 0x1fffff) == lba)
7991	 && ((block_count & 0xff) == block_count)
7992	 && (byte2 == 0)) {
7993		/*
7994		 * We can fit in a 6 byte cdb.
7995		 */
7996		struct scsi_rw_6 *scsi_cmd;
7997
7998		scsi_cmd = (struct scsi_rw_6 *)&csio->cdb_io.cdb_bytes;
7999		scsi_cmd->opcode = read ? READ_6 : WRITE_6;
8000		scsi_ulto3b(lba, scsi_cmd->addr);
8001		scsi_cmd->length = block_count & 0xff;
8002		scsi_cmd->control = 0;
8003		cdb_len = sizeof(*scsi_cmd);
8004
8005		CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
8006			  ("6byte: %x%x%x:%d:%d\n", scsi_cmd->addr[0],
8007			   scsi_cmd->addr[1], scsi_cmd->addr[2],
8008			   scsi_cmd->length, dxfer_len));
8009	} else if ((minimum_cmd_size < 12)
8010		&& ((block_count & 0xffff) == block_count)
8011		&& ((lba & 0xffffffff) == lba)) {
8012		/*
8013		 * Need a 10 byte cdb.
8014		 */
8015		struct scsi_rw_10 *scsi_cmd;
8016
8017		scsi_cmd = (struct scsi_rw_10 *)&csio->cdb_io.cdb_bytes;
8018		scsi_cmd->opcode = read ? READ_10 : WRITE_10;
8019		scsi_cmd->byte2 = byte2;
8020		scsi_ulto4b(lba, scsi_cmd->addr);
8021		scsi_cmd->reserved = 0;
8022		scsi_ulto2b(block_count, scsi_cmd->length);
8023		scsi_cmd->control = 0;
8024		cdb_len = sizeof(*scsi_cmd);
8025
8026		CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
8027			  ("10byte: %x%x%x%x:%x%x: %d\n", scsi_cmd->addr[0],
8028			   scsi_cmd->addr[1], scsi_cmd->addr[2],
8029			   scsi_cmd->addr[3], scsi_cmd->length[0],
8030			   scsi_cmd->length[1], dxfer_len));
8031	} else if ((minimum_cmd_size < 16)
8032		&& ((block_count & 0xffffffff) == block_count)
8033		&& ((lba & 0xffffffff) == lba)) {
8034		/*
8035		 * The block count is too big for a 10 byte CDB, use a 12
8036		 * byte CDB.
8037		 */
8038		struct scsi_rw_12 *scsi_cmd;
8039
8040		scsi_cmd = (struct scsi_rw_12 *)&csio->cdb_io.cdb_bytes;
8041		scsi_cmd->opcode = read ? READ_12 : WRITE_12;
8042		scsi_cmd->byte2 = byte2;
8043		scsi_ulto4b(lba, scsi_cmd->addr);
8044		scsi_cmd->reserved = 0;
8045		scsi_ulto4b(block_count, scsi_cmd->length);
8046		scsi_cmd->control = 0;
8047		cdb_len = sizeof(*scsi_cmd);
8048
8049		CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
8050			  ("12byte: %x%x%x%x:%x%x%x%x: %d\n", scsi_cmd->addr[0],
8051			   scsi_cmd->addr[1], scsi_cmd->addr[2],
8052			   scsi_cmd->addr[3], scsi_cmd->length[0],
8053			   scsi_cmd->length[1], scsi_cmd->length[2],
8054			   scsi_cmd->length[3], dxfer_len));
8055	} else {
8056		/*
8057		 * 16 byte CDB.  We'll only get here if the LBA is larger
8058		 * than 2^32, or if the user asks for a 16 byte command.
8059		 */
8060		struct scsi_rw_16 *scsi_cmd;
8061
8062		scsi_cmd = (struct scsi_rw_16 *)&csio->cdb_io.cdb_bytes;
8063		scsi_cmd->opcode = read ? READ_16 : WRITE_16;
8064		scsi_cmd->byte2 = byte2;
8065		scsi_u64to8b(lba, scsi_cmd->addr);
8066		scsi_cmd->reserved = 0;
8067		scsi_ulto4b(block_count, scsi_cmd->length);
8068		scsi_cmd->control = 0;
8069		cdb_len = sizeof(*scsi_cmd);
8070	}
8071	cam_fill_csio(csio,
8072		      retries,
8073		      cbfcnp,
8074		      (read ? CAM_DIR_IN : CAM_DIR_OUT) |
8075		      ((readop & SCSI_RW_BIO) != 0 ? CAM_DATA_BIO : 0),
8076		      tag_action,
8077		      data_ptr,
8078		      dxfer_len,
8079		      sense_len,
8080		      cdb_len,
8081		      timeout);
8082}
8083
8084void
8085scsi_write_same(struct ccb_scsiio *csio, u_int32_t retries,
8086		void (*cbfcnp)(struct cam_periph *, union ccb *),
8087		u_int8_t tag_action, u_int8_t byte2,
8088		int minimum_cmd_size, u_int64_t lba, u_int32_t block_count,
8089		u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
8090		u_int32_t timeout)
8091{
8092	u_int8_t cdb_len;
8093	if ((minimum_cmd_size < 16) &&
8094	    ((block_count & 0xffff) == block_count) &&
8095	    ((lba & 0xffffffff) == lba)) {
8096		/*
8097		 * Need a 10 byte cdb.
8098		 */
8099		struct scsi_write_same_10 *scsi_cmd;
8100
8101		scsi_cmd = (struct scsi_write_same_10 *)&csio->cdb_io.cdb_bytes;
8102		scsi_cmd->opcode = WRITE_SAME_10;
8103		scsi_cmd->byte2 = byte2;
8104		scsi_ulto4b(lba, scsi_cmd->addr);
8105		scsi_cmd->group = 0;
8106		scsi_ulto2b(block_count, scsi_cmd->length);
8107		scsi_cmd->control = 0;
8108		cdb_len = sizeof(*scsi_cmd);
8109
8110		CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
8111			  ("10byte: %x%x%x%x:%x%x: %d\n", scsi_cmd->addr[0],
8112			   scsi_cmd->addr[1], scsi_cmd->addr[2],
8113			   scsi_cmd->addr[3], scsi_cmd->length[0],
8114			   scsi_cmd->length[1], dxfer_len));
8115	} else {
8116		/*
8117		 * 16 byte CDB.  We'll only get here if the LBA is larger
8118		 * than 2^32, or if the user asks for a 16 byte command.
8119		 */
8120		struct scsi_write_same_16 *scsi_cmd;
8121
8122		scsi_cmd = (struct scsi_write_same_16 *)&csio->cdb_io.cdb_bytes;
8123		scsi_cmd->opcode = WRITE_SAME_16;
8124		scsi_cmd->byte2 = byte2;
8125		scsi_u64to8b(lba, scsi_cmd->addr);
8126		scsi_ulto4b(block_count, scsi_cmd->length);
8127		scsi_cmd->group = 0;
8128		scsi_cmd->control = 0;
8129		cdb_len = sizeof(*scsi_cmd);
8130
8131		CAM_DEBUG(csio->ccb_h.path, CAM_DEBUG_SUBTRACE,
8132			  ("16byte: %x%x%x%x%x%x%x%x:%x%x%x%x: %d\n",
8133			   scsi_cmd->addr[0], scsi_cmd->addr[1],
8134			   scsi_cmd->addr[2], scsi_cmd->addr[3],
8135			   scsi_cmd->addr[4], scsi_cmd->addr[5],
8136			   scsi_cmd->addr[6], scsi_cmd->addr[7],
8137			   scsi_cmd->length[0], scsi_cmd->length[1],
8138			   scsi_cmd->length[2], scsi_cmd->length[3],
8139			   dxfer_len));
8140	}
8141	cam_fill_csio(csio,
8142		      retries,
8143		      cbfcnp,
8144		      /*flags*/CAM_DIR_OUT,
8145		      tag_action,
8146		      data_ptr,
8147		      dxfer_len,
8148		      sense_len,
8149		      cdb_len,
8150		      timeout);
8151}
8152
8153void
8154scsi_ata_identify(struct ccb_scsiio *csio, u_int32_t retries,
8155		  void (*cbfcnp)(struct cam_periph *, union ccb *),
8156		  u_int8_t tag_action, u_int8_t *data_ptr,
8157		  u_int16_t dxfer_len, u_int8_t sense_len,
8158		  u_int32_t timeout)
8159{
8160	scsi_ata_pass_16(csio,
8161			 retries,
8162			 cbfcnp,
8163			 /*flags*/CAM_DIR_IN,
8164			 tag_action,
8165			 /*protocol*/AP_PROTO_PIO_IN,
8166			 /*ata_flags*/AP_FLAG_TDIR_FROM_DEV|
8167				AP_FLAG_BYT_BLOK_BYTES|AP_FLAG_TLEN_SECT_CNT,
8168			 /*features*/0,
8169			 /*sector_count*/dxfer_len,
8170			 /*lba*/0,
8171			 /*command*/ATA_ATA_IDENTIFY,
8172			 /*control*/0,
8173			 data_ptr,
8174			 dxfer_len,
8175			 sense_len,
8176			 timeout);
8177}
8178
8179void
8180scsi_ata_trim(struct ccb_scsiio *csio, u_int32_t retries,
8181	      void (*cbfcnp)(struct cam_periph *, union ccb *),
8182	      u_int8_t tag_action, u_int16_t block_count,
8183	      u_int8_t *data_ptr, u_int16_t dxfer_len, u_int8_t sense_len,
8184	      u_int32_t timeout)
8185{
8186	scsi_ata_pass_16(csio,
8187			 retries,
8188			 cbfcnp,
8189			 /*flags*/CAM_DIR_OUT,
8190			 tag_action,
8191			 /*protocol*/AP_EXTEND|AP_PROTO_DMA,
8192			 /*ata_flags*/AP_FLAG_TLEN_SECT_CNT|AP_FLAG_BYT_BLOK_BLOCKS,
8193			 /*features*/ATA_DSM_TRIM,
8194			 /*sector_count*/block_count,
8195			 /*lba*/0,
8196			 /*command*/ATA_DATA_SET_MANAGEMENT,
8197			 /*control*/0,
8198			 data_ptr,
8199			 dxfer_len,
8200			 sense_len,
8201			 timeout);
8202}
8203
8204void
8205scsi_ata_pass_16(struct ccb_scsiio *csio, u_int32_t retries,
8206		 void (*cbfcnp)(struct cam_periph *, union ccb *),
8207		 u_int32_t flags, u_int8_t tag_action,
8208		 u_int8_t protocol, u_int8_t ata_flags, u_int16_t features,
8209		 u_int16_t sector_count, uint64_t lba, u_int8_t command,
8210		 u_int8_t control, u_int8_t *data_ptr, u_int16_t dxfer_len,
8211		 u_int8_t sense_len, u_int32_t timeout)
8212{
8213	struct ata_pass_16 *ata_cmd;
8214
8215	ata_cmd = (struct ata_pass_16 *)&csio->cdb_io.cdb_bytes;
8216	ata_cmd->opcode = ATA_PASS_16;
8217	ata_cmd->protocol = protocol;
8218	ata_cmd->flags = ata_flags;
8219	ata_cmd->features_ext = features >> 8;
8220	ata_cmd->features = features;
8221	ata_cmd->sector_count_ext = sector_count >> 8;
8222	ata_cmd->sector_count = sector_count;
8223	ata_cmd->lba_low = lba;
8224	ata_cmd->lba_mid = lba >> 8;
8225	ata_cmd->lba_high = lba >> 16;
8226	ata_cmd->device = ATA_DEV_LBA;
8227	if (protocol & AP_EXTEND) {
8228		ata_cmd->lba_low_ext = lba >> 24;
8229		ata_cmd->lba_mid_ext = lba >> 32;
8230		ata_cmd->lba_high_ext = lba >> 40;
8231	} else
8232		ata_cmd->device |= (lba >> 24) & 0x0f;
8233	ata_cmd->command = command;
8234	ata_cmd->control = control;
8235
8236	cam_fill_csio(csio,
8237		      retries,
8238		      cbfcnp,
8239		      flags,
8240		      tag_action,
8241		      data_ptr,
8242		      dxfer_len,
8243		      sense_len,
8244		      sizeof(*ata_cmd),
8245		      timeout);
8246}
8247
8248void
8249scsi_unmap(struct ccb_scsiio *csio, u_int32_t retries,
8250	   void (*cbfcnp)(struct cam_periph *, union ccb *),
8251	   u_int8_t tag_action, u_int8_t byte2,
8252	   u_int8_t *data_ptr, u_int16_t dxfer_len, u_int8_t sense_len,
8253	   u_int32_t timeout)
8254{
8255	struct scsi_unmap *scsi_cmd;
8256
8257	scsi_cmd = (struct scsi_unmap *)&csio->cdb_io.cdb_bytes;
8258	scsi_cmd->opcode = UNMAP;
8259	scsi_cmd->byte2 = byte2;
8260	scsi_ulto4b(0, scsi_cmd->reserved);
8261	scsi_cmd->group = 0;
8262	scsi_ulto2b(dxfer_len, scsi_cmd->length);
8263	scsi_cmd->control = 0;
8264
8265	cam_fill_csio(csio,
8266		      retries,
8267		      cbfcnp,
8268		      /*flags*/CAM_DIR_OUT,
8269		      tag_action,
8270		      data_ptr,
8271		      dxfer_len,
8272		      sense_len,
8273		      sizeof(*scsi_cmd),
8274		      timeout);
8275}
8276
8277void
8278scsi_receive_diagnostic_results(struct ccb_scsiio *csio, u_int32_t retries,
8279				void (*cbfcnp)(struct cam_periph *, union ccb*),
8280				uint8_t tag_action, int pcv, uint8_t page_code,
8281				uint8_t *data_ptr, uint16_t allocation_length,
8282				uint8_t sense_len, uint32_t timeout)
8283{
8284	struct scsi_receive_diag *scsi_cmd;
8285
8286	scsi_cmd = (struct scsi_receive_diag *)&csio->cdb_io.cdb_bytes;
8287	memset(scsi_cmd, 0, sizeof(*scsi_cmd));
8288	scsi_cmd->opcode = RECEIVE_DIAGNOSTIC;
8289	if (pcv) {
8290		scsi_cmd->byte2 |= SRD_PCV;
8291		scsi_cmd->page_code = page_code;
8292	}
8293	scsi_ulto2b(allocation_length, scsi_cmd->length);
8294
8295	cam_fill_csio(csio,
8296		      retries,
8297		      cbfcnp,
8298		      /*flags*/CAM_DIR_IN,
8299		      tag_action,
8300		      data_ptr,
8301		      allocation_length,
8302		      sense_len,
8303		      sizeof(*scsi_cmd),
8304		      timeout);
8305}
8306
8307void
8308scsi_send_diagnostic(struct ccb_scsiio *csio, u_int32_t retries,
8309		     void (*cbfcnp)(struct cam_periph *, union ccb *),
8310		     uint8_t tag_action, int unit_offline, int device_offline,
8311		     int self_test, int page_format, int self_test_code,
8312		     uint8_t *data_ptr, uint16_t param_list_length,
8313		     uint8_t sense_len, uint32_t timeout)
8314{
8315	struct scsi_send_diag *scsi_cmd;
8316
8317	scsi_cmd = (struct scsi_send_diag *)&csio->cdb_io.cdb_bytes;
8318	memset(scsi_cmd, 0, sizeof(*scsi_cmd));
8319	scsi_cmd->opcode = SEND_DIAGNOSTIC;
8320
8321	/*
8322	 * The default self-test mode control and specific test
8323	 * control are mutually exclusive.
8324	 */
8325	if (self_test)
8326		self_test_code = SSD_SELF_TEST_CODE_NONE;
8327
8328	scsi_cmd->byte2 = ((self_test_code << SSD_SELF_TEST_CODE_SHIFT)
8329			 & SSD_SELF_TEST_CODE_MASK)
8330			| (unit_offline   ? SSD_UNITOFFL : 0)
8331			| (device_offline ? SSD_DEVOFFL  : 0)
8332			| (self_test      ? SSD_SELFTEST : 0)
8333			| (page_format    ? SSD_PF       : 0);
8334	scsi_ulto2b(param_list_length, scsi_cmd->length);
8335
8336	cam_fill_csio(csio,
8337		      retries,
8338		      cbfcnp,
8339		      /*flags*/param_list_length ? CAM_DIR_OUT : CAM_DIR_NONE,
8340		      tag_action,
8341		      data_ptr,
8342		      param_list_length,
8343		      sense_len,
8344		      sizeof(*scsi_cmd),
8345		      timeout);
8346}
8347
8348void
8349scsi_read_buffer(struct ccb_scsiio *csio, u_int32_t retries,
8350			void (*cbfcnp)(struct cam_periph *, union ccb*),
8351			uint8_t tag_action, int mode,
8352			uint8_t buffer_id, u_int32_t offset,
8353			uint8_t *data_ptr, uint32_t allocation_length,
8354			uint8_t sense_len, uint32_t timeout)
8355{
8356	struct scsi_read_buffer *scsi_cmd;
8357
8358	scsi_cmd = (struct scsi_read_buffer *)&csio->cdb_io.cdb_bytes;
8359	memset(scsi_cmd, 0, sizeof(*scsi_cmd));
8360	scsi_cmd->opcode = READ_BUFFER;
8361	scsi_cmd->byte2 = mode;
8362	scsi_cmd->buffer_id = buffer_id;
8363	scsi_ulto3b(offset, scsi_cmd->offset);
8364	scsi_ulto3b(allocation_length, scsi_cmd->length);
8365
8366	cam_fill_csio(csio,
8367		      retries,
8368		      cbfcnp,
8369		      /*flags*/CAM_DIR_IN,
8370		      tag_action,
8371		      data_ptr,
8372		      allocation_length,
8373		      sense_len,
8374		      sizeof(*scsi_cmd),
8375		      timeout);
8376}
8377
8378void
8379scsi_write_buffer(struct ccb_scsiio *csio, u_int32_t retries,
8380			void (*cbfcnp)(struct cam_periph *, union ccb *),
8381			uint8_t tag_action, int mode,
8382			uint8_t buffer_id, u_int32_t offset,
8383			uint8_t *data_ptr, uint32_t param_list_length,
8384			uint8_t sense_len, uint32_t timeout)
8385{
8386	struct scsi_write_buffer *scsi_cmd;
8387
8388	scsi_cmd = (struct scsi_write_buffer *)&csio->cdb_io.cdb_bytes;
8389	memset(scsi_cmd, 0, sizeof(*scsi_cmd));
8390	scsi_cmd->opcode = WRITE_BUFFER;
8391	scsi_cmd->byte2 = mode;
8392	scsi_cmd->buffer_id = buffer_id;
8393	scsi_ulto3b(offset, scsi_cmd->offset);
8394	scsi_ulto3b(param_list_length, scsi_cmd->length);
8395
8396	cam_fill_csio(csio,
8397		      retries,
8398		      cbfcnp,
8399		      /*flags*/param_list_length ? CAM_DIR_OUT : CAM_DIR_NONE,
8400		      tag_action,
8401		      data_ptr,
8402		      param_list_length,
8403		      sense_len,
8404		      sizeof(*scsi_cmd),
8405		      timeout);
8406}
8407
8408void
8409scsi_start_stop(struct ccb_scsiio *csio, u_int32_t retries,
8410		void (*cbfcnp)(struct cam_periph *, union ccb *),
8411		u_int8_t tag_action, int start, int load_eject,
8412		int immediate, u_int8_t sense_len, u_int32_t timeout)
8413{
8414	struct scsi_start_stop_unit *scsi_cmd;
8415	int extra_flags = 0;
8416
8417	scsi_cmd = (struct scsi_start_stop_unit *)&csio->cdb_io.cdb_bytes;
8418	bzero(scsi_cmd, sizeof(*scsi_cmd));
8419	scsi_cmd->opcode = START_STOP_UNIT;
8420	if (start != 0) {
8421		scsi_cmd->how |= SSS_START;
8422		/* it takes a lot of power to start a drive */
8423		extra_flags |= CAM_HIGH_POWER;
8424	}
8425	if (load_eject != 0)
8426		scsi_cmd->how |= SSS_LOEJ;
8427	if (immediate != 0)
8428		scsi_cmd->byte2 |= SSS_IMMED;
8429
8430	cam_fill_csio(csio,
8431		      retries,
8432		      cbfcnp,
8433		      /*flags*/CAM_DIR_NONE | extra_flags,
8434		      tag_action,
8435		      /*data_ptr*/NULL,
8436		      /*dxfer_len*/0,
8437		      sense_len,
8438		      sizeof(*scsi_cmd),
8439		      timeout);
8440}
8441
8442void
8443scsi_read_attribute(struct ccb_scsiio *csio, u_int32_t retries,
8444		    void (*cbfcnp)(struct cam_periph *, union ccb *),
8445		    u_int8_t tag_action, u_int8_t service_action,
8446		    uint32_t element, u_int8_t elem_type, int logical_volume,
8447		    int partition, u_int32_t first_attribute, int cache,
8448		    u_int8_t *data_ptr, u_int32_t length, int sense_len,
8449		    u_int32_t timeout)
8450{
8451	struct scsi_read_attribute *scsi_cmd;
8452
8453	scsi_cmd = (struct scsi_read_attribute *)&csio->cdb_io.cdb_bytes;
8454	bzero(scsi_cmd, sizeof(*scsi_cmd));
8455
8456	scsi_cmd->opcode = READ_ATTRIBUTE;
8457	scsi_cmd->service_action = service_action;
8458	scsi_ulto2b(element, scsi_cmd->element);
8459	scsi_cmd->elem_type = elem_type;
8460	scsi_cmd->logical_volume = logical_volume;
8461	scsi_cmd->partition = partition;
8462	scsi_ulto2b(first_attribute, scsi_cmd->first_attribute);
8463	scsi_ulto4b(length, scsi_cmd->length);
8464	if (cache != 0)
8465		scsi_cmd->cache |= SRA_CACHE;
8466
8467	cam_fill_csio(csio,
8468		      retries,
8469		      cbfcnp,
8470		      /*flags*/CAM_DIR_IN,
8471		      tag_action,
8472		      /*data_ptr*/data_ptr,
8473		      /*dxfer_len*/length,
8474		      sense_len,
8475		      sizeof(*scsi_cmd),
8476		      timeout);
8477}
8478
8479void
8480scsi_write_attribute(struct ccb_scsiio *csio, u_int32_t retries,
8481		    void (*cbfcnp)(struct cam_periph *, union ccb *),
8482		    u_int8_t tag_action, uint32_t element, int logical_volume,
8483		    int partition, int wtc, u_int8_t *data_ptr,
8484		    u_int32_t length, int sense_len, u_int32_t timeout)
8485{
8486	struct scsi_write_attribute *scsi_cmd;
8487
8488	scsi_cmd = (struct scsi_write_attribute *)&csio->cdb_io.cdb_bytes;
8489	bzero(scsi_cmd, sizeof(*scsi_cmd));
8490
8491	scsi_cmd->opcode = WRITE_ATTRIBUTE;
8492	if (wtc != 0)
8493		scsi_cmd->byte2 = SWA_WTC;
8494	scsi_ulto3b(element, scsi_cmd->element);
8495	scsi_cmd->logical_volume = logical_volume;
8496	scsi_cmd->partition = partition;
8497	scsi_ulto4b(length, scsi_cmd->length);
8498
8499	cam_fill_csio(csio,
8500		      retries,
8501		      cbfcnp,
8502		      /*flags*/CAM_DIR_OUT,
8503		      tag_action,
8504		      /*data_ptr*/data_ptr,
8505		      /*dxfer_len*/length,
8506		      sense_len,
8507		      sizeof(*scsi_cmd),
8508		      timeout);
8509}
8510
8511void
8512scsi_persistent_reserve_in(struct ccb_scsiio *csio, uint32_t retries,
8513			   void (*cbfcnp)(struct cam_periph *, union ccb *),
8514			   uint8_t tag_action, int service_action,
8515			   uint8_t *data_ptr, uint32_t dxfer_len, int sense_len,
8516			   int timeout)
8517{
8518	struct scsi_per_res_in *scsi_cmd;
8519
8520	scsi_cmd = (struct scsi_per_res_in *)&csio->cdb_io.cdb_bytes;
8521	bzero(scsi_cmd, sizeof(*scsi_cmd));
8522
8523	scsi_cmd->opcode = PERSISTENT_RES_IN;
8524	scsi_cmd->action = service_action;
8525	scsi_ulto2b(dxfer_len, scsi_cmd->length);
8526
8527	cam_fill_csio(csio,
8528		      retries,
8529		      cbfcnp,
8530		      /*flags*/CAM_DIR_IN,
8531		      tag_action,
8532		      data_ptr,
8533		      dxfer_len,
8534		      sense_len,
8535		      sizeof(*scsi_cmd),
8536		      timeout);
8537}
8538
8539void
8540scsi_persistent_reserve_out(struct ccb_scsiio *csio, uint32_t retries,
8541			    void (*cbfcnp)(struct cam_periph *, union ccb *),
8542			    uint8_t tag_action, int service_action,
8543			    int scope, int res_type, uint8_t *data_ptr,
8544			    uint32_t dxfer_len, int sense_len, int timeout)
8545{
8546	struct scsi_per_res_out *scsi_cmd;
8547
8548	scsi_cmd = (struct scsi_per_res_out *)&csio->cdb_io.cdb_bytes;
8549	bzero(scsi_cmd, sizeof(*scsi_cmd));
8550
8551	scsi_cmd->opcode = PERSISTENT_RES_OUT;
8552	scsi_cmd->action = service_action;
8553	scsi_cmd->scope_type = scope | res_type;
8554	scsi_ulto4b(dxfer_len, scsi_cmd->length);
8555
8556	cam_fill_csio(csio,
8557		      retries,
8558		      cbfcnp,
8559		      /*flags*/CAM_DIR_OUT,
8560		      tag_action,
8561		      /*data_ptr*/data_ptr,
8562		      /*dxfer_len*/dxfer_len,
8563		      sense_len,
8564		      sizeof(*scsi_cmd),
8565		      timeout);
8566}
8567
8568void
8569scsi_security_protocol_in(struct ccb_scsiio *csio, uint32_t retries,
8570			  void (*cbfcnp)(struct cam_periph *, union ccb *),
8571			  uint8_t tag_action, uint32_t security_protocol,
8572			  uint32_t security_protocol_specific, int byte4,
8573			  uint8_t *data_ptr, uint32_t dxfer_len, int sense_len,
8574			  int timeout)
8575{
8576	struct scsi_security_protocol_in *scsi_cmd;
8577
8578	scsi_cmd = (struct scsi_security_protocol_in *)&csio->cdb_io.cdb_bytes;
8579	bzero(scsi_cmd, sizeof(*scsi_cmd));
8580
8581	scsi_cmd->opcode = SECURITY_PROTOCOL_IN;
8582
8583	scsi_cmd->security_protocol = security_protocol;
8584	scsi_ulto2b(security_protocol_specific,
8585		    scsi_cmd->security_protocol_specific);
8586	scsi_cmd->byte4 = byte4;
8587	scsi_ulto4b(dxfer_len, scsi_cmd->length);
8588
8589	cam_fill_csio(csio,
8590		      retries,
8591		      cbfcnp,
8592		      /*flags*/CAM_DIR_IN,
8593		      tag_action,
8594		      data_ptr,
8595		      dxfer_len,
8596		      sense_len,
8597		      sizeof(*scsi_cmd),
8598		      timeout);
8599}
8600
8601void
8602scsi_security_protocol_out(struct ccb_scsiio *csio, uint32_t retries,
8603			   void (*cbfcnp)(struct cam_periph *, union ccb *),
8604			   uint8_t tag_action, uint32_t security_protocol,
8605			   uint32_t security_protocol_specific, int byte4,
8606			   uint8_t *data_ptr, uint32_t dxfer_len, int sense_len,
8607			   int timeout)
8608{
8609	struct scsi_security_protocol_out *scsi_cmd;
8610
8611	scsi_cmd = (struct scsi_security_protocol_out *)&csio->cdb_io.cdb_bytes;
8612	bzero(scsi_cmd, sizeof(*scsi_cmd));
8613
8614	scsi_cmd->opcode = SECURITY_PROTOCOL_OUT;
8615
8616	scsi_cmd->security_protocol = security_protocol;
8617	scsi_ulto2b(security_protocol_specific,
8618		    scsi_cmd->security_protocol_specific);
8619	scsi_cmd->byte4 = byte4;
8620	scsi_ulto4b(dxfer_len, scsi_cmd->length);
8621
8622	cam_fill_csio(csio,
8623		      retries,
8624		      cbfcnp,
8625		      /*flags*/CAM_DIR_OUT,
8626		      tag_action,
8627		      data_ptr,
8628		      dxfer_len,
8629		      sense_len,
8630		      sizeof(*scsi_cmd),
8631		      timeout);
8632}
8633
8634void
8635scsi_report_supported_opcodes(struct ccb_scsiio *csio, uint32_t retries,
8636			      void (*cbfcnp)(struct cam_periph *, union ccb *),
8637			      uint8_t tag_action, int options, int req_opcode,
8638			      int req_service_action, uint8_t *data_ptr,
8639			      uint32_t dxfer_len, int sense_len, int timeout)
8640{
8641	struct scsi_report_supported_opcodes *scsi_cmd;
8642
8643	scsi_cmd = (struct scsi_report_supported_opcodes *)
8644	    &csio->cdb_io.cdb_bytes;
8645	bzero(scsi_cmd, sizeof(*scsi_cmd));
8646
8647	scsi_cmd->opcode = MAINTENANCE_IN;
8648	scsi_cmd->service_action = REPORT_SUPPORTED_OPERATION_CODES;
8649	scsi_cmd->options = options;
8650	scsi_cmd->requested_opcode = req_opcode;
8651	scsi_ulto2b(req_service_action, scsi_cmd->requested_service_action);
8652	scsi_ulto4b(dxfer_len, scsi_cmd->length);
8653
8654	cam_fill_csio(csio,
8655		      retries,
8656		      cbfcnp,
8657		      /*flags*/CAM_DIR_IN,
8658		      tag_action,
8659		      data_ptr,
8660		      dxfer_len,
8661		      sense_len,
8662		      sizeof(*scsi_cmd),
8663		      timeout);
8664}
8665
8666/*
8667 * Try make as good a match as possible with
8668 * available sub drivers
8669 */
8670int
8671scsi_inquiry_match(caddr_t inqbuffer, caddr_t table_entry)
8672{
8673	struct scsi_inquiry_pattern *entry;
8674	struct scsi_inquiry_data *inq;
8675
8676	entry = (struct scsi_inquiry_pattern *)table_entry;
8677	inq = (struct scsi_inquiry_data *)inqbuffer;
8678
8679	if (((SID_TYPE(inq) == entry->type)
8680	  || (entry->type == T_ANY))
8681	 && (SID_IS_REMOVABLE(inq) ? entry->media_type & SIP_MEDIA_REMOVABLE
8682				   : entry->media_type & SIP_MEDIA_FIXED)
8683	 && (cam_strmatch(inq->vendor, entry->vendor, sizeof(inq->vendor)) == 0)
8684	 && (cam_strmatch(inq->product, entry->product,
8685			  sizeof(inq->product)) == 0)
8686	 && (cam_strmatch(inq->revision, entry->revision,
8687			  sizeof(inq->revision)) == 0)) {
8688		return (0);
8689	}
8690        return (-1);
8691}
8692
8693/*
8694 * Try make as good a match as possible with
8695 * available sub drivers
8696 */
8697int
8698scsi_static_inquiry_match(caddr_t inqbuffer, caddr_t table_entry)
8699{
8700	struct scsi_static_inquiry_pattern *entry;
8701	struct scsi_inquiry_data *inq;
8702
8703	entry = (struct scsi_static_inquiry_pattern *)table_entry;
8704	inq = (struct scsi_inquiry_data *)inqbuffer;
8705
8706	if (((SID_TYPE(inq) == entry->type)
8707	  || (entry->type == T_ANY))
8708	 && (SID_IS_REMOVABLE(inq) ? entry->media_type & SIP_MEDIA_REMOVABLE
8709				   : entry->media_type & SIP_MEDIA_FIXED)
8710	 && (cam_strmatch(inq->vendor, entry->vendor, sizeof(inq->vendor)) == 0)
8711	 && (cam_strmatch(inq->product, entry->product,
8712			  sizeof(inq->product)) == 0)
8713	 && (cam_strmatch(inq->revision, entry->revision,
8714			  sizeof(inq->revision)) == 0)) {
8715		return (0);
8716	}
8717        return (-1);
8718}
8719
8720/**
8721 * Compare two buffers of vpd device descriptors for a match.
8722 *
8723 * \param lhs      Pointer to first buffer of descriptors to compare.
8724 * \param lhs_len  The length of the first buffer.
8725 * \param rhs	   Pointer to second buffer of descriptors to compare.
8726 * \param rhs_len  The length of the second buffer.
8727 *
8728 * \return  0 on a match, -1 otherwise.
8729 *
8730 * Treat rhs and lhs as arrays of vpd device id descriptors.  Walk lhs matching
8731 * against each element in rhs until all data are exhausted or we have found
8732 * a match.
8733 */
8734int
8735scsi_devid_match(uint8_t *lhs, size_t lhs_len, uint8_t *rhs, size_t rhs_len)
8736{
8737	struct scsi_vpd_id_descriptor *lhs_id;
8738	struct scsi_vpd_id_descriptor *lhs_last;
8739	struct scsi_vpd_id_descriptor *rhs_last;
8740	uint8_t *lhs_end;
8741	uint8_t *rhs_end;
8742
8743	lhs_end = lhs + lhs_len;
8744	rhs_end = rhs + rhs_len;
8745
8746	/*
8747	 * rhs_last and lhs_last are the last posible position of a valid
8748	 * descriptor assuming it had a zero length identifier.  We use
8749	 * these variables to insure we can safely dereference the length
8750	 * field in our loop termination tests.
8751	 */
8752	lhs_last = (struct scsi_vpd_id_descriptor *)
8753	    (lhs_end - __offsetof(struct scsi_vpd_id_descriptor, identifier));
8754	rhs_last = (struct scsi_vpd_id_descriptor *)
8755	    (rhs_end - __offsetof(struct scsi_vpd_id_descriptor, identifier));
8756
8757	lhs_id = (struct scsi_vpd_id_descriptor *)lhs;
8758	while (lhs_id <= lhs_last
8759	    && (lhs_id->identifier + lhs_id->length) <= lhs_end) {
8760		struct scsi_vpd_id_descriptor *rhs_id;
8761
8762		rhs_id = (struct scsi_vpd_id_descriptor *)rhs;
8763		while (rhs_id <= rhs_last
8764		    && (rhs_id->identifier + rhs_id->length) <= rhs_end) {
8765
8766			if ((rhs_id->id_type &
8767			     (SVPD_ID_ASSOC_MASK | SVPD_ID_TYPE_MASK)) ==
8768			    (lhs_id->id_type &
8769			     (SVPD_ID_ASSOC_MASK | SVPD_ID_TYPE_MASK))
8770			 && rhs_id->length == lhs_id->length
8771			 && memcmp(rhs_id->identifier, lhs_id->identifier,
8772				   rhs_id->length) == 0)
8773				return (0);
8774
8775			rhs_id = (struct scsi_vpd_id_descriptor *)
8776			   (rhs_id->identifier + rhs_id->length);
8777		}
8778		lhs_id = (struct scsi_vpd_id_descriptor *)
8779		   (lhs_id->identifier + lhs_id->length);
8780	}
8781	return (-1);
8782}
8783
8784#ifdef _KERNEL
8785int
8786scsi_vpd_supported_page(struct cam_periph *periph, uint8_t page_id)
8787{
8788	struct cam_ed *device;
8789	struct scsi_vpd_supported_pages *vpds;
8790	int i, num_pages;
8791
8792	device = periph->path->device;
8793	vpds = (struct scsi_vpd_supported_pages *)device->supported_vpds;
8794
8795	if (vpds != NULL) {
8796		num_pages = device->supported_vpds_len -
8797		    SVPD_SUPPORTED_PAGES_HDR_LEN;
8798		for (i = 0; i < num_pages; i++) {
8799			if (vpds->page_list[i] == page_id)
8800				return (1);
8801		}
8802	}
8803
8804	return (0);
8805}
8806
8807static void
8808init_scsi_delay(void)
8809{
8810	int delay;
8811
8812	delay = SCSI_DELAY;
8813	TUNABLE_INT_FETCH("kern.cam.scsi_delay", &delay);
8814
8815	if (set_scsi_delay(delay) != 0) {
8816		printf("cam: invalid value for tunable kern.cam.scsi_delay\n");
8817		set_scsi_delay(SCSI_DELAY);
8818	}
8819}
8820SYSINIT(scsi_delay, SI_SUB_TUNABLES, SI_ORDER_ANY, init_scsi_delay, NULL);
8821
8822static int
8823sysctl_scsi_delay(SYSCTL_HANDLER_ARGS)
8824{
8825	int error, delay;
8826
8827	delay = scsi_delay;
8828	error = sysctl_handle_int(oidp, &delay, 0, req);
8829	if (error != 0 || req->newptr == NULL)
8830		return (error);
8831	return (set_scsi_delay(delay));
8832}
8833SYSCTL_PROC(_kern_cam, OID_AUTO, scsi_delay, CTLTYPE_INT|CTLFLAG_RW,
8834    0, 0, sysctl_scsi_delay, "I",
8835    "Delay to allow devices to settle after a SCSI bus reset (ms)");
8836
8837static int
8838set_scsi_delay(int delay)
8839{
8840	/*
8841         * If someone sets this to 0, we assume that they want the
8842         * minimum allowable bus settle delay.
8843	 */
8844	if (delay == 0) {
8845		printf("cam: using minimum scsi_delay (%dms)\n",
8846		    SCSI_MIN_DELAY);
8847		delay = SCSI_MIN_DELAY;
8848	}
8849	if (delay < SCSI_MIN_DELAY)
8850		return (EINVAL);
8851	scsi_delay = delay;
8852	return (0);
8853}
8854#endif /* _KERNEL */
8855