2 #include "qemu/error-report.h"
3 #include "hw/scsi/scsi.h"
4 #include "block/scsi.h"
6 #include "sysemu/block-backend.h"
7 #include "sysemu/blockdev.h"
9 #include "sysemu/dma.h"
11 static char *scsibus_get_dev_path(DeviceState
*dev
);
12 static char *scsibus_get_fw_dev_path(DeviceState
*dev
);
13 static void scsi_req_dequeue(SCSIRequest
*req
);
14 static uint8_t *scsi_target_alloc_buf(SCSIRequest
*req
, size_t len
);
15 static void scsi_target_free_buf(SCSIRequest
*req
);
17 static Property scsi_props
[] = {
18 DEFINE_PROP_UINT32("channel", SCSIDevice
, channel
, 0),
19 DEFINE_PROP_UINT32("scsi-id", SCSIDevice
, id
, -1),
20 DEFINE_PROP_UINT32("lun", SCSIDevice
, lun
, -1),
21 DEFINE_PROP_END_OF_LIST(),
24 static void scsi_bus_class_init(ObjectClass
*klass
, void *data
)
26 BusClass
*k
= BUS_CLASS(klass
);
27 HotplugHandlerClass
*hc
= HOTPLUG_HANDLER_CLASS(klass
);
29 k
->get_dev_path
= scsibus_get_dev_path
;
30 k
->get_fw_dev_path
= scsibus_get_fw_dev_path
;
31 hc
->unplug
= qdev_simple_device_unplug_cb
;
34 static const TypeInfo scsi_bus_info
= {
35 .name
= TYPE_SCSI_BUS
,
37 .instance_size
= sizeof(SCSIBus
),
38 .class_init
= scsi_bus_class_init
,
39 .interfaces
= (InterfaceInfo
[]) {
40 { TYPE_HOTPLUG_HANDLER
},
44 static int next_scsi_bus
;
46 static void scsi_device_realize(SCSIDevice
*s
, Error
**errp
)
48 SCSIDeviceClass
*sc
= SCSI_DEVICE_GET_CLASS(s
);
54 int scsi_bus_parse_cdb(SCSIDevice
*dev
, SCSICommand
*cmd
, uint8_t *buf
,
57 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, dev
->qdev
.parent_bus
);
60 assert(cmd
->len
== 0);
61 rc
= scsi_req_parse_cdb(dev
, cmd
, buf
);
62 if (bus
->info
->parse_cdb
) {
63 rc
= bus
->info
->parse_cdb(dev
, cmd
, buf
, hba_private
);
68 static SCSIRequest
*scsi_device_alloc_req(SCSIDevice
*s
, uint32_t tag
, uint32_t lun
,
69 uint8_t *buf
, void *hba_private
)
71 SCSIDeviceClass
*sc
= SCSI_DEVICE_GET_CLASS(s
);
73 return sc
->alloc_req(s
, tag
, lun
, buf
, hba_private
);
79 void scsi_device_unit_attention_reported(SCSIDevice
*s
)
81 SCSIDeviceClass
*sc
= SCSI_DEVICE_GET_CLASS(s
);
82 if (sc
->unit_attention_reported
) {
83 sc
->unit_attention_reported(s
);
87 /* Create a scsi bus, and attach devices to it. */
88 void scsi_bus_new(SCSIBus
*bus
, size_t bus_size
, DeviceState
*host
,
89 const SCSIBusInfo
*info
, const char *bus_name
)
91 qbus_create_inplace(bus
, bus_size
, TYPE_SCSI_BUS
, host
, bus_name
);
92 bus
->busnr
= next_scsi_bus
++;
94 qbus_set_bus_hotplug_handler(BUS(bus
), &error_abort
);
97 static void scsi_dma_restart_bh(void *opaque
)
99 SCSIDevice
*s
= opaque
;
100 SCSIRequest
*req
, *next
;
102 qemu_bh_delete(s
->bh
);
105 QTAILQ_FOREACH_SAFE(req
, &s
->requests
, next
, next
) {
109 switch (req
->cmd
.mode
) {
110 case SCSI_XFER_FROM_DEV
:
111 case SCSI_XFER_TO_DEV
:
112 scsi_req_continue(req
);
115 scsi_req_dequeue(req
);
116 scsi_req_enqueue(req
);
124 void scsi_req_retry(SCSIRequest
*req
)
126 /* No need to save a reference, because scsi_dma_restart_bh just
127 * looks at the request list. */
131 static void scsi_dma_restart_cb(void *opaque
, int running
, RunState state
)
133 SCSIDevice
*s
= opaque
;
139 s
->bh
= qemu_bh_new(scsi_dma_restart_bh
, s
);
140 qemu_bh_schedule(s
->bh
);
144 static void scsi_qdev_realize(DeviceState
*qdev
, Error
**errp
)
146 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
147 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, dev
->qdev
.parent_bus
);
149 Error
*local_err
= NULL
;
151 if (dev
->channel
> bus
->info
->max_channel
) {
152 error_setg(errp
, "bad scsi channel id: %d", dev
->channel
);
155 if (dev
->id
!= -1 && dev
->id
> bus
->info
->max_target
) {
156 error_setg(errp
, "bad scsi device id: %d", dev
->id
);
159 if (dev
->lun
!= -1 && dev
->lun
> bus
->info
->max_lun
) {
160 error_setg(errp
, "bad scsi device lun: %d", dev
->lun
);
166 if (dev
->lun
== -1) {
170 d
= scsi_device_find(bus
, dev
->channel
, ++id
, dev
->lun
);
171 } while (d
&& d
->lun
== dev
->lun
&& id
< bus
->info
->max_target
);
172 if (d
&& d
->lun
== dev
->lun
) {
173 error_setg(errp
, "no free target");
177 } else if (dev
->lun
== -1) {
180 d
= scsi_device_find(bus
, dev
->channel
, dev
->id
, ++lun
);
181 } while (d
&& d
->lun
== lun
&& lun
< bus
->info
->max_lun
);
182 if (d
&& d
->lun
== lun
) {
183 error_setg(errp
, "no free lun");
188 d
= scsi_device_find(bus
, dev
->channel
, dev
->id
, dev
->lun
);
190 if (d
->lun
== dev
->lun
&& dev
!= d
) {
191 error_setg(errp
, "lun already used by '%s'", d
->qdev
.id
);
196 QTAILQ_INIT(&dev
->requests
);
197 scsi_device_realize(dev
, &local_err
);
199 error_propagate(errp
, local_err
);
202 dev
->vmsentry
= qemu_add_vm_change_state_handler(scsi_dma_restart_cb
,
206 static void scsi_qdev_unrealize(DeviceState
*qdev
, Error
**errp
)
208 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
211 qemu_del_vm_change_state_handler(dev
->vmsentry
);
214 scsi_device_purge_requests(dev
, SENSE_CODE(NO_SENSE
));
215 blockdev_mark_auto_del(dev
->conf
.blk
);
218 /* handle legacy '-drive if=scsi,...' cmd line args */
219 SCSIDevice
*scsi_bus_legacy_add_drive(SCSIBus
*bus
, BlockBackend
*blk
,
220 int unit
, bool removable
, int bootindex
,
221 const char *serial
, Error
**errp
)
227 driver
= blk_is_sg(blk
) ? "scsi-generic" : "scsi-disk";
228 dev
= qdev_create(&bus
->qbus
, driver
);
229 qdev_prop_set_uint32(dev
, "scsi-id", unit
);
230 if (bootindex
>= 0) {
231 object_property_set_int(OBJECT(dev
), bootindex
, "bootindex",
234 if (object_property_find(OBJECT(dev
), "removable", NULL
)) {
235 qdev_prop_set_bit(dev
, "removable", removable
);
237 if (serial
&& object_property_find(OBJECT(dev
), "serial", NULL
)) {
238 qdev_prop_set_string(dev
, "serial", serial
);
240 if (qdev_prop_set_drive(dev
, "drive", blk
) < 0) {
241 error_setg(errp
, "Setting drive property failed");
242 object_unparent(OBJECT(dev
));
245 object_property_set_bool(OBJECT(dev
), true, "realized", &err
);
247 error_propagate(errp
, err
);
248 object_unparent(OBJECT(dev
));
251 return SCSI_DEVICE(dev
);
254 void scsi_bus_legacy_handle_cmdline(SCSIBus
*bus
, Error
**errp
)
262 for (unit
= 0; unit
<= bus
->info
->max_target
; unit
++) {
263 dinfo
= drive_get(IF_SCSI
, bus
->busnr
, unit
);
267 qemu_opts_loc_restore(dinfo
->opts
);
268 scsi_bus_legacy_add_drive(bus
, blk_by_legacy_dinfo(dinfo
),
269 unit
, false, -1, NULL
, &err
);
271 error_report("%s", error_get_pretty(err
));
272 error_propagate(errp
, err
);
279 static int32_t scsi_invalid_field(SCSIRequest
*req
, uint8_t *buf
)
281 scsi_req_build_sense(req
, SENSE_CODE(INVALID_FIELD
));
282 scsi_req_complete(req
, CHECK_CONDITION
);
286 static const struct SCSIReqOps reqops_invalid_field
= {
287 .size
= sizeof(SCSIRequest
),
288 .send_command
= scsi_invalid_field
291 /* SCSIReqOps implementation for invalid commands. */
293 static int32_t scsi_invalid_command(SCSIRequest
*req
, uint8_t *buf
)
295 scsi_req_build_sense(req
, SENSE_CODE(INVALID_OPCODE
));
296 scsi_req_complete(req
, CHECK_CONDITION
);
300 static const struct SCSIReqOps reqops_invalid_opcode
= {
301 .size
= sizeof(SCSIRequest
),
302 .send_command
= scsi_invalid_command
305 /* SCSIReqOps implementation for unit attention conditions. */
307 static int32_t scsi_unit_attention(SCSIRequest
*req
, uint8_t *buf
)
309 if (req
->dev
->unit_attention
.key
== UNIT_ATTENTION
) {
310 scsi_req_build_sense(req
, req
->dev
->unit_attention
);
311 } else if (req
->bus
->unit_attention
.key
== UNIT_ATTENTION
) {
312 scsi_req_build_sense(req
, req
->bus
->unit_attention
);
314 scsi_req_complete(req
, CHECK_CONDITION
);
318 static const struct SCSIReqOps reqops_unit_attention
= {
319 .size
= sizeof(SCSIRequest
),
320 .send_command
= scsi_unit_attention
323 /* SCSIReqOps implementation for REPORT LUNS and for commands sent to
326 typedef struct SCSITargetReq SCSITargetReq
;
328 struct SCSITargetReq
{
335 static void store_lun(uint8_t *outbuf
, int lun
)
341 outbuf
[1] = (lun
& 255);
342 outbuf
[0] = (lun
>> 8) | 0x40;
345 static bool scsi_target_emulate_report_luns(SCSITargetReq
*r
)
352 if (r
->req
.cmd
.xfer
< 16) {
355 if (r
->req
.cmd
.buf
[2] > 2) {
358 channel
= r
->req
.dev
->channel
;
362 QTAILQ_FOREACH(kid
, &r
->req
.bus
->qbus
.children
, sibling
) {
363 DeviceState
*qdev
= kid
->child
;
364 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
366 if (dev
->channel
== channel
&& dev
->id
== id
) {
377 scsi_target_alloc_buf(&r
->req
, n
+ 8);
379 len
= MIN(n
+ 8, r
->req
.cmd
.xfer
& ~7);
380 memset(r
->buf
, 0, len
);
381 stl_be_p(&r
->buf
[0], n
);
382 i
= found_lun0
? 8 : 16;
383 QTAILQ_FOREACH(kid
, &r
->req
.bus
->qbus
.children
, sibling
) {
384 DeviceState
*qdev
= kid
->child
;
385 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
387 if (dev
->channel
== channel
&& dev
->id
== id
) {
388 store_lun(&r
->buf
[i
], dev
->lun
);
397 static bool scsi_target_emulate_inquiry(SCSITargetReq
*r
)
399 assert(r
->req
.dev
->lun
!= r
->req
.lun
);
401 scsi_target_alloc_buf(&r
->req
, SCSI_INQUIRY_LEN
);
403 if (r
->req
.cmd
.buf
[1] & 0x2) {
404 /* Command support data - optional, not implemented */
408 if (r
->req
.cmd
.buf
[1] & 0x1) {
409 /* Vital product data */
410 uint8_t page_code
= r
->req
.cmd
.buf
[2];
411 r
->buf
[r
->len
++] = page_code
; /* this page */
412 r
->buf
[r
->len
++] = 0x00;
415 case 0x00: /* Supported page codes, mandatory */
419 r
->buf
[r
->len
++] = 0x00; /* list of supported pages (this page) */
420 r
->buf
[pages
] = r
->len
- pages
- 1; /* number of pages */
427 assert(r
->len
< r
->buf_len
);
428 r
->len
= MIN(r
->req
.cmd
.xfer
, r
->len
);
432 /* Standard INQUIRY data */
433 if (r
->req
.cmd
.buf
[2] != 0) {
438 r
->len
= MIN(r
->req
.cmd
.xfer
, SCSI_INQUIRY_LEN
);
439 memset(r
->buf
, 0, r
->len
);
440 if (r
->req
.lun
!= 0) {
441 r
->buf
[0] = TYPE_NO_LUN
;
443 r
->buf
[0] = TYPE_NOT_PRESENT
| TYPE_INACTIVE
;
444 r
->buf
[2] = 5; /* Version */
445 r
->buf
[3] = 2 | 0x10; /* HiSup, response data format */
446 r
->buf
[4] = r
->len
- 5; /* Additional Length = (Len - 1) - 4 */
447 r
->buf
[7] = 0x10 | (r
->req
.bus
->info
->tcq
? 0x02 : 0); /* Sync, TCQ. */
448 memcpy(&r
->buf
[8], "QEMU ", 8);
449 memcpy(&r
->buf
[16], "QEMU TARGET ", 16);
450 pstrcpy((char *) &r
->buf
[32], 4, qemu_get_version());
455 static int32_t scsi_target_send_command(SCSIRequest
*req
, uint8_t *buf
)
457 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
461 if (!scsi_target_emulate_report_luns(r
)) {
462 goto illegal_request
;
466 if (!scsi_target_emulate_inquiry(r
)) {
467 goto illegal_request
;
471 scsi_target_alloc_buf(&r
->req
, SCSI_SENSE_LEN
);
472 r
->len
= scsi_device_get_sense(r
->req
.dev
, r
->buf
,
473 MIN(req
->cmd
.xfer
, r
->buf_len
),
474 (req
->cmd
.buf
[1] & 1) == 0);
475 if (r
->req
.dev
->sense_is_ua
) {
476 scsi_device_unit_attention_reported(req
->dev
);
477 r
->req
.dev
->sense_len
= 0;
478 r
->req
.dev
->sense_is_ua
= false;
481 case TEST_UNIT_READY
:
484 scsi_req_build_sense(req
, SENSE_CODE(LUN_NOT_SUPPORTED
));
485 scsi_req_complete(req
, CHECK_CONDITION
);
488 scsi_req_build_sense(req
, SENSE_CODE(INVALID_FIELD
));
489 scsi_req_complete(req
, CHECK_CONDITION
);
494 scsi_req_complete(req
, GOOD
);
499 static void scsi_target_read_data(SCSIRequest
*req
)
501 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
507 scsi_req_data(&r
->req
, n
);
509 scsi_req_complete(&r
->req
, GOOD
);
513 static uint8_t *scsi_target_get_buf(SCSIRequest
*req
)
515 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
520 static uint8_t *scsi_target_alloc_buf(SCSIRequest
*req
, size_t len
)
522 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
524 r
->buf
= g_malloc(len
);
530 static void scsi_target_free_buf(SCSIRequest
*req
)
532 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
537 static const struct SCSIReqOps reqops_target_command
= {
538 .size
= sizeof(SCSITargetReq
),
539 .send_command
= scsi_target_send_command
,
540 .read_data
= scsi_target_read_data
,
541 .get_buf
= scsi_target_get_buf
,
542 .free_req
= scsi_target_free_buf
,
546 SCSIRequest
*scsi_req_alloc(const SCSIReqOps
*reqops
, SCSIDevice
*d
,
547 uint32_t tag
, uint32_t lun
, void *hba_private
)
550 SCSIBus
*bus
= scsi_bus_from_device(d
);
551 BusState
*qbus
= BUS(bus
);
552 const int memset_off
= offsetof(SCSIRequest
, sense
)
553 + sizeof(req
->sense
);
555 req
= g_slice_alloc(reqops
->size
);
556 memset((uint8_t *)req
+ memset_off
, 0, reqops
->size
- memset_off
);
562 req
->hba_private
= hba_private
;
565 object_ref(OBJECT(d
));
566 object_ref(OBJECT(qbus
->parent
));
567 notifier_list_init(&req
->cancel_notifiers
);
568 trace_scsi_req_alloc(req
->dev
->id
, req
->lun
, req
->tag
);
572 SCSIRequest
*scsi_req_new(SCSIDevice
*d
, uint32_t tag
, uint32_t lun
,
573 uint8_t *buf
, void *hba_private
)
575 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, d
->qdev
.parent_bus
);
576 const SCSIReqOps
*ops
;
577 SCSIDeviceClass
*sc
= SCSI_DEVICE_GET_CLASS(d
);
579 SCSICommand cmd
= { .len
= 0 };
582 if ((d
->unit_attention
.key
== UNIT_ATTENTION
||
583 bus
->unit_attention
.key
== UNIT_ATTENTION
) &&
584 (buf
[0] != INQUIRY
&&
585 buf
[0] != REPORT_LUNS
&&
586 buf
[0] != GET_CONFIGURATION
&&
587 buf
[0] != GET_EVENT_STATUS_NOTIFICATION
&&
590 * If we already have a pending unit attention condition,
591 * report this one before triggering another one.
593 !(buf
[0] == REQUEST_SENSE
&& d
->sense_is_ua
))) {
594 ops
= &reqops_unit_attention
;
595 } else if (lun
!= d
->lun
||
596 buf
[0] == REPORT_LUNS
||
597 (buf
[0] == REQUEST_SENSE
&& d
->sense_len
)) {
598 ops
= &reqops_target_command
;
603 if (ops
!= NULL
|| !sc
->parse_cdb
) {
604 ret
= scsi_req_parse_cdb(d
, &cmd
, buf
);
606 ret
= sc
->parse_cdb(d
, &cmd
, buf
, hba_private
);
610 trace_scsi_req_parse_bad(d
->id
, lun
, tag
, buf
[0]);
611 req
= scsi_req_alloc(&reqops_invalid_opcode
, d
, tag
, lun
, hba_private
);
613 assert(cmd
.len
!= 0);
614 trace_scsi_req_parsed(d
->id
, lun
, tag
, buf
[0],
617 trace_scsi_req_parsed_lba(d
->id
, lun
, tag
, buf
[0],
621 if (cmd
.xfer
> INT32_MAX
) {
622 req
= scsi_req_alloc(&reqops_invalid_field
, d
, tag
, lun
, hba_private
);
624 req
= scsi_req_alloc(ops
, d
, tag
, lun
, hba_private
);
626 req
= scsi_device_alloc_req(d
, tag
, lun
, buf
, hba_private
);
631 req
->resid
= req
->cmd
.xfer
;
635 trace_scsi_inquiry(d
->id
, lun
, tag
, cmd
.buf
[1], cmd
.buf
[2]);
637 case TEST_UNIT_READY
:
638 trace_scsi_test_unit_ready(d
->id
, lun
, tag
);
641 trace_scsi_report_luns(d
->id
, lun
, tag
);
644 trace_scsi_request_sense(d
->id
, lun
, tag
);
653 uint8_t *scsi_req_get_buf(SCSIRequest
*req
)
655 return req
->ops
->get_buf(req
);
658 static void scsi_clear_unit_attention(SCSIRequest
*req
)
661 if (req
->dev
->unit_attention
.key
!= UNIT_ATTENTION
&&
662 req
->bus
->unit_attention
.key
!= UNIT_ATTENTION
) {
667 * If an INQUIRY command enters the enabled command state,
668 * the device server shall [not] clear any unit attention condition;
669 * See also MMC-6, paragraphs 6.5 and 6.6.2.
671 if (req
->cmd
.buf
[0] == INQUIRY
||
672 req
->cmd
.buf
[0] == GET_CONFIGURATION
||
673 req
->cmd
.buf
[0] == GET_EVENT_STATUS_NOTIFICATION
) {
677 if (req
->dev
->unit_attention
.key
== UNIT_ATTENTION
) {
678 ua
= &req
->dev
->unit_attention
;
680 ua
= &req
->bus
->unit_attention
;
684 * If a REPORT LUNS command enters the enabled command state, [...]
685 * the device server shall clear any pending unit attention condition
686 * with an additional sense code of REPORTED LUNS DATA HAS CHANGED.
688 if (req
->cmd
.buf
[0] == REPORT_LUNS
&&
689 !(ua
->asc
== SENSE_CODE(REPORTED_LUNS_CHANGED
).asc
&&
690 ua
->ascq
== SENSE_CODE(REPORTED_LUNS_CHANGED
).ascq
)) {
694 *ua
= SENSE_CODE(NO_SENSE
);
697 int scsi_req_get_sense(SCSIRequest
*req
, uint8_t *buf
, int len
)
702 if (!req
->sense_len
) {
706 ret
= scsi_build_sense(req
->sense
, req
->sense_len
, buf
, len
, true);
709 * FIXME: clearing unit attention conditions upon autosense should be done
710 * only if the UA_INTLCK_CTRL field in the Control mode page is set to 00b
713 * We assume UA_INTLCK_CTRL to be 00b for HBAs that support autosense, and
714 * 10b for HBAs that do not support it (do not call scsi_req_get_sense).
715 * Here we handle unit attention clearing for UA_INTLCK_CTRL == 00b.
717 if (req
->dev
->sense_is_ua
) {
718 scsi_device_unit_attention_reported(req
->dev
);
719 req
->dev
->sense_len
= 0;
720 req
->dev
->sense_is_ua
= false;
725 int scsi_device_get_sense(SCSIDevice
*dev
, uint8_t *buf
, int len
, bool fixed
)
727 return scsi_build_sense(dev
->sense
, dev
->sense_len
, buf
, len
, fixed
);
730 void scsi_req_build_sense(SCSIRequest
*req
, SCSISense sense
)
732 trace_scsi_req_build_sense(req
->dev
->id
, req
->lun
, req
->tag
,
733 sense
.key
, sense
.asc
, sense
.ascq
);
734 memset(req
->sense
, 0, 18);
735 req
->sense
[0] = 0x70;
736 req
->sense
[2] = sense
.key
;
738 req
->sense
[12] = sense
.asc
;
739 req
->sense
[13] = sense
.ascq
;
743 static void scsi_req_enqueue_internal(SCSIRequest
*req
)
745 assert(!req
->enqueued
);
747 if (req
->bus
->info
->get_sg_list
) {
748 req
->sg
= req
->bus
->info
->get_sg_list(req
);
752 req
->enqueued
= true;
753 QTAILQ_INSERT_TAIL(&req
->dev
->requests
, req
, next
);
756 int32_t scsi_req_enqueue(SCSIRequest
*req
)
761 scsi_req_enqueue_internal(req
);
763 rc
= req
->ops
->send_command(req
, req
->cmd
.buf
);
768 static void scsi_req_dequeue(SCSIRequest
*req
)
770 trace_scsi_req_dequeue(req
->dev
->id
, req
->lun
, req
->tag
);
773 QTAILQ_REMOVE(&req
->dev
->requests
, req
, next
);
774 req
->enqueued
= false;
779 static int scsi_get_performance_length(int num_desc
, int type
, int data_type
)
781 /* MMC-6, paragraph 6.7. */
784 if ((data_type
& 3) == 0) {
785 /* Each descriptor is as in Table 295 - Nominal performance. */
786 return 16 * num_desc
+ 8;
788 /* Each descriptor is as in Table 296 - Exceptions. */
789 return 6 * num_desc
+ 8;
794 return 8 * num_desc
+ 8;
796 return 2048 * num_desc
+ 8;
798 return 16 * num_desc
+ 8;
804 static int ata_passthrough_xfer_unit(SCSIDevice
*dev
, uint8_t *buf
)
806 int byte_block
= (buf
[2] >> 2) & 0x1;
807 int type
= (buf
[2] >> 4) & 0x1;
812 xfer_unit
= dev
->blocksize
;
823 static int ata_passthrough_12_xfer(SCSIDevice
*dev
, uint8_t *buf
)
825 int length
= buf
[2] & 0x3;
827 int unit
= ata_passthrough_xfer_unit(dev
, buf
);
831 case 3: /* USB-specific. */
846 static int ata_passthrough_16_xfer(SCSIDevice
*dev
, uint8_t *buf
)
848 int extend
= buf
[1] & 0x1;
849 int length
= buf
[2] & 0x3;
851 int unit
= ata_passthrough_xfer_unit(dev
, buf
);
855 case 3: /* USB-specific. */
861 xfer
|= (extend
? buf
[3] << 8 : 0);
865 xfer
|= (extend
? buf
[5] << 8 : 0);
872 uint32_t scsi_data_cdb_xfer(uint8_t *buf
)
874 if ((buf
[0] >> 5) == 0 && buf
[4] == 0) {
877 return scsi_cdb_xfer(buf
);
881 uint32_t scsi_cdb_xfer(uint8_t *buf
)
883 switch (buf
[0] >> 5) {
889 return lduw_be_p(&buf
[7]);
892 return ldl_be_p(&buf
[10]) & 0xffffffffULL
;
895 return ldl_be_p(&buf
[6]) & 0xffffffffULL
;
902 static int scsi_req_xfer(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
904 cmd
->xfer
= scsi_cdb_xfer(buf
);
906 case TEST_UNIT_READY
:
910 case WRITE_FILEMARKS
:
911 case WRITE_FILEMARKS_16
:
916 case ALLOW_MEDIUM_REMOVAL
:
918 case SYNCHRONIZE_CACHE
:
919 case SYNCHRONIZE_CACHE_16
:
921 case LOCK_UNLOCK_CACHE
:
930 case ALLOW_OVERWRITE
:
936 if ((buf
[1] & 2) == 0) {
938 } else if ((buf
[1] & 4) != 0) {
941 cmd
->xfer
*= dev
->blocksize
;
947 cmd
->xfer
= dev
->blocksize
;
949 case READ_CAPACITY_10
:
952 case READ_BLOCK_LIMITS
:
955 case SEND_VOLUME_TAG
:
956 /* GPCMD_SET_STREAMING from multimedia commands. */
957 if (dev
->type
== TYPE_ROM
) {
958 cmd
->xfer
= buf
[10] | (buf
[9] << 8);
960 cmd
->xfer
= buf
[9] | (buf
[8] << 8);
964 /* length 0 means 256 blocks */
965 if (cmd
->xfer
== 0) {
970 case WRITE_VERIFY_10
:
972 case WRITE_VERIFY_12
:
974 case WRITE_VERIFY_16
:
975 cmd
->xfer
*= dev
->blocksize
;
979 /* length 0 means 256 blocks */
980 if (cmd
->xfer
== 0) {
985 case RECOVER_BUFFERED_DATA
:
988 cmd
->xfer
*= dev
->blocksize
;
991 /* MMC mandates the parameter list to be 12-bytes long. Parameters
992 * for block devices are restricted to the header right now. */
993 if (dev
->type
== TYPE_ROM
&& (buf
[1] & 16)) {
996 cmd
->xfer
= (buf
[1] & 16) == 0 ? 0 : (buf
[1] & 32 ? 8 : 4);
1000 case RECEIVE_DIAGNOSTIC
:
1001 case SEND_DIAGNOSTIC
:
1002 cmd
->xfer
= buf
[4] | (buf
[3] << 8);
1007 case SEND_CUE_SHEET
:
1008 cmd
->xfer
= buf
[8] | (buf
[7] << 8) | (buf
[6] << 16);
1010 case PERSISTENT_RESERVE_OUT
:
1011 cmd
->xfer
= ldl_be_p(&buf
[5]) & 0xffffffffULL
;
1014 if (dev
->type
== TYPE_ROM
) {
1015 /* MMC command GET PERFORMANCE. */
1016 cmd
->xfer
= scsi_get_performance_length(buf
[9] | (buf
[8] << 8),
1017 buf
[10], buf
[1] & 0x1f);
1020 case MECHANISM_STATUS
:
1021 case READ_DVD_STRUCTURE
:
1022 case SEND_DVD_STRUCTURE
:
1023 case MAINTENANCE_OUT
:
1024 case MAINTENANCE_IN
:
1025 if (dev
->type
== TYPE_ROM
) {
1026 /* GPCMD_REPORT_KEY and GPCMD_SEND_KEY from multi media commands */
1027 cmd
->xfer
= buf
[9] | (buf
[8] << 8);
1030 case ATA_PASSTHROUGH_12
:
1031 if (dev
->type
== TYPE_ROM
) {
1032 /* BLANK command of MMC */
1035 cmd
->xfer
= ata_passthrough_12_xfer(dev
, buf
);
1038 case ATA_PASSTHROUGH_16
:
1039 cmd
->xfer
= ata_passthrough_16_xfer(dev
, buf
);
1045 static int scsi_req_stream_xfer(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
1048 /* stream commands */
1055 case RECOVER_BUFFERED_DATA
:
1057 cmd
->xfer
= buf
[4] | (buf
[3] << 8) | (buf
[2] << 16);
1058 if (buf
[1] & 0x01) { /* fixed */
1059 cmd
->xfer
*= dev
->blocksize
;
1063 case READ_REVERSE_16
:
1066 cmd
->xfer
= buf
[14] | (buf
[13] << 8) | (buf
[12] << 16);
1067 if (buf
[1] & 0x01) { /* fixed */
1068 cmd
->xfer
*= dev
->blocksize
;
1076 cmd
->xfer
= buf
[13] | (buf
[12] << 8);
1079 switch (buf
[1] & 0x1f) /* operation code */ {
1080 case SHORT_FORM_BLOCK_ID
:
1081 case SHORT_FORM_VENDOR_SPECIFIC
:
1088 cmd
->xfer
= buf
[8] | (buf
[7] << 8);
1096 cmd
->xfer
= buf
[4] | (buf
[3] << 8);
1098 /* generic commands */
1100 return scsi_req_xfer(cmd
, dev
, buf
);
1105 static int scsi_req_medium_changer_xfer(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
1108 /* medium changer commands */
1109 case EXCHANGE_MEDIUM
:
1110 case INITIALIZE_ELEMENT_STATUS
:
1111 case INITIALIZE_ELEMENT_STATUS_WITH_RANGE
:
1113 case POSITION_TO_ELEMENT
:
1116 case READ_ELEMENT_STATUS
:
1117 cmd
->xfer
= buf
[9] | (buf
[8] << 8) | (buf
[7] << 16);
1120 /* generic commands */
1122 return scsi_req_xfer(cmd
, dev
, buf
);
1128 static void scsi_cmd_xfer_mode(SCSICommand
*cmd
)
1131 cmd
->mode
= SCSI_XFER_NONE
;
1134 switch (cmd
->buf
[0]) {
1137 case WRITE_VERIFY_10
:
1139 case WRITE_VERIFY_12
:
1141 case WRITE_VERIFY_16
:
1148 case CHANGE_DEFINITION
:
1151 case MODE_SELECT_10
:
1152 case SEND_DIAGNOSTIC
:
1155 case REASSIGN_BLOCKS
:
1164 case SEARCH_HIGH_12
:
1165 case SEARCH_EQUAL_12
:
1168 case SEND_VOLUME_TAG
:
1169 case SEND_CUE_SHEET
:
1170 case SEND_DVD_STRUCTURE
:
1171 case PERSISTENT_RESERVE_OUT
:
1172 case MAINTENANCE_OUT
:
1173 cmd
->mode
= SCSI_XFER_TO_DEV
;
1175 case ATA_PASSTHROUGH_12
:
1176 case ATA_PASSTHROUGH_16
:
1178 cmd
->mode
= (cmd
->buf
[2] & 0x8) ?
1179 SCSI_XFER_FROM_DEV
: SCSI_XFER_TO_DEV
;
1182 cmd
->mode
= SCSI_XFER_FROM_DEV
;
1187 static uint64_t scsi_cmd_lba(SCSICommand
*cmd
)
1189 uint8_t *buf
= cmd
->buf
;
1192 switch (buf
[0] >> 5) {
1194 lba
= ldl_be_p(&buf
[0]) & 0x1fffff;
1199 lba
= ldl_be_p(&buf
[2]) & 0xffffffffULL
;
1202 lba
= ldq_be_p(&buf
[2]);
1211 int scsi_cdb_length(uint8_t *buf
) {
1214 switch (buf
[0] >> 5) {
1234 int scsi_req_parse_cdb(SCSIDevice
*dev
, SCSICommand
*cmd
, uint8_t *buf
)
1239 cmd
->len
= scsi_cdb_length(buf
);
1241 switch (dev
->type
) {
1243 rc
= scsi_req_stream_xfer(cmd
, dev
, buf
);
1245 case TYPE_MEDIUM_CHANGER
:
1246 rc
= scsi_req_medium_changer_xfer(cmd
, dev
, buf
);
1249 rc
= scsi_req_xfer(cmd
, dev
, buf
);
1256 memcpy(cmd
->buf
, buf
, cmd
->len
);
1257 scsi_cmd_xfer_mode(cmd
);
1258 cmd
->lba
= scsi_cmd_lba(cmd
);
1262 void scsi_device_report_change(SCSIDevice
*dev
, SCSISense sense
)
1264 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, dev
->qdev
.parent_bus
);
1266 scsi_device_set_ua(dev
, sense
);
1267 if (bus
->info
->change
) {
1268 bus
->info
->change(bus
, dev
, sense
);
1273 * Predefined sense codes
1276 /* No sense data available */
1277 const struct SCSISense sense_code_NO_SENSE
= {
1278 .key
= NO_SENSE
, .asc
= 0x00 , .ascq
= 0x00
1281 /* LUN not ready, Manual intervention required */
1282 const struct SCSISense sense_code_LUN_NOT_READY
= {
1283 .key
= NOT_READY
, .asc
= 0x04, .ascq
= 0x03
1286 /* LUN not ready, Medium not present */
1287 const struct SCSISense sense_code_NO_MEDIUM
= {
1288 .key
= NOT_READY
, .asc
= 0x3a, .ascq
= 0x00
1291 /* LUN not ready, medium removal prevented */
1292 const struct SCSISense sense_code_NOT_READY_REMOVAL_PREVENTED
= {
1293 .key
= NOT_READY
, .asc
= 0x53, .ascq
= 0x02
1296 /* Hardware error, internal target failure */
1297 const struct SCSISense sense_code_TARGET_FAILURE
= {
1298 .key
= HARDWARE_ERROR
, .asc
= 0x44, .ascq
= 0x00
1301 /* Illegal request, invalid command operation code */
1302 const struct SCSISense sense_code_INVALID_OPCODE
= {
1303 .key
= ILLEGAL_REQUEST
, .asc
= 0x20, .ascq
= 0x00
1306 /* Illegal request, LBA out of range */
1307 const struct SCSISense sense_code_LBA_OUT_OF_RANGE
= {
1308 .key
= ILLEGAL_REQUEST
, .asc
= 0x21, .ascq
= 0x00
1311 /* Illegal request, Invalid field in CDB */
1312 const struct SCSISense sense_code_INVALID_FIELD
= {
1313 .key
= ILLEGAL_REQUEST
, .asc
= 0x24, .ascq
= 0x00
1316 /* Illegal request, Invalid field in parameter list */
1317 const struct SCSISense sense_code_INVALID_PARAM
= {
1318 .key
= ILLEGAL_REQUEST
, .asc
= 0x26, .ascq
= 0x00
1321 /* Illegal request, Parameter list length error */
1322 const struct SCSISense sense_code_INVALID_PARAM_LEN
= {
1323 .key
= ILLEGAL_REQUEST
, .asc
= 0x1a, .ascq
= 0x00
1326 /* Illegal request, LUN not supported */
1327 const struct SCSISense sense_code_LUN_NOT_SUPPORTED
= {
1328 .key
= ILLEGAL_REQUEST
, .asc
= 0x25, .ascq
= 0x00
1331 /* Illegal request, Saving parameters not supported */
1332 const struct SCSISense sense_code_SAVING_PARAMS_NOT_SUPPORTED
= {
1333 .key
= ILLEGAL_REQUEST
, .asc
= 0x39, .ascq
= 0x00
1336 /* Illegal request, Incompatible medium installed */
1337 const struct SCSISense sense_code_INCOMPATIBLE_FORMAT
= {
1338 .key
= ILLEGAL_REQUEST
, .asc
= 0x30, .ascq
= 0x00
1341 /* Illegal request, medium removal prevented */
1342 const struct SCSISense sense_code_ILLEGAL_REQ_REMOVAL_PREVENTED
= {
1343 .key
= ILLEGAL_REQUEST
, .asc
= 0x53, .ascq
= 0x02
1346 /* Illegal request, Invalid Transfer Tag */
1347 const struct SCSISense sense_code_INVALID_TAG
= {
1348 .key
= ILLEGAL_REQUEST
, .asc
= 0x4b, .ascq
= 0x01
1351 /* Command aborted, I/O process terminated */
1352 const struct SCSISense sense_code_IO_ERROR
= {
1353 .key
= ABORTED_COMMAND
, .asc
= 0x00, .ascq
= 0x06
1356 /* Command aborted, I_T Nexus loss occurred */
1357 const struct SCSISense sense_code_I_T_NEXUS_LOSS
= {
1358 .key
= ABORTED_COMMAND
, .asc
= 0x29, .ascq
= 0x07
1361 /* Command aborted, Logical Unit failure */
1362 const struct SCSISense sense_code_LUN_FAILURE
= {
1363 .key
= ABORTED_COMMAND
, .asc
= 0x3e, .ascq
= 0x01
1366 /* Command aborted, Overlapped Commands Attempted */
1367 const struct SCSISense sense_code_OVERLAPPED_COMMANDS
= {
1368 .key
= ABORTED_COMMAND
, .asc
= 0x4e, .ascq
= 0x00
1371 /* Unit attention, Capacity data has changed */
1372 const struct SCSISense sense_code_CAPACITY_CHANGED
= {
1373 .key
= UNIT_ATTENTION
, .asc
= 0x2a, .ascq
= 0x09
1376 /* Unit attention, Power on, reset or bus device reset occurred */
1377 const struct SCSISense sense_code_RESET
= {
1378 .key
= UNIT_ATTENTION
, .asc
= 0x29, .ascq
= 0x00
1381 /* Unit attention, No medium */
1382 const struct SCSISense sense_code_UNIT_ATTENTION_NO_MEDIUM
= {
1383 .key
= UNIT_ATTENTION
, .asc
= 0x3a, .ascq
= 0x00
1386 /* Unit attention, Medium may have changed */
1387 const struct SCSISense sense_code_MEDIUM_CHANGED
= {
1388 .key
= UNIT_ATTENTION
, .asc
= 0x28, .ascq
= 0x00
1391 /* Unit attention, Reported LUNs data has changed */
1392 const struct SCSISense sense_code_REPORTED_LUNS_CHANGED
= {
1393 .key
= UNIT_ATTENTION
, .asc
= 0x3f, .ascq
= 0x0e
1396 /* Unit attention, Device internal reset */
1397 const struct SCSISense sense_code_DEVICE_INTERNAL_RESET
= {
1398 .key
= UNIT_ATTENTION
, .asc
= 0x29, .ascq
= 0x04
1401 /* Data Protection, Write Protected */
1402 const struct SCSISense sense_code_WRITE_PROTECTED
= {
1403 .key
= DATA_PROTECT
, .asc
= 0x27, .ascq
= 0x00
1406 /* Data Protection, Space Allocation Failed Write Protect */
1407 const struct SCSISense sense_code_SPACE_ALLOC_FAILED
= {
1408 .key
= DATA_PROTECT
, .asc
= 0x27, .ascq
= 0x07
1414 * Convert between fixed and descriptor sense buffers
1416 int scsi_build_sense(uint8_t *in_buf
, int in_len
,
1417 uint8_t *buf
, int len
, bool fixed
)
1421 if (!fixed
&& len
< 8) {
1426 sense
.key
= NO_SENSE
;
1430 fixed_in
= (in_buf
[0] & 2) == 0;
1432 if (fixed
== fixed_in
) {
1433 memcpy(buf
, in_buf
, MIN(len
, in_len
));
1434 return MIN(len
, in_len
);
1438 sense
.key
= in_buf
[2];
1439 sense
.asc
= in_buf
[12];
1440 sense
.ascq
= in_buf
[13];
1442 sense
.key
= in_buf
[1];
1443 sense
.asc
= in_buf
[2];
1444 sense
.ascq
= in_buf
[3];
1448 memset(buf
, 0, len
);
1450 /* Return fixed format sense buffer */
1454 buf
[12] = sense
.asc
;
1455 buf
[13] = sense
.ascq
;
1456 return MIN(len
, SCSI_SENSE_LEN
);
1458 /* Return descriptor format sense buffer */
1462 buf
[3] = sense
.ascq
;
1467 const char *scsi_command_name(uint8_t cmd
)
1469 static const char *names
[] = {
1470 [ TEST_UNIT_READY
] = "TEST_UNIT_READY",
1471 [ REWIND
] = "REWIND",
1472 [ REQUEST_SENSE
] = "REQUEST_SENSE",
1473 [ FORMAT_UNIT
] = "FORMAT_UNIT",
1474 [ READ_BLOCK_LIMITS
] = "READ_BLOCK_LIMITS",
1475 [ REASSIGN_BLOCKS
] = "REASSIGN_BLOCKS/INITIALIZE ELEMENT STATUS",
1476 /* LOAD_UNLOAD and INITIALIZE_ELEMENT_STATUS use the same operation code */
1477 [ READ_6
] = "READ_6",
1478 [ WRITE_6
] = "WRITE_6",
1479 [ SET_CAPACITY
] = "SET_CAPACITY",
1480 [ READ_REVERSE
] = "READ_REVERSE",
1481 [ WRITE_FILEMARKS
] = "WRITE_FILEMARKS",
1482 [ SPACE
] = "SPACE",
1483 [ INQUIRY
] = "INQUIRY",
1484 [ RECOVER_BUFFERED_DATA
] = "RECOVER_BUFFERED_DATA",
1485 [ MAINTENANCE_IN
] = "MAINTENANCE_IN",
1486 [ MAINTENANCE_OUT
] = "MAINTENANCE_OUT",
1487 [ MODE_SELECT
] = "MODE_SELECT",
1488 [ RESERVE
] = "RESERVE",
1489 [ RELEASE
] = "RELEASE",
1491 [ ERASE
] = "ERASE",
1492 [ MODE_SENSE
] = "MODE_SENSE",
1493 [ START_STOP
] = "START_STOP/LOAD_UNLOAD",
1494 /* LOAD_UNLOAD and START_STOP use the same operation code */
1495 [ RECEIVE_DIAGNOSTIC
] = "RECEIVE_DIAGNOSTIC",
1496 [ SEND_DIAGNOSTIC
] = "SEND_DIAGNOSTIC",
1497 [ ALLOW_MEDIUM_REMOVAL
] = "ALLOW_MEDIUM_REMOVAL",
1498 [ READ_CAPACITY_10
] = "READ_CAPACITY_10",
1499 [ READ_10
] = "READ_10",
1500 [ WRITE_10
] = "WRITE_10",
1501 [ SEEK_10
] = "SEEK_10/POSITION_TO_ELEMENT",
1502 /* SEEK_10 and POSITION_TO_ELEMENT use the same operation code */
1503 [ WRITE_VERIFY_10
] = "WRITE_VERIFY_10",
1504 [ VERIFY_10
] = "VERIFY_10",
1505 [ SEARCH_HIGH
] = "SEARCH_HIGH",
1506 [ SEARCH_EQUAL
] = "SEARCH_EQUAL",
1507 [ SEARCH_LOW
] = "SEARCH_LOW",
1508 [ SET_LIMITS
] = "SET_LIMITS",
1509 [ PRE_FETCH
] = "PRE_FETCH/READ_POSITION",
1510 /* READ_POSITION and PRE_FETCH use the same operation code */
1511 [ SYNCHRONIZE_CACHE
] = "SYNCHRONIZE_CACHE",
1512 [ LOCK_UNLOCK_CACHE
] = "LOCK_UNLOCK_CACHE",
1513 [ READ_DEFECT_DATA
] = "READ_DEFECT_DATA/INITIALIZE_ELEMENT_STATUS_WITH_RANGE",
1514 /* READ_DEFECT_DATA and INITIALIZE_ELEMENT_STATUS_WITH_RANGE use the same operation code */
1515 [ MEDIUM_SCAN
] = "MEDIUM_SCAN",
1516 [ COMPARE
] = "COMPARE",
1517 [ COPY_VERIFY
] = "COPY_VERIFY",
1518 [ WRITE_BUFFER
] = "WRITE_BUFFER",
1519 [ READ_BUFFER
] = "READ_BUFFER",
1520 [ UPDATE_BLOCK
] = "UPDATE_BLOCK",
1521 [ READ_LONG_10
] = "READ_LONG_10",
1522 [ WRITE_LONG_10
] = "WRITE_LONG_10",
1523 [ CHANGE_DEFINITION
] = "CHANGE_DEFINITION",
1524 [ WRITE_SAME_10
] = "WRITE_SAME_10",
1525 [ UNMAP
] = "UNMAP",
1526 [ READ_TOC
] = "READ_TOC",
1527 [ REPORT_DENSITY_SUPPORT
] = "REPORT_DENSITY_SUPPORT",
1528 [ SANITIZE
] = "SANITIZE",
1529 [ GET_CONFIGURATION
] = "GET_CONFIGURATION",
1530 [ LOG_SELECT
] = "LOG_SELECT",
1531 [ LOG_SENSE
] = "LOG_SENSE",
1532 [ MODE_SELECT_10
] = "MODE_SELECT_10",
1533 [ RESERVE_10
] = "RESERVE_10",
1534 [ RELEASE_10
] = "RELEASE_10",
1535 [ MODE_SENSE_10
] = "MODE_SENSE_10",
1536 [ PERSISTENT_RESERVE_IN
] = "PERSISTENT_RESERVE_IN",
1537 [ PERSISTENT_RESERVE_OUT
] = "PERSISTENT_RESERVE_OUT",
1538 [ WRITE_FILEMARKS_16
] = "WRITE_FILEMARKS_16",
1539 [ EXTENDED_COPY
] = "EXTENDED_COPY",
1540 [ ATA_PASSTHROUGH_16
] = "ATA_PASSTHROUGH_16",
1541 [ ACCESS_CONTROL_IN
] = "ACCESS_CONTROL_IN",
1542 [ ACCESS_CONTROL_OUT
] = "ACCESS_CONTROL_OUT",
1543 [ READ_16
] = "READ_16",
1544 [ COMPARE_AND_WRITE
] = "COMPARE_AND_WRITE",
1545 [ WRITE_16
] = "WRITE_16",
1546 [ WRITE_VERIFY_16
] = "WRITE_VERIFY_16",
1547 [ VERIFY_16
] = "VERIFY_16",
1548 [ PRE_FETCH_16
] = "PRE_FETCH_16",
1549 [ SYNCHRONIZE_CACHE_16
] = "SPACE_16/SYNCHRONIZE_CACHE_16",
1550 /* SPACE_16 and SYNCHRONIZE_CACHE_16 use the same operation code */
1551 [ LOCATE_16
] = "LOCATE_16",
1552 [ WRITE_SAME_16
] = "ERASE_16/WRITE_SAME_16",
1553 /* ERASE_16 and WRITE_SAME_16 use the same operation code */
1554 [ SERVICE_ACTION_IN_16
] = "SERVICE_ACTION_IN_16",
1555 [ WRITE_LONG_16
] = "WRITE_LONG_16",
1556 [ REPORT_LUNS
] = "REPORT_LUNS",
1557 [ ATA_PASSTHROUGH_12
] = "BLANK/ATA_PASSTHROUGH_12",
1558 [ MOVE_MEDIUM
] = "MOVE_MEDIUM",
1559 [ EXCHANGE_MEDIUM
] = "EXCHANGE MEDIUM",
1560 [ READ_12
] = "READ_12",
1561 [ WRITE_12
] = "WRITE_12",
1562 [ ERASE_12
] = "ERASE_12/GET_PERFORMANCE",
1563 /* ERASE_12 and GET_PERFORMANCE use the same operation code */
1564 [ SERVICE_ACTION_IN_12
] = "SERVICE_ACTION_IN_12",
1565 [ WRITE_VERIFY_12
] = "WRITE_VERIFY_12",
1566 [ VERIFY_12
] = "VERIFY_12",
1567 [ SEARCH_HIGH_12
] = "SEARCH_HIGH_12",
1568 [ SEARCH_EQUAL_12
] = "SEARCH_EQUAL_12",
1569 [ SEARCH_LOW_12
] = "SEARCH_LOW_12",
1570 [ READ_ELEMENT_STATUS
] = "READ_ELEMENT_STATUS",
1571 [ SEND_VOLUME_TAG
] = "SEND_VOLUME_TAG/SET_STREAMING",
1572 /* SEND_VOLUME_TAG and SET_STREAMING use the same operation code */
1573 [ READ_CD
] = "READ_CD",
1574 [ READ_DEFECT_DATA_12
] = "READ_DEFECT_DATA_12",
1575 [ READ_DVD_STRUCTURE
] = "READ_DVD_STRUCTURE",
1576 [ RESERVE_TRACK
] = "RESERVE_TRACK",
1577 [ SEND_CUE_SHEET
] = "SEND_CUE_SHEET",
1578 [ SEND_DVD_STRUCTURE
] = "SEND_DVD_STRUCTURE",
1579 [ SET_CD_SPEED
] = "SET_CD_SPEED",
1580 [ SET_READ_AHEAD
] = "SET_READ_AHEAD",
1581 [ ALLOW_OVERWRITE
] = "ALLOW_OVERWRITE",
1582 [ MECHANISM_STATUS
] = "MECHANISM_STATUS",
1583 [ GET_EVENT_STATUS_NOTIFICATION
] = "GET_EVENT_STATUS_NOTIFICATION",
1584 [ READ_DISC_INFORMATION
] = "READ_DISC_INFORMATION",
1587 if (cmd
>= ARRAY_SIZE(names
) || names
[cmd
] == NULL
)
1592 SCSIRequest
*scsi_req_ref(SCSIRequest
*req
)
1594 assert(req
->refcount
> 0);
1599 void scsi_req_unref(SCSIRequest
*req
)
1601 assert(req
->refcount
> 0);
1602 if (--req
->refcount
== 0) {
1603 BusState
*qbus
= req
->dev
->qdev
.parent_bus
;
1604 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, qbus
);
1606 if (bus
->info
->free_request
&& req
->hba_private
) {
1607 bus
->info
->free_request(bus
, req
->hba_private
);
1609 if (req
->ops
->free_req
) {
1610 req
->ops
->free_req(req
);
1612 object_unref(OBJECT(req
->dev
));
1613 object_unref(OBJECT(qbus
->parent
));
1614 g_slice_free1(req
->ops
->size
, req
);
1618 /* Tell the device that we finished processing this chunk of I/O. It
1619 will start the next chunk or complete the command. */
1620 void scsi_req_continue(SCSIRequest
*req
)
1622 if (req
->io_canceled
) {
1623 trace_scsi_req_continue_canceled(req
->dev
->id
, req
->lun
, req
->tag
);
1626 trace_scsi_req_continue(req
->dev
->id
, req
->lun
, req
->tag
);
1627 if (req
->cmd
.mode
== SCSI_XFER_TO_DEV
) {
1628 req
->ops
->write_data(req
);
1630 req
->ops
->read_data(req
);
1634 /* Called by the devices when data is ready for the HBA. The HBA should
1635 start a DMA operation to read or fill the device's data buffer.
1636 Once it completes, calling scsi_req_continue will restart I/O. */
1637 void scsi_req_data(SCSIRequest
*req
, int len
)
1640 if (req
->io_canceled
) {
1641 trace_scsi_req_data_canceled(req
->dev
->id
, req
->lun
, req
->tag
, len
);
1644 trace_scsi_req_data(req
->dev
->id
, req
->lun
, req
->tag
, len
);
1645 assert(req
->cmd
.mode
!= SCSI_XFER_NONE
);
1648 req
->bus
->info
->transfer_data(req
, len
);
1652 /* If the device calls scsi_req_data and the HBA specified a
1653 * scatter/gather list, the transfer has to happen in a single
1655 assert(!req
->dma_started
);
1656 req
->dma_started
= true;
1658 buf
= scsi_req_get_buf(req
);
1659 if (req
->cmd
.mode
== SCSI_XFER_FROM_DEV
) {
1660 req
->resid
= dma_buf_read(buf
, len
, req
->sg
);
1662 req
->resid
= dma_buf_write(buf
, len
, req
->sg
);
1664 scsi_req_continue(req
);
1667 void scsi_req_print(SCSIRequest
*req
)
1672 fprintf(fp
, "[%s id=%d] %s",
1673 req
->dev
->qdev
.parent_bus
->name
,
1675 scsi_command_name(req
->cmd
.buf
[0]));
1676 for (i
= 1; i
< req
->cmd
.len
; i
++) {
1677 fprintf(fp
, " 0x%02x", req
->cmd
.buf
[i
]);
1679 switch (req
->cmd
.mode
) {
1680 case SCSI_XFER_NONE
:
1681 fprintf(fp
, " - none\n");
1683 case SCSI_XFER_FROM_DEV
:
1684 fprintf(fp
, " - from-dev len=%zd\n", req
->cmd
.xfer
);
1686 case SCSI_XFER_TO_DEV
:
1687 fprintf(fp
, " - to-dev len=%zd\n", req
->cmd
.xfer
);
1690 fprintf(fp
, " - Oops\n");
1695 void scsi_req_complete(SCSIRequest
*req
, int status
)
1697 assert(req
->status
== -1);
1698 req
->status
= status
;
1700 assert(req
->sense_len
<= sizeof(req
->sense
));
1701 if (status
== GOOD
) {
1705 if (req
->sense_len
) {
1706 memcpy(req
->dev
->sense
, req
->sense
, req
->sense_len
);
1707 req
->dev
->sense_len
= req
->sense_len
;
1708 req
->dev
->sense_is_ua
= (req
->ops
== &reqops_unit_attention
);
1710 req
->dev
->sense_len
= 0;
1711 req
->dev
->sense_is_ua
= false;
1715 * Unit attention state is now stored in the device's sense buffer
1716 * if the HBA didn't do autosense. Clear the pending unit attention
1719 scsi_clear_unit_attention(req
);
1722 scsi_req_dequeue(req
);
1723 req
->bus
->info
->complete(req
, req
->status
, req
->resid
);
1725 /* Cancelled requests might end up being completed instead of cancelled */
1726 notifier_list_notify(&req
->cancel_notifiers
, req
);
1727 scsi_req_unref(req
);
1730 /* Called by the devices when the request is canceled. */
1731 void scsi_req_cancel_complete(SCSIRequest
*req
)
1733 assert(req
->io_canceled
);
1734 if (req
->bus
->info
->cancel
) {
1735 req
->bus
->info
->cancel(req
);
1737 notifier_list_notify(&req
->cancel_notifiers
, req
);
1738 scsi_req_unref(req
);
1741 /* Cancel @req asynchronously. @notifier is added to @req's cancellation
1742 * notifier list, the bus will be notified the requests cancellation is
1745 void scsi_req_cancel_async(SCSIRequest
*req
, Notifier
*notifier
)
1747 trace_scsi_req_cancel(req
->dev
->id
, req
->lun
, req
->tag
);
1749 notifier_list_add(&req
->cancel_notifiers
, notifier
);
1751 if (req
->io_canceled
) {
1755 scsi_req_dequeue(req
);
1756 req
->io_canceled
= true;
1758 blk_aio_cancel_async(req
->aiocb
);
1760 scsi_req_cancel_complete(req
);
1764 void scsi_req_cancel(SCSIRequest
*req
)
1766 trace_scsi_req_cancel(req
->dev
->id
, req
->lun
, req
->tag
);
1767 if (!req
->enqueued
) {
1771 scsi_req_dequeue(req
);
1772 req
->io_canceled
= true;
1774 blk_aio_cancel(req
->aiocb
);
1776 scsi_req_cancel_complete(req
);
1780 static int scsi_ua_precedence(SCSISense sense
)
1782 if (sense
.key
!= UNIT_ATTENTION
) {
1785 if (sense
.asc
== 0x29 && sense
.ascq
== 0x04) {
1786 /* DEVICE INTERNAL RESET goes with POWER ON OCCURRED */
1788 } else if (sense
.asc
== 0x3F && sense
.ascq
== 0x01) {
1789 /* MICROCODE HAS BEEN CHANGED goes with SCSI BUS RESET OCCURRED */
1791 } else if (sense
.asc
== 0x29 && (sense
.ascq
== 0x05 || sense
.ascq
== 0x06)) {
1792 /* These two go with "all others". */
1794 } else if (sense
.asc
== 0x29 && sense
.ascq
<= 0x07) {
1795 /* POWER ON, RESET OR BUS DEVICE RESET OCCURRED = 0
1796 * POWER ON OCCURRED = 1
1797 * SCSI BUS RESET OCCURRED = 2
1798 * BUS DEVICE RESET FUNCTION OCCURRED = 3
1799 * I_T NEXUS LOSS OCCURRED = 7
1802 } else if (sense
.asc
== 0x2F && sense
.ascq
== 0x01) {
1803 /* COMMANDS CLEARED BY POWER LOSS NOTIFICATION */
1806 return (sense
.asc
<< 8) | sense
.ascq
;
1809 void scsi_device_set_ua(SCSIDevice
*sdev
, SCSISense sense
)
1812 if (sense
.key
!= UNIT_ATTENTION
) {
1815 trace_scsi_device_set_ua(sdev
->id
, sdev
->lun
, sense
.key
,
1816 sense
.asc
, sense
.ascq
);
1819 * Override a pre-existing unit attention condition, except for a more
1820 * important reset condition.
1822 prec1
= scsi_ua_precedence(sdev
->unit_attention
);
1823 prec2
= scsi_ua_precedence(sense
);
1824 if (prec2
< prec1
) {
1825 sdev
->unit_attention
= sense
;
1829 void scsi_device_purge_requests(SCSIDevice
*sdev
, SCSISense sense
)
1833 while (!QTAILQ_EMPTY(&sdev
->requests
)) {
1834 req
= QTAILQ_FIRST(&sdev
->requests
);
1835 scsi_req_cancel(req
);
1838 scsi_device_set_ua(sdev
, sense
);
1841 static char *scsibus_get_dev_path(DeviceState
*dev
)
1843 SCSIDevice
*d
= DO_UPCAST(SCSIDevice
, qdev
, dev
);
1844 DeviceState
*hba
= dev
->parent_bus
->parent
;
1848 id
= qdev_get_dev_path(hba
);
1850 path
= g_strdup_printf("%s/%d:%d:%d", id
, d
->channel
, d
->id
, d
->lun
);
1852 path
= g_strdup_printf("%d:%d:%d", d
->channel
, d
->id
, d
->lun
);
1858 static char *scsibus_get_fw_dev_path(DeviceState
*dev
)
1860 SCSIDevice
*d
= SCSI_DEVICE(dev
);
1861 return g_strdup_printf("channel@%x/%s@%x,%x", d
->channel
,
1862 qdev_fw_name(dev
), d
->id
, d
->lun
);
1865 SCSIDevice
*scsi_device_find(SCSIBus
*bus
, int channel
, int id
, int lun
)
1868 SCSIDevice
*target_dev
= NULL
;
1870 QTAILQ_FOREACH_REVERSE(kid
, &bus
->qbus
.children
, ChildrenHead
, sibling
) {
1871 DeviceState
*qdev
= kid
->child
;
1872 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
1874 if (dev
->channel
== channel
&& dev
->id
== id
) {
1875 if (dev
->lun
== lun
) {
1884 /* SCSI request list. For simplicity, pv points to the whole device */
1886 static void put_scsi_requests(QEMUFile
*f
, void *pv
, size_t size
)
1889 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, s
->qdev
.parent_bus
);
1892 QTAILQ_FOREACH(req
, &s
->requests
, next
) {
1893 assert(!req
->io_canceled
);
1894 assert(req
->status
== -1);
1895 assert(req
->enqueued
);
1897 qemu_put_sbyte(f
, req
->retry
? 1 : 2);
1898 qemu_put_buffer(f
, req
->cmd
.buf
, sizeof(req
->cmd
.buf
));
1899 qemu_put_be32s(f
, &req
->tag
);
1900 qemu_put_be32s(f
, &req
->lun
);
1901 if (bus
->info
->save_request
) {
1902 bus
->info
->save_request(f
, req
);
1904 if (req
->ops
->save_request
) {
1905 req
->ops
->save_request(f
, req
);
1908 qemu_put_sbyte(f
, 0);
1911 static int get_scsi_requests(QEMUFile
*f
, void *pv
, size_t size
)
1914 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, s
->qdev
.parent_bus
);
1917 while ((sbyte
= qemu_get_sbyte(f
)) > 0) {
1918 uint8_t buf
[SCSI_CMD_BUF_SIZE
];
1923 qemu_get_buffer(f
, buf
, sizeof(buf
));
1924 qemu_get_be32s(f
, &tag
);
1925 qemu_get_be32s(f
, &lun
);
1926 req
= scsi_req_new(s
, tag
, lun
, buf
, NULL
);
1927 req
->retry
= (sbyte
== 1);
1928 if (bus
->info
->load_request
) {
1929 req
->hba_private
= bus
->info
->load_request(f
, req
);
1931 if (req
->ops
->load_request
) {
1932 req
->ops
->load_request(f
, req
);
1935 /* Just restart it later. */
1936 scsi_req_enqueue_internal(req
);
1938 /* At this point, the request will be kept alive by the reference
1939 * added by scsi_req_enqueue_internal, so we can release our reference.
1940 * The HBA of course will add its own reference in the load_request
1941 * callback if it needs to hold on the SCSIRequest.
1943 scsi_req_unref(req
);
1949 static const VMStateInfo vmstate_info_scsi_requests
= {
1950 .name
= "scsi-requests",
1951 .get
= get_scsi_requests
,
1952 .put
= put_scsi_requests
,
1955 static bool scsi_sense_state_needed(void *opaque
)
1957 SCSIDevice
*s
= opaque
;
1959 return s
->sense_len
> SCSI_SENSE_BUF_SIZE_OLD
;
1962 static const VMStateDescription vmstate_scsi_sense_state
= {
1963 .name
= "SCSIDevice/sense",
1965 .minimum_version_id
= 1,
1966 .fields
= (VMStateField
[]) {
1967 VMSTATE_UINT8_SUB_ARRAY(sense
, SCSIDevice
,
1968 SCSI_SENSE_BUF_SIZE_OLD
,
1969 SCSI_SENSE_BUF_SIZE
- SCSI_SENSE_BUF_SIZE_OLD
),
1970 VMSTATE_END_OF_LIST()
1974 const VMStateDescription vmstate_scsi_device
= {
1975 .name
= "SCSIDevice",
1977 .minimum_version_id
= 1,
1978 .fields
= (VMStateField
[]) {
1979 VMSTATE_UINT8(unit_attention
.key
, SCSIDevice
),
1980 VMSTATE_UINT8(unit_attention
.asc
, SCSIDevice
),
1981 VMSTATE_UINT8(unit_attention
.ascq
, SCSIDevice
),
1982 VMSTATE_BOOL(sense_is_ua
, SCSIDevice
),
1983 VMSTATE_UINT8_SUB_ARRAY(sense
, SCSIDevice
, 0, SCSI_SENSE_BUF_SIZE_OLD
),
1984 VMSTATE_UINT32(sense_len
, SCSIDevice
),
1988 .field_exists
= NULL
,
1989 .size
= 0, /* ouch */
1990 .info
= &vmstate_info_scsi_requests
,
1991 .flags
= VMS_SINGLE
,
1994 VMSTATE_END_OF_LIST()
1996 .subsections
= (VMStateSubsection
[]) {
1998 .vmsd
= &vmstate_scsi_sense_state
,
1999 .needed
= scsi_sense_state_needed
,
2006 static void scsi_device_class_init(ObjectClass
*klass
, void *data
)
2008 DeviceClass
*k
= DEVICE_CLASS(klass
);
2009 set_bit(DEVICE_CATEGORY_STORAGE
, k
->categories
);
2010 k
->bus_type
= TYPE_SCSI_BUS
;
2011 k
->realize
= scsi_qdev_realize
;
2012 k
->unrealize
= scsi_qdev_unrealize
;
2013 k
->props
= scsi_props
;
2016 static void scsi_dev_instance_init(Object
*obj
)
2018 DeviceState
*dev
= DEVICE(obj
);
2019 SCSIDevice
*s
= DO_UPCAST(SCSIDevice
, qdev
, dev
);
2021 device_add_bootindex_property(obj
, &s
->conf
.bootindex
,
2026 static const TypeInfo scsi_device_type_info
= {
2027 .name
= TYPE_SCSI_DEVICE
,
2028 .parent
= TYPE_DEVICE
,
2029 .instance_size
= sizeof(SCSIDevice
),
2031 .class_size
= sizeof(SCSIDeviceClass
),
2032 .class_init
= scsi_device_class_init
,
2033 .instance_init
= scsi_dev_instance_init
,
2036 static void scsi_register_types(void)
2038 type_register_static(&scsi_bus_info
);
2039 type_register_static(&scsi_device_type_info
);
2042 type_init(scsi_register_types
)