esp: support 24-bit DMA
[qemu.git] / hw / scsi-disk.c
CommitLineData
2e5d83bb
PB
1/*
2 * SCSI Device emulation
3 *
4 * Copyright (c) 2006 CodeSourcery.
5 * Based on code by Fabrice Bellard
6 *
7 * Written by Paul Brook
ad3cea42
AT
8 * Modifications:
9 * 2009-Dec-12 Artyom Tarasenko : implemented stamdard inquiry for the case
10 * when the allocation length of CDB is smaller
11 * than 36.
12 * 2009-Oct-13 Artyom Tarasenko : implemented the block descriptor in the
13 * MODE SENSE response.
2e5d83bb 14 *
8e31bf38 15 * This code is licensed under the LGPL.
a917d384
PB
16 *
17 * Note that this file only handles the SCSI architecture model and device
1d4db89c
AZ
18 * commands. Emulation of interface/link layer protocols is handled by
19 * the host adapter emulator.
2e5d83bb
PB
20 */
21
22//#define DEBUG_SCSI
23
24#ifdef DEBUG_SCSI
001faf32
BS
25#define DPRINTF(fmt, ...) \
26do { printf("scsi-disk: " fmt , ## __VA_ARGS__); } while (0)
2e5d83bb 27#else
001faf32 28#define DPRINTF(fmt, ...) do {} while(0)
2e5d83bb
PB
29#endif
30
87ecb68b 31#include "qemu-common.h"
2f792016 32#include "qemu-error.h"
43b443b6 33#include "scsi.h"
0d65e1f8 34#include "scsi-defs.h"
666daa68 35#include "sysemu.h"
2446333c 36#include "blockdev.h"
9db1c0f7 37#include "hw/block-common.h"
5d0d2467 38#include "dma.h"
22864256 39
336a6915
PB
40#ifdef __linux
41#include <scsi/sg.h>
42#endif
43
f0f72ffe 44#define SCSI_DMA_BUF_SIZE 131072
57575058 45#define SCSI_MAX_INQUIRY_LEN 256
380feaff 46#define SCSI_MAX_MODE_LEN 256
a917d384 47
d52affa7
GH
48typedef struct SCSIDiskState SCSIDiskState;
49
4c41d2ef
GH
50typedef struct SCSIDiskReq {
51 SCSIRequest req;
a917d384 52 /* Both sector and sector_count are in terms of qemu 512 byte blocks. */
e035b43d
AL
53 uint64_t sector;
54 uint32_t sector_count;
7285477a 55 uint32_t buflen;
a0e66a69 56 bool started;
c87c0672
AL
57 struct iovec iov;
58 QEMUIOVector qiov;
a597e79c 59 BlockAcctCookie acct;
4c41d2ef 60} SCSIDiskReq;
a917d384 61
bfe3d7ac 62#define SCSI_DISK_F_REMOVABLE 0
da8365db 63#define SCSI_DISK_F_DPOFUA 1
bfe3d7ac 64
d52affa7 65struct SCSIDiskState
a917d384 66{
d52affa7 67 SCSIDevice qdev;
bfe3d7ac 68 uint32_t features;
8a9c16f6 69 bool media_changed;
3c2f7c12 70 bool media_event;
4480de19 71 bool eject_request;
27395add 72 uint64_t wwn;
213189ab 73 QEMUBH *bh;
383b4d9b 74 char *version;
a0fef654 75 char *serial;
353815aa
DF
76 char *vendor;
77 char *product;
ece0d5e9 78 bool tray_open;
81b1008d 79 bool tray_locked;
2e5d83bb
PB
80};
81
71544d30 82static int scsi_handle_rw_error(SCSIDiskReq *r, int error);
5dba48a8 83
ad2d30f7 84static void scsi_free_request(SCSIRequest *req)
4d611c9a 85{
ad2d30f7
PB
86 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
87
7285477a
PB
88 if (r->iov.iov_base) {
89 qemu_vfree(r->iov.iov_base);
90 }
4d611c9a
PB
91}
92
b45ef674
PB
93/* Helper function for command completion with sense. */
94static void scsi_check_condition(SCSIDiskReq *r, SCSISense sense)
ed3a34a3 95{
02fa69b6
BS
96 DPRINTF("Command complete tag=0x%x sense=%d/%d/%d\n",
97 r->req.tag, sense.key, sense.asc, sense.ascq);
b45ef674
PB
98 scsi_req_build_sense(&r->req, sense);
99 scsi_req_complete(&r->req, CHECK_CONDITION);
4d611c9a
PB
100}
101
102/* Cancel a pending data transfer. */
5c6c0e51 103static void scsi_cancel_io(SCSIRequest *req)
4d611c9a 104{
5c6c0e51
HR
105 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
106
107 DPRINTF("Cancel tag=0x%x\n", req->tag);
108 if (r->req.aiocb) {
109 bdrv_aio_cancel(r->req.aiocb);
c7bae6a7
PB
110
111 /* This reference was left in by scsi_*_data. We take ownership of
112 * it the moment scsi_req_cancel is called, independent of whether
113 * bdrv_aio_cancel completes the request or not. */
114 scsi_req_unref(&r->req);
a917d384 115 }
5c6c0e51 116 r->req.aiocb = NULL;
a917d384
PB
117}
118
43b978b9 119static uint32_t scsi_init_iovec(SCSIDiskReq *r, size_t size)
103b40f5 120{
7285477a
PB
121 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
122
123 if (!r->iov.iov_base) {
43b978b9 124 r->buflen = size;
44740c38 125 r->iov.iov_base = qemu_blockalign(s->qdev.conf.bs, r->buflen);
7285477a
PB
126 }
127 r->iov.iov_len = MIN(r->sector_count * 512, r->buflen);
103b40f5
PB
128 qemu_iovec_init_external(&r->qiov, &r->iov, 1);
129 return r->qiov.size / 512;
130}
131
43b978b9
PB
132static void scsi_disk_save_request(QEMUFile *f, SCSIRequest *req)
133{
134 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
135
136 qemu_put_be64s(f, &r->sector);
137 qemu_put_be32s(f, &r->sector_count);
138 qemu_put_be32s(f, &r->buflen);
18eef3bc
GH
139 if (r->buflen) {
140 if (r->req.cmd.mode == SCSI_XFER_TO_DEV) {
141 qemu_put_buffer(f, r->iov.iov_base, r->iov.iov_len);
142 } else if (!req->retry) {
143 uint32_t len = r->iov.iov_len;
144 qemu_put_be32s(f, &len);
145 qemu_put_buffer(f, r->iov.iov_base, r->iov.iov_len);
146 }
43b978b9
PB
147 }
148}
149
150static void scsi_disk_load_request(QEMUFile *f, SCSIRequest *req)
151{
152 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
153
154 qemu_get_be64s(f, &r->sector);
155 qemu_get_be32s(f, &r->sector_count);
156 qemu_get_be32s(f, &r->buflen);
157 if (r->buflen) {
158 scsi_init_iovec(r, r->buflen);
159 if (r->req.cmd.mode == SCSI_XFER_TO_DEV) {
160 qemu_get_buffer(f, r->iov.iov_base, r->iov.iov_len);
18eef3bc
GH
161 } else if (!r->req.retry) {
162 uint32_t len;
163 qemu_get_be32s(f, &len);
164 r->iov.iov_len = len;
165 assert(r->iov.iov_len <= r->buflen);
166 qemu_get_buffer(f, r->iov.iov_base, r->iov.iov_len);
43b978b9
PB
167 }
168 }
169
170 qemu_iovec_init_external(&r->qiov, &r->iov, 1);
171}
172
c1b35247 173static void scsi_aio_complete(void *opaque, int ret)
5d0d2467
PB
174{
175 SCSIDiskReq *r = (SCSIDiskReq *)opaque;
176 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
177
46e3f30e
PB
178 assert(r->req.aiocb != NULL);
179 r->req.aiocb = NULL;
5d0d2467
PB
180 bdrv_acct_done(s->qdev.conf.bs, &r->acct);
181
80624c93 182 if (ret < 0) {
5d0d2467
PB
183 if (scsi_handle_rw_error(r, -ret)) {
184 goto done;
185 }
186 }
187
5d0d2467
PB
188 scsi_req_complete(&r->req, GOOD);
189
190done:
b8aba8d7
PB
191 if (!r->req.io_canceled) {
192 scsi_req_unref(&r->req);
193 }
5d0d2467
PB
194}
195
7e8c49c5
PB
196static bool scsi_is_cmd_fua(SCSICommand *cmd)
197{
198 switch (cmd->buf[0]) {
199 case READ_10:
200 case READ_12:
201 case READ_16:
202 case WRITE_10:
203 case WRITE_12:
204 case WRITE_16:
205 return (cmd->buf[1] & 8) != 0;
206
7f64f8e2
PB
207 case VERIFY_10:
208 case VERIFY_12:
209 case VERIFY_16:
7e8c49c5
PB
210 case WRITE_VERIFY_10:
211 case WRITE_VERIFY_12:
212 case WRITE_VERIFY_16:
213 return true;
214
215 case READ_6:
216 case WRITE_6:
217 default:
218 return false;
219 }
220}
221
222static void scsi_write_do_fua(SCSIDiskReq *r)
223{
224 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
225
226 if (scsi_is_cmd_fua(&r->req.cmd)) {
227 bdrv_acct_start(s->qdev.conf.bs, &r->acct, 0, BDRV_ACCT_FLUSH);
c1b35247 228 r->req.aiocb = bdrv_aio_flush(s->qdev.conf.bs, scsi_aio_complete, r);
7e8c49c5
PB
229 return;
230 }
231
232 scsi_req_complete(&r->req, GOOD);
233 if (!r->req.io_canceled) {
234 scsi_req_unref(&r->req);
235 }
236}
237
b77912a7 238static void scsi_dma_complete(void *opaque, int ret)
a917d384 239{
4c41d2ef 240 SCSIDiskReq *r = (SCSIDiskReq *)opaque;
a597e79c 241 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
a917d384 242
46e3f30e
PB
243 assert(r->req.aiocb != NULL);
244 r->req.aiocb = NULL;
245 bdrv_acct_done(s->qdev.conf.bs, &r->acct);
a597e79c 246
80624c93 247 if (ret < 0) {
71544d30 248 if (scsi_handle_rw_error(r, -ret)) {
c7bae6a7 249 goto done;
5dba48a8 250 }
4d611c9a 251 }
5dba48a8 252
b77912a7
PB
253 r->sector += r->sector_count;
254 r->sector_count = 0;
7e8c49c5
PB
255 if (r->req.cmd.mode == SCSI_XFER_TO_DEV) {
256 scsi_write_do_fua(r);
257 return;
258 } else {
259 scsi_req_complete(&r->req, GOOD);
260 }
c7bae6a7
PB
261
262done:
263 if (!r->req.io_canceled) {
264 scsi_req_unref(&r->req);
265 }
4d611c9a
PB
266}
267
b77912a7 268static void scsi_read_complete(void * opaque, int ret)
0a4ac106
PB
269{
270 SCSIDiskReq *r = (SCSIDiskReq *)opaque;
271 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
b77912a7 272 int n;
0a4ac106 273
46e3f30e
PB
274 assert(r->req.aiocb != NULL);
275 r->req.aiocb = NULL;
276 bdrv_acct_done(s->qdev.conf.bs, &r->acct);
0a4ac106
PB
277
278 if (ret < 0) {
71544d30 279 if (scsi_handle_rw_error(r, -ret)) {
c7bae6a7 280 goto done;
0a4ac106
PB
281 }
282 }
283
b77912a7
PB
284 DPRINTF("Data ready tag=0x%x len=%zd\n", r->req.tag, r->qiov.size);
285
286 n = r->qiov.size / 512;
287 r->sector += n;
288 r->sector_count -= n;
289 scsi_req_data(&r->req, r->qiov.size);
c7bae6a7
PB
290
291done:
292 if (!r->req.io_canceled) {
293 scsi_req_unref(&r->req);
294 }
0a4ac106 295}
5dba48a8 296
ac668426
PB
297/* Actually issue a read to the block device. */
298static void scsi_do_read(void *opaque, int ret)
299{
300 SCSIDiskReq *r = opaque;
301 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
302 uint32_t n;
303
304 if (r->req.aiocb != NULL) {
305 r->req.aiocb = NULL;
306 bdrv_acct_done(s->qdev.conf.bs, &r->acct);
307 }
308
309 if (ret < 0) {
310 if (scsi_handle_rw_error(r, -ret)) {
311 goto done;
312 }
313 }
314
31e8fd86
PB
315 if (r->req.io_canceled) {
316 return;
317 }
318
319 /* The request is used as the AIO opaque value, so add a ref. */
320 scsi_req_ref(&r->req);
321
ac668426
PB
322 if (r->req.sg) {
323 dma_acct_start(s->qdev.conf.bs, &r->acct, r->req.sg, BDRV_ACCT_READ);
324 r->req.resid -= r->req.sg->size;
325 r->req.aiocb = dma_bdrv_read(s->qdev.conf.bs, r->req.sg, r->sector,
326 scsi_dma_complete, r);
327 } else {
328 n = scsi_init_iovec(r, SCSI_DMA_BUF_SIZE);
329 bdrv_acct_start(s->qdev.conf.bs, &r->acct, n * BDRV_SECTOR_SIZE, BDRV_ACCT_READ);
330 r->req.aiocb = bdrv_aio_readv(s->qdev.conf.bs, r->sector, &r->qiov, n,
331 scsi_read_complete, r);
332 }
333
334done:
335 if (!r->req.io_canceled) {
336 scsi_req_unref(&r->req);
337 }
338}
339
5c6c0e51
HR
340/* Read more data from scsi device into buffer. */
341static void scsi_read_data(SCSIRequest *req)
2e5d83bb 342{
5c6c0e51 343 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
5dba48a8 344 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
ac668426 345 bool first;
2e5d83bb 346
a917d384
PB
347 DPRINTF("Read sector_count=%d\n", r->sector_count);
348 if (r->sector_count == 0) {
b45ef674
PB
349 /* This also clears the sense buffer for REQUEST SENSE. */
350 scsi_req_complete(&r->req, GOOD);
a917d384 351 return;
2e5d83bb
PB
352 }
353
6fa2c95f
SH
354 /* No data transfer may already be in progress */
355 assert(r->req.aiocb == NULL);
356
c7bae6a7
PB
357 /* The request is used as the AIO opaque value, so add a ref. */
358 scsi_req_ref(&r->req);
efb9ee02
HR
359 if (r->req.cmd.mode == SCSI_XFER_TO_DEV) {
360 DPRINTF("Data transfer direction invalid\n");
361 scsi_read_complete(r, -EINVAL);
362 return;
363 }
364
a1aff5bf
MA
365 if (s->tray_open) {
366 scsi_read_complete(r, -ENOMEDIUM);
c7bae6a7 367 return;
a1aff5bf 368 }
c7bae6a7 369
ac668426 370 first = !r->started;
a0e66a69 371 r->started = true;
ac668426
PB
372 if (first && scsi_is_cmd_fua(&r->req.cmd)) {
373 bdrv_acct_start(s->qdev.conf.bs, &r->acct, 0, BDRV_ACCT_FLUSH);
374 r->req.aiocb = bdrv_aio_flush(s->qdev.conf.bs, scsi_do_read, r);
5d0d2467 375 } else {
ac668426 376 scsi_do_read(r, 0);
5d0d2467 377 }
2e5d83bb
PB
378}
379
c7bae6a7
PB
380/*
381 * scsi_handle_rw_error has two return values. 0 means that the error
382 * must be ignored, 1 means that the error has been processed and the
383 * caller should not do anything else for this request. Note that
384 * scsi_handle_rw_error always manages its reference counts, independent
385 * of the return value.
386 */
71544d30 387static int scsi_handle_rw_error(SCSIDiskReq *r, int error)
5dba48a8 388{
71544d30 389 int is_read = (r->req.cmd.xfer == SCSI_XFER_FROM_DEV);
4c41d2ef 390 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
44740c38 391 BlockErrorAction action = bdrv_get_on_error(s->qdev.conf.bs, is_read);
ea8a5d7f 392
380f640f 393 if (action == BLOCK_ERR_IGNORE) {
329c0a48 394 bdrv_emit_qmp_error_event(s->qdev.conf.bs, BDRV_ACTION_IGNORE, is_read);
ea8a5d7f 395 return 0;
380f640f 396 }
ea8a5d7f
AL
397
398 if ((error == ENOSPC && action == BLOCK_ERR_STOP_ENOSPC)
399 || action == BLOCK_ERR_STOP_ANY) {
5dba48a8 400
329c0a48 401 bdrv_emit_qmp_error_event(s->qdev.conf.bs, BDRV_ACTION_STOP, is_read);
0461d5a6 402 vm_stop(RUN_STATE_IO_ERROR);
44740c38 403 bdrv_iostatus_set_err(s->qdev.conf.bs, error);
71544d30 404 scsi_req_retry(&r->req);
ea8a5d7f 405 } else {
efb9ee02 406 switch (error) {
7e218df5
PB
407 case ENOMEDIUM:
408 scsi_check_condition(r, SENSE_CODE(NO_MEDIUM));
409 break;
efb9ee02 410 case ENOMEM:
b45ef674 411 scsi_check_condition(r, SENSE_CODE(TARGET_FAILURE));
efb9ee02
HR
412 break;
413 case EINVAL:
b45ef674 414 scsi_check_condition(r, SENSE_CODE(INVALID_FIELD));
efb9ee02
HR
415 break;
416 default:
b45ef674 417 scsi_check_condition(r, SENSE_CODE(IO_ERROR));
efb9ee02 418 break;
a1f0cce2 419 }
329c0a48 420 bdrv_emit_qmp_error_event(s->qdev.conf.bs, BDRV_ACTION_REPORT, is_read);
ea8a5d7f 421 }
ea8a5d7f
AL
422 return 1;
423}
424
4d611c9a
PB
425static void scsi_write_complete(void * opaque, int ret)
426{
4c41d2ef 427 SCSIDiskReq *r = (SCSIDiskReq *)opaque;
a597e79c 428 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
ea8a5d7f
AL
429 uint32_t n;
430
8e321cc6
PB
431 if (r->req.aiocb != NULL) {
432 r->req.aiocb = NULL;
44740c38 433 bdrv_acct_done(s->qdev.conf.bs, &r->acct);
8e321cc6 434 }
a597e79c 435
80624c93 436 if (ret < 0) {
71544d30 437 if (scsi_handle_rw_error(r, -ret)) {
c7bae6a7 438 goto done;
5dba48a8 439 }
4d611c9a
PB
440 }
441
103b40f5 442 n = r->qiov.size / 512;
ea8a5d7f
AL
443 r->sector += n;
444 r->sector_count -= n;
a917d384 445 if (r->sector_count == 0) {
7e8c49c5
PB
446 scsi_write_do_fua(r);
447 return;
a917d384 448 } else {
43b978b9 449 scsi_init_iovec(r, SCSI_DMA_BUF_SIZE);
79fb50bb 450 DPRINTF("Write complete tag=0x%x more=%zd\n", r->req.tag, r->qiov.size);
103b40f5 451 scsi_req_data(&r->req, r->qiov.size);
4d611c9a 452 }
c7bae6a7
PB
453
454done:
455 if (!r->req.io_canceled) {
456 scsi_req_unref(&r->req);
457 }
4d611c9a
PB
458}
459
42741212 460static void scsi_write_data(SCSIRequest *req)
ea8a5d7f 461{
5c6c0e51 462 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
4c41d2ef 463 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
ea8a5d7f
AL
464 uint32_t n;
465
6fa2c95f
SH
466 /* No data transfer may already be in progress */
467 assert(r->req.aiocb == NULL);
468
c7bae6a7
PB
469 /* The request is used as the AIO opaque value, so add a ref. */
470 scsi_req_ref(&r->req);
efb9ee02
HR
471 if (r->req.cmd.mode != SCSI_XFER_TO_DEV) {
472 DPRINTF("Data transfer direction invalid\n");
473 scsi_write_complete(r, -EINVAL);
42741212 474 return;
efb9ee02
HR
475 }
476
5d0d2467
PB
477 if (!r->req.sg && !r->qiov.size) {
478 /* Called for the first time. Ask the driver to send us more data. */
a0e66a69 479 r->started = true;
5d0d2467
PB
480 scsi_write_complete(r, 0);
481 return;
482 }
483 if (s->tray_open) {
484 scsi_write_complete(r, -ENOMEDIUM);
485 return;
486 }
487
7f64f8e2
PB
488 if (r->req.cmd.buf[0] == VERIFY_10 || r->req.cmd.buf[0] == VERIFY_12 ||
489 r->req.cmd.buf[0] == VERIFY_16) {
490 if (r->req.sg) {
491 scsi_dma_complete(r, 0);
492 } else {
493 scsi_write_complete(r, 0);
494 }
495 return;
496 }
497
5d0d2467
PB
498 if (r->req.sg) {
499 dma_acct_start(s->qdev.conf.bs, &r->acct, r->req.sg, BDRV_ACCT_WRITE);
500 r->req.resid -= r->req.sg->size;
501 r->req.aiocb = dma_bdrv_write(s->qdev.conf.bs, r->req.sg, r->sector,
502 scsi_dma_complete, r);
503 } else {
504 n = r->qiov.size / 512;
44740c38
PB
505 bdrv_acct_start(s->qdev.conf.bs, &r->acct, n * BDRV_SECTOR_SIZE, BDRV_ACCT_WRITE);
506 r->req.aiocb = bdrv_aio_writev(s->qdev.conf.bs, r->sector, &r->qiov, n,
103b40f5 507 scsi_write_complete, r);
ea8a5d7f 508 }
a917d384 509}
2e5d83bb 510
a917d384 511/* Return a pointer to the data buffer. */
5c6c0e51 512static uint8_t *scsi_get_buf(SCSIRequest *req)
a917d384 513{
5c6c0e51 514 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
2e5d83bb 515
3f4cb3d3 516 return (uint8_t *)r->iov.iov_base;
2e5d83bb
PB
517}
518
0b06c059
GH
519static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf)
520{
383b4d9b 521 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, req->dev);
0b06c059 522 int buflen = 0;
82579390 523 int start;
0b06c059 524
0b06c059
GH
525 if (req->cmd.buf[1] & 0x1) {
526 /* Vital product data */
527 uint8_t page_code = req->cmd.buf[2];
0b06c059 528
e39be482 529 outbuf[buflen++] = s->qdev.type & 0x1f;
0b06c059
GH
530 outbuf[buflen++] = page_code ; // this page
531 outbuf[buflen++] = 0x00;
82579390
PB
532 outbuf[buflen++] = 0x00;
533 start = buflen;
0b06c059
GH
534
535 switch (page_code) {
536 case 0x00: /* Supported page codes, mandatory */
39d98982 537 {
0b06c059
GH
538 DPRINTF("Inquiry EVPD[Supported pages] "
539 "buffer size %zd\n", req->cmd.xfer);
0b06c059 540 outbuf[buflen++] = 0x00; // list of supported pages (this page)
f01b5931 541 if (s->serial) {
3e1c0c9a 542 outbuf[buflen++] = 0x80; // unit serial number
f01b5931 543 }
0b06c059 544 outbuf[buflen++] = 0x83; // device identification
f37bd73b 545 if (s->qdev.type == TYPE_DISK) {
ea3bd56f
CH
546 outbuf[buflen++] = 0xb0; // block limits
547 outbuf[buflen++] = 0xb2; // thin provisioning
39d98982 548 }
0b06c059 549 break;
39d98982 550 }
0b06c059
GH
551 case 0x80: /* Device serial number, optional */
552 {
3e1c0c9a 553 int l;
0b06c059 554
3e1c0c9a
HR
555 if (!s->serial) {
556 DPRINTF("Inquiry (EVPD[Serial number] not supported\n");
557 return -1;
558 }
559
560 l = strlen(s->serial);
f01b5931 561 if (l > 20) {
0b06c059 562 l = 20;
f01b5931 563 }
0b06c059
GH
564
565 DPRINTF("Inquiry EVPD[Serial number] "
566 "buffer size %zd\n", req->cmd.xfer);
a0fef654 567 memcpy(outbuf+buflen, s->serial, l);
0b06c059
GH
568 buflen += l;
569 break;
570 }
571
572 case 0x83: /* Device identification page, mandatory */
573 {
fd930791
PB
574 const char *str = s->serial ?: bdrv_get_device_name(s->qdev.conf.bs);
575 int max_len = s->serial ? 20 : 255 - 8;
576 int id_len = strlen(str);
0b06c059 577
f01b5931 578 if (id_len > max_len) {
0b06c059 579 id_len = max_len;
f01b5931 580 }
0b06c059
GH
581 DPRINTF("Inquiry EVPD[Device identification] "
582 "buffer size %zd\n", req->cmd.xfer);
583
0b06c059
GH
584 outbuf[buflen++] = 0x2; // ASCII
585 outbuf[buflen++] = 0; // not officially assigned
586 outbuf[buflen++] = 0; // reserved
587 outbuf[buflen++] = id_len; // length of data following
fd930791 588 memcpy(outbuf+buflen, str, id_len);
0b06c059 589 buflen += id_len;
27395add
PB
590
591 if (s->wwn) {
592 outbuf[buflen++] = 0x1; // Binary
593 outbuf[buflen++] = 0x3; // NAA
594 outbuf[buflen++] = 0; // reserved
595 outbuf[buflen++] = 8;
596 stq_be_p(&outbuf[buflen], s->wwn);
597 buflen += 8;
598 }
0b06c059
GH
599 break;
600 }
ea3bd56f 601 case 0xb0: /* block limits */
ee3659e3 602 {
ea3bd56f
CH
603 unsigned int unmap_sectors =
604 s->qdev.conf.discard_granularity / s->qdev.blocksize;
8cfacf07
CH
605 unsigned int min_io_size =
606 s->qdev.conf.min_io_size / s->qdev.blocksize;
607 unsigned int opt_io_size =
608 s->qdev.conf.opt_io_size / s->qdev.blocksize;
ee3659e3 609
f37bd73b 610 if (s->qdev.type == TYPE_ROM) {
39d98982
HR
611 DPRINTF("Inquiry (EVPD[%02X] not supported for CDROM\n",
612 page_code);
613 return -1;
614 }
ee3659e3 615 /* required VPD size with unmap support */
82579390 616 buflen = 0x40;
ee3659e3
CH
617 memset(outbuf + 4, 0, buflen - 4);
618
619 /* optimal transfer length granularity */
620 outbuf[6] = (min_io_size >> 8) & 0xff;
621 outbuf[7] = min_io_size & 0xff;
622
623 /* optimal transfer length */
624 outbuf[12] = (opt_io_size >> 24) & 0xff;
625 outbuf[13] = (opt_io_size >> 16) & 0xff;
626 outbuf[14] = (opt_io_size >> 8) & 0xff;
627 outbuf[15] = opt_io_size & 0xff;
ea3bd56f
CH
628
629 /* optimal unmap granularity */
630 outbuf[28] = (unmap_sectors >> 24) & 0xff;
631 outbuf[29] = (unmap_sectors >> 16) & 0xff;
632 outbuf[30] = (unmap_sectors >> 8) & 0xff;
633 outbuf[31] = unmap_sectors & 0xff;
634 break;
635 }
636 case 0xb2: /* thin provisioning */
637 {
82579390 638 buflen = 8;
ea3bd56f 639 outbuf[4] = 0;
5222aaf2 640 outbuf[5] = 0xe0; /* unmap & write_same 10/16 all supported */
f644a290 641 outbuf[6] = s->qdev.conf.discard_granularity ? 2 : 1;
ea3bd56f 642 outbuf[7] = 0;
ee3659e3
CH
643 break;
644 }
0b06c059 645 default:
0b06c059
GH
646 return -1;
647 }
648 /* done with EVPD */
82579390
PB
649 assert(buflen - start <= 255);
650 outbuf[start - 1] = buflen - start;
0b06c059
GH
651 return buflen;
652 }
653
654 /* Standard INQUIRY data */
655 if (req->cmd.buf[2] != 0) {
0b06c059
GH
656 return -1;
657 }
658
659 /* PAGE CODE == 0 */
0b06c059 660 buflen = req->cmd.xfer;
f01b5931 661 if (buflen > SCSI_MAX_INQUIRY_LEN) {
0b06c059 662 buflen = SCSI_MAX_INQUIRY_LEN;
f01b5931 663 }
0b06c059
GH
664 memset(outbuf, 0, buflen);
665
f37bd73b 666 outbuf[0] = s->qdev.type & 0x1f;
bfe3d7ac 667 outbuf[1] = (s->features & (1 << SCSI_DISK_F_REMOVABLE)) ? 0x80 : 0;
353815aa
DF
668
669 strpadcpy((char *) &outbuf[16], 16, s->product, ' ');
670 strpadcpy((char *) &outbuf[8], 8, s->vendor, ' ');
671
314b1811 672 memset(&outbuf[32], 0, 4);
552fee93 673 memcpy(&outbuf[32], s->version, MIN(4, strlen(s->version)));
99aba0c4
CH
674 /*
675 * We claim conformance to SPC-3, which is required for guests
676 * to ask for modern features like READ CAPACITY(16) or the
677 * block characteristics VPD page by default. Not all of SPC-3
678 * is actually implemented, but we're good enough.
679 */
ee3659e3 680 outbuf[2] = 5;
0b06c059 681 outbuf[3] = 2; /* Format 2 */
ad3cea42
AT
682
683 if (buflen > 36) {
684 outbuf[4] = buflen - 5; /* Additional Length = (Len - 1) - 4 */
685 } else {
686 /* If the allocation length of CDB is too small,
687 the additional length is not adjusted */
688 outbuf[4] = 36 - 5;
689 }
690
0b06c059 691 /* Sync data transfer and TCQ. */
afd4030c 692 outbuf[7] = 0x10 | (req->bus->info->tcq ? 0x02 : 0);
0b06c059
GH
693 return buflen;
694}
695
430ee2f2
PB
696static inline bool media_is_dvd(SCSIDiskState *s)
697{
698 uint64_t nb_sectors;
699 if (s->qdev.type != TYPE_ROM) {
700 return false;
701 }
44740c38 702 if (!bdrv_is_inserted(s->qdev.conf.bs)) {
430ee2f2
PB
703 return false;
704 }
44740c38 705 bdrv_get_geometry(s->qdev.conf.bs, &nb_sectors);
430ee2f2
PB
706 return nb_sectors > CD_MAX_SECTORS;
707}
708
ceb792ef
PB
709static inline bool media_is_cd(SCSIDiskState *s)
710{
711 uint64_t nb_sectors;
712 if (s->qdev.type != TYPE_ROM) {
713 return false;
714 }
44740c38 715 if (!bdrv_is_inserted(s->qdev.conf.bs)) {
ceb792ef
PB
716 return false;
717 }
44740c38 718 bdrv_get_geometry(s->qdev.conf.bs, &nb_sectors);
ceb792ef
PB
719 return nb_sectors <= CD_MAX_SECTORS;
720}
721
1a4f0c3a
PB
722static int scsi_read_disc_information(SCSIDiskState *s, SCSIDiskReq *r,
723 uint8_t *outbuf)
724{
725 uint8_t type = r->req.cmd.buf[1] & 7;
726
727 if (s->qdev.type != TYPE_ROM) {
728 return -1;
729 }
730
731 /* Types 1/2 are only defined for Blu-Ray. */
732 if (type != 0) {
733 scsi_check_condition(r, SENSE_CODE(INVALID_FIELD));
734 return -1;
735 }
736
737 memset(outbuf, 0, 34);
738 outbuf[1] = 32;
739 outbuf[2] = 0xe; /* last session complete, disc finalized */
740 outbuf[3] = 1; /* first track on disc */
741 outbuf[4] = 1; /* # of sessions */
742 outbuf[5] = 1; /* first track of last session */
743 outbuf[6] = 1; /* last track of last session */
744 outbuf[7] = 0x20; /* unrestricted use */
745 outbuf[8] = 0x00; /* CD-ROM or DVD-ROM */
746 /* 9-10-11: most significant byte corresponding bytes 4-5-6 */
747 /* 12-23: not meaningful for CD-ROM or DVD-ROM */
748 /* 24-31: disc bar code */
749 /* 32: disc application code */
750 /* 33: number of OPC tables */
751
752 return 34;
753}
754
b6c251ab
PB
755static int scsi_read_dvd_structure(SCSIDiskState *s, SCSIDiskReq *r,
756 uint8_t *outbuf)
757{
ceb792ef
PB
758 static const int rds_caps_size[5] = {
759 [0] = 2048 + 4,
760 [1] = 4 + 4,
761 [3] = 188 + 4,
762 [4] = 2048 + 4,
763 };
764
765 uint8_t media = r->req.cmd.buf[1];
766 uint8_t layer = r->req.cmd.buf[6];
767 uint8_t format = r->req.cmd.buf[7];
768 int size = -1;
769
770 if (s->qdev.type != TYPE_ROM) {
771 return -1;
772 }
773 if (media != 0) {
774 scsi_check_condition(r, SENSE_CODE(INVALID_FIELD));
775 return -1;
776 }
777
778 if (format != 0xff) {
44740c38 779 if (s->tray_open || !bdrv_is_inserted(s->qdev.conf.bs)) {
ceb792ef
PB
780 scsi_check_condition(r, SENSE_CODE(NO_MEDIUM));
781 return -1;
782 }
783 if (media_is_cd(s)) {
784 scsi_check_condition(r, SENSE_CODE(INCOMPATIBLE_FORMAT));
785 return -1;
786 }
787 if (format >= ARRAY_SIZE(rds_caps_size)) {
788 return -1;
789 }
790 size = rds_caps_size[format];
791 memset(outbuf, 0, size);
792 }
793
794 switch (format) {
795 case 0x00: {
796 /* Physical format information */
797 uint64_t nb_sectors;
798 if (layer != 0) {
799 goto fail;
800 }
44740c38 801 bdrv_get_geometry(s->qdev.conf.bs, &nb_sectors);
ceb792ef
PB
802
803 outbuf[4] = 1; /* DVD-ROM, part version 1 */
804 outbuf[5] = 0xf; /* 120mm disc, minimum rate unspecified */
805 outbuf[6] = 1; /* one layer, read-only (per MMC-2 spec) */
806 outbuf[7] = 0; /* default densities */
807
808 stl_be_p(&outbuf[12], (nb_sectors >> 2) - 1); /* end sector */
809 stl_be_p(&outbuf[16], (nb_sectors >> 2) - 1); /* l0 end sector */
810 break;
811 }
812
813 case 0x01: /* DVD copyright information, all zeros */
814 break;
815
816 case 0x03: /* BCA information - invalid field for no BCA info */
817 return -1;
818
819 case 0x04: /* DVD disc manufacturing information, all zeros */
820 break;
821
822 case 0xff: { /* List capabilities */
823 int i;
824 size = 4;
825 for (i = 0; i < ARRAY_SIZE(rds_caps_size); i++) {
826 if (!rds_caps_size[i]) {
827 continue;
828 }
829 outbuf[size] = i;
830 outbuf[size + 1] = 0x40; /* Not writable, readable */
831 stw_be_p(&outbuf[size + 2], rds_caps_size[i]);
832 size += 4;
833 }
834 break;
835 }
836
837 default:
838 return -1;
839 }
840
841 /* Size of buffer, not including 2 byte size field */
842 stw_be_p(outbuf, size - 2);
843 return size;
844
845fail:
b6c251ab
PB
846 return -1;
847}
848
3c2f7c12 849static int scsi_event_status_media(SCSIDiskState *s, uint8_t *outbuf)
b6c251ab 850{
3c2f7c12
PB
851 uint8_t event_code, media_status;
852
853 media_status = 0;
854 if (s->tray_open) {
855 media_status = MS_TRAY_OPEN;
44740c38 856 } else if (bdrv_is_inserted(s->qdev.conf.bs)) {
3c2f7c12
PB
857 media_status = MS_MEDIA_PRESENT;
858 }
859
860 /* Event notification descriptor */
861 event_code = MEC_NO_CHANGE;
4480de19
PB
862 if (media_status != MS_TRAY_OPEN) {
863 if (s->media_event) {
864 event_code = MEC_NEW_MEDIA;
865 s->media_event = false;
866 } else if (s->eject_request) {
867 event_code = MEC_EJECT_REQUESTED;
868 s->eject_request = false;
869 }
3c2f7c12
PB
870 }
871
872 outbuf[0] = event_code;
873 outbuf[1] = media_status;
874
875 /* These fields are reserved, just clear them. */
876 outbuf[2] = 0;
877 outbuf[3] = 0;
878 return 4;
879}
880
881static int scsi_get_event_status_notification(SCSIDiskState *s, SCSIDiskReq *r,
882 uint8_t *outbuf)
883{
884 int size;
885 uint8_t *buf = r->req.cmd.buf;
886 uint8_t notification_class_request = buf[4];
887 if (s->qdev.type != TYPE_ROM) {
888 return -1;
889 }
890 if ((buf[1] & 1) == 0) {
891 /* asynchronous */
892 return -1;
893 }
894
895 size = 4;
896 outbuf[0] = outbuf[1] = 0;
897 outbuf[3] = 1 << GESN_MEDIA; /* supported events */
898 if (notification_class_request & (1 << GESN_MEDIA)) {
899 outbuf[2] = GESN_MEDIA;
900 size += scsi_event_status_media(s, &outbuf[size]);
901 } else {
902 outbuf[2] = 0x80;
903 }
904 stw_be_p(outbuf, size - 4);
905 return size;
b6c251ab
PB
906}
907
430ee2f2 908static int scsi_get_configuration(SCSIDiskState *s, uint8_t *outbuf)
b6c251ab 909{
430ee2f2
PB
910 int current;
911
b6c251ab
PB
912 if (s->qdev.type != TYPE_ROM) {
913 return -1;
914 }
430ee2f2
PB
915 current = media_is_dvd(s) ? MMC_PROFILE_DVD_ROM : MMC_PROFILE_CD_ROM;
916 memset(outbuf, 0, 40);
917 stl_be_p(&outbuf[0], 36); /* Bytes after the data length field */
918 stw_be_p(&outbuf[6], current);
919 /* outbuf[8] - outbuf[19]: Feature 0 - Profile list */
920 outbuf[10] = 0x03; /* persistent, current */
921 outbuf[11] = 8; /* two profiles */
922 stw_be_p(&outbuf[12], MMC_PROFILE_DVD_ROM);
923 outbuf[14] = (current == MMC_PROFILE_DVD_ROM);
924 stw_be_p(&outbuf[16], MMC_PROFILE_CD_ROM);
925 outbuf[18] = (current == MMC_PROFILE_CD_ROM);
926 /* outbuf[20] - outbuf[31]: Feature 1 - Core feature */
927 stw_be_p(&outbuf[20], 1);
928 outbuf[22] = 0x08 | 0x03; /* version 2, persistent, current */
929 outbuf[23] = 8;
930 stl_be_p(&outbuf[24], 1); /* SCSI */
931 outbuf[28] = 1; /* DBE = 1, mandatory */
932 /* outbuf[32] - outbuf[39]: Feature 3 - Removable media feature */
933 stw_be_p(&outbuf[32], 3);
934 outbuf[34] = 0x08 | 0x03; /* version 2, persistent, current */
935 outbuf[35] = 4;
936 outbuf[36] = 0x39; /* tray, load=1, eject=1, unlocked at powerup, lock=1 */
937 /* TODO: Random readable, CD read, DVD read, drive serial number,
938 power management */
939 return 40;
b6c251ab
PB
940}
941
942static int scsi_emulate_mechanism_status(SCSIDiskState *s, uint8_t *outbuf)
943{
944 if (s->qdev.type != TYPE_ROM) {
945 return -1;
946 }
947 memset(outbuf, 0, 8);
948 outbuf[5] = 1; /* CD-ROM */
949 return 8;
950}
951
cfc606da 952static int mode_sense_page(SCSIDiskState *s, int page, uint8_t **p_outbuf,
282ab04e 953 int page_control)
ebddfcbe 954{
a8f4bbe2
PB
955 static const int mode_sense_valid[0x3f] = {
956 [MODE_PAGE_HD_GEOMETRY] = (1 << TYPE_DISK),
957 [MODE_PAGE_FLEXIBLE_DISK_GEOMETRY] = (1 << TYPE_DISK),
958 [MODE_PAGE_CACHING] = (1 << TYPE_DISK) | (1 << TYPE_ROM),
a07c7dcd
PB
959 [MODE_PAGE_R_W_ERROR] = (1 << TYPE_DISK) | (1 << TYPE_ROM),
960 [MODE_PAGE_AUDIO_CTL] = (1 << TYPE_ROM),
a8f4bbe2
PB
961 [MODE_PAGE_CAPABILITIES] = (1 << TYPE_ROM),
962 };
ef405611
PB
963
964 uint8_t *p = *p_outbuf + 2;
965 int length;
ebddfcbe 966
a8f4bbe2
PB
967 if ((mode_sense_valid[page] & (1 << s->qdev.type)) == 0) {
968 return -1;
969 }
970
282ab04e
BK
971 /*
972 * If Changeable Values are requested, a mask denoting those mode parameters
973 * that are changeable shall be returned. As we currently don't support
974 * parameter changes via MODE_SELECT all bits are returned set to zero.
975 * The buffer was already menset to zero by the caller of this function.
ef405611
PB
976 *
977 * The offsets here are off by two compared to the descriptions in the
978 * SCSI specs, because those include a 2-byte header. This is unfortunate,
979 * but it is done so that offsets are consistent within our implementation
980 * of MODE SENSE and MODE SELECT. MODE SELECT has to deal with both
981 * 2-byte and 4-byte headers.
282ab04e 982 */
ebddfcbe 983 switch (page) {
67cc61e4 984 case MODE_PAGE_HD_GEOMETRY:
ef405611 985 length = 0x16;
282ab04e 986 if (page_control == 1) { /* Changeable Values */
cfc606da 987 break;
282ab04e 988 }
ebddfcbe 989 /* if a geometry hint is available, use it */
ef405611
PB
990 p[0] = (s->qdev.conf.cyls >> 16) & 0xff;
991 p[1] = (s->qdev.conf.cyls >> 8) & 0xff;
992 p[2] = s->qdev.conf.cyls & 0xff;
993 p[3] = s->qdev.conf.heads & 0xff;
ebddfcbe 994 /* Write precomp start cylinder, disabled */
ef405611
PB
995 p[4] = (s->qdev.conf.cyls >> 16) & 0xff;
996 p[5] = (s->qdev.conf.cyls >> 8) & 0xff;
997 p[6] = s->qdev.conf.cyls & 0xff;
ebddfcbe 998 /* Reduced current start cylinder, disabled */
ef405611
PB
999 p[7] = (s->qdev.conf.cyls >> 16) & 0xff;
1000 p[8] = (s->qdev.conf.cyls >> 8) & 0xff;
1001 p[9] = s->qdev.conf.cyls & 0xff;
ebddfcbe 1002 /* Device step rate [ns], 200ns */
ef405611
PB
1003 p[10] = 0;
1004 p[11] = 200;
ebddfcbe 1005 /* Landing zone cylinder */
ef405611
PB
1006 p[12] = 0xff;
1007 p[13] = 0xff;
ebddfcbe 1008 p[14] = 0xff;
ebddfcbe 1009 /* Medium rotation rate [rpm], 5400 rpm */
ef405611
PB
1010 p[18] = (5400 >> 8) & 0xff;
1011 p[19] = 5400 & 0xff;
cfc606da 1012 break;
ebddfcbe 1013
67cc61e4 1014 case MODE_PAGE_FLEXIBLE_DISK_GEOMETRY:
ef405611 1015 length = 0x1e;
282ab04e 1016 if (page_control == 1) { /* Changeable Values */
cfc606da 1017 break;
282ab04e 1018 }
ebddfcbe 1019 /* Transfer rate [kbit/s], 5Mbit/s */
ef405611
PB
1020 p[0] = 5000 >> 8;
1021 p[1] = 5000 & 0xff;
ebddfcbe 1022 /* if a geometry hint is available, use it */
ef405611
PB
1023 p[2] = s->qdev.conf.heads & 0xff;
1024 p[3] = s->qdev.conf.secs & 0xff;
1025 p[4] = s->qdev.blocksize >> 8;
1026 p[6] = (s->qdev.conf.cyls >> 8) & 0xff;
1027 p[7] = s->qdev.conf.cyls & 0xff;
1028 /* Write precomp start cylinder, disabled */
d252df48
MA
1029 p[8] = (s->qdev.conf.cyls >> 8) & 0xff;
1030 p[9] = s->qdev.conf.cyls & 0xff;
ef405611 1031 /* Reduced current start cylinder, disabled */
d252df48
MA
1032 p[10] = (s->qdev.conf.cyls >> 8) & 0xff;
1033 p[11] = s->qdev.conf.cyls & 0xff;
ebddfcbe 1034 /* Device step rate [100us], 100us */
ef405611
PB
1035 p[12] = 0;
1036 p[13] = 1;
ebddfcbe 1037 /* Device step pulse width [us], 1us */
ef405611 1038 p[14] = 1;
ebddfcbe 1039 /* Device head settle delay [100us], 100us */
ef405611
PB
1040 p[15] = 0;
1041 p[16] = 1;
ebddfcbe 1042 /* Motor on delay [0.1s], 0.1s */
ef405611 1043 p[17] = 1;
ebddfcbe 1044 /* Motor off delay [0.1s], 0.1s */
ef405611 1045 p[18] = 1;
ebddfcbe 1046 /* Medium rotation rate [rpm], 5400 rpm */
ef405611
PB
1047 p[26] = (5400 >> 8) & 0xff;
1048 p[27] = 5400 & 0xff;
cfc606da 1049 break;
ebddfcbe 1050
67cc61e4 1051 case MODE_PAGE_CACHING:
ef405611 1052 length = 0x12;
96c91bbf
PB
1053 if (page_control == 1 || /* Changeable Values */
1054 bdrv_enable_write_cache(s->qdev.conf.bs)) {
ef405611 1055 p[0] = 4; /* WCE */
ebddfcbe 1056 }
cfc606da 1057 break;
ebddfcbe 1058
a07c7dcd 1059 case MODE_PAGE_R_W_ERROR:
ef405611 1060 length = 10;
4f588b15
PB
1061 if (page_control == 1) { /* Changeable Values */
1062 break;
1063 }
ef405611 1064 p[0] = 0x80; /* Automatic Write Reallocation Enabled */
a07c7dcd 1065 if (s->qdev.type == TYPE_ROM) {
ef405611 1066 p[1] = 0x20; /* Read Retry Count */
a07c7dcd
PB
1067 }
1068 break;
1069
1070 case MODE_PAGE_AUDIO_CTL:
ef405611 1071 length = 14;
a07c7dcd
PB
1072 break;
1073
67cc61e4 1074 case MODE_PAGE_CAPABILITIES:
ef405611 1075 length = 0x14;
282ab04e 1076 if (page_control == 1) { /* Changeable Values */
cfc606da 1077 break;
282ab04e 1078 }
a07c7dcd 1079
ef405611
PB
1080 p[0] = 0x3b; /* CD-R & CD-RW read */
1081 p[1] = 0; /* Writing not supported */
1082 p[2] = 0x7f; /* Audio, composite, digital out,
ebddfcbe 1083 mode 2 form 1&2, multi session */
ef405611 1084 p[3] = 0xff; /* CD DA, DA accurate, RW supported,
ebddfcbe
GH
1085 RW corrected, C2 errors, ISRC,
1086 UPC, Bar code */
ef405611 1087 p[4] = 0x2d | (s->tray_locked ? 2 : 0);
ebddfcbe 1088 /* Locking supported, jumper present, eject, tray */
ef405611 1089 p[5] = 0; /* no volume & mute control, no
ebddfcbe 1090 changer */
ef405611
PB
1091 p[6] = (50 * 176) >> 8; /* 50x read speed */
1092 p[7] = (50 * 176) & 0xff;
1093 p[8] = 2 >> 8; /* Two volume levels */
1094 p[9] = 2 & 0xff;
1095 p[10] = 2048 >> 8; /* 2M buffer */
1096 p[11] = 2048 & 0xff;
1097 p[12] = (16 * 176) >> 8; /* 16x read speed current */
1098 p[13] = (16 * 176) & 0xff;
1099 p[16] = (16 * 176) >> 8; /* 16x write speed */
1100 p[17] = (16 * 176) & 0xff;
1101 p[18] = (16 * 176) >> 8; /* 16x write speed current */
ebddfcbe 1102 p[19] = (16 * 176) & 0xff;
cfc606da 1103 break;
ebddfcbe
GH
1104
1105 default:
cfc606da 1106 return -1;
ebddfcbe 1107 }
cfc606da 1108
ef405611
PB
1109 assert(length < 256);
1110 (*p_outbuf)[0] = page;
1111 (*p_outbuf)[1] = length;
1112 *p_outbuf += length + 2;
1113 return length + 2;
ebddfcbe
GH
1114}
1115
cfc606da 1116static int scsi_disk_emulate_mode_sense(SCSIDiskReq *r, uint8_t *outbuf)
ebddfcbe 1117{
cfc606da 1118 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
ebddfcbe 1119 uint64_t nb_sectors;
e590ecbe
PB
1120 bool dbd;
1121 int page, buflen, ret, page_control;
ebddfcbe 1122 uint8_t *p;
ce512ee1 1123 uint8_t dev_specific_param;
ebddfcbe 1124
e590ecbe 1125 dbd = (r->req.cmd.buf[1] & 0x8) != 0;
cfc606da
PB
1126 page = r->req.cmd.buf[2] & 0x3f;
1127 page_control = (r->req.cmd.buf[2] & 0xc0) >> 6;
aa2b1e89 1128 DPRINTF("Mode Sense(%d) (page %d, xfer %zd, page_control %d)\n",
cfc606da
PB
1129 (r->req.cmd.buf[0] == MODE_SENSE) ? 6 : 10, page, r->req.cmd.xfer, page_control);
1130 memset(outbuf, 0, r->req.cmd.xfer);
ebddfcbe
GH
1131 p = outbuf;
1132
e590ecbe 1133 if (s->qdev.type == TYPE_DISK) {
da8365db 1134 dev_specific_param = s->features & (1 << SCSI_DISK_F_DPOFUA) ? 0x10 : 0;
e590ecbe
PB
1135 if (bdrv_is_read_only(s->qdev.conf.bs)) {
1136 dev_specific_param |= 0x80; /* Readonly. */
1137 }
ce512ee1 1138 } else {
e590ecbe
PB
1139 /* MMC prescribes that CD/DVD drives have no block descriptors,
1140 * and defines no device-specific parameter. */
6a2de0f2 1141 dev_specific_param = 0x00;
e590ecbe 1142 dbd = true;
ce512ee1
BK
1143 }
1144
cfc606da 1145 if (r->req.cmd.buf[0] == MODE_SENSE) {
ce512ee1
BK
1146 p[1] = 0; /* Default media type. */
1147 p[2] = dev_specific_param;
1148 p[3] = 0; /* Block descriptor length. */
1149 p += 4;
1150 } else { /* MODE_SENSE_10 */
1151 p[2] = 0; /* Default media type. */
1152 p[3] = dev_specific_param;
1153 p[6] = p[7] = 0; /* Block descriptor length. */
1154 p += 8;
ebddfcbe 1155 }
ebddfcbe 1156
44740c38 1157 bdrv_get_geometry(s->qdev.conf.bs, &nb_sectors);
e590ecbe 1158 if (!dbd && nb_sectors) {
cfc606da 1159 if (r->req.cmd.buf[0] == MODE_SENSE) {
ce512ee1
BK
1160 outbuf[3] = 8; /* Block descriptor length */
1161 } else { /* MODE_SENSE_10 */
1162 outbuf[7] = 8; /* Block descriptor length */
1163 }
69377307 1164 nb_sectors /= (s->qdev.blocksize / 512);
f01b5931 1165 if (nb_sectors > 0xffffff) {
2488b740 1166 nb_sectors = 0;
f01b5931 1167 }
ebddfcbe
GH
1168 p[0] = 0; /* media density code */
1169 p[1] = (nb_sectors >> 16) & 0xff;
1170 p[2] = (nb_sectors >> 8) & 0xff;
1171 p[3] = nb_sectors & 0xff;
1172 p[4] = 0; /* reserved */
1173 p[5] = 0; /* bytes 5-7 are the sector size in bytes */
69377307 1174 p[6] = s->qdev.blocksize >> 8;
ebddfcbe
GH
1175 p[7] = 0;
1176 p += 8;
1177 }
1178
cfc606da
PB
1179 if (page_control == 3) {
1180 /* Saved Values */
1181 scsi_check_condition(r, SENSE_CODE(SAVING_PARAMS_NOT_SUPPORTED));
1182 return -1;
282ab04e
BK
1183 }
1184
cfc606da
PB
1185 if (page == 0x3f) {
1186 for (page = 0; page <= 0x3e; page++) {
1187 mode_sense_page(s, page, &p, page_control);
1188 }
1189 } else {
1190 ret = mode_sense_page(s, page, &p, page_control);
1191 if (ret == -1) {
1192 return -1;
1193 }
ebddfcbe
GH
1194 }
1195
1196 buflen = p - outbuf;
ce512ee1
BK
1197 /*
1198 * The mode data length field specifies the length in bytes of the
1199 * following data that is available to be transferred. The mode data
1200 * length does not include itself.
1201 */
cfc606da 1202 if (r->req.cmd.buf[0] == MODE_SENSE) {
ce512ee1
BK
1203 outbuf[0] = buflen - 1;
1204 } else { /* MODE_SENSE_10 */
1205 outbuf[0] = ((buflen - 2) >> 8) & 0xff;
1206 outbuf[1] = (buflen - 2) & 0xff;
1207 }
ebddfcbe
GH
1208 return buflen;
1209}
1210
02880f43
GH
1211static int scsi_disk_emulate_read_toc(SCSIRequest *req, uint8_t *outbuf)
1212{
1213 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, req->dev);
02880f43
GH
1214 int start_track, format, msf, toclen;
1215 uint64_t nb_sectors;
1216
1217 msf = req->cmd.buf[1] & 2;
1218 format = req->cmd.buf[2] & 0xf;
1219 start_track = req->cmd.buf[6];
44740c38 1220 bdrv_get_geometry(s->qdev.conf.bs, &nb_sectors);
02880f43 1221 DPRINTF("Read TOC (track %d format %d msf %d)\n", start_track, format, msf >> 1);
69377307 1222 nb_sectors /= s->qdev.blocksize / 512;
02880f43
GH
1223 switch (format) {
1224 case 0:
1225 toclen = cdrom_read_toc(nb_sectors, outbuf, msf, start_track);
1226 break;
1227 case 1:
1228 /* multi session : only a single session defined */
1229 toclen = 12;
1230 memset(outbuf, 0, 12);
1231 outbuf[1] = 0x0a;
1232 outbuf[2] = 0x01;
1233 outbuf[3] = 0x01;
1234 break;
1235 case 2:
1236 toclen = cdrom_read_toc_raw(nb_sectors, outbuf, msf, start_track);
1237 break;
1238 default:
1239 return -1;
1240 }
02880f43
GH
1241 return toclen;
1242}
1243
68bb01f3 1244static int scsi_disk_emulate_start_stop(SCSIDiskReq *r)
bfd52647
MA
1245{
1246 SCSIRequest *req = &r->req;
1247 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, req->dev);
1248 bool start = req->cmd.buf[4] & 1;
1249 bool loej = req->cmd.buf[4] & 2; /* load on start, eject on !start */
ae5708b3
RS
1250 int pwrcnd = req->cmd.buf[4] & 0xf0;
1251
1252 if (pwrcnd) {
1253 /* eject/load only happens for power condition == 0 */
1254 return 0;
1255 }
bfd52647 1256
b456a71c 1257 if ((s->features & (1 << SCSI_DISK_F_REMOVABLE)) && loej) {
68bb01f3
MA
1258 if (!start && !s->tray_open && s->tray_locked) {
1259 scsi_check_condition(r,
44740c38 1260 bdrv_is_inserted(s->qdev.conf.bs)
68bb01f3
MA
1261 ? SENSE_CODE(ILLEGAL_REQ_REMOVAL_PREVENTED)
1262 : SENSE_CODE(NOT_READY_REMOVAL_PREVENTED));
1263 return -1;
fdec4404 1264 }
d88b1819
LC
1265
1266 if (s->tray_open != !start) {
1267 bdrv_eject(s->qdev.conf.bs, !start);
1268 s->tray_open = !start;
1269 }
bfd52647 1270 }
68bb01f3 1271 return 0;
bfd52647
MA
1272}
1273
314a3299
PB
1274static void scsi_disk_emulate_read_data(SCSIRequest *req)
1275{
1276 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
1277 int buflen = r->iov.iov_len;
1278
1279 if (buflen) {
79fb50bb 1280 DPRINTF("Read buf_len=%d\n", buflen);
314a3299
PB
1281 r->iov.iov_len = 0;
1282 r->started = true;
1283 scsi_req_data(&r->req, buflen);
1284 return;
1285 }
1286
1287 /* This also clears the sense buffer for REQUEST SENSE. */
1288 scsi_req_complete(&r->req, GOOD);
1289}
1290
380feaff
PB
1291static int scsi_disk_check_mode_select(SCSIDiskState *s, int page,
1292 uint8_t *inbuf, int inlen)
1293{
1294 uint8_t mode_current[SCSI_MAX_MODE_LEN];
1295 uint8_t mode_changeable[SCSI_MAX_MODE_LEN];
1296 uint8_t *p;
1297 int len, expected_len, changeable_len, i;
1298
1299 /* The input buffer does not include the page header, so it is
1300 * off by 2 bytes.
1301 */
1302 expected_len = inlen + 2;
1303 if (expected_len > SCSI_MAX_MODE_LEN) {
1304 return -1;
1305 }
1306
1307 p = mode_current;
1308 memset(mode_current, 0, inlen + 2);
1309 len = mode_sense_page(s, page, &p, 0);
1310 if (len < 0 || len != expected_len) {
1311 return -1;
1312 }
1313
1314 p = mode_changeable;
1315 memset(mode_changeable, 0, inlen + 2);
1316 changeable_len = mode_sense_page(s, page, &p, 1);
1317 assert(changeable_len == len);
1318
1319 /* Check that unchangeable bits are the same as what MODE SENSE
1320 * would return.
1321 */
1322 for (i = 2; i < len; i++) {
1323 if (((mode_current[i] ^ inbuf[i - 2]) & ~mode_changeable[i]) != 0) {
1324 return -1;
1325 }
1326 }
1327 return 0;
1328}
1329
1330static void scsi_disk_apply_mode_select(SCSIDiskState *s, int page, uint8_t *p)
1331{
96c91bbf
PB
1332 switch (page) {
1333 case MODE_PAGE_CACHING:
1334 bdrv_set_enable_write_cache(s->qdev.conf.bs, (p[0] & 4) != 0);
1335 break;
1336
1337 default:
1338 break;
1339 }
380feaff
PB
1340}
1341
1342static int mode_select_pages(SCSIDiskReq *r, uint8_t *p, int len, bool change)
1343{
1344 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
1345
1346 while (len > 0) {
1347 int page, subpage, page_len;
1348
1349 /* Parse both possible formats for the mode page headers. */
1350 page = p[0] & 0x3f;
1351 if (p[0] & 0x40) {
1352 if (len < 4) {
1353 goto invalid_param_len;
1354 }
1355 subpage = p[1];
1356 page_len = lduw_be_p(&p[2]);
1357 p += 4;
1358 len -= 4;
1359 } else {
1360 if (len < 2) {
1361 goto invalid_param_len;
1362 }
1363 subpage = 0;
1364 page_len = p[1];
1365 p += 2;
1366 len -= 2;
1367 }
1368
1369 if (subpage) {
1370 goto invalid_param;
1371 }
1372 if (page_len > len) {
1373 goto invalid_param_len;
1374 }
1375
1376 if (!change) {
1377 if (scsi_disk_check_mode_select(s, page, p, page_len) < 0) {
1378 goto invalid_param;
1379 }
1380 } else {
1381 scsi_disk_apply_mode_select(s, page, p);
1382 }
1383
1384 p += page_len;
1385 len -= page_len;
1386 }
1387 return 0;
1388
1389invalid_param:
1390 scsi_check_condition(r, SENSE_CODE(INVALID_PARAM));
1391 return -1;
1392
1393invalid_param_len:
1394 scsi_check_condition(r, SENSE_CODE(INVALID_PARAM_LEN));
1395 return -1;
1396}
1397
1398static void scsi_disk_emulate_mode_select(SCSIDiskReq *r, uint8_t *inbuf)
1399{
1400 uint8_t *p = inbuf;
1401 int cmd = r->req.cmd.buf[0];
1402 int len = r->req.cmd.xfer;
1403 int hdr_len = (cmd == MODE_SELECT ? 4 : 8);
1404 int bd_len;
1405 int pass;
1406
1407 /* We only support PF=1, SP=0. */
1408 if ((r->req.cmd.buf[1] & 0x11) != 0x10) {
1409 goto invalid_field;
1410 }
1411
1412 if (len < hdr_len) {
1413 goto invalid_param_len;
1414 }
1415
1416 bd_len = (cmd == MODE_SELECT ? p[3] : lduw_be_p(&p[6]));
1417 len -= hdr_len;
1418 p += hdr_len;
1419 if (len < bd_len) {
1420 goto invalid_param_len;
1421 }
1422 if (bd_len != 0 && bd_len != 8) {
1423 goto invalid_param;
1424 }
1425
1426 len -= bd_len;
1427 p += bd_len;
1428
1429 /* Ensure no change is made if there is an error! */
1430 for (pass = 0; pass < 2; pass++) {
1431 if (mode_select_pages(r, p, len, pass == 1) < 0) {
1432 assert(pass == 0);
1433 return;
1434 }
1435 }
1436 scsi_req_complete(&r->req, GOOD);
1437 return;
1438
1439invalid_param:
1440 scsi_check_condition(r, SENSE_CODE(INVALID_PARAM));
1441 return;
1442
1443invalid_param_len:
1444 scsi_check_condition(r, SENSE_CODE(INVALID_PARAM_LEN));
1445 return;
1446
1447invalid_field:
1448 scsi_check_condition(r, SENSE_CODE(INVALID_FIELD));
1449 return;
1450}
1451
5222aaf2
PB
1452typedef struct UnmapCBData {
1453 SCSIDiskReq *r;
1454 uint8_t *inbuf;
1455 int count;
1456} UnmapCBData;
1457
1458static void scsi_unmap_complete(void *opaque, int ret)
1459{
1460 UnmapCBData *data = opaque;
1461 SCSIDiskReq *r = data->r;
1462 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev);
1463 uint64_t sector_num;
1464 uint32 nb_sectors;
1465
1466 r->req.aiocb = NULL;
1467 if (ret < 0) {
1468 if (scsi_handle_rw_error(r, -ret)) {
1469 goto done;
1470 }
1471 }
1472
1473 if (data->count > 0 && !r->req.io_canceled) {
1474 sector_num = ldq_be_p(&data->inbuf[0]);
1475 nb_sectors = ldl_be_p(&data->inbuf[8]) & 0xffffffffULL;
1476 if (sector_num > sector_num + nb_sectors ||
1477 sector_num + nb_sectors - 1 > s->qdev.max_lba) {
1478 scsi_check_condition(r, SENSE_CODE(LBA_OUT_OF_RANGE));
1479 goto done;
1480 }
1481
1482 r->req.aiocb = bdrv_aio_discard(s->qdev.conf.bs,
1483 sector_num * (s->qdev.blocksize / 512),
1484 nb_sectors * (s->qdev.blocksize / 512),
1485 scsi_unmap_complete, data);
1486 data->count--;
1487 data->inbuf += 16;
1488 return;
1489 }
1490
1491done:
1492 if (data->count == 0) {
1493 scsi_req_complete(&r->req, GOOD);
1494 }
1495 if (!r->req.io_canceled) {
1496 scsi_req_unref(&r->req);
1497 }
1498 g_free(data);
1499}
1500
1501static void scsi_disk_emulate_unmap(SCSIDiskReq *r, uint8_t *inbuf)
1502{
1503 uint8_t *p = inbuf;
1504 int len = r->req.cmd.xfer;
1505 UnmapCBData *data;
1506
1507 if (len < 8) {
1508 goto invalid_param_len;
1509 }
1510 if (len < lduw_be_p(&p[0]) + 2) {
1511 goto invalid_param_len;
1512 }
1513 if (len < lduw_be_p(&p[2]) + 8) {
1514 goto invalid_param_len;
1515 }
1516 if (lduw_be_p(&p[2]) & 15) {
1517 goto invalid_param_len;
1518 }
1519
1520 data = g_new0(UnmapCBData, 1);
1521 data->r = r;
1522 data->inbuf = &p[8];
1523 data->count = lduw_be_p(&p[2]) >> 4;
1524
1525 /* The matching unref is in scsi_unmap_complete, before data is freed. */
1526 scsi_req_ref(&r->req);
1527 scsi_unmap_complete(data, 0);
1528 return;
1529
1530invalid_param_len:
1531 scsi_check_condition(r, SENSE_CODE(INVALID_PARAM_LEN));
1532 return;
1533}
1534
314a3299
PB
1535static void scsi_disk_emulate_write_data(SCSIRequest *req)
1536{
af6d510d
PB
1537 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
1538
1539 if (r->iov.iov_len) {
1540 int buflen = r->iov.iov_len;
79fb50bb 1541 DPRINTF("Write buf_len=%d\n", buflen);
af6d510d
PB
1542 r->iov.iov_len = 0;
1543 scsi_req_data(&r->req, buflen);
1544 return;
1545 }
1546
1547 switch (req->cmd.buf[0]) {
1548 case MODE_SELECT:
1549 case MODE_SELECT_10:
1550 /* This also clears the sense buffer for REQUEST SENSE. */
380feaff 1551 scsi_disk_emulate_mode_select(r, r->iov.iov_base);
af6d510d
PB
1552 break;
1553
5222aaf2
PB
1554 case UNMAP:
1555 scsi_disk_emulate_unmap(r, r->iov.iov_base);
1556 break;
1557
af6d510d
PB
1558 default:
1559 abort();
1560 }
314a3299
PB
1561}
1562
b08d0ea0 1563static int32_t scsi_disk_emulate_command(SCSIRequest *req, uint8_t *buf)
aa5dbdc1 1564{
b08d0ea0 1565 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
e7e25e32 1566 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, req->dev);
e7e25e32 1567 uint64_t nb_sectors;
7285477a 1568 uint8_t *outbuf;
af6d510d 1569 int buflen;
aa5dbdc1 1570
b08d0ea0
PB
1571 switch (req->cmd.buf[0]) {
1572 case INQUIRY:
1573 case MODE_SENSE:
1574 case MODE_SENSE_10:
1575 case RESERVE:
1576 case RESERVE_10:
1577 case RELEASE:
1578 case RELEASE_10:
1579 case START_STOP:
1580 case ALLOW_MEDIUM_REMOVAL:
1581 case GET_CONFIGURATION:
1582 case GET_EVENT_STATUS_NOTIFICATION:
1583 case MECHANISM_STATUS:
1584 case REQUEST_SENSE:
1585 break;
1586
1587 default:
1588 if (s->tray_open || !bdrv_is_inserted(s->qdev.conf.bs)) {
1589 scsi_check_condition(r, SENSE_CODE(NO_MEDIUM));
1590 return 0;
1591 }
1592 break;
1593 }
1594
7285477a
PB
1595 if (!r->iov.iov_base) {
1596 /*
1597 * FIXME: we shouldn't return anything bigger than 4k, but the code
1598 * requires the buffer to be as big as req->cmd.xfer in several
1599 * places. So, do not allow CDBs with a very large ALLOCATION
1600 * LENGTH. The real fix would be to modify scsi_read_data and
1601 * dma_buf_read, so that they return data beyond the buflen
1602 * as all zeros.
1603 */
1604 if (req->cmd.xfer > 65536) {
1605 goto illegal_request;
1606 }
1607 r->buflen = MAX(4096, req->cmd.xfer);
44740c38 1608 r->iov.iov_base = qemu_blockalign(s->qdev.conf.bs, r->buflen);
7285477a
PB
1609 }
1610
af6d510d 1611 buflen = req->cmd.xfer;
7285477a 1612 outbuf = r->iov.iov_base;
aa5dbdc1
GH
1613 switch (req->cmd.buf[0]) {
1614 case TEST_UNIT_READY:
9bcaf4fe 1615 assert(!s->tray_open && bdrv_is_inserted(s->qdev.conf.bs));
5f71d32f 1616 break;
0b06c059
GH
1617 case INQUIRY:
1618 buflen = scsi_disk_emulate_inquiry(req, outbuf);
f01b5931 1619 if (buflen < 0) {
0b06c059 1620 goto illegal_request;
f01b5931 1621 }
5f71d32f 1622 break;
ebddfcbe
GH
1623 case MODE_SENSE:
1624 case MODE_SENSE_10:
cfc606da 1625 buflen = scsi_disk_emulate_mode_sense(r, outbuf);
f01b5931 1626 if (buflen < 0) {
ebddfcbe 1627 goto illegal_request;
f01b5931 1628 }
ebddfcbe 1629 break;
02880f43
GH
1630 case READ_TOC:
1631 buflen = scsi_disk_emulate_read_toc(req, outbuf);
f01b5931 1632 if (buflen < 0) {
02880f43 1633 goto illegal_request;
f01b5931 1634 }
02880f43 1635 break;
3d53ba18 1636 case RESERVE:
f01b5931 1637 if (req->cmd.buf[1] & 1) {
3d53ba18 1638 goto illegal_request;
f01b5931 1639 }
3d53ba18
GH
1640 break;
1641 case RESERVE_10:
f01b5931 1642 if (req->cmd.buf[1] & 3) {
3d53ba18 1643 goto illegal_request;
f01b5931 1644 }
3d53ba18
GH
1645 break;
1646 case RELEASE:
f01b5931 1647 if (req->cmd.buf[1] & 1) {
3d53ba18 1648 goto illegal_request;
f01b5931 1649 }
3d53ba18
GH
1650 break;
1651 case RELEASE_10:
f01b5931 1652 if (req->cmd.buf[1] & 3) {
3d53ba18 1653 goto illegal_request;
f01b5931 1654 }
3d53ba18 1655 break;
8d3628ff 1656 case START_STOP:
68bb01f3 1657 if (scsi_disk_emulate_start_stop(r) < 0) {
b08d0ea0 1658 return 0;
68bb01f3 1659 }
5f71d32f 1660 break;
c68b9f34 1661 case ALLOW_MEDIUM_REMOVAL:
81b1008d 1662 s->tray_locked = req->cmd.buf[4] & 1;
44740c38 1663 bdrv_lock_medium(s->qdev.conf.bs, req->cmd.buf[4] & 1);
5f71d32f 1664 break;
5e30a07d 1665 case READ_CAPACITY_10:
e7e25e32 1666 /* The normal LEN field for this command is zero. */
5f71d32f 1667 memset(outbuf, 0, 8);
44740c38 1668 bdrv_get_geometry(s->qdev.conf.bs, &nb_sectors);
f01b5931 1669 if (!nb_sectors) {
9bcaf4fe
PB
1670 scsi_check_condition(r, SENSE_CODE(LUN_NOT_READY));
1671 return -1;
f01b5931 1672 }
7cec78b6
PB
1673 if ((req->cmd.buf[8] & 1) == 0 && req->cmd.lba) {
1674 goto illegal_request;
1675 }
69377307 1676 nb_sectors /= s->qdev.blocksize / 512;
e7e25e32
GH
1677 /* Returned value is the address of the last sector. */
1678 nb_sectors--;
1679 /* Remember the new size for read/write sanity checking. */
7877903a 1680 s->qdev.max_lba = nb_sectors;
e7e25e32 1681 /* Clip to 2TB, instead of returning capacity modulo 2TB. */
f01b5931 1682 if (nb_sectors > UINT32_MAX) {
e7e25e32 1683 nb_sectors = UINT32_MAX;
f01b5931 1684 }
e7e25e32
GH
1685 outbuf[0] = (nb_sectors >> 24) & 0xff;
1686 outbuf[1] = (nb_sectors >> 16) & 0xff;
1687 outbuf[2] = (nb_sectors >> 8) & 0xff;
1688 outbuf[3] = nb_sectors & 0xff;
1689 outbuf[4] = 0;
1690 outbuf[5] = 0;
69377307 1691 outbuf[6] = s->qdev.blocksize >> 8;
e7e25e32
GH
1692 outbuf[7] = 0;
1693 buflen = 8;
5f71d32f 1694 break;
f3b338ef
PB
1695 case REQUEST_SENSE:
1696 /* Just return "NO SENSE". */
1697 buflen = scsi_build_sense(NULL, 0, outbuf, r->buflen,
1698 (req->cmd.buf[1] & 1) == 0);
1699 break;
b6c251ab
PB
1700 case MECHANISM_STATUS:
1701 buflen = scsi_emulate_mechanism_status(s, outbuf);
1702 if (buflen < 0) {
1703 goto illegal_request;
1704 }
1705 break;
38215553 1706 case GET_CONFIGURATION:
430ee2f2 1707 buflen = scsi_get_configuration(s, outbuf);
b6c251ab
PB
1708 if (buflen < 0) {
1709 goto illegal_request;
1710 }
1711 break;
1712 case GET_EVENT_STATUS_NOTIFICATION:
1713 buflen = scsi_get_event_status_notification(s, r, outbuf);
1714 if (buflen < 0) {
1715 goto illegal_request;
1716 }
1717 break;
1a4f0c3a
PB
1718 case READ_DISC_INFORMATION:
1719 buflen = scsi_read_disc_information(s, r, outbuf);
1720 if (buflen < 0) {
1721 goto illegal_request;
1722 }
1723 break;
b6c251ab
PB
1724 case READ_DVD_STRUCTURE:
1725 buflen = scsi_read_dvd_structure(s, r, outbuf);
1726 if (buflen < 0) {
1727 goto illegal_request;
1728 }
38215553 1729 break;
f6515262 1730 case SERVICE_ACTION_IN_16:
5dd90e2a 1731 /* Service Action In subcommands. */
f6515262 1732 if ((req->cmd.buf[1] & 31) == SAI_READ_CAPACITY_16) {
5dd90e2a
GH
1733 DPRINTF("SAI READ CAPACITY(16)\n");
1734 memset(outbuf, 0, req->cmd.xfer);
44740c38 1735 bdrv_get_geometry(s->qdev.conf.bs, &nb_sectors);
f01b5931 1736 if (!nb_sectors) {
9bcaf4fe
PB
1737 scsi_check_condition(r, SENSE_CODE(LUN_NOT_READY));
1738 return -1;
f01b5931 1739 }
7cec78b6
PB
1740 if ((req->cmd.buf[14] & 1) == 0 && req->cmd.lba) {
1741 goto illegal_request;
1742 }
69377307 1743 nb_sectors /= s->qdev.blocksize / 512;
5dd90e2a
GH
1744 /* Returned value is the address of the last sector. */
1745 nb_sectors--;
1746 /* Remember the new size for read/write sanity checking. */
7877903a 1747 s->qdev.max_lba = nb_sectors;
5dd90e2a
GH
1748 outbuf[0] = (nb_sectors >> 56) & 0xff;
1749 outbuf[1] = (nb_sectors >> 48) & 0xff;
1750 outbuf[2] = (nb_sectors >> 40) & 0xff;
1751 outbuf[3] = (nb_sectors >> 32) & 0xff;
1752 outbuf[4] = (nb_sectors >> 24) & 0xff;
1753 outbuf[5] = (nb_sectors >> 16) & 0xff;
1754 outbuf[6] = (nb_sectors >> 8) & 0xff;
1755 outbuf[7] = nb_sectors & 0xff;
1756 outbuf[8] = 0;
1757 outbuf[9] = 0;
69377307 1758 outbuf[10] = s->qdev.blocksize >> 8;
5dd90e2a 1759 outbuf[11] = 0;
ee3659e3
CH
1760 outbuf[12] = 0;
1761 outbuf[13] = get_physical_block_exp(&s->qdev.conf);
ea3bd56f
CH
1762
1763 /* set TPE bit if the format supports discard */
1764 if (s->qdev.conf.discard_granularity) {
1765 outbuf[14] = 0x80;
1766 }
1767
5dd90e2a
GH
1768 /* Protection, exponent and lowest lba field left blank. */
1769 buflen = req->cmd.xfer;
1770 break;
1771 }
1772 DPRINTF("Unsupported Service Action In\n");
1773 goto illegal_request;
101aa85f
PB
1774 case SYNCHRONIZE_CACHE:
1775 /* The request is used as the AIO opaque value, so add a ref. */
1776 scsi_req_ref(&r->req);
1777 bdrv_acct_start(s->qdev.conf.bs, &r->acct, 0, BDRV_ACCT_FLUSH);
1778 r->req.aiocb = bdrv_aio_flush(s->qdev.conf.bs, scsi_aio_complete, r);
1779 return 0;
1780 case SEEK_10:
1781 DPRINTF("Seek(10) (sector %" PRId64 ")\n", r->req.cmd.lba);
1782 if (r->req.cmd.lba > s->qdev.max_lba) {
1783 goto illegal_lba;
1784 }
1785 break;
101aa85f
PB
1786 case MODE_SELECT:
1787 DPRINTF("Mode Select(6) (len %lu)\n", (long)r->req.cmd.xfer);
101aa85f
PB
1788 break;
1789 case MODE_SELECT_10:
1790 DPRINTF("Mode Select(10) (len %lu)\n", (long)r->req.cmd.xfer);
101aa85f 1791 break;
5222aaf2
PB
1792 case UNMAP:
1793 DPRINTF("Unmap (len %lu)\n", (long)r->req.cmd.xfer);
1794 break;
101aa85f
PB
1795 case WRITE_SAME_10:
1796 nb_sectors = lduw_be_p(&req->cmd.buf[7]);
1797 goto write_same;
1798 case WRITE_SAME_16:
1799 nb_sectors = ldl_be_p(&req->cmd.buf[10]) & 0xffffffffULL;
1800 write_same:
6a8a685c
RS
1801 if (bdrv_is_read_only(s->qdev.conf.bs)) {
1802 scsi_check_condition(r, SENSE_CODE(WRITE_PROTECTED));
1803 return 0;
1804 }
a084a703
PB
1805 if (r->req.cmd.lba > r->req.cmd.lba + nb_sectors ||
1806 r->req.cmd.lba + nb_sectors - 1 > s->qdev.max_lba) {
101aa85f
PB
1807 goto illegal_lba;
1808 }
1809
1810 /*
1811 * We only support WRITE SAME with the unmap bit set for now.
1812 */
1813 if (!(req->cmd.buf[1] & 0x8)) {
1814 goto illegal_request;
1815 }
1816
1817 /* The request is used as the AIO opaque value, so add a ref. */
1818 scsi_req_ref(&r->req);
1819 r->req.aiocb = bdrv_aio_discard(s->qdev.conf.bs,
1820 r->req.cmd.lba * (s->qdev.blocksize / 512),
1821 nb_sectors * (s->qdev.blocksize / 512),
1822 scsi_aio_complete, r);
1823 return 0;
aa5dbdc1 1824 default:
b08d0ea0 1825 DPRINTF("Unknown SCSI command (%2.2x)\n", buf[0]);
b45ef674 1826 scsi_check_condition(r, SENSE_CODE(INVALID_OPCODE));
b08d0ea0 1827 return 0;
aa5dbdc1 1828 }
314a3299 1829 assert(!r->req.aiocb);
b08d0ea0 1830 r->iov.iov_len = MIN(buflen, req->cmd.xfer);
b08d0ea0
PB
1831 if (r->iov.iov_len == 0) {
1832 scsi_req_complete(&r->req, GOOD);
1833 }
af6d510d
PB
1834 if (r->req.cmd.mode == SCSI_XFER_TO_DEV) {
1835 assert(r->iov.iov_len == req->cmd.xfer);
1836 return -r->iov.iov_len;
1837 } else {
1838 return r->iov.iov_len;
1839 }
aa5dbdc1 1840
aa5dbdc1 1841illegal_request:
cfc606da
PB
1842 if (r->req.status == -1) {
1843 scsi_check_condition(r, SENSE_CODE(INVALID_FIELD));
1844 }
b08d0ea0 1845 return 0;
101aa85f
PB
1846
1847illegal_lba:
1848 scsi_check_condition(r, SENSE_CODE(LBA_OUT_OF_RANGE));
1849 return 0;
aa5dbdc1
GH
1850}
1851
2e5d83bb
PB
1852/* Execute a scsi command. Returns the length of the data expected by the
1853 command. This will be Positive for data transfers from the device
1854 (eg. disk reads), negative for transfers to the device (eg. disk writes),
1855 and zero if the command does not transfer any data. */
1856
b08d0ea0 1857static int32_t scsi_disk_dma_command(SCSIRequest *req, uint8_t *buf)
2e5d83bb 1858{
5c6c0e51
HR
1859 SCSIDiskReq *r = DO_UPCAST(SCSIDiskReq, req, req);
1860 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, req->dev);
ad2d30f7 1861 int32_t len;
a917d384 1862 uint8_t command;
a917d384
PB
1863
1864 command = buf[0];
aa5dbdc1 1865
b08d0ea0
PB
1866 if (s->tray_open || !bdrv_is_inserted(s->qdev.conf.bs)) {
1867 scsi_check_condition(r, SENSE_CODE(NO_MEDIUM));
1868 return 0;
9bcaf4fe
PB
1869 }
1870
a917d384 1871 switch (command) {
ebf46023
GH
1872 case READ_6:
1873 case READ_10:
bd536cf3
GH
1874 case READ_12:
1875 case READ_16:
5c6c0e51 1876 len = r->req.cmd.xfer / s->qdev.blocksize;
2dd791b6 1877 DPRINTF("Read (sector %" PRId64 ", count %d)\n", r->req.cmd.lba, len);
96bdbbab
RS
1878 if (r->req.cmd.buf[1] & 0xe0) {
1879 goto illegal_request;
1880 }
ba6095cd
RS
1881 if (r->req.cmd.lba > r->req.cmd.lba + len ||
1882 r->req.cmd.lba + len - 1 > s->qdev.max_lba) {
274fb0e1 1883 goto illegal_lba;
f01b5931 1884 }
69377307
PB
1885 r->sector = r->req.cmd.lba * (s->qdev.blocksize / 512);
1886 r->sector_count = len * (s->qdev.blocksize / 512);
2e5d83bb 1887 break;
ebf46023
GH
1888 case WRITE_6:
1889 case WRITE_10:
bd536cf3
GH
1890 case WRITE_12:
1891 case WRITE_16:
5e30a07d 1892 case WRITE_VERIFY_10:
ebef0bbb
BK
1893 case WRITE_VERIFY_12:
1894 case WRITE_VERIFY_16:
6a8a685c
RS
1895 if (bdrv_is_read_only(s->qdev.conf.bs)) {
1896 scsi_check_condition(r, SENSE_CODE(WRITE_PROTECTED));
1897 return 0;
1898 }
1899 /* fallthrough */
1900 case VERIFY_10:
1901 case VERIFY_12:
1902 case VERIFY_16:
5c6c0e51 1903 len = r->req.cmd.xfer / s->qdev.blocksize;
ebef0bbb 1904 DPRINTF("Write %s(sector %" PRId64 ", count %d)\n",
2dd791b6
HR
1905 (command & 0xe) == 0xe ? "And Verify " : "",
1906 r->req.cmd.lba, len);
96bdbbab
RS
1907 if (r->req.cmd.buf[1] & 0xe0) {
1908 goto illegal_request;
1909 }
ba6095cd
RS
1910 if (r->req.cmd.lba > r->req.cmd.lba + len ||
1911 r->req.cmd.lba + len - 1 > s->qdev.max_lba) {
274fb0e1 1912 goto illegal_lba;
f01b5931 1913 }
69377307
PB
1914 r->sector = r->req.cmd.lba * (s->qdev.blocksize / 512);
1915 r->sector_count = len * (s->qdev.blocksize / 512);
2e5d83bb 1916 break;
101aa85f 1917 default:
b08d0ea0 1918 abort();
96bdbbab
RS
1919 illegal_request:
1920 scsi_check_condition(r, SENSE_CODE(INVALID_FIELD));
1921 return 0;
274fb0e1 1922 illegal_lba:
b45ef674 1923 scsi_check_condition(r, SENSE_CODE(LBA_OUT_OF_RANGE));
274fb0e1 1924 return 0;
2e5d83bb 1925 }
b08d0ea0 1926 if (r->sector_count == 0) {
b45ef674 1927 scsi_req_complete(&r->req, GOOD);
a917d384 1928 }
b08d0ea0 1929 assert(r->iov.iov_len == 0);
efb9ee02 1930 if (r->req.cmd.mode == SCSI_XFER_TO_DEV) {
b08d0ea0 1931 return -r->sector_count * 512;
a917d384 1932 } else {
b08d0ea0 1933 return r->sector_count * 512;
2e5d83bb 1934 }
2e5d83bb
PB
1935}
1936
e9447f35
JK
1937static void scsi_disk_reset(DeviceState *dev)
1938{
1939 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev.qdev, dev);
1940 uint64_t nb_sectors;
1941
c7b48872 1942 scsi_device_purge_requests(&s->qdev, SENSE_CODE(RESET));
e9447f35 1943
44740c38 1944 bdrv_get_geometry(s->qdev.conf.bs, &nb_sectors);
69377307 1945 nb_sectors /= s->qdev.blocksize / 512;
e9447f35
JK
1946 if (nb_sectors) {
1947 nb_sectors--;
1948 }
7877903a 1949 s->qdev.max_lba = nb_sectors;
e9447f35
JK
1950}
1951
1952static void scsi_destroy(SCSIDevice *dev)
1953{
1954 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, dev);
1955
c7b48872 1956 scsi_device_purge_requests(&s->qdev, SENSE_CODE(NO_SENSE));
f8b6cc00 1957 blockdev_mark_auto_del(s->qdev.conf.bs);
56a14938
GH
1958}
1959
aaebacef
PB
1960static void scsi_disk_resize_cb(void *opaque)
1961{
1962 SCSIDiskState *s = opaque;
1963
1964 /* SPC lists this sense code as available only for
1965 * direct-access devices.
1966 */
1967 if (s->qdev.type == TYPE_DISK) {
1968 scsi_device_set_ua(&s->qdev, SENSE_CODE(CAPACITY_CHANGED));
53200fad 1969 scsi_device_report_change(&s->qdev, SENSE_CODE(CAPACITY_CHANGED));
aaebacef
PB
1970 }
1971}
1972
7d4b4ba5 1973static void scsi_cd_change_media_cb(void *opaque, bool load)
2c6942fa 1974{
8a9c16f6
PB
1975 SCSIDiskState *s = opaque;
1976
1977 /*
1978 * When a CD gets changed, we have to report an ejected state and
1979 * then a loaded state to guests so that they detect tray
1980 * open/close and media change events. Guests that do not use
1981 * GET_EVENT_STATUS_NOTIFICATION to detect such tray open/close
1982 * states rely on this behavior.
1983 *
1984 * media_changed governs the state machine used for unit attention
1985 * report. media_event is used by GET EVENT STATUS NOTIFICATION.
1986 */
1987 s->media_changed = load;
1988 s->tray_open = !load;
e48e84ea 1989 scsi_device_set_ua(&s->qdev, SENSE_CODE(UNIT_ATTENTION_NO_MEDIUM));
3c2f7c12 1990 s->media_event = true;
4480de19
PB
1991 s->eject_request = false;
1992}
1993
1994static void scsi_cd_eject_request_cb(void *opaque, bool force)
1995{
1996 SCSIDiskState *s = opaque;
1997
1998 s->eject_request = true;
1999 if (force) {
2000 s->tray_locked = false;
2001 }
2c6942fa
MA
2002}
2003
e4def80b
MA
2004static bool scsi_cd_is_tray_open(void *opaque)
2005{
2006 return ((SCSIDiskState *)opaque)->tray_open;
2007}
2008
f107639a
MA
2009static bool scsi_cd_is_medium_locked(void *opaque)
2010{
2011 return ((SCSIDiskState *)opaque)->tray_locked;
2012}
2013
aaebacef 2014static const BlockDevOps scsi_disk_removable_block_ops = {
2c6942fa 2015 .change_media_cb = scsi_cd_change_media_cb,
4480de19 2016 .eject_request_cb = scsi_cd_eject_request_cb,
e4def80b 2017 .is_tray_open = scsi_cd_is_tray_open,
f107639a 2018 .is_medium_locked = scsi_cd_is_medium_locked,
aaebacef
PB
2019
2020 .resize_cb = scsi_disk_resize_cb,
2021};
2022
2023static const BlockDevOps scsi_disk_block_ops = {
2024 .resize_cb = scsi_disk_resize_cb,
f107639a
MA
2025};
2026
8a9c16f6
PB
2027static void scsi_disk_unit_attention_reported(SCSIDevice *dev)
2028{
2029 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, dev);
2030 if (s->media_changed) {
2031 s->media_changed = false;
e48e84ea 2032 scsi_device_set_ua(&s->qdev, SENSE_CODE(MEDIUM_CHANGED));
8a9c16f6
PB
2033 }
2034}
2035
e39be482 2036static int scsi_initfn(SCSIDevice *dev)
2e5d83bb 2037{
d52affa7 2038 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, dev);
2e5d83bb 2039
f8b6cc00 2040 if (!s->qdev.conf.bs) {
6a84cb1f 2041 error_report("drive property not set");
d52affa7
GH
2042 return -1;
2043 }
2044
bfe3d7ac
PB
2045 if (!(s->features & (1 << SCSI_DISK_F_REMOVABLE)) &&
2046 !bdrv_is_inserted(s->qdev.conf.bs)) {
98f28ad7
MA
2047 error_report("Device needs media, but drive is empty");
2048 return -1;
2049 }
2050
911525db 2051 blkconf_serial(&s->qdev.conf, &s->serial);
b2df4314
MA
2052 if (dev->type == TYPE_DISK
2053 && blkconf_geometry(&dev->conf, NULL, 65535, 255, 255) < 0) {
b7eb0c9f
MA
2054 return -1;
2055 }
a0fef654 2056
552fee93 2057 if (!s->version) {
93bfef4c 2058 s->version = g_strdup(qemu_get_version());
552fee93 2059 }
353815aa
DF
2060 if (!s->vendor) {
2061 s->vendor = g_strdup("QEMU");
2062 }
552fee93 2063
44740c38 2064 if (bdrv_is_sg(s->qdev.conf.bs)) {
6a84cb1f 2065 error_report("unwanted /dev/sg*");
32bb404a
MA
2066 return -1;
2067 }
2068
bfe3d7ac 2069 if (s->features & (1 << SCSI_DISK_F_REMOVABLE)) {
aaebacef
PB
2070 bdrv_set_dev_ops(s->qdev.conf.bs, &scsi_disk_removable_block_ops, s);
2071 } else {
2072 bdrv_set_dev_ops(s->qdev.conf.bs, &scsi_disk_block_ops, s);
2e5d83bb 2073 }
44740c38 2074 bdrv_set_buffer_alignment(s->qdev.conf.bs, s->qdev.blocksize);
8cfacf07 2075
44740c38 2076 bdrv_iostatus_enable(s->qdev.conf.bs);
7082826e 2077 add_boot_device_path(s->qdev.conf.bootindex, &dev->qdev, NULL);
d52affa7
GH
2078 return 0;
2079}
2080
b443ae67
MA
2081static int scsi_hd_initfn(SCSIDevice *dev)
2082{
e39be482
PB
2083 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, dev);
2084 s->qdev.blocksize = s->qdev.conf.logical_block_size;
2085 s->qdev.type = TYPE_DISK;
353815aa
DF
2086 if (!s->product) {
2087 s->product = g_strdup("QEMU HARDDISK");
2088 }
e39be482 2089 return scsi_initfn(&s->qdev);
b443ae67
MA
2090}
2091
2092static int scsi_cd_initfn(SCSIDevice *dev)
2093{
e39be482
PB
2094 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, dev);
2095 s->qdev.blocksize = 2048;
2096 s->qdev.type = TYPE_ROM;
bfe3d7ac 2097 s->features |= 1 << SCSI_DISK_F_REMOVABLE;
353815aa
DF
2098 if (!s->product) {
2099 s->product = g_strdup("QEMU CD-ROM");
2100 }
e39be482 2101 return scsi_initfn(&s->qdev);
b443ae67
MA
2102}
2103
2104static int scsi_disk_initfn(SCSIDevice *dev)
2105{
95b5edcd 2106 DriveInfo *dinfo;
b443ae67
MA
2107
2108 if (!dev->conf.bs) {
e39be482 2109 return scsi_initfn(dev); /* ... and die there */
b443ae67
MA
2110 }
2111
e39be482
PB
2112 dinfo = drive_get_by_blockdev(dev->conf.bs);
2113 if (dinfo->media_cd) {
2114 return scsi_cd_initfn(dev);
2115 } else {
2116 return scsi_hd_initfn(dev);
2117 }
b443ae67
MA
2118}
2119
b08d0ea0 2120static const SCSIReqOps scsi_disk_emulate_reqops = {
8dbd4574 2121 .size = sizeof(SCSIDiskReq),
12010e7b 2122 .free_req = scsi_free_request,
b08d0ea0 2123 .send_command = scsi_disk_emulate_command,
314a3299
PB
2124 .read_data = scsi_disk_emulate_read_data,
2125 .write_data = scsi_disk_emulate_write_data,
b08d0ea0
PB
2126 .get_buf = scsi_get_buf,
2127};
2128
2129static const SCSIReqOps scsi_disk_dma_reqops = {
2130 .size = sizeof(SCSIDiskReq),
2131 .free_req = scsi_free_request,
2132 .send_command = scsi_disk_dma_command,
12010e7b
PB
2133 .read_data = scsi_read_data,
2134 .write_data = scsi_write_data,
2135 .cancel_io = scsi_cancel_io,
2136 .get_buf = scsi_get_buf,
43b978b9
PB
2137 .load_request = scsi_disk_load_request,
2138 .save_request = scsi_disk_save_request,
8dbd4574
PB
2139};
2140
b08d0ea0
PB
2141static const SCSIReqOps *const scsi_disk_reqops_dispatch[256] = {
2142 [TEST_UNIT_READY] = &scsi_disk_emulate_reqops,
2143 [INQUIRY] = &scsi_disk_emulate_reqops,
2144 [MODE_SENSE] = &scsi_disk_emulate_reqops,
2145 [MODE_SENSE_10] = &scsi_disk_emulate_reqops,
2146 [START_STOP] = &scsi_disk_emulate_reqops,
2147 [ALLOW_MEDIUM_REMOVAL] = &scsi_disk_emulate_reqops,
2148 [READ_CAPACITY_10] = &scsi_disk_emulate_reqops,
2149 [READ_TOC] = &scsi_disk_emulate_reqops,
2150 [READ_DVD_STRUCTURE] = &scsi_disk_emulate_reqops,
2151 [READ_DISC_INFORMATION] = &scsi_disk_emulate_reqops,
2152 [GET_CONFIGURATION] = &scsi_disk_emulate_reqops,
2153 [GET_EVENT_STATUS_NOTIFICATION] = &scsi_disk_emulate_reqops,
2154 [MECHANISM_STATUS] = &scsi_disk_emulate_reqops,
2155 [SERVICE_ACTION_IN_16] = &scsi_disk_emulate_reqops,
2156 [REQUEST_SENSE] = &scsi_disk_emulate_reqops,
2157 [SYNCHRONIZE_CACHE] = &scsi_disk_emulate_reqops,
2158 [SEEK_10] = &scsi_disk_emulate_reqops,
b08d0ea0
PB
2159 [MODE_SELECT] = &scsi_disk_emulate_reqops,
2160 [MODE_SELECT_10] = &scsi_disk_emulate_reqops,
5222aaf2 2161 [UNMAP] = &scsi_disk_emulate_reqops,
b08d0ea0
PB
2162 [WRITE_SAME_10] = &scsi_disk_emulate_reqops,
2163 [WRITE_SAME_16] = &scsi_disk_emulate_reqops,
2164
2165 [READ_6] = &scsi_disk_dma_reqops,
2166 [READ_10] = &scsi_disk_dma_reqops,
2167 [READ_12] = &scsi_disk_dma_reqops,
2168 [READ_16] = &scsi_disk_dma_reqops,
2169 [VERIFY_10] = &scsi_disk_dma_reqops,
2170 [VERIFY_12] = &scsi_disk_dma_reqops,
2171 [VERIFY_16] = &scsi_disk_dma_reqops,
2172 [WRITE_6] = &scsi_disk_dma_reqops,
2173 [WRITE_10] = &scsi_disk_dma_reqops,
2174 [WRITE_12] = &scsi_disk_dma_reqops,
2175 [WRITE_16] = &scsi_disk_dma_reqops,
2176 [WRITE_VERIFY_10] = &scsi_disk_dma_reqops,
2177 [WRITE_VERIFY_12] = &scsi_disk_dma_reqops,
2178 [WRITE_VERIFY_16] = &scsi_disk_dma_reqops,
2179};
2180
63db0f0e
PB
2181static SCSIRequest *scsi_new_request(SCSIDevice *d, uint32_t tag, uint32_t lun,
2182 uint8_t *buf, void *hba_private)
8dbd4574
PB
2183{
2184 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, d);
2185 SCSIRequest *req;
b08d0ea0
PB
2186 const SCSIReqOps *ops;
2187 uint8_t command;
8dbd4574 2188
79fb50bb
PB
2189 command = buf[0];
2190 ops = scsi_disk_reqops_dispatch[command];
2191 if (!ops) {
2192 ops = &scsi_disk_emulate_reqops;
2193 }
2194 req = scsi_req_alloc(ops, &s->qdev, tag, lun, hba_private);
2195
b08d0ea0 2196#ifdef DEBUG_SCSI
79fb50bb 2197 DPRINTF("Command: lun=%d tag=0x%x data=0x%02x", lun, tag, buf[0]);
b08d0ea0
PB
2198 {
2199 int i;
79fb50bb 2200 for (i = 1; i < req->cmd.len; i++) {
b08d0ea0
PB
2201 printf(" 0x%02x", buf[i]);
2202 }
2203 printf("\n");
2204 }
2205#endif
2206
8dbd4574
PB
2207 return req;
2208}
2209
336a6915
PB
2210#ifdef __linux__
2211static int get_device_type(SCSIDiskState *s)
2212{
2213 BlockDriverState *bdrv = s->qdev.conf.bs;
2214 uint8_t cmd[16];
2215 uint8_t buf[36];
2216 uint8_t sensebuf[8];
2217 sg_io_hdr_t io_header;
2218 int ret;
2219
2220 memset(cmd, 0, sizeof(cmd));
2221 memset(buf, 0, sizeof(buf));
2222 cmd[0] = INQUIRY;
2223 cmd[4] = sizeof(buf);
2224
2225 memset(&io_header, 0, sizeof(io_header));
2226 io_header.interface_id = 'S';
2227 io_header.dxfer_direction = SG_DXFER_FROM_DEV;
2228 io_header.dxfer_len = sizeof(buf);
2229 io_header.dxferp = buf;
2230 io_header.cmdp = cmd;
2231 io_header.cmd_len = sizeof(cmd);
2232 io_header.mx_sb_len = sizeof(sensebuf);
2233 io_header.sbp = sensebuf;
2234 io_header.timeout = 6000; /* XXX */
2235
2236 ret = bdrv_ioctl(bdrv, SG_IO, &io_header);
2237 if (ret < 0 || io_header.driver_status || io_header.host_status) {
2238 return -1;
2239 }
2240 s->qdev.type = buf[0];
bfe3d7ac
PB
2241 if (buf[1] & 0x80) {
2242 s->features |= 1 << SCSI_DISK_F_REMOVABLE;
2243 }
336a6915
PB
2244 return 0;
2245}
2246
2247static int scsi_block_initfn(SCSIDevice *dev)
2248{
2249 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, dev);
2250 int sg_version;
2251 int rc;
2252
2253 if (!s->qdev.conf.bs) {
2254 error_report("scsi-block: drive property not set");
2255 return -1;
2256 }
2257
2258 /* check we are using a driver managing SG_IO (version 3 and after) */
2259 if (bdrv_ioctl(s->qdev.conf.bs, SG_GET_VERSION_NUM, &sg_version) < 0 ||
2260 sg_version < 30000) {
2261 error_report("scsi-block: scsi generic interface too old");
2262 return -1;
2263 }
2264
2265 /* get device type from INQUIRY data */
2266 rc = get_device_type(s);
2267 if (rc < 0) {
2268 error_report("scsi-block: INQUIRY failed");
2269 return -1;
2270 }
2271
2272 /* Make a guess for the block size, we'll fix it when the guest sends.
2273 * READ CAPACITY. If they don't, they likely would assume these sizes
2274 * anyway. (TODO: check in /sys).
2275 */
2276 if (s->qdev.type == TYPE_ROM || s->qdev.type == TYPE_WORM) {
2277 s->qdev.blocksize = 2048;
2278 } else {
2279 s->qdev.blocksize = 512;
2280 }
2281 return scsi_initfn(&s->qdev);
2282}
2283
2284static SCSIRequest *scsi_block_new_request(SCSIDevice *d, uint32_t tag,
2285 uint32_t lun, uint8_t *buf,
2286 void *hba_private)
2287{
2288 SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, d);
2289
2290 switch (buf[0]) {
2291 case READ_6:
2292 case READ_10:
2293 case READ_12:
2294 case READ_16:
7f64f8e2
PB
2295 case VERIFY_10:
2296 case VERIFY_12:
2297 case VERIFY_16:
336a6915
PB
2298 case WRITE_6:
2299 case WRITE_10:
2300 case WRITE_12:
2301 case WRITE_16:
2302 case WRITE_VERIFY_10:
2303 case WRITE_VERIFY_12:
2304 case WRITE_VERIFY_16:
eaccf49e
PB
2305 /* If we are not using O_DIRECT, we might read stale data from the
2306 * host cache if writes were made using other commands than these
2307 * ones (such as WRITE SAME or EXTENDED COPY, etc.). So, without
2308 * O_DIRECT everything must go through SG_IO.
2309 */
137745c5 2310 if (bdrv_get_flags(s->qdev.conf.bs) & BDRV_O_NOCACHE) {
eaccf49e
PB
2311 break;
2312 }
2313
33ebad12
PB
2314 /* MMC writing cannot be done via pread/pwrite, because it sometimes
2315 * involves writing beyond the maximum LBA or to negative LBA (lead-in).
2316 * And once you do these writes, reading from the block device is
2317 * unreliable, too. It is even possible that reads deliver random data
2318 * from the host page cache (this is probably a Linux bug).
2319 *
b08d0ea0 2320 * We might use scsi_disk_dma_reqops as long as no writing commands are
33ebad12
PB
2321 * seen, but performance usually isn't paramount on optical media. So,
2322 * just make scsi-block operate the same as scsi-generic for them.
2323 */
b08d0ea0
PB
2324 if (s->qdev.type != TYPE_ROM) {
2325 return scsi_req_alloc(&scsi_disk_dma_reqops, &s->qdev, tag, lun,
2326 hba_private);
2327 }
336a6915
PB
2328 }
2329
2330 return scsi_req_alloc(&scsi_generic_req_ops, &s->qdev, tag, lun,
2331 hba_private);
2332}
2333#endif
2334
353815aa
DF
2335#define DEFINE_SCSI_DISK_PROPERTIES() \
2336 DEFINE_BLOCK_PROPERTIES(SCSIDiskState, qdev.conf), \
2337 DEFINE_PROP_STRING("ver", SCSIDiskState, version), \
2338 DEFINE_PROP_STRING("serial", SCSIDiskState, serial), \
2339 DEFINE_PROP_STRING("vendor", SCSIDiskState, vendor), \
2340 DEFINE_PROP_STRING("product", SCSIDiskState, product)
b443ae67 2341
39bffca2
AL
2342static Property scsi_hd_properties[] = {
2343 DEFINE_SCSI_DISK_PROPERTIES(),
bfe3d7ac
PB
2344 DEFINE_PROP_BIT("removable", SCSIDiskState, features,
2345 SCSI_DISK_F_REMOVABLE, false),
da8365db
PB
2346 DEFINE_PROP_BIT("dpofua", SCSIDiskState, features,
2347 SCSI_DISK_F_DPOFUA, false),
27395add 2348 DEFINE_PROP_HEX64("wwn", SCSIDiskState, wwn, 0),
d252df48 2349 DEFINE_BLOCK_CHS_PROPERTIES(SCSIDiskState, qdev.conf),
39bffca2
AL
2350 DEFINE_PROP_END_OF_LIST(),
2351};
2352
43b978b9
PB
2353static const VMStateDescription vmstate_scsi_disk_state = {
2354 .name = "scsi-disk",
2355 .version_id = 1,
2356 .minimum_version_id = 1,
2357 .minimum_version_id_old = 1,
2358 .fields = (VMStateField[]) {
2359 VMSTATE_SCSI_DEVICE(qdev, SCSIDiskState),
2360 VMSTATE_BOOL(media_changed, SCSIDiskState),
2361 VMSTATE_BOOL(media_event, SCSIDiskState),
2362 VMSTATE_BOOL(eject_request, SCSIDiskState),
2363 VMSTATE_BOOL(tray_open, SCSIDiskState),
2364 VMSTATE_BOOL(tray_locked, SCSIDiskState),
2365 VMSTATE_END_OF_LIST()
2366 }
2367};
2368
b9eea3e6
AL
2369static void scsi_hd_class_initfn(ObjectClass *klass, void *data)
2370{
39bffca2 2371 DeviceClass *dc = DEVICE_CLASS(klass);
b9eea3e6
AL
2372 SCSIDeviceClass *sc = SCSI_DEVICE_CLASS(klass);
2373
2374 sc->init = scsi_hd_initfn;
2375 sc->destroy = scsi_destroy;
2376 sc->alloc_req = scsi_new_request;
2377 sc->unit_attention_reported = scsi_disk_unit_attention_reported;
39bffca2
AL
2378 dc->fw_name = "disk";
2379 dc->desc = "virtual SCSI disk";
2380 dc->reset = scsi_disk_reset;
2381 dc->props = scsi_hd_properties;
43b978b9 2382 dc->vmsd = &vmstate_scsi_disk_state;
b9eea3e6
AL
2383}
2384
39bffca2
AL
2385static TypeInfo scsi_hd_info = {
2386 .name = "scsi-hd",
2387 .parent = TYPE_SCSI_DEVICE,
2388 .instance_size = sizeof(SCSIDiskState),
2389 .class_init = scsi_hd_class_initfn,
2390};
2391
2392static Property scsi_cd_properties[] = {
2393 DEFINE_SCSI_DISK_PROPERTIES(),
27395add 2394 DEFINE_PROP_HEX64("wwn", SCSIDiskState, wwn, 0),
39bffca2 2395 DEFINE_PROP_END_OF_LIST(),
b9eea3e6
AL
2396};
2397
2398static void scsi_cd_class_initfn(ObjectClass *klass, void *data)
2399{
39bffca2 2400 DeviceClass *dc = DEVICE_CLASS(klass);
b9eea3e6
AL
2401 SCSIDeviceClass *sc = SCSI_DEVICE_CLASS(klass);
2402
2403 sc->init = scsi_cd_initfn;
2404 sc->destroy = scsi_destroy;
2405 sc->alloc_req = scsi_new_request;
2406 sc->unit_attention_reported = scsi_disk_unit_attention_reported;
39bffca2
AL
2407 dc->fw_name = "disk";
2408 dc->desc = "virtual SCSI CD-ROM";
2409 dc->reset = scsi_disk_reset;
2410 dc->props = scsi_cd_properties;
43b978b9 2411 dc->vmsd = &vmstate_scsi_disk_state;
b9eea3e6
AL
2412}
2413
39bffca2
AL
2414static TypeInfo scsi_cd_info = {
2415 .name = "scsi-cd",
2416 .parent = TYPE_SCSI_DEVICE,
2417 .instance_size = sizeof(SCSIDiskState),
2418 .class_init = scsi_cd_class_initfn,
b9eea3e6
AL
2419};
2420
336a6915 2421#ifdef __linux__
39bffca2 2422static Property scsi_block_properties[] = {
03847837 2423 DEFINE_PROP_DRIVE("drive", SCSIDiskState, qdev.conf.bs),
39bffca2
AL
2424 DEFINE_PROP_END_OF_LIST(),
2425};
2426
b9eea3e6
AL
2427static void scsi_block_class_initfn(ObjectClass *klass, void *data)
2428{
39bffca2 2429 DeviceClass *dc = DEVICE_CLASS(klass);
b9eea3e6
AL
2430 SCSIDeviceClass *sc = SCSI_DEVICE_CLASS(klass);
2431
2432 sc->init = scsi_block_initfn;
2433 sc->destroy = scsi_destroy;
2434 sc->alloc_req = scsi_block_new_request;
39bffca2
AL
2435 dc->fw_name = "disk";
2436 dc->desc = "SCSI block device passthrough";
2437 dc->reset = scsi_disk_reset;
2438 dc->props = scsi_block_properties;
43b978b9 2439 dc->vmsd = &vmstate_scsi_disk_state;
b9eea3e6
AL
2440}
2441
39bffca2
AL
2442static TypeInfo scsi_block_info = {
2443 .name = "scsi-block",
2444 .parent = TYPE_SCSI_DEVICE,
2445 .instance_size = sizeof(SCSIDiskState),
2446 .class_init = scsi_block_class_initfn,
b9eea3e6 2447};
336a6915 2448#endif
b9eea3e6 2449
39bffca2
AL
2450static Property scsi_disk_properties[] = {
2451 DEFINE_SCSI_DISK_PROPERTIES(),
bfe3d7ac
PB
2452 DEFINE_PROP_BIT("removable", SCSIDiskState, features,
2453 SCSI_DISK_F_REMOVABLE, false),
da8365db
PB
2454 DEFINE_PROP_BIT("dpofua", SCSIDiskState, features,
2455 SCSI_DISK_F_DPOFUA, false),
27395add 2456 DEFINE_PROP_HEX64("wwn", SCSIDiskState, wwn, 0),
39bffca2
AL
2457 DEFINE_PROP_END_OF_LIST(),
2458};
2459
b9eea3e6
AL
2460static void scsi_disk_class_initfn(ObjectClass *klass, void *data)
2461{
39bffca2 2462 DeviceClass *dc = DEVICE_CLASS(klass);
b9eea3e6
AL
2463 SCSIDeviceClass *sc = SCSI_DEVICE_CLASS(klass);
2464
2465 sc->init = scsi_disk_initfn;
2466 sc->destroy = scsi_destroy;
2467 sc->alloc_req = scsi_new_request;
2468 sc->unit_attention_reported = scsi_disk_unit_attention_reported;
39bffca2
AL
2469 dc->fw_name = "disk";
2470 dc->desc = "virtual SCSI disk or CD-ROM (legacy)";
2471 dc->reset = scsi_disk_reset;
2472 dc->props = scsi_disk_properties;
43b978b9 2473 dc->vmsd = &vmstate_scsi_disk_state;
b9eea3e6
AL
2474}
2475
39bffca2
AL
2476static TypeInfo scsi_disk_info = {
2477 .name = "scsi-disk",
2478 .parent = TYPE_SCSI_DEVICE,
2479 .instance_size = sizeof(SCSIDiskState),
2480 .class_init = scsi_disk_class_initfn,
d52affa7
GH
2481};
2482
83f7d43a 2483static void scsi_disk_register_types(void)
d52affa7 2484{
39bffca2
AL
2485 type_register_static(&scsi_hd_info);
2486 type_register_static(&scsi_cd_info);
b9eea3e6 2487#ifdef __linux__
39bffca2 2488 type_register_static(&scsi_block_info);
b9eea3e6 2489#endif
39bffca2 2490 type_register_static(&scsi_disk_info);
8ccc2ace 2491}
83f7d43a
AF
2492
2493type_init(scsi_disk_register_types)
This page took 1.082694 seconds and 4 git commands to generate.