Struct devices::ProxyDevice
source · pub struct ProxyDevice {
child_proc_intf: ChildProcIntf,
}
Expand description
Wraps an inner BusDevice
that is run inside a child process via fork.
The forked device process will automatically be terminated when this is dropped.
Fields§
§child_proc_intf: ChildProcIntf
Implementations§
source§impl ProxyDevice
impl ProxyDevice
sourcepub fn new<D: BusDevice, P: PrepareFork>(
device: D,
jail: Minijail,
keep_rds: Vec<RawDescriptor>,
swap_prepare_fork: &mut Option<P>
) -> Result<ProxyDevice, Error>
pub fn new<D: BusDevice, P: PrepareFork>( device: D, jail: Minijail, keep_rds: Vec<RawDescriptor>, swap_prepare_fork: &mut Option<P> ) -> Result<ProxyDevice, Error>
Takes the given device and isolates it into another process via fork before returning.
Because forks are very unfriendly to destructors and all memory mappings and file descriptors are inherited, this should be used as early as possible in the main process. ProxyDevice::new shall not be used for hotplugging. Call ChildProcIntf::new on jail warden process, send using serde, then cast into ProxyDevice instead.
§Arguments
device
- The device to isolate to another process.jail
- The jail to use for isolating the given device.keep_rds
- File descriptors that will be kept open in the child.
pub fn pid(&self) -> pid_t
sourcefn send_no_result(&self, cmd: &Command)
fn send_no_result(&self, cmd: &Command)
Send a command that does not expect a response from the child device process.
sourcefn sync_send(&self, cmd: &Command) -> Option<CommandResult>
fn sync_send(&self, cmd: &Command) -> Option<CommandResult>
Send a command and read its response from the child device process.
Trait Implementations§
source§impl BusDevice for ProxyDevice
impl BusDevice for ProxyDevice
source§fn device_id(&self) -> DeviceId
fn device_id(&self) -> DeviceId
Returns a unique id per device type suitable for metrics gathering.
source§fn debug_label(&self) -> String
fn debug_label(&self) -> String
Returns a label suitable for debug output.
source§fn config_register_write(
&mut self,
reg_idx: usize,
offset: u64,
data: &[u8]
) -> ConfigWriteResult
fn config_register_write( &mut self, reg_idx: usize, offset: u64, data: &[u8] ) -> ConfigWriteResult
Sets a register in the configuration space. Only used by PCI. Read more
source§fn config_register_read(&self, reg_idx: usize) -> u32
fn config_register_read(&self, reg_idx: usize) -> u32
Gets a register from the configuration space. Only used by PCI. Read more
source§fn init_pci_config_mapping(
&mut self,
shmem: &SharedMemory,
base: usize,
len: usize
) -> bool
fn init_pci_config_mapping( &mut self, shmem: &SharedMemory, base: usize, len: usize ) -> bool
Provides a memory region to back MMIO access to the configuration
space. If the device can keep the memory region up to date, then it
should return true, after which no more calls to config_register_read
will be made. Otherwise the device should return false. Read more
source§fn virtual_config_register_write(&mut self, reg_idx: usize, value: u32)
fn virtual_config_register_write(&mut self, reg_idx: usize, value: u32)
Sets a register in the virtual config space. Only used by PCI. Read more
source§fn virtual_config_register_read(&self, reg_idx: usize) -> u32
fn virtual_config_register_read(&self, reg_idx: usize) -> u32
Gets a register from the virtual config space. Only used by PCI. Read more
source§fn read(&mut self, info: BusAccessInfo, data: &mut [u8])
fn read(&mut self, info: BusAccessInfo, data: &mut [u8])
Reads at
offset
from this devicesource§fn write(&mut self, info: BusAccessInfo, data: &[u8])
fn write(&mut self, info: BusAccessInfo, data: &[u8])
Writes at
offset
into this devicesource§fn get_ranges(&self) -> Vec<(BusRange, BusType)>
fn get_ranges(&self) -> Vec<(BusRange, BusType)>
Gets a list of all ranges registered by this BusDevice.
source§fn destroy_device(&mut self)
fn destroy_device(&mut self)
Invoked when the device is destroyed
source§fn on_sandboxed(&mut self)
fn on_sandboxed(&mut self)
Invoked when the device is sandboxed.
source§impl Drop for ProxyDevice
impl Drop for ProxyDevice
source§impl Suspendable for ProxyDevice
impl Suspendable for ProxyDevice
source§impl TryFrom<ChildProcIntf> for ProxyDevice
impl TryFrom<ChildProcIntf> for ProxyDevice
Auto Trait Implementations§
impl RefUnwindSafe for ProxyDevice
impl Send for ProxyDevice
impl Sync for ProxyDevice
impl Unpin for ProxyDevice
impl UnwindSafe for ProxyDevice
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.