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 licensed 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 #include "qemu-common.h"
32 #include "qemu-error.h"
34 #include "scsi-defs.h"
37 #include "block_int.h"
44 #define SCSI_DMA_BUF_SIZE 131072
45 #define SCSI_MAX_INQUIRY_LEN 256
47 typedef struct SCSIDiskState SCSIDiskState
;
49 typedef struct SCSIDiskReq
{
51 /* Both sector and sector_count are in terms of qemu 512 byte blocks. */
53 uint32_t sector_count
;
61 #define SCSI_DISK_F_REMOVABLE 0
62 #define SCSI_DISK_F_DPOFUA 1
78 static int scsi_handle_rw_error(SCSIDiskReq
*r
, int error
);
80 static void scsi_free_request(SCSIRequest
*req
)
82 SCSIDiskReq
*r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
84 if (r
->iov
.iov_base
) {
85 qemu_vfree(r
->iov
.iov_base
);
89 /* Helper function for command completion with sense. */
90 static void scsi_check_condition(SCSIDiskReq
*r
, SCSISense sense
)
92 DPRINTF("Command complete tag=0x%x sense=%d/%d/%d\n",
93 r
->req
.tag
, sense
.key
, sense
.asc
, sense
.ascq
);
94 scsi_req_build_sense(&r
->req
, sense
);
95 scsi_req_complete(&r
->req
, CHECK_CONDITION
);
98 /* Cancel a pending data transfer. */
99 static void scsi_cancel_io(SCSIRequest
*req
)
101 SCSIDiskReq
*r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
103 DPRINTF("Cancel tag=0x%x\n", req
->tag
);
105 bdrv_aio_cancel(r
->req
.aiocb
);
107 /* This reference was left in by scsi_*_data. We take ownership of
108 * it the moment scsi_req_cancel is called, independent of whether
109 * bdrv_aio_cancel completes the request or not. */
110 scsi_req_unref(&r
->req
);
115 static uint32_t scsi_init_iovec(SCSIDiskReq
*r
, size_t size
)
117 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
119 if (!r
->iov
.iov_base
) {
121 r
->iov
.iov_base
= qemu_blockalign(s
->qdev
.conf
.bs
, r
->buflen
);
123 r
->iov
.iov_len
= MIN(r
->sector_count
* 512, r
->buflen
);
124 qemu_iovec_init_external(&r
->qiov
, &r
->iov
, 1);
125 return r
->qiov
.size
/ 512;
128 static void scsi_disk_save_request(QEMUFile
*f
, SCSIRequest
*req
)
130 SCSIDiskReq
*r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
132 qemu_put_be64s(f
, &r
->sector
);
133 qemu_put_be32s(f
, &r
->sector_count
);
134 qemu_put_be32s(f
, &r
->buflen
);
136 if (r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
137 qemu_put_buffer(f
, r
->iov
.iov_base
, r
->iov
.iov_len
);
138 } else if (!req
->retry
) {
139 uint32_t len
= r
->iov
.iov_len
;
140 qemu_put_be32s(f
, &len
);
141 qemu_put_buffer(f
, r
->iov
.iov_base
, r
->iov
.iov_len
);
146 static void scsi_disk_load_request(QEMUFile
*f
, SCSIRequest
*req
)
148 SCSIDiskReq
*r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
150 qemu_get_be64s(f
, &r
->sector
);
151 qemu_get_be32s(f
, &r
->sector_count
);
152 qemu_get_be32s(f
, &r
->buflen
);
154 scsi_init_iovec(r
, r
->buflen
);
155 if (r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
156 qemu_get_buffer(f
, r
->iov
.iov_base
, r
->iov
.iov_len
);
157 } else if (!r
->req
.retry
) {
159 qemu_get_be32s(f
, &len
);
160 r
->iov
.iov_len
= len
;
161 assert(r
->iov
.iov_len
<= r
->buflen
);
162 qemu_get_buffer(f
, r
->iov
.iov_base
, r
->iov
.iov_len
);
166 qemu_iovec_init_external(&r
->qiov
, &r
->iov
, 1);
169 static void scsi_flush_complete(void * opaque
, int ret
)
171 SCSIDiskReq
*r
= (SCSIDiskReq
*)opaque
;
172 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
174 bdrv_acct_done(s
->qdev
.conf
.bs
, &r
->acct
);
177 if (scsi_handle_rw_error(r
, -ret
)) {
182 scsi_req_complete(&r
->req
, GOOD
);
185 if (!r
->req
.io_canceled
) {
186 scsi_req_unref(&r
->req
);
190 static bool scsi_is_cmd_fua(SCSICommand
*cmd
)
192 switch (cmd
->buf
[0]) {
199 return (cmd
->buf
[1] & 8) != 0;
204 case WRITE_VERIFY_10
:
205 case WRITE_VERIFY_12
:
206 case WRITE_VERIFY_16
:
216 static void scsi_write_do_fua(SCSIDiskReq
*r
)
218 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
220 if (scsi_is_cmd_fua(&r
->req
.cmd
)) {
221 bdrv_acct_start(s
->qdev
.conf
.bs
, &r
->acct
, 0, BDRV_ACCT_FLUSH
);
222 r
->req
.aiocb
= bdrv_aio_flush(s
->qdev
.conf
.bs
, scsi_flush_complete
, r
);
226 scsi_req_complete(&r
->req
, GOOD
);
227 if (!r
->req
.io_canceled
) {
228 scsi_req_unref(&r
->req
);
232 static void scsi_dma_complete(void *opaque
, int ret
)
234 SCSIDiskReq
*r
= (SCSIDiskReq
*)opaque
;
235 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
237 if (r
->req
.aiocb
!= NULL
) {
239 bdrv_acct_done(s
->qdev
.conf
.bs
, &r
->acct
);
243 if (scsi_handle_rw_error(r
, -ret
)) {
248 r
->sector
+= r
->sector_count
;
250 if (r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
251 scsi_write_do_fua(r
);
254 scsi_req_complete(&r
->req
, GOOD
);
258 if (!r
->req
.io_canceled
) {
259 scsi_req_unref(&r
->req
);
263 static void scsi_read_complete(void * opaque
, int ret
)
265 SCSIDiskReq
*r
= (SCSIDiskReq
*)opaque
;
266 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
269 if (r
->req
.aiocb
!= NULL
) {
271 bdrv_acct_done(s
->qdev
.conf
.bs
, &r
->acct
);
275 if (scsi_handle_rw_error(r
, -ret
)) {
280 DPRINTF("Data ready tag=0x%x len=%zd\n", r
->req
.tag
, r
->qiov
.size
);
282 n
= r
->qiov
.size
/ 512;
284 r
->sector_count
-= n
;
285 scsi_req_data(&r
->req
, r
->qiov
.size
);
288 if (!r
->req
.io_canceled
) {
289 scsi_req_unref(&r
->req
);
293 /* Actually issue a read to the block device. */
294 static void scsi_do_read(void *opaque
, int ret
)
296 SCSIDiskReq
*r
= opaque
;
297 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
300 if (r
->req
.aiocb
!= NULL
) {
302 bdrv_acct_done(s
->qdev
.conf
.bs
, &r
->acct
);
306 if (scsi_handle_rw_error(r
, -ret
)) {
311 if (r
->req
.io_canceled
) {
315 /* The request is used as the AIO opaque value, so add a ref. */
316 scsi_req_ref(&r
->req
);
319 dma_acct_start(s
->qdev
.conf
.bs
, &r
->acct
, r
->req
.sg
, BDRV_ACCT_READ
);
320 r
->req
.resid
-= r
->req
.sg
->size
;
321 r
->req
.aiocb
= dma_bdrv_read(s
->qdev
.conf
.bs
, r
->req
.sg
, r
->sector
,
322 scsi_dma_complete
, r
);
324 n
= scsi_init_iovec(r
, SCSI_DMA_BUF_SIZE
);
325 bdrv_acct_start(s
->qdev
.conf
.bs
, &r
->acct
, n
* BDRV_SECTOR_SIZE
, BDRV_ACCT_READ
);
326 r
->req
.aiocb
= bdrv_aio_readv(s
->qdev
.conf
.bs
, r
->sector
, &r
->qiov
, n
,
327 scsi_read_complete
, r
);
331 if (!r
->req
.io_canceled
) {
332 scsi_req_unref(&r
->req
);
336 /* Read more data from scsi device into buffer. */
337 static void scsi_read_data(SCSIRequest
*req
)
339 SCSIDiskReq
*r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
340 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
343 if (r
->sector_count
== (uint32_t)-1) {
344 DPRINTF("Read buf_len=%zd\n", r
->iov
.iov_len
);
347 scsi_req_data(&r
->req
, r
->iov
.iov_len
);
350 DPRINTF("Read sector_count=%d\n", r
->sector_count
);
351 if (r
->sector_count
== 0) {
352 /* This also clears the sense buffer for REQUEST SENSE. */
353 scsi_req_complete(&r
->req
, GOOD
);
357 /* No data transfer may already be in progress */
358 assert(r
->req
.aiocb
== NULL
);
360 /* The request is used as the AIO opaque value, so add a ref. */
361 scsi_req_ref(&r
->req
);
362 if (r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
363 DPRINTF("Data transfer direction invalid\n");
364 scsi_read_complete(r
, -EINVAL
);
369 scsi_read_complete(r
, -ENOMEDIUM
);
375 if (first
&& scsi_is_cmd_fua(&r
->req
.cmd
)) {
376 bdrv_acct_start(s
->qdev
.conf
.bs
, &r
->acct
, 0, BDRV_ACCT_FLUSH
);
377 r
->req
.aiocb
= bdrv_aio_flush(s
->qdev
.conf
.bs
, scsi_do_read
, r
);
384 * scsi_handle_rw_error has two return values. 0 means that the error
385 * must be ignored, 1 means that the error has been processed and the
386 * caller should not do anything else for this request. Note that
387 * scsi_handle_rw_error always manages its reference counts, independent
388 * of the return value.
390 static int scsi_handle_rw_error(SCSIDiskReq
*r
, int error
)
392 int is_read
= (r
->req
.cmd
.xfer
== SCSI_XFER_FROM_DEV
);
393 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
394 BlockErrorAction action
= bdrv_get_on_error(s
->qdev
.conf
.bs
, is_read
);
396 if (action
== BLOCK_ERR_IGNORE
) {
397 bdrv_emit_qmp_error_event(s
->qdev
.conf
.bs
, BDRV_ACTION_IGNORE
, is_read
);
401 if ((error
== ENOSPC
&& action
== BLOCK_ERR_STOP_ENOSPC
)
402 || action
== BLOCK_ERR_STOP_ANY
) {
404 bdrv_emit_qmp_error_event(s
->qdev
.conf
.bs
, BDRV_ACTION_STOP
, is_read
);
405 vm_stop(RUN_STATE_IO_ERROR
);
406 bdrv_iostatus_set_err(s
->qdev
.conf
.bs
, error
);
407 scsi_req_retry(&r
->req
);
411 scsi_check_condition(r
, SENSE_CODE(NO_MEDIUM
));
414 scsi_check_condition(r
, SENSE_CODE(TARGET_FAILURE
));
417 scsi_check_condition(r
, SENSE_CODE(INVALID_FIELD
));
420 scsi_check_condition(r
, SENSE_CODE(IO_ERROR
));
423 bdrv_emit_qmp_error_event(s
->qdev
.conf
.bs
, BDRV_ACTION_REPORT
, is_read
);
428 static void scsi_write_complete(void * opaque
, int ret
)
430 SCSIDiskReq
*r
= (SCSIDiskReq
*)opaque
;
431 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
434 if (r
->req
.aiocb
!= NULL
) {
436 bdrv_acct_done(s
->qdev
.conf
.bs
, &r
->acct
);
440 if (scsi_handle_rw_error(r
, -ret
)) {
445 n
= r
->qiov
.size
/ 512;
447 r
->sector_count
-= n
;
448 if (r
->sector_count
== 0) {
449 scsi_write_do_fua(r
);
452 scsi_init_iovec(r
, SCSI_DMA_BUF_SIZE
);
453 DPRINTF("Write complete tag=0x%x more=%d\n", r
->req
.tag
, r
->qiov
.size
);
454 scsi_req_data(&r
->req
, r
->qiov
.size
);
458 if (!r
->req
.io_canceled
) {
459 scsi_req_unref(&r
->req
);
463 static void scsi_write_data(SCSIRequest
*req
)
465 SCSIDiskReq
*r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
466 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
469 /* No data transfer may already be in progress */
470 assert(r
->req
.aiocb
== NULL
);
472 /* The request is used as the AIO opaque value, so add a ref. */
473 scsi_req_ref(&r
->req
);
474 if (r
->req
.cmd
.mode
!= SCSI_XFER_TO_DEV
) {
475 DPRINTF("Data transfer direction invalid\n");
476 scsi_write_complete(r
, -EINVAL
);
480 if (!r
->req
.sg
&& !r
->qiov
.size
) {
481 /* Called for the first time. Ask the driver to send us more data. */
483 scsi_write_complete(r
, 0);
487 scsi_write_complete(r
, -ENOMEDIUM
);
491 if (r
->req
.cmd
.buf
[0] == VERIFY_10
|| r
->req
.cmd
.buf
[0] == VERIFY_12
||
492 r
->req
.cmd
.buf
[0] == VERIFY_16
) {
494 scsi_dma_complete(r
, 0);
496 scsi_write_complete(r
, 0);
502 dma_acct_start(s
->qdev
.conf
.bs
, &r
->acct
, r
->req
.sg
, BDRV_ACCT_WRITE
);
503 r
->req
.resid
-= r
->req
.sg
->size
;
504 r
->req
.aiocb
= dma_bdrv_write(s
->qdev
.conf
.bs
, r
->req
.sg
, r
->sector
,
505 scsi_dma_complete
, r
);
507 n
= r
->qiov
.size
/ 512;
508 bdrv_acct_start(s
->qdev
.conf
.bs
, &r
->acct
, n
* BDRV_SECTOR_SIZE
, BDRV_ACCT_WRITE
);
509 r
->req
.aiocb
= bdrv_aio_writev(s
->qdev
.conf
.bs
, r
->sector
, &r
->qiov
, n
,
510 scsi_write_complete
, r
);
514 /* Return a pointer to the data buffer. */
515 static uint8_t *scsi_get_buf(SCSIRequest
*req
)
517 SCSIDiskReq
*r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
519 return (uint8_t *)r
->iov
.iov_base
;
522 static int scsi_disk_emulate_inquiry(SCSIRequest
*req
, uint8_t *outbuf
)
524 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
527 if (req
->cmd
.buf
[1] & 0x1) {
528 /* Vital product data */
529 uint8_t page_code
= req
->cmd
.buf
[2];
531 outbuf
[buflen
++] = s
->qdev
.type
& 0x1f;
532 outbuf
[buflen
++] = page_code
; // this page
533 outbuf
[buflen
++] = 0x00;
536 case 0x00: /* Supported page codes, mandatory */
539 DPRINTF("Inquiry EVPD[Supported pages] "
540 "buffer size %zd\n", req
->cmd
.xfer
);
542 outbuf
[buflen
++] = 0x00; // list of supported pages (this page)
544 outbuf
[buflen
++] = 0x80; // unit serial number
546 outbuf
[buflen
++] = 0x83; // device identification
547 if (s
->qdev
.type
== TYPE_DISK
) {
548 outbuf
[buflen
++] = 0xb0; // block limits
549 outbuf
[buflen
++] = 0xb2; // thin provisioning
551 outbuf
[pages
] = buflen
- pages
- 1; // number of pages
554 case 0x80: /* Device serial number, optional */
559 DPRINTF("Inquiry (EVPD[Serial number] not supported\n");
563 l
= strlen(s
->serial
);
568 DPRINTF("Inquiry EVPD[Serial number] "
569 "buffer size %zd\n", req
->cmd
.xfer
);
570 outbuf
[buflen
++] = l
;
571 memcpy(outbuf
+buflen
, s
->serial
, l
);
576 case 0x83: /* Device identification page, mandatory */
578 const char *str
= s
->serial
?: bdrv_get_device_name(s
->qdev
.conf
.bs
);
579 int max_len
= s
->serial
? 20 : 255 - 8;
580 int id_len
= strlen(str
);
582 if (id_len
> max_len
) {
585 DPRINTF("Inquiry EVPD[Device identification] "
586 "buffer size %zd\n", req
->cmd
.xfer
);
588 outbuf
[buflen
++] = 4 + id_len
;
589 outbuf
[buflen
++] = 0x2; // ASCII
590 outbuf
[buflen
++] = 0; // not officially assigned
591 outbuf
[buflen
++] = 0; // reserved
592 outbuf
[buflen
++] = id_len
; // length of data following
594 memcpy(outbuf
+buflen
, str
, id_len
);
598 case 0xb0: /* block limits */
600 unsigned int unmap_sectors
=
601 s
->qdev
.conf
.discard_granularity
/ s
->qdev
.blocksize
;
602 unsigned int min_io_size
=
603 s
->qdev
.conf
.min_io_size
/ s
->qdev
.blocksize
;
604 unsigned int opt_io_size
=
605 s
->qdev
.conf
.opt_io_size
/ s
->qdev
.blocksize
;
607 if (s
->qdev
.type
== TYPE_ROM
) {
608 DPRINTF("Inquiry (EVPD[%02X] not supported for CDROM\n",
612 /* required VPD size with unmap support */
613 outbuf
[3] = buflen
= 0x3c;
615 memset(outbuf
+ 4, 0, buflen
- 4);
617 /* optimal transfer length granularity */
618 outbuf
[6] = (min_io_size
>> 8) & 0xff;
619 outbuf
[7] = min_io_size
& 0xff;
621 /* optimal transfer length */
622 outbuf
[12] = (opt_io_size
>> 24) & 0xff;
623 outbuf
[13] = (opt_io_size
>> 16) & 0xff;
624 outbuf
[14] = (opt_io_size
>> 8) & 0xff;
625 outbuf
[15] = opt_io_size
& 0xff;
627 /* optimal unmap granularity */
628 outbuf
[28] = (unmap_sectors
>> 24) & 0xff;
629 outbuf
[29] = (unmap_sectors
>> 16) & 0xff;
630 outbuf
[30] = (unmap_sectors
>> 8) & 0xff;
631 outbuf
[31] = unmap_sectors
& 0xff;
634 case 0xb2: /* thin provisioning */
636 outbuf
[3] = buflen
= 8;
638 outbuf
[5] = 0x60; /* write_same 10/16 supported */
639 outbuf
[6] = s
->qdev
.conf
.discard_granularity
? 2 : 1;
650 /* Standard INQUIRY data */
651 if (req
->cmd
.buf
[2] != 0) {
656 buflen
= req
->cmd
.xfer
;
657 if (buflen
> SCSI_MAX_INQUIRY_LEN
) {
658 buflen
= SCSI_MAX_INQUIRY_LEN
;
660 memset(outbuf
, 0, buflen
);
662 outbuf
[0] = s
->qdev
.type
& 0x1f;
663 outbuf
[1] = (s
->features
& (1 << SCSI_DISK_F_REMOVABLE
)) ? 0x80 : 0;
664 if (s
->qdev
.type
== TYPE_ROM
) {
665 memcpy(&outbuf
[16], "QEMU CD-ROM ", 16);
667 memcpy(&outbuf
[16], "QEMU HARDDISK ", 16);
669 memcpy(&outbuf
[8], "QEMU ", 8);
670 memset(&outbuf
[32], 0, 4);
671 memcpy(&outbuf
[32], s
->version
, MIN(4, strlen(s
->version
)));
673 * We claim conformance to SPC-3, which is required for guests
674 * to ask for modern features like READ CAPACITY(16) or the
675 * block characteristics VPD page by default. Not all of SPC-3
676 * is actually implemented, but we're good enough.
679 outbuf
[3] = 2; /* Format 2 */
682 outbuf
[4] = buflen
- 5; /* Additional Length = (Len - 1) - 4 */
684 /* If the allocation length of CDB is too small,
685 the additional length is not adjusted */
689 /* Sync data transfer and TCQ. */
690 outbuf
[7] = 0x10 | (req
->bus
->info
->tcq
? 0x02 : 0);
694 static inline bool media_is_dvd(SCSIDiskState
*s
)
697 if (s
->qdev
.type
!= TYPE_ROM
) {
700 if (!bdrv_is_inserted(s
->qdev
.conf
.bs
)) {
703 bdrv_get_geometry(s
->qdev
.conf
.bs
, &nb_sectors
);
704 return nb_sectors
> CD_MAX_SECTORS
;
707 static inline bool media_is_cd(SCSIDiskState
*s
)
710 if (s
->qdev
.type
!= TYPE_ROM
) {
713 if (!bdrv_is_inserted(s
->qdev
.conf
.bs
)) {
716 bdrv_get_geometry(s
->qdev
.conf
.bs
, &nb_sectors
);
717 return nb_sectors
<= CD_MAX_SECTORS
;
720 static int scsi_read_dvd_structure(SCSIDiskState
*s
, SCSIDiskReq
*r
,
723 static const int rds_caps_size
[5] = {
730 uint8_t media
= r
->req
.cmd
.buf
[1];
731 uint8_t layer
= r
->req
.cmd
.buf
[6];
732 uint8_t format
= r
->req
.cmd
.buf
[7];
735 if (s
->qdev
.type
!= TYPE_ROM
) {
739 scsi_check_condition(r
, SENSE_CODE(INVALID_FIELD
));
743 if (format
!= 0xff) {
744 if (s
->tray_open
|| !bdrv_is_inserted(s
->qdev
.conf
.bs
)) {
745 scsi_check_condition(r
, SENSE_CODE(NO_MEDIUM
));
748 if (media_is_cd(s
)) {
749 scsi_check_condition(r
, SENSE_CODE(INCOMPATIBLE_FORMAT
));
752 if (format
>= ARRAY_SIZE(rds_caps_size
)) {
755 size
= rds_caps_size
[format
];
756 memset(outbuf
, 0, size
);
761 /* Physical format information */
766 bdrv_get_geometry(s
->qdev
.conf
.bs
, &nb_sectors
);
768 outbuf
[4] = 1; /* DVD-ROM, part version 1 */
769 outbuf
[5] = 0xf; /* 120mm disc, minimum rate unspecified */
770 outbuf
[6] = 1; /* one layer, read-only (per MMC-2 spec) */
771 outbuf
[7] = 0; /* default densities */
773 stl_be_p(&outbuf
[12], (nb_sectors
>> 2) - 1); /* end sector */
774 stl_be_p(&outbuf
[16], (nb_sectors
>> 2) - 1); /* l0 end sector */
778 case 0x01: /* DVD copyright information, all zeros */
781 case 0x03: /* BCA information - invalid field for no BCA info */
784 case 0x04: /* DVD disc manufacturing information, all zeros */
787 case 0xff: { /* List capabilities */
790 for (i
= 0; i
< ARRAY_SIZE(rds_caps_size
); i
++) {
791 if (!rds_caps_size
[i
]) {
795 outbuf
[size
+ 1] = 0x40; /* Not writable, readable */
796 stw_be_p(&outbuf
[size
+ 2], rds_caps_size
[i
]);
806 /* Size of buffer, not including 2 byte size field */
807 stw_be_p(outbuf
, size
- 2);
814 static int scsi_event_status_media(SCSIDiskState
*s
, uint8_t *outbuf
)
816 uint8_t event_code
, media_status
;
820 media_status
= MS_TRAY_OPEN
;
821 } else if (bdrv_is_inserted(s
->qdev
.conf
.bs
)) {
822 media_status
= MS_MEDIA_PRESENT
;
825 /* Event notification descriptor */
826 event_code
= MEC_NO_CHANGE
;
827 if (media_status
!= MS_TRAY_OPEN
) {
828 if (s
->media_event
) {
829 event_code
= MEC_NEW_MEDIA
;
830 s
->media_event
= false;
831 } else if (s
->eject_request
) {
832 event_code
= MEC_EJECT_REQUESTED
;
833 s
->eject_request
= false;
837 outbuf
[0] = event_code
;
838 outbuf
[1] = media_status
;
840 /* These fields are reserved, just clear them. */
846 static int scsi_get_event_status_notification(SCSIDiskState
*s
, SCSIDiskReq
*r
,
850 uint8_t *buf
= r
->req
.cmd
.buf
;
851 uint8_t notification_class_request
= buf
[4];
852 if (s
->qdev
.type
!= TYPE_ROM
) {
855 if ((buf
[1] & 1) == 0) {
861 outbuf
[0] = outbuf
[1] = 0;
862 outbuf
[3] = 1 << GESN_MEDIA
; /* supported events */
863 if (notification_class_request
& (1 << GESN_MEDIA
)) {
864 outbuf
[2] = GESN_MEDIA
;
865 size
+= scsi_event_status_media(s
, &outbuf
[size
]);
869 stw_be_p(outbuf
, size
- 4);
873 static int scsi_get_configuration(SCSIDiskState
*s
, uint8_t *outbuf
)
877 if (s
->qdev
.type
!= TYPE_ROM
) {
880 current
= media_is_dvd(s
) ? MMC_PROFILE_DVD_ROM
: MMC_PROFILE_CD_ROM
;
881 memset(outbuf
, 0, 40);
882 stl_be_p(&outbuf
[0], 36); /* Bytes after the data length field */
883 stw_be_p(&outbuf
[6], current
);
884 /* outbuf[8] - outbuf[19]: Feature 0 - Profile list */
885 outbuf
[10] = 0x03; /* persistent, current */
886 outbuf
[11] = 8; /* two profiles */
887 stw_be_p(&outbuf
[12], MMC_PROFILE_DVD_ROM
);
888 outbuf
[14] = (current
== MMC_PROFILE_DVD_ROM
);
889 stw_be_p(&outbuf
[16], MMC_PROFILE_CD_ROM
);
890 outbuf
[18] = (current
== MMC_PROFILE_CD_ROM
);
891 /* outbuf[20] - outbuf[31]: Feature 1 - Core feature */
892 stw_be_p(&outbuf
[20], 1);
893 outbuf
[22] = 0x08 | 0x03; /* version 2, persistent, current */
895 stl_be_p(&outbuf
[24], 1); /* SCSI */
896 outbuf
[28] = 1; /* DBE = 1, mandatory */
897 /* outbuf[32] - outbuf[39]: Feature 3 - Removable media feature */
898 stw_be_p(&outbuf
[32], 3);
899 outbuf
[34] = 0x08 | 0x03; /* version 2, persistent, current */
901 outbuf
[36] = 0x39; /* tray, load=1, eject=1, unlocked at powerup, lock=1 */
902 /* TODO: Random readable, CD read, DVD read, drive serial number,
907 static int scsi_emulate_mechanism_status(SCSIDiskState
*s
, uint8_t *outbuf
)
909 if (s
->qdev
.type
!= TYPE_ROM
) {
912 memset(outbuf
, 0, 8);
913 outbuf
[5] = 1; /* CD-ROM */
917 static int mode_sense_page(SCSIDiskState
*s
, int page
, uint8_t **p_outbuf
,
920 static const int mode_sense_valid
[0x3f] = {
921 [MODE_PAGE_HD_GEOMETRY
] = (1 << TYPE_DISK
),
922 [MODE_PAGE_FLEXIBLE_DISK_GEOMETRY
] = (1 << TYPE_DISK
),
923 [MODE_PAGE_CACHING
] = (1 << TYPE_DISK
) | (1 << TYPE_ROM
),
924 [MODE_PAGE_R_W_ERROR
] = (1 << TYPE_DISK
) | (1 << TYPE_ROM
),
925 [MODE_PAGE_AUDIO_CTL
] = (1 << TYPE_ROM
),
926 [MODE_PAGE_CAPABILITIES
] = (1 << TYPE_ROM
),
929 BlockDriverState
*bdrv
= s
->qdev
.conf
.bs
;
930 int cylinders
, heads
, secs
;
931 uint8_t *p
= *p_outbuf
;
933 if ((mode_sense_valid
[page
] & (1 << s
->qdev
.type
)) == 0) {
940 * If Changeable Values are requested, a mask denoting those mode parameters
941 * that are changeable shall be returned. As we currently don't support
942 * parameter changes via MODE_SELECT all bits are returned set to zero.
943 * The buffer was already menset to zero by the caller of this function.
946 case MODE_PAGE_HD_GEOMETRY
:
948 if (page_control
== 1) { /* Changeable Values */
951 /* if a geometry hint is available, use it */
952 bdrv_guess_geometry(bdrv
, &cylinders
, &heads
, &secs
);
953 p
[2] = (cylinders
>> 16) & 0xff;
954 p
[3] = (cylinders
>> 8) & 0xff;
955 p
[4] = cylinders
& 0xff;
957 /* Write precomp start cylinder, disabled */
958 p
[6] = (cylinders
>> 16) & 0xff;
959 p
[7] = (cylinders
>> 8) & 0xff;
960 p
[8] = cylinders
& 0xff;
961 /* Reduced current start cylinder, disabled */
962 p
[9] = (cylinders
>> 16) & 0xff;
963 p
[10] = (cylinders
>> 8) & 0xff;
964 p
[11] = cylinders
& 0xff;
965 /* Device step rate [ns], 200ns */
968 /* Landing zone cylinder */
972 /* Medium rotation rate [rpm], 5400 rpm */
973 p
[20] = (5400 >> 8) & 0xff;
977 case MODE_PAGE_FLEXIBLE_DISK_GEOMETRY
:
979 if (page_control
== 1) { /* Changeable Values */
982 /* Transfer rate [kbit/s], 5Mbit/s */
985 /* if a geometry hint is available, use it */
986 bdrv_guess_geometry(bdrv
, &cylinders
, &heads
, &secs
);
989 p
[6] = s
->qdev
.blocksize
>> 8;
990 p
[8] = (cylinders
>> 8) & 0xff;
991 p
[9] = cylinders
& 0xff;
992 /* Write precomp start cylinder, disabled */
993 p
[10] = (cylinders
>> 8) & 0xff;
994 p
[11] = cylinders
& 0xff;
995 /* Reduced current start cylinder, disabled */
996 p
[12] = (cylinders
>> 8) & 0xff;
997 p
[13] = cylinders
& 0xff;
998 /* Device step rate [100us], 100us */
1001 /* Device step pulse width [us], 1us */
1003 /* Device head settle delay [100us], 100us */
1006 /* Motor on delay [0.1s], 0.1s */
1008 /* Motor off delay [0.1s], 0.1s */
1010 /* Medium rotation rate [rpm], 5400 rpm */
1011 p
[28] = (5400 >> 8) & 0xff;
1012 p
[29] = 5400 & 0xff;
1015 case MODE_PAGE_CACHING
:
1018 if (page_control
== 1) { /* Changeable Values */
1021 if (bdrv_enable_write_cache(s
->qdev
.conf
.bs
)) {
1026 case MODE_PAGE_R_W_ERROR
:
1028 p
[2] = 0x80; /* Automatic Write Reallocation Enabled */
1029 if (s
->qdev
.type
== TYPE_ROM
) {
1030 p
[3] = 0x20; /* Read Retry Count */
1034 case MODE_PAGE_AUDIO_CTL
:
1038 case MODE_PAGE_CAPABILITIES
:
1040 if (page_control
== 1) { /* Changeable Values */
1044 p
[2] = 0x3b; /* CD-R & CD-RW read */
1045 p
[3] = 0; /* Writing not supported */
1046 p
[4] = 0x7f; /* Audio, composite, digital out,
1047 mode 2 form 1&2, multi session */
1048 p
[5] = 0xff; /* CD DA, DA accurate, RW supported,
1049 RW corrected, C2 errors, ISRC,
1051 p
[6] = 0x2d | (s
->tray_locked
? 2 : 0);
1052 /* Locking supported, jumper present, eject, tray */
1053 p
[7] = 0; /* no volume & mute control, no
1055 p
[8] = (50 * 176) >> 8; /* 50x read speed */
1056 p
[9] = (50 * 176) & 0xff;
1057 p
[10] = 2 >> 8; /* Two volume levels */
1059 p
[12] = 2048 >> 8; /* 2M buffer */
1060 p
[13] = 2048 & 0xff;
1061 p
[14] = (16 * 176) >> 8; /* 16x read speed current */
1062 p
[15] = (16 * 176) & 0xff;
1063 p
[18] = (16 * 176) >> 8; /* 16x write speed */
1064 p
[19] = (16 * 176) & 0xff;
1065 p
[20] = (16 * 176) >> 8; /* 16x write speed current */
1066 p
[21] = (16 * 176) & 0xff;
1073 *p_outbuf
+= p
[1] + 2;
1077 static int scsi_disk_emulate_mode_sense(SCSIDiskReq
*r
, uint8_t *outbuf
)
1079 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, r
->req
.dev
);
1080 uint64_t nb_sectors
;
1082 int page
, buflen
, ret
, page_control
;
1084 uint8_t dev_specific_param
;
1086 dbd
= (r
->req
.cmd
.buf
[1] & 0x8) != 0;
1087 page
= r
->req
.cmd
.buf
[2] & 0x3f;
1088 page_control
= (r
->req
.cmd
.buf
[2] & 0xc0) >> 6;
1089 DPRINTF("Mode Sense(%d) (page %d, xfer %zd, page_control %d)\n",
1090 (r
->req
.cmd
.buf
[0] == MODE_SENSE
) ? 6 : 10, page
, r
->req
.cmd
.xfer
, page_control
);
1091 memset(outbuf
, 0, r
->req
.cmd
.xfer
);
1094 if (s
->qdev
.type
== TYPE_DISK
) {
1095 dev_specific_param
= s
->features
& (1 << SCSI_DISK_F_DPOFUA
) ? 0x10 : 0;
1096 if (bdrv_is_read_only(s
->qdev
.conf
.bs
)) {
1097 dev_specific_param
|= 0x80; /* Readonly. */
1100 /* MMC prescribes that CD/DVD drives have no block descriptors,
1101 * and defines no device-specific parameter. */
1102 dev_specific_param
= 0x00;
1106 if (r
->req
.cmd
.buf
[0] == MODE_SENSE
) {
1107 p
[1] = 0; /* Default media type. */
1108 p
[2] = dev_specific_param
;
1109 p
[3] = 0; /* Block descriptor length. */
1111 } else { /* MODE_SENSE_10 */
1112 p
[2] = 0; /* Default media type. */
1113 p
[3] = dev_specific_param
;
1114 p
[6] = p
[7] = 0; /* Block descriptor length. */
1118 bdrv_get_geometry(s
->qdev
.conf
.bs
, &nb_sectors
);
1119 if (!dbd
&& nb_sectors
) {
1120 if (r
->req
.cmd
.buf
[0] == MODE_SENSE
) {
1121 outbuf
[3] = 8; /* Block descriptor length */
1122 } else { /* MODE_SENSE_10 */
1123 outbuf
[7] = 8; /* Block descriptor length */
1125 nb_sectors
/= (s
->qdev
.blocksize
/ 512);
1126 if (nb_sectors
> 0xffffff) {
1129 p
[0] = 0; /* media density code */
1130 p
[1] = (nb_sectors
>> 16) & 0xff;
1131 p
[2] = (nb_sectors
>> 8) & 0xff;
1132 p
[3] = nb_sectors
& 0xff;
1133 p
[4] = 0; /* reserved */
1134 p
[5] = 0; /* bytes 5-7 are the sector size in bytes */
1135 p
[6] = s
->qdev
.blocksize
>> 8;
1140 if (page_control
== 3) {
1142 scsi_check_condition(r
, SENSE_CODE(SAVING_PARAMS_NOT_SUPPORTED
));
1147 for (page
= 0; page
<= 0x3e; page
++) {
1148 mode_sense_page(s
, page
, &p
, page_control
);
1151 ret
= mode_sense_page(s
, page
, &p
, page_control
);
1157 buflen
= p
- outbuf
;
1159 * The mode data length field specifies the length in bytes of the
1160 * following data that is available to be transferred. The mode data
1161 * length does not include itself.
1163 if (r
->req
.cmd
.buf
[0] == MODE_SENSE
) {
1164 outbuf
[0] = buflen
- 1;
1165 } else { /* MODE_SENSE_10 */
1166 outbuf
[0] = ((buflen
- 2) >> 8) & 0xff;
1167 outbuf
[1] = (buflen
- 2) & 0xff;
1172 static int scsi_disk_emulate_read_toc(SCSIRequest
*req
, uint8_t *outbuf
)
1174 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
1175 int start_track
, format
, msf
, toclen
;
1176 uint64_t nb_sectors
;
1178 msf
= req
->cmd
.buf
[1] & 2;
1179 format
= req
->cmd
.buf
[2] & 0xf;
1180 start_track
= req
->cmd
.buf
[6];
1181 bdrv_get_geometry(s
->qdev
.conf
.bs
, &nb_sectors
);
1182 DPRINTF("Read TOC (track %d format %d msf %d)\n", start_track
, format
, msf
>> 1);
1183 nb_sectors
/= s
->qdev
.blocksize
/ 512;
1186 toclen
= cdrom_read_toc(nb_sectors
, outbuf
, msf
, start_track
);
1189 /* multi session : only a single session defined */
1191 memset(outbuf
, 0, 12);
1197 toclen
= cdrom_read_toc_raw(nb_sectors
, outbuf
, msf
, start_track
);
1205 static int scsi_disk_emulate_start_stop(SCSIDiskReq
*r
)
1207 SCSIRequest
*req
= &r
->req
;
1208 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
1209 bool start
= req
->cmd
.buf
[4] & 1;
1210 bool loej
= req
->cmd
.buf
[4] & 2; /* load on start, eject on !start */
1212 if (s
->qdev
.type
== TYPE_ROM
&& loej
) {
1213 if (!start
&& !s
->tray_open
&& s
->tray_locked
) {
1214 scsi_check_condition(r
,
1215 bdrv_is_inserted(s
->qdev
.conf
.bs
)
1216 ? SENSE_CODE(ILLEGAL_REQ_REMOVAL_PREVENTED
)
1217 : SENSE_CODE(NOT_READY_REMOVAL_PREVENTED
));
1221 if (s
->tray_open
!= !start
) {
1222 bdrv_eject(s
->qdev
.conf
.bs
, !start
);
1223 s
->tray_open
= !start
;
1229 static int scsi_disk_emulate_command(SCSIDiskReq
*r
)
1231 SCSIRequest
*req
= &r
->req
;
1232 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
1233 uint64_t nb_sectors
;
1237 if (!r
->iov
.iov_base
) {
1239 * FIXME: we shouldn't return anything bigger than 4k, but the code
1240 * requires the buffer to be as big as req->cmd.xfer in several
1241 * places. So, do not allow CDBs with a very large ALLOCATION
1242 * LENGTH. The real fix would be to modify scsi_read_data and
1243 * dma_buf_read, so that they return data beyond the buflen
1246 if (req
->cmd
.xfer
> 65536) {
1247 goto illegal_request
;
1249 r
->buflen
= MAX(4096, req
->cmd
.xfer
);
1250 r
->iov
.iov_base
= qemu_blockalign(s
->qdev
.conf
.bs
, r
->buflen
);
1253 outbuf
= r
->iov
.iov_base
;
1254 switch (req
->cmd
.buf
[0]) {
1255 case TEST_UNIT_READY
:
1256 assert(!s
->tray_open
&& bdrv_is_inserted(s
->qdev
.conf
.bs
));
1259 buflen
= scsi_disk_emulate_inquiry(req
, outbuf
);
1261 goto illegal_request
;
1266 buflen
= scsi_disk_emulate_mode_sense(r
, outbuf
);
1268 goto illegal_request
;
1272 buflen
= scsi_disk_emulate_read_toc(req
, outbuf
);
1274 goto illegal_request
;
1278 if (req
->cmd
.buf
[1] & 1) {
1279 goto illegal_request
;
1283 if (req
->cmd
.buf
[1] & 3) {
1284 goto illegal_request
;
1288 if (req
->cmd
.buf
[1] & 1) {
1289 goto illegal_request
;
1293 if (req
->cmd
.buf
[1] & 3) {
1294 goto illegal_request
;
1298 if (scsi_disk_emulate_start_stop(r
) < 0) {
1302 case ALLOW_MEDIUM_REMOVAL
:
1303 s
->tray_locked
= req
->cmd
.buf
[4] & 1;
1304 bdrv_lock_medium(s
->qdev
.conf
.bs
, req
->cmd
.buf
[4] & 1);
1306 case READ_CAPACITY_10
:
1307 /* The normal LEN field for this command is zero. */
1308 memset(outbuf
, 0, 8);
1309 bdrv_get_geometry(s
->qdev
.conf
.bs
, &nb_sectors
);
1311 scsi_check_condition(r
, SENSE_CODE(LUN_NOT_READY
));
1314 if ((req
->cmd
.buf
[8] & 1) == 0 && req
->cmd
.lba
) {
1315 goto illegal_request
;
1317 nb_sectors
/= s
->qdev
.blocksize
/ 512;
1318 /* Returned value is the address of the last sector. */
1320 /* Remember the new size for read/write sanity checking. */
1321 s
->qdev
.max_lba
= nb_sectors
;
1322 /* Clip to 2TB, instead of returning capacity modulo 2TB. */
1323 if (nb_sectors
> UINT32_MAX
) {
1324 nb_sectors
= UINT32_MAX
;
1326 outbuf
[0] = (nb_sectors
>> 24) & 0xff;
1327 outbuf
[1] = (nb_sectors
>> 16) & 0xff;
1328 outbuf
[2] = (nb_sectors
>> 8) & 0xff;
1329 outbuf
[3] = nb_sectors
& 0xff;
1332 outbuf
[6] = s
->qdev
.blocksize
>> 8;
1337 /* Just return "NO SENSE". */
1338 buflen
= scsi_build_sense(NULL
, 0, outbuf
, r
->buflen
,
1339 (req
->cmd
.buf
[1] & 1) == 0);
1341 case MECHANISM_STATUS
:
1342 buflen
= scsi_emulate_mechanism_status(s
, outbuf
);
1344 goto illegal_request
;
1347 case GET_CONFIGURATION
:
1348 buflen
= scsi_get_configuration(s
, outbuf
);
1350 goto illegal_request
;
1353 case GET_EVENT_STATUS_NOTIFICATION
:
1354 buflen
= scsi_get_event_status_notification(s
, r
, outbuf
);
1356 goto illegal_request
;
1359 case READ_DVD_STRUCTURE
:
1360 buflen
= scsi_read_dvd_structure(s
, r
, outbuf
);
1362 goto illegal_request
;
1365 case SERVICE_ACTION_IN_16
:
1366 /* Service Action In subcommands. */
1367 if ((req
->cmd
.buf
[1] & 31) == SAI_READ_CAPACITY_16
) {
1368 DPRINTF("SAI READ CAPACITY(16)\n");
1369 memset(outbuf
, 0, req
->cmd
.xfer
);
1370 bdrv_get_geometry(s
->qdev
.conf
.bs
, &nb_sectors
);
1372 scsi_check_condition(r
, SENSE_CODE(LUN_NOT_READY
));
1375 if ((req
->cmd
.buf
[14] & 1) == 0 && req
->cmd
.lba
) {
1376 goto illegal_request
;
1378 nb_sectors
/= s
->qdev
.blocksize
/ 512;
1379 /* Returned value is the address of the last sector. */
1381 /* Remember the new size for read/write sanity checking. */
1382 s
->qdev
.max_lba
= nb_sectors
;
1383 outbuf
[0] = (nb_sectors
>> 56) & 0xff;
1384 outbuf
[1] = (nb_sectors
>> 48) & 0xff;
1385 outbuf
[2] = (nb_sectors
>> 40) & 0xff;
1386 outbuf
[3] = (nb_sectors
>> 32) & 0xff;
1387 outbuf
[4] = (nb_sectors
>> 24) & 0xff;
1388 outbuf
[5] = (nb_sectors
>> 16) & 0xff;
1389 outbuf
[6] = (nb_sectors
>> 8) & 0xff;
1390 outbuf
[7] = nb_sectors
& 0xff;
1393 outbuf
[10] = s
->qdev
.blocksize
>> 8;
1396 outbuf
[13] = get_physical_block_exp(&s
->qdev
.conf
);
1398 /* set TPE bit if the format supports discard */
1399 if (s
->qdev
.conf
.discard_granularity
) {
1403 /* Protection, exponent and lowest lba field left blank. */
1404 buflen
= req
->cmd
.xfer
;
1407 DPRINTF("Unsupported Service Action In\n");
1408 goto illegal_request
;
1410 scsi_check_condition(r
, SENSE_CODE(INVALID_OPCODE
));
1413 buflen
= MIN(buflen
, req
->cmd
.xfer
);
1417 if (r
->req
.status
== -1) {
1418 scsi_check_condition(r
, SENSE_CODE(INVALID_FIELD
));
1423 /* Execute a scsi command. Returns the length of the data expected by the
1424 command. This will be Positive for data transfers from the device
1425 (eg. disk reads), negative for transfers to the device (eg. disk writes),
1426 and zero if the command does not transfer any data. */
1428 static int32_t scsi_send_command(SCSIRequest
*req
, uint8_t *buf
)
1430 SCSIDiskReq
*r
= DO_UPCAST(SCSIDiskReq
, req
, req
);
1431 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, req
->dev
);
1437 DPRINTF("Command: lun=%d tag=0x%x data=0x%02x", req
->lun
, req
->tag
, buf
[0]);
1442 for (i
= 1; i
< r
->req
.cmd
.len
; i
++) {
1443 printf(" 0x%02x", buf
[i
]);
1458 case ALLOW_MEDIUM_REMOVAL
:
1459 case GET_CONFIGURATION
:
1460 case GET_EVENT_STATUS_NOTIFICATION
:
1461 case MECHANISM_STATUS
:
1466 if (s
->tray_open
|| !bdrv_is_inserted(s
->qdev
.conf
.bs
)) {
1467 scsi_check_condition(r
, SENSE_CODE(NO_MEDIUM
));
1474 case TEST_UNIT_READY
:
1483 case ALLOW_MEDIUM_REMOVAL
:
1484 case READ_CAPACITY_10
:
1486 case READ_DVD_STRUCTURE
:
1487 case GET_CONFIGURATION
:
1488 case GET_EVENT_STATUS_NOTIFICATION
:
1489 case MECHANISM_STATUS
:
1490 case SERVICE_ACTION_IN_16
:
1492 rc
= scsi_disk_emulate_command(r
);
1497 r
->iov
.iov_len
= rc
;
1499 case SYNCHRONIZE_CACHE
:
1500 /* The request is used as the AIO opaque value, so add a ref. */
1501 scsi_req_ref(&r
->req
);
1502 bdrv_acct_start(s
->qdev
.conf
.bs
, &r
->acct
, 0, BDRV_ACCT_FLUSH
);
1503 r
->req
.aiocb
= bdrv_aio_flush(s
->qdev
.conf
.bs
, scsi_flush_complete
, r
);
1509 len
= r
->req
.cmd
.xfer
/ s
->qdev
.blocksize
;
1510 DPRINTF("Read (sector %" PRId64
", count %d)\n", r
->req
.cmd
.lba
, len
);
1511 if (r
->req
.cmd
.lba
> s
->qdev
.max_lba
) {
1514 r
->sector
= r
->req
.cmd
.lba
* (s
->qdev
.blocksize
/ 512);
1515 r
->sector_count
= len
* (s
->qdev
.blocksize
/ 512);
1524 case WRITE_VERIFY_10
:
1525 case WRITE_VERIFY_12
:
1526 case WRITE_VERIFY_16
:
1527 len
= r
->req
.cmd
.xfer
/ s
->qdev
.blocksize
;
1528 DPRINTF("Write %s(sector %" PRId64
", count %d)\n",
1529 (command
& 0xe) == 0xe ? "And Verify " : "",
1530 r
->req
.cmd
.lba
, len
);
1531 if (r
->req
.cmd
.lba
> s
->qdev
.max_lba
) {
1534 r
->sector
= r
->req
.cmd
.lba
* (s
->qdev
.blocksize
/ 512);
1535 r
->sector_count
= len
* (s
->qdev
.blocksize
/ 512);
1538 DPRINTF("Mode Select(6) (len %lu)\n", (long)r
->req
.cmd
.xfer
);
1539 /* We don't support mode parameter changes.
1540 Allow the mode parameter header + block descriptors only. */
1541 if (r
->req
.cmd
.xfer
> 12) {
1545 case MODE_SELECT_10
:
1546 DPRINTF("Mode Select(10) (len %lu)\n", (long)r
->req
.cmd
.xfer
);
1547 /* We don't support mode parameter changes.
1548 Allow the mode parameter header + block descriptors only. */
1549 if (r
->req
.cmd
.xfer
> 16) {
1554 DPRINTF("Seek(10) (sector %" PRId64
")\n", r
->req
.cmd
.lba
);
1555 if (r
->req
.cmd
.lba
> s
->qdev
.max_lba
) {
1560 len
= lduw_be_p(&buf
[7]);
1563 len
= ldl_be_p(&buf
[10]) & 0xffffffffULL
;
1566 DPRINTF("WRITE SAME() (sector %" PRId64
", count %d)\n",
1567 r
->req
.cmd
.lba
, len
);
1569 if (r
->req
.cmd
.lba
> s
->qdev
.max_lba
) {
1574 * We only support WRITE SAME with the unmap bit set for now.
1576 if (!(buf
[1] & 0x8)) {
1580 rc
= bdrv_discard(s
->qdev
.conf
.bs
,
1581 r
->req
.cmd
.lba
* (s
->qdev
.blocksize
/ 512),
1582 len
* (s
->qdev
.blocksize
/ 512));
1584 /* XXX: better error code ?*/
1590 DPRINTF("Unknown SCSI command (%2.2x)\n", buf
[0]);
1591 scsi_check_condition(r
, SENSE_CODE(INVALID_OPCODE
));
1594 scsi_check_condition(r
, SENSE_CODE(INVALID_FIELD
));
1597 scsi_check_condition(r
, SENSE_CODE(LBA_OUT_OF_RANGE
));
1600 if (r
->sector_count
== 0 && r
->iov
.iov_len
== 0) {
1601 scsi_req_complete(&r
->req
, GOOD
);
1603 len
= r
->sector_count
* 512 + r
->iov
.iov_len
;
1604 if (r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
1607 if (!r
->sector_count
) {
1608 r
->sector_count
= -1;
1614 static void scsi_disk_reset(DeviceState
*dev
)
1616 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
.qdev
, dev
);
1617 uint64_t nb_sectors
;
1619 scsi_device_purge_requests(&s
->qdev
, SENSE_CODE(RESET
));
1621 bdrv_get_geometry(s
->qdev
.conf
.bs
, &nb_sectors
);
1622 nb_sectors
/= s
->qdev
.blocksize
/ 512;
1626 s
->qdev
.max_lba
= nb_sectors
;
1629 static void scsi_destroy(SCSIDevice
*dev
)
1631 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1633 scsi_device_purge_requests(&s
->qdev
, SENSE_CODE(NO_SENSE
));
1634 blockdev_mark_auto_del(s
->qdev
.conf
.bs
);
1637 static void scsi_cd_change_media_cb(void *opaque
, bool load
)
1639 SCSIDiskState
*s
= opaque
;
1642 * When a CD gets changed, we have to report an ejected state and
1643 * then a loaded state to guests so that they detect tray
1644 * open/close and media change events. Guests that do not use
1645 * GET_EVENT_STATUS_NOTIFICATION to detect such tray open/close
1646 * states rely on this behavior.
1648 * media_changed governs the state machine used for unit attention
1649 * report. media_event is used by GET EVENT STATUS NOTIFICATION.
1651 s
->media_changed
= load
;
1652 s
->tray_open
= !load
;
1653 s
->qdev
.unit_attention
= SENSE_CODE(UNIT_ATTENTION_NO_MEDIUM
);
1654 s
->media_event
= true;
1655 s
->eject_request
= false;
1658 static void scsi_cd_eject_request_cb(void *opaque
, bool force
)
1660 SCSIDiskState
*s
= opaque
;
1662 s
->eject_request
= true;
1664 s
->tray_locked
= false;
1668 static bool scsi_cd_is_tray_open(void *opaque
)
1670 return ((SCSIDiskState
*)opaque
)->tray_open
;
1673 static bool scsi_cd_is_medium_locked(void *opaque
)
1675 return ((SCSIDiskState
*)opaque
)->tray_locked
;
1678 static const BlockDevOps scsi_cd_block_ops
= {
1679 .change_media_cb
= scsi_cd_change_media_cb
,
1680 .eject_request_cb
= scsi_cd_eject_request_cb
,
1681 .is_tray_open
= scsi_cd_is_tray_open
,
1682 .is_medium_locked
= scsi_cd_is_medium_locked
,
1685 static void scsi_disk_unit_attention_reported(SCSIDevice
*dev
)
1687 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1688 if (s
->media_changed
) {
1689 s
->media_changed
= false;
1690 s
->qdev
.unit_attention
= SENSE_CODE(MEDIUM_CHANGED
);
1694 static int scsi_initfn(SCSIDevice
*dev
)
1696 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1699 if (!s
->qdev
.conf
.bs
) {
1700 error_report("drive property not set");
1704 if (!(s
->features
& (1 << SCSI_DISK_F_REMOVABLE
)) &&
1705 !bdrv_is_inserted(s
->qdev
.conf
.bs
)) {
1706 error_report("Device needs media, but drive is empty");
1711 /* try to fall back to value set with legacy -drive serial=... */
1712 dinfo
= drive_get_by_blockdev(s
->qdev
.conf
.bs
);
1713 if (*dinfo
->serial
) {
1714 s
->serial
= g_strdup(dinfo
->serial
);
1719 s
->version
= g_strdup(QEMU_VERSION
);
1722 if (bdrv_is_sg(s
->qdev
.conf
.bs
)) {
1723 error_report("unwanted /dev/sg*");
1727 if (s
->features
& (1 << SCSI_DISK_F_REMOVABLE
)) {
1728 bdrv_set_dev_ops(s
->qdev
.conf
.bs
, &scsi_cd_block_ops
, s
);
1730 bdrv_set_buffer_alignment(s
->qdev
.conf
.bs
, s
->qdev
.blocksize
);
1732 bdrv_iostatus_enable(s
->qdev
.conf
.bs
);
1733 add_boot_device_path(s
->qdev
.conf
.bootindex
, &dev
->qdev
, NULL
);
1737 static int scsi_hd_initfn(SCSIDevice
*dev
)
1739 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1740 s
->qdev
.blocksize
= s
->qdev
.conf
.logical_block_size
;
1741 s
->qdev
.type
= TYPE_DISK
;
1742 return scsi_initfn(&s
->qdev
);
1745 static int scsi_cd_initfn(SCSIDevice
*dev
)
1747 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1748 s
->qdev
.blocksize
= 2048;
1749 s
->qdev
.type
= TYPE_ROM
;
1750 s
->features
|= 1 << SCSI_DISK_F_REMOVABLE
;
1751 return scsi_initfn(&s
->qdev
);
1754 static int scsi_disk_initfn(SCSIDevice
*dev
)
1758 if (!dev
->conf
.bs
) {
1759 return scsi_initfn(dev
); /* ... and die there */
1762 dinfo
= drive_get_by_blockdev(dev
->conf
.bs
);
1763 if (dinfo
->media_cd
) {
1764 return scsi_cd_initfn(dev
);
1766 return scsi_hd_initfn(dev
);
1770 static const SCSIReqOps scsi_disk_reqops
= {
1771 .size
= sizeof(SCSIDiskReq
),
1772 .free_req
= scsi_free_request
,
1773 .send_command
= scsi_send_command
,
1774 .read_data
= scsi_read_data
,
1775 .write_data
= scsi_write_data
,
1776 .cancel_io
= scsi_cancel_io
,
1777 .get_buf
= scsi_get_buf
,
1778 .load_request
= scsi_disk_load_request
,
1779 .save_request
= scsi_disk_save_request
,
1782 static SCSIRequest
*scsi_new_request(SCSIDevice
*d
, uint32_t tag
, uint32_t lun
,
1783 uint8_t *buf
, void *hba_private
)
1785 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
1788 req
= scsi_req_alloc(&scsi_disk_reqops
, &s
->qdev
, tag
, lun
, hba_private
);
1793 static int get_device_type(SCSIDiskState
*s
)
1795 BlockDriverState
*bdrv
= s
->qdev
.conf
.bs
;
1798 uint8_t sensebuf
[8];
1799 sg_io_hdr_t io_header
;
1802 memset(cmd
, 0, sizeof(cmd
));
1803 memset(buf
, 0, sizeof(buf
));
1805 cmd
[4] = sizeof(buf
);
1807 memset(&io_header
, 0, sizeof(io_header
));
1808 io_header
.interface_id
= 'S';
1809 io_header
.dxfer_direction
= SG_DXFER_FROM_DEV
;
1810 io_header
.dxfer_len
= sizeof(buf
);
1811 io_header
.dxferp
= buf
;
1812 io_header
.cmdp
= cmd
;
1813 io_header
.cmd_len
= sizeof(cmd
);
1814 io_header
.mx_sb_len
= sizeof(sensebuf
);
1815 io_header
.sbp
= sensebuf
;
1816 io_header
.timeout
= 6000; /* XXX */
1818 ret
= bdrv_ioctl(bdrv
, SG_IO
, &io_header
);
1819 if (ret
< 0 || io_header
.driver_status
|| io_header
.host_status
) {
1822 s
->qdev
.type
= buf
[0];
1823 if (buf
[1] & 0x80) {
1824 s
->features
|= 1 << SCSI_DISK_F_REMOVABLE
;
1829 static int scsi_block_initfn(SCSIDevice
*dev
)
1831 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, dev
);
1835 if (!s
->qdev
.conf
.bs
) {
1836 error_report("scsi-block: drive property not set");
1840 /* check we are using a driver managing SG_IO (version 3 and after) */
1841 if (bdrv_ioctl(s
->qdev
.conf
.bs
, SG_GET_VERSION_NUM
, &sg_version
) < 0 ||
1842 sg_version
< 30000) {
1843 error_report("scsi-block: scsi generic interface too old");
1847 /* get device type from INQUIRY data */
1848 rc
= get_device_type(s
);
1850 error_report("scsi-block: INQUIRY failed");
1854 /* Make a guess for the block size, we'll fix it when the guest sends.
1855 * READ CAPACITY. If they don't, they likely would assume these sizes
1856 * anyway. (TODO: check in /sys).
1858 if (s
->qdev
.type
== TYPE_ROM
|| s
->qdev
.type
== TYPE_WORM
) {
1859 s
->qdev
.blocksize
= 2048;
1861 s
->qdev
.blocksize
= 512;
1863 return scsi_initfn(&s
->qdev
);
1866 static SCSIRequest
*scsi_block_new_request(SCSIDevice
*d
, uint32_t tag
,
1867 uint32_t lun
, uint8_t *buf
,
1870 SCSIDiskState
*s
= DO_UPCAST(SCSIDiskState
, qdev
, d
);
1884 case WRITE_VERIFY_10
:
1885 case WRITE_VERIFY_12
:
1886 case WRITE_VERIFY_16
:
1887 /* If we are not using O_DIRECT, we might read stale data from the
1888 * host cache if writes were made using other commands than these
1889 * ones (such as WRITE SAME or EXTENDED COPY, etc.). So, without
1890 * O_DIRECT everything must go through SG_IO.
1892 if (!(s
->qdev
.conf
.bs
->open_flags
& BDRV_O_NOCACHE
)) {
1896 /* MMC writing cannot be done via pread/pwrite, because it sometimes
1897 * involves writing beyond the maximum LBA or to negative LBA (lead-in).
1898 * And once you do these writes, reading from the block device is
1899 * unreliable, too. It is even possible that reads deliver random data
1900 * from the host page cache (this is probably a Linux bug).
1902 * We might use scsi_disk_reqops as long as no writing commands are
1903 * seen, but performance usually isn't paramount on optical media. So,
1904 * just make scsi-block operate the same as scsi-generic for them.
1906 if (s
->qdev
.type
== TYPE_ROM
) {
1909 return scsi_req_alloc(&scsi_disk_reqops
, &s
->qdev
, tag
, lun
,
1913 return scsi_req_alloc(&scsi_generic_req_ops
, &s
->qdev
, tag
, lun
,
1918 #define DEFINE_SCSI_DISK_PROPERTIES() \
1919 DEFINE_BLOCK_PROPERTIES(SCSIDiskState, qdev.conf), \
1920 DEFINE_PROP_STRING("ver", SCSIDiskState, version), \
1921 DEFINE_PROP_STRING("serial", SCSIDiskState, serial)
1923 static Property scsi_hd_properties
[] = {
1924 DEFINE_SCSI_DISK_PROPERTIES(),
1925 DEFINE_PROP_BIT("removable", SCSIDiskState
, features
,
1926 SCSI_DISK_F_REMOVABLE
, false),
1927 DEFINE_PROP_BIT("dpofua", SCSIDiskState
, features
,
1928 SCSI_DISK_F_DPOFUA
, false),
1929 DEFINE_PROP_END_OF_LIST(),
1932 static const VMStateDescription vmstate_scsi_disk_state
= {
1933 .name
= "scsi-disk",
1935 .minimum_version_id
= 1,
1936 .minimum_version_id_old
= 1,
1937 .fields
= (VMStateField
[]) {
1938 VMSTATE_SCSI_DEVICE(qdev
, SCSIDiskState
),
1939 VMSTATE_BOOL(media_changed
, SCSIDiskState
),
1940 VMSTATE_BOOL(media_event
, SCSIDiskState
),
1941 VMSTATE_BOOL(eject_request
, SCSIDiskState
),
1942 VMSTATE_BOOL(tray_open
, SCSIDiskState
),
1943 VMSTATE_BOOL(tray_locked
, SCSIDiskState
),
1944 VMSTATE_END_OF_LIST()
1948 static void scsi_hd_class_initfn(ObjectClass
*klass
, void *data
)
1950 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1951 SCSIDeviceClass
*sc
= SCSI_DEVICE_CLASS(klass
);
1953 sc
->init
= scsi_hd_initfn
;
1954 sc
->destroy
= scsi_destroy
;
1955 sc
->alloc_req
= scsi_new_request
;
1956 sc
->unit_attention_reported
= scsi_disk_unit_attention_reported
;
1957 dc
->fw_name
= "disk";
1958 dc
->desc
= "virtual SCSI disk";
1959 dc
->reset
= scsi_disk_reset
;
1960 dc
->props
= scsi_hd_properties
;
1961 dc
->vmsd
= &vmstate_scsi_disk_state
;
1964 static TypeInfo scsi_hd_info
= {
1966 .parent
= TYPE_SCSI_DEVICE
,
1967 .instance_size
= sizeof(SCSIDiskState
),
1968 .class_init
= scsi_hd_class_initfn
,
1971 static Property scsi_cd_properties
[] = {
1972 DEFINE_SCSI_DISK_PROPERTIES(),
1973 DEFINE_PROP_END_OF_LIST(),
1976 static void scsi_cd_class_initfn(ObjectClass
*klass
, void *data
)
1978 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1979 SCSIDeviceClass
*sc
= SCSI_DEVICE_CLASS(klass
);
1981 sc
->init
= scsi_cd_initfn
;
1982 sc
->destroy
= scsi_destroy
;
1983 sc
->alloc_req
= scsi_new_request
;
1984 sc
->unit_attention_reported
= scsi_disk_unit_attention_reported
;
1985 dc
->fw_name
= "disk";
1986 dc
->desc
= "virtual SCSI CD-ROM";
1987 dc
->reset
= scsi_disk_reset
;
1988 dc
->props
= scsi_cd_properties
;
1989 dc
->vmsd
= &vmstate_scsi_disk_state
;
1992 static TypeInfo scsi_cd_info
= {
1994 .parent
= TYPE_SCSI_DEVICE
,
1995 .instance_size
= sizeof(SCSIDiskState
),
1996 .class_init
= scsi_cd_class_initfn
,
2000 static Property scsi_block_properties
[] = {
2001 DEFINE_SCSI_DISK_PROPERTIES(),
2002 DEFINE_PROP_END_OF_LIST(),
2005 static void scsi_block_class_initfn(ObjectClass
*klass
, void *data
)
2007 DeviceClass
*dc
= DEVICE_CLASS(klass
);
2008 SCSIDeviceClass
*sc
= SCSI_DEVICE_CLASS(klass
);
2010 sc
->init
= scsi_block_initfn
;
2011 sc
->destroy
= scsi_destroy
;
2012 sc
->alloc_req
= scsi_block_new_request
;
2013 dc
->fw_name
= "disk";
2014 dc
->desc
= "SCSI block device passthrough";
2015 dc
->reset
= scsi_disk_reset
;
2016 dc
->props
= scsi_block_properties
;
2017 dc
->vmsd
= &vmstate_scsi_disk_state
;
2020 static TypeInfo scsi_block_info
= {
2021 .name
= "scsi-block",
2022 .parent
= TYPE_SCSI_DEVICE
,
2023 .instance_size
= sizeof(SCSIDiskState
),
2024 .class_init
= scsi_block_class_initfn
,
2028 static Property scsi_disk_properties
[] = {
2029 DEFINE_SCSI_DISK_PROPERTIES(),
2030 DEFINE_PROP_BIT("removable", SCSIDiskState
, features
,
2031 SCSI_DISK_F_REMOVABLE
, false),
2032 DEFINE_PROP_BIT("dpofua", SCSIDiskState
, features
,
2033 SCSI_DISK_F_DPOFUA
, false),
2034 DEFINE_PROP_END_OF_LIST(),
2037 static void scsi_disk_class_initfn(ObjectClass
*klass
, void *data
)
2039 DeviceClass
*dc
= DEVICE_CLASS(klass
);
2040 SCSIDeviceClass
*sc
= SCSI_DEVICE_CLASS(klass
);
2042 sc
->init
= scsi_disk_initfn
;
2043 sc
->destroy
= scsi_destroy
;
2044 sc
->alloc_req
= scsi_new_request
;
2045 sc
->unit_attention_reported
= scsi_disk_unit_attention_reported
;
2046 dc
->fw_name
= "disk";
2047 dc
->desc
= "virtual SCSI disk or CD-ROM (legacy)";
2048 dc
->reset
= scsi_disk_reset
;
2049 dc
->props
= scsi_disk_properties
;
2050 dc
->vmsd
= &vmstate_scsi_disk_state
;
2053 static TypeInfo scsi_disk_info
= {
2054 .name
= "scsi-disk",
2055 .parent
= TYPE_SCSI_DEVICE
,
2056 .instance_size
= sizeof(SCSIDiskState
),
2057 .class_init
= scsi_disk_class_initfn
,
2060 static void scsi_disk_register_types(void)
2062 type_register_static(&scsi_hd_info
);
2063 type_register_static(&scsi_cd_info
);
2065 type_register_static(&scsi_block_info
);
2067 type_register_static(&scsi_disk_info
);
2070 type_init(scsi_disk_register_types
)