1 #include "qemu/osdep.h"
3 #include "qapi/error.h"
4 #include "qemu/error-report.h"
5 #include "hw/scsi/scsi.h"
6 #include "block/scsi.h"
8 #include "sysemu/block-backend.h"
9 #include "sysemu/blockdev.h"
11 #include "sysemu/dma.h"
12 #include "qemu/cutils.h"
14 static char *scsibus_get_dev_path(DeviceState
*dev
);
15 static char *scsibus_get_fw_dev_path(DeviceState
*dev
);
16 static void scsi_req_dequeue(SCSIRequest
*req
);
17 static uint8_t *scsi_target_alloc_buf(SCSIRequest
*req
, size_t len
);
18 static void scsi_target_free_buf(SCSIRequest
*req
);
20 static Property scsi_props
[] = {
21 DEFINE_PROP_UINT32("channel", SCSIDevice
, channel
, 0),
22 DEFINE_PROP_UINT32("scsi-id", SCSIDevice
, id
, -1),
23 DEFINE_PROP_UINT32("lun", SCSIDevice
, lun
, -1),
24 DEFINE_PROP_END_OF_LIST(),
27 static void scsi_bus_class_init(ObjectClass
*klass
, void *data
)
29 BusClass
*k
= BUS_CLASS(klass
);
30 HotplugHandlerClass
*hc
= HOTPLUG_HANDLER_CLASS(klass
);
32 k
->get_dev_path
= scsibus_get_dev_path
;
33 k
->get_fw_dev_path
= scsibus_get_fw_dev_path
;
34 hc
->unplug
= qdev_simple_device_unplug_cb
;
37 static const TypeInfo scsi_bus_info
= {
38 .name
= TYPE_SCSI_BUS
,
40 .instance_size
= sizeof(SCSIBus
),
41 .class_init
= scsi_bus_class_init
,
42 .interfaces
= (InterfaceInfo
[]) {
43 { TYPE_HOTPLUG_HANDLER
},
47 static int next_scsi_bus
;
49 static void scsi_device_realize(SCSIDevice
*s
, Error
**errp
)
51 SCSIDeviceClass
*sc
= SCSI_DEVICE_GET_CLASS(s
);
57 int scsi_bus_parse_cdb(SCSIDevice
*dev
, SCSICommand
*cmd
, uint8_t *buf
,
60 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, dev
->qdev
.parent_bus
);
63 assert(cmd
->len
== 0);
64 rc
= scsi_req_parse_cdb(dev
, cmd
, buf
);
65 if (bus
->info
->parse_cdb
) {
66 rc
= bus
->info
->parse_cdb(dev
, cmd
, buf
, hba_private
);
71 static SCSIRequest
*scsi_device_alloc_req(SCSIDevice
*s
, uint32_t tag
, uint32_t lun
,
72 uint8_t *buf
, void *hba_private
)
74 SCSIDeviceClass
*sc
= SCSI_DEVICE_GET_CLASS(s
);
76 return sc
->alloc_req(s
, tag
, lun
, buf
, hba_private
);
82 void scsi_device_unit_attention_reported(SCSIDevice
*s
)
84 SCSIDeviceClass
*sc
= SCSI_DEVICE_GET_CLASS(s
);
85 if (sc
->unit_attention_reported
) {
86 sc
->unit_attention_reported(s
);
90 /* Create a scsi bus, and attach devices to it. */
91 void scsi_bus_new(SCSIBus
*bus
, size_t bus_size
, DeviceState
*host
,
92 const SCSIBusInfo
*info
, const char *bus_name
)
94 qbus_create_inplace(bus
, bus_size
, TYPE_SCSI_BUS
, host
, bus_name
);
95 bus
->busnr
= next_scsi_bus
++;
97 qbus_set_bus_hotplug_handler(BUS(bus
), &error_abort
);
100 static void scsi_dma_restart_bh(void *opaque
)
102 SCSIDevice
*s
= opaque
;
103 SCSIRequest
*req
, *next
;
105 qemu_bh_delete(s
->bh
);
108 aio_context_acquire(blk_get_aio_context(s
->conf
.blk
));
109 QTAILQ_FOREACH_SAFE(req
, &s
->requests
, next
, next
) {
113 switch (req
->cmd
.mode
) {
114 case SCSI_XFER_FROM_DEV
:
115 case SCSI_XFER_TO_DEV
:
116 scsi_req_continue(req
);
119 scsi_req_dequeue(req
);
120 scsi_req_enqueue(req
);
126 aio_context_release(blk_get_aio_context(s
->conf
.blk
));
129 void scsi_req_retry(SCSIRequest
*req
)
131 /* No need to save a reference, because scsi_dma_restart_bh just
132 * looks at the request list. */
136 static void scsi_dma_restart_cb(void *opaque
, int running
, RunState state
)
138 SCSIDevice
*s
= opaque
;
144 AioContext
*ctx
= blk_get_aio_context(s
->conf
.blk
);
145 s
->bh
= aio_bh_new(ctx
, scsi_dma_restart_bh
, s
);
146 qemu_bh_schedule(s
->bh
);
150 static void scsi_qdev_realize(DeviceState
*qdev
, Error
**errp
)
152 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
153 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, dev
->qdev
.parent_bus
);
155 Error
*local_err
= NULL
;
157 if (dev
->channel
> bus
->info
->max_channel
) {
158 error_setg(errp
, "bad scsi channel id: %d", dev
->channel
);
161 if (dev
->id
!= -1 && dev
->id
> bus
->info
->max_target
) {
162 error_setg(errp
, "bad scsi device id: %d", dev
->id
);
165 if (dev
->lun
!= -1 && dev
->lun
> bus
->info
->max_lun
) {
166 error_setg(errp
, "bad scsi device lun: %d", dev
->lun
);
172 if (dev
->lun
== -1) {
176 d
= scsi_device_find(bus
, dev
->channel
, ++id
, dev
->lun
);
177 } while (d
&& d
->lun
== dev
->lun
&& id
< bus
->info
->max_target
);
178 if (d
&& d
->lun
== dev
->lun
) {
179 error_setg(errp
, "no free target");
183 } else if (dev
->lun
== -1) {
186 d
= scsi_device_find(bus
, dev
->channel
, dev
->id
, ++lun
);
187 } while (d
&& d
->lun
== lun
&& lun
< bus
->info
->max_lun
);
188 if (d
&& d
->lun
== lun
) {
189 error_setg(errp
, "no free lun");
194 d
= scsi_device_find(bus
, dev
->channel
, dev
->id
, dev
->lun
);
196 if (d
->lun
== dev
->lun
&& dev
!= d
) {
197 error_setg(errp
, "lun already used by '%s'", d
->qdev
.id
);
202 QTAILQ_INIT(&dev
->requests
);
203 scsi_device_realize(dev
, &local_err
);
205 error_propagate(errp
, local_err
);
208 dev
->vmsentry
= qemu_add_vm_change_state_handler(scsi_dma_restart_cb
,
212 static void scsi_qdev_unrealize(DeviceState
*qdev
, Error
**errp
)
214 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
217 qemu_del_vm_change_state_handler(dev
->vmsentry
);
220 scsi_device_purge_requests(dev
, SENSE_CODE(NO_SENSE
));
221 blockdev_mark_auto_del(dev
->conf
.blk
);
224 /* handle legacy '-drive if=scsi,...' cmd line args */
225 SCSIDevice
*scsi_bus_legacy_add_drive(SCSIBus
*bus
, BlockBackend
*blk
,
226 int unit
, bool removable
, int bootindex
,
227 const char *serial
, Error
**errp
)
234 driver
= blk_is_sg(blk
) ? "scsi-generic" : "scsi-disk";
235 dev
= qdev_create(&bus
->qbus
, driver
);
236 name
= g_strdup_printf("legacy[%d]", unit
);
237 object_property_add_child(OBJECT(bus
), name
, OBJECT(dev
), NULL
);
240 qdev_prop_set_uint32(dev
, "scsi-id", unit
);
241 if (bootindex
>= 0) {
242 object_property_set_int(OBJECT(dev
), bootindex
, "bootindex",
245 if (object_property_find(OBJECT(dev
), "removable", NULL
)) {
246 qdev_prop_set_bit(dev
, "removable", removable
);
248 if (serial
&& object_property_find(OBJECT(dev
), "serial", NULL
)) {
249 qdev_prop_set_string(dev
, "serial", serial
);
251 qdev_prop_set_drive(dev
, "drive", blk
, &err
);
253 error_propagate(errp
, err
);
254 object_unparent(OBJECT(dev
));
257 object_property_set_bool(OBJECT(dev
), true, "realized", &err
);
259 error_propagate(errp
, err
);
260 object_unparent(OBJECT(dev
));
263 return SCSI_DEVICE(dev
);
266 void scsi_bus_legacy_handle_cmdline(SCSIBus
*bus
, bool deprecated
)
273 for (unit
= 0; unit
<= bus
->info
->max_target
; unit
++) {
274 dinfo
= drive_get(IF_SCSI
, bus
->busnr
, unit
);
278 qemu_opts_loc_restore(dinfo
->opts
);
280 /* Handling -drive not claimed by machine initialization */
281 if (blk_get_attached_dev(blk_by_legacy_dinfo(dinfo
))) {
282 continue; /* claimed */
284 if (!dinfo
->is_default
) {
285 warn_report("bus=%d,unit=%d is deprecated with this"
290 scsi_bus_legacy_add_drive(bus
, blk_by_legacy_dinfo(dinfo
),
291 unit
, false, -1, NULL
, &error_fatal
);
296 static bool is_scsi_hba_with_legacy_magic(Object
*obj
)
298 static const char *magic
[] = {
299 "am53c974", "dc390", "esp", "lsi53c810", "lsi53c895a",
300 "megasas", "megasas-gen2", "mptsas1068", "spapr-vscsi",
301 "virtio-scsi-device",
304 const char *typename
= object_get_typename(obj
);
307 for (i
= 0; magic
[i
]; i
++)
308 if (!strcmp(typename
, magic
[i
])) {
315 static int scsi_legacy_handle_cmdline_cb(Object
*obj
, void *opaque
)
317 SCSIBus
*bus
= (SCSIBus
*)object_dynamic_cast(obj
, TYPE_SCSI_BUS
);
319 if (bus
&& is_scsi_hba_with_legacy_magic(OBJECT(bus
->qbus
.parent
))) {
320 scsi_bus_legacy_handle_cmdline(bus
, true);
326 void scsi_legacy_handle_cmdline(void)
328 object_child_foreach_recursive(object_get_root(),
329 scsi_legacy_handle_cmdline_cb
, NULL
);
332 static int32_t scsi_invalid_field(SCSIRequest
*req
, uint8_t *buf
)
334 scsi_req_build_sense(req
, SENSE_CODE(INVALID_FIELD
));
335 scsi_req_complete(req
, CHECK_CONDITION
);
339 static const struct SCSIReqOps reqops_invalid_field
= {
340 .size
= sizeof(SCSIRequest
),
341 .send_command
= scsi_invalid_field
344 /* SCSIReqOps implementation for invalid commands. */
346 static int32_t scsi_invalid_command(SCSIRequest
*req
, uint8_t *buf
)
348 scsi_req_build_sense(req
, SENSE_CODE(INVALID_OPCODE
));
349 scsi_req_complete(req
, CHECK_CONDITION
);
353 static const struct SCSIReqOps reqops_invalid_opcode
= {
354 .size
= sizeof(SCSIRequest
),
355 .send_command
= scsi_invalid_command
358 /* SCSIReqOps implementation for unit attention conditions. */
360 static int32_t scsi_unit_attention(SCSIRequest
*req
, uint8_t *buf
)
362 if (req
->dev
->unit_attention
.key
== UNIT_ATTENTION
) {
363 scsi_req_build_sense(req
, req
->dev
->unit_attention
);
364 } else if (req
->bus
->unit_attention
.key
== UNIT_ATTENTION
) {
365 scsi_req_build_sense(req
, req
->bus
->unit_attention
);
367 scsi_req_complete(req
, CHECK_CONDITION
);
371 static const struct SCSIReqOps reqops_unit_attention
= {
372 .size
= sizeof(SCSIRequest
),
373 .send_command
= scsi_unit_attention
376 /* SCSIReqOps implementation for REPORT LUNS and for commands sent to
379 typedef struct SCSITargetReq SCSITargetReq
;
381 struct SCSITargetReq
{
388 static void store_lun(uint8_t *outbuf
, int lun
)
394 outbuf
[1] = (lun
& 255);
395 outbuf
[0] = (lun
>> 8) | 0x40;
398 static bool scsi_target_emulate_report_luns(SCSITargetReq
*r
)
405 if (r
->req
.cmd
.xfer
< 16) {
408 if (r
->req
.cmd
.buf
[2] > 2) {
411 channel
= r
->req
.dev
->channel
;
415 QTAILQ_FOREACH(kid
, &r
->req
.bus
->qbus
.children
, sibling
) {
416 DeviceState
*qdev
= kid
->child
;
417 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
419 if (dev
->channel
== channel
&& dev
->id
== id
) {
430 scsi_target_alloc_buf(&r
->req
, n
+ 8);
432 len
= MIN(n
+ 8, r
->req
.cmd
.xfer
& ~7);
433 memset(r
->buf
, 0, len
);
434 stl_be_p(&r
->buf
[0], n
);
435 i
= found_lun0
? 8 : 16;
436 QTAILQ_FOREACH(kid
, &r
->req
.bus
->qbus
.children
, sibling
) {
437 DeviceState
*qdev
= kid
->child
;
438 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
440 if (dev
->channel
== channel
&& dev
->id
== id
) {
441 store_lun(&r
->buf
[i
], dev
->lun
);
450 static bool scsi_target_emulate_inquiry(SCSITargetReq
*r
)
452 assert(r
->req
.dev
->lun
!= r
->req
.lun
);
454 scsi_target_alloc_buf(&r
->req
, SCSI_INQUIRY_LEN
);
456 if (r
->req
.cmd
.buf
[1] & 0x2) {
457 /* Command support data - optional, not implemented */
461 if (r
->req
.cmd
.buf
[1] & 0x1) {
462 /* Vital product data */
463 uint8_t page_code
= r
->req
.cmd
.buf
[2];
464 r
->buf
[r
->len
++] = page_code
; /* this page */
465 r
->buf
[r
->len
++] = 0x00;
468 case 0x00: /* Supported page codes, mandatory */
472 r
->buf
[r
->len
++] = 0x00; /* list of supported pages (this page) */
473 r
->buf
[pages
] = r
->len
- pages
- 1; /* number of pages */
480 assert(r
->len
< r
->buf_len
);
481 r
->len
= MIN(r
->req
.cmd
.xfer
, r
->len
);
485 /* Standard INQUIRY data */
486 if (r
->req
.cmd
.buf
[2] != 0) {
491 r
->len
= MIN(r
->req
.cmd
.xfer
, SCSI_INQUIRY_LEN
);
492 memset(r
->buf
, 0, r
->len
);
493 if (r
->req
.lun
!= 0) {
494 r
->buf
[0] = TYPE_NO_LUN
;
496 r
->buf
[0] = TYPE_NOT_PRESENT
| TYPE_INACTIVE
;
497 r
->buf
[2] = 5; /* Version */
498 r
->buf
[3] = 2 | 0x10; /* HiSup, response data format */
499 r
->buf
[4] = r
->len
- 5; /* Additional Length = (Len - 1) - 4 */
500 r
->buf
[7] = 0x10 | (r
->req
.bus
->info
->tcq
? 0x02 : 0); /* Sync, TCQ. */
501 memcpy(&r
->buf
[8], "QEMU ", 8);
502 memcpy(&r
->buf
[16], "QEMU TARGET ", 16);
503 pstrcpy((char *) &r
->buf
[32], 4, qemu_hw_version());
508 static size_t scsi_sense_len(SCSIRequest
*req
)
510 if (req
->dev
->type
== TYPE_SCANNER
)
511 return SCSI_SENSE_LEN_SCANNER
;
513 return SCSI_SENSE_LEN
;
516 static int32_t scsi_target_send_command(SCSIRequest
*req
, uint8_t *buf
)
518 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
521 scsi_req_build_sense(req
, SENSE_CODE(LUN_NOT_SUPPORTED
));
522 scsi_req_complete(req
, CHECK_CONDITION
);
527 if (!scsi_target_emulate_report_luns(r
)) {
528 goto illegal_request
;
532 if (!scsi_target_emulate_inquiry(r
)) {
533 goto illegal_request
;
537 scsi_target_alloc_buf(&r
->req
, scsi_sense_len(req
));
538 r
->len
= scsi_device_get_sense(r
->req
.dev
, r
->buf
,
539 MIN(req
->cmd
.xfer
, r
->buf_len
),
540 (req
->cmd
.buf
[1] & 1) == 0);
541 if (r
->req
.dev
->sense_is_ua
) {
542 scsi_device_unit_attention_reported(req
->dev
);
543 r
->req
.dev
->sense_len
= 0;
544 r
->req
.dev
->sense_is_ua
= false;
547 case TEST_UNIT_READY
:
550 scsi_req_build_sense(req
, SENSE_CODE(INVALID_OPCODE
));
551 scsi_req_complete(req
, CHECK_CONDITION
);
554 scsi_req_build_sense(req
, SENSE_CODE(INVALID_FIELD
));
555 scsi_req_complete(req
, CHECK_CONDITION
);
560 scsi_req_complete(req
, GOOD
);
565 static void scsi_target_read_data(SCSIRequest
*req
)
567 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
573 scsi_req_data(&r
->req
, n
);
575 scsi_req_complete(&r
->req
, GOOD
);
579 static uint8_t *scsi_target_get_buf(SCSIRequest
*req
)
581 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
586 static uint8_t *scsi_target_alloc_buf(SCSIRequest
*req
, size_t len
)
588 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
590 r
->buf
= g_malloc(len
);
596 static void scsi_target_free_buf(SCSIRequest
*req
)
598 SCSITargetReq
*r
= DO_UPCAST(SCSITargetReq
, req
, req
);
603 static const struct SCSIReqOps reqops_target_command
= {
604 .size
= sizeof(SCSITargetReq
),
605 .send_command
= scsi_target_send_command
,
606 .read_data
= scsi_target_read_data
,
607 .get_buf
= scsi_target_get_buf
,
608 .free_req
= scsi_target_free_buf
,
612 SCSIRequest
*scsi_req_alloc(const SCSIReqOps
*reqops
, SCSIDevice
*d
,
613 uint32_t tag
, uint32_t lun
, void *hba_private
)
616 SCSIBus
*bus
= scsi_bus_from_device(d
);
617 BusState
*qbus
= BUS(bus
);
618 const int memset_off
= offsetof(SCSIRequest
, sense
)
619 + sizeof(req
->sense
);
621 req
= g_malloc(reqops
->size
);
622 memset((uint8_t *)req
+ memset_off
, 0, reqops
->size
- memset_off
);
628 req
->hba_private
= hba_private
;
631 object_ref(OBJECT(d
));
632 object_ref(OBJECT(qbus
->parent
));
633 notifier_list_init(&req
->cancel_notifiers
);
634 trace_scsi_req_alloc(req
->dev
->id
, req
->lun
, req
->tag
);
638 SCSIRequest
*scsi_req_new(SCSIDevice
*d
, uint32_t tag
, uint32_t lun
,
639 uint8_t *buf
, void *hba_private
)
641 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, d
->qdev
.parent_bus
);
642 const SCSIReqOps
*ops
;
643 SCSIDeviceClass
*sc
= SCSI_DEVICE_GET_CLASS(d
);
645 SCSICommand cmd
= { .len
= 0 };
648 if ((d
->unit_attention
.key
== UNIT_ATTENTION
||
649 bus
->unit_attention
.key
== UNIT_ATTENTION
) &&
650 (buf
[0] != INQUIRY
&&
651 buf
[0] != REPORT_LUNS
&&
652 buf
[0] != GET_CONFIGURATION
&&
653 buf
[0] != GET_EVENT_STATUS_NOTIFICATION
&&
656 * If we already have a pending unit attention condition,
657 * report this one before triggering another one.
659 !(buf
[0] == REQUEST_SENSE
&& d
->sense_is_ua
))) {
660 ops
= &reqops_unit_attention
;
661 } else if (lun
!= d
->lun
||
662 buf
[0] == REPORT_LUNS
||
663 (buf
[0] == REQUEST_SENSE
&& d
->sense_len
)) {
664 ops
= &reqops_target_command
;
669 if (ops
!= NULL
|| !sc
->parse_cdb
) {
670 ret
= scsi_req_parse_cdb(d
, &cmd
, buf
);
672 ret
= sc
->parse_cdb(d
, &cmd
, buf
, hba_private
);
676 trace_scsi_req_parse_bad(d
->id
, lun
, tag
, buf
[0]);
677 req
= scsi_req_alloc(&reqops_invalid_opcode
, d
, tag
, lun
, hba_private
);
679 assert(cmd
.len
!= 0);
680 trace_scsi_req_parsed(d
->id
, lun
, tag
, buf
[0],
683 trace_scsi_req_parsed_lba(d
->id
, lun
, tag
, buf
[0],
687 if (cmd
.xfer
> INT32_MAX
) {
688 req
= scsi_req_alloc(&reqops_invalid_field
, d
, tag
, lun
, hba_private
);
690 req
= scsi_req_alloc(ops
, d
, tag
, lun
, hba_private
);
692 req
= scsi_device_alloc_req(d
, tag
, lun
, buf
, hba_private
);
697 req
->resid
= req
->cmd
.xfer
;
701 trace_scsi_inquiry(d
->id
, lun
, tag
, cmd
.buf
[1], cmd
.buf
[2]);
703 case TEST_UNIT_READY
:
704 trace_scsi_test_unit_ready(d
->id
, lun
, tag
);
707 trace_scsi_report_luns(d
->id
, lun
, tag
);
710 trace_scsi_request_sense(d
->id
, lun
, tag
);
719 uint8_t *scsi_req_get_buf(SCSIRequest
*req
)
721 return req
->ops
->get_buf(req
);
724 static void scsi_clear_unit_attention(SCSIRequest
*req
)
727 if (req
->dev
->unit_attention
.key
!= UNIT_ATTENTION
&&
728 req
->bus
->unit_attention
.key
!= UNIT_ATTENTION
) {
733 * If an INQUIRY command enters the enabled command state,
734 * the device server shall [not] clear any unit attention condition;
735 * See also MMC-6, paragraphs 6.5 and 6.6.2.
737 if (req
->cmd
.buf
[0] == INQUIRY
||
738 req
->cmd
.buf
[0] == GET_CONFIGURATION
||
739 req
->cmd
.buf
[0] == GET_EVENT_STATUS_NOTIFICATION
) {
743 if (req
->dev
->unit_attention
.key
== UNIT_ATTENTION
) {
744 ua
= &req
->dev
->unit_attention
;
746 ua
= &req
->bus
->unit_attention
;
750 * If a REPORT LUNS command enters the enabled command state, [...]
751 * the device server shall clear any pending unit attention condition
752 * with an additional sense code of REPORTED LUNS DATA HAS CHANGED.
754 if (req
->cmd
.buf
[0] == REPORT_LUNS
&&
755 !(ua
->asc
== SENSE_CODE(REPORTED_LUNS_CHANGED
).asc
&&
756 ua
->ascq
== SENSE_CODE(REPORTED_LUNS_CHANGED
).ascq
)) {
760 *ua
= SENSE_CODE(NO_SENSE
);
763 int scsi_req_get_sense(SCSIRequest
*req
, uint8_t *buf
, int len
)
768 if (!req
->sense_len
) {
772 ret
= scsi_build_sense(req
->sense
, req
->sense_len
, buf
, len
, true);
775 * FIXME: clearing unit attention conditions upon autosense should be done
776 * only if the UA_INTLCK_CTRL field in the Control mode page is set to 00b
779 * We assume UA_INTLCK_CTRL to be 00b for HBAs that support autosense, and
780 * 10b for HBAs that do not support it (do not call scsi_req_get_sense).
781 * Here we handle unit attention clearing for UA_INTLCK_CTRL == 00b.
783 if (req
->dev
->sense_is_ua
) {
784 scsi_device_unit_attention_reported(req
->dev
);
785 req
->dev
->sense_len
= 0;
786 req
->dev
->sense_is_ua
= false;
791 int scsi_device_get_sense(SCSIDevice
*dev
, uint8_t *buf
, int len
, bool fixed
)
793 return scsi_build_sense(dev
->sense
, dev
->sense_len
, buf
, len
, fixed
);
796 void scsi_req_build_sense(SCSIRequest
*req
, SCSISense sense
)
798 trace_scsi_req_build_sense(req
->dev
->id
, req
->lun
, req
->tag
,
799 sense
.key
, sense
.asc
, sense
.ascq
);
800 memset(req
->sense
, 0, 18);
801 req
->sense
[0] = 0x70;
802 req
->sense
[2] = sense
.key
;
804 req
->sense
[12] = sense
.asc
;
805 req
->sense
[13] = sense
.ascq
;
809 static void scsi_req_enqueue_internal(SCSIRequest
*req
)
811 assert(!req
->enqueued
);
813 if (req
->bus
->info
->get_sg_list
) {
814 req
->sg
= req
->bus
->info
->get_sg_list(req
);
818 req
->enqueued
= true;
819 QTAILQ_INSERT_TAIL(&req
->dev
->requests
, req
, next
);
822 int32_t scsi_req_enqueue(SCSIRequest
*req
)
827 scsi_req_enqueue_internal(req
);
829 rc
= req
->ops
->send_command(req
, req
->cmd
.buf
);
834 static void scsi_req_dequeue(SCSIRequest
*req
)
836 trace_scsi_req_dequeue(req
->dev
->id
, req
->lun
, req
->tag
);
839 QTAILQ_REMOVE(&req
->dev
->requests
, req
, next
);
840 req
->enqueued
= false;
845 static int scsi_get_performance_length(int num_desc
, int type
, int data_type
)
847 /* MMC-6, paragraph 6.7. */
850 if ((data_type
& 3) == 0) {
851 /* Each descriptor is as in Table 295 - Nominal performance. */
852 return 16 * num_desc
+ 8;
854 /* Each descriptor is as in Table 296 - Exceptions. */
855 return 6 * num_desc
+ 8;
860 return 8 * num_desc
+ 8;
862 return 2048 * num_desc
+ 8;
864 return 16 * num_desc
+ 8;
870 static int ata_passthrough_xfer_unit(SCSIDevice
*dev
, uint8_t *buf
)
872 int byte_block
= (buf
[2] >> 2) & 0x1;
873 int type
= (buf
[2] >> 4) & 0x1;
878 xfer_unit
= dev
->blocksize
;
889 static int ata_passthrough_12_xfer(SCSIDevice
*dev
, uint8_t *buf
)
891 int length
= buf
[2] & 0x3;
893 int unit
= ata_passthrough_xfer_unit(dev
, buf
);
897 case 3: /* USB-specific. */
912 static int ata_passthrough_16_xfer(SCSIDevice
*dev
, uint8_t *buf
)
914 int extend
= buf
[1] & 0x1;
915 int length
= buf
[2] & 0x3;
917 int unit
= ata_passthrough_xfer_unit(dev
, buf
);
921 case 3: /* USB-specific. */
927 xfer
|= (extend
? buf
[3] << 8 : 0);
931 xfer
|= (extend
? buf
[5] << 8 : 0);
938 uint32_t scsi_data_cdb_xfer(uint8_t *buf
)
940 if ((buf
[0] >> 5) == 0 && buf
[4] == 0) {
943 return scsi_cdb_xfer(buf
);
947 uint32_t scsi_cdb_xfer(uint8_t *buf
)
949 switch (buf
[0] >> 5) {
955 return lduw_be_p(&buf
[7]);
958 return ldl_be_p(&buf
[10]) & 0xffffffffULL
;
961 return ldl_be_p(&buf
[6]) & 0xffffffffULL
;
968 static int scsi_req_xfer(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
970 cmd
->xfer
= scsi_cdb_xfer(buf
);
972 case TEST_UNIT_READY
:
976 case WRITE_FILEMARKS
:
977 case WRITE_FILEMARKS_16
:
982 case ALLOW_MEDIUM_REMOVAL
:
984 case SYNCHRONIZE_CACHE
:
985 case SYNCHRONIZE_CACHE_16
:
987 case LOCK_UNLOCK_CACHE
:
996 case ALLOW_OVERWRITE
:
1002 if ((buf
[1] & 2) == 0) {
1004 } else if ((buf
[1] & 4) != 0) {
1007 cmd
->xfer
*= dev
->blocksize
;
1013 cmd
->xfer
= dev
->blocksize
;
1015 case READ_CAPACITY_10
:
1018 case READ_BLOCK_LIMITS
:
1021 case SEND_VOLUME_TAG
:
1022 /* GPCMD_SET_STREAMING from multimedia commands. */
1023 if (dev
->type
== TYPE_ROM
) {
1024 cmd
->xfer
= buf
[10] | (buf
[9] << 8);
1026 cmd
->xfer
= buf
[9] | (buf
[8] << 8);
1030 /* length 0 means 256 blocks */
1031 if (cmd
->xfer
== 0) {
1036 case WRITE_VERIFY_10
:
1038 case WRITE_VERIFY_12
:
1040 case WRITE_VERIFY_16
:
1041 cmd
->xfer
*= dev
->blocksize
;
1045 /* length 0 means 256 blocks */
1046 if (cmd
->xfer
== 0) {
1053 cmd
->xfer
*= dev
->blocksize
;
1056 /* MMC mandates the parameter list to be 12-bytes long. Parameters
1057 * for block devices are restricted to the header right now. */
1058 if (dev
->type
== TYPE_ROM
&& (buf
[1] & 16)) {
1061 cmd
->xfer
= (buf
[1] & 16) == 0 ? 0 : (buf
[1] & 32 ? 8 : 4);
1065 case RECEIVE_DIAGNOSTIC
:
1066 case SEND_DIAGNOSTIC
:
1067 cmd
->xfer
= buf
[4] | (buf
[3] << 8);
1072 case SEND_CUE_SHEET
:
1073 cmd
->xfer
= buf
[8] | (buf
[7] << 8) | (buf
[6] << 16);
1075 case PERSISTENT_RESERVE_OUT
:
1076 cmd
->xfer
= ldl_be_p(&buf
[5]) & 0xffffffffULL
;
1079 if (dev
->type
== TYPE_ROM
) {
1080 /* MMC command GET PERFORMANCE. */
1081 cmd
->xfer
= scsi_get_performance_length(buf
[9] | (buf
[8] << 8),
1082 buf
[10], buf
[1] & 0x1f);
1085 case MECHANISM_STATUS
:
1086 case READ_DVD_STRUCTURE
:
1087 case SEND_DVD_STRUCTURE
:
1088 case MAINTENANCE_OUT
:
1089 case MAINTENANCE_IN
:
1090 if (dev
->type
== TYPE_ROM
) {
1091 /* GPCMD_REPORT_KEY and GPCMD_SEND_KEY from multi media commands */
1092 cmd
->xfer
= buf
[9] | (buf
[8] << 8);
1095 case ATA_PASSTHROUGH_12
:
1096 if (dev
->type
== TYPE_ROM
) {
1097 /* BLANK command of MMC */
1100 cmd
->xfer
= ata_passthrough_12_xfer(dev
, buf
);
1103 case ATA_PASSTHROUGH_16
:
1104 cmd
->xfer
= ata_passthrough_16_xfer(dev
, buf
);
1110 static int scsi_req_stream_xfer(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
1113 /* stream commands */
1120 case RECOVER_BUFFERED_DATA
:
1122 cmd
->xfer
= buf
[4] | (buf
[3] << 8) | (buf
[2] << 16);
1123 if (buf
[1] & 0x01) { /* fixed */
1124 cmd
->xfer
*= dev
->blocksize
;
1128 case READ_REVERSE_16
:
1131 cmd
->xfer
= buf
[14] | (buf
[13] << 8) | (buf
[12] << 16);
1132 if (buf
[1] & 0x01) { /* fixed */
1133 cmd
->xfer
*= dev
->blocksize
;
1141 cmd
->xfer
= buf
[13] | (buf
[12] << 8);
1144 switch (buf
[1] & 0x1f) /* operation code */ {
1145 case SHORT_FORM_BLOCK_ID
:
1146 case SHORT_FORM_VENDOR_SPECIFIC
:
1153 cmd
->xfer
= buf
[8] | (buf
[7] << 8);
1161 cmd
->xfer
= buf
[4] | (buf
[3] << 8);
1163 /* generic commands */
1165 return scsi_req_xfer(cmd
, dev
, buf
);
1170 static int scsi_req_medium_changer_xfer(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
1173 /* medium changer commands */
1174 case EXCHANGE_MEDIUM
:
1175 case INITIALIZE_ELEMENT_STATUS
:
1176 case INITIALIZE_ELEMENT_STATUS_WITH_RANGE
:
1178 case POSITION_TO_ELEMENT
:
1181 case READ_ELEMENT_STATUS
:
1182 cmd
->xfer
= buf
[9] | (buf
[8] << 8) | (buf
[7] << 16);
1185 /* generic commands */
1187 return scsi_req_xfer(cmd
, dev
, buf
);
1192 static int scsi_req_scanner_length(SCSICommand
*cmd
, SCSIDevice
*dev
, uint8_t *buf
)
1195 /* Scanner commands */
1196 case OBJECT_POSITION
:
1206 cmd
->xfer
= buf
[8] | (buf
[7] << 8) | (buf
[6] << 16);
1209 /* GET_DATA_BUFFER_STATUS xfer handled by scsi_req_xfer */
1210 return scsi_req_xfer(cmd
, dev
, buf
);
1216 static void scsi_cmd_xfer_mode(SCSICommand
*cmd
)
1219 cmd
->mode
= SCSI_XFER_NONE
;
1222 switch (cmd
->buf
[0]) {
1225 case WRITE_VERIFY_10
:
1227 case WRITE_VERIFY_12
:
1229 case WRITE_VERIFY_16
:
1236 case CHANGE_DEFINITION
:
1239 case MODE_SELECT_10
:
1240 case SEND_DIAGNOSTIC
:
1243 case REASSIGN_BLOCKS
:
1252 case SEARCH_HIGH_12
:
1253 case SEARCH_EQUAL_12
:
1256 case SEND_VOLUME_TAG
:
1257 case SEND_CUE_SHEET
:
1258 case SEND_DVD_STRUCTURE
:
1259 case PERSISTENT_RESERVE_OUT
:
1260 case MAINTENANCE_OUT
:
1263 /* SCAN conflicts with START_STOP. START_STOP has cmd->xfer set to 0 for
1264 * non-scanner devices, so we only get here for SCAN and not for START_STOP.
1266 cmd
->mode
= SCSI_XFER_TO_DEV
;
1268 case ATA_PASSTHROUGH_12
:
1269 case ATA_PASSTHROUGH_16
:
1271 cmd
->mode
= (cmd
->buf
[2] & 0x8) ?
1272 SCSI_XFER_FROM_DEV
: SCSI_XFER_TO_DEV
;
1275 cmd
->mode
= SCSI_XFER_FROM_DEV
;
1280 static uint64_t scsi_cmd_lba(SCSICommand
*cmd
)
1282 uint8_t *buf
= cmd
->buf
;
1285 switch (buf
[0] >> 5) {
1287 lba
= ldl_be_p(&buf
[0]) & 0x1fffff;
1292 lba
= ldl_be_p(&buf
[2]) & 0xffffffffULL
;
1295 lba
= ldq_be_p(&buf
[2]);
1304 int scsi_cdb_length(uint8_t *buf
) {
1307 switch (buf
[0] >> 5) {
1327 int scsi_req_parse_cdb(SCSIDevice
*dev
, SCSICommand
*cmd
, uint8_t *buf
)
1333 len
= scsi_cdb_length(buf
);
1339 switch (dev
->type
) {
1341 rc
= scsi_req_stream_xfer(cmd
, dev
, buf
);
1343 case TYPE_MEDIUM_CHANGER
:
1344 rc
= scsi_req_medium_changer_xfer(cmd
, dev
, buf
);
1347 rc
= scsi_req_scanner_length(cmd
, dev
, buf
);
1350 rc
= scsi_req_xfer(cmd
, dev
, buf
);
1357 memcpy(cmd
->buf
, buf
, cmd
->len
);
1358 scsi_cmd_xfer_mode(cmd
);
1359 cmd
->lba
= scsi_cmd_lba(cmd
);
1363 void scsi_device_report_change(SCSIDevice
*dev
, SCSISense sense
)
1365 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, dev
->qdev
.parent_bus
);
1367 scsi_device_set_ua(dev
, sense
);
1368 if (bus
->info
->change
) {
1369 bus
->info
->change(bus
, dev
, sense
);
1374 * Predefined sense codes
1377 /* No sense data available */
1378 const struct SCSISense sense_code_NO_SENSE
= {
1379 .key
= NO_SENSE
, .asc
= 0x00 , .ascq
= 0x00
1382 /* LUN not ready, Manual intervention required */
1383 const struct SCSISense sense_code_LUN_NOT_READY
= {
1384 .key
= NOT_READY
, .asc
= 0x04, .ascq
= 0x03
1387 /* LUN not ready, Medium not present */
1388 const struct SCSISense sense_code_NO_MEDIUM
= {
1389 .key
= NOT_READY
, .asc
= 0x3a, .ascq
= 0x00
1392 /* LUN not ready, medium removal prevented */
1393 const struct SCSISense sense_code_NOT_READY_REMOVAL_PREVENTED
= {
1394 .key
= NOT_READY
, .asc
= 0x53, .ascq
= 0x02
1397 /* Hardware error, internal target failure */
1398 const struct SCSISense sense_code_TARGET_FAILURE
= {
1399 .key
= HARDWARE_ERROR
, .asc
= 0x44, .ascq
= 0x00
1402 /* Illegal request, invalid command operation code */
1403 const struct SCSISense sense_code_INVALID_OPCODE
= {
1404 .key
= ILLEGAL_REQUEST
, .asc
= 0x20, .ascq
= 0x00
1407 /* Illegal request, LBA out of range */
1408 const struct SCSISense sense_code_LBA_OUT_OF_RANGE
= {
1409 .key
= ILLEGAL_REQUEST
, .asc
= 0x21, .ascq
= 0x00
1412 /* Illegal request, Invalid field in CDB */
1413 const struct SCSISense sense_code_INVALID_FIELD
= {
1414 .key
= ILLEGAL_REQUEST
, .asc
= 0x24, .ascq
= 0x00
1417 /* Illegal request, Invalid field in parameter list */
1418 const struct SCSISense sense_code_INVALID_PARAM
= {
1419 .key
= ILLEGAL_REQUEST
, .asc
= 0x26, .ascq
= 0x00
1422 /* Illegal request, Parameter list length error */
1423 const struct SCSISense sense_code_INVALID_PARAM_LEN
= {
1424 .key
= ILLEGAL_REQUEST
, .asc
= 0x1a, .ascq
= 0x00
1427 /* Illegal request, LUN not supported */
1428 const struct SCSISense sense_code_LUN_NOT_SUPPORTED
= {
1429 .key
= ILLEGAL_REQUEST
, .asc
= 0x25, .ascq
= 0x00
1432 /* Illegal request, Saving parameters not supported */
1433 const struct SCSISense sense_code_SAVING_PARAMS_NOT_SUPPORTED
= {
1434 .key
= ILLEGAL_REQUEST
, .asc
= 0x39, .ascq
= 0x00
1437 /* Illegal request, Incompatible medium installed */
1438 const struct SCSISense sense_code_INCOMPATIBLE_FORMAT
= {
1439 .key
= ILLEGAL_REQUEST
, .asc
= 0x30, .ascq
= 0x00
1442 /* Illegal request, medium removal prevented */
1443 const struct SCSISense sense_code_ILLEGAL_REQ_REMOVAL_PREVENTED
= {
1444 .key
= ILLEGAL_REQUEST
, .asc
= 0x53, .ascq
= 0x02
1447 /* Illegal request, Invalid Transfer Tag */
1448 const struct SCSISense sense_code_INVALID_TAG
= {
1449 .key
= ILLEGAL_REQUEST
, .asc
= 0x4b, .ascq
= 0x01
1452 /* Command aborted, I/O process terminated */
1453 const struct SCSISense sense_code_IO_ERROR
= {
1454 .key
= ABORTED_COMMAND
, .asc
= 0x00, .ascq
= 0x06
1457 /* Command aborted, I_T Nexus loss occurred */
1458 const struct SCSISense sense_code_I_T_NEXUS_LOSS
= {
1459 .key
= ABORTED_COMMAND
, .asc
= 0x29, .ascq
= 0x07
1462 /* Command aborted, Logical Unit failure */
1463 const struct SCSISense sense_code_LUN_FAILURE
= {
1464 .key
= ABORTED_COMMAND
, .asc
= 0x3e, .ascq
= 0x01
1467 /* Command aborted, Overlapped Commands Attempted */
1468 const struct SCSISense sense_code_OVERLAPPED_COMMANDS
= {
1469 .key
= ABORTED_COMMAND
, .asc
= 0x4e, .ascq
= 0x00
1472 /* Unit attention, Capacity data has changed */
1473 const struct SCSISense sense_code_CAPACITY_CHANGED
= {
1474 .key
= UNIT_ATTENTION
, .asc
= 0x2a, .ascq
= 0x09
1477 /* Unit attention, Power on, reset or bus device reset occurred */
1478 const struct SCSISense sense_code_RESET
= {
1479 .key
= UNIT_ATTENTION
, .asc
= 0x29, .ascq
= 0x00
1482 /* Unit attention, No medium */
1483 const struct SCSISense sense_code_UNIT_ATTENTION_NO_MEDIUM
= {
1484 .key
= UNIT_ATTENTION
, .asc
= 0x3a, .ascq
= 0x00
1487 /* Unit attention, Medium may have changed */
1488 const struct SCSISense sense_code_MEDIUM_CHANGED
= {
1489 .key
= UNIT_ATTENTION
, .asc
= 0x28, .ascq
= 0x00
1492 /* Unit attention, Reported LUNs data has changed */
1493 const struct SCSISense sense_code_REPORTED_LUNS_CHANGED
= {
1494 .key
= UNIT_ATTENTION
, .asc
= 0x3f, .ascq
= 0x0e
1497 /* Unit attention, Device internal reset */
1498 const struct SCSISense sense_code_DEVICE_INTERNAL_RESET
= {
1499 .key
= UNIT_ATTENTION
, .asc
= 0x29, .ascq
= 0x04
1502 /* Data Protection, Write Protected */
1503 const struct SCSISense sense_code_WRITE_PROTECTED
= {
1504 .key
= DATA_PROTECT
, .asc
= 0x27, .ascq
= 0x00
1507 /* Data Protection, Space Allocation Failed Write Protect */
1508 const struct SCSISense sense_code_SPACE_ALLOC_FAILED
= {
1509 .key
= DATA_PROTECT
, .asc
= 0x27, .ascq
= 0x07
1515 * Convert between fixed and descriptor sense buffers
1517 int scsi_build_sense(uint8_t *in_buf
, int in_len
,
1518 uint8_t *buf
, int len
, bool fixed
)
1522 if (!fixed
&& len
< 8) {
1527 sense
.key
= NO_SENSE
;
1531 fixed_in
= (in_buf
[0] & 2) == 0;
1533 if (fixed
== fixed_in
) {
1534 memcpy(buf
, in_buf
, MIN(len
, in_len
));
1535 return MIN(len
, in_len
);
1539 sense
.key
= in_buf
[2];
1540 sense
.asc
= in_buf
[12];
1541 sense
.ascq
= in_buf
[13];
1543 sense
.key
= in_buf
[1];
1544 sense
.asc
= in_buf
[2];
1545 sense
.ascq
= in_buf
[3];
1549 memset(buf
, 0, len
);
1551 /* Return fixed format sense buffer */
1555 buf
[12] = sense
.asc
;
1556 buf
[13] = sense
.ascq
;
1557 return MIN(len
, SCSI_SENSE_LEN
);
1559 /* Return descriptor format sense buffer */
1563 buf
[3] = sense
.ascq
;
1568 const char *scsi_command_name(uint8_t cmd
)
1570 static const char *names
[] = {
1571 [ TEST_UNIT_READY
] = "TEST_UNIT_READY",
1572 [ REWIND
] = "REWIND",
1573 [ REQUEST_SENSE
] = "REQUEST_SENSE",
1574 [ FORMAT_UNIT
] = "FORMAT_UNIT",
1575 [ READ_BLOCK_LIMITS
] = "READ_BLOCK_LIMITS",
1576 [ REASSIGN_BLOCKS
] = "REASSIGN_BLOCKS/INITIALIZE ELEMENT STATUS",
1577 /* LOAD_UNLOAD and INITIALIZE_ELEMENT_STATUS use the same operation code */
1578 [ READ_6
] = "READ_6",
1579 [ WRITE_6
] = "WRITE_6",
1580 [ SET_CAPACITY
] = "SET_CAPACITY",
1581 [ READ_REVERSE
] = "READ_REVERSE",
1582 [ WRITE_FILEMARKS
] = "WRITE_FILEMARKS",
1583 [ SPACE
] = "SPACE",
1584 [ INQUIRY
] = "INQUIRY",
1585 [ RECOVER_BUFFERED_DATA
] = "RECOVER_BUFFERED_DATA",
1586 [ MAINTENANCE_IN
] = "MAINTENANCE_IN",
1587 [ MAINTENANCE_OUT
] = "MAINTENANCE_OUT",
1588 [ MODE_SELECT
] = "MODE_SELECT",
1589 [ RESERVE
] = "RESERVE",
1590 [ RELEASE
] = "RELEASE",
1592 [ ERASE
] = "ERASE",
1593 [ MODE_SENSE
] = "MODE_SENSE",
1594 [ START_STOP
] = "START_STOP/LOAD_UNLOAD",
1595 /* LOAD_UNLOAD and START_STOP use the same operation code */
1596 [ RECEIVE_DIAGNOSTIC
] = "RECEIVE_DIAGNOSTIC",
1597 [ SEND_DIAGNOSTIC
] = "SEND_DIAGNOSTIC",
1598 [ ALLOW_MEDIUM_REMOVAL
] = "ALLOW_MEDIUM_REMOVAL",
1599 [ READ_CAPACITY_10
] = "READ_CAPACITY_10",
1600 [ READ_10
] = "READ_10",
1601 [ WRITE_10
] = "WRITE_10",
1602 [ SEEK_10
] = "SEEK_10/POSITION_TO_ELEMENT",
1603 /* SEEK_10 and POSITION_TO_ELEMENT use the same operation code */
1604 [ WRITE_VERIFY_10
] = "WRITE_VERIFY_10",
1605 [ VERIFY_10
] = "VERIFY_10",
1606 [ SEARCH_HIGH
] = "SEARCH_HIGH",
1607 [ SEARCH_EQUAL
] = "SEARCH_EQUAL",
1608 [ SEARCH_LOW
] = "SEARCH_LOW",
1609 [ SET_LIMITS
] = "SET_LIMITS",
1610 [ PRE_FETCH
] = "PRE_FETCH/READ_POSITION",
1611 /* READ_POSITION and PRE_FETCH use the same operation code */
1612 [ SYNCHRONIZE_CACHE
] = "SYNCHRONIZE_CACHE",
1613 [ LOCK_UNLOCK_CACHE
] = "LOCK_UNLOCK_CACHE",
1614 [ READ_DEFECT_DATA
] = "READ_DEFECT_DATA/INITIALIZE_ELEMENT_STATUS_WITH_RANGE",
1615 /* READ_DEFECT_DATA and INITIALIZE_ELEMENT_STATUS_WITH_RANGE use the same operation code */
1616 [ MEDIUM_SCAN
] = "MEDIUM_SCAN",
1617 [ COMPARE
] = "COMPARE",
1618 [ COPY_VERIFY
] = "COPY_VERIFY",
1619 [ WRITE_BUFFER
] = "WRITE_BUFFER",
1620 [ READ_BUFFER
] = "READ_BUFFER",
1621 [ UPDATE_BLOCK
] = "UPDATE_BLOCK",
1622 [ READ_LONG_10
] = "READ_LONG_10",
1623 [ WRITE_LONG_10
] = "WRITE_LONG_10",
1624 [ CHANGE_DEFINITION
] = "CHANGE_DEFINITION",
1625 [ WRITE_SAME_10
] = "WRITE_SAME_10",
1626 [ UNMAP
] = "UNMAP",
1627 [ READ_TOC
] = "READ_TOC",
1628 [ REPORT_DENSITY_SUPPORT
] = "REPORT_DENSITY_SUPPORT",
1629 [ SANITIZE
] = "SANITIZE",
1630 [ GET_CONFIGURATION
] = "GET_CONFIGURATION",
1631 [ LOG_SELECT
] = "LOG_SELECT",
1632 [ LOG_SENSE
] = "LOG_SENSE",
1633 [ MODE_SELECT_10
] = "MODE_SELECT_10",
1634 [ RESERVE_10
] = "RESERVE_10",
1635 [ RELEASE_10
] = "RELEASE_10",
1636 [ MODE_SENSE_10
] = "MODE_SENSE_10",
1637 [ PERSISTENT_RESERVE_IN
] = "PERSISTENT_RESERVE_IN",
1638 [ PERSISTENT_RESERVE_OUT
] = "PERSISTENT_RESERVE_OUT",
1639 [ WRITE_FILEMARKS_16
] = "WRITE_FILEMARKS_16",
1640 [ EXTENDED_COPY
] = "EXTENDED_COPY",
1641 [ ATA_PASSTHROUGH_16
] = "ATA_PASSTHROUGH_16",
1642 [ ACCESS_CONTROL_IN
] = "ACCESS_CONTROL_IN",
1643 [ ACCESS_CONTROL_OUT
] = "ACCESS_CONTROL_OUT",
1644 [ READ_16
] = "READ_16",
1645 [ COMPARE_AND_WRITE
] = "COMPARE_AND_WRITE",
1646 [ WRITE_16
] = "WRITE_16",
1647 [ WRITE_VERIFY_16
] = "WRITE_VERIFY_16",
1648 [ VERIFY_16
] = "VERIFY_16",
1649 [ PRE_FETCH_16
] = "PRE_FETCH_16",
1650 [ SYNCHRONIZE_CACHE_16
] = "SPACE_16/SYNCHRONIZE_CACHE_16",
1651 /* SPACE_16 and SYNCHRONIZE_CACHE_16 use the same operation code */
1652 [ LOCATE_16
] = "LOCATE_16",
1653 [ WRITE_SAME_16
] = "ERASE_16/WRITE_SAME_16",
1654 /* ERASE_16 and WRITE_SAME_16 use the same operation code */
1655 [ SERVICE_ACTION_IN_16
] = "SERVICE_ACTION_IN_16",
1656 [ WRITE_LONG_16
] = "WRITE_LONG_16",
1657 [ REPORT_LUNS
] = "REPORT_LUNS",
1658 [ ATA_PASSTHROUGH_12
] = "BLANK/ATA_PASSTHROUGH_12",
1659 [ MOVE_MEDIUM
] = "MOVE_MEDIUM",
1660 [ EXCHANGE_MEDIUM
] = "EXCHANGE MEDIUM",
1661 [ READ_12
] = "READ_12",
1662 [ WRITE_12
] = "WRITE_12",
1663 [ ERASE_12
] = "ERASE_12/GET_PERFORMANCE",
1664 /* ERASE_12 and GET_PERFORMANCE use the same operation code */
1665 [ SERVICE_ACTION_IN_12
] = "SERVICE_ACTION_IN_12",
1666 [ WRITE_VERIFY_12
] = "WRITE_VERIFY_12",
1667 [ VERIFY_12
] = "VERIFY_12",
1668 [ SEARCH_HIGH_12
] = "SEARCH_HIGH_12",
1669 [ SEARCH_EQUAL_12
] = "SEARCH_EQUAL_12",
1670 [ SEARCH_LOW_12
] = "SEARCH_LOW_12",
1671 [ READ_ELEMENT_STATUS
] = "READ_ELEMENT_STATUS",
1672 [ SEND_VOLUME_TAG
] = "SEND_VOLUME_TAG/SET_STREAMING",
1673 /* SEND_VOLUME_TAG and SET_STREAMING use the same operation code */
1674 [ READ_CD
] = "READ_CD",
1675 [ READ_DEFECT_DATA_12
] = "READ_DEFECT_DATA_12",
1676 [ READ_DVD_STRUCTURE
] = "READ_DVD_STRUCTURE",
1677 [ RESERVE_TRACK
] = "RESERVE_TRACK",
1678 [ SEND_CUE_SHEET
] = "SEND_CUE_SHEET",
1679 [ SEND_DVD_STRUCTURE
] = "SEND_DVD_STRUCTURE",
1680 [ SET_CD_SPEED
] = "SET_CD_SPEED",
1681 [ SET_READ_AHEAD
] = "SET_READ_AHEAD",
1682 [ ALLOW_OVERWRITE
] = "ALLOW_OVERWRITE",
1683 [ MECHANISM_STATUS
] = "MECHANISM_STATUS",
1684 [ GET_EVENT_STATUS_NOTIFICATION
] = "GET_EVENT_STATUS_NOTIFICATION",
1685 [ READ_DISC_INFORMATION
] = "READ_DISC_INFORMATION",
1688 if (cmd
>= ARRAY_SIZE(names
) || names
[cmd
] == NULL
)
1693 SCSIRequest
*scsi_req_ref(SCSIRequest
*req
)
1695 assert(req
->refcount
> 0);
1700 void scsi_req_unref(SCSIRequest
*req
)
1702 assert(req
->refcount
> 0);
1703 if (--req
->refcount
== 0) {
1704 BusState
*qbus
= req
->dev
->qdev
.parent_bus
;
1705 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, qbus
);
1707 if (bus
->info
->free_request
&& req
->hba_private
) {
1708 bus
->info
->free_request(bus
, req
->hba_private
);
1710 if (req
->ops
->free_req
) {
1711 req
->ops
->free_req(req
);
1713 object_unref(OBJECT(req
->dev
));
1714 object_unref(OBJECT(qbus
->parent
));
1719 /* Tell the device that we finished processing this chunk of I/O. It
1720 will start the next chunk or complete the command. */
1721 void scsi_req_continue(SCSIRequest
*req
)
1723 if (req
->io_canceled
) {
1724 trace_scsi_req_continue_canceled(req
->dev
->id
, req
->lun
, req
->tag
);
1727 trace_scsi_req_continue(req
->dev
->id
, req
->lun
, req
->tag
);
1728 if (req
->cmd
.mode
== SCSI_XFER_TO_DEV
) {
1729 req
->ops
->write_data(req
);
1731 req
->ops
->read_data(req
);
1735 /* Called by the devices when data is ready for the HBA. The HBA should
1736 start a DMA operation to read or fill the device's data buffer.
1737 Once it completes, calling scsi_req_continue will restart I/O. */
1738 void scsi_req_data(SCSIRequest
*req
, int len
)
1741 if (req
->io_canceled
) {
1742 trace_scsi_req_data_canceled(req
->dev
->id
, req
->lun
, req
->tag
, len
);
1745 trace_scsi_req_data(req
->dev
->id
, req
->lun
, req
->tag
, len
);
1746 assert(req
->cmd
.mode
!= SCSI_XFER_NONE
);
1749 req
->bus
->info
->transfer_data(req
, len
);
1753 /* If the device calls scsi_req_data and the HBA specified a
1754 * scatter/gather list, the transfer has to happen in a single
1756 assert(!req
->dma_started
);
1757 req
->dma_started
= true;
1759 buf
= scsi_req_get_buf(req
);
1760 if (req
->cmd
.mode
== SCSI_XFER_FROM_DEV
) {
1761 req
->resid
= dma_buf_read(buf
, len
, req
->sg
);
1763 req
->resid
= dma_buf_write(buf
, len
, req
->sg
);
1765 scsi_req_continue(req
);
1768 void scsi_req_print(SCSIRequest
*req
)
1773 fprintf(fp
, "[%s id=%d] %s",
1774 req
->dev
->qdev
.parent_bus
->name
,
1776 scsi_command_name(req
->cmd
.buf
[0]));
1777 for (i
= 1; i
< req
->cmd
.len
; i
++) {
1778 fprintf(fp
, " 0x%02x", req
->cmd
.buf
[i
]);
1780 switch (req
->cmd
.mode
) {
1781 case SCSI_XFER_NONE
:
1782 fprintf(fp
, " - none\n");
1784 case SCSI_XFER_FROM_DEV
:
1785 fprintf(fp
, " - from-dev len=%zd\n", req
->cmd
.xfer
);
1787 case SCSI_XFER_TO_DEV
:
1788 fprintf(fp
, " - to-dev len=%zd\n", req
->cmd
.xfer
);
1791 fprintf(fp
, " - Oops\n");
1796 void scsi_req_complete(SCSIRequest
*req
, int status
)
1798 assert(req
->status
== -1);
1799 req
->status
= status
;
1801 assert(req
->sense_len
<= sizeof(req
->sense
));
1802 if (status
== GOOD
) {
1806 if (req
->sense_len
) {
1807 memcpy(req
->dev
->sense
, req
->sense
, req
->sense_len
);
1808 req
->dev
->sense_len
= req
->sense_len
;
1809 req
->dev
->sense_is_ua
= (req
->ops
== &reqops_unit_attention
);
1811 req
->dev
->sense_len
= 0;
1812 req
->dev
->sense_is_ua
= false;
1816 * Unit attention state is now stored in the device's sense buffer
1817 * if the HBA didn't do autosense. Clear the pending unit attention
1820 scsi_clear_unit_attention(req
);
1823 scsi_req_dequeue(req
);
1824 req
->bus
->info
->complete(req
, req
->status
, req
->resid
);
1826 /* Cancelled requests might end up being completed instead of cancelled */
1827 notifier_list_notify(&req
->cancel_notifiers
, req
);
1828 scsi_req_unref(req
);
1831 /* Called by the devices when the request is canceled. */
1832 void scsi_req_cancel_complete(SCSIRequest
*req
)
1834 assert(req
->io_canceled
);
1835 if (req
->bus
->info
->cancel
) {
1836 req
->bus
->info
->cancel(req
);
1838 notifier_list_notify(&req
->cancel_notifiers
, req
);
1839 scsi_req_unref(req
);
1842 /* Cancel @req asynchronously. @notifier is added to @req's cancellation
1843 * notifier list, the bus will be notified the requests cancellation is
1846 void scsi_req_cancel_async(SCSIRequest
*req
, Notifier
*notifier
)
1848 trace_scsi_req_cancel(req
->dev
->id
, req
->lun
, req
->tag
);
1850 notifier_list_add(&req
->cancel_notifiers
, notifier
);
1852 if (req
->io_canceled
) {
1853 /* A blk_aio_cancel_async is pending; when it finishes,
1854 * scsi_req_cancel_complete will be called and will
1855 * call the notifier we just added. Just wait for that.
1860 /* Dropped in scsi_req_cancel_complete. */
1862 scsi_req_dequeue(req
);
1863 req
->io_canceled
= true;
1865 blk_aio_cancel_async(req
->aiocb
);
1867 scsi_req_cancel_complete(req
);
1871 void scsi_req_cancel(SCSIRequest
*req
)
1873 trace_scsi_req_cancel(req
->dev
->id
, req
->lun
, req
->tag
);
1874 if (!req
->enqueued
) {
1877 assert(!req
->io_canceled
);
1878 /* Dropped in scsi_req_cancel_complete. */
1880 scsi_req_dequeue(req
);
1881 req
->io_canceled
= true;
1883 blk_aio_cancel(req
->aiocb
);
1885 scsi_req_cancel_complete(req
);
1889 static int scsi_ua_precedence(SCSISense sense
)
1891 if (sense
.key
!= UNIT_ATTENTION
) {
1894 if (sense
.asc
== 0x29 && sense
.ascq
== 0x04) {
1895 /* DEVICE INTERNAL RESET goes with POWER ON OCCURRED */
1897 } else if (sense
.asc
== 0x3F && sense
.ascq
== 0x01) {
1898 /* MICROCODE HAS BEEN CHANGED goes with SCSI BUS RESET OCCURRED */
1900 } else if (sense
.asc
== 0x29 && (sense
.ascq
== 0x05 || sense
.ascq
== 0x06)) {
1901 /* These two go with "all others". */
1903 } else if (sense
.asc
== 0x29 && sense
.ascq
<= 0x07) {
1904 /* POWER ON, RESET OR BUS DEVICE RESET OCCURRED = 0
1905 * POWER ON OCCURRED = 1
1906 * SCSI BUS RESET OCCURRED = 2
1907 * BUS DEVICE RESET FUNCTION OCCURRED = 3
1908 * I_T NEXUS LOSS OCCURRED = 7
1911 } else if (sense
.asc
== 0x2F && sense
.ascq
== 0x01) {
1912 /* COMMANDS CLEARED BY POWER LOSS NOTIFICATION */
1915 return (sense
.asc
<< 8) | sense
.ascq
;
1918 void scsi_device_set_ua(SCSIDevice
*sdev
, SCSISense sense
)
1921 if (sense
.key
!= UNIT_ATTENTION
) {
1924 trace_scsi_device_set_ua(sdev
->id
, sdev
->lun
, sense
.key
,
1925 sense
.asc
, sense
.ascq
);
1928 * Override a pre-existing unit attention condition, except for a more
1929 * important reset condition.
1931 prec1
= scsi_ua_precedence(sdev
->unit_attention
);
1932 prec2
= scsi_ua_precedence(sense
);
1933 if (prec2
< prec1
) {
1934 sdev
->unit_attention
= sense
;
1938 void scsi_device_purge_requests(SCSIDevice
*sdev
, SCSISense sense
)
1942 aio_context_acquire(blk_get_aio_context(sdev
->conf
.blk
));
1943 while (!QTAILQ_EMPTY(&sdev
->requests
)) {
1944 req
= QTAILQ_FIRST(&sdev
->requests
);
1945 scsi_req_cancel_async(req
, NULL
);
1947 blk_drain(sdev
->conf
.blk
);
1948 aio_context_release(blk_get_aio_context(sdev
->conf
.blk
));
1949 scsi_device_set_ua(sdev
, sense
);
1952 static char *scsibus_get_dev_path(DeviceState
*dev
)
1954 SCSIDevice
*d
= SCSI_DEVICE(dev
);
1955 DeviceState
*hba
= dev
->parent_bus
->parent
;
1959 id
= qdev_get_dev_path(hba
);
1961 path
= g_strdup_printf("%s/%d:%d:%d", id
, d
->channel
, d
->id
, d
->lun
);
1963 path
= g_strdup_printf("%d:%d:%d", d
->channel
, d
->id
, d
->lun
);
1969 static char *scsibus_get_fw_dev_path(DeviceState
*dev
)
1971 SCSIDevice
*d
= SCSI_DEVICE(dev
);
1972 return g_strdup_printf("channel@%x/%s@%x,%x", d
->channel
,
1973 qdev_fw_name(dev
), d
->id
, d
->lun
);
1976 SCSIDevice
*scsi_device_find(SCSIBus
*bus
, int channel
, int id
, int lun
)
1979 SCSIDevice
*target_dev
= NULL
;
1981 QTAILQ_FOREACH_REVERSE(kid
, &bus
->qbus
.children
, ChildrenHead
, sibling
) {
1982 DeviceState
*qdev
= kid
->child
;
1983 SCSIDevice
*dev
= SCSI_DEVICE(qdev
);
1985 if (dev
->channel
== channel
&& dev
->id
== id
) {
1986 if (dev
->lun
== lun
) {
1995 /* SCSI request list. For simplicity, pv points to the whole device */
1997 static int put_scsi_requests(QEMUFile
*f
, void *pv
, size_t size
,
1998 VMStateField
*field
, QJSON
*vmdesc
)
2001 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, s
->qdev
.parent_bus
);
2004 QTAILQ_FOREACH(req
, &s
->requests
, next
) {
2005 assert(!req
->io_canceled
);
2006 assert(req
->status
== -1);
2007 assert(req
->enqueued
);
2009 qemu_put_sbyte(f
, req
->retry
? 1 : 2);
2010 qemu_put_buffer(f
, req
->cmd
.buf
, sizeof(req
->cmd
.buf
));
2011 qemu_put_be32s(f
, &req
->tag
);
2012 qemu_put_be32s(f
, &req
->lun
);
2013 if (bus
->info
->save_request
) {
2014 bus
->info
->save_request(f
, req
);
2016 if (req
->ops
->save_request
) {
2017 req
->ops
->save_request(f
, req
);
2020 qemu_put_sbyte(f
, 0);
2025 static int get_scsi_requests(QEMUFile
*f
, void *pv
, size_t size
,
2026 VMStateField
*field
)
2029 SCSIBus
*bus
= DO_UPCAST(SCSIBus
, qbus
, s
->qdev
.parent_bus
);
2032 while ((sbyte
= qemu_get_sbyte(f
)) > 0) {
2033 uint8_t buf
[SCSI_CMD_BUF_SIZE
];
2038 qemu_get_buffer(f
, buf
, sizeof(buf
));
2039 qemu_get_be32s(f
, &tag
);
2040 qemu_get_be32s(f
, &lun
);
2041 req
= scsi_req_new(s
, tag
, lun
, buf
, NULL
);
2042 req
->retry
= (sbyte
== 1);
2043 if (bus
->info
->load_request
) {
2044 req
->hba_private
= bus
->info
->load_request(f
, req
);
2046 if (req
->ops
->load_request
) {
2047 req
->ops
->load_request(f
, req
);
2050 /* Just restart it later. */
2051 scsi_req_enqueue_internal(req
);
2053 /* At this point, the request will be kept alive by the reference
2054 * added by scsi_req_enqueue_internal, so we can release our reference.
2055 * The HBA of course will add its own reference in the load_request
2056 * callback if it needs to hold on the SCSIRequest.
2058 scsi_req_unref(req
);
2064 static const VMStateInfo vmstate_info_scsi_requests
= {
2065 .name
= "scsi-requests",
2066 .get
= get_scsi_requests
,
2067 .put
= put_scsi_requests
,
2070 static bool scsi_sense_state_needed(void *opaque
)
2072 SCSIDevice
*s
= opaque
;
2074 return s
->sense_len
> SCSI_SENSE_BUF_SIZE_OLD
;
2077 static const VMStateDescription vmstate_scsi_sense_state
= {
2078 .name
= "SCSIDevice/sense",
2080 .minimum_version_id
= 1,
2081 .needed
= scsi_sense_state_needed
,
2082 .fields
= (VMStateField
[]) {
2083 VMSTATE_UINT8_SUB_ARRAY(sense
, SCSIDevice
,
2084 SCSI_SENSE_BUF_SIZE_OLD
,
2085 SCSI_SENSE_BUF_SIZE
- SCSI_SENSE_BUF_SIZE_OLD
),
2086 VMSTATE_END_OF_LIST()
2090 const VMStateDescription vmstate_scsi_device
= {
2091 .name
= "SCSIDevice",
2093 .minimum_version_id
= 1,
2094 .fields
= (VMStateField
[]) {
2095 VMSTATE_UINT8(unit_attention
.key
, SCSIDevice
),
2096 VMSTATE_UINT8(unit_attention
.asc
, SCSIDevice
),
2097 VMSTATE_UINT8(unit_attention
.ascq
, SCSIDevice
),
2098 VMSTATE_BOOL(sense_is_ua
, SCSIDevice
),
2099 VMSTATE_UINT8_SUB_ARRAY(sense
, SCSIDevice
, 0, SCSI_SENSE_BUF_SIZE_OLD
),
2100 VMSTATE_UINT32(sense_len
, SCSIDevice
),
2104 .field_exists
= NULL
,
2105 .size
= 0, /* ouch */
2106 .info
= &vmstate_info_scsi_requests
,
2107 .flags
= VMS_SINGLE
,
2110 VMSTATE_END_OF_LIST()
2112 .subsections
= (const VMStateDescription
*[]) {
2113 &vmstate_scsi_sense_state
,
2118 static void scsi_device_class_init(ObjectClass
*klass
, void *data
)
2120 DeviceClass
*k
= DEVICE_CLASS(klass
);
2121 set_bit(DEVICE_CATEGORY_STORAGE
, k
->categories
);
2122 k
->bus_type
= TYPE_SCSI_BUS
;
2123 k
->realize
= scsi_qdev_realize
;
2124 k
->unrealize
= scsi_qdev_unrealize
;
2125 k
->props
= scsi_props
;
2128 static void scsi_dev_instance_init(Object
*obj
)
2130 DeviceState
*dev
= DEVICE(obj
);
2131 SCSIDevice
*s
= SCSI_DEVICE(dev
);
2133 device_add_bootindex_property(obj
, &s
->conf
.bootindex
,
2138 static const TypeInfo scsi_device_type_info
= {
2139 .name
= TYPE_SCSI_DEVICE
,
2140 .parent
= TYPE_DEVICE
,
2141 .instance_size
= sizeof(SCSIDevice
),
2143 .class_size
= sizeof(SCSIDeviceClass
),
2144 .class_init
= scsi_device_class_init
,
2145 .instance_init
= scsi_dev_instance_init
,
2148 static void scsi_register_types(void)
2150 type_register_static(&scsi_bus_info
);
2151 type_register_static(&scsi_device_type_info
);
2154 type_init(scsi_register_types
)