2 * Generic utility routines for the Common Access Method layer.
4 * Copyright (c) 1997 Justin T. Gibbs.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
32 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/kernel.h>
36 #include <sys/sysctl.h>
45 #include <cam/cam_ccb.h>
46 #include <cam/scsi/scsi_all.h>
47 #include <cam/scsi/smp_all.h>
51 #include <sys/libkern.h>
52 #include <cam/cam_queue.h>
53 #include <cam/cam_xpt.h>
55 FEATURE(scbus, "SCSI devices support");
59 static int camstatusentrycomp(const void *key, const void *member);
61 const struct cam_status_entry cam_status_table[] = {
62 { CAM_REQ_INPROG, "CCB request is in progress" },
63 { CAM_REQ_CMP, "CCB request completed without error" },
64 { CAM_REQ_ABORTED, "CCB request aborted by the host" },
65 { CAM_UA_ABORT, "Unable to abort CCB request" },
66 { CAM_REQ_CMP_ERR, "CCB request completed with an error" },
67 { CAM_BUSY, "CAM subsystem is busy" },
68 { CAM_REQ_INVALID, "CCB request was invalid" },
69 { CAM_PATH_INVALID, "Supplied Path ID is invalid" },
70 { CAM_DEV_NOT_THERE, "Device Not Present" },
71 { CAM_UA_TERMIO, "Unable to terminate I/O CCB request" },
72 { CAM_SEL_TIMEOUT, "Selection Timeout" },
73 { CAM_CMD_TIMEOUT, "Command timeout" },
74 { CAM_SCSI_STATUS_ERROR, "SCSI Status Error" },
75 { CAM_MSG_REJECT_REC, "Message Reject Reveived" },
76 { CAM_SCSI_BUS_RESET, "SCSI Bus Reset Sent/Received" },
77 { CAM_UNCOR_PARITY, "Uncorrectable parity/CRC error" },
78 { CAM_AUTOSENSE_FAIL, "Auto-Sense Retrieval Failed" },
79 { CAM_NO_HBA, "No HBA Detected" },
80 { CAM_DATA_RUN_ERR, "Data Overrun error" },
81 { CAM_UNEXP_BUSFREE, "Unexpected Bus Free" },
82 { CAM_SEQUENCE_FAIL, "Target Bus Phase Sequence Failure" },
83 { CAM_CCB_LEN_ERR, "CCB length supplied is inadequate" },
84 { CAM_PROVIDE_FAIL, "Unable to provide requested capability" },
85 { CAM_BDR_SENT, "SCSI BDR Message Sent" },
86 { CAM_REQ_TERMIO, "CCB request terminated by the host" },
87 { CAM_UNREC_HBA_ERROR, "Unrecoverable Host Bus Adapter Error" },
88 { CAM_REQ_TOO_BIG, "The request was too large for this host" },
89 { CAM_REQUEUE_REQ, "Unconditionally Re-queue Request", },
90 { CAM_ATA_STATUS_ERROR, "ATA Status Error" },
91 { CAM_SCSI_IT_NEXUS_LOST,"Initiator/Target Nexus Lost" },
92 { CAM_SMP_STATUS_ERROR, "SMP Status Error" },
93 { CAM_IDE, "Initiator Detected Error Message Received" },
94 { CAM_RESRC_UNAVAIL, "Resource Unavailable" },
95 { CAM_UNACKED_EVENT, "Unacknowledged Event by Host" },
96 { CAM_MESSAGE_RECV, "Message Received in Host Target Mode" },
97 { CAM_INVALID_CDB, "Invalid CDB received in Host Target Mode" },
98 { CAM_LUN_INVALID, "Invalid Lun" },
99 { CAM_TID_INVALID, "Invalid Target ID" },
100 { CAM_FUNC_NOTAVAIL, "Function Not Available" },
101 { CAM_NO_NEXUS, "Nexus Not Established" },
102 { CAM_IID_INVALID, "Invalid Initiator ID" },
103 { CAM_CDB_RECVD, "CDB Received" },
104 { CAM_LUN_ALRDY_ENA, "LUN Already Enabled for Target Mode" },
105 { CAM_SCSI_BUSY, "SCSI Bus Busy" },
109 SYSCTL_NODE(_kern, OID_AUTO, cam, CTLFLAG_RD, 0, "CAM Subsystem");
111 #ifndef CAM_DEFAULT_SORT_IO_QUEUES
112 #define CAM_DEFAULT_SORT_IO_QUEUES 1
115 int cam_sort_io_queues = CAM_DEFAULT_SORT_IO_QUEUES;
116 SYSCTL_INT(_kern_cam, OID_AUTO, sort_io_queues, CTLFLAG_RWTUN,
117 &cam_sort_io_queues, 0, "Sort IO queues to try and optimise disk access patterns");
121 cam_strvis(u_int8_t *dst, const u_int8_t *src, int srclen, int dstlen)
124 /* Trim leading/trailing spaces, nulls. */
125 while (srclen > 0 && src[0] == ' ')
128 && (src[srclen-1] == ' ' || src[srclen-1] == '\0'))
131 while (srclen > 0 && dstlen > 1) {
132 u_int8_t *cur_pos = dst;
134 if (*src < 0x20 || *src >= 0x80) {
135 /* SCSI-II Specifies that these should never occur. */
136 /* non-printable character */
139 *cur_pos++ = ((*src & 0300) >> 6) + '0';
140 *cur_pos++ = ((*src & 0070) >> 3) + '0';
141 *cur_pos++ = ((*src & 0007) >> 0) + '0';
146 /* normal character */
151 dstlen -= cur_pos - dst;
158 cam_strvis_sbuf(struct sbuf *sb, const u_int8_t *src, int srclen,
162 /* Trim leading/trailing spaces, nulls. */
163 while (srclen > 0 && src[0] == ' ')
166 && (src[srclen-1] == ' ' || src[srclen-1] == '\0'))
170 if (*src < 0x20 || *src >= 0x80) {
171 /* SCSI-II Specifies that these should never occur. */
172 /* non-printable character */
173 switch (flags & CAM_STRVIS_FLAG_NONASCII_MASK) {
174 case CAM_STRVIS_FLAG_NONASCII_ESC:
175 sbuf_printf(sb, "\\%c%c%c",
176 ((*src & 0300) >> 6) + '0',
177 ((*src & 0070) >> 3) + '0',
178 ((*src & 0007) >> 0) + '0');
180 case CAM_STRVIS_FLAG_NONASCII_RAW:
182 * If we run into a NUL, just transform it
190 case CAM_STRVIS_FLAG_NONASCII_SPC:
193 case CAM_STRVIS_FLAG_NONASCII_TRIM:
198 /* normal character */
208 * Compare string with pattern, returning 0 on match.
209 * Short pattern matches trailing blanks in name,
210 * wildcard '*' in pattern matches rest of name,
211 * wildcard '?' matches a single non-space character.
214 cam_strmatch(const u_int8_t *str, const u_int8_t *pattern, int str_len)
217 while (*pattern != '\0'&& str_len > 0) {
219 if (*pattern == '*') {
222 if ((*pattern != *str)
223 && (*pattern != '?' || *str == ' ')) {
230 while (str_len > 0 && *str == ' ') {
234 if (str_len > 0 && *str == 0)
241 cam_quirkmatch(caddr_t target, caddr_t quirk_table, int num_entries,
242 int entry_size, cam_quirkmatch_t *comp_func)
244 for (; num_entries > 0; num_entries--, quirk_table += entry_size) {
245 if ((*comp_func)(target, quirk_table) == 0)
246 return (quirk_table);
251 const struct cam_status_entry*
252 cam_fetch_status_entry(cam_status status)
254 status &= CAM_STATUS_MASK;
255 return (bsearch(&status, &cam_status_table,
256 nitems(cam_status_table),
257 sizeof(*cam_status_table),
258 camstatusentrycomp));
262 camstatusentrycomp(const void *key, const void *member)
265 const struct cam_status_entry *table_entry;
267 status = *(const cam_status *)key;
268 table_entry = (const struct cam_status_entry *)member;
270 return (status - table_entry->status_code);
276 cam_error_string(union ccb *ccb, char *str, int str_len,
277 cam_error_string_flags flags,
278 cam_error_proto_flags proto_flags)
281 cam_error_string(struct cam_device *device, union ccb *ccb, char *str,
282 int str_len, cam_error_string_flags flags,
283 cam_error_proto_flags proto_flags)
284 #endif /* _KERNEL/!_KERNEL */
294 if (flags == CAM_ESF_NONE)
297 switch (ccb->ccb_h.func_code) {
299 switch (proto_flags & CAM_EPF_LEVEL_MASK) {
304 proto_flags |= CAM_EAF_PRINT_RESULT;
306 case CAM_EPF_MINIMAL:
307 proto_flags |= CAM_EAF_PRINT_STATUS;
314 switch (proto_flags & CAM_EPF_LEVEL_MASK) {
319 proto_flags |= CAM_ESF_PRINT_SENSE;
321 case CAM_EPF_MINIMAL:
322 proto_flags |= CAM_ESF_PRINT_STATUS;
329 switch (proto_flags & CAM_EPF_LEVEL_MASK) {
333 proto_flags |= CAM_ESMF_PRINT_FULL_CMD;
336 case CAM_EPF_MINIMAL:
337 proto_flags |= CAM_ESMF_PRINT_STATUS;
347 xpt_path_string(ccb->csio.ccb_h.path, path_str, sizeof(path_str));
349 cam_path_string(device, path_str, sizeof(path_str));
350 #endif /* _KERNEL/!_KERNEL */
352 sbuf_new(&sb, str, str_len, 0);
354 if (flags & CAM_ESF_COMMAND) {
355 sbuf_cat(&sb, path_str);
356 switch (ccb->ccb_h.func_code) {
358 ata_command_sbuf(&ccb->ataio, &sb);
359 sbuf_printf(&sb, "\n");
363 scsi_command_string(&ccb->csio, &sb);
365 scsi_command_string(device, &ccb->csio, &sb);
366 #endif /* _KERNEL/!_KERNEL */
367 sbuf_printf(&sb, "\n");
370 smp_command_sbuf(&ccb->smpio, &sb, path_str, 79 -
371 strlen(path_str), (proto_flags &
372 CAM_ESMF_PRINT_FULL_CMD) ? 79 : 0);
373 sbuf_printf(&sb, "\n");
380 if (flags & CAM_ESF_CAM_STATUS) {
382 const struct cam_status_entry *entry;
384 sbuf_cat(&sb, path_str);
386 status = ccb->ccb_h.status & CAM_STATUS_MASK;
388 entry = cam_fetch_status_entry(status);
391 sbuf_printf(&sb, "CAM status: Unknown (%#x)\n",
394 sbuf_printf(&sb, "CAM status: %s\n",
398 if (flags & CAM_ESF_PROTO_STATUS) {
400 switch (ccb->ccb_h.func_code) {
402 if ((ccb->ccb_h.status & CAM_STATUS_MASK) !=
403 CAM_ATA_STATUS_ERROR)
405 if (proto_flags & CAM_EAF_PRINT_STATUS) {
406 sbuf_cat(&sb, path_str);
407 ata_status_sbuf(&ccb->ataio, &sb);
408 sbuf_printf(&sb, "\n");
410 if (proto_flags & CAM_EAF_PRINT_RESULT) {
411 sbuf_cat(&sb, path_str);
412 sbuf_printf(&sb, "RES: ");
413 ata_res_sbuf(&ccb->ataio.res, &sb);
414 sbuf_printf(&sb, "\n");
419 if ((ccb->ccb_h.status & CAM_STATUS_MASK) !=
420 CAM_SCSI_STATUS_ERROR)
423 if (proto_flags & CAM_ESF_PRINT_STATUS) {
424 sbuf_cat(&sb, path_str);
425 sbuf_printf(&sb, "SCSI status: %s\n",
426 scsi_status_string(&ccb->csio));
429 if ((proto_flags & CAM_ESF_PRINT_SENSE)
430 && (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND)
431 && (ccb->ccb_h.status & CAM_AUTOSNS_VALID)) {
434 scsi_sense_sbuf(&ccb->csio, &sb,
437 scsi_sense_sbuf(device, &ccb->csio, &sb,
439 #endif /* _KERNEL/!_KERNEL */
443 if ((ccb->ccb_h.status & CAM_STATUS_MASK) !=
444 CAM_SMP_STATUS_ERROR)
447 if (proto_flags & CAM_ESF_PRINT_STATUS) {
448 sbuf_cat(&sb, path_str);
449 sbuf_printf(&sb, "SMP status: %s (%#x)\n",
450 smp_error_desc(ccb->smpio.smp_response[2]),
451 ccb->smpio.smp_response[2]);
453 /* There is no SMP equivalent to SCSI sense. */
462 return(sbuf_data(&sb));
468 cam_error_print(union ccb *ccb, cam_error_string_flags flags,
469 cam_error_proto_flags proto_flags)
473 printf("%s", cam_error_string(ccb, str, sizeof(str), flags,
480 cam_error_print(struct cam_device *device, union ccb *ccb,
481 cam_error_string_flags flags, cam_error_proto_flags proto_flags,
486 if ((device == NULL) || (ccb == NULL) || (ofile == NULL))
489 fprintf(ofile, "%s", cam_error_string(device, ccb, str, sizeof(str),
490 flags, proto_flags));
493 #endif /* _KERNEL/!_KERNEL */
496 * Common calculate geometry fuction
498 * Caller should set ccg->volume_size and block_size.
499 * The extended parameter should be zero if extended translation
500 * should not be used.
503 cam_calc_geometry(struct ccb_calc_geometry *ccg, int extended)
505 uint32_t size_mb, secs_per_cylinder;
507 if (ccg->block_size == 0) {
508 ccg->ccb_h.status = CAM_REQ_CMP_ERR;
511 size_mb = (1024L * 1024L) / ccg->block_size;
513 ccg->ccb_h.status = CAM_REQ_CMP_ERR;
516 size_mb = ccg->volume_size / size_mb;
517 if (size_mb > 1024 && extended) {
519 ccg->secs_per_track = 63;
522 ccg->secs_per_track = 32;
524 secs_per_cylinder = ccg->heads * ccg->secs_per_track;
525 if (secs_per_cylinder == 0) {
526 ccg->ccb_h.status = CAM_REQ_CMP_ERR;
529 ccg->cylinders = ccg->volume_size / secs_per_cylinder;
530 ccg->ccb_h.status = CAM_REQ_CMP;