2 * SCSI Device emulation
4 * Copyright (c) 2006 CodeSourcery.
5 * Based on code by Fabrice Bellard
7 * Written by Paul Brook
9 * 2009-Dec-12 Artyom Tarasenko : implemented stamdard inquiry for the case
10 * when the allocation length of CDB is smaller
12 * 2009-Oct-13 Artyom Tarasenko : implemented the block descriptor in the
13 * MODE SENSE response.
15 * This code is licenced under the LGPL.
17 * Note that this file only handles the SCSI architecture model and device
18 * commands. Emulation of interface/link layer protocols is handled by
19 * the host adapter emulator.
25 #define DPRINTF(fmt, ...) \
26 do { printf("scsi-disk: " fmt , ## __VA_ARGS__); } while (0)
28 #define DPRINTF(fmt, ...) do {} while(0)
31 #define BADF(fmt, ...) \
32 do { fprintf(stderr, "scsi-disk: " fmt , ## __VA_ARGS__); } while (0)
34 #include "qemu-common.h"
35 #include "qemu-error.h"
37 #include "scsi-defs.h"
41 #define SCSI_DMA_BUF_SIZE 131072
42 #define SCSI_MAX_INQUIRY_LEN 256
44 #define SCSI_REQ_STATUS_RETRY 0x01
46 typedef struct SCSIDiskState SCSIDiskState
;
48 typedef struct SCSIDiskReq
{
50 /* ??? We should probably keep track of whether the data transfer is
51 a read or a write. Currently we rely on the host getting it right. */
52 /* Both sector and sector_count are in terms of qemu 512 byte blocks. */
54 uint32_t sector_count
;
64 /* The qemu block layer uses a fixed 512 byte sector size.
65 This is the number of 512 byte blocks in a single scsi sector. */
73 static SCSIDiskReq
*scsi_new_request(SCSIDevice
*d
, uint32_t tag
, uint32_t lun
)
78 req
= scsi_req_alloc(sizeof(SCSIDiskReq
), d
, tag
, lun
);
79 r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
80 r
->iov
.iov_base
= qemu_memalign(512, SCSI_DMA_BUF_SIZE
);
84 static void scsi_remove_request(SCSIDiskReq
*r
)
86 qemu_vfree(r
->iov
.iov_base
);
87 scsi_req_free(&r
->req
);
90 static SCSIDiskReq
*scsi_find_request(SCSIDiskState
*s
, uint32_t tag
)
92 return DO_UPCAST(SCSIDiskReq
, req
, scsi_req_find(&s
->qdev
, tag
));
95 static void scsi_req_set_status(SCSIRequest
*req
, int status
, int sense_code
)
98 scsi_dev_set_sense(req
->dev
, sense_code
);
101 /* Helper function for command completion. */
102 static void scsi_command_complete(SCSIDiskReq
*r
, int status
, int sense
)
104 DPRINTF("Command complete tag=0x%x status=%d sense=%d\n",
105 r
->req
.tag
, status
, sense
);
106 scsi_req_set_status(&r
->req
, status
, sense
);
107 scsi_req_complete(&r
->req
);
108 scsi_remove_request(r
);
111 /* Cancel a pending data transfer. */
112 static void scsi_cancel_io(SCSIDevice
*d
, uint32_t tag
)
114 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
116 DPRINTF("Cancel tag=0x%x\n", tag
);
117 r
= scsi_find_request(s
, tag
);
120 bdrv_aio_cancel(r
->req
.aiocb
);
122 scsi_remove_request(r
);
126 static void scsi_read_complete(void * opaque
, int ret
)
128 SCSIDiskReq
*r
= (SCSIDiskReq
*)opaque
;
133 DPRINTF("IO error\n");
134 r
->req
.bus
->complete(r
->req
.bus
, SCSI_REASON_DATA
, r
->req
.tag
, 0);
135 scsi_command_complete(r
, CHECK_CONDITION
, NO_SENSE
);
138 DPRINTF("Data ready tag=0x%x len=%" PRId64
"\n", r
->req
.tag
, r
->iov
.iov_len
);
140 r
->req
.bus
->complete(r
->req
.bus
, SCSI_REASON_DATA
, r
->req
.tag
, r
->iov
.iov_len
);
143 /* Read more data from scsi device into buffer. */
144 static void scsi_read_data(SCSIDevice
*d
, uint32_t tag
)
146 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
150 r
= scsi_find_request(s
, tag
);
152 BADF("Bad read tag 0x%x\n", tag
);
153 /* ??? This is the wrong error. */
154 scsi_command_complete(r
, CHECK_CONDITION
, HARDWARE_ERROR
);
157 if (r
->sector_count
== (uint32_t)-1) {
158 DPRINTF("Read buf_len=%" PRId64
"\n", r
->iov
.iov_len
);
160 r
->req
.bus
->complete(r
->req
.bus
, SCSI_REASON_DATA
, r
->req
.tag
, r
->iov
.iov_len
);
163 DPRINTF("Read sector_count=%d\n", r
->sector_count
);
164 if (r
->sector_count
== 0) {
165 scsi_command_complete(r
, GOOD
, NO_SENSE
);
170 if (n
> SCSI_DMA_BUF_SIZE
/ 512)
171 n
= SCSI_DMA_BUF_SIZE
/ 512;
173 r
->iov
.iov_len
= n
* 512;
174 qemu_iovec_init_external(&r
->qiov
, &r
->iov
, 1);
175 r
->req
.aiocb
= bdrv_aio_readv(s
->bs
, r
->sector
, &r
->qiov
, n
,
176 scsi_read_complete
, r
);
177 if (r
->req
.aiocb
== NULL
)
178 scsi_command_complete(r
, CHECK_CONDITION
, HARDWARE_ERROR
);
180 r
->sector_count
-= n
;
183 static int scsi_handle_write_error(SCSIDiskReq
*r
, int error
)
185 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
186 BlockErrorAction action
= bdrv_get_on_error(s
->bs
, 0);
188 if (action
== BLOCK_ERR_IGNORE
) {
189 bdrv_mon_event(s
->bs
, BDRV_ACTION_IGNORE
, 0);
193 if ((error
== ENOSPC
&& action
== BLOCK_ERR_STOP_ENOSPC
)
194 || action
== BLOCK_ERR_STOP_ANY
) {
195 r
->status
|= SCSI_REQ_STATUS_RETRY
;
196 bdrv_mon_event(s
->bs
, BDRV_ACTION_STOP
, 0);
199 scsi_command_complete(r
, CHECK_CONDITION
,
201 bdrv_mon_event(s
->bs
, BDRV_ACTION_REPORT
, 0);
207 static void scsi_write_complete(void * opaque
, int ret
)
209 SCSIDiskReq
*r
= (SCSIDiskReq
*)opaque
;
216 if (scsi_handle_write_error(r
, -ret
))
220 n
= r
->iov
.iov_len
/ 512;
222 r
->sector_count
-= n
;
223 if (r
->sector_count
== 0) {
224 scsi_command_complete(r
, GOOD
, NO_SENSE
);
226 len
= r
->sector_count
* 512;
227 if (len
> SCSI_DMA_BUF_SIZE
) {
228 len
= SCSI_DMA_BUF_SIZE
;
230 r
->iov
.iov_len
= len
;
231 DPRINTF("Write complete tag=0x%x more=%d\n", r
->req
.tag
, len
);
232 r
->req
.bus
->complete(r
->req
.bus
, SCSI_REASON_DATA
, r
->req
.tag
, len
);
236 static void scsi_write_request(SCSIDiskReq
*r
)
238 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
241 n
= r
->iov
.iov_len
/ 512;
243 qemu_iovec_init_external(&r
->qiov
, &r
->iov
, 1);
244 r
->req
.aiocb
= bdrv_aio_writev(s
->bs
, r
->sector
, &r
->qiov
, n
,
245 scsi_write_complete
, r
);
246 if (r
->req
.aiocb
== NULL
)
247 scsi_command_complete(r
, CHECK_CONDITION
,
250 /* Invoke completion routine to fetch data from host. */
251 scsi_write_complete(r
, 0);
255 /* Write data to a scsi device. Returns nonzero on failure.
256 The transfer may complete asynchronously. */
257 static int scsi_write_data(SCSIDevice
*d
, uint32_t tag
)
259 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
262 DPRINTF("Write data tag=0x%x\n", tag
);
263 r
= scsi_find_request(s
, tag
);
265 BADF("Bad write tag 0x%x\n", tag
);
266 scsi_command_complete(r
, CHECK_CONDITION
, HARDWARE_ERROR
);
271 BADF("Data transfer already in progress\n");
273 scsi_write_request(r
);
278 static void scsi_dma_restart_bh(void *opaque
)
280 SCSIDiskState
*s
= opaque
;
284 qemu_bh_delete(s
->bh
);
287 QTAILQ_FOREACH(req
, &s
->qdev
.requests
, next
) {
288 r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
289 if (r
->status
& SCSI_REQ_STATUS_RETRY
) {
290 r
->status
&= ~SCSI_REQ_STATUS_RETRY
;
291 scsi_write_request(r
);
296 static void scsi_dma_restart_cb(void *opaque
, int running
, int reason
)
298 SCSIDiskState
*s
= opaque
;
304 s
->bh
= qemu_bh_new(scsi_dma_restart_bh
, s
);
305 qemu_bh_schedule(s
->bh
);
309 /* Return a pointer to the data buffer. */
310 static uint8_t *scsi_get_buf(SCSIDevice
*d
, uint32_t tag
)
312 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
315 r
= scsi_find_request(s
, tag
);
317 BADF("Bad buffer tag 0x%x\n", tag
);
320 return (uint8_t *)r
->iov
.iov_base
;
323 static int scsi_disk_emulate_inquiry(SCSIRequest
*req
, uint8_t *outbuf
)
325 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
328 if (req
->cmd
.buf
[1] & 0x2) {
329 /* Command support data - optional, not implemented */
330 BADF("optional INQUIRY command support request not implemented\n");
334 if (req
->cmd
.buf
[1] & 0x1) {
335 /* Vital product data */
336 uint8_t page_code
= req
->cmd
.buf
[2];
337 if (req
->cmd
.xfer
< 4) {
338 BADF("Error: Inquiry (EVPD[%02X]) buffer size %zd is "
339 "less than 4\n", page_code
, req
->cmd
.xfer
);
343 if (bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
) {
344 outbuf
[buflen
++] = 5;
346 outbuf
[buflen
++] = 0;
348 outbuf
[buflen
++] = page_code
; // this page
349 outbuf
[buflen
++] = 0x00;
352 case 0x00: /* Supported page codes, mandatory */
353 DPRINTF("Inquiry EVPD[Supported pages] "
354 "buffer size %zd\n", req
->cmd
.xfer
);
355 outbuf
[buflen
++] = 4; // number of pages
356 outbuf
[buflen
++] = 0x00; // list of supported pages (this page)
357 outbuf
[buflen
++] = 0x80; // unit serial number
358 outbuf
[buflen
++] = 0x83; // device identification
359 outbuf
[buflen
++] = 0xb0; // block device characteristics
362 case 0x80: /* Device serial number, optional */
364 int l
= strlen(s
->serial
);
366 if (l
> req
->cmd
.xfer
)
371 DPRINTF("Inquiry EVPD[Serial number] "
372 "buffer size %zd\n", req
->cmd
.xfer
);
373 outbuf
[buflen
++] = l
;
374 memcpy(outbuf
+buflen
, s
->serial
, l
);
379 case 0x83: /* Device identification page, mandatory */
381 int max_len
= 255 - 8;
382 int id_len
= strlen(bdrv_get_device_name(s
->bs
));
384 if (id_len
> max_len
)
386 DPRINTF("Inquiry EVPD[Device identification] "
387 "buffer size %zd\n", req
->cmd
.xfer
);
389 outbuf
[buflen
++] = 3 + id_len
;
390 outbuf
[buflen
++] = 0x2; // ASCII
391 outbuf
[buflen
++] = 0; // not officially assigned
392 outbuf
[buflen
++] = 0; // reserved
393 outbuf
[buflen
++] = id_len
; // length of data following
395 memcpy(outbuf
+buflen
, bdrv_get_device_name(s
->bs
), id_len
);
399 case 0xb0: /* block device characteristics */
401 unsigned int min_io_size
=
402 s
->qdev
.conf
.min_io_size
/ s
->qdev
.blocksize
;
403 unsigned int opt_io_size
=
404 s
->qdev
.conf
.opt_io_size
/ s
->qdev
.blocksize
;
406 /* required VPD size with unmap support */
407 outbuf
[3] = buflen
= 0x3c;
409 memset(outbuf
+ 4, 0, buflen
- 4);
411 /* optimal transfer length granularity */
412 outbuf
[6] = (min_io_size
>> 8) & 0xff;
413 outbuf
[7] = min_io_size
& 0xff;
415 /* optimal transfer length */
416 outbuf
[12] = (opt_io_size
>> 24) & 0xff;
417 outbuf
[13] = (opt_io_size
>> 16) & 0xff;
418 outbuf
[14] = (opt_io_size
>> 8) & 0xff;
419 outbuf
[15] = opt_io_size
& 0xff;
423 BADF("Error: unsupported Inquiry (EVPD[%02X]) "
424 "buffer size %zd\n", page_code
, req
->cmd
.xfer
);
431 /* Standard INQUIRY data */
432 if (req
->cmd
.buf
[2] != 0) {
433 BADF("Error: Inquiry (STANDARD) page or code "
434 "is non-zero [%02X]\n", req
->cmd
.buf
[2]);
439 if (req
->cmd
.xfer
< 5) {
440 BADF("Error: Inquiry (STANDARD) buffer size %zd "
441 "is less than 5\n", req
->cmd
.xfer
);
445 buflen
= req
->cmd
.xfer
;
446 if (buflen
> SCSI_MAX_INQUIRY_LEN
)
447 buflen
= SCSI_MAX_INQUIRY_LEN
;
449 memset(outbuf
, 0, buflen
);
451 if (req
->lun
|| req
->cmd
.buf
[1] >> 5) {
452 outbuf
[0] = 0x7f; /* LUN not supported */
456 if (bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
) {
459 memcpy(&outbuf
[16], "QEMU CD-ROM ", 16);
462 memcpy(&outbuf
[16], "QEMU HARDDISK ", 16);
464 memcpy(&outbuf
[8], "QEMU ", 8);
465 memset(&outbuf
[32], 0, 4);
466 memcpy(&outbuf
[32], s
->version
, MIN(4, strlen(s
->version
)));
468 * We claim conformance to SPC-3, which is required for guests
469 * to ask for modern features like READ CAPACITY(16) or the
470 * block characteristics VPD page by default. Not all of SPC-3
471 * is actually implemented, but we're good enough.
474 outbuf
[3] = 2; /* Format 2 */
477 outbuf
[4] = buflen
- 5; /* Additional Length = (Len - 1) - 4 */
479 /* If the allocation length of CDB is too small,
480 the additional length is not adjusted */
484 /* Sync data transfer and TCQ. */
485 outbuf
[7] = 0x10 | (req
->bus
->tcq
? 0x02 : 0);
489 static int mode_sense_page(SCSIRequest
*req
, int page
, uint8_t *p
)
491 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
492 BlockDriverState
*bdrv
= s
->bs
;
493 int cylinders
, heads
, secs
;
496 case 4: /* Rigid disk device geometry page. */
499 /* if a geometry hint is available, use it */
500 bdrv_get_geometry_hint(bdrv
, &cylinders
, &heads
, &secs
);
501 p
[2] = (cylinders
>> 16) & 0xff;
502 p
[3] = (cylinders
>> 8) & 0xff;
503 p
[4] = cylinders
& 0xff;
505 /* Write precomp start cylinder, disabled */
506 p
[6] = (cylinders
>> 16) & 0xff;
507 p
[7] = (cylinders
>> 8) & 0xff;
508 p
[8] = cylinders
& 0xff;
509 /* Reduced current start cylinder, disabled */
510 p
[9] = (cylinders
>> 16) & 0xff;
511 p
[10] = (cylinders
>> 8) & 0xff;
512 p
[11] = cylinders
& 0xff;
513 /* Device step rate [ns], 200ns */
516 /* Landing zone cylinder */
520 /* Medium rotation rate [rpm], 5400 rpm */
521 p
[20] = (5400 >> 8) & 0xff;
525 case 5: /* Flexible disk device geometry page. */
528 /* Transfer rate [kbit/s], 5Mbit/s */
531 /* if a geometry hint is available, use it */
532 bdrv_get_geometry_hint(bdrv
, &cylinders
, &heads
, &secs
);
535 p
[6] = s
->cluster_size
* 2;
536 p
[8] = (cylinders
>> 8) & 0xff;
537 p
[9] = cylinders
& 0xff;
538 /* Write precomp start cylinder, disabled */
539 p
[10] = (cylinders
>> 8) & 0xff;
540 p
[11] = cylinders
& 0xff;
541 /* Reduced current start cylinder, disabled */
542 p
[12] = (cylinders
>> 8) & 0xff;
543 p
[13] = cylinders
& 0xff;
544 /* Device step rate [100us], 100us */
547 /* Device step pulse width [us], 1us */
549 /* Device head settle delay [100us], 100us */
552 /* Motor on delay [0.1s], 0.1s */
554 /* Motor off delay [0.1s], 0.1s */
556 /* Medium rotation rate [rpm], 5400 rpm */
557 p
[28] = (5400 >> 8) & 0xff;
561 case 8: /* Caching page. */
564 if (bdrv_enable_write_cache(s
->bs
)) {
569 case 0x2a: /* CD Capabilities and Mechanical Status page. */
570 if (bdrv_get_type_hint(bdrv
) != BDRV_TYPE_CDROM
)
574 p
[2] = 3; // CD-R & CD-RW read
575 p
[3] = 0; // Writing not supported
576 p
[4] = 0x7f; /* Audio, composite, digital out,
577 mode 2 form 1&2, multi session */
578 p
[5] = 0xff; /* CD DA, DA accurate, RW supported,
579 RW corrected, C2 errors, ISRC,
581 p
[6] = 0x2d | (bdrv_is_locked(s
->bs
)? 2 : 0);
582 /* Locking supported, jumper present, eject, tray */
583 p
[7] = 0; /* no volume & mute control, no
585 p
[8] = (50 * 176) >> 8; // 50x read speed
586 p
[9] = (50 * 176) & 0xff;
587 p
[10] = 0 >> 8; // No volume
589 p
[12] = 2048 >> 8; // 2M buffer
591 p
[14] = (16 * 176) >> 8; // 16x read speed current
592 p
[15] = (16 * 176) & 0xff;
593 p
[18] = (16 * 176) >> 8; // 16x write speed
594 p
[19] = (16 * 176) & 0xff;
595 p
[20] = (16 * 176) >> 8; // 16x write speed current
596 p
[21] = (16 * 176) & 0xff;
604 static int scsi_disk_emulate_mode_sense(SCSIRequest
*req
, uint8_t *outbuf
)
606 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
608 int page
, dbd
, buflen
;
611 dbd
= req
->cmd
.buf
[1] & 0x8;
612 page
= req
->cmd
.buf
[2] & 0x3f;
613 DPRINTF("Mode Sense (page %d, len %zd)\n", page
, req
->cmd
.xfer
);
614 memset(outbuf
, 0, req
->cmd
.xfer
);
617 p
[1] = 0; /* Default media type. */
618 p
[3] = 0; /* Block descriptor length. */
619 if (bdrv_is_read_only(s
->bs
)) {
620 p
[2] = 0x80; /* Readonly. */
624 bdrv_get_geometry(s
->bs
, &nb_sectors
);
625 if ((~dbd
) & nb_sectors
) {
626 outbuf
[3] = 8; /* Block descriptor length */
627 nb_sectors
/= s
->cluster_size
;
629 if (nb_sectors
> 0xffffff)
630 nb_sectors
= 0xffffff;
631 p
[0] = 0; /* media density code */
632 p
[1] = (nb_sectors
>> 16) & 0xff;
633 p
[2] = (nb_sectors
>> 8) & 0xff;
634 p
[3] = nb_sectors
& 0xff;
635 p
[4] = 0; /* reserved */
636 p
[5] = 0; /* bytes 5-7 are the sector size in bytes */
637 p
[6] = s
->cluster_size
* 2;
647 p
+= mode_sense_page(req
, page
, p
);
650 p
+= mode_sense_page(req
, 0x08, p
);
651 p
+= mode_sense_page(req
, 0x2a, p
);
656 outbuf
[0] = buflen
- 4;
657 if (buflen
> req
->cmd
.xfer
)
658 buflen
= req
->cmd
.xfer
;
662 static int scsi_disk_emulate_read_toc(SCSIRequest
*req
, uint8_t *outbuf
)
664 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
665 int start_track
, format
, msf
, toclen
;
668 msf
= req
->cmd
.buf
[1] & 2;
669 format
= req
->cmd
.buf
[2] & 0xf;
670 start_track
= req
->cmd
.buf
[6];
671 bdrv_get_geometry(s
->bs
, &nb_sectors
);
672 DPRINTF("Read TOC (track %d format %d msf %d)\n", start_track
, format
, msf
>> 1);
673 nb_sectors
/= s
->cluster_size
;
676 toclen
= cdrom_read_toc(nb_sectors
, outbuf
, msf
, start_track
);
679 /* multi session : only a single session defined */
681 memset(outbuf
, 0, 12);
687 toclen
= cdrom_read_toc_raw(nb_sectors
, outbuf
, msf
, start_track
);
692 if (toclen
> req
->cmd
.xfer
)
693 toclen
= req
->cmd
.xfer
;
697 static int scsi_disk_emulate_command(SCSIRequest
*req
, uint8_t *outbuf
)
699 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
703 switch (req
->cmd
.buf
[0]) {
704 case TEST_UNIT_READY
:
705 if (!bdrv_is_inserted(s
->bs
))
709 if (req
->cmd
.xfer
< 4)
710 goto illegal_request
;
711 memset(outbuf
, 0, 4);
713 if (req
->dev
->sense
.key
== NOT_READY
&& req
->cmd
.xfer
>= 18) {
714 memset(outbuf
, 0, 18);
717 /* asc 0x3a, ascq 0: Medium not present */
723 outbuf
[2] = req
->dev
->sense
.key
;
724 scsi_dev_clear_sense(req
->dev
);
727 buflen
= scsi_disk_emulate_inquiry(req
, outbuf
);
729 goto illegal_request
;
733 buflen
= scsi_disk_emulate_mode_sense(req
, outbuf
);
735 goto illegal_request
;
738 buflen
= scsi_disk_emulate_read_toc(req
, outbuf
);
740 goto illegal_request
;
743 if (req
->cmd
.buf
[1] & 1)
744 goto illegal_request
;
747 if (req
->cmd
.buf
[1] & 3)
748 goto illegal_request
;
751 if (req
->cmd
.buf
[1] & 1)
752 goto illegal_request
;
755 if (req
->cmd
.buf
[1] & 3)
756 goto illegal_request
;
759 if (bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
&& (req
->cmd
.buf
[4] & 2)) {
760 /* load/eject medium */
761 bdrv_eject(s
->bs
, !(req
->cmd
.buf
[4] & 1));
764 case ALLOW_MEDIUM_REMOVAL
:
765 bdrv_set_locked(s
->bs
, req
->cmd
.buf
[4] & 1);
768 /* The normal LEN field for this command is zero. */
769 memset(outbuf
, 0, 8);
770 bdrv_get_geometry(s
->bs
, &nb_sectors
);
773 nb_sectors
/= s
->cluster_size
;
774 /* Returned value is the address of the last sector. */
776 /* Remember the new size for read/write sanity checking. */
777 s
->max_lba
= nb_sectors
;
778 /* Clip to 2TB, instead of returning capacity modulo 2TB. */
779 if (nb_sectors
> UINT32_MAX
)
780 nb_sectors
= UINT32_MAX
;
781 outbuf
[0] = (nb_sectors
>> 24) & 0xff;
782 outbuf
[1] = (nb_sectors
>> 16) & 0xff;
783 outbuf
[2] = (nb_sectors
>> 8) & 0xff;
784 outbuf
[3] = nb_sectors
& 0xff;
787 outbuf
[6] = s
->cluster_size
* 2;
791 case SYNCHRONIZE_CACHE
:
794 case GET_CONFIGURATION
:
795 memset(outbuf
, 0, 8);
796 /* ??? This should probably return much more information. For now
797 just return the basic header indicating the CD-ROM profile. */
798 outbuf
[7] = 8; // CD-ROM
801 case SERVICE_ACTION_IN
:
802 /* Service Action In subcommands. */
803 if ((req
->cmd
.buf
[1] & 31) == 0x10) {
804 DPRINTF("SAI READ CAPACITY(16)\n");
805 memset(outbuf
, 0, req
->cmd
.xfer
);
806 bdrv_get_geometry(s
->bs
, &nb_sectors
);
809 nb_sectors
/= s
->cluster_size
;
810 /* Returned value is the address of the last sector. */
812 /* Remember the new size for read/write sanity checking. */
813 s
->max_lba
= nb_sectors
;
814 outbuf
[0] = (nb_sectors
>> 56) & 0xff;
815 outbuf
[1] = (nb_sectors
>> 48) & 0xff;
816 outbuf
[2] = (nb_sectors
>> 40) & 0xff;
817 outbuf
[3] = (nb_sectors
>> 32) & 0xff;
818 outbuf
[4] = (nb_sectors
>> 24) & 0xff;
819 outbuf
[5] = (nb_sectors
>> 16) & 0xff;
820 outbuf
[6] = (nb_sectors
>> 8) & 0xff;
821 outbuf
[7] = nb_sectors
& 0xff;
824 outbuf
[10] = s
->cluster_size
* 2;
827 outbuf
[13] = get_physical_block_exp(&s
->qdev
.conf
);
828 /* Protection, exponent and lowest lba field left blank. */
829 buflen
= req
->cmd
.xfer
;
832 DPRINTF("Unsupported Service Action In\n");
833 goto illegal_request
;
835 if (req
->cmd
.xfer
< 16)
836 goto illegal_request
;
837 memset(outbuf
, 0, 16);
844 goto illegal_request
;
846 scsi_req_set_status(req
, GOOD
, NO_SENSE
);
850 scsi_req_set_status(req
, CHECK_CONDITION
, NOT_READY
);
854 scsi_req_set_status(req
, CHECK_CONDITION
, ILLEGAL_REQUEST
);
858 /* Execute a scsi command. Returns the length of the data expected by the
859 command. This will be Positive for data transfers from the device
860 (eg. disk reads), negative for transfers to the device (eg. disk writes),
861 and zero if the command does not transfer any data. */
863 static int32_t scsi_send_command(SCSIDevice
*d
, uint32_t tag
,
864 uint8_t *buf
, int lun
)
866 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
877 r
= scsi_find_request(s
, tag
);
879 BADF("Tag 0x%x already in use\n", tag
);
880 scsi_cancel_io(d
, tag
);
882 /* ??? Tags are not unique for different luns. We only implement a
883 single lun, so this should not matter. */
884 r
= scsi_new_request(d
, tag
, lun
);
885 outbuf
= (uint8_t *)r
->iov
.iov_base
;
887 DPRINTF("Command: lun=%d tag=0x%x data=0x%02x", lun
, tag
, buf
[0]);
888 switch (command
>> 5) {
890 lba
= (uint64_t) buf
[3] | ((uint64_t) buf
[2] << 8) |
891 (((uint64_t) buf
[1] & 0x1f) << 16);
897 lba
= (uint64_t) buf
[5] | ((uint64_t) buf
[4] << 8) |
898 ((uint64_t) buf
[3] << 16) | ((uint64_t) buf
[2] << 24);
899 len
= buf
[8] | (buf
[7] << 8);
903 lba
= (uint64_t) buf
[9] | ((uint64_t) buf
[8] << 8) |
904 ((uint64_t) buf
[7] << 16) | ((uint64_t) buf
[6] << 24) |
905 ((uint64_t) buf
[5] << 32) | ((uint64_t) buf
[4] << 40) |
906 ((uint64_t) buf
[3] << 48) | ((uint64_t) buf
[2] << 56);
907 len
= buf
[13] | (buf
[12] << 8) | (buf
[11] << 16) | (buf
[10] << 24);
911 lba
= (uint64_t) buf
[5] | ((uint64_t) buf
[4] << 8) |
912 ((uint64_t) buf
[3] << 16) | ((uint64_t) buf
[2] << 24);
913 len
= buf
[9] | (buf
[8] << 8) | (buf
[7] << 16) | (buf
[6] << 24);
917 BADF("Unsupported command length, command %x\n", command
);
923 for (i
= 1; i
< cmdlen
; i
++) {
924 printf(" 0x%02x", buf
[i
]);
930 if (scsi_req_parse(&r
->req
, buf
) != 0) {
931 BADF("Unsupported command length, command %x\n", command
);
934 assert(r
->req
.cmd
.len
== cmdlen
);
935 assert(r
->req
.cmd
.lba
== lba
);
937 if (lun
|| buf
[1] >> 5) {
938 /* Only LUN 0 supported. */
939 DPRINTF("Unimplemented LUN %d\n", lun
? lun
: buf
[1] >> 5);
940 if (command
!= REQUEST_SENSE
&& command
!= INQUIRY
)
944 case TEST_UNIT_READY
:
954 case ALLOW_MEDIUM_REMOVAL
:
956 case SYNCHRONIZE_CACHE
:
958 case GET_CONFIGURATION
:
959 case SERVICE_ACTION_IN
:
962 rc
= scsi_disk_emulate_command(&r
->req
, outbuf
);
966 scsi_req_complete(&r
->req
);
967 scsi_remove_request(r
);
975 DPRINTF("Read (sector %" PRId64
", count %d)\n", lba
, len
);
976 if (lba
> s
->max_lba
)
978 r
->sector
= lba
* s
->cluster_size
;
979 r
->sector_count
= len
* s
->cluster_size
;
985 DPRINTF("Write (sector %" PRId64
", count %d)\n", lba
, len
);
986 if (lba
> s
->max_lba
)
988 r
->sector
= lba
* s
->cluster_size
;
989 r
->sector_count
= len
* s
->cluster_size
;
993 DPRINTF("Unknown SCSI command (%2.2x)\n", buf
[0]);
995 scsi_command_complete(r
, CHECK_CONDITION
, ILLEGAL_REQUEST
);
998 scsi_command_complete(r
, CHECK_CONDITION
, HARDWARE_ERROR
);
1001 if (r
->sector_count
== 0 && r
->iov
.iov_len
== 0) {
1002 scsi_command_complete(r
, GOOD
, NO_SENSE
);
1004 len
= r
->sector_count
* 512 + r
->iov
.iov_len
;
1008 if (!r
->sector_count
)
1009 r
->sector_count
= -1;
1014 static void scsi_disk_purge_requests(SCSIDiskState
*s
)
1018 while (!QTAILQ_EMPTY(&s
->qdev
.requests
)) {
1019 r
= DO_UPCAST(SCSIDiskReq
, req
, QTAILQ_FIRST(&s
->qdev
.requests
));
1021 bdrv_aio_cancel(r
->req
.aiocb
);
1023 scsi_remove_request(r
);
1027 static void scsi_disk_reset(DeviceState
*dev
)
1029 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
.qdev
, dev
);
1030 uint64_t nb_sectors
;
1032 scsi_disk_purge_requests(s
);
1034 bdrv_get_geometry(s
->bs
, &nb_sectors
);
1035 nb_sectors
/= s
->cluster_size
;
1039 s
->max_lba
= nb_sectors
;
1042 static void scsi_destroy(SCSIDevice
*dev
)
1044 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1046 scsi_disk_purge_requests(s
);
1047 blockdev_mark_auto_del(s
->qdev
.conf
.bs
);
1050 static int scsi_disk_initfn(SCSIDevice
*dev
)
1052 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1056 if (!s
->qdev
.conf
.bs
) {
1057 error_report("scsi-disk: drive property not set");
1060 s
->bs
= s
->qdev
.conf
.bs
;
1061 is_cd
= bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
;
1063 if (!is_cd
&& !bdrv_is_inserted(s
->bs
)) {
1064 error_report("Device needs media, but drive is empty");
1068 if (bdrv_get_on_error(s
->bs
, 1) != BLOCK_ERR_REPORT
) {
1069 error_report("Device doesn't support drive option rerror");
1074 /* try to fall back to value set with legacy -drive serial=... */
1075 dinfo
= drive_get_by_blockdev(s
->bs
);
1076 s
->serial
= qemu_strdup(*dinfo
->serial
? dinfo
->serial
: "0");
1080 s
->version
= qemu_strdup(QEMU_VERSION
);
1083 if (bdrv_is_sg(s
->bs
)) {
1084 error_report("scsi-disk: unwanted /dev/sg*");
1089 s
->qdev
.blocksize
= 2048;
1091 s
->qdev
.blocksize
= s
->qdev
.conf
.logical_block_size
;
1093 s
->cluster_size
= s
->qdev
.blocksize
/ 512;
1095 s
->qdev
.type
= TYPE_DISK
;
1096 qemu_add_vm_change_state_handler(scsi_dma_restart_cb
, s
);
1097 bdrv_set_removable(s
->bs
, is_cd
);
1101 static SCSIDeviceInfo scsi_disk_info
= {
1102 .qdev
.name
= "scsi-disk",
1103 .qdev
.desc
= "virtual scsi disk or cdrom",
1104 .qdev
.size
= sizeof(SCSIDiskState
),
1105 .qdev
.reset
= scsi_disk_reset
,
1106 .init
= scsi_disk_initfn
,
1107 .destroy
= scsi_destroy
,
1108 .send_command
= scsi_send_command
,
1109 .read_data
= scsi_read_data
,
1110 .write_data
= scsi_write_data
,
1111 .cancel_io
= scsi_cancel_io
,
1112 .get_buf
= scsi_get_buf
,
1113 .qdev
.props
= (Property
[]) {
1114 DEFINE_BLOCK_PROPERTIES(SCSIDiskState
, qdev
.conf
),
1115 DEFINE_PROP_STRING("ver", SCSIDiskState
, version
),
1116 DEFINE_PROP_STRING("serial", SCSIDiskState
, serial
),
1117 DEFINE_PROP_END_OF_LIST(),
1121 static void scsi_disk_register_devices(void)
1123 scsi_qdev_register(&scsi_disk_info
);
1125 device_init(scsi_disk_register_devices
)