Bug 204687 - virtio_scsi driver disregards disablement of VirtIO 1.0 SCSI Host Device VIRTIO_SCSI_F_INOUT feature
Summary: virtio_scsi driver disregards disablement of VirtIO 1.0 SCSI Host Device VIRT...
Status: NEW
Alias: None
Product: Drivers
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: drivers_other
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-08-24 16:57 UTC by Paul Klissner
Modified: 2019-08-24 17:00 UTC (History)
1 user (show)

See Also:
Kernel Version: 5.4
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description Paul Klissner 2019-08-24 16:57:16 UTC
Background:

The Linux VirtIO framework supports the VirtIO 1.0 protocol. Section 5.6 of the VirtIO 1.0 specification defines the Host SCSI device type. Section 5.6.3 defines Host SCSI negotiable features.

In the VirtIO model, during the initial negotiation, the device offers the set of features it supports, then the (VM guest) driver confirms which of the features offered it accepts. Any features the device doesn't explicitly offer, or the driver doesn't explicitly accept, are considered disabled and should not be used by either side.

The bug:

Section 5.6.3 includes the VIRTIO_SCSI_F_INOUT feature (bit) among the set of negotiable features, which, when *enabled*, indicates a single request can include both device writeable and readable data buffers. 

Unfortunately, virtio_scsi (Linux driver) doesn't negotiate that feature at all, and by ignoring it (e.g. not explicitly accepting it), the device should assume the in/out feature is disabled.  Regardless of the implication that the Linux driver doesn't support the feature (even if explicitly offered by the device), Linux sends in/out data buffers with each request anyway. 


Reference code: 

Confirming lack of support for the VirtIO 1.0 VIRTIO_SCSI_F_INOUT feature, look at the features[] definition in drivers/scsi/virtio_scsi.c.  It lists all the Host SCSI features, except VIRTIO_SCSI_F_INOUT.

Note You need to log in before you can comment on or make changes to this bug.