pub struct BootManagerSynchronousProxy { /* private fields */ }
Implementations§
Source§impl BootManagerSynchronousProxy
impl BootManagerSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<BootManagerEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<BootManagerEvent, 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 query_current_configuration(
&self,
___deadline: MonotonicInstant,
) -> Result<BootManagerQueryCurrentConfigurationResult, Error>
pub fn query_current_configuration( &self, ___deadline: MonotonicInstant, ) -> Result<BootManagerQueryCurrentConfigurationResult, Error>
Queries the configuration the system is currently running.
Returns ZX_ERR_NOT_SUPPORTED
if the zvb.current_slot
boot argument cannot be read
or is an unexpected value.
Sourcepub fn query_active_configuration(
&self,
___deadline: MonotonicInstant,
) -> Result<BootManagerQueryActiveConfigurationResult, Error>
pub fn query_active_configuration( &self, ___deadline: MonotonicInstant, ) -> Result<BootManagerQueryActiveConfigurationResult, Error>
Queries the configuration which will be used as the default boot choice on a normal cold
boot, which may differ from the currently running configuration. Configuration::RECOVERY
should never be active.
Returns ZX_ERR_NOT_SUPPORTED
if Configuration.RECOVERY
is active.
Sourcepub fn query_configuration_last_set_active(
&self,
___deadline: MonotonicInstant,
) -> Result<BootManagerQueryConfigurationLastSetActiveResult, Error>
pub fn query_configuration_last_set_active( &self, ___deadline: MonotonicInstant, ) -> Result<BootManagerQueryConfigurationLastSetActiveResult, Error>
Queries the configuration that was last explicitly marked as active by SetConfigurationActive(). The result is not affected by the current status of the slot.
A newly updated slot is typically marked as active immediately. Therefore this interface can be used as a way to identify the newest slot.
Returns ZX_ERR_IO
if fail to load abr metadata. Returns ZX_ERR_INTERNAL
if invalid
slot index is returned by libabr routine.
Sourcepub fn query_configuration_status(
&self,
configuration: Configuration,
___deadline: MonotonicInstant,
) -> Result<BootManagerQueryConfigurationStatusResult, Error>
pub fn query_configuration_status( &self, configuration: Configuration, ___deadline: MonotonicInstant, ) -> Result<BootManagerQueryConfigurationStatusResult, Error>
Queries status of configuration
.
Returns ZX_ERR_INVALID_ARGS
if Configuration.RECOVERY
is passed in via configuration
.
Sourcepub fn query_configuration_status_and_boot_attempts(
&self,
configuration: Configuration,
___deadline: MonotonicInstant,
) -> Result<BootManagerQueryConfigurationStatusAndBootAttemptsResult, Error>
pub fn query_configuration_status_and_boot_attempts( &self, configuration: Configuration, ___deadline: MonotonicInstant, ) -> Result<BootManagerQueryConfigurationStatusAndBootAttemptsResult, Error>
Queries status of configuration
.
The returned table contains:
-
status
: the currentConfigurationStatus
-
boot_attempts
: ifstatus
isConfigurationStatus::PENDING
, this will be the number of times this configuration has attempted to boot, including the current attempt. For any otherstatus
this value will not be provided.If provided, this value will be in the range
[0, MAX_PENDING_BOOT_ATTEMPTS]
. 0 indicates the configuration was just set active and has not attempted any boots yet, andMAX_PENDING_BOOT_ATTEMPTS
indicates that all attempts have been used. -
unbootable_reason
: ifstatus
isConfigurationStatus::UNBOOTABLE
, this will be the reported reason for why the configuration is unbootable. For any otherstatus
this value will not be provided.
Returns ZX_ERR_INVALID_ARGS
if Configuration.RECOVERY
is passed in via configuration
.
Sourcepub fn set_configuration_active(
&self,
configuration: Configuration,
___deadline: MonotonicInstant,
) -> Result<i32, Error>
pub fn set_configuration_active( &self, configuration: Configuration, ___deadline: MonotonicInstant, ) -> Result<i32, Error>
Updates persistent metadata identifying which configuration should be selected as ‘primary’
for booting purposes. Should only be called after KERNEL
as well as optional
VERIFIED_BOOT_METADATA
assets for specified configuration
were written successfully.
Also resets the boot attempts count for the given Configuration
.
Returns ZX_ERR_INVALID_ARGS
if Configuration.RECOVERY
is passed in via configuration
.
Sourcepub fn set_configuration_unbootable(
&self,
configuration: Configuration,
___deadline: MonotonicInstant,
) -> Result<i32, Error>
pub fn set_configuration_unbootable( &self, configuration: Configuration, ___deadline: MonotonicInstant, ) -> Result<i32, Error>
Updates persistent metadata identifying whether configuration
is bootable.
Should only be called in the following situations:
- Before
KERNEL
as well as optionalVERIFIED_BOOT_METADATA
assets for specifiedconfiguration
are written. - After successfully booting from a new configuration and marking it healthy. This method would be then called on the old configuration.
- After “successfully” booting from a new configuration, but encountering an unrecoverable error during health check. This method would be then called on the new configuration.
If the configuration is unbootable, no action is taken.
Returns ZX_ERR_INVALID_ARGS
if Configuration.RECOVERY
is passed in via configuration
.
Sourcepub fn set_configuration_healthy(
&self,
configuration: Configuration,
___deadline: MonotonicInstant,
) -> Result<i32, Error>
pub fn set_configuration_healthy( &self, configuration: Configuration, ___deadline: MonotonicInstant, ) -> Result<i32, Error>
Updates persistent metadata to mark a [fuchsia.paver/Configuration
]
as successful.
This function is typically used by the OS update system after having confirmed that the configuration works as intended and the “rollback to previous slot” logic is not needed anymore.
Compatibility between the newly successful configuration and the other configuration is unknown. Even if the other configuration was successful at one point, it may no longer be. This function adds a success mark to the given configuration but also removes any success mark on the other.
If configuration
is unbootable or is
[fuchsia.paver/Configuration.RECOVERY
], response
will be
ZX_ERR_INVALID_ARGS
.
- request
configuration
theConfiguration
to mark as healthy. Must not beRECOVERY
.
- response
status
a zx_status value indicating success or failure.
Sourcepub fn set_one_shot_recovery(
&self,
___deadline: MonotonicInstant,
) -> Result<BootManagerSetOneShotRecoveryResult, Error>
pub fn set_one_shot_recovery( &self, ___deadline: MonotonicInstant, ) -> Result<BootManagerSetOneShotRecoveryResult, Error>
Force device to boot to recovery in the next reboot/power cycle. This will only be triggered once and will be reset after the reboot. State of A/B configuration slot will not be affected.
Trait Implementations§
Source§impl Debug for BootManagerSynchronousProxy
impl Debug for BootManagerSynchronousProxy
Source§impl SynchronousProxy for BootManagerSynchronousProxy
impl SynchronousProxy for BootManagerSynchronousProxy
Source§type Proxy = BootManagerProxy
type Proxy = BootManagerProxy
Source§type Protocol = BootManagerMarker
type Protocol = BootManagerMarker
Proxy
controls.