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