Skip to main content

GuestMemoryVirtQueue

Struct GuestMemoryVirtQueue 

Source
pub struct GuestMemoryVirtQueue { /* private fields */ }
Expand description

A VirtIO split virtqueue backed by guest physical memory.

The queue addresses (desc, avail, used) are guest physical addresses set by the guest driver during device initialization. The ram_base pointer is the host virtual address corresponding to GPA 0.

Implementations§

Source§

impl GuestMemoryVirtQueue

Source

pub unsafe fn new( queue_idx: u16, size: u16, desc_gpa: u64, avail_gpa: u64, used_gpa: u64, ram_base: *mut u8, ram_size: usize, ) -> GuestMemoryVirtQueue

Creates a new guest memory virtqueue.

§Safety

ram_base must point to a valid allocation of at least ram_size bytes that remains valid for the lifetime of this queue.

Source

pub fn set_event_idx(&mut self, enabled: bool)

Enables event index feature (VIRTIO_F_EVENT_IDX).

Source

pub fn queue_idx(&self) -> u16

Returns the queue index.

Source

pub fn has_avail(&self) -> bool

Returns whether there are available descriptors to process.

Source

pub fn pop_avail(&mut self) -> Option<DescriptorChain>

Pops the next available descriptor chain.

Source

pub fn push_used(&mut self, head_idx: u16, len: u32)

Pushes a used buffer notification.

Source

pub fn push_used_batch(&mut self, completions: &[(u16, u32)])

Pushes multiple used buffers with a single index update.

Source

pub fn read_buffer(&self, gpa: u64, len: u32) -> Option<Vec<u8>>

Reads bytes from a guest buffer into a host Vec.

Source

pub fn write_buffer(&self, gpa: u64, data: &[u8]) -> bool

Writes bytes from a host buffer into guest memory.

Source

pub unsafe fn guest_slice(&self, gpa: u64, len: usize) -> Option<&[u8]>

Returns a raw host pointer for zero-copy access to a guest buffer.

§Safety

The caller must ensure no concurrent modifications to the same guest memory region and that the returned pointer is not used after the queue (and its backing RAM) is dropped.

Source

pub unsafe fn guest_slice_mut( &mut self, gpa: u64, len: usize, ) -> Option<&mut [u8]>

Returns a mutable raw host pointer for zero-copy write access.

§Safety

Same requirements as guest_slice, plus exclusive access guarantee.

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more