kernel/cam: Add CAM_SCSI_IT_NEXUS_LOST (in preparation for virtio_scsi(4)).
[dragonfly.git] / sys / bus / cam / cam.c
blob15c399b31402ddf8a44e605470fc03b63a73e10c
1 /*
2 * Generic utility routines for the Common Access Method layer.
4 * Copyright (c) 1997 Justin T. Gibbs.
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification, immediately at the beginning of the file.
13 * 2. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
28 * $FreeBSD: src/sys/cam/cam.c,v 1.4 2001/03/27 05:45:09 ken Exp $
30 #include <sys/param.h>
32 #ifdef _KERNEL
34 #include <sys/systm.h>
35 #include <sys/kernel.h>
36 #include <sys/sysctl.h>
38 #else
40 #include <stdlib.h>
41 #include <stdio.h>
42 #include <camlib.h>
44 #define kbsearch bsearch
46 #endif
48 #include "cam.h"
49 #include "cam_ccb.h"
50 #include "scsi/scsi_all.h"
51 #include <sys/sbuf.h>
53 #ifdef _KERNEL
54 #include <sys/libkern.h>
55 #include "cam_xpt.h"
56 #endif
58 static int camstatusentrycomp(const void *key, const void *member);
60 const struct cam_status_entry cam_status_table[] = {
61 { CAM_REQ_INPROG, "CCB request is in progress" },
62 { CAM_REQ_CMP, "CCB request completed without error" },
63 { CAM_REQ_ABORTED, "CCB request aborted by the host" },
64 { CAM_UA_ABORT, "Unable to abort CCB request" },
65 { CAM_REQ_CMP_ERR, "CCB request completed with an error" },
66 { CAM_BUSY, "CAM subsystem is busy" },
67 { CAM_REQ_INVALID, "CCB request was invalid" },
68 { CAM_PATH_INVALID, "Supplied Path ID is invalid" },
69 { CAM_DEV_NOT_THERE, "Device Not Present" },
70 { CAM_UA_TERMIO, "Unable to terminate I/O CCB request" },
71 { CAM_SEL_TIMEOUT, "Selection Timeout" },
72 { CAM_CMD_TIMEOUT, "Command timeout" },
73 { CAM_SCSI_STATUS_ERROR, "SCSI Status Error" },
74 { CAM_MSG_REJECT_REC, "Message Reject Reveived" },
75 { CAM_SCSI_BUS_RESET, "SCSI Bus Reset Sent/Received" },
76 { CAM_UNCOR_PARITY, "Uncorrectable parity/CRC error" },
77 { CAM_AUTOSENSE_FAIL, "Auto-Sense Retrieval Failed" },
78 { CAM_NO_HBA, "No HBA Detected" },
79 { CAM_DATA_RUN_ERR, "Data Overrun error" },
80 { CAM_UNEXP_BUSFREE, "Unexpected Bus Free" },
81 { CAM_SEQUENCE_FAIL, "Target Bus Phase Sequence Failure" },
82 { CAM_CCB_LEN_ERR, "CCB length supplied is inadequate" },
83 { CAM_PROVIDE_FAIL, "Unable to provide requested capability" },
84 { CAM_BDR_SENT, "SCSI BDR Message Sent" },
85 { CAM_REQ_TERMIO, "CCB request terminated by the host" },
86 { CAM_UNREC_HBA_ERROR, "Unrecoverable Host Bus Adapter Error" },
87 { CAM_REQ_TOO_BIG, "The request was too large for this host" },
88 { CAM_REQUEUE_REQ, "Unconditionally Re-queue Request", },
89 { CAM_SCSI_IT_NEXUS_LOST,"Initiator/Target Nexus Lost" },
90 { CAM_IDE, "Initiator Detected Error Message Received" },
91 { CAM_RESRC_UNAVAIL, "Resource Unavailable" },
92 { CAM_UNACKED_EVENT, "Unacknowledged Event by Host" },
93 { CAM_MESSAGE_RECV, "Message Received in Host Target Mode" },
94 { CAM_INVALID_CDB, "Invalid CDB received in Host Target Mode" },
95 { CAM_LUN_INVALID, "Invalid Lun" },
96 { CAM_TID_INVALID, "Invalid Target ID" },
97 { CAM_FUNC_NOTAVAIL, "Function Not Available" },
98 { CAM_NO_NEXUS, "Nexus Not Established" },
99 { CAM_IID_INVALID, "Invalid Initiator ID" },
100 { CAM_CDB_RECVD, "CDB Received" },
101 { CAM_LUN_ALRDY_ENA, "LUN Already Enabled for Target Mode" },
102 { CAM_SCSI_BUSY, "SCSI Bus Busy" },
105 const int num_cam_status_entries = NELEM(cam_status_table);
107 #ifdef _KERNEL
108 SYSCTL_NODE(_kern, OID_AUTO, cam, CTLFLAG_RD, 0, "CAM Subsystem");
109 #endif
111 void
112 cam_strvis(u_int8_t *dst, const u_int8_t *src, int srclen, int dstlen)
115 /* Trim leading/trailing spaces, nulls. */
116 while (srclen > 0 && src[0] == ' ')
117 src++, srclen--;
118 while (srclen > 0
119 && (src[srclen-1] == ' ' || src[srclen-1] == '\0'))
120 srclen--;
122 while (srclen > 0 && dstlen > 1) {
123 u_int8_t *cur_pos = dst;
125 if (*src < 0x20 || *src >= 0x80) {
126 /* SCSI-II Specifies that these should never occur. */
127 /* non-printable character */
128 if (dstlen > 4) {
129 *cur_pos++ = '\\';
130 *cur_pos++ = ((*src & 0300) >> 6) + '0';
131 *cur_pos++ = ((*src & 0070) >> 3) + '0';
132 *cur_pos++ = ((*src & 0007) >> 0) + '0';
133 } else {
134 *cur_pos++ = '?';
136 } else {
137 /* normal character */
138 *cur_pos++ = *src;
140 src++;
141 srclen--;
142 dstlen -= cur_pos - dst;
143 dst = cur_pos;
145 *dst = '\0';
149 * Compare string with pattern, returning 0 on match.
150 * Short pattern matches trailing blanks in name,
151 * wildcard '*' in pattern matches rest of name,
152 * wildcard '?' matches a single non-space character.
155 cam_strmatch(const u_int8_t *str, const u_int8_t *pattern, int str_len)
158 while (*pattern != '\0'&& str_len > 0) {
160 if (*pattern == '*') {
161 return (0);
163 if ((*pattern != *str)
164 && (*pattern != '?' || *str == ' ')) {
165 return (1);
167 pattern++;
168 str++;
169 str_len--;
171 while (str_len > 0 && *str++ == ' ')
172 str_len--;
174 return (str_len);
177 caddr_t
178 cam_quirkmatch(caddr_t target, caddr_t quirk_table, int num_entries,
179 int entry_size, cam_quirkmatch_t *comp_func)
181 for (; num_entries > 0; num_entries--, quirk_table += entry_size) {
182 if ((*comp_func)(target, quirk_table) == 0)
183 return (quirk_table);
185 return (NULL);
188 const struct cam_status_entry*
189 cam_fetch_status_entry(cam_status status)
191 status &= CAM_STATUS_MASK;
192 return (kbsearch(&status, &cam_status_table,
193 num_cam_status_entries,
194 sizeof(*cam_status_table),
195 camstatusentrycomp));
198 static int
199 camstatusentrycomp(const void *key, const void *member)
201 cam_status status;
202 const struct cam_status_entry *table_entry;
204 status = *(const cam_status *)key;
205 table_entry = (const struct cam_status_entry *)member;
207 return (status - table_entry->status_code);
211 #ifdef _KERNEL
212 char *
213 cam_error_string(union ccb *ccb, char *str, int str_len,
214 cam_error_string_flags flags,
215 cam_error_proto_flags proto_flags)
216 #else /* !_KERNEL */
217 char *
218 cam_error_string(struct cam_device *device, union ccb *ccb, char *str,
219 int str_len, cam_error_string_flags flags,
220 cam_error_proto_flags proto_flags)
221 #endif /* _KERNEL/!_KERNEL */
223 char path_str[64];
224 struct sbuf sb;
226 if ((ccb == NULL)
227 || (str == NULL)
228 || (str_len <= 0))
229 return(NULL);
231 if (flags == CAM_ESF_NONE)
232 return(NULL);
234 switch (ccb->ccb_h.func_code) {
235 case XPT_SCSI_IO:
236 switch (proto_flags & CAM_EPF_LEVEL_MASK) {
237 case CAM_EPF_NONE:
238 break;
239 case CAM_EPF_ALL:
240 case CAM_EPF_NORMAL:
241 proto_flags |= CAM_ESF_PRINT_SENSE;
242 /* FALLTHROUGH */
243 case CAM_EPF_MINIMAL:
244 proto_flags |= CAM_ESF_PRINT_STATUS;
245 default:
246 break;
248 break;
249 default:
250 break;
252 #ifdef _KERNEL
253 xpt_path_string(ccb->csio.ccb_h.path, path_str, sizeof(path_str));
254 #else /* !_KERNEL */
255 cam_path_string(device, path_str, sizeof(path_str));
256 #endif /* _KERNEL/!_KERNEL */
258 sbuf_new(&sb, str, str_len, 0);
260 if (flags & CAM_ESF_COMMAND) {
262 sbuf_cat(&sb, path_str);
264 switch (ccb->ccb_h.func_code) {
265 case XPT_SCSI_IO:
266 #ifdef _KERNEL
267 scsi_command_string(&ccb->csio, &sb);
268 #else /* !_KERNEL */
269 scsi_command_string(device, &ccb->csio, &sb);
270 #endif /* _KERNEL/!_KERNEL */
271 sbuf_printf(&sb, "\n");
273 break;
274 default:
275 break;
279 if (flags & CAM_ESF_CAM_STATUS) {
280 cam_status status;
281 const struct cam_status_entry *entry;
283 sbuf_cat(&sb, path_str);
285 status = ccb->ccb_h.status & CAM_STATUS_MASK;
287 entry = cam_fetch_status_entry(status);
289 if (entry == NULL)
290 sbuf_printf(&sb, "CAM Status: Unknown (%#x)\n",
291 ccb->ccb_h.status);
292 else
293 sbuf_printf(&sb, "CAM Status: %s\n",
294 entry->status_text);
297 if (flags & CAM_ESF_PROTO_STATUS) {
299 switch (ccb->ccb_h.func_code) {
300 case XPT_SCSI_IO:
301 if ((ccb->ccb_h.status & CAM_STATUS_MASK) !=
302 CAM_SCSI_STATUS_ERROR)
303 break;
305 if (proto_flags & CAM_ESF_PRINT_STATUS) {
306 sbuf_cat(&sb, path_str);
308 * Print out the SCSI status byte as long as
309 * the user wants some protocol output.
311 sbuf_printf(&sb, "SCSI Status: %s\n",
312 scsi_status_string(&ccb->csio));
315 if ((proto_flags & CAM_ESF_PRINT_SENSE)
316 && (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND)
317 && (ccb->ccb_h.status & CAM_AUTOSNS_VALID)) {
319 #ifdef _KERNEL
320 scsi_sense_sbuf(&ccb->csio, &sb,
321 SSS_FLAG_NONE);
322 #else /* !_KERNEL */
323 scsi_sense_sbuf(device, &ccb->csio, &sb,
324 SSS_FLAG_NONE);
325 #endif /* _KERNEL/!_KERNEL */
327 break;
328 default:
329 break;
333 sbuf_finish(&sb);
335 return(sbuf_data(&sb));
338 #ifdef _KERNEL
340 void
341 cam_error_print(union ccb *ccb, cam_error_string_flags flags,
342 cam_error_proto_flags proto_flags)
344 char str[512];
346 kprintf("%s", cam_error_string(ccb, str, sizeof(str), flags,
347 proto_flags));
350 #else /* !_KERNEL */
352 void
353 cam_error_print(struct cam_device *device, union ccb *ccb,
354 cam_error_string_flags flags, cam_error_proto_flags proto_flags,
355 FILE *ofile)
357 char str[512];
359 if ((device == NULL) || (ccb == NULL) || (ofile == NULL))
360 return;
362 fprintf(ofile, "%s", cam_error_string(device, ccb, str, sizeof(str),
363 flags, proto_flags));
366 #endif /* _KERNEL/!_KERNEL */
369 * Common calculate geometry fuction
371 * Caller should set ccg->volume_size and block_size.
372 * The extended parameter should be zero if extended translation
373 * should not be used.
375 void
376 cam_calc_geometry(struct ccb_calc_geometry *ccg, int extended)
378 uint32_t size_mb, secs_per_cylinder;
380 if (ccg->block_size == 0) {
381 ccg->ccb_h.status = CAM_REQ_CMP_ERR;
382 return;
384 size_mb = (1024L * 1024L) / ccg->block_size;
385 if (size_mb == 0) {
386 ccg->ccb_h.status = CAM_REQ_CMP_ERR;
387 return;
389 size_mb = ccg->volume_size / size_mb;
390 if (size_mb > 1024 && extended) {
391 ccg->heads = 255;
392 ccg->secs_per_track = 63;
393 } else {
394 ccg->heads = 64;
395 ccg->secs_per_track = 32;
397 secs_per_cylinder = ccg->heads * ccg->secs_per_track;
398 ccg->cylinders = ccg->volume_size / secs_per_cylinder;
399 ccg->ccb_h.status = CAM_REQ_CMP;