pub struct AdminSynchronousProxy { /* private fields */ }
Implementations§
Source§impl AdminSynchronousProxy
impl AdminSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<AdminEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<AdminEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn mount(
&self,
device: ClientEnd<BlockMarker>,
name: &str,
options: MountOptions,
___deadline: MonotonicInstant,
) -> Result<AdminMountResult, Error>
pub fn mount( &self, device: ClientEnd<BlockMarker>, name: &str, options: MountOptions, ___deadline: MonotonicInstant, ) -> Result<AdminMountResult, Error>
Mounts the filesystem on the block device. The filesystem will be mounted in /fs/mnt/
Sourcepub fn unmount(
&self,
name: &str,
___deadline: MonotonicInstant,
) -> Result<AdminUnmountResult, Error>
pub fn unmount( &self, name: &str, ___deadline: MonotonicInstant, ) -> Result<AdminUnmountResult, Error>
Unmounts a previously mounted filesystem.
Sourcepub fn get_device_path(
&self,
fs_id: u64,
___deadline: MonotonicInstant,
) -> Result<AdminGetDevicePathResult, Error>
pub fn get_device_path( &self, fs_id: u64, ___deadline: MonotonicInstant, ) -> Result<AdminGetDevicePathResult, Error>
Returns the device path for the filesystem with the given fs_id.
Sourcepub fn write_data_file(
&self,
filename: &str,
payload: Vmo,
___deadline: MonotonicInstant,
) -> Result<AdminWriteDataFileResult, Error>
pub fn write_data_file( &self, filename: &str, payload: Vmo, ___deadline: MonotonicInstant, ) -> Result<AdminWriteDataFileResult, Error>
Writes filename
into the data partition with contents from payload
, formatting the data
partition if it isn’t already formatted. Overwrites file if it already exists.
This can only be called while the data partition isn’t already mounted, which is typically
in recovery builds where fshost is running with the ramdisk_image
flag set.
Sourcepub fn wipe_storage(
&self,
blobfs_root: Option<ServerEnd<DirectoryMarker>>,
blob_creator: Option<ServerEnd<BlobCreatorMarker>>,
___deadline: MonotonicInstant,
) -> Result<AdminWipeStorageResult, Error>
pub fn wipe_storage( &self, blobfs_root: Option<ServerEnd<DirectoryMarker>>, blob_creator: Option<ServerEnd<BlobCreatorMarker>>, ___deadline: MonotonicInstant, ) -> Result<AdminWipeStorageResult, Error>
Reprovision the first non-ramdisk FVM volume, and format/mount the blob partition.
The formatted Blobfs instance can be accessed via the client end of blobfs_root
; if no
handle is provided, then blobfs won’t be formatted.
If fxblob is configured, blob_creator will be connected with the fxfs BlobCreator protocol,
which should be used instead of creating blobs in the blobfs_root
. blobfs_root
will
still be connected and can be used to read blobs. If fxblob is configured, but no handle is
provided for blob_creator or for blobfs_root, the blob volume won’t be formatted. If a
handle is provided for blob_creator but fxblob is not configured, the channel will be
closed.
This function will pause the fshost block watcher regardless of success or failure.
Requires fshost to be started with the ramdisk_image
config option set to true.
WARNING: This will cause irreversible data loss. Use with caution.
TODO(https://fxbug.dev/42063480): This function unbinds all child drivers of the volume to be wiped. This can race with the fshost block device manager, which attempts to bind the FVM driver and unseal the zxcrypt volume.
Sourcepub fn shred_data_volume(
&self,
___deadline: MonotonicInstant,
) -> Result<AdminShredDataVolumeResult, Error>
pub fn shred_data_volume( &self, ___deadline: MonotonicInstant, ) -> Result<AdminShredDataVolumeResult, Error>
Wipes the data volume which will get reinitialised upon next boot. This is not cryptographically secure; the caller should take care to reset hardware keys.
Sourcepub fn storage_host_enabled(
&self,
___deadline: MonotonicInstant,
) -> Result<bool, Error>
pub fn storage_host_enabled( &self, ___deadline: MonotonicInstant, ) -> Result<bool, Error>
Returns whether fshost is configured to use storage-host.
Trait Implementations§
Source§impl Debug for AdminSynchronousProxy
impl Debug for AdminSynchronousProxy
Source§impl SynchronousProxy for AdminSynchronousProxy
impl SynchronousProxy for AdminSynchronousProxy
Source§type Proxy = AdminProxy
type Proxy = AdminProxy
Source§type Protocol = AdminMarker
type Protocol = AdminMarker
Proxy
controls.