mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-02-22 11:22:26 +00:00
virtio-devices: Consider vhost-user protocol feature as acked
For vhost-user devices, we don't want to loose the vhost-user protocol feature through the negotiation between guest and device. Since we know VIRTIO has no knowledge of the vhost-user protocol feature, there is no way it would ever be acknowledged by the guest. For that reason, we create each vhost-user device with the set of acked features containing the vhost-user protocol feature is this one was part of the available list. Having the set of acked features containing this bit allows for solving a bug that was happening through the migration process since the vhost-user protocol feature wasn't explicitely enabled. Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
parent
5447451921
commit
3593055e77
@ -167,7 +167,11 @@ impl Blk {
|
|||||||
device_type: VirtioDeviceType::Block as u32,
|
device_type: VirtioDeviceType::Block as u32,
|
||||||
queue_sizes: vec![vu_cfg.queue_size; num_queues],
|
queue_sizes: vec![vu_cfg.queue_size; num_queues],
|
||||||
avail_features: acked_features,
|
avail_features: acked_features,
|
||||||
acked_features: 0,
|
// If part of the available features that have been acked, the
|
||||||
|
// PROTOCOL_FEATURES bit must be already set through the VIRTIO
|
||||||
|
// acked features as we know the guest would never ack it, thus
|
||||||
|
// the feature would be lost.
|
||||||
|
acked_features: acked_features & VhostUserVirtioFeatures::PROTOCOL_FEATURES.bits(),
|
||||||
paused_sync: Some(Arc::new(Barrier::new(2))),
|
paused_sync: Some(Arc::new(Barrier::new(2))),
|
||||||
min_queues: DEFAULT_QUEUE_NUMBER as u16,
|
min_queues: DEFAULT_QUEUE_NUMBER as u16,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
@ -288,12 +292,6 @@ impl VirtioDevice for Blk {
|
|||||||
|
|
||||||
let slave_req_handler: Option<MasterReqHandler<SlaveReqHandler>> = None;
|
let slave_req_handler: Option<MasterReqHandler<SlaveReqHandler>> = None;
|
||||||
|
|
||||||
// The backend acknowledged features must contain the protocol feature
|
|
||||||
// bit in case it was initially set but lost through the features
|
|
||||||
// negotiation with the guest.
|
|
||||||
let backend_acked_features = self.common.acked_features
|
|
||||||
| (self.common.avail_features & VhostUserVirtioFeatures::PROTOCOL_FEATURES.bits());
|
|
||||||
|
|
||||||
// Run a dedicated thread for handling potential reconnections with
|
// Run a dedicated thread for handling potential reconnections with
|
||||||
// the backend.
|
// the backend.
|
||||||
let (kill_evt, pause_evt) = self.common.dup_eventfds();
|
let (kill_evt, pause_evt) = self.common.dup_eventfds();
|
||||||
@ -303,7 +301,7 @@ impl VirtioDevice for Blk {
|
|||||||
queues,
|
queues,
|
||||||
queue_evts,
|
queue_evts,
|
||||||
interrupt_cb,
|
interrupt_cb,
|
||||||
backend_acked_features,
|
self.common.acked_features,
|
||||||
slave_req_handler,
|
slave_req_handler,
|
||||||
kill_evt,
|
kill_evt,
|
||||||
pause_evt,
|
pause_evt,
|
||||||
|
@ -413,7 +413,11 @@ impl Fs {
|
|||||||
common: VirtioCommon {
|
common: VirtioCommon {
|
||||||
device_type: VirtioDeviceType::Fs as u32,
|
device_type: VirtioDeviceType::Fs as u32,
|
||||||
avail_features: acked_features,
|
avail_features: acked_features,
|
||||||
acked_features: 0,
|
// If part of the available features that have been acked, the
|
||||||
|
// PROTOCOL_FEATURES bit must be already set through the VIRTIO
|
||||||
|
// acked features as we know the guest would never ack it, thus
|
||||||
|
// the feature would be lost.
|
||||||
|
acked_features: acked_features & VhostUserVirtioFeatures::PROTOCOL_FEATURES.bits(),
|
||||||
queue_sizes: vec![queue_size; num_queues],
|
queue_sizes: vec![queue_size; num_queues],
|
||||||
paused_sync: Some(Arc::new(Barrier::new(2))),
|
paused_sync: Some(Arc::new(Barrier::new(2))),
|
||||||
min_queues: DEFAULT_QUEUE_NUMBER as u16,
|
min_queues: DEFAULT_QUEUE_NUMBER as u16,
|
||||||
@ -538,12 +542,6 @@ impl VirtioDevice for Fs {
|
|||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
// The backend acknowledged features must contain the protocol feature
|
|
||||||
// bit in case it was initially set but lost through the features
|
|
||||||
// negotiation with the guest.
|
|
||||||
let backend_acked_features = self.common.acked_features
|
|
||||||
| (self.common.avail_features & VhostUserVirtioFeatures::PROTOCOL_FEATURES.bits());
|
|
||||||
|
|
||||||
// Run a dedicated thread for handling potential reconnections with
|
// Run a dedicated thread for handling potential reconnections with
|
||||||
// the backend.
|
// the backend.
|
||||||
let (kill_evt, pause_evt) = self.common.dup_eventfds();
|
let (kill_evt, pause_evt) = self.common.dup_eventfds();
|
||||||
@ -553,7 +551,7 @@ impl VirtioDevice for Fs {
|
|||||||
queues,
|
queues,
|
||||||
queue_evts,
|
queue_evts,
|
||||||
interrupt_cb,
|
interrupt_cb,
|
||||||
backend_acked_features,
|
self.common.acked_features,
|
||||||
slave_req_handler,
|
slave_req_handler,
|
||||||
kill_evt,
|
kill_evt,
|
||||||
pause_evt,
|
pause_evt,
|
||||||
|
@ -222,7 +222,11 @@ impl Net {
|
|||||||
device_type: VirtioDeviceType::Net as u32,
|
device_type: VirtioDeviceType::Net as u32,
|
||||||
queue_sizes: vec![vu_cfg.queue_size; num_queues],
|
queue_sizes: vec![vu_cfg.queue_size; num_queues],
|
||||||
avail_features: acked_features,
|
avail_features: acked_features,
|
||||||
acked_features: 0,
|
// If part of the available features that have been acked, the
|
||||||
|
// PROTOCOL_FEATURES bit must be already set through the VIRTIO
|
||||||
|
// acked features as we know the guest would never ack it, thus
|
||||||
|
// the feature would be lost.
|
||||||
|
acked_features: acked_features & VhostUserVirtioFeatures::PROTOCOL_FEATURES.bits(),
|
||||||
paused_sync: Some(Arc::new(Barrier::new(2))),
|
paused_sync: Some(Arc::new(Barrier::new(2))),
|
||||||
min_queues: DEFAULT_QUEUE_NUMBER as u16,
|
min_queues: DEFAULT_QUEUE_NUMBER as u16,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
@ -261,9 +265,13 @@ impl Net {
|
|||||||
self.vu_common.acked_protocol_features = state.acked_protocol_features;
|
self.vu_common.acked_protocol_features = state.acked_protocol_features;
|
||||||
self.vu_common.vu_num_queues = state.vu_num_queues;
|
self.vu_common.vu_num_queues = state.vu_num_queues;
|
||||||
|
|
||||||
|
// The backend acknowledged features must not contain VIRTIO_NET_F_MAC
|
||||||
|
// since we don't expect the backend to handle it.
|
||||||
|
let backend_acked_features = self.common.acked_features & !(1 << VIRTIO_NET_F_MAC);
|
||||||
|
|
||||||
if let Err(e) = self
|
if let Err(e) = self
|
||||||
.vu_common
|
.vu_common
|
||||||
.restore_backend_connection(self.common.acked_features)
|
.restore_backend_connection(backend_acked_features)
|
||||||
{
|
{
|
||||||
error!(
|
error!(
|
||||||
"Failed restoring connection with vhost-user backend: {:?}",
|
"Failed restoring connection with vhost-user backend: {:?}",
|
||||||
@ -355,12 +363,9 @@ impl VirtioDevice for Net {
|
|||||||
|
|
||||||
let slave_req_handler: Option<MasterReqHandler<SlaveReqHandler>> = None;
|
let slave_req_handler: Option<MasterReqHandler<SlaveReqHandler>> = None;
|
||||||
|
|
||||||
// The backend acknowledged features must contain the protocol feature
|
// The backend acknowledged features must not contain VIRTIO_NET_F_MAC
|
||||||
// bit in case it was initially set but lost through the features
|
// since we don't expect the backend to handle it.
|
||||||
// negotiation with the guest. Additionally, it must not contain
|
let backend_acked_features = self.common.acked_features & !(1 << VIRTIO_NET_F_MAC);
|
||||||
// VIRTIO_NET_F_MAC since we don't expect the backend to handle it.
|
|
||||||
let backend_acked_features = self.common.acked_features & !(1 << VIRTIO_NET_F_MAC)
|
|
||||||
| (self.common.avail_features & VhostUserVirtioFeatures::PROTOCOL_FEATURES.bits());
|
|
||||||
|
|
||||||
// Run a dedicated thread for handling potential reconnections with
|
// Run a dedicated thread for handling potential reconnections with
|
||||||
// the backend.
|
// the backend.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user