]> git.proxmox.com Git - mirror_qemu.git/blame - hw/scsi/scsi-bus.c
Merge tag 'for-upstream' of https://repo.or.cz/qemu/kevin into staging
[mirror_qemu.git] / hw / scsi / scsi-bus.c
CommitLineData
a4ab4792 1#include "qemu/osdep.h"
da34e65c 2#include "qapi/error.h"
1de7afc9 3#include "qemu/error-report.h"
0b8fa32f 4#include "qemu/module.h"
922a01a0 5#include "qemu/option.h"
15e09912 6#include "qemu/hw-version.h"
a27bd6c7 7#include "hw/qdev-properties.h"
0d09e41a 8#include "hw/scsi/scsi.h"
ca77ee28 9#include "migration/qemu-file-types.h"
d6454270 10#include "migration/vmstate.h"
08e2c9f1 11#include "scsi/constants.h"
fa1d36df 12#include "sysemu/block-backend.h"
9c17d615 13#include "sysemu/blockdev.h"
2f780b6a 14#include "sysemu/sysemu.h"
54d31236 15#include "sysemu/runstate.h"
5138efec 16#include "trace.h"
9c17d615 17#include "sysemu/dma.h"
f348b6d1 18#include "qemu/cutils.h"
d52affa7 19
baa1bd89 20static char *scsibus_get_dev_path(DeviceState *dev);
db07c0f8 21static char *scsibus_get_fw_dev_path(DeviceState *dev);
71544d30 22static void scsi_req_dequeue(SCSIRequest *req);
84642435
AH
23static uint8_t *scsi_target_alloc_buf(SCSIRequest *req, size_t len);
24static void scsi_target_free_buf(SCSIRequest *req);
db07c0f8 25
d52affa7
GH
26static int next_scsi_bus;
27
8ddf958e
PB
28static SCSIDevice *do_scsi_device_find(SCSIBus *bus,
29 int channel, int id, int lun,
30 bool include_unrealized)
31{
32 BusChild *kid;
33 SCSIDevice *retval = NULL;
34
35 QTAILQ_FOREACH_RCU(kid, &bus->qbus.children, sibling) {
36 DeviceState *qdev = kid->child;
37 SCSIDevice *dev = SCSI_DEVICE(qdev);
38
39 if (dev->channel == channel && dev->id == id) {
40 if (dev->lun == lun) {
41 retval = dev;
42 break;
43 }
44
45 /*
46 * If we don't find exact match (channel/bus/lun),
47 * we will return the first device which matches channel/bus
48 */
49
50 if (!retval) {
51 retval = dev;
52 }
53 }
54 }
55
56 /*
57 * This function might run on the IO thread and we might race against
58 * main thread hot-plugging the device.
59 * We assume that as soon as .realized is set to true we can let
60 * the user access the device.
61 */
62
63 if (retval && !include_unrealized &&
64 !qatomic_load_acquire(&retval->qdev.realized)) {
65 retval = NULL;
66 }
67
68 return retval;
69}
70
71SCSIDevice *scsi_device_find(SCSIBus *bus, int channel, int id, int lun)
72{
73 RCU_READ_LOCK_GUARD();
74 return do_scsi_device_find(bus, channel, id, lun, false);
75}
76
8ff34495
ML
77SCSIDevice *scsi_device_get(SCSIBus *bus, int channel, int id, int lun)
78{
79 SCSIDevice *d;
80 RCU_READ_LOCK_GUARD();
81 d = do_scsi_device_find(bus, channel, id, lun, false);
82 if (d) {
83 object_ref(d);
84 }
85 return d;
86}
87
a818a4b6 88static void scsi_device_realize(SCSIDevice *s, Error **errp)
b9eea3e6
AL
89{
90 SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(s);
a818a4b6
FZ
91 if (sc->realize) {
92 sc->realize(s, errp);
b9eea3e6 93 }
b9eea3e6
AL
94}
95
b69c3c21 96static void scsi_device_unrealize(SCSIDevice *s)
6b98c5aa
SE
97{
98 SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(s);
99 if (sc->unrealize) {
b69c3c21 100 sc->unrealize(s);
6b98c5aa
SE
101 }
102}
103
ff34c32c 104int scsi_bus_parse_cdb(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf,
fe9d8927 105 size_t buf_len, void *hba_private)
ff34c32c
PB
106{
107 SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, dev->qdev.parent_bus);
108 int rc;
109
110 assert(cmd->len == 0);
fe9d8927 111 rc = scsi_req_parse_cdb(dev, cmd, buf, buf_len);
ff34c32c 112 if (bus->info->parse_cdb) {
fe9d8927 113 rc = bus->info->parse_cdb(dev, cmd, buf, buf_len, hba_private);
ff34c32c
PB
114 }
115 return rc;
116}
117
b9eea3e6
AL
118static SCSIRequest *scsi_device_alloc_req(SCSIDevice *s, uint32_t tag, uint32_t lun,
119 uint8_t *buf, void *hba_private)
120{
121 SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(s);
122 if (sc->alloc_req) {
123 return sc->alloc_req(s, tag, lun, buf, hba_private);
124 }
125
126 return NULL;
127}
128
8d72db68 129void scsi_device_unit_attention_reported(SCSIDevice *s)
b9eea3e6
AL
130{
131 SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(s);
132 if (sc->unit_attention_reported) {
133 sc->unit_attention_reported(s);
134 }
135}
136
d52affa7 137/* Create a scsi bus, and attach devices to it. */
739e95f5
PM
138void scsi_bus_init_named(SCSIBus *bus, size_t bus_size, DeviceState *host,
139 const SCSIBusInfo *info, const char *bus_name)
d52affa7 140{
d637e1dc 141 qbus_init(bus, bus_size, TYPE_SCSI_BUS, host, bus_name);
d52affa7 142 bus->busnr = next_scsi_bus++;
afd4030c 143 bus->info = info;
cd7c8660 144 qbus_set_bus_hotplug_handler(BUS(bus));
d52affa7
GH
145}
146
71544d30
PB
147static void scsi_dma_restart_bh(void *opaque)
148{
149 SCSIDevice *s = opaque;
150 SCSIRequest *req, *next;
151
152 qemu_bh_delete(s->bh);
153 s->bh = NULL;
154
1919631e 155 aio_context_acquire(blk_get_aio_context(s->conf.blk));
71544d30
PB
156 QTAILQ_FOREACH_SAFE(req, &s->requests, next, next) {
157 scsi_req_ref(req);
158 if (req->retry) {
159 req->retry = false;
160 switch (req->cmd.mode) {
161 case SCSI_XFER_FROM_DEV:
162 case SCSI_XFER_TO_DEV:
163 scsi_req_continue(req);
164 break;
165 case SCSI_XFER_NONE:
166 scsi_req_dequeue(req);
167 scsi_req_enqueue(req);
168 break;
169 }
170 }
171 scsi_req_unref(req);
172 }
1919631e 173 aio_context_release(blk_get_aio_context(s->conf.blk));
cfd4e363
ML
174 /* Drop the reference that was acquired in scsi_dma_restart_cb */
175 object_unref(OBJECT(s));
71544d30
PB
176}
177
178void scsi_req_retry(SCSIRequest *req)
179{
180 /* No need to save a reference, because scsi_dma_restart_bh just
181 * looks at the request list. */
182 req->retry = true;
183}
184
538f0497 185static void scsi_dma_restart_cb(void *opaque, bool running, RunState state)
71544d30
PB
186{
187 SCSIDevice *s = opaque;
188
189 if (!running) {
190 return;
191 }
192 if (!s->bh) {
d223c104 193 AioContext *ctx = blk_get_aio_context(s->conf.blk);
cfd4e363
ML
194 /* The reference is dropped in scsi_dma_restart_bh.*/
195 object_ref(OBJECT(s));
d223c104 196 s->bh = aio_bh_new(ctx, scsi_dma_restart_bh, s);
71544d30
PB
197 qemu_bh_schedule(s->bh);
198 }
199}
200
42a90a89
PB
201static bool scsi_bus_is_address_free(SCSIBus *bus,
202 int channel, int target, int lun,
203 SCSIDevice **p_dev)
204{
8ddf958e
PB
205 SCSIDevice *d;
206
207 RCU_READ_LOCK_GUARD();
208 d = do_scsi_device_find(bus, channel, target, lun, true);
42a90a89
PB
209 if (d && d->lun == lun) {
210 if (p_dev) {
211 *p_dev = d;
212 }
213 return false;
214 }
215 if (p_dev) {
216 *p_dev = NULL;
217 }
218 return true;
219}
220
221static bool scsi_bus_check_address(BusState *qbus, DeviceState *qdev, Error **errp)
d52affa7 222{
b9eea3e6 223 SCSIDevice *dev = SCSI_DEVICE(qdev);
42a90a89 224 SCSIBus *bus = SCSI_BUS(qbus);
d52affa7 225
0d3545e7 226 if (dev->channel > bus->info->max_channel) {
a818a4b6 227 error_setg(errp, "bad scsi channel id: %d", dev->channel);
42a90a89 228 return false;
0d3545e7 229 }
7e0380b9 230 if (dev->id != -1 && dev->id > bus->info->max_target) {
a818a4b6 231 error_setg(errp, "bad scsi device id: %d", dev->id);
42a90a89 232 return false;
d52affa7 233 }
d3d250bd 234 if (dev->lun != -1 && dev->lun > bus->info->max_lun) {
a818a4b6 235 error_setg(errp, "bad scsi device lun: %d", dev->lun);
42a90a89
PB
236 return false;
237 }
238
239 if (dev->id != -1 && dev->lun != -1) {
240 SCSIDevice *d;
241 if (!scsi_bus_is_address_free(bus, dev->channel, dev->id, dev->lun, &d)) {
242 error_setg(errp, "lun already used by '%s'", d->qdev.id);
243 return false;
244 }
d3d250bd 245 }
d52affa7 246
42a90a89
PB
247 return true;
248}
249
250static void scsi_qdev_realize(DeviceState *qdev, Error **errp)
251{
252 SCSIDevice *dev = SCSI_DEVICE(qdev);
253 SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, dev->qdev.parent_bus);
254 bool is_free;
255 Error *local_err = NULL;
256
7e0380b9
PB
257 if (dev->id == -1) {
258 int id = -1;
259 if (dev->lun == -1) {
260 dev->lun = 0;
261 }
262 do {
42a90a89
PB
263 is_free = scsi_bus_is_address_free(bus, dev->channel, ++id, dev->lun, NULL);
264 } while (!is_free && id < bus->info->max_target);
265 if (!is_free) {
a818a4b6
FZ
266 error_setg(errp, "no free target");
267 return;
7e0380b9
PB
268 }
269 dev->id = id;
270 } else if (dev->lun == -1) {
271 int lun = -1;
272 do {
42a90a89
PB
273 is_free = scsi_bus_is_address_free(bus, dev->channel, dev->id, ++lun, NULL);
274 } while (!is_free && lun < bus->info->max_lun);
275 if (!is_free) {
a818a4b6
FZ
276 error_setg(errp, "no free lun");
277 return;
7e0380b9
PB
278 }
279 dev->lun = lun;
d52affa7 280 }
d52affa7 281
9af99d98 282 QTAILQ_INIT(&dev->requests);
a818a4b6
FZ
283 scsi_device_realize(dev, &local_err);
284 if (local_err) {
285 error_propagate(errp, local_err);
286 return;
71544d30 287 }
1a8c091c
SH
288 dev->vmsentry = qdev_add_vm_change_state_handler(DEVICE(dev),
289 scsi_dma_restart_cb, dev);
01985dcf
GH
290}
291
b69c3c21 292static void scsi_qdev_unrealize(DeviceState *qdev)
01985dcf 293{
b9eea3e6 294 SCSIDevice *dev = SCSI_DEVICE(qdev);
01985dcf 295
71544d30
PB
296 if (dev->vmsentry) {
297 qemu_del_vm_change_state_handler(dev->vmsentry);
298 }
fb7b5c0d
PB
299
300 scsi_device_purge_requests(dev, SENSE_CODE(NO_SENSE));
6b98c5aa 301
b69c3c21 302 scsi_device_unrealize(dev);
6b98c5aa 303
fb7b5c0d 304 blockdev_mark_auto_del(dev->conf.blk);
d52affa7
GH
305}
306
d52affa7 307/* handle legacy '-drive if=scsi,...' cmd line args */
4be74634 308SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockBackend *blk,
76534da7 309 int unit, bool removable, int bootindex,
395b9539 310 bool share_rw,
b8efb36b
KW
311 BlockdevOnError rerror,
312 BlockdevOnError werror,
caad4eb3 313 const char *serial, Error **errp)
d52affa7
GH
314{
315 const char *driver;
22647504 316 char *name;
d52affa7 317 DeviceState *dev;
0d074bf8 318 DriveInfo *dinfo;
d52affa7 319
0d074bf8
PB
320 if (blk_is_sg(blk)) {
321 driver = "scsi-generic";
322 } else {
323 dinfo = blk_legacy_dinfo(blk);
324 if (dinfo && dinfo->media_cd) {
325 driver = "scsi-cd";
326 } else {
327 driver = "scsi-hd";
328 }
329 }
3e80f690 330 dev = qdev_new(driver);
22647504 331 name = g_strdup_printf("legacy[%d]", unit);
d2623129 332 object_property_add_child(OBJECT(bus), name, OBJECT(dev));
22647504
PB
333 g_free(name);
334
d52affa7 335 qdev_prop_set_uint32(dev, "scsi-id", unit);
ce4e7e46 336 if (bootindex >= 0) {
5325cc34 337 object_property_set_int(OBJECT(dev), "bootindex", bootindex,
8dece34f 338 &error_abort);
ce4e7e46 339 }
efba1595 340 if (object_property_find(OBJECT(dev), "removable")) {
2d1fd261
SH
341 qdev_prop_set_bit(dev, "removable", removable);
342 }
efba1595 343 if (serial && object_property_find(OBJECT(dev), "serial")) {
76534da7
KW
344 qdev_prop_set_string(dev, "serial", serial);
345 }
668f62ec 346 if (!qdev_prop_set_drive_err(dev, "drive", blk, errp)) {
02a5c4c9 347 object_unparent(OBJECT(dev));
18846dee
MA
348 return NULL;
349 }
668f62ec 350 if (!object_property_set_bool(OBJECT(dev), "share-rw", share_rw, errp)) {
395b9539
FZ
351 object_unparent(OBJECT(dev));
352 return NULL;
353 }
b8efb36b
KW
354
355 qdev_prop_set_enum(dev, "rerror", rerror);
356 qdev_prop_set_enum(dev, "werror", werror);
357
668f62ec 358 if (!qdev_realize_and_unref(dev, &bus->qbus, errp)) {
02a5c4c9 359 object_unparent(OBJECT(dev));
33e66b86 360 return NULL;
caad4eb3 361 }
b9eea3e6 362 return SCSI_DEVICE(dev);
d52affa7
GH
363}
364
14545097 365void scsi_bus_legacy_handle_cmdline(SCSIBus *bus)
d52affa7 366{
42e766a2 367 Location loc;
d52affa7 368 DriveInfo *dinfo;
caad4eb3 369 int unit;
d52affa7 370
42e766a2 371 loc_push_none(&loc);
d3d250bd 372 for (unit = 0; unit <= bus->info->max_target; unit++) {
d52affa7
GH
373 dinfo = drive_get(IF_SCSI, bus->busnr, unit);
374 if (dinfo == NULL) {
375 continue;
376 }
42e766a2 377 qemu_opts_loc_restore(dinfo->opts);
4be74634 378 scsi_bus_legacy_add_drive(bus, blk_by_legacy_dinfo(dinfo),
b8efb36b
KW
379 unit, false, -1, false,
380 BLOCKDEV_ON_ERROR_AUTO,
381 BLOCKDEV_ON_ERROR_AUTO,
382 NULL, &error_fatal);
d52affa7 383 }
42e766a2 384 loc_pop(&loc);
d52affa7 385}
89b08ae1 386
12a08998
PB
387static int32_t scsi_invalid_field(SCSIRequest *req, uint8_t *buf)
388{
389 scsi_req_build_sense(req, SENSE_CODE(INVALID_FIELD));
390 scsi_req_complete(req, CHECK_CONDITION);
391 return 0;
392}
393
394static const struct SCSIReqOps reqops_invalid_field = {
395 .size = sizeof(SCSIRequest),
396 .send_command = scsi_invalid_field
397};
398
afa46c46
PB
399/* SCSIReqOps implementation for invalid commands. */
400
401static int32_t scsi_invalid_command(SCSIRequest *req, uint8_t *buf)
402{
403 scsi_req_build_sense(req, SENSE_CODE(INVALID_OPCODE));
404 scsi_req_complete(req, CHECK_CONDITION);
405 return 0;
406}
407
adcf2754 408static const struct SCSIReqOps reqops_invalid_opcode = {
afa46c46
PB
409 .size = sizeof(SCSIRequest),
410 .send_command = scsi_invalid_command
411};
412
6dc06f08
PB
413/* SCSIReqOps implementation for unit attention conditions. */
414
415static int32_t scsi_unit_attention(SCSIRequest *req, uint8_t *buf)
416{
0bf8264e 417 if (req->dev->unit_attention.key == UNIT_ATTENTION) {
6dc06f08
PB
418 scsi_req_build_sense(req, req->dev->unit_attention);
419 } else if (req->bus->unit_attention.key == UNIT_ATTENTION) {
420 scsi_req_build_sense(req, req->bus->unit_attention);
421 }
422 scsi_req_complete(req, CHECK_CONDITION);
423 return 0;
424}
425
adcf2754 426static const struct SCSIReqOps reqops_unit_attention = {
6dc06f08
PB
427 .size = sizeof(SCSIRequest),
428 .send_command = scsi_unit_attention
429};
430
fdaef069
PB
431/* SCSIReqOps implementation for REPORT LUNS and for commands sent to
432 an invalid LUN. */
433
434typedef struct SCSITargetReq SCSITargetReq;
435
436struct SCSITargetReq {
437 SCSIRequest req;
438 int len;
84642435
AH
439 uint8_t *buf;
440 int buf_len;
fdaef069
PB
441};
442
443static void store_lun(uint8_t *outbuf, int lun)
444{
445 if (lun < 256) {
8cfe8013
ML
446 /* Simple logical unit addressing method*/
447 outbuf[0] = 0;
fdaef069 448 outbuf[1] = lun;
8cfe8013
ML
449 } else {
450 /* Flat space addressing method */
451 outbuf[0] = 0x40 | (lun >> 8);
452 outbuf[1] = (lun & 255);
fdaef069 453 }
fdaef069
PB
454}
455
456static bool scsi_target_emulate_report_luns(SCSITargetReq *r)
457{
0866aca1 458 BusChild *kid;
0d3545e7 459 int channel, id;
8cfe8013
ML
460 uint8_t tmp[8] = {0};
461 int len = 0;
462 GByteArray *buf;
ba74307c 463
fdaef069
PB
464 if (r->req.cmd.xfer < 16) {
465 return false;
466 }
467 if (r->req.cmd.buf[2] > 2) {
468 return false;
469 }
8cfe8013
ML
470
471 /* reserve space for 63 LUNs*/
472 buf = g_byte_array_sized_new(512);
473
0d3545e7 474 channel = r->req.dev->channel;
ba74307c 475 id = r->req.dev->id;
2d24a646 476
8cfe8013
ML
477 /* add size (will be updated later to correct value */
478 g_byte_array_append(buf, tmp, 8);
479 len += 8;
2d24a646 480
8cfe8013
ML
481 /* add LUN0 */
482 g_byte_array_append(buf, tmp, 8);
483 len += 8;
ba74307c 484
8cfe8013
ML
485 WITH_RCU_READ_LOCK_GUARD() {
486 QTAILQ_FOREACH_RCU(kid, &r->req.bus->qbus.children, sibling) {
487 DeviceState *qdev = kid->child;
488 SCSIDevice *dev = SCSI_DEVICE(qdev);
489
490 if (dev->channel == channel && dev->id == id && dev->lun != 0) {
491 store_lun(tmp, dev->lun);
492 g_byte_array_append(buf, tmp, 8);
493 len += 8;
ba74307c 494 }
ba74307c
PB
495 }
496 }
ba74307c 497
8cfe8013
ML
498 r->buf_len = len;
499 r->buf = g_byte_array_free(buf, FALSE);
500 r->len = MIN(len, r->req.cmd.xfer & ~7);
2d24a646 501
8cfe8013
ML
502 /* store the LUN list length */
503 stl_be_p(&r->buf[0], len - 8);
fdaef069
PB
504 return true;
505}
506
507static bool scsi_target_emulate_inquiry(SCSITargetReq *r)
508{
509 assert(r->req.dev->lun != r->req.lun);
84642435
AH
510
511 scsi_target_alloc_buf(&r->req, SCSI_INQUIRY_LEN);
512
fdaef069
PB
513 if (r->req.cmd.buf[1] & 0x2) {
514 /* Command support data - optional, not implemented */
515 return false;
516 }
517
518 if (r->req.cmd.buf[1] & 0x1) {
519 /* Vital product data */
520 uint8_t page_code = r->req.cmd.buf[2];
fdaef069
PB
521 r->buf[r->len++] = page_code ; /* this page */
522 r->buf[r->len++] = 0x00;
523
524 switch (page_code) {
525 case 0x00: /* Supported page codes, mandatory */
526 {
527 int pages;
528 pages = r->len++;
529 r->buf[r->len++] = 0x00; /* list of supported pages (this page) */
530 r->buf[pages] = r->len - pages - 1; /* number of pages */
531 break;
532 }
533 default:
534 return false;
535 }
536 /* done with EVPD */
84642435 537 assert(r->len < r->buf_len);
fdaef069
PB
538 r->len = MIN(r->req.cmd.xfer, r->len);
539 return true;
540 }
541
542 /* Standard INQUIRY data */
543 if (r->req.cmd.buf[2] != 0) {
544 return false;
545 }
546
547 /* PAGE CODE == 0 */
84642435 548 r->len = MIN(r->req.cmd.xfer, SCSI_INQUIRY_LEN);
fdaef069
PB
549 memset(r->buf, 0, r->len);
550 if (r->req.lun != 0) {
551 r->buf[0] = TYPE_NO_LUN;
552 } else {
553 r->buf[0] = TYPE_NOT_PRESENT | TYPE_INACTIVE;
554 r->buf[2] = 5; /* Version */
555 r->buf[3] = 2 | 0x10; /* HiSup, response data format */
556 r->buf[4] = r->len - 5; /* Additional Length = (Len - 1) - 4 */
afd4030c 557 r->buf[7] = 0x10 | (r->req.bus->info->tcq ? 0x02 : 0); /* Sync, TCQ. */
fdaef069
PB
558 memcpy(&r->buf[8], "QEMU ", 8);
559 memcpy(&r->buf[16], "QEMU TARGET ", 16);
35c2c8dc 560 pstrcpy((char *) &r->buf[32], 4, qemu_hw_version());
fdaef069
PB
561 }
562 return true;
563}
564
6959e508
JL
565static size_t scsi_sense_len(SCSIRequest *req)
566{
567 if (req->dev->type == TYPE_SCANNER)
568 return SCSI_SENSE_LEN_SCANNER;
569 else
570 return SCSI_SENSE_LEN;
571}
572
fdaef069
PB
573static int32_t scsi_target_send_command(SCSIRequest *req, uint8_t *buf)
574{
575 SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
b07fbce6 576 int fixed_sense = (req->cmd.buf[1] & 1) == 0;
fdaef069 577
b07fbce6
HR
578 if (req->lun != 0 &&
579 buf[0] != INQUIRY && buf[0] != REQUEST_SENSE) {
ded6ddc5
HR
580 scsi_req_build_sense(req, SENSE_CODE(LUN_NOT_SUPPORTED));
581 scsi_req_complete(req, CHECK_CONDITION);
582 return 0;
583 }
fdaef069
PB
584 switch (buf[0]) {
585 case REPORT_LUNS:
586 if (!scsi_target_emulate_report_luns(r)) {
587 goto illegal_request;
588 }
589 break;
590 case INQUIRY:
591 if (!scsi_target_emulate_inquiry(r)) {
592 goto illegal_request;
593 }
594 break;
739df215 595 case REQUEST_SENSE:
6959e508 596 scsi_target_alloc_buf(&r->req, scsi_sense_len(req));
b07fbce6
HR
597 if (req->lun != 0) {
598 const struct SCSISense sense = SENSE_CODE(LUN_NOT_SUPPORTED);
599
f68d98b2
PB
600 r->len = scsi_build_sense_buf(r->buf, req->cmd.xfer,
601 sense, fixed_sense);
b07fbce6
HR
602 } else {
603 r->len = scsi_device_get_sense(r->req.dev, r->buf,
604 MIN(req->cmd.xfer, r->buf_len),
605 fixed_sense);
606 }
3653d8c4 607 if (r->req.dev->sense_is_ua) {
b9eea3e6 608 scsi_device_unit_attention_reported(req->dev);
3653d8c4
PB
609 r->req.dev->sense_len = 0;
610 r->req.dev->sense_is_ua = false;
611 }
739df215 612 break;
1cb27d92
PB
613 case TEST_UNIT_READY:
614 break;
fdaef069 615 default:
ded6ddc5 616 scsi_req_build_sense(req, SENSE_CODE(INVALID_OPCODE));
fdaef069
PB
617 scsi_req_complete(req, CHECK_CONDITION);
618 return 0;
619 illegal_request:
620 scsi_req_build_sense(req, SENSE_CODE(INVALID_FIELD));
621 scsi_req_complete(req, CHECK_CONDITION);
622 return 0;
623 }
624
625 if (!r->len) {
626 scsi_req_complete(req, GOOD);
627 }
628 return r->len;
629}
630
631static void scsi_target_read_data(SCSIRequest *req)
632{
633 SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
634 uint32_t n;
635
636 n = r->len;
637 if (n > 0) {
638 r->len = 0;
639 scsi_req_data(&r->req, n);
640 } else {
641 scsi_req_complete(&r->req, GOOD);
642 }
643}
644
645static uint8_t *scsi_target_get_buf(SCSIRequest *req)
646{
647 SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
648
649 return r->buf;
650}
651
84642435
AH
652static uint8_t *scsi_target_alloc_buf(SCSIRequest *req, size_t len)
653{
654 SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
655
656 r->buf = g_malloc(len);
657 r->buf_len = len;
658
659 return r->buf;
660}
661
662static void scsi_target_free_buf(SCSIRequest *req)
663{
664 SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
665
666 g_free(r->buf);
667}
668
adcf2754 669static const struct SCSIReqOps reqops_target_command = {
fdaef069
PB
670 .size = sizeof(SCSITargetReq),
671 .send_command = scsi_target_send_command,
672 .read_data = scsi_target_read_data,
673 .get_buf = scsi_target_get_buf,
84642435 674 .free_req = scsi_target_free_buf,
fdaef069
PB
675};
676
677
adcf2754
PB
678SCSIRequest *scsi_req_alloc(const SCSIReqOps *reqops, SCSIDevice *d,
679 uint32_t tag, uint32_t lun, void *hba_private)
89b08ae1
GH
680{
681 SCSIRequest *req;
cac3c384
PB
682 SCSIBus *bus = scsi_bus_from_device(d);
683 BusState *qbus = BUS(bus);
61e68b3f
FZ
684 const int memset_off = offsetof(SCSIRequest, sense)
685 + sizeof(req->sense);
89b08ae1 686
633dccb4 687 req = g_malloc(reqops->size);
61e68b3f 688 memset((uint8_t *)req + memset_off, 0, reqops->size - memset_off);
5c6c0e51 689 req->refcount = 1;
cac3c384 690 req->bus = bus;
89b08ae1
GH
691 req->dev = d;
692 req->tag = tag;
693 req->lun = lun;
c5bf71a9 694 req->hba_private = hba_private;
ed3a34a3 695 req->status = -1;
f3126d65 696 req->host_status = -1;
8dbd4574 697 req->ops = reqops;
cac3c384
PB
698 object_ref(OBJECT(d));
699 object_ref(OBJECT(qbus->parent));
8e0a9320 700 notifier_list_init(&req->cancel_notifiers);
5138efec 701 trace_scsi_req_alloc(req->dev->id, req->lun, req->tag);
89b08ae1
GH
702 return req;
703}
704
c5bf71a9 705SCSIRequest *scsi_req_new(SCSIDevice *d, uint32_t tag, uint32_t lun,
fe9d8927 706 uint8_t *buf, size_t buf_len, void *hba_private)
43a2b339 707{
6dc06f08 708 SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, d->qdev.parent_bus);
769998a1 709 const SCSIReqOps *ops;
ff34c32c 710 SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(d);
c39ce112 711 SCSIRequest *req;
769998a1
PB
712 SCSICommand cmd = { .len = 0 };
713 int ret;
714
6d1511ce
JM
715 if (buf_len == 0) {
716 trace_scsi_req_parse_bad(d->id, lun, tag, 0);
717 goto invalid_opcode;
718 }
719
769998a1
PB
720 if ((d->unit_attention.key == UNIT_ATTENTION ||
721 bus->unit_attention.key == UNIT_ATTENTION) &&
722 (buf[0] != INQUIRY &&
723 buf[0] != REPORT_LUNS &&
724 buf[0] != GET_CONFIGURATION &&
725 buf[0] != GET_EVENT_STATUS_NOTIFICATION &&
726
727 /*
728 * If we already have a pending unit attention condition,
729 * report this one before triggering another one.
730 */
731 !(buf[0] == REQUEST_SENSE && d->sense_is_ua))) {
732 ops = &reqops_unit_attention;
733 } else if (lun != d->lun ||
734 buf[0] == REPORT_LUNS ||
735 (buf[0] == REQUEST_SENSE && d->sense_len)) {
736 ops = &reqops_target_command;
737 } else {
738 ops = NULL;
739 }
afa46c46 740
ff34c32c 741 if (ops != NULL || !sc->parse_cdb) {
fe9d8927 742 ret = scsi_req_parse_cdb(d, &cmd, buf, buf_len);
ff34c32c 743 } else {
fe9d8927 744 ret = sc->parse_cdb(d, &cmd, buf, buf_len, hba_private);
ff34c32c
PB
745 }
746
769998a1 747 if (ret != 0) {
afa46c46 748 trace_scsi_req_parse_bad(d->id, lun, tag, buf[0]);
6d1511ce 749invalid_opcode:
afa46c46
PB
750 req = scsi_req_alloc(&reqops_invalid_opcode, d, tag, lun, hba_private);
751 } else {
769998a1 752 assert(cmd.len != 0);
afa46c46
PB
753 trace_scsi_req_parsed(d->id, lun, tag, buf[0],
754 cmd.mode, cmd.xfer);
3b6ffe50 755 if (cmd.lba != -1) {
afa46c46
PB
756 trace_scsi_req_parsed_lba(d->id, lun, tag, buf[0],
757 cmd.lba);
758 }
fdaef069 759
12a08998
PB
760 if (cmd.xfer > INT32_MAX) {
761 req = scsi_req_alloc(&reqops_invalid_field, d, tag, lun, hba_private);
769998a1
PB
762 } else if (ops) {
763 req = scsi_req_alloc(ops, d, tag, lun, hba_private);
fdaef069 764 } else {
b9eea3e6 765 req = scsi_device_alloc_req(d, tag, lun, buf, hba_private);
fdaef069 766 }
afa46c46
PB
767 }
768
769 req->cmd = cmd;
5f412602 770 req->residual = req->cmd.xfer;
01e95455 771
98254542
PB
772 switch (buf[0]) {
773 case INQUIRY:
774 trace_scsi_inquiry(d->id, lun, tag, cmd.buf[1], cmd.buf[2]);
775 break;
776 case TEST_UNIT_READY:
777 trace_scsi_test_unit_ready(d->id, lun, tag);
778 break;
779 case REPORT_LUNS:
780 trace_scsi_report_luns(d->id, lun, tag);
781 break;
782 case REQUEST_SENSE:
783 trace_scsi_request_sense(d->id, lun, tag);
784 break;
785 default:
786 break;
787 }
788
c39ce112 789 return req;
43a2b339
PB
790}
791
0c34459b
PB
792uint8_t *scsi_req_get_buf(SCSIRequest *req)
793{
12010e7b 794 return req->ops->get_buf(req);
0c34459b
PB
795}
796
6dc06f08
PB
797static void scsi_clear_unit_attention(SCSIRequest *req)
798{
799 SCSISense *ua;
800 if (req->dev->unit_attention.key != UNIT_ATTENTION &&
801 req->bus->unit_attention.key != UNIT_ATTENTION) {
802 return;
803 }
804
805 /*
806 * If an INQUIRY command enters the enabled command state,
807 * the device server shall [not] clear any unit attention condition;
808 * See also MMC-6, paragraphs 6.5 and 6.6.2.
809 */
810 if (req->cmd.buf[0] == INQUIRY ||
811 req->cmd.buf[0] == GET_CONFIGURATION ||
812 req->cmd.buf[0] == GET_EVENT_STATUS_NOTIFICATION) {
813 return;
814 }
815
816 if (req->dev->unit_attention.key == UNIT_ATTENTION) {
817 ua = &req->dev->unit_attention;
818 } else {
819 ua = &req->bus->unit_attention;
820 }
821
822 /*
823 * If a REPORT LUNS command enters the enabled command state, [...]
824 * the device server shall clear any pending unit attention condition
825 * with an additional sense code of REPORTED LUNS DATA HAS CHANGED.
826 */
827 if (req->cmd.buf[0] == REPORT_LUNS &&
828 !(ua->asc == SENSE_CODE(REPORTED_LUNS_CHANGED).asc &&
829 ua->ascq == SENSE_CODE(REPORTED_LUNS_CHANGED).ascq)) {
830 return;
831 }
832
833 *ua = SENSE_CODE(NO_SENSE);
834}
835
74382217
HR
836int scsi_req_get_sense(SCSIRequest *req, uint8_t *buf, int len)
837{
6dc06f08
PB
838 int ret;
839
b45ef674
PB
840 assert(len >= 14);
841 if (!req->sense_len) {
74382217
HR
842 return 0;
843 }
6dc06f08 844
37b6045c 845 ret = scsi_convert_sense(req->sense, req->sense_len, buf, len, true);
6dc06f08
PB
846
847 /*
848 * FIXME: clearing unit attention conditions upon autosense should be done
849 * only if the UA_INTLCK_CTRL field in the Control mode page is set to 00b
850 * (SAM-5, 5.14).
851 *
852 * We assume UA_INTLCK_CTRL to be 00b for HBAs that support autosense, and
853 * 10b for HBAs that do not support it (do not call scsi_req_get_sense).
3653d8c4 854 * Here we handle unit attention clearing for UA_INTLCK_CTRL == 00b.
6dc06f08 855 */
3653d8c4 856 if (req->dev->sense_is_ua) {
b9eea3e6 857 scsi_device_unit_attention_reported(req->dev);
3653d8c4
PB
858 req->dev->sense_len = 0;
859 req->dev->sense_is_ua = false;
860 }
6dc06f08 861 return ret;
b45ef674
PB
862}
863
864int scsi_device_get_sense(SCSIDevice *dev, uint8_t *buf, int len, bool fixed)
865{
37b6045c 866 return scsi_convert_sense(dev->sense, dev->sense_len, buf, len, fixed);
b45ef674
PB
867}
868
869void scsi_req_build_sense(SCSIRequest *req, SCSISense sense)
870{
871 trace_scsi_req_build_sense(req->dev->id, req->lun, req->tag,
872 sense.key, sense.asc, sense.ascq);
a3760467 873 req->sense_len = scsi_build_sense(req->sense, sense);
74382217
HR
874}
875
63f740dd 876static void scsi_req_enqueue_internal(SCSIRequest *req)
89b08ae1 877{
5c6c0e51
HR
878 assert(!req->enqueued);
879 scsi_req_ref(req);
3d5aba97
PB
880 if (req->bus->info->get_sg_list) {
881 req->sg = req->bus->info->get_sg_list(req);
882 } else {
883 req->sg = NULL;
884 }
5c6c0e51
HR
885 req->enqueued = true;
886 QTAILQ_INSERT_TAIL(&req->dev->requests, req, next);
63f740dd 887}
fc4f0754 888
63f740dd
PB
889int32_t scsi_req_enqueue(SCSIRequest *req)
890{
891 int32_t rc;
892
893 assert(!req->retry);
894 scsi_req_enqueue_internal(req);
fc4f0754 895 scsi_req_ref(req);
c39ce112 896 rc = req->ops->send_command(req, req->cmd.buf);
fc4f0754
PB
897 scsi_req_unref(req);
898 return rc;
89b08ae1
GH
899}
900
a1f0cce2 901static void scsi_req_dequeue(SCSIRequest *req)
e8637c90 902{
5138efec 903 trace_scsi_req_dequeue(req->dev->id, req->lun, req->tag);
71544d30 904 req->retry = false;
e8637c90
JK
905 if (req->enqueued) {
906 QTAILQ_REMOVE(&req->dev->requests, req, next);
907 req->enqueued = false;
ad2d30f7 908 scsi_req_unref(req);
e8637c90
JK
909 }
910}
911
06b86357
PB
912static int scsi_get_performance_length(int num_desc, int type, int data_type)
913{
914 /* MMC-6, paragraph 6.7. */
915 switch (type) {
916 case 0:
917 if ((data_type & 3) == 0) {
918 /* Each descriptor is as in Table 295 - Nominal performance. */
919 return 16 * num_desc + 8;
920 } else {
921 /* Each descriptor is as in Table 296 - Exceptions. */
922 return 6 * num_desc + 8;
923 }
924 case 1:
925 case 4:
926 case 5:
927 return 8 * num_desc + 8;
928 case 2:
929 return 2048 * num_desc + 8;
930 case 3:
931 return 16 * num_desc + 8;
932 default:
933 return 8;
934 }
935}
936
e4b65262
CM
937static int ata_passthrough_xfer_unit(SCSIDevice *dev, uint8_t *buf)
938{
939 int byte_block = (buf[2] >> 2) & 0x1;
940 int type = (buf[2] >> 4) & 0x1;
941 int xfer_unit;
942
943 if (byte_block) {
944 if (type) {
945 xfer_unit = dev->blocksize;
946 } else {
947 xfer_unit = 512;
948 }
949 } else {
950 xfer_unit = 1;
951 }
952
953 return xfer_unit;
954}
955
1894df02 956static int ata_passthrough_12_xfer(SCSIDevice *dev, uint8_t *buf)
e4b65262
CM
957{
958 int length = buf[2] & 0x3;
959 int xfer;
960 int unit = ata_passthrough_xfer_unit(dev, buf);
961
962 switch (length) {
963 case 0:
964 case 3: /* USB-specific. */
d83c951c 965 default:
e4b65262
CM
966 xfer = 0;
967 break;
968 case 1:
969 xfer = buf[3];
970 break;
971 case 2:
972 xfer = buf[4];
973 break;
974 }
975
976 return xfer * unit;
977}
978
1894df02 979static int ata_passthrough_16_xfer(SCSIDevice *dev, uint8_t *buf)
e4b65262
CM
980{
981 int extend = buf[1] & 0x1;
982 int length = buf[2] & 0x3;
983 int xfer;
984 int unit = ata_passthrough_xfer_unit(dev, buf);
985
986 switch (length) {
987 case 0:
988 case 3: /* USB-specific. */
d83c951c 989 default:
e4b65262
CM
990 xfer = 0;
991 break;
992 case 1:
993 xfer = buf[4];
994 xfer |= (extend ? buf[3] << 8 : 0);
995 break;
996 case 2:
997 xfer = buf[6];
998 xfer |= (extend ? buf[5] << 8 : 0);
999 break;
1000 }
1001
1002 return xfer * unit;
1003}
1004
1894df02 1005static int scsi_req_xfer(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
bb729f75 1006{
1894df02 1007 cmd->xfer = scsi_cdb_xfer(buf);
2599aece 1008 switch (buf[0]) {
2ec749cb 1009 case TEST_UNIT_READY:
5e30a07d 1010 case REWIND:
2ec749cb 1011 case START_STOP:
00a01ad4 1012 case SET_CAPACITY:
2ec749cb 1013 case WRITE_FILEMARKS:
06b86357 1014 case WRITE_FILEMARKS_16:
2ec749cb 1015 case SPACE:
a5e3d9ef
BK
1016 case RESERVE:
1017 case RELEASE:
2ec749cb
GH
1018 case ERASE:
1019 case ALLOW_MEDIUM_REMOVAL:
2ec749cb
GH
1020 case SEEK_10:
1021 case SYNCHRONIZE_CACHE:
06b86357
PB
1022 case SYNCHRONIZE_CACHE_16:
1023 case LOCATE_16:
2ec749cb 1024 case LOCK_UNLOCK_CACHE:
2ec749cb
GH
1025 case SET_CD_SPEED:
1026 case SET_LIMITS:
5e30a07d 1027 case WRITE_LONG_10:
2ec749cb 1028 case UPDATE_BLOCK:
06b86357
PB
1029 case RESERVE_TRACK:
1030 case SET_READ_AHEAD:
1031 case PRE_FETCH:
1032 case PRE_FETCH_16:
1033 case ALLOW_OVERWRITE:
2599aece 1034 cmd->xfer = 0;
2ec749cb 1035 break;
d12ad44c
PB
1036 case VERIFY_10:
1037 case VERIFY_12:
1038 case VERIFY_16:
1039 if ((buf[1] & 2) == 0) {
1040 cmd->xfer = 0;
7ef8cf9a 1041 } else if ((buf[1] & 4) != 0) {
d12ad44c
PB
1042 cmd->xfer = 1;
1043 }
1044 cmd->xfer *= dev->blocksize;
1045 break;
2ec749cb
GH
1046 case MODE_SENSE:
1047 break;
5e30a07d 1048 case WRITE_SAME_10:
a5ee9085 1049 case WRITE_SAME_16:
4397a018 1050 cmd->xfer = buf[1] & 1 ? 0 : dev->blocksize;
2ec749cb 1051 break;
5e30a07d 1052 case READ_CAPACITY_10:
2599aece 1053 cmd->xfer = 8;
2ec749cb
GH
1054 break;
1055 case READ_BLOCK_LIMITS:
2599aece 1056 cmd->xfer = 6;
2ec749cb 1057 break;
2ec749cb 1058 case SEND_VOLUME_TAG:
06b86357
PB
1059 /* GPCMD_SET_STREAMING from multimedia commands. */
1060 if (dev->type == TYPE_ROM) {
1061 cmd->xfer = buf[10] | (buf[9] << 8);
1062 } else {
1063 cmd->xfer = buf[9] | (buf[8] << 8);
1064 }
2ec749cb 1065 break;
f62d0594
PB
1066 case WRITE_6:
1067 /* length 0 means 256 blocks */
1068 if (cmd->xfer == 0) {
1069 cmd->xfer = 256;
1070 }
c4ce4c4b 1071 /* fall through */
2ec749cb 1072 case WRITE_10:
5e30a07d 1073 case WRITE_VERIFY_10:
2ec749cb
GH
1074 case WRITE_12:
1075 case WRITE_VERIFY_12:
bd536cf3
GH
1076 case WRITE_16:
1077 case WRITE_VERIFY_16:
2599aece 1078 cmd->xfer *= dev->blocksize;
2ec749cb 1079 break;
2ec749cb
GH
1080 case READ_6:
1081 case READ_REVERSE:
f62d0594
PB
1082 /* length 0 means 256 blocks */
1083 if (cmd->xfer == 0) {
1084 cmd->xfer = 256;
1085 }
c4ce4c4b 1086 /* fall through */
f62d0594 1087 case READ_10:
2ec749cb 1088 case READ_12:
bd536cf3 1089 case READ_16:
2599aece 1090 cmd->xfer *= dev->blocksize;
2ec749cb 1091 break;
06b86357
PB
1092 case FORMAT_UNIT:
1093 /* MMC mandates the parameter list to be 12-bytes long. Parameters
1094 * for block devices are restricted to the header right now. */
1095 if (dev->type == TYPE_ROM && (buf[1] & 16)) {
1096 cmd->xfer = 12;
1097 } else {
1098 cmd->xfer = (buf[1] & 16) == 0 ? 0 : (buf[1] & 32 ? 8 : 4);
1099 }
1100 break;
2ec749cb 1101 case INQUIRY:
06b86357
PB
1102 case RECEIVE_DIAGNOSTIC:
1103 case SEND_DIAGNOSTIC:
2599aece 1104 cmd->xfer = buf[4] | (buf[3] << 8);
2ec749cb 1105 break;
06b86357
PB
1106 case READ_CD:
1107 case READ_BUFFER:
1108 case WRITE_BUFFER:
1109 case SEND_CUE_SHEET:
1110 cmd->xfer = buf[8] | (buf[7] << 8) | (buf[6] << 16);
1111 break;
1112 case PERSISTENT_RESERVE_OUT:
1113 cmd->xfer = ldl_be_p(&buf[5]) & 0xffffffffULL;
1114 break;
1115 case ERASE_12:
1116 if (dev->type == TYPE_ROM) {
1117 /* MMC command GET PERFORMANCE. */
1118 cmd->xfer = scsi_get_performance_length(buf[9] | (buf[8] << 8),
1119 buf[10], buf[1] & 0x1f);
1120 }
1121 break;
1122 case MECHANISM_STATUS:
1123 case READ_DVD_STRUCTURE:
1124 case SEND_DVD_STRUCTURE:
c7126d5b
NB
1125 case MAINTENANCE_OUT:
1126 case MAINTENANCE_IN:
2599aece 1127 if (dev->type == TYPE_ROM) {
c7126d5b 1128 /* GPCMD_REPORT_KEY and GPCMD_SEND_KEY from multi media commands */
2599aece 1129 cmd->xfer = buf[9] | (buf[8] << 8);
c7126d5b
NB
1130 }
1131 break;
e4b65262
CM
1132 case ATA_PASSTHROUGH_12:
1133 if (dev->type == TYPE_ROM) {
1134 /* BLANK command of MMC */
1135 cmd->xfer = 0;
1136 } else {
1894df02 1137 cmd->xfer = ata_passthrough_12_xfer(dev, buf);
e4b65262
CM
1138 }
1139 break;
1140 case ATA_PASSTHROUGH_16:
1894df02 1141 cmd->xfer = ata_passthrough_16_xfer(dev, buf);
e4b65262 1142 break;
2ec749cb
GH
1143 }
1144 return 0;
1145}
1146
1894df02 1147static int scsi_req_stream_xfer(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
2ec749cb 1148{
2599aece 1149 switch (buf[0]) {
2ec749cb 1150 /* stream commands */
06b86357
PB
1151 case ERASE_12:
1152 case ERASE_16:
1153 cmd->xfer = 0;
1154 break;
2ec749cb
GH
1155 case READ_6:
1156 case READ_REVERSE:
1157 case RECOVER_BUFFERED_DATA:
1158 case WRITE_6:
2599aece
PB
1159 cmd->xfer = buf[4] | (buf[3] << 8) | (buf[2] << 16);
1160 if (buf[1] & 0x01) { /* fixed */
1161 cmd->xfer *= dev->blocksize;
1162 }
2ec749cb 1163 break;
065c2599
PB
1164 case READ_16:
1165 case READ_REVERSE_16:
1166 case VERIFY_16:
1167 case WRITE_16:
065c2599
PB
1168 cmd->xfer = buf[14] | (buf[13] << 8) | (buf[12] << 16);
1169 if (buf[1] & 0x01) { /* fixed */
1170 cmd->xfer *= dev->blocksize;
1171 }
1172 break;
2ec749cb 1173 case REWIND:
15e58a21 1174 case LOAD_UNLOAD:
2599aece 1175 cmd->xfer = 0;
2ec749cb 1176 break;
06b86357
PB
1177 case SPACE_16:
1178 cmd->xfer = buf[13] | (buf[12] << 8);
1179 break;
1180 case READ_POSITION:
9ce1bb2d
CH
1181 switch (buf[1] & 0x1f) /* operation code */ {
1182 case SHORT_FORM_BLOCK_ID:
1183 case SHORT_FORM_VENDOR_SPECIFIC:
1184 cmd->xfer = 20;
1185 break;
1186 case LONG_FORM:
1187 cmd->xfer = 32;
1188 break;
1189 case EXTENDED_FORM:
1190 cmd->xfer = buf[8] | (buf[7] << 8);
1191 break;
1192 default:
1193 return -1;
1194 }
1195
06b86357
PB
1196 break;
1197 case FORMAT_UNIT:
1198 cmd->xfer = buf[4] | (buf[3] << 8);
1199 break;
2ec749cb
GH
1200 /* generic commands */
1201 default:
1894df02 1202 return scsi_req_xfer(cmd, dev, buf);
2ec749cb
GH
1203 }
1204 return 0;
1205}
1206
1894df02 1207static int scsi_req_medium_changer_xfer(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
40723a99
CH
1208{
1209 switch (buf[0]) {
1210 /* medium changer commands */
1211 case EXCHANGE_MEDIUM:
1212 case INITIALIZE_ELEMENT_STATUS:
1213 case INITIALIZE_ELEMENT_STATUS_WITH_RANGE:
1214 case MOVE_MEDIUM:
1215 case POSITION_TO_ELEMENT:
1216 cmd->xfer = 0;
1217 break;
1218 case READ_ELEMENT_STATUS:
1219 cmd->xfer = buf[9] | (buf[8] << 8) | (buf[7] << 16);
1220 break;
1221
1222 /* generic commands */
1223 default:
1894df02 1224 return scsi_req_xfer(cmd, dev, buf);
40723a99
CH
1225 }
1226 return 0;
1227}
1228
297b044a
JL
1229static int scsi_req_scanner_length(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
1230{
1231 switch (buf[0]) {
1232 /* Scanner commands */
1233 case OBJECT_POSITION:
1234 cmd->xfer = 0;
1235 break;
1236 case SCAN:
1237 cmd->xfer = buf[4];
1238 break;
1239 case READ_10:
1240 case SEND:
1241 case GET_WINDOW:
1242 case SET_WINDOW:
1243 cmd->xfer = buf[8] | (buf[7] << 8) | (buf[6] << 16);
1244 break;
1245 default:
1246 /* GET_DATA_BUFFER_STATUS xfer handled by scsi_req_xfer */
1247 return scsi_req_xfer(cmd, dev, buf);
1248 }
1249
1250 return 0;
1251}
40723a99 1252
2599aece 1253static void scsi_cmd_xfer_mode(SCSICommand *cmd)
97a06435 1254{
a5ee9085
PB
1255 if (!cmd->xfer) {
1256 cmd->mode = SCSI_XFER_NONE;
1257 return;
1258 }
2599aece 1259 switch (cmd->buf[0]) {
97a06435
GH
1260 case WRITE_6:
1261 case WRITE_10:
5e30a07d 1262 case WRITE_VERIFY_10:
97a06435
GH
1263 case WRITE_12:
1264 case WRITE_VERIFY_12:
bd536cf3
GH
1265 case WRITE_16:
1266 case WRITE_VERIFY_16:
d12ad44c
PB
1267 case VERIFY_10:
1268 case VERIFY_12:
1269 case VERIFY_16:
97a06435
GH
1270 case COPY:
1271 case COPY_VERIFY:
1272 case COMPARE:
1273 case CHANGE_DEFINITION:
1274 case LOG_SELECT:
1275 case MODE_SELECT:
1276 case MODE_SELECT_10:
1277 case SEND_DIAGNOSTIC:
1278 case WRITE_BUFFER:
1279 case FORMAT_UNIT:
1280 case REASSIGN_BLOCKS:
97a06435
GH
1281 case SEARCH_EQUAL:
1282 case SEARCH_HIGH:
1283 case SEARCH_LOW:
1284 case UPDATE_BLOCK:
5e30a07d
HR
1285 case WRITE_LONG_10:
1286 case WRITE_SAME_10:
a5ee9085 1287 case WRITE_SAME_16:
381b634c 1288 case UNMAP:
97a06435
GH
1289 case SEARCH_HIGH_12:
1290 case SEARCH_EQUAL_12:
1291 case SEARCH_LOW_12:
97a06435
GH
1292 case MEDIUM_SCAN:
1293 case SEND_VOLUME_TAG:
06b86357
PB
1294 case SEND_CUE_SHEET:
1295 case SEND_DVD_STRUCTURE:
01bedeba 1296 case PERSISTENT_RESERVE_OUT:
c7126d5b 1297 case MAINTENANCE_OUT:
297b044a
JL
1298 case SET_WINDOW:
1299 case SCAN:
1300 /* SCAN conflicts with START_STOP. START_STOP has cmd->xfer set to 0 for
1301 * non-scanner devices, so we only get here for SCAN and not for START_STOP.
1302 */
2599aece 1303 cmd->mode = SCSI_XFER_TO_DEV;
97a06435 1304 break;
e4b65262
CM
1305 case ATA_PASSTHROUGH_12:
1306 case ATA_PASSTHROUGH_16:
1307 /* T_DIR */
1308 cmd->mode = (cmd->buf[2] & 0x8) ?
1309 SCSI_XFER_FROM_DEV : SCSI_XFER_TO_DEV;
1310 break;
97a06435 1311 default:
a5ee9085 1312 cmd->mode = SCSI_XFER_FROM_DEV;
97a06435
GH
1313 break;
1314 }
1315}
1316
fe9d8927
JM
1317int scsi_req_parse_cdb(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf,
1318 size_t buf_len)
1894df02
HR
1319{
1320 int rc;
c170aad8 1321 int len;
1894df02
HR
1322
1323 cmd->lba = -1;
c170aad8 1324 len = scsi_cdb_length(buf);
6d1511ce 1325 if (len < 0 || len > buf_len) {
c170aad8
PB
1326 return -1;
1327 }
28b70c9d 1328
c170aad8 1329 cmd->len = len;
40723a99
CH
1330 switch (dev->type) {
1331 case TYPE_TAPE:
1894df02 1332 rc = scsi_req_stream_xfer(cmd, dev, buf);
40723a99
CH
1333 break;
1334 case TYPE_MEDIUM_CHANGER:
1894df02 1335 rc = scsi_req_medium_changer_xfer(cmd, dev, buf);
40723a99 1336 break;
297b044a
JL
1337 case TYPE_SCANNER:
1338 rc = scsi_req_scanner_length(cmd, dev, buf);
1339 break;
40723a99 1340 default:
1894df02 1341 rc = scsi_req_xfer(cmd, dev, buf);
40723a99 1342 break;
2ec749cb 1343 }
40723a99 1344
2ec749cb
GH
1345 if (rc != 0)
1346 return rc;
1347
afa46c46
PB
1348 memcpy(cmd->buf, buf, cmd->len);
1349 scsi_cmd_xfer_mode(cmd);
1350 cmd->lba = scsi_cmd_lba(cmd);
2ec749cb
GH
1351 return 0;
1352}
ed3a34a3 1353
53200fad
PB
1354void scsi_device_report_change(SCSIDevice *dev, SCSISense sense)
1355{
1356 SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, dev->qdev.parent_bus);
1357
1358 scsi_device_set_ua(dev, sense);
1359 if (bus->info->change) {
1360 bus->info->change(bus, dev, sense);
1361 }
1362}
1363
ad2d30f7
PB
1364SCSIRequest *scsi_req_ref(SCSIRequest *req)
1365{
8e86b93c 1366 assert(req->refcount > 0);
ad2d30f7
PB
1367 req->refcount++;
1368 return req;
1369}
1370
1371void scsi_req_unref(SCSIRequest *req)
1372{
68bd348a 1373 assert(req->refcount > 0);
ad2d30f7 1374 if (--req->refcount == 0) {
cac3c384
PB
1375 BusState *qbus = req->dev->qdev.parent_bus;
1376 SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, qbus);
1377
8e86b93c
PB
1378 if (bus->info->free_request && req->hba_private) {
1379 bus->info->free_request(bus, req->hba_private);
1380 }
12010e7b
PB
1381 if (req->ops->free_req) {
1382 req->ops->free_req(req);
ad2d30f7 1383 }
cac3c384
PB
1384 object_unref(OBJECT(req->dev));
1385 object_unref(OBJECT(qbus->parent));
633dccb4 1386 g_free(req);
ad2d30f7
PB
1387 }
1388}
1389
ad3376cc
PB
1390/* Tell the device that we finished processing this chunk of I/O. It
1391 will start the next chunk or complete the command. */
1392void scsi_req_continue(SCSIRequest *req)
1393{
6f6710aa
PB
1394 if (req->io_canceled) {
1395 trace_scsi_req_continue_canceled(req->dev->id, req->lun, req->tag);
1396 return;
1397 }
ad3376cc
PB
1398 trace_scsi_req_continue(req->dev->id, req->lun, req->tag);
1399 if (req->cmd.mode == SCSI_XFER_TO_DEV) {
12010e7b 1400 req->ops->write_data(req);
ad3376cc 1401 } else {
12010e7b 1402 req->ops->read_data(req);
ad3376cc
PB
1403 }
1404}
1405
ab9adc88
PB
1406/* Called by the devices when data is ready for the HBA. The HBA should
1407 start a DMA operation to read or fill the device's data buffer.
ad3376cc 1408 Once it completes, calling scsi_req_continue will restart I/O. */
ab9adc88
PB
1409void scsi_req_data(SCSIRequest *req, int len)
1410{
3d5aba97 1411 uint8_t *buf;
e88c591d
PB
1412 if (req->io_canceled) {
1413 trace_scsi_req_data_canceled(req->dev->id, req->lun, req->tag, len);
01e95455 1414 return;
e88c591d 1415 }
01e95455
PB
1416 trace_scsi_req_data(req->dev->id, req->lun, req->tag, len);
1417 assert(req->cmd.mode != SCSI_XFER_NONE);
3d5aba97 1418 if (!req->sg) {
5f412602 1419 req->residual -= len;
3d5aba97
PB
1420 req->bus->info->transfer_data(req, len);
1421 return;
1422 }
1423
1424 /* If the device calls scsi_req_data and the HBA specified a
1425 * scatter/gather list, the transfer has to happen in a single
1426 * step. */
1427 assert(!req->dma_started);
1428 req->dma_started = true;
1429
1430 buf = scsi_req_get_buf(req);
1431 if (req->cmd.mode == SCSI_XFER_FROM_DEV) {
f02b664a
PMD
1432 dma_buf_read(buf, len, &req->residual, req->sg,
1433 MEMTXATTRS_UNSPECIFIED);
3d5aba97 1434 } else {
f02b664a
PMD
1435 dma_buf_write(buf, len, &req->residual, req->sg,
1436 MEMTXATTRS_UNSPECIFIED);
3d5aba97
PB
1437 }
1438 scsi_req_continue(req);
ab9adc88
PB
1439}
1440
ec766865
GH
1441void scsi_req_print(SCSIRequest *req)
1442{
1443 FILE *fp = stderr;
1444 int i;
1445
1446 fprintf(fp, "[%s id=%d] %s",
1447 req->dev->qdev.parent_bus->name,
1448 req->dev->id,
1449 scsi_command_name(req->cmd.buf[0]));
1450 for (i = 1; i < req->cmd.len; i++) {
1451 fprintf(fp, " 0x%02x", req->cmd.buf[i]);
1452 }
1453 switch (req->cmd.mode) {
1454 case SCSI_XFER_NONE:
1455 fprintf(fp, " - none\n");
1456 break;
1457 case SCSI_XFER_FROM_DEV:
1458 fprintf(fp, " - from-dev len=%zd\n", req->cmd.xfer);
1459 break;
1460 case SCSI_XFER_TO_DEV:
1461 fprintf(fp, " - to-dev len=%zd\n", req->cmd.xfer);
1462 break;
1463 default:
1464 fprintf(fp, " - Oops\n");
1465 break;
1466 }
1467}
1468
f3126d65
HR
1469void scsi_req_complete_failed(SCSIRequest *req, int host_status)
1470{
1471 SCSISense sense;
1472 int status;
1473
1474 assert(req->status == -1 && req->host_status == -1);
1475 assert(req->ops != &reqops_unit_attention);
1476
1477 if (!req->bus->info->fail) {
1478 status = scsi_sense_from_host_status(req->host_status, &sense);
1479 if (status == CHECK_CONDITION) {
1480 scsi_req_build_sense(req, sense);
1481 }
1482 scsi_req_complete(req, status);
1483 return;
1484 }
1485
1486 req->host_status = host_status;
1487 scsi_req_ref(req);
1488 scsi_req_dequeue(req);
1489 req->bus->info->fail(req);
1490
1491 /* Cancelled requests might end up being completed instead of cancelled */
1492 notifier_list_notify(&req->cancel_notifiers, req);
1493 scsi_req_unref(req);
1494}
1495
682a9b21 1496void scsi_req_complete(SCSIRequest *req, int status)
ed3a34a3 1497{
f3126d65 1498 assert(req->status == -1 && req->host_status == -1);
682a9b21 1499 req->status = status;
f3126d65 1500 req->host_status = SCSI_HOST_OK;
b45ef674 1501
335f560f 1502 assert(req->sense_len <= sizeof(req->sense));
b45ef674
PB
1503 if (status == GOOD) {
1504 req->sense_len = 0;
1505 }
1506
1507 if (req->sense_len) {
1508 memcpy(req->dev->sense, req->sense, req->sense_len);
3653d8c4
PB
1509 req->dev->sense_len = req->sense_len;
1510 req->dev->sense_is_ua = (req->ops == &reqops_unit_attention);
1511 } else {
1512 req->dev->sense_len = 0;
1513 req->dev->sense_is_ua = false;
b45ef674 1514 }
b45ef674 1515
6dc06f08
PB
1516 /*
1517 * Unit attention state is now stored in the device's sense buffer
1518 * if the HBA didn't do autosense. Clear the pending unit attention
1519 * flags.
1520 */
1521 scsi_clear_unit_attention(req);
1522
ad2d30f7 1523 scsi_req_ref(req);
e8637c90 1524 scsi_req_dequeue(req);
5f412602 1525 req->bus->info->complete(req, req->residual);
8e0a9320
FZ
1526
1527 /* Cancelled requests might end up being completed instead of cancelled */
1528 notifier_list_notify(&req->cancel_notifiers, req);
ad2d30f7 1529 scsi_req_unref(req);
ed3a34a3 1530}
db07c0f8 1531
d5776465
FZ
1532/* Called by the devices when the request is canceled. */
1533void scsi_req_cancel_complete(SCSIRequest *req)
1534{
1535 assert(req->io_canceled);
1536 if (req->bus->info->cancel) {
1537 req->bus->info->cancel(req);
1538 }
8e0a9320 1539 notifier_list_notify(&req->cancel_notifiers, req);
d5776465
FZ
1540 scsi_req_unref(req);
1541}
1542
8e0a9320
FZ
1543/* Cancel @req asynchronously. @notifier is added to @req's cancellation
1544 * notifier list, the bus will be notified the requests cancellation is
1545 * completed.
1546 * */
1547void scsi_req_cancel_async(SCSIRequest *req, Notifier *notifier)
1548{
1549 trace_scsi_req_cancel(req->dev->id, req->lun, req->tag);
1550 if (notifier) {
1551 notifier_list_add(&req->cancel_notifiers, notifier);
1552 }
3daa4107
PB
1553 if (req->io_canceled) {
1554 /* A blk_aio_cancel_async is pending; when it finishes,
1555 * scsi_req_cancel_complete will be called and will
1556 * call the notifier we just added. Just wait for that.
1557 */
1558 assert(req->aiocb);
1559 return;
1560 }
1561 /* Dropped in scsi_req_cancel_complete. */
8e0a9320
FZ
1562 scsi_req_ref(req);
1563 scsi_req_dequeue(req);
1564 req->io_canceled = true;
1565 if (req->aiocb) {
4be74634 1566 blk_aio_cancel_async(req->aiocb);
2aeba9d8
FZ
1567 } else {
1568 scsi_req_cancel_complete(req);
8e0a9320
FZ
1569 }
1570}
1571
94d3f98a
PB
1572void scsi_req_cancel(SCSIRequest *req)
1573{
814589c4 1574 trace_scsi_req_cancel(req->dev->id, req->lun, req->tag);
e88c591d
PB
1575 if (!req->enqueued) {
1576 return;
94d3f98a 1577 }
3daa4107
PB
1578 assert(!req->io_canceled);
1579 /* Dropped in scsi_req_cancel_complete. */
94d3f98a
PB
1580 scsi_req_ref(req);
1581 scsi_req_dequeue(req);
e88c591d 1582 req->io_canceled = true;
a83cfd12 1583 if (req->aiocb) {
4be74634 1584 blk_aio_cancel(req->aiocb);
488eef2f
PB
1585 } else {
1586 scsi_req_cancel_complete(req);
e88c591d 1587 }
94d3f98a
PB
1588}
1589
e48e84ea
PB
1590static int scsi_ua_precedence(SCSISense sense)
1591{
1592 if (sense.key != UNIT_ATTENTION) {
1593 return INT_MAX;
1594 }
1595 if (sense.asc == 0x29 && sense.ascq == 0x04) {
1596 /* DEVICE INTERNAL RESET goes with POWER ON OCCURRED */
1597 return 1;
1598 } else if (sense.asc == 0x3F && sense.ascq == 0x01) {
1599 /* MICROCODE HAS BEEN CHANGED goes with SCSI BUS RESET OCCURRED */
1600 return 2;
1601 } else if (sense.asc == 0x29 && (sense.ascq == 0x05 || sense.ascq == 0x06)) {
1602 /* These two go with "all others". */
1603 ;
1604 } else if (sense.asc == 0x29 && sense.ascq <= 0x07) {
1605 /* POWER ON, RESET OR BUS DEVICE RESET OCCURRED = 0
1606 * POWER ON OCCURRED = 1
1607 * SCSI BUS RESET OCCURRED = 2
1608 * BUS DEVICE RESET FUNCTION OCCURRED = 3
1609 * I_T NEXUS LOSS OCCURRED = 7
1610 */
1611 return sense.ascq;
1612 } else if (sense.asc == 0x2F && sense.ascq == 0x01) {
1613 /* COMMANDS CLEARED BY POWER LOSS NOTIFICATION */
1614 return 8;
1615 }
1616 return (sense.asc << 8) | sense.ascq;
1617}
1618
8cc5583a
VB
1619void scsi_bus_set_ua(SCSIBus *bus, SCSISense sense)
1620{
1621 int prec1, prec2;
1622 if (sense.key != UNIT_ATTENTION) {
1623 return;
1624 }
1625
1626 /*
1627 * Override a pre-existing unit attention condition, except for a more
1628 * important reset condition.
1629 */
1630 prec1 = scsi_ua_precedence(bus->unit_attention);
1631 prec2 = scsi_ua_precedence(sense);
1632 if (prec2 < prec1) {
1633 bus->unit_attention = sense;
1634 }
1635}
1636
e48e84ea
PB
1637void scsi_device_set_ua(SCSIDevice *sdev, SCSISense sense)
1638{
1639 int prec1, prec2;
1640 if (sense.key != UNIT_ATTENTION) {
1641 return;
1642 }
1643 trace_scsi_device_set_ua(sdev->id, sdev->lun, sense.key,
1644 sense.asc, sense.ascq);
1645
1646 /*
1647 * Override a pre-existing unit attention condition, except for a more
1648 * important reset condition.
1649 */
1650 prec1 = scsi_ua_precedence(sdev->unit_attention);
1651 prec2 = scsi_ua_precedence(sense);
1652 if (prec2 < prec1) {
1653 sdev->unit_attention = sense;
1654 }
1655}
1656
c7b48872 1657void scsi_device_purge_requests(SCSIDevice *sdev, SCSISense sense)
c557e889
PB
1658{
1659 SCSIRequest *req;
1660
8aad35f6 1661 aio_context_acquire(blk_get_aio_context(sdev->conf.blk));
c557e889
PB
1662 while (!QTAILQ_EMPTY(&sdev->requests)) {
1663 req = QTAILQ_FIRST(&sdev->requests);
8aad35f6 1664 scsi_req_cancel_async(req, NULL);
c557e889 1665 }
8aad35f6
PB
1666 blk_drain(sdev->conf.blk);
1667 aio_context_release(blk_get_aio_context(sdev->conf.blk));
e48e84ea 1668 scsi_device_set_ua(sdev, sense);
c557e889
PB
1669}
1670
baa1bd89
PB
1671static char *scsibus_get_dev_path(DeviceState *dev)
1672{
e1dc6815 1673 SCSIDevice *d = SCSI_DEVICE(dev);
baa1bd89 1674 DeviceState *hba = dev->parent_bus->parent;
09e5ab63 1675 char *id;
b7c8c35f 1676 char *path;
baa1bd89 1677
09e5ab63 1678 id = qdev_get_dev_path(hba);
baa1bd89 1679 if (id) {
b7c8c35f 1680 path = g_strdup_printf("%s/%d:%d:%d", id, d->channel, d->id, d->lun);
baa1bd89 1681 } else {
b7c8c35f 1682 path = g_strdup_printf("%d:%d:%d", d->channel, d->id, d->lun);
baa1bd89 1683 }
b7c8c35f
PB
1684 g_free(id);
1685 return path;
baa1bd89
PB
1686}
1687
db07c0f8
GN
1688static char *scsibus_get_fw_dev_path(DeviceState *dev)
1689{
b9eea3e6 1690 SCSIDevice *d = SCSI_DEVICE(dev);
a5cf8262
JM
1691 return g_strdup_printf("channel@%x/%s@%x,%x", d->channel,
1692 qdev_fw_name(dev), d->id, d->lun);
f48a7a6e
PB
1693}
1694
63f740dd
PB
1695/* SCSI request list. For simplicity, pv points to the whole device */
1696
2c21ee76 1697static int put_scsi_requests(QEMUFile *f, void *pv, size_t size,
3ddba9a9 1698 const VMStateField *field, JSONWriter *vmdesc)
63f740dd
PB
1699{
1700 SCSIDevice *s = pv;
1701 SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, s->qdev.parent_bus);
1702 SCSIRequest *req;
1703
1704 QTAILQ_FOREACH(req, &s->requests, next) {
1705 assert(!req->io_canceled);
f3126d65 1706 assert(req->status == -1 && req->host_status == -1);
63f740dd
PB
1707 assert(req->enqueued);
1708
18eef3bc 1709 qemu_put_sbyte(f, req->retry ? 1 : 2);
63f740dd
PB
1710 qemu_put_buffer(f, req->cmd.buf, sizeof(req->cmd.buf));
1711 qemu_put_be32s(f, &req->tag);
1712 qemu_put_be32s(f, &req->lun);
1713 if (bus->info->save_request) {
1714 bus->info->save_request(f, req);
1715 }
1716 if (req->ops->save_request) {
1717 req->ops->save_request(f, req);
1718 }
1719 }
1720 qemu_put_sbyte(f, 0);
2c21ee76
JD
1721
1722 return 0;
63f740dd
PB
1723}
1724
2c21ee76 1725static int get_scsi_requests(QEMUFile *f, void *pv, size_t size,
03fee66f 1726 const VMStateField *field)
63f740dd
PB
1727{
1728 SCSIDevice *s = pv;
1729 SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, s->qdev.parent_bus);
18eef3bc 1730 int8_t sbyte;
63f740dd 1731
18eef3bc 1732 while ((sbyte = qemu_get_sbyte(f)) > 0) {
63f740dd
PB
1733 uint8_t buf[SCSI_CMD_BUF_SIZE];
1734 uint32_t tag;
1735 uint32_t lun;
1736 SCSIRequest *req;
1737
1738 qemu_get_buffer(f, buf, sizeof(buf));
1739 qemu_get_be32s(f, &tag);
1740 qemu_get_be32s(f, &lun);
fe9d8927
JM
1741 /*
1742 * A too-short CDB would have been rejected by scsi_req_new, so just use
1743 * SCSI_CMD_BUF_SIZE as the CDB length.
1744 */
1745 req = scsi_req_new(s, tag, lun, buf, sizeof(buf), NULL);
18eef3bc 1746 req->retry = (sbyte == 1);
63f740dd
PB
1747 if (bus->info->load_request) {
1748 req->hba_private = bus->info->load_request(f, req);
1749 }
1750 if (req->ops->load_request) {
1751 req->ops->load_request(f, req);
1752 }
1753
1754 /* Just restart it later. */
63f740dd
PB
1755 scsi_req_enqueue_internal(req);
1756
1757 /* At this point, the request will be kept alive by the reference
1758 * added by scsi_req_enqueue_internal, so we can release our reference.
1759 * The HBA of course will add its own reference in the load_request
1760 * callback if it needs to hold on the SCSIRequest.
1761 */
1762 scsi_req_unref(req);
1763 }
1764
1765 return 0;
1766}
1767
12badfc2 1768static const VMStateInfo vmstate_info_scsi_requests = {
63f740dd
PB
1769 .name = "scsi-requests",
1770 .get = get_scsi_requests,
1771 .put = put_scsi_requests,
1772};
1773
2e323f03
FZ
1774static bool scsi_sense_state_needed(void *opaque)
1775{
1776 SCSIDevice *s = opaque;
1777
1778 return s->sense_len > SCSI_SENSE_BUF_SIZE_OLD;
1779}
1780
1781static const VMStateDescription vmstate_scsi_sense_state = {
1782 .name = "SCSIDevice/sense",
1783 .version_id = 1,
1784 .minimum_version_id = 1,
5cd8cada 1785 .needed = scsi_sense_state_needed,
d49805ae 1786 .fields = (VMStateField[]) {
2e323f03
FZ
1787 VMSTATE_UINT8_SUB_ARRAY(sense, SCSIDevice,
1788 SCSI_SENSE_BUF_SIZE_OLD,
1789 SCSI_SENSE_BUF_SIZE - SCSI_SENSE_BUF_SIZE_OLD),
1790 VMSTATE_END_OF_LIST()
1791 }
1792};
1793
63f740dd
PB
1794const VMStateDescription vmstate_scsi_device = {
1795 .name = "SCSIDevice",
1796 .version_id = 1,
1797 .minimum_version_id = 1,
63f740dd
PB
1798 .fields = (VMStateField[]) {
1799 VMSTATE_UINT8(unit_attention.key, SCSIDevice),
1800 VMSTATE_UINT8(unit_attention.asc, SCSIDevice),
1801 VMSTATE_UINT8(unit_attention.ascq, SCSIDevice),
1802 VMSTATE_BOOL(sense_is_ua, SCSIDevice),
2e323f03 1803 VMSTATE_UINT8_SUB_ARRAY(sense, SCSIDevice, 0, SCSI_SENSE_BUF_SIZE_OLD),
63f740dd
PB
1804 VMSTATE_UINT32(sense_len, SCSIDevice),
1805 {
1806 .name = "requests",
1807 .version_id = 0,
1808 .field_exists = NULL,
1809 .size = 0, /* ouch */
1810 .info = &vmstate_info_scsi_requests,
1811 .flags = VMS_SINGLE,
1812 .offset = 0,
1813 },
1814 VMSTATE_END_OF_LIST()
2e323f03 1815 },
5cd8cada
JQ
1816 .subsections = (const VMStateDescription*[]) {
1817 &vmstate_scsi_sense_state,
1818 NULL
63f740dd
PB
1819 }
1820};
1821
42a90a89
PB
1822static Property scsi_props[] = {
1823 DEFINE_PROP_UINT32("channel", SCSIDevice, channel, 0),
1824 DEFINE_PROP_UINT32("scsi-id", SCSIDevice, id, -1),
1825 DEFINE_PROP_UINT32("lun", SCSIDevice, lun, -1),
1826 DEFINE_PROP_END_OF_LIST(),
1827};
1828
39bffca2
AL
1829static void scsi_device_class_init(ObjectClass *klass, void *data)
1830{
1831 DeviceClass *k = DEVICE_CLASS(klass);
125ee0ed 1832 set_bit(DEVICE_CATEGORY_STORAGE, k->categories);
a818a4b6
FZ
1833 k->bus_type = TYPE_SCSI_BUS;
1834 k->realize = scsi_qdev_realize;
a818a4b6 1835 k->unrealize = scsi_qdev_unrealize;
4f67d30b 1836 device_class_set_props(k, scsi_props);
39bffca2
AL
1837}
1838
44fb6337
GA
1839static void scsi_dev_instance_init(Object *obj)
1840{
1841 DeviceState *dev = DEVICE(obj);
e1dc6815 1842 SCSIDevice *s = SCSI_DEVICE(dev);
44fb6337
GA
1843
1844 device_add_bootindex_property(obj, &s->conf.bootindex,
1845 "bootindex", NULL,
40c2281c 1846 &s->qdev);
44fb6337
GA
1847}
1848
8c43a6f0 1849static const TypeInfo scsi_device_type_info = {
b9eea3e6
AL
1850 .name = TYPE_SCSI_DEVICE,
1851 .parent = TYPE_DEVICE,
1852 .instance_size = sizeof(SCSIDevice),
1853 .abstract = true,
1854 .class_size = sizeof(SCSIDeviceClass),
39bffca2 1855 .class_init = scsi_device_class_init,
44fb6337 1856 .instance_init = scsi_dev_instance_init,
b9eea3e6
AL
1857};
1858
42a90a89
PB
1859static void scsi_bus_class_init(ObjectClass *klass, void *data)
1860{
1861 BusClass *k = BUS_CLASS(klass);
1862 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(klass);
1863
1864 k->get_dev_path = scsibus_get_dev_path;
1865 k->get_fw_dev_path = scsibus_get_fw_dev_path;
1866 k->check_address = scsi_bus_check_address;
1867 hc->unplug = qdev_simple_device_unplug_cb;
1868}
1869
1870static const TypeInfo scsi_bus_info = {
1871 .name = TYPE_SCSI_BUS,
1872 .parent = TYPE_BUS,
1873 .instance_size = sizeof(SCSIBus),
1874 .class_init = scsi_bus_class_init,
1875 .interfaces = (InterfaceInfo[]) {
1876 { TYPE_HOTPLUG_HANDLER },
1877 { }
1878 }
1879};
1880
83f7d43a 1881static void scsi_register_types(void)
b9eea3e6 1882{
0d936928 1883 type_register_static(&scsi_bus_info);
b9eea3e6
AL
1884 type_register_static(&scsi_device_type_info);
1885}
1886
83f7d43a 1887type_init(scsi_register_types)