virtio_drivers/device/console.rs
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
//! Driver for VirtIO console devices.
use crate::hal::Hal;
use crate::queue::VirtQueue;
use crate::transport::Transport;
use crate::volatile::{volread, ReadOnly, WriteOnly};
use crate::{Result, PAGE_SIZE};
use alloc::boxed::Box;
use bitflags::bitflags;
use core::ptr::NonNull;
const QUEUE_RECEIVEQ_PORT_0: u16 = 0;
const QUEUE_TRANSMITQ_PORT_0: u16 = 1;
const QUEUE_SIZE: usize = 2;
const SUPPORTED_FEATURES: Features = Features::RING_EVENT_IDX.union(Features::RING_INDIRECT_DESC);
/// Driver for a VirtIO console device.
///
/// Only a single port is allowed since `alloc` is disabled. Emergency write and cols/rows are not
/// implemented.
///
/// # Example
///
/// ```
/// # use virtio_drivers::{Error, Hal, transport::Transport};
/// use virtio_drivers::device::console::VirtIOConsole;
/// # fn example<HalImpl: Hal, T: Transport>(transport: T) -> Result<(), Error> {
/// let mut console = VirtIOConsole::<HalImpl, _>::new(transport)?;
///
/// let info = console.info();
/// println!("VirtIO console {}x{}", info.rows, info.columns);
///
/// for &c in b"Hello console!\n" {
/// console.send(c)?;
/// }
///
/// let c = console.recv(true)?;
/// println!("Read {:?} from console.", c);
/// # Ok(())
/// # }
/// ```
pub struct VirtIOConsole<H: Hal, T: Transport> {
transport: T,
config_space: NonNull<Config>,
receiveq: VirtQueue<H, QUEUE_SIZE>,
transmitq: VirtQueue<H, QUEUE_SIZE>,
queue_buf_rx: Box<[u8; PAGE_SIZE]>,
cursor: usize,
pending_len: usize,
/// The token of the outstanding receive request, if there is one.
receive_token: Option<u16>,
}
// SAFETY: The config space can be accessed from any thread.
unsafe impl<H: Hal, T: Transport + Send> Send for VirtIOConsole<H, T> where
VirtQueue<H, QUEUE_SIZE>: Send
{
}
// SAFETY: A `&VirtIOConsole` only allows reading the config space.
unsafe impl<H: Hal, T: Transport + Sync> Sync for VirtIOConsole<H, T> where
VirtQueue<H, QUEUE_SIZE>: Sync
{
}
/// Information about a console device, read from its configuration space.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ConsoleInfo {
/// The console height in characters.
pub rows: u16,
/// The console width in characters.
pub columns: u16,
/// The maxumum number of ports supported by the console device.
pub max_ports: u32,
}
impl<H: Hal, T: Transport> VirtIOConsole<H, T> {
/// Creates a new VirtIO console driver.
pub fn new(mut transport: T) -> Result<Self> {
let negotiated_features = transport.begin_init(SUPPORTED_FEATURES);
let config_space = transport.config_space::<Config>()?;
let receiveq = VirtQueue::new(
&mut transport,
QUEUE_RECEIVEQ_PORT_0,
negotiated_features.contains(Features::RING_INDIRECT_DESC),
negotiated_features.contains(Features::RING_EVENT_IDX),
)?;
let transmitq = VirtQueue::new(
&mut transport,
QUEUE_TRANSMITQ_PORT_0,
negotiated_features.contains(Features::RING_INDIRECT_DESC),
negotiated_features.contains(Features::RING_EVENT_IDX),
)?;
// Safe because no alignment or initialisation is required for [u8], the DMA buffer is
// dereferenceable, and the lifetime of the reference matches the lifetime of the DMA buffer
// (which we don't otherwise access).
let queue_buf_rx = Box::new([0; PAGE_SIZE]);
transport.finish_init();
let mut console = VirtIOConsole {
transport,
config_space,
receiveq,
transmitq,
queue_buf_rx,
cursor: 0,
pending_len: 0,
receive_token: None,
};
console.poll_retrieve()?;
Ok(console)
}
/// Returns a struct with information about the console device, such as the number of rows and columns.
pub fn info(&self) -> ConsoleInfo {
// Safe because config_space is a valid pointer to the device configuration space.
unsafe {
let columns = volread!(self.config_space, cols);
let rows = volread!(self.config_space, rows);
let max_ports = volread!(self.config_space, max_nr_ports);
ConsoleInfo {
rows,
columns,
max_ports,
}
}
}
/// Makes a request to the device to receive data, if there is not already an outstanding
/// receive request or some data already received and not yet returned.
fn poll_retrieve(&mut self) -> Result<()> {
if self.receive_token.is_none() && self.cursor == self.pending_len {
// Safe because the buffer lasts at least as long as the queue, and there are no other
// outstanding requests using the buffer.
self.receive_token = Some(unsafe {
self.receiveq
.add(&[], &mut [self.queue_buf_rx.as_mut_slice()])
}?);
if self.receiveq.should_notify() {
self.transport.notify(QUEUE_RECEIVEQ_PORT_0);
}
}
Ok(())
}
/// Acknowledges a pending interrupt, if any, and completes the outstanding finished read
/// request if there is one.
///
/// Returns true if new data has been received.
pub fn ack_interrupt(&mut self) -> Result<bool> {
if !self.transport.ack_interrupt() {
return Ok(false);
}
self.finish_receive()
}
/// If there is an outstanding receive request and it has finished, completes it.
///
/// Returns true if new data has been received.
fn finish_receive(&mut self) -> Result<bool> {
let mut flag = false;
if let Some(receive_token) = self.receive_token {
if self.receive_token == self.receiveq.peek_used() {
// Safe because we are passing the same buffer as we passed to `VirtQueue::add` in
// `poll_retrieve` and it is still valid.
let len = unsafe {
self.receiveq.pop_used(
receive_token,
&[],
&mut [self.queue_buf_rx.as_mut_slice()],
)?
};
flag = true;
assert_ne!(len, 0);
self.cursor = 0;
self.pending_len = len as usize;
// Clear `receive_token` so that when the buffer is used up the next call to
// `poll_retrieve` will add a new pending request.
self.receive_token.take();
}
}
Ok(flag)
}
/// Returns the next available character from the console, if any.
///
/// If no data has been received this will not block but immediately return `Ok<None>`.
pub fn recv(&mut self, pop: bool) -> Result<Option<u8>> {
self.finish_receive()?;
if self.cursor == self.pending_len {
return Ok(None);
}
let ch = self.queue_buf_rx[self.cursor];
if pop {
self.cursor += 1;
self.poll_retrieve()?;
}
Ok(Some(ch))
}
/// Sends a character to the console.
pub fn send(&mut self, chr: u8) -> Result<()> {
let buf: [u8; 1] = [chr];
self.transmitq
.add_notify_wait_pop(&[&buf], &mut [], &mut self.transport)?;
Ok(())
}
}
impl<H: Hal, T: Transport> Drop for VirtIOConsole<H, T> {
fn drop(&mut self) {
// Clear any pointers pointing to DMA regions, so the device doesn't try to access them
// after they have been freed.
self.transport.queue_unset(QUEUE_RECEIVEQ_PORT_0);
self.transport.queue_unset(QUEUE_TRANSMITQ_PORT_0);
}
}
#[repr(C)]
struct Config {
cols: ReadOnly<u16>,
rows: ReadOnly<u16>,
max_nr_ports: ReadOnly<u32>,
emerg_wr: WriteOnly<u32>,
}
bitflags! {
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq)]
struct Features: u64 {
const SIZE = 1 << 0;
const MULTIPORT = 1 << 1;
const EMERG_WRITE = 1 << 2;
// device independent
const NOTIFY_ON_EMPTY = 1 << 24; // legacy
const ANY_LAYOUT = 1 << 27; // legacy
const RING_INDIRECT_DESC = 1 << 28;
const RING_EVENT_IDX = 1 << 29;
const UNUSED = 1 << 30; // legacy
const VERSION_1 = 1 << 32; // detect legacy
// since virtio v1.1
const ACCESS_PLATFORM = 1 << 33;
const RING_PACKED = 1 << 34;
const IN_ORDER = 1 << 35;
const ORDER_PLATFORM = 1 << 36;
const SR_IOV = 1 << 37;
const NOTIFICATION_DATA = 1 << 38;
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{
hal::fake::FakeHal,
transport::{
fake::{FakeTransport, QueueStatus, State},
DeviceType,
},
};
use alloc::{sync::Arc, vec};
use core::ptr::NonNull;
use std::{sync::Mutex, thread};
#[test]
fn receive() {
let mut config_space = Config {
cols: ReadOnly::new(0),
rows: ReadOnly::new(0),
max_nr_ports: ReadOnly::new(0),
emerg_wr: WriteOnly::default(),
};
let state = Arc::new(Mutex::new(State {
queues: vec![QueueStatus::default(), QueueStatus::default()],
..Default::default()
}));
let transport = FakeTransport {
device_type: DeviceType::Console,
max_queue_size: 2,
device_features: 0,
config_space: NonNull::from(&mut config_space),
state: state.clone(),
};
let mut console = VirtIOConsole::<FakeHal, FakeTransport<Config>>::new(transport).unwrap();
// Nothing is available to receive.
assert_eq!(console.recv(false).unwrap(), None);
assert_eq!(console.recv(true).unwrap(), None);
// Still nothing after a spurious interrupt.
assert_eq!(console.ack_interrupt(), Ok(false));
assert_eq!(console.recv(false).unwrap(), None);
// Make a character available, and simulate an interrupt.
{
let mut state = state.lock().unwrap();
state.write_to_queue::<QUEUE_SIZE>(QUEUE_RECEIVEQ_PORT_0, &[42]);
state.interrupt_pending = true;
}
assert_eq!(console.ack_interrupt(), Ok(true));
assert_eq!(state.lock().unwrap().interrupt_pending, false);
// Receive the character. If we don't pop it it is still there to read again.
assert_eq!(console.recv(false).unwrap(), Some(42));
assert_eq!(console.recv(true).unwrap(), Some(42));
assert_eq!(console.recv(true).unwrap(), None);
}
#[test]
fn send() {
let mut config_space = Config {
cols: ReadOnly::new(0),
rows: ReadOnly::new(0),
max_nr_ports: ReadOnly::new(0),
emerg_wr: WriteOnly::default(),
};
let state = Arc::new(Mutex::new(State {
queues: vec![QueueStatus::default(), QueueStatus::default()],
..Default::default()
}));
let transport = FakeTransport {
device_type: DeviceType::Console,
max_queue_size: 2,
device_features: 0,
config_space: NonNull::from(&mut config_space),
state: state.clone(),
};
let mut console = VirtIOConsole::<FakeHal, FakeTransport<Config>>::new(transport).unwrap();
// Start a thread to simulate the device waiting for characters.
let handle = thread::spawn(move || {
println!("Device waiting for a character.");
State::wait_until_queue_notified(&state, QUEUE_TRANSMITQ_PORT_0);
println!("Transmit queue was notified.");
let data = state
.lock()
.unwrap()
.read_from_queue::<QUEUE_SIZE>(QUEUE_TRANSMITQ_PORT_0);
assert_eq!(data, b"Q");
});
assert_eq!(console.send(b'Q'), Ok(()));
handle.join().unwrap();
}
}