Add qemu 2.4.0
[kvmfornfv.git] / qemu / hw / scsi / scsi-bus.c
1 #include "hw/hw.h"
2 #include "qemu/error-report.h"
3 #include "hw/scsi/scsi.h"
4 #include "block/scsi.h"
5 #include "hw/qdev.h"
6 #include "sysemu/block-backend.h"
7 #include "sysemu/blockdev.h"
8 #include "trace.h"
9 #include "sysemu/dma.h"
10
11 static char *scsibus_get_dev_path(DeviceState *dev);
12 static char *scsibus_get_fw_dev_path(DeviceState *dev);
13 static void scsi_req_dequeue(SCSIRequest *req);
14 static uint8_t *scsi_target_alloc_buf(SCSIRequest *req, size_t len);
15 static void scsi_target_free_buf(SCSIRequest *req);
16
17 static Property scsi_props[] = {
18     DEFINE_PROP_UINT32("channel", SCSIDevice, channel, 0),
19     DEFINE_PROP_UINT32("scsi-id", SCSIDevice, id, -1),
20     DEFINE_PROP_UINT32("lun", SCSIDevice, lun, -1),
21     DEFINE_PROP_END_OF_LIST(),
22 };
23
24 static void scsi_bus_class_init(ObjectClass *klass, void *data)
25 {
26     BusClass *k = BUS_CLASS(klass);
27     HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(klass);
28
29     k->get_dev_path = scsibus_get_dev_path;
30     k->get_fw_dev_path = scsibus_get_fw_dev_path;
31     hc->unplug = qdev_simple_device_unplug_cb;
32 }
33
34 static const TypeInfo scsi_bus_info = {
35     .name = TYPE_SCSI_BUS,
36     .parent = TYPE_BUS,
37     .instance_size = sizeof(SCSIBus),
38     .class_init = scsi_bus_class_init,
39     .interfaces = (InterfaceInfo[]) {
40         { TYPE_HOTPLUG_HANDLER },
41         { }
42     }
43 };
44 static int next_scsi_bus;
45
46 static void scsi_device_realize(SCSIDevice *s, Error **errp)
47 {
48     SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(s);
49     if (sc->realize) {
50         sc->realize(s, errp);
51     }
52 }
53
54 int scsi_bus_parse_cdb(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf,
55                        void *hba_private)
56 {
57     SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, dev->qdev.parent_bus);
58     int rc;
59
60     assert(cmd->len == 0);
61     rc = scsi_req_parse_cdb(dev, cmd, buf);
62     if (bus->info->parse_cdb) {
63         rc = bus->info->parse_cdb(dev, cmd, buf, hba_private);
64     }
65     return rc;
66 }
67
68 static SCSIRequest *scsi_device_alloc_req(SCSIDevice *s, uint32_t tag, uint32_t lun,
69                                           uint8_t *buf, void *hba_private)
70 {
71     SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(s);
72     if (sc->alloc_req) {
73         return sc->alloc_req(s, tag, lun, buf, hba_private);
74     }
75
76     return NULL;
77 }
78
79 void scsi_device_unit_attention_reported(SCSIDevice *s)
80 {
81     SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(s);
82     if (sc->unit_attention_reported) {
83         sc->unit_attention_reported(s);
84     }
85 }
86
87 /* Create a scsi bus, and attach devices to it.  */
88 void scsi_bus_new(SCSIBus *bus, size_t bus_size, DeviceState *host,
89                   const SCSIBusInfo *info, const char *bus_name)
90 {
91     qbus_create_inplace(bus, bus_size, TYPE_SCSI_BUS, host, bus_name);
92     bus->busnr = next_scsi_bus++;
93     bus->info = info;
94     qbus_set_bus_hotplug_handler(BUS(bus), &error_abort);
95 }
96
97 static void scsi_dma_restart_bh(void *opaque)
98 {
99     SCSIDevice *s = opaque;
100     SCSIRequest *req, *next;
101
102     qemu_bh_delete(s->bh);
103     s->bh = NULL;
104
105     QTAILQ_FOREACH_SAFE(req, &s->requests, next, next) {
106         scsi_req_ref(req);
107         if (req->retry) {
108             req->retry = false;
109             switch (req->cmd.mode) {
110             case SCSI_XFER_FROM_DEV:
111             case SCSI_XFER_TO_DEV:
112                 scsi_req_continue(req);
113                 break;
114             case SCSI_XFER_NONE:
115                 scsi_req_dequeue(req);
116                 scsi_req_enqueue(req);
117                 break;
118             }
119         }
120         scsi_req_unref(req);
121     }
122 }
123
124 void scsi_req_retry(SCSIRequest *req)
125 {
126     /* No need to save a reference, because scsi_dma_restart_bh just
127      * looks at the request list.  */
128     req->retry = true;
129 }
130
131 static void scsi_dma_restart_cb(void *opaque, int running, RunState state)
132 {
133     SCSIDevice *s = opaque;
134
135     if (!running) {
136         return;
137     }
138     if (!s->bh) {
139         s->bh = qemu_bh_new(scsi_dma_restart_bh, s);
140         qemu_bh_schedule(s->bh);
141     }
142 }
143
144 static void scsi_qdev_realize(DeviceState *qdev, Error **errp)
145 {
146     SCSIDevice *dev = SCSI_DEVICE(qdev);
147     SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, dev->qdev.parent_bus);
148     SCSIDevice *d;
149     Error *local_err = NULL;
150
151     if (dev->channel > bus->info->max_channel) {
152         error_setg(errp, "bad scsi channel id: %d", dev->channel);
153         return;
154     }
155     if (dev->id != -1 && dev->id > bus->info->max_target) {
156         error_setg(errp, "bad scsi device id: %d", dev->id);
157         return;
158     }
159     if (dev->lun != -1 && dev->lun > bus->info->max_lun) {
160         error_setg(errp, "bad scsi device lun: %d", dev->lun);
161         return;
162     }
163
164     if (dev->id == -1) {
165         int id = -1;
166         if (dev->lun == -1) {
167             dev->lun = 0;
168         }
169         do {
170             d = scsi_device_find(bus, dev->channel, ++id, dev->lun);
171         } while (d && d->lun == dev->lun && id < bus->info->max_target);
172         if (d && d->lun == dev->lun) {
173             error_setg(errp, "no free target");
174             return;
175         }
176         dev->id = id;
177     } else if (dev->lun == -1) {
178         int lun = -1;
179         do {
180             d = scsi_device_find(bus, dev->channel, dev->id, ++lun);
181         } while (d && d->lun == lun && lun < bus->info->max_lun);
182         if (d && d->lun == lun) {
183             error_setg(errp, "no free lun");
184             return;
185         }
186         dev->lun = lun;
187     } else {
188         d = scsi_device_find(bus, dev->channel, dev->id, dev->lun);
189         assert(d);
190         if (d->lun == dev->lun && dev != d) {
191             error_setg(errp, "lun already used by '%s'", d->qdev.id);
192             return;
193         }
194     }
195
196     QTAILQ_INIT(&dev->requests);
197     scsi_device_realize(dev, &local_err);
198     if (local_err) {
199         error_propagate(errp, local_err);
200         return;
201     }
202     dev->vmsentry = qemu_add_vm_change_state_handler(scsi_dma_restart_cb,
203                                                      dev);
204 }
205
206 static void scsi_qdev_unrealize(DeviceState *qdev, Error **errp)
207 {
208     SCSIDevice *dev = SCSI_DEVICE(qdev);
209
210     if (dev->vmsentry) {
211         qemu_del_vm_change_state_handler(dev->vmsentry);
212     }
213
214     scsi_device_purge_requests(dev, SENSE_CODE(NO_SENSE));
215     blockdev_mark_auto_del(dev->conf.blk);
216 }
217
218 /* handle legacy '-drive if=scsi,...' cmd line args */
219 SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockBackend *blk,
220                                       int unit, bool removable, int bootindex,
221                                       const char *serial, Error **errp)
222 {
223     const char *driver;
224     char *name;
225     DeviceState *dev;
226     Error *err = NULL;
227
228     driver = blk_is_sg(blk) ? "scsi-generic" : "scsi-disk";
229     dev = qdev_create(&bus->qbus, driver);
230     name = g_strdup_printf("legacy[%d]", unit);
231     object_property_add_child(OBJECT(bus), name, OBJECT(dev), NULL);
232     g_free(name);
233
234     qdev_prop_set_uint32(dev, "scsi-id", unit);
235     if (bootindex >= 0) {
236         object_property_set_int(OBJECT(dev), bootindex, "bootindex",
237                                 &error_abort);
238     }
239     if (object_property_find(OBJECT(dev), "removable", NULL)) {
240         qdev_prop_set_bit(dev, "removable", removable);
241     }
242     if (serial && object_property_find(OBJECT(dev), "serial", NULL)) {
243         qdev_prop_set_string(dev, "serial", serial);
244     }
245     qdev_prop_set_drive(dev, "drive", blk, &err);
246     if (err) {
247         error_propagate(errp, err);
248         object_unparent(OBJECT(dev));
249         return NULL;
250     }
251     object_property_set_bool(OBJECT(dev), true, "realized", &err);
252     if (err != NULL) {
253         error_propagate(errp, err);
254         object_unparent(OBJECT(dev));
255         return NULL;
256     }
257     return SCSI_DEVICE(dev);
258 }
259
260 void scsi_bus_legacy_handle_cmdline(SCSIBus *bus, Error **errp)
261 {
262     Location loc;
263     DriveInfo *dinfo;
264     int unit;
265     Error *err = NULL;
266
267     loc_push_none(&loc);
268     for (unit = 0; unit <= bus->info->max_target; unit++) {
269         dinfo = drive_get(IF_SCSI, bus->busnr, unit);
270         if (dinfo == NULL) {
271             continue;
272         }
273         qemu_opts_loc_restore(dinfo->opts);
274         scsi_bus_legacy_add_drive(bus, blk_by_legacy_dinfo(dinfo),
275                                   unit, false, -1, NULL, &err);
276         if (err != NULL) {
277             error_propagate(errp, err);
278             break;
279         }
280     }
281     loc_pop(&loc);
282 }
283
284 static int32_t scsi_invalid_field(SCSIRequest *req, uint8_t *buf)
285 {
286     scsi_req_build_sense(req, SENSE_CODE(INVALID_FIELD));
287     scsi_req_complete(req, CHECK_CONDITION);
288     return 0;
289 }
290
291 static const struct SCSIReqOps reqops_invalid_field = {
292     .size         = sizeof(SCSIRequest),
293     .send_command = scsi_invalid_field
294 };
295
296 /* SCSIReqOps implementation for invalid commands.  */
297
298 static int32_t scsi_invalid_command(SCSIRequest *req, uint8_t *buf)
299 {
300     scsi_req_build_sense(req, SENSE_CODE(INVALID_OPCODE));
301     scsi_req_complete(req, CHECK_CONDITION);
302     return 0;
303 }
304
305 static const struct SCSIReqOps reqops_invalid_opcode = {
306     .size         = sizeof(SCSIRequest),
307     .send_command = scsi_invalid_command
308 };
309
310 /* SCSIReqOps implementation for unit attention conditions.  */
311
312 static int32_t scsi_unit_attention(SCSIRequest *req, uint8_t *buf)
313 {
314     if (req->dev->unit_attention.key == UNIT_ATTENTION) {
315         scsi_req_build_sense(req, req->dev->unit_attention);
316     } else if (req->bus->unit_attention.key == UNIT_ATTENTION) {
317         scsi_req_build_sense(req, req->bus->unit_attention);
318     }
319     scsi_req_complete(req, CHECK_CONDITION);
320     return 0;
321 }
322
323 static const struct SCSIReqOps reqops_unit_attention = {
324     .size         = sizeof(SCSIRequest),
325     .send_command = scsi_unit_attention
326 };
327
328 /* SCSIReqOps implementation for REPORT LUNS and for commands sent to
329    an invalid LUN.  */
330
331 typedef struct SCSITargetReq SCSITargetReq;
332
333 struct SCSITargetReq {
334     SCSIRequest req;
335     int len;
336     uint8_t *buf;
337     int buf_len;
338 };
339
340 static void store_lun(uint8_t *outbuf, int lun)
341 {
342     if (lun < 256) {
343         outbuf[1] = lun;
344         return;
345     }
346     outbuf[1] = (lun & 255);
347     outbuf[0] = (lun >> 8) | 0x40;
348 }
349
350 static bool scsi_target_emulate_report_luns(SCSITargetReq *r)
351 {
352     BusChild *kid;
353     int i, len, n;
354     int channel, id;
355     bool found_lun0;
356
357     if (r->req.cmd.xfer < 16) {
358         return false;
359     }
360     if (r->req.cmd.buf[2] > 2) {
361         return false;
362     }
363     channel = r->req.dev->channel;
364     id = r->req.dev->id;
365     found_lun0 = false;
366     n = 0;
367     QTAILQ_FOREACH(kid, &r->req.bus->qbus.children, sibling) {
368         DeviceState *qdev = kid->child;
369         SCSIDevice *dev = SCSI_DEVICE(qdev);
370
371         if (dev->channel == channel && dev->id == id) {
372             if (dev->lun == 0) {
373                 found_lun0 = true;
374             }
375             n += 8;
376         }
377     }
378     if (!found_lun0) {
379         n += 8;
380     }
381
382     scsi_target_alloc_buf(&r->req, n + 8);
383
384     len = MIN(n + 8, r->req.cmd.xfer & ~7);
385     memset(r->buf, 0, len);
386     stl_be_p(&r->buf[0], n);
387     i = found_lun0 ? 8 : 16;
388     QTAILQ_FOREACH(kid, &r->req.bus->qbus.children, sibling) {
389         DeviceState *qdev = kid->child;
390         SCSIDevice *dev = SCSI_DEVICE(qdev);
391
392         if (dev->channel == channel && dev->id == id) {
393             store_lun(&r->buf[i], dev->lun);
394             i += 8;
395         }
396     }
397     assert(i == n + 8);
398     r->len = len;
399     return true;
400 }
401
402 static bool scsi_target_emulate_inquiry(SCSITargetReq *r)
403 {
404     assert(r->req.dev->lun != r->req.lun);
405
406     scsi_target_alloc_buf(&r->req, SCSI_INQUIRY_LEN);
407
408     if (r->req.cmd.buf[1] & 0x2) {
409         /* Command support data - optional, not implemented */
410         return false;
411     }
412
413     if (r->req.cmd.buf[1] & 0x1) {
414         /* Vital product data */
415         uint8_t page_code = r->req.cmd.buf[2];
416         r->buf[r->len++] = page_code ; /* this page */
417         r->buf[r->len++] = 0x00;
418
419         switch (page_code) {
420         case 0x00: /* Supported page codes, mandatory */
421         {
422             int pages;
423             pages = r->len++;
424             r->buf[r->len++] = 0x00; /* list of supported pages (this page) */
425             r->buf[pages] = r->len - pages - 1; /* number of pages */
426             break;
427         }
428         default:
429             return false;
430         }
431         /* done with EVPD */
432         assert(r->len < r->buf_len);
433         r->len = MIN(r->req.cmd.xfer, r->len);
434         return true;
435     }
436
437     /* Standard INQUIRY data */
438     if (r->req.cmd.buf[2] != 0) {
439         return false;
440     }
441
442     /* PAGE CODE == 0 */
443     r->len = MIN(r->req.cmd.xfer, SCSI_INQUIRY_LEN);
444     memset(r->buf, 0, r->len);
445     if (r->req.lun != 0) {
446         r->buf[0] = TYPE_NO_LUN;
447     } else {
448         r->buf[0] = TYPE_NOT_PRESENT | TYPE_INACTIVE;
449         r->buf[2] = 5; /* Version */
450         r->buf[3] = 2 | 0x10; /* HiSup, response data format */
451         r->buf[4] = r->len - 5; /* Additional Length = (Len - 1) - 4 */
452         r->buf[7] = 0x10 | (r->req.bus->info->tcq ? 0x02 : 0); /* Sync, TCQ.  */
453         memcpy(&r->buf[8], "QEMU    ", 8);
454         memcpy(&r->buf[16], "QEMU TARGET     ", 16);
455         pstrcpy((char *) &r->buf[32], 4, qemu_get_version());
456     }
457     return true;
458 }
459
460 static int32_t scsi_target_send_command(SCSIRequest *req, uint8_t *buf)
461 {
462     SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
463
464     switch (buf[0]) {
465     case REPORT_LUNS:
466         if (!scsi_target_emulate_report_luns(r)) {
467             goto illegal_request;
468         }
469         break;
470     case INQUIRY:
471         if (!scsi_target_emulate_inquiry(r)) {
472             goto illegal_request;
473         }
474         break;
475     case REQUEST_SENSE:
476         scsi_target_alloc_buf(&r->req, SCSI_SENSE_LEN);
477         r->len = scsi_device_get_sense(r->req.dev, r->buf,
478                                        MIN(req->cmd.xfer, r->buf_len),
479                                        (req->cmd.buf[1] & 1) == 0);
480         if (r->req.dev->sense_is_ua) {
481             scsi_device_unit_attention_reported(req->dev);
482             r->req.dev->sense_len = 0;
483             r->req.dev->sense_is_ua = false;
484         }
485         break;
486     case TEST_UNIT_READY:
487         break;
488     default:
489         scsi_req_build_sense(req, SENSE_CODE(LUN_NOT_SUPPORTED));
490         scsi_req_complete(req, CHECK_CONDITION);
491         return 0;
492     illegal_request:
493         scsi_req_build_sense(req, SENSE_CODE(INVALID_FIELD));
494         scsi_req_complete(req, CHECK_CONDITION);
495         return 0;
496     }
497
498     if (!r->len) {
499         scsi_req_complete(req, GOOD);
500     }
501     return r->len;
502 }
503
504 static void scsi_target_read_data(SCSIRequest *req)
505 {
506     SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
507     uint32_t n;
508
509     n = r->len;
510     if (n > 0) {
511         r->len = 0;
512         scsi_req_data(&r->req, n);
513     } else {
514         scsi_req_complete(&r->req, GOOD);
515     }
516 }
517
518 static uint8_t *scsi_target_get_buf(SCSIRequest *req)
519 {
520     SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
521
522     return r->buf;
523 }
524
525 static uint8_t *scsi_target_alloc_buf(SCSIRequest *req, size_t len)
526 {
527     SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
528
529     r->buf = g_malloc(len);
530     r->buf_len = len;
531
532     return r->buf;
533 }
534
535 static void scsi_target_free_buf(SCSIRequest *req)
536 {
537     SCSITargetReq *r = DO_UPCAST(SCSITargetReq, req, req);
538
539     g_free(r->buf);
540 }
541
542 static const struct SCSIReqOps reqops_target_command = {
543     .size         = sizeof(SCSITargetReq),
544     .send_command = scsi_target_send_command,
545     .read_data    = scsi_target_read_data,
546     .get_buf      = scsi_target_get_buf,
547     .free_req     = scsi_target_free_buf,
548 };
549
550
551 SCSIRequest *scsi_req_alloc(const SCSIReqOps *reqops, SCSIDevice *d,
552                             uint32_t tag, uint32_t lun, void *hba_private)
553 {
554     SCSIRequest *req;
555     SCSIBus *bus = scsi_bus_from_device(d);
556     BusState *qbus = BUS(bus);
557     const int memset_off = offsetof(SCSIRequest, sense)
558                            + sizeof(req->sense);
559
560     req = g_slice_alloc(reqops->size);
561     memset((uint8_t *)req + memset_off, 0, reqops->size - memset_off);
562     req->refcount = 1;
563     req->bus = bus;
564     req->dev = d;
565     req->tag = tag;
566     req->lun = lun;
567     req->hba_private = hba_private;
568     req->status = -1;
569     req->ops = reqops;
570     object_ref(OBJECT(d));
571     object_ref(OBJECT(qbus->parent));
572     notifier_list_init(&req->cancel_notifiers);
573     trace_scsi_req_alloc(req->dev->id, req->lun, req->tag);
574     return req;
575 }
576
577 SCSIRequest *scsi_req_new(SCSIDevice *d, uint32_t tag, uint32_t lun,
578                           uint8_t *buf, void *hba_private)
579 {
580     SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, d->qdev.parent_bus);
581     const SCSIReqOps *ops;
582     SCSIDeviceClass *sc = SCSI_DEVICE_GET_CLASS(d);
583     SCSIRequest *req;
584     SCSICommand cmd = { .len = 0 };
585     int ret;
586
587     if ((d->unit_attention.key == UNIT_ATTENTION ||
588          bus->unit_attention.key == UNIT_ATTENTION) &&
589         (buf[0] != INQUIRY &&
590          buf[0] != REPORT_LUNS &&
591          buf[0] != GET_CONFIGURATION &&
592          buf[0] != GET_EVENT_STATUS_NOTIFICATION &&
593
594          /*
595           * If we already have a pending unit attention condition,
596           * report this one before triggering another one.
597           */
598          !(buf[0] == REQUEST_SENSE && d->sense_is_ua))) {
599         ops = &reqops_unit_attention;
600     } else if (lun != d->lun ||
601                buf[0] == REPORT_LUNS ||
602                (buf[0] == REQUEST_SENSE && d->sense_len)) {
603         ops = &reqops_target_command;
604     } else {
605         ops = NULL;
606     }
607
608     if (ops != NULL || !sc->parse_cdb) {
609         ret = scsi_req_parse_cdb(d, &cmd, buf);
610     } else {
611         ret = sc->parse_cdb(d, &cmd, buf, hba_private);
612     }
613
614     if (ret != 0) {
615         trace_scsi_req_parse_bad(d->id, lun, tag, buf[0]);
616         req = scsi_req_alloc(&reqops_invalid_opcode, d, tag, lun, hba_private);
617     } else {
618         assert(cmd.len != 0);
619         trace_scsi_req_parsed(d->id, lun, tag, buf[0],
620                               cmd.mode, cmd.xfer);
621         if (cmd.lba != -1) {
622             trace_scsi_req_parsed_lba(d->id, lun, tag, buf[0],
623                                       cmd.lba);
624         }
625
626         if (cmd.xfer > INT32_MAX) {
627             req = scsi_req_alloc(&reqops_invalid_field, d, tag, lun, hba_private);
628         } else if (ops) {
629             req = scsi_req_alloc(ops, d, tag, lun, hba_private);
630         } else {
631             req = scsi_device_alloc_req(d, tag, lun, buf, hba_private);
632         }
633     }
634
635     req->cmd = cmd;
636     req->resid = req->cmd.xfer;
637
638     switch (buf[0]) {
639     case INQUIRY:
640         trace_scsi_inquiry(d->id, lun, tag, cmd.buf[1], cmd.buf[2]);
641         break;
642     case TEST_UNIT_READY:
643         trace_scsi_test_unit_ready(d->id, lun, tag);
644         break;
645     case REPORT_LUNS:
646         trace_scsi_report_luns(d->id, lun, tag);
647         break;
648     case REQUEST_SENSE:
649         trace_scsi_request_sense(d->id, lun, tag);
650         break;
651     default:
652         break;
653     }
654
655     return req;
656 }
657
658 uint8_t *scsi_req_get_buf(SCSIRequest *req)
659 {
660     return req->ops->get_buf(req);
661 }
662
663 static void scsi_clear_unit_attention(SCSIRequest *req)
664 {
665     SCSISense *ua;
666     if (req->dev->unit_attention.key != UNIT_ATTENTION &&
667         req->bus->unit_attention.key != UNIT_ATTENTION) {
668         return;
669     }
670
671     /*
672      * If an INQUIRY command enters the enabled command state,
673      * the device server shall [not] clear any unit attention condition;
674      * See also MMC-6, paragraphs 6.5 and 6.6.2.
675      */
676     if (req->cmd.buf[0] == INQUIRY ||
677         req->cmd.buf[0] == GET_CONFIGURATION ||
678         req->cmd.buf[0] == GET_EVENT_STATUS_NOTIFICATION) {
679         return;
680     }
681
682     if (req->dev->unit_attention.key == UNIT_ATTENTION) {
683         ua = &req->dev->unit_attention;
684     } else {
685         ua = &req->bus->unit_attention;
686     }
687
688     /*
689      * If a REPORT LUNS command enters the enabled command state, [...]
690      * the device server shall clear any pending unit attention condition
691      * with an additional sense code of REPORTED LUNS DATA HAS CHANGED.
692      */
693     if (req->cmd.buf[0] == REPORT_LUNS &&
694         !(ua->asc == SENSE_CODE(REPORTED_LUNS_CHANGED).asc &&
695           ua->ascq == SENSE_CODE(REPORTED_LUNS_CHANGED).ascq)) {
696         return;
697     }
698
699     *ua = SENSE_CODE(NO_SENSE);
700 }
701
702 int scsi_req_get_sense(SCSIRequest *req, uint8_t *buf, int len)
703 {
704     int ret;
705
706     assert(len >= 14);
707     if (!req->sense_len) {
708         return 0;
709     }
710
711     ret = scsi_build_sense(req->sense, req->sense_len, buf, len, true);
712
713     /*
714      * FIXME: clearing unit attention conditions upon autosense should be done
715      * only if the UA_INTLCK_CTRL field in the Control mode page is set to 00b
716      * (SAM-5, 5.14).
717      *
718      * We assume UA_INTLCK_CTRL to be 00b for HBAs that support autosense, and
719      * 10b for HBAs that do not support it (do not call scsi_req_get_sense).
720      * Here we handle unit attention clearing for UA_INTLCK_CTRL == 00b.
721      */
722     if (req->dev->sense_is_ua) {
723         scsi_device_unit_attention_reported(req->dev);
724         req->dev->sense_len = 0;
725         req->dev->sense_is_ua = false;
726     }
727     return ret;
728 }
729
730 int scsi_device_get_sense(SCSIDevice *dev, uint8_t *buf, int len, bool fixed)
731 {
732     return scsi_build_sense(dev->sense, dev->sense_len, buf, len, fixed);
733 }
734
735 void scsi_req_build_sense(SCSIRequest *req, SCSISense sense)
736 {
737     trace_scsi_req_build_sense(req->dev->id, req->lun, req->tag,
738                                sense.key, sense.asc, sense.ascq);
739     memset(req->sense, 0, 18);
740     req->sense[0] = 0x70;
741     req->sense[2] = sense.key;
742     req->sense[7] = 10;
743     req->sense[12] = sense.asc;
744     req->sense[13] = sense.ascq;
745     req->sense_len = 18;
746 }
747
748 static void scsi_req_enqueue_internal(SCSIRequest *req)
749 {
750     assert(!req->enqueued);
751     scsi_req_ref(req);
752     if (req->bus->info->get_sg_list) {
753         req->sg = req->bus->info->get_sg_list(req);
754     } else {
755         req->sg = NULL;
756     }
757     req->enqueued = true;
758     QTAILQ_INSERT_TAIL(&req->dev->requests, req, next);
759 }
760
761 int32_t scsi_req_enqueue(SCSIRequest *req)
762 {
763     int32_t rc;
764
765     assert(!req->retry);
766     scsi_req_enqueue_internal(req);
767     scsi_req_ref(req);
768     rc = req->ops->send_command(req, req->cmd.buf);
769     scsi_req_unref(req);
770     return rc;
771 }
772
773 static void scsi_req_dequeue(SCSIRequest *req)
774 {
775     trace_scsi_req_dequeue(req->dev->id, req->lun, req->tag);
776     req->retry = false;
777     if (req->enqueued) {
778         QTAILQ_REMOVE(&req->dev->requests, req, next);
779         req->enqueued = false;
780         scsi_req_unref(req);
781     }
782 }
783
784 static int scsi_get_performance_length(int num_desc, int type, int data_type)
785 {
786     /* MMC-6, paragraph 6.7.  */
787     switch (type) {
788     case 0:
789         if ((data_type & 3) == 0) {
790             /* Each descriptor is as in Table 295 - Nominal performance.  */
791             return 16 * num_desc + 8;
792         } else {
793             /* Each descriptor is as in Table 296 - Exceptions.  */
794             return 6 * num_desc + 8;
795         }
796     case 1:
797     case 4:
798     case 5:
799         return 8 * num_desc + 8;
800     case 2:
801         return 2048 * num_desc + 8;
802     case 3:
803         return 16 * num_desc + 8;
804     default:
805         return 8;
806     }
807 }
808
809 static int ata_passthrough_xfer_unit(SCSIDevice *dev, uint8_t *buf)
810 {
811     int byte_block = (buf[2] >> 2) & 0x1;
812     int type = (buf[2] >> 4) & 0x1;
813     int xfer_unit;
814
815     if (byte_block) {
816         if (type) {
817             xfer_unit = dev->blocksize;
818         } else {
819             xfer_unit = 512;
820         }
821     } else {
822         xfer_unit = 1;
823     }
824
825     return xfer_unit;
826 }
827
828 static int ata_passthrough_12_xfer(SCSIDevice *dev, uint8_t *buf)
829 {
830     int length = buf[2] & 0x3;
831     int xfer;
832     int unit = ata_passthrough_xfer_unit(dev, buf);
833
834     switch (length) {
835     case 0:
836     case 3: /* USB-specific.  */
837     default:
838         xfer = 0;
839         break;
840     case 1:
841         xfer = buf[3];
842         break;
843     case 2:
844         xfer = buf[4];
845         break;
846     }
847
848     return xfer * unit;
849 }
850
851 static int ata_passthrough_16_xfer(SCSIDevice *dev, uint8_t *buf)
852 {
853     int extend = buf[1] & 0x1;
854     int length = buf[2] & 0x3;
855     int xfer;
856     int unit = ata_passthrough_xfer_unit(dev, buf);
857
858     switch (length) {
859     case 0:
860     case 3: /* USB-specific.  */
861     default:
862         xfer = 0;
863         break;
864     case 1:
865         xfer = buf[4];
866         xfer |= (extend ? buf[3] << 8 : 0);
867         break;
868     case 2:
869         xfer = buf[6];
870         xfer |= (extend ? buf[5] << 8 : 0);
871         break;
872     }
873
874     return xfer * unit;
875 }
876
877 uint32_t scsi_data_cdb_xfer(uint8_t *buf)
878 {
879     if ((buf[0] >> 5) == 0 && buf[4] == 0) {
880         return 256;
881     } else {
882         return scsi_cdb_xfer(buf);
883     }
884 }
885
886 uint32_t scsi_cdb_xfer(uint8_t *buf)
887 {
888     switch (buf[0] >> 5) {
889     case 0:
890         return buf[4];
891         break;
892     case 1:
893     case 2:
894         return lduw_be_p(&buf[7]);
895         break;
896     case 4:
897         return ldl_be_p(&buf[10]) & 0xffffffffULL;
898         break;
899     case 5:
900         return ldl_be_p(&buf[6]) & 0xffffffffULL;
901         break;
902     default:
903         return -1;
904     }
905 }
906
907 static int scsi_req_xfer(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
908 {
909     cmd->xfer = scsi_cdb_xfer(buf);
910     switch (buf[0]) {
911     case TEST_UNIT_READY:
912     case REWIND:
913     case START_STOP:
914     case SET_CAPACITY:
915     case WRITE_FILEMARKS:
916     case WRITE_FILEMARKS_16:
917     case SPACE:
918     case RESERVE:
919     case RELEASE:
920     case ERASE:
921     case ALLOW_MEDIUM_REMOVAL:
922     case SEEK_10:
923     case SYNCHRONIZE_CACHE:
924     case SYNCHRONIZE_CACHE_16:
925     case LOCATE_16:
926     case LOCK_UNLOCK_CACHE:
927     case SET_CD_SPEED:
928     case SET_LIMITS:
929     case WRITE_LONG_10:
930     case UPDATE_BLOCK:
931     case RESERVE_TRACK:
932     case SET_READ_AHEAD:
933     case PRE_FETCH:
934     case PRE_FETCH_16:
935     case ALLOW_OVERWRITE:
936         cmd->xfer = 0;
937         break;
938     case VERIFY_10:
939     case VERIFY_12:
940     case VERIFY_16:
941         if ((buf[1] & 2) == 0) {
942             cmd->xfer = 0;
943         } else if ((buf[1] & 4) != 0) {
944             cmd->xfer = 1;
945         }
946         cmd->xfer *= dev->blocksize;
947         break;
948     case MODE_SENSE:
949         break;
950     case WRITE_SAME_10:
951     case WRITE_SAME_16:
952         cmd->xfer = dev->blocksize;
953         break;
954     case READ_CAPACITY_10:
955         cmd->xfer = 8;
956         break;
957     case READ_BLOCK_LIMITS:
958         cmd->xfer = 6;
959         break;
960     case SEND_VOLUME_TAG:
961         /* GPCMD_SET_STREAMING from multimedia commands.  */
962         if (dev->type == TYPE_ROM) {
963             cmd->xfer = buf[10] | (buf[9] << 8);
964         } else {
965             cmd->xfer = buf[9] | (buf[8] << 8);
966         }
967         break;
968     case WRITE_6:
969         /* length 0 means 256 blocks */
970         if (cmd->xfer == 0) {
971             cmd->xfer = 256;
972         }
973         /* fall through */
974     case WRITE_10:
975     case WRITE_VERIFY_10:
976     case WRITE_12:
977     case WRITE_VERIFY_12:
978     case WRITE_16:
979     case WRITE_VERIFY_16:
980         cmd->xfer *= dev->blocksize;
981         break;
982     case READ_6:
983     case READ_REVERSE:
984         /* length 0 means 256 blocks */
985         if (cmd->xfer == 0) {
986             cmd->xfer = 256;
987         }
988         /* fall through */
989     case READ_10:
990     case RECOVER_BUFFERED_DATA:
991     case READ_12:
992     case READ_16:
993         cmd->xfer *= dev->blocksize;
994         break;
995     case FORMAT_UNIT:
996         /* MMC mandates the parameter list to be 12-bytes long.  Parameters
997          * for block devices are restricted to the header right now.  */
998         if (dev->type == TYPE_ROM && (buf[1] & 16)) {
999             cmd->xfer = 12;
1000         } else {
1001             cmd->xfer = (buf[1] & 16) == 0 ? 0 : (buf[1] & 32 ? 8 : 4);
1002         }
1003         break;
1004     case INQUIRY:
1005     case RECEIVE_DIAGNOSTIC:
1006     case SEND_DIAGNOSTIC:
1007         cmd->xfer = buf[4] | (buf[3] << 8);
1008         break;
1009     case READ_CD:
1010     case READ_BUFFER:
1011     case WRITE_BUFFER:
1012     case SEND_CUE_SHEET:
1013         cmd->xfer = buf[8] | (buf[7] << 8) | (buf[6] << 16);
1014         break;
1015     case PERSISTENT_RESERVE_OUT:
1016         cmd->xfer = ldl_be_p(&buf[5]) & 0xffffffffULL;
1017         break;
1018     case ERASE_12:
1019         if (dev->type == TYPE_ROM) {
1020             /* MMC command GET PERFORMANCE.  */
1021             cmd->xfer = scsi_get_performance_length(buf[9] | (buf[8] << 8),
1022                                                     buf[10], buf[1] & 0x1f);
1023         }
1024         break;
1025     case MECHANISM_STATUS:
1026     case READ_DVD_STRUCTURE:
1027     case SEND_DVD_STRUCTURE:
1028     case MAINTENANCE_OUT:
1029     case MAINTENANCE_IN:
1030         if (dev->type == TYPE_ROM) {
1031             /* GPCMD_REPORT_KEY and GPCMD_SEND_KEY from multi media commands */
1032             cmd->xfer = buf[9] | (buf[8] << 8);
1033         }
1034         break;
1035     case ATA_PASSTHROUGH_12:
1036         if (dev->type == TYPE_ROM) {
1037             /* BLANK command of MMC */
1038             cmd->xfer = 0;
1039         } else {
1040             cmd->xfer = ata_passthrough_12_xfer(dev, buf);
1041         }
1042         break;
1043     case ATA_PASSTHROUGH_16:
1044         cmd->xfer = ata_passthrough_16_xfer(dev, buf);
1045         break;
1046     }
1047     return 0;
1048 }
1049
1050 static int scsi_req_stream_xfer(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
1051 {
1052     switch (buf[0]) {
1053     /* stream commands */
1054     case ERASE_12:
1055     case ERASE_16:
1056         cmd->xfer = 0;
1057         break;
1058     case READ_6:
1059     case READ_REVERSE:
1060     case RECOVER_BUFFERED_DATA:
1061     case WRITE_6:
1062         cmd->xfer = buf[4] | (buf[3] << 8) | (buf[2] << 16);
1063         if (buf[1] & 0x01) { /* fixed */
1064             cmd->xfer *= dev->blocksize;
1065         }
1066         break;
1067     case READ_16:
1068     case READ_REVERSE_16:
1069     case VERIFY_16:
1070     case WRITE_16:
1071         cmd->xfer = buf[14] | (buf[13] << 8) | (buf[12] << 16);
1072         if (buf[1] & 0x01) { /* fixed */
1073             cmd->xfer *= dev->blocksize;
1074         }
1075         break;
1076     case REWIND:
1077     case LOAD_UNLOAD:
1078         cmd->xfer = 0;
1079         break;
1080     case SPACE_16:
1081         cmd->xfer = buf[13] | (buf[12] << 8);
1082         break;
1083     case READ_POSITION:
1084         switch (buf[1] & 0x1f) /* operation code */ {
1085         case SHORT_FORM_BLOCK_ID:
1086         case SHORT_FORM_VENDOR_SPECIFIC:
1087             cmd->xfer = 20;
1088             break;
1089         case LONG_FORM:
1090             cmd->xfer = 32;
1091             break;
1092         case EXTENDED_FORM:
1093             cmd->xfer = buf[8] | (buf[7] << 8);
1094             break;
1095         default:
1096             return -1;
1097         }
1098
1099         break;
1100     case FORMAT_UNIT:
1101         cmd->xfer = buf[4] | (buf[3] << 8);
1102         break;
1103     /* generic commands */
1104     default:
1105         return scsi_req_xfer(cmd, dev, buf);
1106     }
1107     return 0;
1108 }
1109
1110 static int scsi_req_medium_changer_xfer(SCSICommand *cmd, SCSIDevice *dev, uint8_t *buf)
1111 {
1112     switch (buf[0]) {
1113     /* medium changer commands */
1114     case EXCHANGE_MEDIUM:
1115     case INITIALIZE_ELEMENT_STATUS:
1116     case INITIALIZE_ELEMENT_STATUS_WITH_RANGE:
1117     case MOVE_MEDIUM:
1118     case POSITION_TO_ELEMENT:
1119         cmd->xfer = 0;
1120         break;
1121     case READ_ELEMENT_STATUS:
1122         cmd->xfer = buf[9] | (buf[8] << 8) | (buf[7] << 16);
1123         break;
1124
1125     /* generic commands */
1126     default:
1127         return scsi_req_xfer(cmd, dev, buf);
1128     }
1129     return 0;
1130 }
1131
1132
1133 static void scsi_cmd_xfer_mode(SCSICommand *cmd)
1134 {
1135     if (!cmd->xfer) {
1136         cmd->mode = SCSI_XFER_NONE;
1137         return;
1138     }
1139     switch (cmd->buf[0]) {
1140     case WRITE_6:
1141     case WRITE_10:
1142     case WRITE_VERIFY_10:
1143     case WRITE_12:
1144     case WRITE_VERIFY_12:
1145     case WRITE_16:
1146     case WRITE_VERIFY_16:
1147     case VERIFY_10:
1148     case VERIFY_12:
1149     case VERIFY_16:
1150     case COPY:
1151     case COPY_VERIFY:
1152     case COMPARE:
1153     case CHANGE_DEFINITION:
1154     case LOG_SELECT:
1155     case MODE_SELECT:
1156     case MODE_SELECT_10:
1157     case SEND_DIAGNOSTIC:
1158     case WRITE_BUFFER:
1159     case FORMAT_UNIT:
1160     case REASSIGN_BLOCKS:
1161     case SEARCH_EQUAL:
1162     case SEARCH_HIGH:
1163     case SEARCH_LOW:
1164     case UPDATE_BLOCK:
1165     case WRITE_LONG_10:
1166     case WRITE_SAME_10:
1167     case WRITE_SAME_16:
1168     case UNMAP:
1169     case SEARCH_HIGH_12:
1170     case SEARCH_EQUAL_12:
1171     case SEARCH_LOW_12:
1172     case MEDIUM_SCAN:
1173     case SEND_VOLUME_TAG:
1174     case SEND_CUE_SHEET:
1175     case SEND_DVD_STRUCTURE:
1176     case PERSISTENT_RESERVE_OUT:
1177     case MAINTENANCE_OUT:
1178         cmd->mode = SCSI_XFER_TO_DEV;
1179         break;
1180     case ATA_PASSTHROUGH_12:
1181     case ATA_PASSTHROUGH_16:
1182         /* T_DIR */
1183         cmd->mode = (cmd->buf[2] & 0x8) ?
1184                    SCSI_XFER_FROM_DEV : SCSI_XFER_TO_DEV;
1185         break;
1186     default:
1187         cmd->mode = SCSI_XFER_FROM_DEV;
1188         break;
1189     }
1190 }
1191
1192 static uint64_t scsi_cmd_lba(SCSICommand *cmd)
1193 {
1194     uint8_t *buf = cmd->buf;
1195     uint64_t lba;
1196
1197     switch (buf[0] >> 5) {
1198     case 0:
1199         lba = ldl_be_p(&buf[0]) & 0x1fffff;
1200         break;
1201     case 1:
1202     case 2:
1203     case 5:
1204         lba = ldl_be_p(&buf[2]) & 0xffffffffULL;
1205         break;
1206     case 4:
1207         lba = ldq_be_p(&buf[2]);
1208         break;
1209     default:
1210         lba = -1;
1211
1212     }
1213     return lba;
1214 }
1215
1216 int scsi_cdb_length(uint8_t *buf) {
1217     int cdb_len;
1218
1219     switch (buf[0] >> 5) {
1220     case 0:
1221         cdb_len = 6;
1222         break;
1223     case 1:
1224     case 2:
1225         cdb_len = 10;
1226         break;
1227     case 4:
1228         cdb_len = 16;
1229         break;
1230     case 5:
1231         cdb_len = 12;
1232         break;
1233     default:
1234         cdb_len = -1;
1235     }
1236     return cdb_len;
1237 }
1238
1239 int scsi_req_parse_cdb(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf)
1240 {
1241     int rc;
1242     int len;
1243
1244     cmd->lba = -1;
1245     len = scsi_cdb_length(buf);
1246     if (len < 0) {
1247         return -1;
1248     }
1249
1250     cmd->len = len;
1251     switch (dev->type) {
1252     case TYPE_TAPE:
1253         rc = scsi_req_stream_xfer(cmd, dev, buf);
1254         break;
1255     case TYPE_MEDIUM_CHANGER:
1256         rc = scsi_req_medium_changer_xfer(cmd, dev, buf);
1257         break;
1258     default:
1259         rc = scsi_req_xfer(cmd, dev, buf);
1260         break;
1261     }
1262
1263     if (rc != 0)
1264         return rc;
1265
1266     memcpy(cmd->buf, buf, cmd->len);
1267     scsi_cmd_xfer_mode(cmd);
1268     cmd->lba = scsi_cmd_lba(cmd);
1269     return 0;
1270 }
1271
1272 void scsi_device_report_change(SCSIDevice *dev, SCSISense sense)
1273 {
1274     SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, dev->qdev.parent_bus);
1275
1276     scsi_device_set_ua(dev, sense);
1277     if (bus->info->change) {
1278         bus->info->change(bus, dev, sense);
1279     }
1280 }
1281
1282 /*
1283  * Predefined sense codes
1284  */
1285
1286 /* No sense data available */
1287 const struct SCSISense sense_code_NO_SENSE = {
1288     .key = NO_SENSE , .asc = 0x00 , .ascq = 0x00
1289 };
1290
1291 /* LUN not ready, Manual intervention required */
1292 const struct SCSISense sense_code_LUN_NOT_READY = {
1293     .key = NOT_READY, .asc = 0x04, .ascq = 0x03
1294 };
1295
1296 /* LUN not ready, Medium not present */
1297 const struct SCSISense sense_code_NO_MEDIUM = {
1298     .key = NOT_READY, .asc = 0x3a, .ascq = 0x00
1299 };
1300
1301 /* LUN not ready, medium removal prevented */
1302 const struct SCSISense sense_code_NOT_READY_REMOVAL_PREVENTED = {
1303     .key = NOT_READY, .asc = 0x53, .ascq = 0x02
1304 };
1305
1306 /* Hardware error, internal target failure */
1307 const struct SCSISense sense_code_TARGET_FAILURE = {
1308     .key = HARDWARE_ERROR, .asc = 0x44, .ascq = 0x00
1309 };
1310
1311 /* Illegal request, invalid command operation code */
1312 const struct SCSISense sense_code_INVALID_OPCODE = {
1313     .key = ILLEGAL_REQUEST, .asc = 0x20, .ascq = 0x00
1314 };
1315
1316 /* Illegal request, LBA out of range */
1317 const struct SCSISense sense_code_LBA_OUT_OF_RANGE = {
1318     .key = ILLEGAL_REQUEST, .asc = 0x21, .ascq = 0x00
1319 };
1320
1321 /* Illegal request, Invalid field in CDB */
1322 const struct SCSISense sense_code_INVALID_FIELD = {
1323     .key = ILLEGAL_REQUEST, .asc = 0x24, .ascq = 0x00
1324 };
1325
1326 /* Illegal request, Invalid field in parameter list */
1327 const struct SCSISense sense_code_INVALID_PARAM = {
1328     .key = ILLEGAL_REQUEST, .asc = 0x26, .ascq = 0x00
1329 };
1330
1331 /* Illegal request, Parameter list length error */
1332 const struct SCSISense sense_code_INVALID_PARAM_LEN = {
1333     .key = ILLEGAL_REQUEST, .asc = 0x1a, .ascq = 0x00
1334 };
1335
1336 /* Illegal request, LUN not supported */
1337 const struct SCSISense sense_code_LUN_NOT_SUPPORTED = {
1338     .key = ILLEGAL_REQUEST, .asc = 0x25, .ascq = 0x00
1339 };
1340
1341 /* Illegal request, Saving parameters not supported */
1342 const struct SCSISense sense_code_SAVING_PARAMS_NOT_SUPPORTED = {
1343     .key = ILLEGAL_REQUEST, .asc = 0x39, .ascq = 0x00
1344 };
1345
1346 /* Illegal request, Incompatible medium installed */
1347 const struct SCSISense sense_code_INCOMPATIBLE_FORMAT = {
1348     .key = ILLEGAL_REQUEST, .asc = 0x30, .ascq = 0x00
1349 };
1350
1351 /* Illegal request, medium removal prevented */
1352 const struct SCSISense sense_code_ILLEGAL_REQ_REMOVAL_PREVENTED = {
1353     .key = ILLEGAL_REQUEST, .asc = 0x53, .ascq = 0x02
1354 };
1355
1356 /* Illegal request, Invalid Transfer Tag */
1357 const struct SCSISense sense_code_INVALID_TAG = {
1358     .key = ILLEGAL_REQUEST, .asc = 0x4b, .ascq = 0x01
1359 };
1360
1361 /* Command aborted, I/O process terminated */
1362 const struct SCSISense sense_code_IO_ERROR = {
1363     .key = ABORTED_COMMAND, .asc = 0x00, .ascq = 0x06
1364 };
1365
1366 /* Command aborted, I_T Nexus loss occurred */
1367 const struct SCSISense sense_code_I_T_NEXUS_LOSS = {
1368     .key = ABORTED_COMMAND, .asc = 0x29, .ascq = 0x07
1369 };
1370
1371 /* Command aborted, Logical Unit failure */
1372 const struct SCSISense sense_code_LUN_FAILURE = {
1373     .key = ABORTED_COMMAND, .asc = 0x3e, .ascq = 0x01
1374 };
1375
1376 /* Command aborted, Overlapped Commands Attempted */
1377 const struct SCSISense sense_code_OVERLAPPED_COMMANDS = {
1378     .key = ABORTED_COMMAND, .asc = 0x4e, .ascq = 0x00
1379 };
1380
1381 /* Unit attention, Capacity data has changed */
1382 const struct SCSISense sense_code_CAPACITY_CHANGED = {
1383     .key = UNIT_ATTENTION, .asc = 0x2a, .ascq = 0x09
1384 };
1385
1386 /* Unit attention, Power on, reset or bus device reset occurred */
1387 const struct SCSISense sense_code_RESET = {
1388     .key = UNIT_ATTENTION, .asc = 0x29, .ascq = 0x00
1389 };
1390
1391 /* Unit attention, No medium */
1392 const struct SCSISense sense_code_UNIT_ATTENTION_NO_MEDIUM = {
1393     .key = UNIT_ATTENTION, .asc = 0x3a, .ascq = 0x00
1394 };
1395
1396 /* Unit attention, Medium may have changed */
1397 const struct SCSISense sense_code_MEDIUM_CHANGED = {
1398     .key = UNIT_ATTENTION, .asc = 0x28, .ascq = 0x00
1399 };
1400
1401 /* Unit attention, Reported LUNs data has changed */
1402 const struct SCSISense sense_code_REPORTED_LUNS_CHANGED = {
1403     .key = UNIT_ATTENTION, .asc = 0x3f, .ascq = 0x0e
1404 };
1405
1406 /* Unit attention, Device internal reset */
1407 const struct SCSISense sense_code_DEVICE_INTERNAL_RESET = {
1408     .key = UNIT_ATTENTION, .asc = 0x29, .ascq = 0x04
1409 };
1410
1411 /* Data Protection, Write Protected */
1412 const struct SCSISense sense_code_WRITE_PROTECTED = {
1413     .key = DATA_PROTECT, .asc = 0x27, .ascq = 0x00
1414 };
1415
1416 /* Data Protection, Space Allocation Failed Write Protect */
1417 const struct SCSISense sense_code_SPACE_ALLOC_FAILED = {
1418     .key = DATA_PROTECT, .asc = 0x27, .ascq = 0x07
1419 };
1420
1421 /*
1422  * scsi_build_sense
1423  *
1424  * Convert between fixed and descriptor sense buffers
1425  */
1426 int scsi_build_sense(uint8_t *in_buf, int in_len,
1427                      uint8_t *buf, int len, bool fixed)
1428 {
1429     bool fixed_in;
1430     SCSISense sense;
1431     if (!fixed && len < 8) {
1432         return 0;
1433     }
1434
1435     if (in_len == 0) {
1436         sense.key = NO_SENSE;
1437         sense.asc = 0;
1438         sense.ascq = 0;
1439     } else {
1440         fixed_in = (in_buf[0] & 2) == 0;
1441
1442         if (fixed == fixed_in) {
1443             memcpy(buf, in_buf, MIN(len, in_len));
1444             return MIN(len, in_len);
1445         }
1446
1447         if (fixed_in) {
1448             sense.key = in_buf[2];
1449             sense.asc = in_buf[12];
1450             sense.ascq = in_buf[13];
1451         } else {
1452             sense.key = in_buf[1];
1453             sense.asc = in_buf[2];
1454             sense.ascq = in_buf[3];
1455         }
1456     }
1457
1458     memset(buf, 0, len);
1459     if (fixed) {
1460         /* Return fixed format sense buffer */
1461         buf[0] = 0x70;
1462         buf[2] = sense.key;
1463         buf[7] = 10;
1464         buf[12] = sense.asc;
1465         buf[13] = sense.ascq;
1466         return MIN(len, SCSI_SENSE_LEN);
1467     } else {
1468         /* Return descriptor format sense buffer */
1469         buf[0] = 0x72;
1470         buf[1] = sense.key;
1471         buf[2] = sense.asc;
1472         buf[3] = sense.ascq;
1473         return 8;
1474     }
1475 }
1476
1477 const char *scsi_command_name(uint8_t cmd)
1478 {
1479     static const char *names[] = {
1480         [ TEST_UNIT_READY          ] = "TEST_UNIT_READY",
1481         [ REWIND                   ] = "REWIND",
1482         [ REQUEST_SENSE            ] = "REQUEST_SENSE",
1483         [ FORMAT_UNIT              ] = "FORMAT_UNIT",
1484         [ READ_BLOCK_LIMITS        ] = "READ_BLOCK_LIMITS",
1485         [ REASSIGN_BLOCKS          ] = "REASSIGN_BLOCKS/INITIALIZE ELEMENT STATUS",
1486         /* LOAD_UNLOAD and INITIALIZE_ELEMENT_STATUS use the same operation code */
1487         [ READ_6                   ] = "READ_6",
1488         [ WRITE_6                  ] = "WRITE_6",
1489         [ SET_CAPACITY             ] = "SET_CAPACITY",
1490         [ READ_REVERSE             ] = "READ_REVERSE",
1491         [ WRITE_FILEMARKS          ] = "WRITE_FILEMARKS",
1492         [ SPACE                    ] = "SPACE",
1493         [ INQUIRY                  ] = "INQUIRY",
1494         [ RECOVER_BUFFERED_DATA    ] = "RECOVER_BUFFERED_DATA",
1495         [ MAINTENANCE_IN           ] = "MAINTENANCE_IN",
1496         [ MAINTENANCE_OUT          ] = "MAINTENANCE_OUT",
1497         [ MODE_SELECT              ] = "MODE_SELECT",
1498         [ RESERVE                  ] = "RESERVE",
1499         [ RELEASE                  ] = "RELEASE",
1500         [ COPY                     ] = "COPY",
1501         [ ERASE                    ] = "ERASE",
1502         [ MODE_SENSE               ] = "MODE_SENSE",
1503         [ START_STOP               ] = "START_STOP/LOAD_UNLOAD",
1504         /* LOAD_UNLOAD and START_STOP use the same operation code */
1505         [ RECEIVE_DIAGNOSTIC       ] = "RECEIVE_DIAGNOSTIC",
1506         [ SEND_DIAGNOSTIC          ] = "SEND_DIAGNOSTIC",
1507         [ ALLOW_MEDIUM_REMOVAL     ] = "ALLOW_MEDIUM_REMOVAL",
1508         [ READ_CAPACITY_10         ] = "READ_CAPACITY_10",
1509         [ READ_10                  ] = "READ_10",
1510         [ WRITE_10                 ] = "WRITE_10",
1511         [ SEEK_10                  ] = "SEEK_10/POSITION_TO_ELEMENT",
1512         /* SEEK_10 and POSITION_TO_ELEMENT use the same operation code */
1513         [ WRITE_VERIFY_10          ] = "WRITE_VERIFY_10",
1514         [ VERIFY_10                ] = "VERIFY_10",
1515         [ SEARCH_HIGH              ] = "SEARCH_HIGH",
1516         [ SEARCH_EQUAL             ] = "SEARCH_EQUAL",
1517         [ SEARCH_LOW               ] = "SEARCH_LOW",
1518         [ SET_LIMITS               ] = "SET_LIMITS",
1519         [ PRE_FETCH                ] = "PRE_FETCH/READ_POSITION",
1520         /* READ_POSITION and PRE_FETCH use the same operation code */
1521         [ SYNCHRONIZE_CACHE        ] = "SYNCHRONIZE_CACHE",
1522         [ LOCK_UNLOCK_CACHE        ] = "LOCK_UNLOCK_CACHE",
1523         [ READ_DEFECT_DATA         ] = "READ_DEFECT_DATA/INITIALIZE_ELEMENT_STATUS_WITH_RANGE",
1524         /* READ_DEFECT_DATA and INITIALIZE_ELEMENT_STATUS_WITH_RANGE use the same operation code */
1525         [ MEDIUM_SCAN              ] = "MEDIUM_SCAN",
1526         [ COMPARE                  ] = "COMPARE",
1527         [ COPY_VERIFY              ] = "COPY_VERIFY",
1528         [ WRITE_BUFFER             ] = "WRITE_BUFFER",
1529         [ READ_BUFFER              ] = "READ_BUFFER",
1530         [ UPDATE_BLOCK             ] = "UPDATE_BLOCK",
1531         [ READ_LONG_10             ] = "READ_LONG_10",
1532         [ WRITE_LONG_10            ] = "WRITE_LONG_10",
1533         [ CHANGE_DEFINITION        ] = "CHANGE_DEFINITION",
1534         [ WRITE_SAME_10            ] = "WRITE_SAME_10",
1535         [ UNMAP                    ] = "UNMAP",
1536         [ READ_TOC                 ] = "READ_TOC",
1537         [ REPORT_DENSITY_SUPPORT   ] = "REPORT_DENSITY_SUPPORT",
1538         [ SANITIZE                 ] = "SANITIZE",
1539         [ GET_CONFIGURATION        ] = "GET_CONFIGURATION",
1540         [ LOG_SELECT               ] = "LOG_SELECT",
1541         [ LOG_SENSE                ] = "LOG_SENSE",
1542         [ MODE_SELECT_10           ] = "MODE_SELECT_10",
1543         [ RESERVE_10               ] = "RESERVE_10",
1544         [ RELEASE_10               ] = "RELEASE_10",
1545         [ MODE_SENSE_10            ] = "MODE_SENSE_10",
1546         [ PERSISTENT_RESERVE_IN    ] = "PERSISTENT_RESERVE_IN",
1547         [ PERSISTENT_RESERVE_OUT   ] = "PERSISTENT_RESERVE_OUT",
1548         [ WRITE_FILEMARKS_16       ] = "WRITE_FILEMARKS_16",
1549         [ EXTENDED_COPY            ] = "EXTENDED_COPY",
1550         [ ATA_PASSTHROUGH_16       ] = "ATA_PASSTHROUGH_16",
1551         [ ACCESS_CONTROL_IN        ] = "ACCESS_CONTROL_IN",
1552         [ ACCESS_CONTROL_OUT       ] = "ACCESS_CONTROL_OUT",
1553         [ READ_16                  ] = "READ_16",
1554         [ COMPARE_AND_WRITE        ] = "COMPARE_AND_WRITE",
1555         [ WRITE_16                 ] = "WRITE_16",
1556         [ WRITE_VERIFY_16          ] = "WRITE_VERIFY_16",
1557         [ VERIFY_16                ] = "VERIFY_16",
1558         [ PRE_FETCH_16             ] = "PRE_FETCH_16",
1559         [ SYNCHRONIZE_CACHE_16     ] = "SPACE_16/SYNCHRONIZE_CACHE_16",
1560         /* SPACE_16 and SYNCHRONIZE_CACHE_16 use the same operation code */
1561         [ LOCATE_16                ] = "LOCATE_16",
1562         [ WRITE_SAME_16            ] = "ERASE_16/WRITE_SAME_16",
1563         /* ERASE_16 and WRITE_SAME_16 use the same operation code */
1564         [ SERVICE_ACTION_IN_16     ] = "SERVICE_ACTION_IN_16",
1565         [ WRITE_LONG_16            ] = "WRITE_LONG_16",
1566         [ REPORT_LUNS              ] = "REPORT_LUNS",
1567         [ ATA_PASSTHROUGH_12       ] = "BLANK/ATA_PASSTHROUGH_12",
1568         [ MOVE_MEDIUM              ] = "MOVE_MEDIUM",
1569         [ EXCHANGE_MEDIUM          ] = "EXCHANGE MEDIUM",
1570         [ READ_12                  ] = "READ_12",
1571         [ WRITE_12                 ] = "WRITE_12",
1572         [ ERASE_12                 ] = "ERASE_12/GET_PERFORMANCE",
1573         /* ERASE_12 and GET_PERFORMANCE use the same operation code */
1574         [ SERVICE_ACTION_IN_12     ] = "SERVICE_ACTION_IN_12",
1575         [ WRITE_VERIFY_12          ] = "WRITE_VERIFY_12",
1576         [ VERIFY_12                ] = "VERIFY_12",
1577         [ SEARCH_HIGH_12           ] = "SEARCH_HIGH_12",
1578         [ SEARCH_EQUAL_12          ] = "SEARCH_EQUAL_12",
1579         [ SEARCH_LOW_12            ] = "SEARCH_LOW_12",
1580         [ READ_ELEMENT_STATUS      ] = "READ_ELEMENT_STATUS",
1581         [ SEND_VOLUME_TAG          ] = "SEND_VOLUME_TAG/SET_STREAMING",
1582         /* SEND_VOLUME_TAG and SET_STREAMING use the same operation code */
1583         [ READ_CD                  ] = "READ_CD",
1584         [ READ_DEFECT_DATA_12      ] = "READ_DEFECT_DATA_12",
1585         [ READ_DVD_STRUCTURE       ] = "READ_DVD_STRUCTURE",
1586         [ RESERVE_TRACK            ] = "RESERVE_TRACK",
1587         [ SEND_CUE_SHEET           ] = "SEND_CUE_SHEET",
1588         [ SEND_DVD_STRUCTURE       ] = "SEND_DVD_STRUCTURE",
1589         [ SET_CD_SPEED             ] = "SET_CD_SPEED",
1590         [ SET_READ_AHEAD           ] = "SET_READ_AHEAD",
1591         [ ALLOW_OVERWRITE          ] = "ALLOW_OVERWRITE",
1592         [ MECHANISM_STATUS         ] = "MECHANISM_STATUS",
1593         [ GET_EVENT_STATUS_NOTIFICATION ] = "GET_EVENT_STATUS_NOTIFICATION",
1594         [ READ_DISC_INFORMATION    ] = "READ_DISC_INFORMATION",
1595     };
1596
1597     if (cmd >= ARRAY_SIZE(names) || names[cmd] == NULL)
1598         return "*UNKNOWN*";
1599     return names[cmd];
1600 }
1601
1602 SCSIRequest *scsi_req_ref(SCSIRequest *req)
1603 {
1604     assert(req->refcount > 0);
1605     req->refcount++;
1606     return req;
1607 }
1608
1609 void scsi_req_unref(SCSIRequest *req)
1610 {
1611     assert(req->refcount > 0);
1612     if (--req->refcount == 0) {
1613         BusState *qbus = req->dev->qdev.parent_bus;
1614         SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, qbus);
1615
1616         if (bus->info->free_request && req->hba_private) {
1617             bus->info->free_request(bus, req->hba_private);
1618         }
1619         if (req->ops->free_req) {
1620             req->ops->free_req(req);
1621         }
1622         object_unref(OBJECT(req->dev));
1623         object_unref(OBJECT(qbus->parent));
1624         g_slice_free1(req->ops->size, req);
1625     }
1626 }
1627
1628 /* Tell the device that we finished processing this chunk of I/O.  It
1629    will start the next chunk or complete the command.  */
1630 void scsi_req_continue(SCSIRequest *req)
1631 {
1632     if (req->io_canceled) {
1633         trace_scsi_req_continue_canceled(req->dev->id, req->lun, req->tag);
1634         return;
1635     }
1636     trace_scsi_req_continue(req->dev->id, req->lun, req->tag);
1637     if (req->cmd.mode == SCSI_XFER_TO_DEV) {
1638         req->ops->write_data(req);
1639     } else {
1640         req->ops->read_data(req);
1641     }
1642 }
1643
1644 /* Called by the devices when data is ready for the HBA.  The HBA should
1645    start a DMA operation to read or fill the device's data buffer.
1646    Once it completes, calling scsi_req_continue will restart I/O.  */
1647 void scsi_req_data(SCSIRequest *req, int len)
1648 {
1649     uint8_t *buf;
1650     if (req->io_canceled) {
1651         trace_scsi_req_data_canceled(req->dev->id, req->lun, req->tag, len);
1652         return;
1653     }
1654     trace_scsi_req_data(req->dev->id, req->lun, req->tag, len);
1655     assert(req->cmd.mode != SCSI_XFER_NONE);
1656     if (!req->sg) {
1657         req->resid -= len;
1658         req->bus->info->transfer_data(req, len);
1659         return;
1660     }
1661
1662     /* If the device calls scsi_req_data and the HBA specified a
1663      * scatter/gather list, the transfer has to happen in a single
1664      * step.  */
1665     assert(!req->dma_started);
1666     req->dma_started = true;
1667
1668     buf = scsi_req_get_buf(req);
1669     if (req->cmd.mode == SCSI_XFER_FROM_DEV) {
1670         req->resid = dma_buf_read(buf, len, req->sg);
1671     } else {
1672         req->resid = dma_buf_write(buf, len, req->sg);
1673     }
1674     scsi_req_continue(req);
1675 }
1676
1677 void scsi_req_print(SCSIRequest *req)
1678 {
1679     FILE *fp = stderr;
1680     int i;
1681
1682     fprintf(fp, "[%s id=%d] %s",
1683             req->dev->qdev.parent_bus->name,
1684             req->dev->id,
1685             scsi_command_name(req->cmd.buf[0]));
1686     for (i = 1; i < req->cmd.len; i++) {
1687         fprintf(fp, " 0x%02x", req->cmd.buf[i]);
1688     }
1689     switch (req->cmd.mode) {
1690     case SCSI_XFER_NONE:
1691         fprintf(fp, " - none\n");
1692         break;
1693     case SCSI_XFER_FROM_DEV:
1694         fprintf(fp, " - from-dev len=%zd\n", req->cmd.xfer);
1695         break;
1696     case SCSI_XFER_TO_DEV:
1697         fprintf(fp, " - to-dev len=%zd\n", req->cmd.xfer);
1698         break;
1699     default:
1700         fprintf(fp, " - Oops\n");
1701         break;
1702     }
1703 }
1704
1705 void scsi_req_complete(SCSIRequest *req, int status)
1706 {
1707     assert(req->status == -1);
1708     req->status = status;
1709
1710     assert(req->sense_len <= sizeof(req->sense));
1711     if (status == GOOD) {
1712         req->sense_len = 0;
1713     }
1714
1715     if (req->sense_len) {
1716         memcpy(req->dev->sense, req->sense, req->sense_len);
1717         req->dev->sense_len = req->sense_len;
1718         req->dev->sense_is_ua = (req->ops == &reqops_unit_attention);
1719     } else {
1720         req->dev->sense_len = 0;
1721         req->dev->sense_is_ua = false;
1722     }
1723
1724     /*
1725      * Unit attention state is now stored in the device's sense buffer
1726      * if the HBA didn't do autosense.  Clear the pending unit attention
1727      * flags.
1728      */
1729     scsi_clear_unit_attention(req);
1730
1731     scsi_req_ref(req);
1732     scsi_req_dequeue(req);
1733     req->bus->info->complete(req, req->status, req->resid);
1734
1735     /* Cancelled requests might end up being completed instead of cancelled */
1736     notifier_list_notify(&req->cancel_notifiers, req);
1737     scsi_req_unref(req);
1738 }
1739
1740 /* Called by the devices when the request is canceled. */
1741 void scsi_req_cancel_complete(SCSIRequest *req)
1742 {
1743     assert(req->io_canceled);
1744     if (req->bus->info->cancel) {
1745         req->bus->info->cancel(req);
1746     }
1747     notifier_list_notify(&req->cancel_notifiers, req);
1748     scsi_req_unref(req);
1749 }
1750
1751 /* Cancel @req asynchronously. @notifier is added to @req's cancellation
1752  * notifier list, the bus will be notified the requests cancellation is
1753  * completed.
1754  * */
1755 void scsi_req_cancel_async(SCSIRequest *req, Notifier *notifier)
1756 {
1757     trace_scsi_req_cancel(req->dev->id, req->lun, req->tag);
1758     if (notifier) {
1759         notifier_list_add(&req->cancel_notifiers, notifier);
1760     }
1761     if (req->io_canceled) {
1762         return;
1763     }
1764     scsi_req_ref(req);
1765     scsi_req_dequeue(req);
1766     req->io_canceled = true;
1767     if (req->aiocb) {
1768         blk_aio_cancel_async(req->aiocb);
1769     } else {
1770         scsi_req_cancel_complete(req);
1771     }
1772 }
1773
1774 void scsi_req_cancel(SCSIRequest *req)
1775 {
1776     trace_scsi_req_cancel(req->dev->id, req->lun, req->tag);
1777     if (!req->enqueued) {
1778         return;
1779     }
1780     scsi_req_ref(req);
1781     scsi_req_dequeue(req);
1782     req->io_canceled = true;
1783     if (req->aiocb) {
1784         blk_aio_cancel(req->aiocb);
1785     } else {
1786         scsi_req_cancel_complete(req);
1787     }
1788 }
1789
1790 static int scsi_ua_precedence(SCSISense sense)
1791 {
1792     if (sense.key != UNIT_ATTENTION) {
1793         return INT_MAX;
1794     }
1795     if (sense.asc == 0x29 && sense.ascq == 0x04) {
1796         /* DEVICE INTERNAL RESET goes with POWER ON OCCURRED */
1797         return 1;
1798     } else if (sense.asc == 0x3F && sense.ascq == 0x01) {
1799         /* MICROCODE HAS BEEN CHANGED goes with SCSI BUS RESET OCCURRED */
1800         return 2;
1801     } else if (sense.asc == 0x29 && (sense.ascq == 0x05 || sense.ascq == 0x06)) {
1802         /* These two go with "all others". */
1803         ;
1804     } else if (sense.asc == 0x29 && sense.ascq <= 0x07) {
1805         /* POWER ON, RESET OR BUS DEVICE RESET OCCURRED = 0
1806          * POWER ON OCCURRED = 1
1807          * SCSI BUS RESET OCCURRED = 2
1808          * BUS DEVICE RESET FUNCTION OCCURRED = 3
1809          * I_T NEXUS LOSS OCCURRED = 7
1810          */
1811         return sense.ascq;
1812     } else if (sense.asc == 0x2F && sense.ascq == 0x01) {
1813         /* COMMANDS CLEARED BY POWER LOSS NOTIFICATION  */
1814         return 8;
1815     }
1816     return (sense.asc << 8) | sense.ascq;
1817 }
1818
1819 void scsi_device_set_ua(SCSIDevice *sdev, SCSISense sense)
1820 {
1821     int prec1, prec2;
1822     if (sense.key != UNIT_ATTENTION) {
1823         return;
1824     }
1825     trace_scsi_device_set_ua(sdev->id, sdev->lun, sense.key,
1826                              sense.asc, sense.ascq);
1827
1828     /*
1829      * Override a pre-existing unit attention condition, except for a more
1830      * important reset condition.
1831     */
1832     prec1 = scsi_ua_precedence(sdev->unit_attention);
1833     prec2 = scsi_ua_precedence(sense);
1834     if (prec2 < prec1) {
1835         sdev->unit_attention = sense;
1836     }
1837 }
1838
1839 void scsi_device_purge_requests(SCSIDevice *sdev, SCSISense sense)
1840 {
1841     SCSIRequest *req;
1842
1843     while (!QTAILQ_EMPTY(&sdev->requests)) {
1844         req = QTAILQ_FIRST(&sdev->requests);
1845         scsi_req_cancel(req);
1846     }
1847
1848     scsi_device_set_ua(sdev, sense);
1849 }
1850
1851 static char *scsibus_get_dev_path(DeviceState *dev)
1852 {
1853     SCSIDevice *d = DO_UPCAST(SCSIDevice, qdev, dev);
1854     DeviceState *hba = dev->parent_bus->parent;
1855     char *id;
1856     char *path;
1857
1858     id = qdev_get_dev_path(hba);
1859     if (id) {
1860         path = g_strdup_printf("%s/%d:%d:%d", id, d->channel, d->id, d->lun);
1861     } else {
1862         path = g_strdup_printf("%d:%d:%d", d->channel, d->id, d->lun);
1863     }
1864     g_free(id);
1865     return path;
1866 }
1867
1868 static char *scsibus_get_fw_dev_path(DeviceState *dev)
1869 {
1870     SCSIDevice *d = SCSI_DEVICE(dev);
1871     return g_strdup_printf("channel@%x/%s@%x,%x", d->channel,
1872                            qdev_fw_name(dev), d->id, d->lun);
1873 }
1874
1875 SCSIDevice *scsi_device_find(SCSIBus *bus, int channel, int id, int lun)
1876 {
1877     BusChild *kid;
1878     SCSIDevice *target_dev = NULL;
1879
1880     QTAILQ_FOREACH_REVERSE(kid, &bus->qbus.children, ChildrenHead, sibling) {
1881         DeviceState *qdev = kid->child;
1882         SCSIDevice *dev = SCSI_DEVICE(qdev);
1883
1884         if (dev->channel == channel && dev->id == id) {
1885             if (dev->lun == lun) {
1886                 return dev;
1887             }
1888             target_dev = dev;
1889         }
1890     }
1891     return target_dev;
1892 }
1893
1894 /* SCSI request list.  For simplicity, pv points to the whole device */
1895
1896 static void put_scsi_requests(QEMUFile *f, void *pv, size_t size)
1897 {
1898     SCSIDevice *s = pv;
1899     SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, s->qdev.parent_bus);
1900     SCSIRequest *req;
1901
1902     QTAILQ_FOREACH(req, &s->requests, next) {
1903         assert(!req->io_canceled);
1904         assert(req->status == -1);
1905         assert(req->enqueued);
1906
1907         qemu_put_sbyte(f, req->retry ? 1 : 2);
1908         qemu_put_buffer(f, req->cmd.buf, sizeof(req->cmd.buf));
1909         qemu_put_be32s(f, &req->tag);
1910         qemu_put_be32s(f, &req->lun);
1911         if (bus->info->save_request) {
1912             bus->info->save_request(f, req);
1913         }
1914         if (req->ops->save_request) {
1915             req->ops->save_request(f, req);
1916         }
1917     }
1918     qemu_put_sbyte(f, 0);
1919 }
1920
1921 static int get_scsi_requests(QEMUFile *f, void *pv, size_t size)
1922 {
1923     SCSIDevice *s = pv;
1924     SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, s->qdev.parent_bus);
1925     int8_t sbyte;
1926
1927     while ((sbyte = qemu_get_sbyte(f)) > 0) {
1928         uint8_t buf[SCSI_CMD_BUF_SIZE];
1929         uint32_t tag;
1930         uint32_t lun;
1931         SCSIRequest *req;
1932
1933         qemu_get_buffer(f, buf, sizeof(buf));
1934         qemu_get_be32s(f, &tag);
1935         qemu_get_be32s(f, &lun);
1936         req = scsi_req_new(s, tag, lun, buf, NULL);
1937         req->retry = (sbyte == 1);
1938         if (bus->info->load_request) {
1939             req->hba_private = bus->info->load_request(f, req);
1940         }
1941         if (req->ops->load_request) {
1942             req->ops->load_request(f, req);
1943         }
1944
1945         /* Just restart it later.  */
1946         scsi_req_enqueue_internal(req);
1947
1948         /* At this point, the request will be kept alive by the reference
1949          * added by scsi_req_enqueue_internal, so we can release our reference.
1950          * The HBA of course will add its own reference in the load_request
1951          * callback if it needs to hold on the SCSIRequest.
1952          */
1953         scsi_req_unref(req);
1954     }
1955
1956     return 0;
1957 }
1958
1959 static const VMStateInfo vmstate_info_scsi_requests = {
1960     .name = "scsi-requests",
1961     .get  = get_scsi_requests,
1962     .put  = put_scsi_requests,
1963 };
1964
1965 static bool scsi_sense_state_needed(void *opaque)
1966 {
1967     SCSIDevice *s = opaque;
1968
1969     return s->sense_len > SCSI_SENSE_BUF_SIZE_OLD;
1970 }
1971
1972 static const VMStateDescription vmstate_scsi_sense_state = {
1973     .name = "SCSIDevice/sense",
1974     .version_id = 1,
1975     .minimum_version_id = 1,
1976     .needed = scsi_sense_state_needed,
1977     .fields = (VMStateField[]) {
1978         VMSTATE_UINT8_SUB_ARRAY(sense, SCSIDevice,
1979                                 SCSI_SENSE_BUF_SIZE_OLD,
1980                                 SCSI_SENSE_BUF_SIZE - SCSI_SENSE_BUF_SIZE_OLD),
1981         VMSTATE_END_OF_LIST()
1982     }
1983 };
1984
1985 const VMStateDescription vmstate_scsi_device = {
1986     .name = "SCSIDevice",
1987     .version_id = 1,
1988     .minimum_version_id = 1,
1989     .fields = (VMStateField[]) {
1990         VMSTATE_UINT8(unit_attention.key, SCSIDevice),
1991         VMSTATE_UINT8(unit_attention.asc, SCSIDevice),
1992         VMSTATE_UINT8(unit_attention.ascq, SCSIDevice),
1993         VMSTATE_BOOL(sense_is_ua, SCSIDevice),
1994         VMSTATE_UINT8_SUB_ARRAY(sense, SCSIDevice, 0, SCSI_SENSE_BUF_SIZE_OLD),
1995         VMSTATE_UINT32(sense_len, SCSIDevice),
1996         {
1997             .name         = "requests",
1998             .version_id   = 0,
1999             .field_exists = NULL,
2000             .size         = 0,   /* ouch */
2001             .info         = &vmstate_info_scsi_requests,
2002             .flags        = VMS_SINGLE,
2003             .offset       = 0,
2004         },
2005         VMSTATE_END_OF_LIST()
2006     },
2007     .subsections = (const VMStateDescription*[]) {
2008         &vmstate_scsi_sense_state,
2009         NULL
2010     }
2011 };
2012
2013 static void scsi_device_class_init(ObjectClass *klass, void *data)
2014 {
2015     DeviceClass *k = DEVICE_CLASS(klass);
2016     set_bit(DEVICE_CATEGORY_STORAGE, k->categories);
2017     k->bus_type  = TYPE_SCSI_BUS;
2018     k->realize   = scsi_qdev_realize;
2019     k->unrealize = scsi_qdev_unrealize;
2020     k->props     = scsi_props;
2021 }
2022
2023 static void scsi_dev_instance_init(Object *obj)
2024 {
2025     DeviceState *dev = DEVICE(obj);
2026     SCSIDevice *s = DO_UPCAST(SCSIDevice, qdev, dev);
2027
2028     device_add_bootindex_property(obj, &s->conf.bootindex,
2029                                   "bootindex", NULL,
2030                                   &s->qdev, NULL);
2031 }
2032
2033 static const TypeInfo scsi_device_type_info = {
2034     .name = TYPE_SCSI_DEVICE,
2035     .parent = TYPE_DEVICE,
2036     .instance_size = sizeof(SCSIDevice),
2037     .abstract = true,
2038     .class_size = sizeof(SCSIDeviceClass),
2039     .class_init = scsi_device_class_init,
2040     .instance_init = scsi_dev_instance_init,
2041 };
2042
2043 static void scsi_register_types(void)
2044 {
2045     type_register_static(&scsi_bus_info);
2046     type_register_static(&scsi_device_type_info);
2047 }
2048
2049 type_init(scsi_register_types)