2 #include "qemu-error.h"
9 static char *scsibus_get_fw_dev_path(DeviceState
*dev
);
10 static int scsi_req_parse(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
);
11 static int scsi_build_sense(uint8_t *in_buf
, int in_len
,
12 uint8_t *buf
, int len
, bool fixed
);
14 static struct BusInfo scsi_bus_info
= {
16 .size
= sizeof(SCSIBus
),
17 .get_fw_dev_path
= scsibus_get_fw_dev_path
,
18 .props
= (Property
[]) {
19 DEFINE_PROP_UINT32("scsi-id", SCSIDevice
, id
, -1),
20 DEFINE_PROP_UINT32("lun", SCSIDevice
, lun
, 0),
21 DEFINE_PROP_END_OF_LIST(),
24 static int next_scsi_bus
;
26 /* Create a scsi bus, and attach devices to it. */
27 void scsi_bus_new(SCSIBus
*bus
, DeviceState
*host
, int tcq
, int ndev
,
28 const SCSIBusOps
*ops
)
30 qbus_create_inplace(&bus
->qbus
, &scsi_bus_info
, host
, NULL
);
31 bus
->busnr
= next_scsi_bus
++;
35 bus
->qbus
.allow_hotplug
= 1;
38 static int scsi_qdev_init(DeviceState
*qdev
, DeviceInfo
*base
)
40 SCSIDevice
*dev
= DO_UPCAST(SCSIDevice
, qdev
, qdev
);
41 SCSIDeviceInfo
*info
= DO_UPCAST(SCSIDeviceInfo
, qdev
, base
);
42 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, dev
->qdev
.parent_bus
);
46 for (dev
->id
= 0; dev
->id
< bus
->ndev
; dev
->id
++) {
47 if (bus
->devs
[dev
->id
] == NULL
)
51 if (dev
->id
>= bus
->ndev
) {
52 error_report("bad scsi device id: %d", dev
->id
);
56 if (bus
->devs
[dev
->id
]) {
57 qdev_free(&bus
->devs
[dev
->id
]->qdev
);
59 bus
->devs
[dev
->id
] = dev
;
62 QTAILQ_INIT(&dev
->requests
);
63 rc
= dev
->info
->init(dev
);
65 bus
->devs
[dev
->id
] = NULL
;
72 static int scsi_qdev_exit(DeviceState
*qdev
)
74 SCSIDevice
*dev
= DO_UPCAST(SCSIDevice
, qdev
, qdev
);
75 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, dev
->qdev
.parent_bus
);
77 assert(bus
->devs
[dev
->id
] != NULL
);
78 if (bus
->devs
[dev
->id
]->info
->destroy
) {
79 bus
->devs
[dev
->id
]->info
->destroy(bus
->devs
[dev
->id
]);
81 bus
->devs
[dev
->id
] = NULL
;
85 void scsi_qdev_register(SCSIDeviceInfo
*info
)
87 info
->qdev
.bus_info
= &scsi_bus_info
;
88 info
->qdev
.init
= scsi_qdev_init
;
89 info
->qdev
.unplug
= qdev_simple_unplug_cb
;
90 info
->qdev
.exit
= scsi_qdev_exit
;
91 qdev_register(&info
->qdev
);
94 /* handle legacy '-drive if=scsi,...' cmd line args */
95 SCSIDevice
*scsi_bus_legacy_add_drive(SCSIBus
*bus
, BlockDriverState
*bdrv
,
96 int unit
, bool removable
)
101 driver
= bdrv_is_sg(bdrv
) ? "scsi-generic" : "scsi-disk";
102 dev
= qdev_create(&bus
->qbus
, driver
);
103 qdev_prop_set_uint32(dev
, "scsi-id", unit
);
104 if (qdev_prop_exists(dev
, "removable")) {
105 qdev_prop_set_bit(dev
, "removable", removable
);
107 if (qdev_prop_set_drive(dev
, "drive", bdrv
) < 0) {
111 if (qdev_init(dev
) < 0)
113 return DO_UPCAST(SCSIDevice
, qdev
, dev
);
116 int scsi_bus_legacy_handle_cmdline(SCSIBus
*bus
)
123 for (unit
= 0; unit
< bus
->ndev
; unit
++) {
124 dinfo
= drive_get(IF_SCSI
, bus
->busnr
, unit
);
128 qemu_opts_loc_restore(dinfo
->opts
);
129 if (!scsi_bus_legacy_add_drive(bus
, dinfo
->bdrv
, unit
, false)) {
138 /* SCSIReqOps implementation for invalid commands. */
140 static int32_t scsi_invalid_command(SCSIRequest
*req
, uint8_t *buf
)
142 scsi_req_build_sense(req
, SENSE_CODE(INVALID_OPCODE
));
143 scsi_req_complete(req
, CHECK_CONDITION
);
147 struct SCSIReqOps reqops_invalid_opcode
= {
148 .size
= sizeof(SCSIRequest
),
149 .send_command
= scsi_invalid_command
152 /* SCSIReqOps implementation for unit attention conditions. */
154 static int32_t scsi_unit_attention(SCSIRequest
*req
, uint8_t *buf
)
156 if (req
->dev
&& req
->dev
->unit_attention
.key
== UNIT_ATTENTION
) {
157 scsi_req_build_sense(req
, req
->dev
->unit_attention
);
158 } else if (req
->bus
->unit_attention
.key
== UNIT_ATTENTION
) {
159 scsi_req_build_sense(req
, req
->bus
->unit_attention
);
161 scsi_req_complete(req
, CHECK_CONDITION
);
165 struct SCSIReqOps reqops_unit_attention
= {
166 .size
= sizeof(SCSIRequest
),
167 .send_command
= scsi_unit_attention
170 /* SCSIReqOps implementation for REPORT LUNS and for commands sent to
173 typedef struct SCSITargetReq SCSITargetReq
;
175 struct SCSITargetReq
{
181 static void store_lun(uint8_t *outbuf
, int lun
)
187 outbuf
[1] = (lun
& 255);
188 outbuf
[0] = (lun
>> 8) | 0x40;
191 static bool scsi_target_emulate_report_luns(SCSITargetReq
*r
)
194 if (r
->req
.cmd
.xfer
< 16) {
197 if (r
->req
.cmd
.buf
[2] > 2) {
200 len
= MIN(sizeof r
->buf
, r
->req
.cmd
.xfer
);
201 memset(r
->buf
, 0, len
);
202 if (r
->req
.dev
->lun
!= 0) {
205 store_lun(&r
->buf
[16], r
->req
.dev
->lun
);
213 static bool scsi_target_emulate_inquiry(SCSITargetReq
*r
)
215 assert(r
->req
.dev
->lun
!= r
->req
.lun
);
216 if (r
->req
.cmd
.buf
[1] & 0x2) {
217 /* Command support data - optional, not implemented */
221 if (r
->req
.cmd
.buf
[1] & 0x1) {
222 /* Vital product data */
223 uint8_t page_code
= r
->req
.cmd
.buf
[2];
224 if (r
->req
.cmd
.xfer
< 4) {
228 r
->buf
[r
->len
++] = page_code
; /* this page */
229 r
->buf
[r
->len
++] = 0x00;
232 case 0x00: /* Supported page codes, mandatory */
236 r
->buf
[r
->len
++] = 0x00; /* list of supported pages (this page) */
237 r
->buf
[pages
] = r
->len
- pages
- 1; /* number of pages */
244 assert(r
->len
< sizeof(r
->buf
));
245 r
->len
= MIN(r
->req
.cmd
.xfer
, r
->len
);
249 /* Standard INQUIRY data */
250 if (r
->req
.cmd
.buf
[2] != 0) {
255 if (r
->req
.cmd
.xfer
< 5) {
259 r
->len
= MIN(r
->req
.cmd
.xfer
, 36);
260 memset(r
->buf
, 0, r
->len
);
261 if (r
->req
.lun
!= 0) {
262 r
->buf
[0] = TYPE_NO_LUN
;
264 r
->buf
[0] = TYPE_NOT_PRESENT
| TYPE_INACTIVE
;
265 r
->buf
[2] = 5; /* Version */
266 r
->buf
[3] = 2 | 0x10; /* HiSup, response data format */
267 r
->buf
[4] = r
->len
- 5; /* Additional Length = (Len - 1) - 4 */
268 r
->buf
[7] = 0x10 | (r
->req
.bus
->tcq
? 0x02 : 0); /* Sync, TCQ. */
269 memcpy(&r
->buf
[8], "QEMU ", 8);
270 memcpy(&r
->buf
[16], "QEMU TARGET ", 16);
271 strncpy((char *) &r
->buf
[32], QEMU_VERSION
, 4);
276 static int32_t scsi_target_send_command(SCSIRequest
*req
, uint8_t *buf
)
278 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
282 if (!scsi_target_emulate_report_luns(r
)) {
283 goto illegal_request
;
287 if (!scsi_target_emulate_inquiry(r
)) {
288 goto illegal_request
;
292 if (req
->cmd
.xfer
< 4) {
293 goto illegal_request
;
295 r
->len
= scsi_device_get_sense(r
->req
.dev
, r
->buf
,
296 MIN(req
->cmd
.xfer
, sizeof r
->buf
),
297 (req
->cmd
.buf
[1] & 1) == 0);
300 scsi_req_build_sense(req
, SENSE_CODE(LUN_NOT_SUPPORTED
));
301 scsi_req_complete(req
, CHECK_CONDITION
);
304 scsi_req_build_sense(req
, SENSE_CODE(INVALID_FIELD
));
305 scsi_req_complete(req
, CHECK_CONDITION
);
310 scsi_req_complete(req
, GOOD
);
315 static void scsi_target_read_data(SCSIRequest
*req
)
317 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
323 scsi_req_data(&r
->req
, n
);
325 scsi_req_complete(&r
->req
, GOOD
);
329 static uint8_t *scsi_target_get_buf(SCSIRequest
*req
)
331 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
336 struct SCSIReqOps reqops_target_command
= {
337 .size
= sizeof(SCSITargetReq
),
338 .send_command
= scsi_target_send_command
,
339 .read_data
= scsi_target_read_data
,
340 .get_buf
= scsi_target_get_buf
,
344 SCSIRequest
*scsi_req_alloc(SCSIReqOps
*reqops
, SCSIDevice
*d
, uint32_t tag
,
345 uint32_t lun
, void *hba_private
)
349 req
= g_malloc0(reqops
->size
);
351 req
->bus
= scsi_bus_from_device(d
);
355 req
->hba_private
= hba_private
;
359 trace_scsi_req_alloc(req
->dev
->id
, req
->lun
, req
->tag
);
363 SCSIRequest
*scsi_req_new(SCSIDevice
*d
, uint32_t tag
, uint32_t lun
,
364 uint8_t *buf
, void *hba_private
)
366 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, d
->qdev
.parent_bus
);
370 if (scsi_req_parse(&cmd
, d
, buf
) != 0) {
371 trace_scsi_req_parse_bad(d
->id
, lun
, tag
, buf
[0]);
372 req
= scsi_req_alloc(&reqops_invalid_opcode
, d
, tag
, lun
, hba_private
);
374 trace_scsi_req_parsed(d
->id
, lun
, tag
, buf
[0],
377 trace_scsi_req_parsed_lba(d
->id
, lun
, tag
, buf
[0],
381 if ((d
->unit_attention
.key
== UNIT_ATTENTION
||
382 bus
->unit_attention
.key
== UNIT_ATTENTION
) &&
383 (buf
[0] != INQUIRY
&&
384 buf
[0] != REPORT_LUNS
&&
385 buf
[0] != GET_CONFIGURATION
&&
386 buf
[0] != GET_EVENT_STATUS_NOTIFICATION
)) {
387 req
= scsi_req_alloc(&reqops_unit_attention
, d
, tag
, lun
,
389 } else if (lun
!= d
->lun
||
390 buf
[0] == REPORT_LUNS
||
391 buf
[0] == REQUEST_SENSE
) {
392 req
= scsi_req_alloc(&reqops_target_command
, d
, tag
, lun
,
395 req
= d
->info
->alloc_req(d
, tag
, lun
, hba_private
);
402 trace_scsi_inquiry(d
->id
, lun
, tag
, cmd
.buf
[1], cmd
.buf
[2]);
404 case TEST_UNIT_READY
:
405 trace_scsi_test_unit_ready(d
->id
, lun
, tag
);
408 trace_scsi_report_luns(d
->id
, lun
, tag
);
411 trace_scsi_request_sense(d
->id
, lun
, tag
);
420 uint8_t *scsi_req_get_buf(SCSIRequest
*req
)
422 return req
->ops
->get_buf(req
);
425 static void scsi_clear_unit_attention(SCSIRequest
*req
)
428 if (req
->dev
->unit_attention
.key
!= UNIT_ATTENTION
&&
429 req
->bus
->unit_attention
.key
!= UNIT_ATTENTION
) {
434 * If an INQUIRY command enters the enabled command state,
435 * the device server shall [not] clear any unit attention condition;
436 * See also MMC-6, paragraphs 6.5 and 6.6.2.
438 if (req
->cmd
.buf
[0] == INQUIRY
||
439 req
->cmd
.buf
[0] == GET_CONFIGURATION
||
440 req
->cmd
.buf
[0] == GET_EVENT_STATUS_NOTIFICATION
) {
444 if (req
->dev
->unit_attention
.key
== UNIT_ATTENTION
) {
445 ua
= &req
->dev
->unit_attention
;
447 ua
= &req
->bus
->unit_attention
;
451 * If a REPORT LUNS command enters the enabled command state, [...]
452 * the device server shall clear any pending unit attention condition
453 * with an additional sense code of REPORTED LUNS DATA HAS CHANGED.
455 if (req
->cmd
.buf
[0] == REPORT_LUNS
&&
456 !(ua
->asc
== SENSE_CODE(REPORTED_LUNS_CHANGED
).asc
&&
457 ua
->ascq
== SENSE_CODE(REPORTED_LUNS_CHANGED
).ascq
)) {
461 *ua
= SENSE_CODE(NO_SENSE
);
464 int scsi_req_get_sense(SCSIRequest
*req
, uint8_t *buf
, int len
)
469 if (!req
->sense_len
) {
473 ret
= scsi_build_sense(req
->sense
, req
->sense_len
, buf
, len
, true);
476 * FIXME: clearing unit attention conditions upon autosense should be done
477 * only if the UA_INTLCK_CTRL field in the Control mode page is set to 00b
480 * We assume UA_INTLCK_CTRL to be 00b for HBAs that support autosense, and
481 * 10b for HBAs that do not support it (do not call scsi_req_get_sense).
482 * In the latter case, scsi_req_complete clears unit attention conditions
483 * after moving them to the device's sense buffer.
485 scsi_clear_unit_attention(req
);
489 int scsi_device_get_sense(SCSIDevice
*dev
, uint8_t *buf
, int len
, bool fixed
)
491 return scsi_build_sense(dev
->sense
, dev
->sense_len
, buf
, len
, fixed
);
494 void scsi_req_build_sense(SCSIRequest
*req
, SCSISense sense
)
496 trace_scsi_req_build_sense(req
->dev
->id
, req
->lun
, req
->tag
,
497 sense
.key
, sense
.asc
, sense
.ascq
);
498 memset(req
->sense
, 0, 18);
499 req
->sense
[0] = 0xf0;
500 req
->sense
[2] = sense
.key
;
501 req
->sense
[12] = sense
.asc
;
502 req
->sense
[13] = sense
.ascq
;
506 int32_t scsi_req_enqueue(SCSIRequest
*req
)
510 assert(!req
->enqueued
);
512 req
->enqueued
= true;
513 QTAILQ_INSERT_TAIL(&req
->dev
->requests
, req
, next
);
516 rc
= req
->ops
->send_command(req
, req
->cmd
.buf
);
521 static void scsi_req_dequeue(SCSIRequest
*req
)
523 trace_scsi_req_dequeue(req
->dev
->id
, req
->lun
, req
->tag
);
525 QTAILQ_REMOVE(&req
->dev
->requests
, req
, next
);
526 req
->enqueued
= false;
531 static int scsi_req_length(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
533 switch (buf
[0] >> 5) {
537 /* length 0 means 256 blocks */
538 if (cmd
->xfer
== 0) {
544 cmd
->xfer
= buf
[8] | (buf
[7] << 8);
548 cmd
->xfer
= buf
[13] | (buf
[12] << 8) | (buf
[11] << 16) | (buf
[10] << 24);
552 cmd
->xfer
= buf
[9] | (buf
[8] << 8) | (buf
[7] << 16) | (buf
[6] << 24);
560 case TEST_UNIT_READY
:
564 case WRITE_FILEMARKS
:
569 case ALLOW_MEDIUM_REMOVAL
:
572 case SYNCHRONIZE_CACHE
:
573 case LOCK_UNLOCK_CACHE
:
587 case READ_CAPACITY_10
:
590 case READ_BLOCK_LIMITS
:
596 case SEND_VOLUME_TAG
:
603 case WRITE_VERIFY_10
:
606 case WRITE_VERIFY_12
:
608 case WRITE_VERIFY_16
:
609 cmd
->xfer
*= dev
->blocksize
;
614 case RECOVER_BUFFERED_DATA
:
617 cmd
->xfer
*= dev
->blocksize
;
620 cmd
->xfer
= buf
[4] | (buf
[3] << 8);
622 case MAINTENANCE_OUT
:
624 if (dev
->type
== TYPE_ROM
) {
625 /* GPCMD_REPORT_KEY and GPCMD_SEND_KEY from multi media commands */
626 cmd
->xfer
= buf
[9] | (buf
[8] << 8);
633 static int scsi_req_stream_length(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
636 /* stream commands */
639 case RECOVER_BUFFERED_DATA
:
642 cmd
->xfer
= buf
[4] | (buf
[3] << 8) | (buf
[2] << 16);
643 if (buf
[1] & 0x01) { /* fixed */
644 cmd
->xfer
*= dev
->blocksize
;
652 /* generic commands */
654 return scsi_req_length(cmd
, dev
, buf
);
659 static void scsi_cmd_xfer_mode(SCSICommand
*cmd
)
661 switch (cmd
->buf
[0]) {
664 case WRITE_VERIFY_10
:
666 case WRITE_VERIFY_12
:
668 case WRITE_VERIFY_16
:
672 case CHANGE_DEFINITION
:
676 case SEND_DIAGNOSTIC
:
679 case REASSIGN_BLOCKS
:
687 case SEARCH_EQUAL_12
:
690 case SEND_VOLUME_TAG
:
691 case PERSISTENT_RESERVE_OUT
:
692 case MAINTENANCE_OUT
:
693 cmd
->mode
= SCSI_XFER_TO_DEV
;
697 cmd
->mode
= SCSI_XFER_FROM_DEV
;
699 cmd
->mode
= SCSI_XFER_NONE
;
705 static uint64_t scsi_cmd_lba(SCSICommand
*cmd
)
707 uint8_t *buf
= cmd
->buf
;
710 switch (buf
[0] >> 5) {
712 lba
= (uint64_t) buf
[3] | ((uint64_t) buf
[2] << 8) |
713 (((uint64_t) buf
[1] & 0x1f) << 16);
717 lba
= (uint64_t) buf
[5] | ((uint64_t) buf
[4] << 8) |
718 ((uint64_t) buf
[3] << 16) | ((uint64_t) buf
[2] << 24);
721 lba
= (uint64_t) buf
[9] | ((uint64_t) buf
[8] << 8) |
722 ((uint64_t) buf
[7] << 16) | ((uint64_t) buf
[6] << 24) |
723 ((uint64_t) buf
[5] << 32) | ((uint64_t) buf
[4] << 40) |
724 ((uint64_t) buf
[3] << 48) | ((uint64_t) buf
[2] << 56);
727 lba
= (uint64_t) buf
[5] | ((uint64_t) buf
[4] << 8) |
728 ((uint64_t) buf
[3] << 16) | ((uint64_t) buf
[2] << 24);
737 int scsi_req_parse(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
741 if (dev
->type
== TYPE_TAPE
) {
742 rc
= scsi_req_stream_length(cmd
, dev
, buf
);
744 rc
= scsi_req_length(cmd
, dev
, buf
);
749 memcpy(cmd
->buf
, buf
, cmd
->len
);
750 scsi_cmd_xfer_mode(cmd
);
751 cmd
->lba
= scsi_cmd_lba(cmd
);
756 * Predefined sense codes
759 /* No sense data available */
760 const struct SCSISense sense_code_NO_SENSE
= {
761 .key
= NO_SENSE
, .asc
= 0x00 , .ascq
= 0x00
764 /* LUN not ready, Manual intervention required */
765 const struct SCSISense sense_code_LUN_NOT_READY
= {
766 .key
= NOT_READY
, .asc
= 0x04, .ascq
= 0x03
769 /* LUN not ready, Medium not present */
770 const struct SCSISense sense_code_NO_MEDIUM
= {
771 .key
= NOT_READY
, .asc
= 0x3a, .ascq
= 0x00
774 /* Hardware error, internal target failure */
775 const struct SCSISense sense_code_TARGET_FAILURE
= {
776 .key
= HARDWARE_ERROR
, .asc
= 0x44, .ascq
= 0x00
779 /* Illegal request, invalid command operation code */
780 const struct SCSISense sense_code_INVALID_OPCODE
= {
781 .key
= ILLEGAL_REQUEST
, .asc
= 0x20, .ascq
= 0x00
784 /* Illegal request, LBA out of range */
785 const struct SCSISense sense_code_LBA_OUT_OF_RANGE
= {
786 .key
= ILLEGAL_REQUEST
, .asc
= 0x21, .ascq
= 0x00
789 /* Illegal request, Invalid field in CDB */
790 const struct SCSISense sense_code_INVALID_FIELD
= {
791 .key
= ILLEGAL_REQUEST
, .asc
= 0x24, .ascq
= 0x00
794 /* Illegal request, LUN not supported */
795 const struct SCSISense sense_code_LUN_NOT_SUPPORTED
= {
796 .key
= ILLEGAL_REQUEST
, .asc
= 0x25, .ascq
= 0x00
799 /* Illegal request, Saving parameters not supported */
800 const struct SCSISense sense_code_SAVING_PARAMS_NOT_SUPPORTED
= {
801 .key
= ILLEGAL_REQUEST
, .asc
= 0x39, .ascq
= 0x00
804 /* Illegal request, Incompatible medium installed */
805 const struct SCSISense sense_code_INCOMPATIBLE_MEDIUM
= {
806 .key
= ILLEGAL_REQUEST
, .asc
= 0x30, .ascq
= 0x00
809 /* Command aborted, I/O process terminated */
810 const struct SCSISense sense_code_IO_ERROR
= {
811 .key
= ABORTED_COMMAND
, .asc
= 0x00, .ascq
= 0x06
814 /* Command aborted, I_T Nexus loss occurred */
815 const struct SCSISense sense_code_I_T_NEXUS_LOSS
= {
816 .key
= ABORTED_COMMAND
, .asc
= 0x29, .ascq
= 0x07
819 /* Command aborted, Logical Unit failure */
820 const struct SCSISense sense_code_LUN_FAILURE
= {
821 .key
= ABORTED_COMMAND
, .asc
= 0x3e, .ascq
= 0x01
824 /* Unit attention, Power on, reset or bus device reset occurred */
825 const struct SCSISense sense_code_RESET
= {
826 .key
= UNIT_ATTENTION
, .asc
= 0x29, .ascq
= 0x00
829 /* Unit attention, Medium may have changed */
830 const struct SCSISense sense_code_MEDIUM_CHANGED
= {
831 .key
= UNIT_ATTENTION
, .asc
= 0x28, .ascq
= 0x00
834 /* Unit attention, Reported LUNs data has changed */
835 const struct SCSISense sense_code_REPORTED_LUNS_CHANGED
= {
836 .key
= UNIT_ATTENTION
, .asc
= 0x3f, .ascq
= 0x0e
839 /* Unit attention, Device internal reset */
840 const struct SCSISense sense_code_DEVICE_INTERNAL_RESET
= {
841 .key
= UNIT_ATTENTION
, .asc
= 0x29, .ascq
= 0x04
847 * Convert between fixed and descriptor sense buffers
849 int scsi_build_sense(uint8_t *in_buf
, int in_len
,
850 uint8_t *buf
, int len
, bool fixed
)
854 if (!fixed
&& len
< 8) {
859 sense
.key
= NO_SENSE
;
863 fixed_in
= (in_buf
[0] & 2) == 0;
865 if (fixed
== fixed_in
) {
866 memcpy(buf
, in_buf
, MIN(len
, in_len
));
867 return MIN(len
, in_len
);
871 sense
.key
= in_buf
[2];
872 sense
.asc
= in_buf
[12];
873 sense
.ascq
= in_buf
[13];
875 sense
.key
= in_buf
[1];
876 sense
.asc
= in_buf
[2];
877 sense
.ascq
= in_buf
[3];
883 /* Return fixed format sense buffer */
888 buf
[13] = sense
.ascq
;
891 /* Return descriptor format sense buffer */
900 static const char *scsi_command_name(uint8_t cmd
)
902 static const char *names
[] = {
903 [ TEST_UNIT_READY
] = "TEST_UNIT_READY",
904 [ REWIND
] = "REWIND",
905 [ REQUEST_SENSE
] = "REQUEST_SENSE",
906 [ FORMAT_UNIT
] = "FORMAT_UNIT",
907 [ READ_BLOCK_LIMITS
] = "READ_BLOCK_LIMITS",
908 [ REASSIGN_BLOCKS
] = "REASSIGN_BLOCKS",
909 [ READ_6
] = "READ_6",
910 [ WRITE_6
] = "WRITE_6",
911 [ SEEK_6
] = "SEEK_6",
912 [ READ_REVERSE
] = "READ_REVERSE",
913 [ WRITE_FILEMARKS
] = "WRITE_FILEMARKS",
915 [ INQUIRY
] = "INQUIRY",
916 [ RECOVER_BUFFERED_DATA
] = "RECOVER_BUFFERED_DATA",
917 [ MAINTENANCE_IN
] = "MAINTENANCE_IN",
918 [ MAINTENANCE_OUT
] = "MAINTENANCE_OUT",
919 [ MODE_SELECT
] = "MODE_SELECT",
920 [ RESERVE
] = "RESERVE",
921 [ RELEASE
] = "RELEASE",
924 [ MODE_SENSE
] = "MODE_SENSE",
925 [ START_STOP
] = "START_STOP",
926 [ RECEIVE_DIAGNOSTIC
] = "RECEIVE_DIAGNOSTIC",
927 [ SEND_DIAGNOSTIC
] = "SEND_DIAGNOSTIC",
928 [ ALLOW_MEDIUM_REMOVAL
] = "ALLOW_MEDIUM_REMOVAL",
929 [ READ_CAPACITY_10
] = "READ_CAPACITY_10",
930 [ READ_10
] = "READ_10",
931 [ WRITE_10
] = "WRITE_10",
932 [ SEEK_10
] = "SEEK_10",
933 [ WRITE_VERIFY_10
] = "WRITE_VERIFY_10",
934 [ VERIFY_10
] = "VERIFY_10",
935 [ SEARCH_HIGH
] = "SEARCH_HIGH",
936 [ SEARCH_EQUAL
] = "SEARCH_EQUAL",
937 [ SEARCH_LOW
] = "SEARCH_LOW",
938 [ SET_LIMITS
] = "SET_LIMITS",
939 [ PRE_FETCH
] = "PRE_FETCH",
940 /* READ_POSITION and PRE_FETCH use the same operation code */
941 [ SYNCHRONIZE_CACHE
] = "SYNCHRONIZE_CACHE",
942 [ LOCK_UNLOCK_CACHE
] = "LOCK_UNLOCK_CACHE",
943 [ READ_DEFECT_DATA
] = "READ_DEFECT_DATA",
944 [ MEDIUM_SCAN
] = "MEDIUM_SCAN",
945 [ COMPARE
] = "COMPARE",
946 [ COPY_VERIFY
] = "COPY_VERIFY",
947 [ WRITE_BUFFER
] = "WRITE_BUFFER",
948 [ READ_BUFFER
] = "READ_BUFFER",
949 [ UPDATE_BLOCK
] = "UPDATE_BLOCK",
950 [ READ_LONG_10
] = "READ_LONG_10",
951 [ WRITE_LONG_10
] = "WRITE_LONG_10",
952 [ CHANGE_DEFINITION
] = "CHANGE_DEFINITION",
953 [ WRITE_SAME_10
] = "WRITE_SAME_10",
955 [ READ_TOC
] = "READ_TOC",
956 [ REPORT_DENSITY_SUPPORT
] = "REPORT_DENSITY_SUPPORT",
957 [ GET_CONFIGURATION
] = "GET_CONFIGURATION",
958 [ LOG_SELECT
] = "LOG_SELECT",
959 [ LOG_SENSE
] = "LOG_SENSE",
960 [ MODE_SELECT_10
] = "MODE_SELECT_10",
961 [ RESERVE_10
] = "RESERVE_10",
962 [ RELEASE_10
] = "RELEASE_10",
963 [ MODE_SENSE_10
] = "MODE_SENSE_10",
964 [ PERSISTENT_RESERVE_IN
] = "PERSISTENT_RESERVE_IN",
965 [ PERSISTENT_RESERVE_OUT
] = "PERSISTENT_RESERVE_OUT",
966 [ WRITE_FILEMARKS_16
] = "WRITE_FILEMARKS_16",
967 [ EXTENDED_COPY
] = "EXTENDED_COPY",
968 [ ATA_PASSTHROUGH
] = "ATA_PASSTHROUGH",
969 [ ACCESS_CONTROL_IN
] = "ACCESS_CONTROL_IN",
970 [ ACCESS_CONTROL_OUT
] = "ACCESS_CONTROL_OUT",
971 [ READ_16
] = "READ_16",
972 [ COMPARE_AND_WRITE
] = "COMPARE_AND_WRITE",
973 [ WRITE_16
] = "WRITE_16",
974 [ WRITE_VERIFY_16
] = "WRITE_VERIFY_16",
975 [ VERIFY_16
] = "VERIFY_16",
976 [ SYNCHRONIZE_CACHE_16
] = "SYNCHRONIZE_CACHE_16",
977 [ LOCATE_16
] = "LOCATE_16",
978 [ WRITE_SAME_16
] = "WRITE_SAME_16",
979 [ ERASE_16
] = "ERASE_16",
980 [ SERVICE_ACTION_IN
] = "SERVICE_ACTION_IN",
981 [ WRITE_LONG_16
] = "WRITE_LONG_16",
982 [ REPORT_LUNS
] = "REPORT_LUNS",
984 [ MAINTENANCE_IN
] = "MAINTENANCE_IN",
985 [ MAINTENANCE_OUT
] = "MAINTENANCE_OUT",
986 [ MOVE_MEDIUM
] = "MOVE_MEDIUM",
987 [ LOAD_UNLOAD
] = "LOAD_UNLOAD",
988 [ READ_12
] = "READ_12",
989 [ WRITE_12
] = "WRITE_12",
990 [ WRITE_VERIFY_12
] = "WRITE_VERIFY_12",
991 [ VERIFY_12
] = "VERIFY_12",
992 [ SEARCH_HIGH_12
] = "SEARCH_HIGH_12",
993 [ SEARCH_EQUAL_12
] = "SEARCH_EQUAL_12",
994 [ SEARCH_LOW_12
] = "SEARCH_LOW_12",
995 [ READ_ELEMENT_STATUS
] = "READ_ELEMENT_STATUS",
996 [ SEND_VOLUME_TAG
] = "SEND_VOLUME_TAG",
997 [ READ_DEFECT_DATA_12
] = "READ_DEFECT_DATA_12",
998 [ SET_CD_SPEED
] = "SET_CD_SPEED",
1001 if (cmd
>= ARRAY_SIZE(names
) || names
[cmd
] == NULL
)
1006 SCSIRequest
*scsi_req_ref(SCSIRequest
*req
)
1012 void scsi_req_unref(SCSIRequest
*req
)
1014 if (--req
->refcount
== 0) {
1015 if (req
->ops
->free_req
) {
1016 req
->ops
->free_req(req
);
1022 /* Tell the device that we finished processing this chunk of I/O. It
1023 will start the next chunk or complete the command. */
1024 void scsi_req_continue(SCSIRequest
*req
)
1026 trace_scsi_req_continue(req
->dev
->id
, req
->lun
, req
->tag
);
1027 if (req
->cmd
.mode
== SCSI_XFER_TO_DEV
) {
1028 req
->ops
->write_data(req
);
1030 req
->ops
->read_data(req
);
1034 /* Called by the devices when data is ready for the HBA. The HBA should
1035 start a DMA operation to read or fill the device's data buffer.
1036 Once it completes, calling scsi_req_continue will restart I/O. */
1037 void scsi_req_data(SCSIRequest
*req
, int len
)
1039 trace_scsi_req_data(req
->dev
->id
, req
->lun
, req
->tag
, len
);
1040 req
->bus
->ops
->transfer_data(req
, len
);
1043 void scsi_req_print(SCSIRequest
*req
)
1048 fprintf(fp
, "[%s id=%d] %s",
1049 req
->dev
->qdev
.parent_bus
->name
,
1051 scsi_command_name(req
->cmd
.buf
[0]));
1052 for (i
= 1; i
< req
->cmd
.len
; i
++) {
1053 fprintf(fp
, " 0x%02x", req
->cmd
.buf
[i
]);
1055 switch (req
->cmd
.mode
) {
1056 case SCSI_XFER_NONE
:
1057 fprintf(fp
, " - none\n");
1059 case SCSI_XFER_FROM_DEV
:
1060 fprintf(fp
, " - from-dev len=%zd\n", req
->cmd
.xfer
);
1062 case SCSI_XFER_TO_DEV
:
1063 fprintf(fp
, " - to-dev len=%zd\n", req
->cmd
.xfer
);
1066 fprintf(fp
, " - Oops\n");
1071 void scsi_req_complete(SCSIRequest
*req
, int status
)
1073 assert(req
->status
== -1);
1074 req
->status
= status
;
1076 assert(req
->sense_len
< sizeof(req
->sense
));
1077 if (status
== GOOD
) {
1081 if (req
->sense_len
) {
1082 memcpy(req
->dev
->sense
, req
->sense
, req
->sense_len
);
1084 req
->dev
->sense_len
= req
->sense_len
;
1087 * Unit attention state is now stored in the device's sense buffer
1088 * if the HBA didn't do autosense. Clear the pending unit attention
1091 scsi_clear_unit_attention(req
);
1094 scsi_req_dequeue(req
);
1095 req
->bus
->ops
->complete(req
, req
->status
);
1096 scsi_req_unref(req
);
1099 void scsi_req_cancel(SCSIRequest
*req
)
1101 if (req
->ops
->cancel_io
) {
1102 req
->ops
->cancel_io(req
);
1105 scsi_req_dequeue(req
);
1106 if (req
->bus
->ops
->cancel
) {
1107 req
->bus
->ops
->cancel(req
);
1109 scsi_req_unref(req
);
1112 void scsi_req_abort(SCSIRequest
*req
, int status
)
1114 if (req
->ops
->cancel_io
) {
1115 req
->ops
->cancel_io(req
);
1117 scsi_req_complete(req
, status
);
1120 void scsi_device_purge_requests(SCSIDevice
*sdev
, SCSISense sense
)
1124 while (!QTAILQ_EMPTY(&sdev
->requests
)) {
1125 req
= QTAILQ_FIRST(&sdev
->requests
);
1126 scsi_req_cancel(req
);
1128 sdev
->unit_attention
= sense
;
1131 static char *scsibus_get_fw_dev_path(DeviceState
*dev
)
1133 SCSIDevice
*d
= DO_UPCAST(SCSIDevice
, qdev
, dev
);
1134 SCSIBus
*bus
= scsi_bus_from_device(d
);
1138 for (i
= 0; i
< bus
->ndev
; i
++) {
1139 if (bus
->devs
[i
] == d
) {
1144 assert(i
!= bus
->ndev
);
1146 snprintf(path
, sizeof(path
), "%s@%x", qdev_fw_name(dev
), i
);
1148 return strdup(path
);