2015-11-10 17:36:13 +03:00
|
|
|
/*
|
|
|
|
* Virtio-SCSI implementation for s390 machine loader for qemu
|
|
|
|
*
|
|
|
|
* Copyright 2015 IBM Corp.
|
|
|
|
* Author: Eugene "jno" Dvurechenski <jno@linux.vnet.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or (at
|
|
|
|
* your option) any later version. See the COPYING file in the top-level
|
|
|
|
* directory.
|
|
|
|
*/
|
|
|
|
|
2024-10-20 04:29:36 +03:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2015-11-10 17:36:13 +03:00
|
|
|
#include "s390-ccw.h"
|
|
|
|
#include "virtio.h"
|
|
|
|
#include "scsi.h"
|
|
|
|
#include "virtio-scsi.h"
|
2020-06-24 10:52:16 +03:00
|
|
|
#include "s390-time.h"
|
2020-06-24 10:52:17 +03:00
|
|
|
#include "helper.h"
|
2015-11-10 17:36:13 +03:00
|
|
|
|
|
|
|
static ScsiDevice default_scsi_device;
|
|
|
|
static VirtioScsiCmdReq req;
|
|
|
|
static VirtioScsiCmdResp resp;
|
|
|
|
|
|
|
|
static uint8_t scsi_inquiry_std_response[256];
|
2017-05-10 18:53:56 +03:00
|
|
|
static ScsiInquiryEvpdPages scsi_inquiry_evpd_pages_response;
|
pc-bios/s390-ccw: Get Block Limits VPD device data
The "Block Limits" Inquiry VPD page is optional for any SCSI device,
but if it's supported it provides a hint of the maximum I/O transfer
length for this particular device. If this page is supported by the
disk, let's issue that Inquiry and use the minimum of it and the
SCSI controller limit. That will cover this scenario:
qemu-system-s390x ...
-device virtio-scsi-ccw,id=scsi0,max_sectors=32768 ...
-drive file=/dev/sda,if=none,id=drive0,format=raw ...
-device scsi-hd,bus=scsi0.0,channel=0,scsi-id=0,
drive=drive0,id=disk0,max_io_size=1048576
controller: 32768 sectors x 512 bytes/sector = 16777216 bytes
disk: 1048576 bytes
Now that we have a limit for a virtio-scsi disk, compare that with the
limit for the virtio-scsi controller when we actually build the I/O.
The minimum of these two limits should be the one we use.
Signed-off-by: Eric Farman <farman@linux.vnet.ibm.com>
Message-Id: <20170510155359.32727-7-farman@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
2017-05-10 18:53:57 +03:00
|
|
|
static ScsiInquiryEvpdBl scsi_inquiry_evpd_bl_response;
|
2015-11-10 17:36:13 +03:00
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static inline bool vs_assert(bool term, const char **msgs)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
|
|
|
if (!term) {
|
|
|
|
int i = 0;
|
|
|
|
|
2024-10-20 04:29:36 +03:00
|
|
|
printf("\n! ");
|
2015-11-10 17:36:13 +03:00
|
|
|
while (msgs[i]) {
|
2024-10-20 04:29:36 +03:00
|
|
|
printf("%s", msgs[i++]);
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
2024-10-20 04:29:43 +03:00
|
|
|
puts(" !");
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
2024-10-20 04:29:43 +03:00
|
|
|
|
|
|
|
return term;
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static bool virtio_scsi_verify_response(VirtioScsiCmdResp *resp,
|
2015-11-10 17:36:13 +03:00
|
|
|
const char *title)
|
|
|
|
{
|
|
|
|
const char *mr[] = {
|
|
|
|
title, ": response ", virtio_scsi_response_msg(resp), 0
|
|
|
|
};
|
|
|
|
const char *ms[] = {
|
|
|
|
title,
|
|
|
|
CDB_STATUS_VALID(resp->status) ? ": " : ": invalid ",
|
|
|
|
scsi_cdb_status_msg(resp->status),
|
|
|
|
resp->status == CDB_STATUS_CHECK_CONDITION ? " " : 0,
|
|
|
|
resp->sense_len ? scsi_cdb_asc_msg(resp->sense)
|
|
|
|
: "no sense data",
|
|
|
|
scsi_sense_response(resp->sense) == 0x70 ? ", sure" : "?",
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
return vs_assert(resp->response == VIRTIO_SCSI_S_OK, mr) &&
|
|
|
|
vs_assert(resp->status == CDB_STATUS_GOOD, ms);
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void prepare_request(VDev *vdev, const void *cdb, int cdb_size,
|
|
|
|
void *data, uint32_t data_size)
|
|
|
|
{
|
|
|
|
const ScsiDevice *sdev = vdev->scsi_device;
|
|
|
|
|
|
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
req.lun = make_lun(sdev->channel, sdev->target, sdev->lun);
|
|
|
|
memcpy(&req.cdb, cdb, cdb_size);
|
|
|
|
|
|
|
|
memset(&resp, 0, sizeof(resp));
|
|
|
|
resp.status = 0xff; /* set invalid */
|
|
|
|
resp.response = 0xff; /* */
|
|
|
|
|
|
|
|
if (data && data_size) {
|
|
|
|
memset(data, 0, data_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static inline bool vs_io_assert(bool term, const char *msg)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
2024-10-20 04:29:43 +03:00
|
|
|
if (!term && !virtio_scsi_verify_response(&resp, msg)) {
|
|
|
|
return false;
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
2024-10-20 04:29:43 +03:00
|
|
|
|
|
|
|
return true;
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static int vs_run(const char *title, VirtioCmd *cmd, VDev *vdev,
|
2015-11-10 17:36:13 +03:00
|
|
|
const void *cdb, int cdb_size,
|
|
|
|
void *data, uint32_t data_size)
|
|
|
|
{
|
|
|
|
prepare_request(vdev, cdb, cdb_size, data, data_size);
|
2024-10-20 04:29:43 +03:00
|
|
|
if (!vs_io_assert(virtio_run(vdev, VR_REQUEST, cmd) == 0, title)) {
|
|
|
|
puts(title);
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SCSI protocol implementation routines */
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static int scsi_inquiry(VDev *vdev, uint8_t evpd, uint8_t page,
|
2017-05-10 18:53:55 +03:00
|
|
|
void *data, uint32_t data_size)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
|
|
|
ScsiCdbInquiry cdb = {
|
|
|
|
.command = 0x12,
|
2017-05-10 18:53:55 +03:00
|
|
|
.b1 = evpd,
|
|
|
|
.b2 = page,
|
2015-11-10 17:36:13 +03:00
|
|
|
.alloc_len = data_size < 65535 ? data_size : 65535,
|
|
|
|
};
|
|
|
|
VirtioCmd inquiry[] = {
|
|
|
|
{ &req, sizeof(req), VRING_DESC_F_NEXT },
|
|
|
|
{ &resp, sizeof(resp), VRING_DESC_F_WRITE | VRING_DESC_F_NEXT },
|
|
|
|
{ data, data_size, VRING_DESC_F_WRITE },
|
|
|
|
};
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
int ret = vs_run("inquiry", inquiry,
|
|
|
|
vdev, &cdb, sizeof(cdb), data, data_size);
|
2015-11-10 17:36:13 +03:00
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
return ret ? ret : virtio_scsi_response_ok(&resp);
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static int scsi_test_unit_ready(VDev *vdev)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
|
|
|
ScsiCdbTestUnitReady cdb = {
|
|
|
|
.command = 0x00,
|
|
|
|
};
|
|
|
|
VirtioCmd test_unit_ready[] = {
|
|
|
|
{ &req, sizeof(req), VRING_DESC_F_NEXT },
|
|
|
|
{ &resp, sizeof(resp), VRING_DESC_F_WRITE },
|
|
|
|
};
|
|
|
|
|
|
|
|
prepare_request(vdev, &cdb, sizeof(cdb), 0, 0);
|
|
|
|
virtio_run(vdev, VR_REQUEST, test_unit_ready); /* ignore errors here */
|
|
|
|
|
|
|
|
return virtio_scsi_response_ok(&resp);
|
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static int scsi_report_luns(VDev *vdev, void *data, uint32_t data_size)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
|
|
|
ScsiCdbReportLuns cdb = {
|
|
|
|
.command = 0xa0,
|
|
|
|
.select_report = 0x02, /* REPORT ALL */
|
|
|
|
.alloc_len = data_size,
|
|
|
|
};
|
|
|
|
VirtioCmd report_luns[] = {
|
|
|
|
{ &req, sizeof(req), VRING_DESC_F_NEXT },
|
|
|
|
{ &resp, sizeof(resp), VRING_DESC_F_WRITE | VRING_DESC_F_NEXT },
|
|
|
|
{ data, data_size, VRING_DESC_F_WRITE },
|
|
|
|
};
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
int ret = vs_run("report luns", report_luns,
|
2015-11-10 17:36:13 +03:00
|
|
|
vdev, &cdb, sizeof(cdb), data, data_size);
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
return ret ? ret : virtio_scsi_response_ok(&resp);
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static int scsi_read_10(VDev *vdev,
|
2023-05-10 17:39:25 +03:00
|
|
|
unsigned long sector, int sectors, void *data,
|
2017-05-10 18:53:53 +03:00
|
|
|
unsigned int data_size)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
|
|
|
ScsiCdbRead10 cdb = {
|
|
|
|
.command = 0x28,
|
2017-05-10 18:53:53 +03:00
|
|
|
.lba = sector,
|
|
|
|
.xfer_length = sectors,
|
2015-11-10 17:36:13 +03:00
|
|
|
};
|
|
|
|
VirtioCmd read_10[] = {
|
|
|
|
{ &req, sizeof(req), VRING_DESC_F_NEXT },
|
|
|
|
{ &resp, sizeof(resp), VRING_DESC_F_WRITE | VRING_DESC_F_NEXT },
|
2017-05-10 18:53:52 +03:00
|
|
|
{ data, data_size, VRING_DESC_F_WRITE },
|
2015-11-10 17:36:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
debug_print_int("read_10 sector", sector);
|
|
|
|
debug_print_int("read_10 sectors", sectors);
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
int ret = vs_run("read(10)", read_10,
|
|
|
|
vdev, &cdb, sizeof(cdb), data, data_size);
|
2015-11-10 17:36:13 +03:00
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
return ret ? ret : virtio_scsi_response_ok(&resp);
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
static int scsi_read_capacity(VDev *vdev,
|
2015-11-10 17:36:13 +03:00
|
|
|
void *data, uint32_t data_size)
|
|
|
|
{
|
|
|
|
ScsiCdbReadCapacity16 cdb = {
|
|
|
|
.command = 0x9e, /* SERVICE_ACTION_IN_16 */
|
|
|
|
.service_action = 0x10, /* SA_READ_CAPACITY */
|
|
|
|
.alloc_len = data_size,
|
|
|
|
};
|
|
|
|
VirtioCmd read_capacity_16[] = {
|
|
|
|
{ &req, sizeof(req), VRING_DESC_F_NEXT },
|
|
|
|
{ &resp, sizeof(resp), VRING_DESC_F_WRITE | VRING_DESC_F_NEXT },
|
|
|
|
{ data, data_size, VRING_DESC_F_WRITE },
|
|
|
|
};
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
int ret = vs_run("read capacity", read_capacity_16,
|
2015-11-10 17:36:13 +03:00
|
|
|
vdev, &cdb, sizeof(cdb), data, data_size);
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
return ret ? ret : virtio_scsi_response_ok(&resp);
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* virtio-scsi routines */
|
|
|
|
|
2020-07-28 15:30:14 +03:00
|
|
|
/*
|
2022-07-07 19:37:15 +03:00
|
|
|
* Tries to locate a SCSI device and adds the information for the found
|
2020-07-28 15:30:14 +03:00
|
|
|
* device to the vdev->scsi_device structure.
|
|
|
|
* Returns 0 if SCSI device could be located, or a error code < 0 otherwise
|
|
|
|
*/
|
|
|
|
static int virtio_scsi_locate_device(VDev *vdev)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
|
|
|
const uint16_t channel = 0; /* again, it's what QEMU does */
|
|
|
|
uint16_t target;
|
|
|
|
static uint8_t data[16 + 8 * 63];
|
|
|
|
ScsiLunReport *r = (void *) data;
|
|
|
|
ScsiDevice *sdev = vdev->scsi_device;
|
2024-10-20 04:29:43 +03:00
|
|
|
int i, ret, luns;
|
2015-11-10 17:36:13 +03:00
|
|
|
|
|
|
|
/* QEMU has hardcoded channel #0 in many places.
|
|
|
|
* If this hardcoded value is ever changed, we'll need to add code for
|
|
|
|
* vdev->config.scsi.max_channel != 0 here.
|
|
|
|
*/
|
|
|
|
debug_print_int("config.scsi.max_channel", vdev->config.scsi.max_channel);
|
|
|
|
debug_print_int("config.scsi.max_target ", vdev->config.scsi.max_target);
|
|
|
|
debug_print_int("config.scsi.max_lun ", vdev->config.scsi.max_lun);
|
2017-05-10 18:53:54 +03:00
|
|
|
debug_print_int("config.scsi.max_sectors", vdev->config.scsi.max_sectors);
|
2015-11-10 17:36:13 +03:00
|
|
|
|
2016-06-01 16:25:51 +03:00
|
|
|
if (vdev->scsi_device_selected) {
|
|
|
|
sdev->channel = vdev->selected_scsi_device.channel;
|
|
|
|
sdev->target = vdev->selected_scsi_device.target;
|
|
|
|
sdev->lun = vdev->selected_scsi_device.lun;
|
|
|
|
|
|
|
|
IPL_check(sdev->channel == 0, "non-zero channel requested");
|
|
|
|
IPL_check(sdev->target <= vdev->config.scsi.max_target, "target# high");
|
|
|
|
IPL_check(sdev->lun <= vdev->config.scsi.max_lun, "LUN# high");
|
2020-07-28 15:30:14 +03:00
|
|
|
return 0;
|
2016-06-01 16:25:51 +03:00
|
|
|
}
|
|
|
|
|
2015-11-10 17:36:13 +03:00
|
|
|
for (target = 0; target <= vdev->config.scsi.max_target; target++) {
|
|
|
|
sdev->channel = channel;
|
2017-11-17 21:10:28 +03:00
|
|
|
sdev->target = target;
|
|
|
|
sdev->lun = 0; /* LUN has to be 0 for REPORT LUNS */
|
2024-10-20 04:29:43 +03:00
|
|
|
ret = scsi_report_luns(vdev, data, sizeof(data));
|
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (ret == 0) {
|
2015-11-10 17:36:13 +03:00
|
|
|
if (resp.response == VIRTIO_SCSI_S_BAD_TARGET) {
|
|
|
|
continue;
|
|
|
|
}
|
2024-10-20 04:29:36 +03:00
|
|
|
printf("target 0x%X\n", target);
|
2024-10-20 04:29:43 +03:00
|
|
|
if (!virtio_scsi_verify_response(&resp, "SCSI cannot report LUNs")) {
|
|
|
|
return -EIO;
|
|
|
|
}
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
2024-10-20 04:29:43 +03:00
|
|
|
|
2015-11-10 17:36:13 +03:00
|
|
|
if (r->lun_list_len == 0) {
|
2024-10-20 04:29:36 +03:00
|
|
|
printf("no LUNs for target 0x%X\n", target);
|
2015-11-10 17:36:13 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
luns = r->lun_list_len / 8;
|
|
|
|
debug_print_int("LUNs reported", luns);
|
|
|
|
if (luns == 1) {
|
|
|
|
/* There is no ",lun=#" arg for -device or ",lun=0" given.
|
|
|
|
* Hence, the only LUN reported.
|
|
|
|
* Usually, it's 0.
|
|
|
|
*/
|
|
|
|
sdev->lun = r->lun[0].v16[0]; /* it's returned this way */
|
|
|
|
debug_print_int("Have to use LUN", sdev->lun);
|
2020-07-28 15:30:14 +03:00
|
|
|
return 0; /* we have to use this device */
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
for (i = 0; i < luns; i++) {
|
|
|
|
if (r->lun[i].v64) {
|
|
|
|
/* Look for non-zero LUN - we have where to choose from */
|
|
|
|
sdev->lun = r->lun[i].v16[0];
|
|
|
|
debug_print_int("Will use LUN", sdev->lun);
|
2020-07-28 15:30:14 +03:00
|
|
|
return 0; /* we have found a device */
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-28 15:30:14 +03:00
|
|
|
|
2024-10-20 04:29:36 +03:00
|
|
|
puts("Warning: Could not locate a usable virtio-scsi device");
|
2020-07-28 15:30:14 +03:00
|
|
|
return -ENODEV;
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int virtio_scsi_read_many(VDev *vdev,
|
2023-05-10 17:39:25 +03:00
|
|
|
unsigned long sector, void *load_addr, int sec_num)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
2017-05-10 18:53:54 +03:00
|
|
|
int sector_count;
|
2017-05-10 18:53:53 +03:00
|
|
|
int f = vdev->blk_factor;
|
2017-05-10 18:53:54 +03:00
|
|
|
unsigned int data_size;
|
pc-bios/s390-ccw: Get Block Limits VPD device data
The "Block Limits" Inquiry VPD page is optional for any SCSI device,
but if it's supported it provides a hint of the maximum I/O transfer
length for this particular device. If this page is supported by the
disk, let's issue that Inquiry and use the minimum of it and the
SCSI controller limit. That will cover this scenario:
qemu-system-s390x ...
-device virtio-scsi-ccw,id=scsi0,max_sectors=32768 ...
-drive file=/dev/sda,if=none,id=drive0,format=raw ...
-device scsi-hd,bus=scsi0.0,channel=0,scsi-id=0,
drive=drive0,id=disk0,max_io_size=1048576
controller: 32768 sectors x 512 bytes/sector = 16777216 bytes
disk: 1048576 bytes
Now that we have a limit for a virtio-scsi disk, compare that with the
limit for the virtio-scsi controller when we actually build the I/O.
The minimum of these two limits should be the one we use.
Signed-off-by: Eric Farman <farman@linux.vnet.ibm.com>
Message-Id: <20170510155359.32727-7-farman@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
2017-05-10 18:53:57 +03:00
|
|
|
unsigned int max_transfer = MIN_NON_ZERO(vdev->config.scsi.max_sectors,
|
|
|
|
vdev->max_transfer);
|
2017-05-10 18:53:54 +03:00
|
|
|
|
|
|
|
do {
|
pc-bios/s390-ccw: Get Block Limits VPD device data
The "Block Limits" Inquiry VPD page is optional for any SCSI device,
but if it's supported it provides a hint of the maximum I/O transfer
length for this particular device. If this page is supported by the
disk, let's issue that Inquiry and use the minimum of it and the
SCSI controller limit. That will cover this scenario:
qemu-system-s390x ...
-device virtio-scsi-ccw,id=scsi0,max_sectors=32768 ...
-drive file=/dev/sda,if=none,id=drive0,format=raw ...
-device scsi-hd,bus=scsi0.0,channel=0,scsi-id=0,
drive=drive0,id=disk0,max_io_size=1048576
controller: 32768 sectors x 512 bytes/sector = 16777216 bytes
disk: 1048576 bytes
Now that we have a limit for a virtio-scsi disk, compare that with the
limit for the virtio-scsi controller when we actually build the I/O.
The minimum of these two limits should be the one we use.
Signed-off-by: Eric Farman <farman@linux.vnet.ibm.com>
Message-Id: <20170510155359.32727-7-farman@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
2017-05-10 18:53:57 +03:00
|
|
|
sector_count = MIN_NON_ZERO(sec_num, max_transfer);
|
2017-05-10 18:53:54 +03:00
|
|
|
data_size = sector_count * virtio_get_block_size() * f;
|
|
|
|
if (!scsi_read_10(vdev, sector * f, sector_count * f, load_addr,
|
|
|
|
data_size)) {
|
2024-10-20 04:29:43 +03:00
|
|
|
if (!virtio_scsi_verify_response(&resp, "virtio-scsi:read_many")) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-05-10 18:53:54 +03:00
|
|
|
}
|
|
|
|
load_addr += data_size;
|
|
|
|
sector += sector_count;
|
|
|
|
sec_num -= sector_count;
|
|
|
|
} while (sec_num > 0);
|
2015-11-10 17:36:13 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool virtio_scsi_inquiry_response_is_cdrom(void *data)
|
|
|
|
{
|
|
|
|
const ScsiInquiryStd *response = data;
|
|
|
|
const int resp_data_fmt = response->b3 & 0x0f;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
IPL_check(resp_data_fmt == 2, "Wrong INQUIRY response format");
|
|
|
|
if (resp_data_fmt != 2) {
|
|
|
|
return false; /* cannot decode */
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((response->peripheral_qdt & 0x1f) == SCSI_INQ_RDT_CDROM) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(response->prod_id); i++) {
|
|
|
|
if (response->prod_id[i] != QEMU_CDROM_SIGNATURE[i]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void scsi_parse_capacity_report(void *data,
|
|
|
|
uint64_t *last_lba, uint32_t *lb_len)
|
|
|
|
{
|
|
|
|
ScsiReadCapacity16Data *p = data;
|
|
|
|
|
|
|
|
if (last_lba) {
|
|
|
|
*last_lba = p->ret_lba;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lb_len) {
|
|
|
|
*lb_len = p->lb_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-04 14:19:00 +03:00
|
|
|
static int virtio_scsi_setup(VDev *vdev)
|
2015-11-10 17:36:13 +03:00
|
|
|
{
|
|
|
|
int retry_test_unit_ready = 3;
|
|
|
|
uint8_t data[256];
|
|
|
|
uint32_t data_size = sizeof(data);
|
2017-05-10 18:53:56 +03:00
|
|
|
ScsiInquiryEvpdPages *evpd = &scsi_inquiry_evpd_pages_response;
|
pc-bios/s390-ccw: Get Block Limits VPD device data
The "Block Limits" Inquiry VPD page is optional for any SCSI device,
but if it's supported it provides a hint of the maximum I/O transfer
length for this particular device. If this page is supported by the
disk, let's issue that Inquiry and use the minimum of it and the
SCSI controller limit. That will cover this scenario:
qemu-system-s390x ...
-device virtio-scsi-ccw,id=scsi0,max_sectors=32768 ...
-drive file=/dev/sda,if=none,id=drive0,format=raw ...
-device scsi-hd,bus=scsi0.0,channel=0,scsi-id=0,
drive=drive0,id=disk0,max_io_size=1048576
controller: 32768 sectors x 512 bytes/sector = 16777216 bytes
disk: 1048576 bytes
Now that we have a limit for a virtio-scsi disk, compare that with the
limit for the virtio-scsi controller when we actually build the I/O.
The minimum of these two limits should be the one we use.
Signed-off-by: Eric Farman <farman@linux.vnet.ibm.com>
Message-Id: <20170510155359.32727-7-farman@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
2017-05-10 18:53:57 +03:00
|
|
|
ScsiInquiryEvpdBl *evpd_bl = &scsi_inquiry_evpd_bl_response;
|
2020-07-28 15:30:14 +03:00
|
|
|
int i, ret;
|
2015-11-10 17:36:13 +03:00
|
|
|
|
|
|
|
vdev->scsi_device = &default_scsi_device;
|
2020-07-28 15:30:14 +03:00
|
|
|
ret = virtio_scsi_locate_device(vdev);
|
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2015-11-10 17:36:13 +03:00
|
|
|
|
|
|
|
/* We have to "ping" the device before it becomes readable */
|
|
|
|
while (!scsi_test_unit_ready(vdev)) {
|
|
|
|
|
|
|
|
if (!virtio_scsi_response_ok(&resp)) {
|
|
|
|
uint8_t code = resp.sense[0] & SCSI_SENSE_CODE_MASK;
|
|
|
|
uint8_t sense_key = resp.sense[2] & SCSI_SENSE_KEY_MASK;
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
if (resp.sense_len == 0) {
|
|
|
|
puts("virtio-scsi: setup: no SENSE data");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2015-11-10 17:36:13 +03:00
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
if (!retry_test_unit_ready || code != 0x70 ||
|
|
|
|
sense_key != SCSI_SENSE_KEY_UNIT_ATTENTION) {
|
|
|
|
puts("virtio-scsi:setup: cannot retry");
|
|
|
|
return -EIO;
|
|
|
|
}
|
2015-11-10 17:36:13 +03:00
|
|
|
|
|
|
|
/* retry on CHECK_CONDITION/UNIT_ATTENTION as it
|
|
|
|
* may not designate a real error, but it may be
|
|
|
|
* a result of device reset, etc.
|
|
|
|
*/
|
|
|
|
retry_test_unit_ready--;
|
|
|
|
sleep(1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
if (!virtio_scsi_verify_response(&resp, "virtio-scsi:setup")) {
|
|
|
|
return -1;
|
|
|
|
}
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* read and cache SCSI INQUIRY response */
|
2024-10-20 04:29:43 +03:00
|
|
|
ret = scsi_inquiry(vdev,
|
2017-05-10 18:53:55 +03:00
|
|
|
SCSI_INQUIRY_STANDARD,
|
|
|
|
SCSI_INQUIRY_STANDARD_NONE,
|
|
|
|
scsi_inquiry_std_response,
|
2024-10-20 04:29:43 +03:00
|
|
|
sizeof(scsi_inquiry_std_response));
|
|
|
|
if (ret < 1) {
|
|
|
|
if (ret != 0 || !virtio_scsi_verify_response(&resp,
|
|
|
|
"virtio-scsi:setup:inquiry")) {
|
|
|
|
return -1;
|
|
|
|
}
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (virtio_scsi_inquiry_response_is_cdrom(scsi_inquiry_std_response)) {
|
2024-10-20 04:29:36 +03:00
|
|
|
puts("SCSI CD-ROM detected.");
|
2015-11-10 17:36:13 +03:00
|
|
|
vdev->is_cdrom = true;
|
|
|
|
vdev->scsi_block_size = VIRTIO_ISO_BLOCK_SIZE;
|
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
ret = scsi_inquiry(vdev,
|
2017-05-10 18:53:56 +03:00
|
|
|
SCSI_INQUIRY_EVPD,
|
|
|
|
SCSI_INQUIRY_EVPD_SUPPORTED_PAGES,
|
|
|
|
evpd,
|
2024-10-20 04:29:43 +03:00
|
|
|
sizeof(*evpd));
|
|
|
|
if (ret < 1) {
|
|
|
|
if (ret != 0 || !virtio_scsi_verify_response(&resp,
|
|
|
|
"virtio-scsi:setup:supported_pages")) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-05-10 18:53:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
debug_print_int("EVPD length", evpd->page_length);
|
|
|
|
|
|
|
|
for (i = 0; i <= evpd->page_length; i++) {
|
|
|
|
debug_print_int("supported EVPD page", evpd->byte[i]);
|
pc-bios/s390-ccw: Get Block Limits VPD device data
The "Block Limits" Inquiry VPD page is optional for any SCSI device,
but if it's supported it provides a hint of the maximum I/O transfer
length for this particular device. If this page is supported by the
disk, let's issue that Inquiry and use the minimum of it and the
SCSI controller limit. That will cover this scenario:
qemu-system-s390x ...
-device virtio-scsi-ccw,id=scsi0,max_sectors=32768 ...
-drive file=/dev/sda,if=none,id=drive0,format=raw ...
-device scsi-hd,bus=scsi0.0,channel=0,scsi-id=0,
drive=drive0,id=disk0,max_io_size=1048576
controller: 32768 sectors x 512 bytes/sector = 16777216 bytes
disk: 1048576 bytes
Now that we have a limit for a virtio-scsi disk, compare that with the
limit for the virtio-scsi controller when we actually build the I/O.
The minimum of these two limits should be the one we use.
Signed-off-by: Eric Farman <farman@linux.vnet.ibm.com>
Message-Id: <20170510155359.32727-7-farman@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
2017-05-10 18:53:57 +03:00
|
|
|
|
|
|
|
if (evpd->byte[i] != SCSI_INQUIRY_EVPD_BLOCK_LIMITS) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
ret = scsi_inquiry(vdev,
|
pc-bios/s390-ccw: Get Block Limits VPD device data
The "Block Limits" Inquiry VPD page is optional for any SCSI device,
but if it's supported it provides a hint of the maximum I/O transfer
length for this particular device. If this page is supported by the
disk, let's issue that Inquiry and use the minimum of it and the
SCSI controller limit. That will cover this scenario:
qemu-system-s390x ...
-device virtio-scsi-ccw,id=scsi0,max_sectors=32768 ...
-drive file=/dev/sda,if=none,id=drive0,format=raw ...
-device scsi-hd,bus=scsi0.0,channel=0,scsi-id=0,
drive=drive0,id=disk0,max_io_size=1048576
controller: 32768 sectors x 512 bytes/sector = 16777216 bytes
disk: 1048576 bytes
Now that we have a limit for a virtio-scsi disk, compare that with the
limit for the virtio-scsi controller when we actually build the I/O.
The minimum of these two limits should be the one we use.
Signed-off-by: Eric Farman <farman@linux.vnet.ibm.com>
Message-Id: <20170510155359.32727-7-farman@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
2017-05-10 18:53:57 +03:00
|
|
|
SCSI_INQUIRY_EVPD,
|
|
|
|
SCSI_INQUIRY_EVPD_BLOCK_LIMITS,
|
|
|
|
evpd_bl,
|
2024-10-20 04:29:43 +03:00
|
|
|
sizeof(*evpd_bl));
|
|
|
|
if (ret < 1) {
|
|
|
|
if (ret != 0 || !virtio_scsi_verify_response(&resp,
|
|
|
|
"virtio-scsi:setup:blocklimits")) {
|
|
|
|
return -1;
|
|
|
|
}
|
pc-bios/s390-ccw: Get Block Limits VPD device data
The "Block Limits" Inquiry VPD page is optional for any SCSI device,
but if it's supported it provides a hint of the maximum I/O transfer
length for this particular device. If this page is supported by the
disk, let's issue that Inquiry and use the minimum of it and the
SCSI controller limit. That will cover this scenario:
qemu-system-s390x ...
-device virtio-scsi-ccw,id=scsi0,max_sectors=32768 ...
-drive file=/dev/sda,if=none,id=drive0,format=raw ...
-device scsi-hd,bus=scsi0.0,channel=0,scsi-id=0,
drive=drive0,id=disk0,max_io_size=1048576
controller: 32768 sectors x 512 bytes/sector = 16777216 bytes
disk: 1048576 bytes
Now that we have a limit for a virtio-scsi disk, compare that with the
limit for the virtio-scsi controller when we actually build the I/O.
The minimum of these two limits should be the one we use.
Signed-off-by: Eric Farman <farman@linux.vnet.ibm.com>
Message-Id: <20170510155359.32727-7-farman@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
2017-05-10 18:53:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
debug_print_int("max transfer", evpd_bl->max_transfer);
|
|
|
|
vdev->max_transfer = evpd_bl->max_transfer;
|
2017-05-10 18:53:56 +03:00
|
|
|
}
|
|
|
|
|
2017-05-10 18:53:58 +03:00
|
|
|
/*
|
|
|
|
* The host sg driver will often be unhappy with particularly large
|
|
|
|
* I/Os that exceed the block iovec limits. Let's enforce something
|
|
|
|
* reasonable, despite what the device configuration tells us.
|
|
|
|
*/
|
|
|
|
|
|
|
|
vdev->max_transfer = MIN_NON_ZERO(VIRTIO_SCSI_MAX_SECTORS,
|
|
|
|
vdev->max_transfer);
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
ret = scsi_read_capacity(vdev, data, data_size);
|
|
|
|
if (ret < 1) {
|
|
|
|
if (ret != 0 || !virtio_scsi_verify_response(&resp,
|
|
|
|
"virtio-scsi:setup:read_capacity")) {
|
|
|
|
return -1;
|
|
|
|
}
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
|
|
|
scsi_parse_capacity_report(data, &vdev->scsi_last_block,
|
|
|
|
(uint32_t *) &vdev->scsi_block_size);
|
2020-07-28 15:30:14 +03:00
|
|
|
|
|
|
|
return 0;
|
2015-11-10 17:36:13 +03:00
|
|
|
}
|
2022-07-04 14:19:00 +03:00
|
|
|
|
|
|
|
int virtio_scsi_setup_device(SubChannelId schid)
|
|
|
|
{
|
|
|
|
VDev *vdev = virtio_get_device();
|
|
|
|
|
|
|
|
vdev->schid = schid;
|
|
|
|
virtio_setup_ccw(vdev);
|
|
|
|
|
2024-10-20 04:29:43 +03:00
|
|
|
if (vdev->config.scsi.sense_size != VIRTIO_SCSI_SENSE_SIZE) {
|
|
|
|
puts("Config: sense size mismatch");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vdev->config.scsi.cdb_size != VIRTIO_SCSI_CDB_SIZE) {
|
|
|
|
puts("Config: CDB size mismatch");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2022-07-04 14:19:00 +03:00
|
|
|
|
2024-10-20 04:29:36 +03:00
|
|
|
puts("Using virtio-scsi.");
|
2022-07-04 14:19:00 +03:00
|
|
|
|
|
|
|
return virtio_scsi_setup(vdev);
|
|
|
|
}
|