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
45 #define SCSI_REQ_STATUS_RETRY_TYPE_MASK 0x06
46 #define SCSI_REQ_STATUS_RETRY_READ 0x00
47 #define SCSI_REQ_STATUS_RETRY_WRITE 0x02
48 #define SCSI_REQ_STATUS_RETRY_FLUSH 0x04
50 typedef struct SCSIDiskState SCSIDiskState
;
52 typedef struct SCSISense
{
56 typedef struct SCSIDiskReq
{
58 /* ??? We should probably keep track of whether the data transfer is
59 a read or a write. Currently we rely on the host getting it right. */
60 /* Both sector and sector_count are in terms of qemu 512 byte blocks. */
62 uint32_t sector_count
;
72 /* The qemu block layer uses a fixed 512 byte sector size.
73 This is the number of 512 byte blocks in a single scsi sector. */
83 static int scsi_handle_rw_error(SCSIDiskReq
*r
, int error
, int type
);
84 static int scsi_disk_emulate_command(SCSIDiskReq
*r
, uint8_t *outbuf
);
86 static SCSIDiskReq
*scsi_new_request(SCSIDiskState
*s
, uint32_t tag
,
92 req
= scsi_req_alloc(sizeof(SCSIDiskReq
), &s
->qdev
, tag
, lun
);
93 r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
94 r
->iov
.iov_base
= qemu_blockalign(s
->bs
, SCSI_DMA_BUF_SIZE
);
98 static void scsi_remove_request(SCSIDiskReq
*r
)
100 qemu_vfree(r
->iov
.iov_base
);
101 scsi_req_free(&r
->req
);
104 static SCSIDiskReq
*scsi_find_request(SCSIDiskState
*s
, uint32_t tag
)
106 return DO_UPCAST(SCSIDiskReq
, req
, scsi_req_find(&s
->qdev
, tag
));
109 static void scsi_disk_clear_sense(SCSIDiskState
*s
)
111 memset(&s
->sense
, 0, sizeof(s
->sense
));
114 static void scsi_disk_set_sense(SCSIDiskState
*s
, uint8_t key
)
119 static void scsi_req_set_status(SCSIDiskReq
*r
, int status
, int sense_code
)
121 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
123 r
->req
.status
= status
;
124 scsi_disk_set_sense(s
, sense_code
);
127 /* Helper function for command completion. */
128 static void scsi_command_complete(SCSIDiskReq
*r
, int status
, int sense
)
130 DPRINTF("Command complete tag=0x%x status=%d sense=%d\n",
131 r
->req
.tag
, status
, sense
);
132 scsi_req_set_status(r
, status
, sense
);
133 scsi_req_complete(&r
->req
);
134 scsi_remove_request(r
);
137 /* Cancel a pending data transfer. */
138 static void scsi_cancel_io(SCSIDevice
*d
, uint32_t tag
)
140 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
142 DPRINTF("Cancel tag=0x%x\n", tag
);
143 r
= scsi_find_request(s
, tag
);
146 bdrv_aio_cancel(r
->req
.aiocb
);
148 scsi_remove_request(r
);
152 static void scsi_read_complete(void * opaque
, int ret
)
154 SCSIDiskReq
*r
= (SCSIDiskReq
*)opaque
;
160 if (scsi_handle_rw_error(r
, -ret
, SCSI_REQ_STATUS_RETRY_READ
)) {
165 DPRINTF("Data ready tag=0x%x len=%zd\n", r
->req
.tag
, r
->iov
.iov_len
);
167 n
= r
->iov
.iov_len
/ 512;
169 r
->sector_count
-= n
;
170 r
->req
.bus
->complete(r
->req
.bus
, SCSI_REASON_DATA
, r
->req
.tag
, r
->iov
.iov_len
);
174 static void scsi_read_request(SCSIDiskReq
*r
)
176 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
179 if (r
->sector_count
== (uint32_t)-1) {
180 DPRINTF("Read buf_len=%zd\n", r
->iov
.iov_len
);
182 r
->req
.bus
->complete(r
->req
.bus
, SCSI_REASON_DATA
, r
->req
.tag
, r
->iov
.iov_len
);
185 DPRINTF("Read sector_count=%d\n", r
->sector_count
);
186 if (r
->sector_count
== 0) {
187 scsi_command_complete(r
, GOOD
, NO_SENSE
);
191 /* No data transfer may already be in progress */
192 assert(r
->req
.aiocb
== NULL
);
195 if (n
> SCSI_DMA_BUF_SIZE
/ 512)
196 n
= SCSI_DMA_BUF_SIZE
/ 512;
198 r
->iov
.iov_len
= n
* 512;
199 qemu_iovec_init_external(&r
->qiov
, &r
->iov
, 1);
200 r
->req
.aiocb
= bdrv_aio_readv(s
->bs
, r
->sector
, &r
->qiov
, n
,
201 scsi_read_complete
, r
);
202 if (r
->req
.aiocb
== NULL
) {
203 scsi_read_complete(r
, -EIO
);
207 /* Read more data from scsi device into buffer. */
208 static void scsi_read_data(SCSIDevice
*d
, uint32_t tag
)
210 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
213 r
= scsi_find_request(s
, tag
);
215 BADF("Bad read tag 0x%x\n", tag
);
216 /* ??? This is the wrong error. */
217 scsi_command_complete(r
, CHECK_CONDITION
, HARDWARE_ERROR
);
221 scsi_read_request(r
);
224 static int scsi_handle_rw_error(SCSIDiskReq
*r
, int error
, int type
)
226 int is_read
= (type
== SCSI_REQ_STATUS_RETRY_READ
);
227 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
228 BlockErrorAction action
= bdrv_get_on_error(s
->bs
, is_read
);
230 if (action
== BLOCK_ERR_IGNORE
) {
231 bdrv_mon_event(s
->bs
, BDRV_ACTION_IGNORE
, is_read
);
235 if ((error
== ENOSPC
&& action
== BLOCK_ERR_STOP_ENOSPC
)
236 || action
== BLOCK_ERR_STOP_ANY
) {
238 type
&= SCSI_REQ_STATUS_RETRY_TYPE_MASK
;
239 r
->status
|= SCSI_REQ_STATUS_RETRY
| type
;
241 bdrv_mon_event(s
->bs
, BDRV_ACTION_STOP
, is_read
);
244 if (type
== SCSI_REQ_STATUS_RETRY_READ
) {
245 r
->req
.bus
->complete(r
->req
.bus
, SCSI_REASON_DATA
, r
->req
.tag
, 0);
247 scsi_command_complete(r
, CHECK_CONDITION
,
249 bdrv_mon_event(s
->bs
, BDRV_ACTION_REPORT
, is_read
);
255 static void scsi_write_complete(void * opaque
, int ret
)
257 SCSIDiskReq
*r
= (SCSIDiskReq
*)opaque
;
264 if (scsi_handle_rw_error(r
, -ret
, SCSI_REQ_STATUS_RETRY_WRITE
)) {
269 n
= r
->iov
.iov_len
/ 512;
271 r
->sector_count
-= n
;
272 if (r
->sector_count
== 0) {
273 scsi_command_complete(r
, GOOD
, NO_SENSE
);
275 len
= r
->sector_count
* 512;
276 if (len
> SCSI_DMA_BUF_SIZE
) {
277 len
= SCSI_DMA_BUF_SIZE
;
279 r
->iov
.iov_len
= len
;
280 DPRINTF("Write complete tag=0x%x more=%d\n", r
->req
.tag
, len
);
281 r
->req
.bus
->complete(r
->req
.bus
, SCSI_REASON_DATA
, r
->req
.tag
, len
);
285 static void scsi_write_request(SCSIDiskReq
*r
)
287 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
290 /* No data transfer may already be in progress */
291 assert(r
->req
.aiocb
== NULL
);
293 n
= r
->iov
.iov_len
/ 512;
295 qemu_iovec_init_external(&r
->qiov
, &r
->iov
, 1);
296 r
->req
.aiocb
= bdrv_aio_writev(s
->bs
, r
->sector
, &r
->qiov
, n
,
297 scsi_write_complete
, r
);
298 if (r
->req
.aiocb
== NULL
) {
299 scsi_write_complete(r
, -EIO
);
302 /* Invoke completion routine to fetch data from host. */
303 scsi_write_complete(r
, 0);
307 /* Write data to a scsi device. Returns nonzero on failure.
308 The transfer may complete asynchronously. */
309 static int scsi_write_data(SCSIDevice
*d
, uint32_t tag
)
311 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
314 DPRINTF("Write data tag=0x%x\n", tag
);
315 r
= scsi_find_request(s
, tag
);
317 BADF("Bad write tag 0x%x\n", tag
);
318 scsi_command_complete(r
, CHECK_CONDITION
, HARDWARE_ERROR
);
322 scsi_write_request(r
);
327 static void scsi_dma_restart_bh(void *opaque
)
329 SCSIDiskState
*s
= opaque
;
333 qemu_bh_delete(s
->bh
);
336 QTAILQ_FOREACH(req
, &s
->qdev
.requests
, next
) {
337 r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
338 if (r
->status
& SCSI_REQ_STATUS_RETRY
) {
339 int status
= r
->status
;
343 ~(SCSI_REQ_STATUS_RETRY
| SCSI_REQ_STATUS_RETRY_TYPE_MASK
);
345 switch (status
& SCSI_REQ_STATUS_RETRY_TYPE_MASK
) {
346 case SCSI_REQ_STATUS_RETRY_READ
:
347 scsi_read_request(r
);
349 case SCSI_REQ_STATUS_RETRY_WRITE
:
350 scsi_write_request(r
);
352 case SCSI_REQ_STATUS_RETRY_FLUSH
:
353 ret
= scsi_disk_emulate_command(r
, r
->iov
.iov_base
);
355 scsi_command_complete(r
, GOOD
, NO_SENSE
);
362 static void scsi_dma_restart_cb(void *opaque
, int running
, int reason
)
364 SCSIDiskState
*s
= opaque
;
370 s
->bh
= qemu_bh_new(scsi_dma_restart_bh
, s
);
371 qemu_bh_schedule(s
->bh
);
375 /* Return a pointer to the data buffer. */
376 static uint8_t *scsi_get_buf(SCSIDevice
*d
, uint32_t tag
)
378 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
381 r
= scsi_find_request(s
, tag
);
383 BADF("Bad buffer tag 0x%x\n", tag
);
386 return (uint8_t *)r
->iov
.iov_base
;
389 static int scsi_disk_emulate_inquiry(SCSIRequest
*req
, uint8_t *outbuf
)
391 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
394 if (req
->cmd
.buf
[1] & 0x2) {
395 /* Command support data - optional, not implemented */
396 BADF("optional INQUIRY command support request not implemented\n");
400 if (req
->cmd
.buf
[1] & 0x1) {
401 /* Vital product data */
402 uint8_t page_code
= req
->cmd
.buf
[2];
403 if (req
->cmd
.xfer
< 4) {
404 BADF("Error: Inquiry (EVPD[%02X]) buffer size %zd is "
405 "less than 4\n", page_code
, req
->cmd
.xfer
);
409 if (bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
) {
410 outbuf
[buflen
++] = 5;
412 outbuf
[buflen
++] = 0;
414 outbuf
[buflen
++] = page_code
; // this page
415 outbuf
[buflen
++] = 0x00;
418 case 0x00: /* Supported page codes, mandatory */
421 DPRINTF("Inquiry EVPD[Supported pages] "
422 "buffer size %zd\n", req
->cmd
.xfer
);
424 outbuf
[buflen
++] = 0x00; // list of supported pages (this page)
425 outbuf
[buflen
++] = 0x80; // unit serial number
426 outbuf
[buflen
++] = 0x83; // device identification
427 if (bdrv_get_type_hint(s
->bs
) != BDRV_TYPE_CDROM
) {
428 outbuf
[buflen
++] = 0xb0; // block limits
429 outbuf
[buflen
++] = 0xb2; // thin provisioning
431 outbuf
[pages
] = buflen
- pages
- 1; // number of pages
434 case 0x80: /* Device serial number, optional */
436 int l
= strlen(s
->serial
);
438 if (l
> req
->cmd
.xfer
)
443 DPRINTF("Inquiry EVPD[Serial number] "
444 "buffer size %zd\n", req
->cmd
.xfer
);
445 outbuf
[buflen
++] = l
;
446 memcpy(outbuf
+buflen
, s
->serial
, l
);
451 case 0x83: /* Device identification page, mandatory */
453 int max_len
= 255 - 8;
454 int id_len
= strlen(bdrv_get_device_name(s
->bs
));
456 if (id_len
> max_len
)
458 DPRINTF("Inquiry EVPD[Device identification] "
459 "buffer size %zd\n", req
->cmd
.xfer
);
461 outbuf
[buflen
++] = 4 + id_len
;
462 outbuf
[buflen
++] = 0x2; // ASCII
463 outbuf
[buflen
++] = 0; // not officially assigned
464 outbuf
[buflen
++] = 0; // reserved
465 outbuf
[buflen
++] = id_len
; // length of data following
467 memcpy(outbuf
+buflen
, bdrv_get_device_name(s
->bs
), id_len
);
471 case 0xb0: /* block limits */
473 unsigned int unmap_sectors
=
474 s
->qdev
.conf
.discard_granularity
/ s
->qdev
.blocksize
;
475 unsigned int min_io_size
=
476 s
->qdev
.conf
.min_io_size
/ s
->qdev
.blocksize
;
477 unsigned int opt_io_size
=
478 s
->qdev
.conf
.opt_io_size
/ s
->qdev
.blocksize
;
480 if (bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
) {
481 DPRINTF("Inquiry (EVPD[%02X] not supported for CDROM\n",
485 /* required VPD size with unmap support */
486 outbuf
[3] = buflen
= 0x3c;
488 memset(outbuf
+ 4, 0, buflen
- 4);
490 /* optimal transfer length granularity */
491 outbuf
[6] = (min_io_size
>> 8) & 0xff;
492 outbuf
[7] = min_io_size
& 0xff;
494 /* optimal transfer length */
495 outbuf
[12] = (opt_io_size
>> 24) & 0xff;
496 outbuf
[13] = (opt_io_size
>> 16) & 0xff;
497 outbuf
[14] = (opt_io_size
>> 8) & 0xff;
498 outbuf
[15] = opt_io_size
& 0xff;
500 /* optimal unmap granularity */
501 outbuf
[28] = (unmap_sectors
>> 24) & 0xff;
502 outbuf
[29] = (unmap_sectors
>> 16) & 0xff;
503 outbuf
[30] = (unmap_sectors
>> 8) & 0xff;
504 outbuf
[31] = unmap_sectors
& 0xff;
507 case 0xb2: /* thin provisioning */
509 outbuf
[3] = buflen
= 8;
511 outbuf
[5] = 0x40; /* write same with unmap supported */
517 BADF("Error: unsupported Inquiry (EVPD[%02X]) "
518 "buffer size %zd\n", page_code
, req
->cmd
.xfer
);
525 /* Standard INQUIRY data */
526 if (req
->cmd
.buf
[2] != 0) {
527 BADF("Error: Inquiry (STANDARD) page or code "
528 "is non-zero [%02X]\n", req
->cmd
.buf
[2]);
533 if (req
->cmd
.xfer
< 5) {
534 BADF("Error: Inquiry (STANDARD) buffer size %zd "
535 "is less than 5\n", req
->cmd
.xfer
);
539 buflen
= req
->cmd
.xfer
;
540 if (buflen
> SCSI_MAX_INQUIRY_LEN
)
541 buflen
= SCSI_MAX_INQUIRY_LEN
;
543 memset(outbuf
, 0, buflen
);
545 if (req
->lun
|| req
->cmd
.buf
[1] >> 5) {
546 outbuf
[0] = 0x7f; /* LUN not supported */
550 if (bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
) {
553 memcpy(&outbuf
[16], "QEMU CD-ROM ", 16);
556 outbuf
[1] = s
->removable
? 0x80 : 0;
557 memcpy(&outbuf
[16], "QEMU HARDDISK ", 16);
559 memcpy(&outbuf
[8], "QEMU ", 8);
560 memset(&outbuf
[32], 0, 4);
561 memcpy(&outbuf
[32], s
->version
, MIN(4, strlen(s
->version
)));
563 * We claim conformance to SPC-3, which is required for guests
564 * to ask for modern features like READ CAPACITY(16) or the
565 * block characteristics VPD page by default. Not all of SPC-3
566 * is actually implemented, but we're good enough.
569 outbuf
[3] = 2; /* Format 2 */
572 outbuf
[4] = buflen
- 5; /* Additional Length = (Len - 1) - 4 */
574 /* If the allocation length of CDB is too small,
575 the additional length is not adjusted */
579 /* Sync data transfer and TCQ. */
580 outbuf
[7] = 0x10 | (req
->bus
->tcq
? 0x02 : 0);
584 static int mode_sense_page(SCSIRequest
*req
, int page
, uint8_t *p
,
587 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
588 BlockDriverState
*bdrv
= s
->bs
;
589 int cylinders
, heads
, secs
;
592 * If Changeable Values are requested, a mask denoting those mode parameters
593 * that are changeable shall be returned. As we currently don't support
594 * parameter changes via MODE_SELECT all bits are returned set to zero.
595 * The buffer was already menset to zero by the caller of this function.
598 case 4: /* Rigid disk device geometry page. */
601 if (page_control
== 1) { /* Changeable Values */
604 /* if a geometry hint is available, use it */
605 bdrv_get_geometry_hint(bdrv
, &cylinders
, &heads
, &secs
);
606 p
[2] = (cylinders
>> 16) & 0xff;
607 p
[3] = (cylinders
>> 8) & 0xff;
608 p
[4] = cylinders
& 0xff;
610 /* Write precomp start cylinder, disabled */
611 p
[6] = (cylinders
>> 16) & 0xff;
612 p
[7] = (cylinders
>> 8) & 0xff;
613 p
[8] = cylinders
& 0xff;
614 /* Reduced current start cylinder, disabled */
615 p
[9] = (cylinders
>> 16) & 0xff;
616 p
[10] = (cylinders
>> 8) & 0xff;
617 p
[11] = cylinders
& 0xff;
618 /* Device step rate [ns], 200ns */
621 /* Landing zone cylinder */
625 /* Medium rotation rate [rpm], 5400 rpm */
626 p
[20] = (5400 >> 8) & 0xff;
630 case 5: /* Flexible disk device geometry page. */
633 if (page_control
== 1) { /* Changeable Values */
636 /* Transfer rate [kbit/s], 5Mbit/s */
639 /* if a geometry hint is available, use it */
640 bdrv_get_geometry_hint(bdrv
, &cylinders
, &heads
, &secs
);
643 p
[6] = s
->cluster_size
* 2;
644 p
[8] = (cylinders
>> 8) & 0xff;
645 p
[9] = cylinders
& 0xff;
646 /* Write precomp start cylinder, disabled */
647 p
[10] = (cylinders
>> 8) & 0xff;
648 p
[11] = cylinders
& 0xff;
649 /* Reduced current start cylinder, disabled */
650 p
[12] = (cylinders
>> 8) & 0xff;
651 p
[13] = cylinders
& 0xff;
652 /* Device step rate [100us], 100us */
655 /* Device step pulse width [us], 1us */
657 /* Device head settle delay [100us], 100us */
660 /* Motor on delay [0.1s], 0.1s */
662 /* Motor off delay [0.1s], 0.1s */
664 /* Medium rotation rate [rpm], 5400 rpm */
665 p
[28] = (5400 >> 8) & 0xff;
669 case 8: /* Caching page. */
672 if (page_control
== 1) { /* Changeable Values */
675 if (bdrv_enable_write_cache(s
->bs
)) {
680 case 0x2a: /* CD Capabilities and Mechanical Status page. */
681 if (bdrv_get_type_hint(bdrv
) != BDRV_TYPE_CDROM
)
685 if (page_control
== 1) { /* Changeable Values */
688 p
[2] = 3; // CD-R & CD-RW read
689 p
[3] = 0; // Writing not supported
690 p
[4] = 0x7f; /* Audio, composite, digital out,
691 mode 2 form 1&2, multi session */
692 p
[5] = 0xff; /* CD DA, DA accurate, RW supported,
693 RW corrected, C2 errors, ISRC,
695 p
[6] = 0x2d | (bdrv_is_locked(s
->bs
)? 2 : 0);
696 /* Locking supported, jumper present, eject, tray */
697 p
[7] = 0; /* no volume & mute control, no
699 p
[8] = (50 * 176) >> 8; // 50x read speed
700 p
[9] = (50 * 176) & 0xff;
701 p
[10] = 0 >> 8; // No volume
703 p
[12] = 2048 >> 8; // 2M buffer
705 p
[14] = (16 * 176) >> 8; // 16x read speed current
706 p
[15] = (16 * 176) & 0xff;
707 p
[18] = (16 * 176) >> 8; // 16x write speed
708 p
[19] = (16 * 176) & 0xff;
709 p
[20] = (16 * 176) >> 8; // 16x write speed current
710 p
[21] = (16 * 176) & 0xff;
718 static int scsi_disk_emulate_mode_sense(SCSIRequest
*req
, uint8_t *outbuf
)
720 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
722 int page
, dbd
, buflen
, page_control
;
724 uint8_t dev_specific_param
;
726 dbd
= req
->cmd
.buf
[1] & 0x8;
727 page
= req
->cmd
.buf
[2] & 0x3f;
728 page_control
= (req
->cmd
.buf
[2] & 0xc0) >> 6;
729 DPRINTF("Mode Sense(%d) (page %d, xfer %zd, page_control %d)\n",
730 (req
->cmd
.buf
[0] == MODE_SENSE
) ? 6 : 10, page
, req
->cmd
.xfer
, page_control
);
731 memset(outbuf
, 0, req
->cmd
.xfer
);
734 if (bdrv_is_read_only(s
->bs
)) {
735 dev_specific_param
= 0x80; /* Readonly. */
737 dev_specific_param
= 0x00;
740 if (req
->cmd
.buf
[0] == MODE_SENSE
) {
741 p
[1] = 0; /* Default media type. */
742 p
[2] = dev_specific_param
;
743 p
[3] = 0; /* Block descriptor length. */
745 } else { /* MODE_SENSE_10 */
746 p
[2] = 0; /* Default media type. */
747 p
[3] = dev_specific_param
;
748 p
[6] = p
[7] = 0; /* Block descriptor length. */
752 bdrv_get_geometry(s
->bs
, &nb_sectors
);
753 if (!dbd
&& nb_sectors
) {
754 if (req
->cmd
.buf
[0] == MODE_SENSE
) {
755 outbuf
[3] = 8; /* Block descriptor length */
756 } else { /* MODE_SENSE_10 */
757 outbuf
[7] = 8; /* Block descriptor length */
759 nb_sectors
/= s
->cluster_size
;
760 if (nb_sectors
> 0xffffff)
762 p
[0] = 0; /* media density code */
763 p
[1] = (nb_sectors
>> 16) & 0xff;
764 p
[2] = (nb_sectors
>> 8) & 0xff;
765 p
[3] = nb_sectors
& 0xff;
766 p
[4] = 0; /* reserved */
767 p
[5] = 0; /* bytes 5-7 are the sector size in bytes */
768 p
[6] = s
->cluster_size
* 2;
773 if (page_control
== 3) { /* Saved Values */
774 return -1; /* ILLEGAL_REQUEST */
782 p
+= mode_sense_page(req
, page
, p
, page_control
);
785 p
+= mode_sense_page(req
, 0x08, p
, page_control
);
786 p
+= mode_sense_page(req
, 0x2a, p
, page_control
);
789 return -1; /* ILLEGAL_REQUEST */
794 * The mode data length field specifies the length in bytes of the
795 * following data that is available to be transferred. The mode data
796 * length does not include itself.
798 if (req
->cmd
.buf
[0] == MODE_SENSE
) {
799 outbuf
[0] = buflen
- 1;
800 } else { /* MODE_SENSE_10 */
801 outbuf
[0] = ((buflen
- 2) >> 8) & 0xff;
802 outbuf
[1] = (buflen
- 2) & 0xff;
804 if (buflen
> req
->cmd
.xfer
)
805 buflen
= req
->cmd
.xfer
;
809 static int scsi_disk_emulate_read_toc(SCSIRequest
*req
, uint8_t *outbuf
)
811 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
812 int start_track
, format
, msf
, toclen
;
815 msf
= req
->cmd
.buf
[1] & 2;
816 format
= req
->cmd
.buf
[2] & 0xf;
817 start_track
= req
->cmd
.buf
[6];
818 bdrv_get_geometry(s
->bs
, &nb_sectors
);
819 DPRINTF("Read TOC (track %d format %d msf %d)\n", start_track
, format
, msf
>> 1);
820 nb_sectors
/= s
->cluster_size
;
823 toclen
= cdrom_read_toc(nb_sectors
, outbuf
, msf
, start_track
);
826 /* multi session : only a single session defined */
828 memset(outbuf
, 0, 12);
834 toclen
= cdrom_read_toc_raw(nb_sectors
, outbuf
, msf
, start_track
);
839 if (toclen
> req
->cmd
.xfer
)
840 toclen
= req
->cmd
.xfer
;
844 static int scsi_disk_emulate_command(SCSIDiskReq
*r
, uint8_t *outbuf
)
846 SCSIRequest
*req
= &r
->req
;
847 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
852 switch (req
->cmd
.buf
[0]) {
853 case TEST_UNIT_READY
:
854 if (!bdrv_is_inserted(s
->bs
))
858 if (req
->cmd
.xfer
< 4)
859 goto illegal_request
;
860 memset(outbuf
, 0, 4);
862 if (s
->sense
.key
== NOT_READY
&& req
->cmd
.xfer
>= 18) {
863 memset(outbuf
, 0, 18);
866 /* asc 0x3a, ascq 0: Medium not present */
872 outbuf
[2] = s
->sense
.key
;
873 scsi_disk_clear_sense(s
);
876 buflen
= scsi_disk_emulate_inquiry(req
, outbuf
);
878 goto illegal_request
;
882 buflen
= scsi_disk_emulate_mode_sense(req
, outbuf
);
884 goto illegal_request
;
887 buflen
= scsi_disk_emulate_read_toc(req
, outbuf
);
889 goto illegal_request
;
892 if (req
->cmd
.buf
[1] & 1)
893 goto illegal_request
;
896 if (req
->cmd
.buf
[1] & 3)
897 goto illegal_request
;
900 if (req
->cmd
.buf
[1] & 1)
901 goto illegal_request
;
904 if (req
->cmd
.buf
[1] & 3)
905 goto illegal_request
;
908 if (bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
&& (req
->cmd
.buf
[4] & 2)) {
909 /* load/eject medium */
910 bdrv_eject(s
->bs
, !(req
->cmd
.buf
[4] & 1));
913 case ALLOW_MEDIUM_REMOVAL
:
914 bdrv_set_locked(s
->bs
, req
->cmd
.buf
[4] & 1);
917 /* The normal LEN field for this command is zero. */
918 memset(outbuf
, 0, 8);
919 bdrv_get_geometry(s
->bs
, &nb_sectors
);
922 nb_sectors
/= s
->cluster_size
;
923 /* Returned value is the address of the last sector. */
925 /* Remember the new size for read/write sanity checking. */
926 s
->max_lba
= nb_sectors
;
927 /* Clip to 2TB, instead of returning capacity modulo 2TB. */
928 if (nb_sectors
> UINT32_MAX
)
929 nb_sectors
= UINT32_MAX
;
930 outbuf
[0] = (nb_sectors
>> 24) & 0xff;
931 outbuf
[1] = (nb_sectors
>> 16) & 0xff;
932 outbuf
[2] = (nb_sectors
>> 8) & 0xff;
933 outbuf
[3] = nb_sectors
& 0xff;
936 outbuf
[6] = s
->cluster_size
* 2;
940 case SYNCHRONIZE_CACHE
:
941 ret
= bdrv_flush(s
->bs
);
943 if (scsi_handle_rw_error(r
, -ret
, SCSI_REQ_STATUS_RETRY_FLUSH
)) {
948 case GET_CONFIGURATION
:
949 memset(outbuf
, 0, 8);
950 /* ??? This should probably return much more information. For now
951 just return the basic header indicating the CD-ROM profile. */
952 outbuf
[7] = 8; // CD-ROM
955 case SERVICE_ACTION_IN
:
956 /* Service Action In subcommands. */
957 if ((req
->cmd
.buf
[1] & 31) == 0x10) {
958 DPRINTF("SAI READ CAPACITY(16)\n");
959 memset(outbuf
, 0, req
->cmd
.xfer
);
960 bdrv_get_geometry(s
->bs
, &nb_sectors
);
963 nb_sectors
/= s
->cluster_size
;
964 /* Returned value is the address of the last sector. */
966 /* Remember the new size for read/write sanity checking. */
967 s
->max_lba
= nb_sectors
;
968 outbuf
[0] = (nb_sectors
>> 56) & 0xff;
969 outbuf
[1] = (nb_sectors
>> 48) & 0xff;
970 outbuf
[2] = (nb_sectors
>> 40) & 0xff;
971 outbuf
[3] = (nb_sectors
>> 32) & 0xff;
972 outbuf
[4] = (nb_sectors
>> 24) & 0xff;
973 outbuf
[5] = (nb_sectors
>> 16) & 0xff;
974 outbuf
[6] = (nb_sectors
>> 8) & 0xff;
975 outbuf
[7] = nb_sectors
& 0xff;
978 outbuf
[10] = s
->cluster_size
* 2;
981 outbuf
[13] = get_physical_block_exp(&s
->qdev
.conf
);
983 /* set TPE bit if the format supports discard */
984 if (s
->qdev
.conf
.discard_granularity
) {
988 /* Protection, exponent and lowest lba field left blank. */
989 buflen
= req
->cmd
.xfer
;
992 DPRINTF("Unsupported Service Action In\n");
993 goto illegal_request
;
995 if (req
->cmd
.xfer
< 16)
996 goto illegal_request
;
997 memset(outbuf
, 0, 16);
1004 DPRINTF("Rezero Unit\n");
1005 if (!bdrv_is_inserted(s
->bs
)) {
1010 goto illegal_request
;
1012 scsi_req_set_status(r
, GOOD
, NO_SENSE
);
1016 scsi_command_complete(r
, CHECK_CONDITION
, NOT_READY
);
1020 scsi_command_complete(r
, CHECK_CONDITION
, ILLEGAL_REQUEST
);
1024 /* Execute a scsi command. Returns the length of the data expected by the
1025 command. This will be Positive for data transfers from the device
1026 (eg. disk reads), negative for transfers to the device (eg. disk writes),
1027 and zero if the command does not transfer any data. */
1029 static int32_t scsi_send_command(SCSIDevice
*d
, uint32_t tag
,
1030 uint8_t *buf
, int lun
)
1032 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
1041 r
= scsi_find_request(s
, tag
);
1043 BADF("Tag 0x%x already in use\n", tag
);
1044 scsi_cancel_io(d
, tag
);
1046 /* ??? Tags are not unique for different luns. We only implement a
1047 single lun, so this should not matter. */
1048 r
= scsi_new_request(s
, tag
, lun
);
1049 outbuf
= (uint8_t *)r
->iov
.iov_base
;
1051 DPRINTF("Command: lun=%d tag=0x%x data=0x%02x", lun
, tag
, buf
[0]);
1053 if (scsi_req_parse(&r
->req
, buf
) != 0) {
1054 BADF("Unsupported command length, command %x\n", command
);
1060 for (i
= 1; i
< r
->req
.cmd
.len
; i
++) {
1061 printf(" 0x%02x", buf
[i
]);
1067 if (lun
|| buf
[1] >> 5) {
1068 /* Only LUN 0 supported. */
1069 DPRINTF("Unimplemented LUN %d\n", lun
? lun
: buf
[1] >> 5);
1070 if (command
!= REQUEST_SENSE
&& command
!= INQUIRY
)
1074 case TEST_UNIT_READY
:
1084 case ALLOW_MEDIUM_REMOVAL
:
1086 case SYNCHRONIZE_CACHE
:
1088 case GET_CONFIGURATION
:
1089 case SERVICE_ACTION_IN
:
1093 rc
= scsi_disk_emulate_command(r
, outbuf
);
1098 r
->iov
.iov_len
= rc
;
1104 len
= r
->req
.cmd
.xfer
/ d
->blocksize
;
1105 DPRINTF("Read (sector %" PRId64
", count %d)\n", r
->req
.cmd
.lba
, len
);
1106 if (r
->req
.cmd
.lba
> s
->max_lba
)
1108 r
->sector
= r
->req
.cmd
.lba
* s
->cluster_size
;
1109 r
->sector_count
= len
* s
->cluster_size
;
1116 case WRITE_VERIFY_12
:
1117 case WRITE_VERIFY_16
:
1118 len
= r
->req
.cmd
.xfer
/ d
->blocksize
;
1119 DPRINTF("Write %s(sector %" PRId64
", count %d)\n",
1120 (command
& 0xe) == 0xe ? "And Verify " : "",
1121 r
->req
.cmd
.lba
, len
);
1122 if (r
->req
.cmd
.lba
> s
->max_lba
)
1124 r
->sector
= r
->req
.cmd
.lba
* s
->cluster_size
;
1125 r
->sector_count
= len
* s
->cluster_size
;
1129 DPRINTF("Mode Select(6) (len %lu)\n", (long)r
->req
.cmd
.xfer
);
1130 /* We don't support mode parameter changes.
1131 Allow the mode parameter header + block descriptors only. */
1132 if (r
->req
.cmd
.xfer
> 12) {
1136 case MODE_SELECT_10
:
1137 DPRINTF("Mode Select(10) (len %lu)\n", (long)r
->req
.cmd
.xfer
);
1138 /* We don't support mode parameter changes.
1139 Allow the mode parameter header + block descriptors only. */
1140 if (r
->req
.cmd
.xfer
> 16) {
1146 DPRINTF("Seek(%d) (sector %" PRId64
")\n", command
== SEEK_6
? 6 : 10,
1148 if (r
->req
.cmd
.lba
> s
->max_lba
) {
1153 len
= r
->req
.cmd
.xfer
/ d
->blocksize
;
1155 DPRINTF("WRITE SAME(16) (sector %" PRId64
", count %d)\n",
1156 r
->req
.cmd
.lba
, len
);
1158 if (r
->req
.cmd
.lba
> s
->max_lba
) {
1163 * We only support WRITE SAME with the unmap bit set for now.
1165 if (!(buf
[1] & 0x8)) {
1169 rc
= bdrv_discard(s
->bs
, r
->req
.cmd
.lba
* s
->cluster_size
,
1170 len
* s
->cluster_size
);
1172 /* XXX: better error code ?*/
1178 DPRINTF("Unknown SCSI command (%2.2x)\n", buf
[0]);
1180 scsi_command_complete(r
, CHECK_CONDITION
, ILLEGAL_REQUEST
);
1183 scsi_command_complete(r
, CHECK_CONDITION
, HARDWARE_ERROR
);
1186 if (r
->sector_count
== 0 && r
->iov
.iov_len
== 0) {
1187 scsi_command_complete(r
, GOOD
, NO_SENSE
);
1189 len
= r
->sector_count
* 512 + r
->iov
.iov_len
;
1193 if (!r
->sector_count
)
1194 r
->sector_count
= -1;
1199 static void scsi_disk_purge_requests(SCSIDiskState
*s
)
1203 while (!QTAILQ_EMPTY(&s
->qdev
.requests
)) {
1204 r
= DO_UPCAST(SCSIDiskReq
, req
, QTAILQ_FIRST(&s
->qdev
.requests
));
1206 bdrv_aio_cancel(r
->req
.aiocb
);
1208 scsi_remove_request(r
);
1212 static void scsi_disk_reset(DeviceState
*dev
)
1214 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
.qdev
, dev
);
1215 uint64_t nb_sectors
;
1217 scsi_disk_purge_requests(s
);
1219 bdrv_get_geometry(s
->bs
, &nb_sectors
);
1220 nb_sectors
/= s
->cluster_size
;
1224 s
->max_lba
= nb_sectors
;
1227 static void scsi_destroy(SCSIDevice
*dev
)
1229 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1231 scsi_disk_purge_requests(s
);
1232 blockdev_mark_auto_del(s
->qdev
.conf
.bs
);
1235 static int scsi_disk_initfn(SCSIDevice
*dev
)
1237 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1241 if (!s
->qdev
.conf
.bs
) {
1242 error_report("scsi-disk: drive property not set");
1245 s
->bs
= s
->qdev
.conf
.bs
;
1246 is_cd
= bdrv_get_type_hint(s
->bs
) == BDRV_TYPE_CDROM
;
1248 if (!is_cd
&& !bdrv_is_inserted(s
->bs
)) {
1249 error_report("Device needs media, but drive is empty");
1254 /* try to fall back to value set with legacy -drive serial=... */
1255 dinfo
= drive_get_by_blockdev(s
->bs
);
1256 s
->serial
= qemu_strdup(*dinfo
->serial
? dinfo
->serial
: "0");
1260 s
->version
= qemu_strdup(QEMU_VERSION
);
1263 if (bdrv_is_sg(s
->bs
)) {
1264 error_report("scsi-disk: unwanted /dev/sg*");
1269 s
->qdev
.blocksize
= 2048;
1271 s
->qdev
.blocksize
= s
->qdev
.conf
.logical_block_size
;
1273 s
->cluster_size
= s
->qdev
.blocksize
/ 512;
1274 s
->bs
->buffer_alignment
= s
->qdev
.blocksize
;
1276 s
->qdev
.type
= TYPE_DISK
;
1277 qemu_add_vm_change_state_handler(scsi_dma_restart_cb
, s
);
1278 bdrv_set_removable(s
->bs
, is_cd
);
1279 add_boot_device_path(s
->qdev
.conf
.bootindex
, &dev
->qdev
, ",0");
1283 static SCSIDeviceInfo scsi_disk_info
= {
1284 .qdev
.name
= "scsi-disk",
1285 .qdev
.fw_name
= "disk",
1286 .qdev
.desc
= "virtual scsi disk or cdrom",
1287 .qdev
.size
= sizeof(SCSIDiskState
),
1288 .qdev
.reset
= scsi_disk_reset
,
1289 .init
= scsi_disk_initfn
,
1290 .destroy
= scsi_destroy
,
1291 .send_command
= scsi_send_command
,
1292 .read_data
= scsi_read_data
,
1293 .write_data
= scsi_write_data
,
1294 .cancel_io
= scsi_cancel_io
,
1295 .get_buf
= scsi_get_buf
,
1296 .qdev
.props
= (Property
[]) {
1297 DEFINE_BLOCK_PROPERTIES(SCSIDiskState
, qdev
.conf
),
1298 DEFINE_PROP_STRING("ver", SCSIDiskState
, version
),
1299 DEFINE_PROP_STRING("serial", SCSIDiskState
, serial
),
1300 DEFINE_PROP_BIT("removable", SCSIDiskState
, removable
, 0, false),
1301 DEFINE_PROP_END_OF_LIST(),
1305 static void scsi_disk_register_devices(void)
1307 scsi_qdev_register(&scsi_disk_info
);
1309 device_init(scsi_disk_register_devices
)