1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
// Copyright 2023 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! virtqueue interface
#![deny(missing_docs)]
use std::ops::Deref;
use std::ops::DerefMut;
pub mod packed_descriptor_chain;
mod packed_queue;
pub mod split_descriptor_chain;
mod split_queue;
use std::num::Wrapping;
use anyhow::bail;
use anyhow::Context;
use anyhow::Result;
use base::warn;
use base::Event;
use cros_async::AsyncError;
use cros_async::EventAsync;
use futures::channel::oneshot;
use futures::select_biased;
use futures::FutureExt;
use packed_queue::PackedQueue;
use serde::Deserialize;
use serde::Serialize;
use split_queue::SplitQueue;
use virtio_sys::virtio_config::VIRTIO_F_RING_PACKED;
use vm_memory::GuestAddress;
use vm_memory::GuestMemory;
use crate::virtio::DescriptorChain;
use crate::virtio::Interrupt;
use crate::virtio::VIRTIO_MSI_NO_VECTOR;
/// A virtio queue's parameters.
///
/// `QueueConfig` can be converted into a running `Queue` by calling [`QueueConfig::activate()`].
pub struct QueueConfig {
/// Whether this queue has already been activated.
activated: bool,
/// The maximal size in elements offered by the device
max_size: u16,
/// The queue size in elements the driver selected. This is always guaranteed to be a power of
/// two less than or equal to `max_size`, as required for split virtqueues. These invariants
/// are enforced by `set_size()`.
size: u16,
/// Indicates if the queue is finished with configuration
ready: bool,
/// MSI-X vector for the queue. Don't care for INTx
vector: u16,
/// Ring features (e.g. `VIRTIO_RING_F_EVENT_IDX`, `VIRTIO_F_RING_PACKED`) offered by the
/// device
features: u64,
// Device feature bits accepted by the driver
acked_features: u64,
/// Guest physical address of the descriptor table
desc_table: GuestAddress,
/// Guest physical address of the available ring (driver area)
///
/// TODO(b/290657008): update field and accessor names to match the current virtio spec
avail_ring: GuestAddress,
/// Guest physical address of the used ring (device area)
used_ring: GuestAddress,
/// Initial available ring index when the queue is activated.
next_avail: Wrapping<u16>,
/// Initial used ring index when the queue is activated.
next_used: Wrapping<u16>,
}
#[derive(Serialize, Deserialize)]
struct QueueConfigSnapshot {
activated: bool,
max_size: u16,
size: u16,
ready: bool,
vector: u16,
features: u64,
acked_features: u64,
desc_table: GuestAddress,
avail_ring: GuestAddress,
used_ring: GuestAddress,
next_avail: Wrapping<u16>,
next_used: Wrapping<u16>,
}
impl QueueConfig {
/// Constructs a virtio queue configuration with the given `max_size`.
pub fn new(max_size: u16, features: u64) -> Self {
assert!(max_size > 0);
assert!(max_size <= Queue::MAX_SIZE);
QueueConfig {
activated: false,
max_size,
size: max_size,
ready: false,
vector: VIRTIO_MSI_NO_VECTOR,
desc_table: GuestAddress(0),
avail_ring: GuestAddress(0),
used_ring: GuestAddress(0),
features,
acked_features: 0,
next_used: Wrapping(0),
next_avail: Wrapping(0),
}
}
/// Returns the maximum size of this queue.
pub fn max_size(&self) -> u16 {
self.max_size
}
/// Returns the currently configured size of the queue.
pub fn size(&self) -> u16 {
self.size
}
/// Sets the queue size.
pub fn set_size(&mut self, val: u16) {
if self.ready {
warn!("ignoring write to size on ready queue");
return;
}
if val > self.max_size {
warn!(
"requested queue size {} is larger than max_size {}",
val, self.max_size
);
return;
}
self.size = val;
}
/// Returns the currently configured interrupt vector.
pub fn vector(&self) -> u16 {
self.vector
}
/// Sets the interrupt vector for this queue.
pub fn set_vector(&mut self, val: u16) {
if self.ready {
warn!("ignoring write to vector on ready queue");
return;
}
self.vector = val;
}
/// Getter for descriptor area
pub fn desc_table(&self) -> GuestAddress {
self.desc_table
}
/// Setter for descriptor area
pub fn set_desc_table(&mut self, val: GuestAddress) {
if self.ready {
warn!("ignoring write to desc_table on ready queue");
return;
}
self.desc_table = val;
}
/// Getter for driver area
pub fn avail_ring(&self) -> GuestAddress {
self.avail_ring
}
/// Setter for driver area
pub fn set_avail_ring(&mut self, val: GuestAddress) {
if self.ready {
warn!("ignoring write to avail_ring on ready queue");
return;
}
self.avail_ring = val;
}
/// Getter for device area
pub fn used_ring(&self) -> GuestAddress {
self.used_ring
}
/// Setter for device area
pub fn set_used_ring(&mut self, val: GuestAddress) {
if self.ready {
warn!("ignoring write to used_ring on ready queue");
return;
}
self.used_ring = val;
}
/// Getter for next_avail index
pub fn next_avail(&self) -> Wrapping<u16> {
self.next_avail
}
/// Setter for next_avail index
pub fn set_next_avail(&mut self, val: Wrapping<u16>) {
if self.ready {
warn!("ignoring write to next_avail on ready queue");
return;
}
self.next_avail = val;
}
/// Getter for next_used index
pub fn next_used(&self) -> Wrapping<u16> {
self.next_used
}
/// Setter for next_used index
pub fn set_next_used(&mut self, val: Wrapping<u16>) {
if self.ready {
warn!("ignoring write to next_used on ready queue");
return;
}
self.next_used = val;
}
/// Returns the features that have been acknowledged by the driver.
pub fn acked_features(&self) -> u64 {
self.acked_features
}
/// Acknowledges that this set of features should be enabled on this queue.
pub fn ack_features(&mut self, features: u64) {
self.acked_features |= features & self.features;
}
/// Return whether the driver has enabled this queue.
pub fn ready(&self) -> bool {
self.ready
}
/// Signal that the driver has completed queue configuration.
pub fn set_ready(&mut self, enable: bool) {
self.ready = enable;
}
/// Convert the queue configuration into an active queue.
pub fn activate(
&mut self,
mem: &GuestMemory,
event: Event,
interrupt: Interrupt,
) -> Result<Queue> {
if !self.ready {
bail!("attempted to activate a non-ready queue");
}
if self.activated {
bail!("queue is already activated");
}
// If VIRTIO_F_RING_PACKED feature bit is set, create a packed queue, otherwise create a
// split queue
let queue: Queue = if ((self.acked_features >> VIRTIO_F_RING_PACKED) & 1) != 0 {
let pq = PackedQueue::new(self, mem, event, interrupt)
.context("Failed to create a packed queue.")?;
Queue::PackedVirtQueue(pq)
} else {
let sq = SplitQueue::new(self, mem, event, interrupt)
.context("Failed to create a split queue.")?;
Queue::SplitVirtQueue(sq)
};
self.activated = true;
Ok(queue)
}
/// Reset queue to a clean state
pub fn reset(&mut self) {
self.activated = false;
self.ready = false;
self.size = self.max_size;
self.vector = VIRTIO_MSI_NO_VECTOR;
self.desc_table = GuestAddress(0);
self.avail_ring = GuestAddress(0);
self.used_ring = GuestAddress(0);
self.next_avail = Wrapping(0);
self.next_used = Wrapping(0);
self.acked_features = 0;
}
/// Take snapshot of queue configuration
pub fn snapshot(&self) -> Result<serde_json::Value> {
serde_json::to_value(QueueConfigSnapshot {
activated: self.activated,
max_size: self.max_size,
size: self.size,
ready: self.ready,
vector: self.vector,
features: self.features,
acked_features: self.acked_features,
desc_table: self.desc_table,
avail_ring: self.avail_ring,
used_ring: self.used_ring,
next_avail: self.next_avail,
next_used: self.next_used,
})
.context("error serializing")
}
/// Restore queue configuration from snapshot
pub fn restore(&mut self, data: serde_json::Value) -> Result<()> {
let snap: QueueConfigSnapshot =
serde_json::from_value(data).context("error deserializing")?;
self.activated = snap.activated;
self.max_size = snap.max_size;
self.size = snap.size;
self.ready = snap.ready;
self.vector = snap.vector;
self.features = snap.features;
self.acked_features = snap.acked_features;
self.desc_table = snap.desc_table;
self.avail_ring = snap.avail_ring;
self.used_ring = snap.used_ring;
self.next_avail = snap.next_avail;
self.next_used = snap.next_used;
Ok(())
}
}
/// Usage: define_queue_method!(method_name, return_type[, mut][, arg1: arg1_type, arg2: arg2_type,
/// ...])
///
/// - `method_name`: The name of the method to be defined (as an identifier).
/// - `return_type`: The return type of the method.
/// - `mut` (optional): Include this keyword if the method requires a mutable reference to `self`
/// (`&mut self`).
/// - `arg1: arg1_type, arg2: arg2_type, ...` (optional): Include method parameters as a
/// comma-separated list of `name: type` pairs, if the method takes any arguments.
macro_rules! define_queue_method {
(
$(#[$doc:meta])*
$method:ident, $return_type:ty, $( $var:ident : $vartype:ty ),*
) => {
$(#[$doc])*
pub fn $method(&self, $($var: $vartype),*) -> $return_type {
match self {
Queue::SplitVirtQueue(sq) => sq.$method($($var),*),
Queue::PackedVirtQueue(pq) => pq.$method($($var),*),
}
}
};
(
$(#[$doc:meta])*
$method:ident, $return_type:ty, mut, $( $var:ident : $vartype:ty ),*
) => {
$(#[$doc])*
pub fn $method(&mut self, $($var: $vartype),*) -> $return_type {
match self {
Queue::SplitVirtQueue(sq) => sq.$method($($var),*),
Queue::PackedVirtQueue(pq) => pq.$method($($var),*),
}
}
};
}
/// Virtqueue interface representing different types of virtqueues
/// The struct of each queue type is wrapped in the enum variants
#[derive(Debug)]
pub enum Queue {
/// Split virtqueue type in virtio v1.2 spec: <https://docs.oasis-open.org/virtio/virtio/v1.2/csd01/virtio-v1.2-csd01.html#x1-350007>
SplitVirtQueue(SplitQueue),
/// Packed virtqueue type in virtio v1.2 spec: <https://docs.oasis-open.org/virtio/virtio/v1.2/csd01/virtio-v1.2-csd01.html#x1-720008>
PackedVirtQueue(PackedQueue),
}
impl Queue {
/// Largest valid number of entries in a virtqueue.
pub const MAX_SIZE: u16 = 32768;
/// Asynchronously read the next descriptor chain from the queue.
/// Returns a `DescriptorChain` when it is `await`ed.
pub async fn next_async(
&mut self,
eventfd: &mut EventAsync,
) -> std::result::Result<DescriptorChain, AsyncError> {
loop {
// Check if there are more descriptors available.
if let Some(chain) = self.pop() {
return Ok(chain);
}
eventfd.next_val().await?;
}
}
/// Get the first available descriptor chain without removing it from the queue.
/// Call `pop()` on the returned [`PeekedDescriptorChain`] to remove it from the queue.
pub fn peek(&mut self) -> Option<PeekedDescriptorChain> {
let desc_chain = match self {
Queue::SplitVirtQueue(q) => q.peek(),
Queue::PackedVirtQueue(q) => q.peek(),
}?;
Some(PeekedDescriptorChain::new(self, desc_chain))
}
/// If a new DescriptorChain is available, returns one and removes it from the queue.
pub fn pop(&mut self) -> Option<DescriptorChain> {
self.peek().map(PeekedDescriptorChain::pop)
}
/// Returns `None` if stop_rx receives a value; otherwise returns the result
/// of waiting for the next descriptor.
pub async fn next_async_interruptable(
&mut self,
queue_event: &mut EventAsync,
mut stop_rx: &mut oneshot::Receiver<()>,
) -> std::result::Result<Option<DescriptorChain>, AsyncError> {
select_biased! {
avail_desc_res = self.next_async(queue_event).fuse() => {
Ok(Some(avail_desc_res?))
}
_ = stop_rx => Ok(None),
}
}
/// inject interrupt into guest on this queue
/// return true: interrupt is injected into guest for this queue
/// false: interrupt isn't injected
pub fn trigger_interrupt(&mut self) -> bool {
match self {
Queue::SplitVirtQueue(sq) => sq.trigger_interrupt(),
Queue::PackedVirtQueue(pq) => pq.trigger_interrupt(),
}
}
/// Restore queue from snapshot
pub fn restore(
queue_config: &QueueConfig,
queue_value: serde_json::Value,
mem: &GuestMemory,
event: Event,
interrupt: Interrupt,
) -> anyhow::Result<Queue> {
if queue_config.acked_features & 1 << VIRTIO_F_RING_PACKED != 0 {
PackedQueue::restore(queue_value, mem, event, interrupt).map(Queue::PackedVirtQueue)
} else {
SplitQueue::restore(queue_value, mem, event, interrupt).map(Queue::SplitVirtQueue)
}
}
/// "Reclaim" a queue that was given to a vhost-user backend and is now being taken back using
/// VHOST_USER_GET_VRING_BASE.
///
/// The `Queue` will have stale fields if the vhost-user backend fulfilled any virtqueue
/// requests. This function updates the `Queue` to pick up where the backend left off.
pub fn vhost_user_reclaim(&mut self, vring_base: u16) {
match self {
Queue::SplitVirtQueue(q) => q.vhost_user_reclaim(vring_base),
Queue::PackedVirtQueue(q) => q.vhost_user_reclaim(vring_base),
}
}
/// Getter for the next index of the available ring that device will process.
///
/// Not to be confused with the available ring's index field, which is the next index for the
/// driver to fill.
pub fn next_avail_to_process(&self) -> u16 {
match self {
Queue::SplitVirtQueue(q) => q.next_avail_to_process(),
Queue::PackedVirtQueue(q) => q.next_avail_to_process(),
}
}
define_queue_method!(
/// Getter for vector field
vector,
u16,
);
define_queue_method!(
/// Getter for descriptor area
desc_table,
GuestAddress,
);
define_queue_method!(
/// Getter for driver area
avail_ring,
GuestAddress,
);
define_queue_method!(
/// Getter for device area
used_ring,
GuestAddress,
);
define_queue_method!(
/// Return the actual size of the queue, as the driver may not set up a
/// queue as big as the device allows.
size,
u16,
);
define_queue_method!(
/// Get a reference to the queue's event.
event,
&Event,
);
define_queue_method!(
/// Get a reference to the queue's interrupt.
interrupt,
&Interrupt,
);
define_queue_method!(
/// Puts an available descriptor head into the used ring for use by the guest.
add_used,
(),
mut,
desc_chain: DescriptorChain,
len: u32
);
define_queue_method!(
/// Take snapshot of queue's current status
snapshot,
Result<serde_json::Value>,
);
}
/// A `DescriptorChain` that has been peeked from a `Queue` but not popped yet.
///
/// Call [`pop()`](Self::pop) to pop this descriptor chain from the `Queue` and receive the
/// contained `DescriptorChain` object.
///
/// This object holds a mutable reference to the `Queue` to ensure it is not possible to pop or peek
/// another descriptor while a peek is already active. Either `pop()` or drop this object before
/// attempting to manipulate the `Queue` again.
pub struct PeekedDescriptorChain<'q> {
queue: &'q mut Queue,
desc_chain: DescriptorChain,
}
impl<'q> PeekedDescriptorChain<'q> {
/// Create a `PeekedDescriptorChain` that holds a mutable reference to its `Queue`.
/// Use [`Queue::peek()`] rather than calling this function.
fn new(queue: &'q mut Queue, desc_chain: DescriptorChain) -> Self {
PeekedDescriptorChain { queue, desc_chain }
}
/// Pop this descriptor chain from the queue.
pub fn pop(self) -> DescriptorChain {
match self.queue {
Queue::SplitVirtQueue(q) => q.pop_peeked(&self.desc_chain),
Queue::PackedVirtQueue(q) => q.pop_peeked(&self.desc_chain),
}
self.desc_chain
}
}
impl Deref for PeekedDescriptorChain<'_> {
type Target = DescriptorChain;
fn deref(&self) -> &Self::Target {
&self.desc_chain
}
}
impl DerefMut for PeekedDescriptorChain<'_> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.desc_chain
}
}