2 * Generic SCSI Device support
4 * Copyright (c) 2007 Bull S.A.S.
5 * Based on code by Paul Brook
6 * Based on code by Fabrice Bellard
8 * Written by Laurent Vivier <Laurent.Vivier@bull.net>
10 * This code is licensed under the LGPL.
14 #include "qemu/osdep.h"
15 #include "qapi/error.h"
16 #include "qemu-common.h"
17 #include "qemu/error-report.h"
18 #include "hw/scsi/scsi.h"
19 #include "sysemu/block-backend.h"
20 #include "sysemu/blockdev.h"
27 #define DPRINTF(fmt, ...) \
28 do { printf("scsi-generic: " fmt , ## __VA_ARGS__); } while (0)
30 #define DPRINTF(fmt, ...) do {} while(0)
33 #define BADF(fmt, ...) \
34 do { fprintf(stderr, "scsi-generic: " fmt , ## __VA_ARGS__); } while (0)
37 #include "block/scsi.h"
39 #define SG_ERR_DRIVER_TIMEOUT 0x06
40 #define SG_ERR_DRIVER_SENSE 0x08
42 #define SG_ERR_DID_OK 0x00
43 #define SG_ERR_DID_NO_CONNECT 0x01
44 #define SG_ERR_DID_BUS_BUSY 0x02
45 #define SG_ERR_DID_TIME_OUT 0x03
48 #define MAX_UINT ((unsigned int)-1)
51 typedef struct SCSIGenericReq
{
56 sg_io_hdr_t io_header
;
59 static void scsi_generic_save_request(QEMUFile
*f
, SCSIRequest
*req
)
61 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
63 qemu_put_sbe32s(f
, &r
->buflen
);
64 if (r
->buflen
&& r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
66 qemu_put_buffer(f
, r
->buf
, r
->req
.cmd
.xfer
);
70 static void scsi_generic_load_request(QEMUFile
*f
, SCSIRequest
*req
)
72 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
74 qemu_get_sbe32s(f
, &r
->buflen
);
75 if (r
->buflen
&& r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
77 qemu_get_buffer(f
, r
->buf
, r
->req
.cmd
.xfer
);
81 static void scsi_free_request(SCSIRequest
*req
)
83 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
88 /* Helper function for command completion. */
89 static void scsi_command_complete_noio(SCSIGenericReq
*r
, int ret
)
93 assert(r
->req
.aiocb
== NULL
);
95 if (r
->req
.io_canceled
) {
96 scsi_req_cancel_complete(&r
->req
);
99 if (r
->io_header
.driver_status
& SG_ERR_DRIVER_SENSE
) {
100 r
->req
.sense_len
= r
->io_header
.sb_len_wr
;
106 status
= TASK_SET_FULL
;
109 status
= CHECK_CONDITION
;
110 scsi_req_build_sense(&r
->req
, SENSE_CODE(TARGET_FAILURE
));
113 status
= CHECK_CONDITION
;
114 scsi_req_build_sense(&r
->req
, SENSE_CODE(IO_ERROR
));
118 if (r
->io_header
.host_status
== SG_ERR_DID_NO_CONNECT
||
119 r
->io_header
.host_status
== SG_ERR_DID_BUS_BUSY
||
120 r
->io_header
.host_status
== SG_ERR_DID_TIME_OUT
||
121 (r
->io_header
.driver_status
& SG_ERR_DRIVER_TIMEOUT
)) {
123 BADF("Driver Timeout\n");
124 } else if (r
->io_header
.host_status
) {
125 status
= CHECK_CONDITION
;
126 scsi_req_build_sense(&r
->req
, SENSE_CODE(I_T_NEXUS_LOSS
));
127 } else if (r
->io_header
.status
) {
128 status
= r
->io_header
.status
;
129 } else if (r
->io_header
.driver_status
& SG_ERR_DRIVER_SENSE
) {
130 status
= CHECK_CONDITION
;
135 DPRINTF("Command complete 0x%p tag=0x%x status=%d\n",
136 r
, r
->req
.tag
, status
);
138 scsi_req_complete(&r
->req
, status
);
140 scsi_req_unref(&r
->req
);
143 static void scsi_command_complete(void *opaque
, int ret
)
145 SCSIGenericReq
*r
= (SCSIGenericReq
*)opaque
;
147 assert(r
->req
.aiocb
!= NULL
);
149 scsi_command_complete_noio(r
, ret
);
152 static int execute_command(BlockBackend
*blk
,
153 SCSIGenericReq
*r
, int direction
,
154 BlockCompletionFunc
*complete
)
156 r
->io_header
.interface_id
= 'S';
157 r
->io_header
.dxfer_direction
= direction
;
158 r
->io_header
.dxferp
= r
->buf
;
159 r
->io_header
.dxfer_len
= r
->buflen
;
160 r
->io_header
.cmdp
= r
->req
.cmd
.buf
;
161 r
->io_header
.cmd_len
= r
->req
.cmd
.len
;
162 r
->io_header
.mx_sb_len
= sizeof(r
->req
.sense
);
163 r
->io_header
.sbp
= r
->req
.sense
;
164 r
->io_header
.timeout
= MAX_UINT
;
165 r
->io_header
.usr_ptr
= r
;
166 r
->io_header
.flags
|= SG_FLAG_DIRECT_IO
;
168 r
->req
.aiocb
= blk_aio_ioctl(blk
, SG_IO
, &r
->io_header
, complete
, r
);
169 if (r
->req
.aiocb
== NULL
) {
176 static void scsi_read_complete(void * opaque
, int ret
)
178 SCSIGenericReq
*r
= (SCSIGenericReq
*)opaque
;
179 SCSIDevice
*s
= r
->req
.dev
;
182 assert(r
->req
.aiocb
!= NULL
);
185 if (ret
|| r
->req
.io_canceled
) {
186 scsi_command_complete_noio(r
, ret
);
190 len
= r
->io_header
.dxfer_len
- r
->io_header
.resid
;
191 DPRINTF("Data ready tag=0x%x len=%d\n", r
->req
.tag
, len
);
195 scsi_command_complete_noio(r
, 0);
199 /* Snoop READ CAPACITY output to set the blocksize. */
200 if (r
->req
.cmd
.buf
[0] == READ_CAPACITY_10
&&
201 (ldl_be_p(&r
->buf
[0]) != 0xffffffffU
|| s
->max_lba
== 0)) {
202 s
->blocksize
= ldl_be_p(&r
->buf
[4]);
203 s
->max_lba
= ldl_be_p(&r
->buf
[0]) & 0xffffffffULL
;
204 } else if (r
->req
.cmd
.buf
[0] == SERVICE_ACTION_IN_16
&&
205 (r
->req
.cmd
.buf
[1] & 31) == SAI_READ_CAPACITY_16
) {
206 s
->blocksize
= ldl_be_p(&r
->buf
[8]);
207 s
->max_lba
= ldq_be_p(&r
->buf
[0]);
209 blk_set_guest_block_size(s
->conf
.blk
, s
->blocksize
);
211 /* Patch MODE SENSE device specific parameters if the BDS is opened
214 if ((s
->type
== TYPE_DISK
|| s
->type
== TYPE_TAPE
) &&
215 blk_is_read_only(s
->conf
.blk
) &&
216 (r
->req
.cmd
.buf
[0] == MODE_SENSE
||
217 r
->req
.cmd
.buf
[0] == MODE_SENSE_10
) &&
218 (r
->req
.cmd
.buf
[1] & 0x8) == 0) {
219 if (r
->req
.cmd
.buf
[0] == MODE_SENSE
) {
225 if (s
->type
== TYPE_DISK
&&
226 r
->req
.cmd
.buf
[0] == INQUIRY
&&
227 r
->req
.cmd
.buf
[2] == 0xb0) {
228 uint32_t max_transfer
=
229 blk_get_max_transfer(s
->conf
.blk
) / s
->blocksize
;
231 assert(max_transfer
);
232 stl_be_p(&r
->buf
[8], max_transfer
);
233 /* Also take care of the opt xfer len. */
234 if (ldl_be_p(&r
->buf
[12]) > max_transfer
) {
235 stl_be_p(&r
->buf
[12], max_transfer
);
238 scsi_req_data(&r
->req
, len
);
239 scsi_req_unref(&r
->req
);
242 /* Read more data from scsi device into buffer. */
243 static void scsi_read_data(SCSIRequest
*req
)
245 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
246 SCSIDevice
*s
= r
->req
.dev
;
249 DPRINTF("scsi_read_data tag=0x%x\n", req
->tag
);
251 /* The request is used as the AIO opaque value, so add a ref. */
252 scsi_req_ref(&r
->req
);
254 scsi_command_complete_noio(r
, 0);
258 ret
= execute_command(s
->conf
.blk
, r
, SG_DXFER_FROM_DEV
,
261 scsi_command_complete_noio(r
, ret
);
265 static void scsi_write_complete(void * opaque
, int ret
)
267 SCSIGenericReq
*r
= (SCSIGenericReq
*)opaque
;
268 SCSIDevice
*s
= r
->req
.dev
;
270 DPRINTF("scsi_write_complete() ret = %d\n", ret
);
272 assert(r
->req
.aiocb
!= NULL
);
275 if (ret
|| r
->req
.io_canceled
) {
276 scsi_command_complete_noio(r
, ret
);
280 if (r
->req
.cmd
.buf
[0] == MODE_SELECT
&& r
->req
.cmd
.buf
[4] == 12 &&
281 s
->type
== TYPE_TAPE
) {
282 s
->blocksize
= (r
->buf
[9] << 16) | (r
->buf
[10] << 8) | r
->buf
[11];
283 DPRINTF("block size %d\n", s
->blocksize
);
286 scsi_command_complete_noio(r
, ret
);
289 /* Write data to a scsi device. Returns nonzero on failure.
290 The transfer may complete asynchronously. */
291 static void scsi_write_data(SCSIRequest
*req
)
293 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
294 SCSIDevice
*s
= r
->req
.dev
;
297 DPRINTF("scsi_write_data tag=0x%x\n", req
->tag
);
300 scsi_req_data(&r
->req
, r
->len
);
304 /* The request is used as the AIO opaque value, so add a ref. */
305 scsi_req_ref(&r
->req
);
306 ret
= execute_command(s
->conf
.blk
, r
, SG_DXFER_TO_DEV
, scsi_write_complete
);
308 scsi_command_complete_noio(r
, ret
);
312 /* Return a pointer to the data buffer. */
313 static uint8_t *scsi_get_buf(SCSIRequest
*req
)
315 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
320 /* Execute a scsi command. Returns the length of the data expected by the
321 command. This will be Positive for data transfers from the device
322 (eg. disk reads), negative for transfers to the device (eg. disk writes),
323 and zero if the command does not transfer any data. */
325 static int32_t scsi_send_command(SCSIRequest
*req
, uint8_t *cmd
)
327 SCSIGenericReq
*r
= DO_UPCAST(SCSIGenericReq
, req
, req
);
328 SCSIDevice
*s
= r
->req
.dev
;
332 DPRINTF("Command: data=0x%02x", cmd
[0]);
335 for (i
= 1; i
< r
->req
.cmd
.len
; i
++) {
336 printf(" 0x%02x", cmd
[i
]);
342 if (r
->req
.cmd
.xfer
== 0) {
346 /* The request is used as the AIO opaque value, so add a ref. */
347 scsi_req_ref(&r
->req
);
348 ret
= execute_command(s
->conf
.blk
, r
, SG_DXFER_NONE
,
349 scsi_command_complete
);
351 scsi_command_complete_noio(r
, ret
);
357 if (r
->buflen
!= r
->req
.cmd
.xfer
) {
359 r
->buf
= g_malloc(r
->req
.cmd
.xfer
);
360 r
->buflen
= r
->req
.cmd
.xfer
;
363 memset(r
->buf
, 0, r
->buflen
);
364 r
->len
= r
->req
.cmd
.xfer
;
365 if (r
->req
.cmd
.mode
== SCSI_XFER_TO_DEV
) {
367 return -r
->req
.cmd
.xfer
;
369 return r
->req
.cmd
.xfer
;
373 static int read_naa_id(const uint8_t *p
, uint64_t *p_wwn
)
377 if ((p
[1] & 0xF) == 3) {
378 /* NAA designator type */
382 *p_wwn
= ldq_be_p(p
+ 4);
386 if ((p
[1] & 0xF) == 8) {
387 /* SCSI name string designator type */
388 if (p
[3] < 20 || memcmp(&p
[4], "naa.", 4)) {
391 if (p
[3] > 20 && p
[24] != ',') {
395 for (i
= 8; i
< 24; i
++) {
396 char c
= toupper(p
[i
]);
397 c
-= (c
>= '0' && c
<= '9' ? '0' : 'A' - 10);
398 *p_wwn
= (*p_wwn
<< 4) | c
;
406 void scsi_generic_read_device_identification(SCSIDevice
*s
)
411 sg_io_hdr_t io_header
;
415 memset(cmd
, 0, sizeof(cmd
));
416 memset(buf
, 0, sizeof(buf
));
420 cmd
[4] = sizeof(buf
);
422 memset(&io_header
, 0, sizeof(io_header
));
423 io_header
.interface_id
= 'S';
424 io_header
.dxfer_direction
= SG_DXFER_FROM_DEV
;
425 io_header
.dxfer_len
= sizeof(buf
);
426 io_header
.dxferp
= buf
;
427 io_header
.cmdp
= cmd
;
428 io_header
.cmd_len
= sizeof(cmd
);
429 io_header
.mx_sb_len
= sizeof(sensebuf
);
430 io_header
.sbp
= sensebuf
;
431 io_header
.timeout
= 6000; /* XXX */
433 ret
= blk_ioctl(s
->conf
.blk
, SG_IO
, &io_header
);
434 if (ret
< 0 || io_header
.driver_status
|| io_header
.host_status
) {
438 len
= MIN((buf
[2] << 8) | buf
[3], sizeof(buf
) - 4);
439 for (i
= 0; i
+ 3 <= len
; ) {
440 const uint8_t *p
= &buf
[i
+ 4];
443 if (i
+ (p
[3] + 4) > len
) {
447 if ((p
[1] & 0x10) == 0) {
448 /* Associated with the logical unit */
449 if (read_naa_id(p
, &wwn
) == 0) {
452 } else if ((p
[1] & 0x10) == 0x10) {
453 /* Associated with the target port */
454 if (read_naa_id(p
, &wwn
) == 0) {
463 static int get_stream_blocksize(BlockBackend
*blk
)
468 sg_io_hdr_t io_header
;
471 memset(cmd
, 0, sizeof(cmd
));
472 memset(buf
, 0, sizeof(buf
));
474 cmd
[4] = sizeof(buf
);
476 memset(&io_header
, 0, sizeof(io_header
));
477 io_header
.interface_id
= 'S';
478 io_header
.dxfer_direction
= SG_DXFER_FROM_DEV
;
479 io_header
.dxfer_len
= sizeof(buf
);
480 io_header
.dxferp
= buf
;
481 io_header
.cmdp
= cmd
;
482 io_header
.cmd_len
= sizeof(cmd
);
483 io_header
.mx_sb_len
= sizeof(sensebuf
);
484 io_header
.sbp
= sensebuf
;
485 io_header
.timeout
= 6000; /* XXX */
487 ret
= blk_ioctl(blk
, SG_IO
, &io_header
);
488 if (ret
< 0 || io_header
.driver_status
|| io_header
.host_status
) {
491 return (buf
[9] << 16) | (buf
[10] << 8) | buf
[11];
494 static void scsi_generic_reset(DeviceState
*dev
)
496 SCSIDevice
*s
= SCSI_DEVICE(dev
);
498 scsi_device_purge_requests(s
, SENSE_CODE(RESET
));
501 static void scsi_generic_realize(SCSIDevice
*s
, Error
**errp
)
505 struct sg_scsi_id scsiid
;
508 error_setg(errp
, "drive property not set");
512 if (blk_get_on_error(s
->conf
.blk
, 0) != BLOCKDEV_ON_ERROR_ENOSPC
) {
513 error_setg(errp
, "Device doesn't support drive option werror");
516 if (blk_get_on_error(s
->conf
.blk
, 1) != BLOCKDEV_ON_ERROR_REPORT
) {
517 error_setg(errp
, "Device doesn't support drive option rerror");
521 /* check we are using a driver managing SG_IO (version 3 and after */
522 rc
= blk_ioctl(s
->conf
.blk
, SG_GET_VERSION_NUM
, &sg_version
);
524 error_setg(errp
, "cannot get SG_IO version number: %s. "
525 "Is this a SCSI device?",
529 if (sg_version
< 30000) {
530 error_setg(errp
, "scsi generic interface too old");
534 /* get LUN of the /dev/sg? */
535 if (blk_ioctl(s
->conf
.blk
, SG_GET_SCSI_ID
, &scsiid
)) {
536 error_setg(errp
, "SG_GET_SCSI_ID ioctl failed");
540 /* define device state */
541 s
->type
= scsiid
.scsi_type
;
542 DPRINTF("device type %d\n", s
->type
);
546 s
->blocksize
= get_stream_blocksize(s
->conf
.blk
);
547 if (s
->blocksize
== -1) {
552 /* Make a guess for block devices, we'll fix it when the guest sends.
553 * READ CAPACITY. If they don't, they likely would assume these sizes
554 * anyway. (TODO: they could also send MODE SENSE).
565 DPRINTF("block size %d\n", s
->blocksize
);
567 scsi_generic_read_device_identification(s
);
570 const SCSIReqOps scsi_generic_req_ops
= {
571 .size
= sizeof(SCSIGenericReq
),
572 .free_req
= scsi_free_request
,
573 .send_command
= scsi_send_command
,
574 .read_data
= scsi_read_data
,
575 .write_data
= scsi_write_data
,
576 .get_buf
= scsi_get_buf
,
577 .load_request
= scsi_generic_load_request
,
578 .save_request
= scsi_generic_save_request
,
581 static SCSIRequest
*scsi_new_request(SCSIDevice
*d
, uint32_t tag
, uint32_t lun
,
582 uint8_t *buf
, void *hba_private
)
584 return scsi_req_alloc(&scsi_generic_req_ops
, d
, tag
, lun
, hba_private
);
587 static Property scsi_generic_properties
[] = {
588 DEFINE_PROP_DRIVE("drive", SCSIDevice
, conf
.blk
),
589 DEFINE_PROP_END_OF_LIST(),
592 static int scsi_generic_parse_cdb(SCSIDevice
*dev
, SCSICommand
*cmd
,
593 uint8_t *buf
, void *hba_private
)
595 return scsi_bus_parse_cdb(dev
, cmd
, buf
, hba_private
);
598 static void scsi_generic_class_initfn(ObjectClass
*klass
, void *data
)
600 DeviceClass
*dc
= DEVICE_CLASS(klass
);
601 SCSIDeviceClass
*sc
= SCSI_DEVICE_CLASS(klass
);
603 sc
->realize
= scsi_generic_realize
;
604 sc
->alloc_req
= scsi_new_request
;
605 sc
->parse_cdb
= scsi_generic_parse_cdb
;
606 dc
->fw_name
= "disk";
607 dc
->desc
= "pass through generic scsi device (/dev/sg*)";
608 dc
->reset
= scsi_generic_reset
;
609 dc
->props
= scsi_generic_properties
;
610 dc
->vmsd
= &vmstate_scsi_device
;
613 static const TypeInfo scsi_generic_info
= {
614 .name
= "scsi-generic",
615 .parent
= TYPE_SCSI_DEVICE
,
616 .instance_size
= sizeof(SCSIDevice
),
617 .class_init
= scsi_generic_class_initfn
,
620 static void scsi_generic_register_types(void)
622 type_register_static(&scsi_generic_info
);
625 type_init(scsi_generic_register_types
)
627 #endif /* __linux__ */