1use fidl::unpersist;
2use fidl_cf_sc_internal_timekeeperconfig::Config as FidlConfig;
3use fuchsia_inspect::Node;
4use fuchsia_runtime::{take_startup_handle, HandleInfo, HandleType};
5use std::convert::TryInto;
6const EXPECTED_CHECKSUM: &[u8] = &[
7 0xfc, 0x9e, 0xf3, 0x32, 0x8a, 0xf5, 0x15, 0xde, 0x2a, 0xa7, 0x3f, 0x33, 0xbb, 0x0e, 0x65, 0x2c,
8 0x67, 0xcb, 0x4c, 0xed, 0xaa, 0xe5, 0x3a, 0x51, 0x9c, 0x63, 0x44, 0x8b, 0xd9, 0x61, 0x86, 0xcc,
9];
10#[derive(Debug)]
11pub struct Config {
12 pub back_off_time_between_pull_samples_sec: i64,
13 pub disable_delays: bool,
14 pub early_exit: bool,
15 pub first_sampling_delay_sec: i64,
16 pub has_always_on_counter: bool,
17 pub has_real_time_clock: bool,
18 pub initial_frequency_ppm: u32,
19 pub max_frequency_error_ppm: u32,
20 pub monitor_time_source_url: String,
21 pub monitor_uses_pull: bool,
22 pub oscillator_error_std_dev_ppm: u32,
23 pub power_topology_integration_enabled: bool,
24 pub primary_time_source_url: String,
25 pub primary_uses_pull: bool,
26 pub serve_fuchsia_time_alarms: bool,
27 pub serve_fuchsia_time_external_adjust: bool,
28 pub serve_test_protocols: bool,
29 pub utc_max_allowed_delta_future_sec: i64,
30 pub utc_max_allowed_delta_past_sec: i64,
31 pub utc_start_at_startup: bool,
32 pub utc_start_at_startup_when_invalid_rtc: bool,
33}
34impl Config {
35 #[doc = r" Take the config startup handle and parse its contents."]
36 #[doc = r""]
37 #[doc = r" # Panics"]
38 #[doc = r""]
39 #[doc = r" If the config startup handle was already taken or if it is not valid."]
40 pub fn take_from_startup_handle() -> Self {
41 let handle_info = HandleInfo::new(HandleType::ComponentConfigVmo, 0);
42 let config_vmo: zx::Vmo =
43 take_startup_handle(handle_info).expect("Config VMO handle must be present.").into();
44 Self::from_vmo(&config_vmo).expect("Config VMO handle must be valid.")
45 }
46 #[doc = r" Parse `Self` from `vmo`."]
47 pub fn from_vmo(vmo: &zx::Vmo) -> Result<Self, Error> {
48 let config_size = vmo.get_content_size().map_err(Error::GettingContentSize)?;
49 let config_bytes = vmo.read_to_vec(0, config_size).map_err(Error::ReadingConfigBytes)?;
50 Self::from_bytes(&config_bytes)
51 }
52 #[doc = r" Parse `Self` from `bytes`."]
53 pub fn from_bytes(bytes: &[u8]) -> Result<Self, Error> {
54 let (checksum_len_bytes, bytes) = bytes.split_at_checked(2).ok_or(Error::TooFewBytes)?;
55 let checksum_len_bytes: [u8; 2] =
56 checksum_len_bytes.try_into().expect("previous call guaranteed 2 element slice");
57 let checksum_length = u16::from_le_bytes(checksum_len_bytes) as usize;
58 let (observed_checksum, bytes) =
59 bytes.split_at_checked(checksum_length).ok_or(Error::TooFewBytes)?;
60 if observed_checksum != EXPECTED_CHECKSUM {
61 return Err(Error::ChecksumMismatch { observed_checksum: observed_checksum.to_vec() });
62 }
63 let fidl_config: FidlConfig = unpersist(bytes).map_err(Error::Unpersist)?;
64 Ok(Self {
65 back_off_time_between_pull_samples_sec: fidl_config
66 .back_off_time_between_pull_samples_sec,
67 disable_delays: fidl_config.disable_delays,
68 early_exit: fidl_config.early_exit,
69 first_sampling_delay_sec: fidl_config.first_sampling_delay_sec,
70 has_always_on_counter: fidl_config.has_always_on_counter,
71 has_real_time_clock: fidl_config.has_real_time_clock,
72 initial_frequency_ppm: fidl_config.initial_frequency_ppm,
73 max_frequency_error_ppm: fidl_config.max_frequency_error_ppm,
74 monitor_time_source_url: fidl_config.monitor_time_source_url,
75 monitor_uses_pull: fidl_config.monitor_uses_pull,
76 oscillator_error_std_dev_ppm: fidl_config.oscillator_error_std_dev_ppm,
77 power_topology_integration_enabled: fidl_config.power_topology_integration_enabled,
78 primary_time_source_url: fidl_config.primary_time_source_url,
79 primary_uses_pull: fidl_config.primary_uses_pull,
80 serve_fuchsia_time_alarms: fidl_config.serve_fuchsia_time_alarms,
81 serve_fuchsia_time_external_adjust: fidl_config.serve_fuchsia_time_external_adjust,
82 serve_test_protocols: fidl_config.serve_test_protocols,
83 utc_max_allowed_delta_future_sec: fidl_config.utc_max_allowed_delta_future_sec,
84 utc_max_allowed_delta_past_sec: fidl_config.utc_max_allowed_delta_past_sec,
85 utc_start_at_startup: fidl_config.utc_start_at_startup,
86 utc_start_at_startup_when_invalid_rtc: fidl_config
87 .utc_start_at_startup_when_invalid_rtc,
88 })
89 }
90 pub fn record_inspect(&self, inspector_node: &Node) {
91 inspector_node.record_int(
92 "back_off_time_between_pull_samples_sec",
93 self.back_off_time_between_pull_samples_sec,
94 );
95 inspector_node.record_bool("disable_delays", self.disable_delays);
96 inspector_node.record_bool("early_exit", self.early_exit);
97 inspector_node.record_int("first_sampling_delay_sec", self.first_sampling_delay_sec);
98 inspector_node.record_bool("has_always_on_counter", self.has_always_on_counter);
99 inspector_node.record_bool("has_real_time_clock", self.has_real_time_clock);
100 inspector_node.record_uint("initial_frequency_ppm", self.initial_frequency_ppm as u64);
101 inspector_node.record_uint("max_frequency_error_ppm", self.max_frequency_error_ppm as u64);
102 inspector_node.record_string("monitor_time_source_url", &self.monitor_time_source_url);
103 inspector_node.record_bool("monitor_uses_pull", self.monitor_uses_pull);
104 inspector_node
105 .record_uint("oscillator_error_std_dev_ppm", self.oscillator_error_std_dev_ppm as u64);
106 inspector_node.record_bool(
107 "power_topology_integration_enabled",
108 self.power_topology_integration_enabled,
109 );
110 inspector_node.record_string("primary_time_source_url", &self.primary_time_source_url);
111 inspector_node.record_bool("primary_uses_pull", self.primary_uses_pull);
112 inspector_node.record_bool("serve_fuchsia_time_alarms", self.serve_fuchsia_time_alarms);
113 inspector_node.record_bool(
114 "serve_fuchsia_time_external_adjust",
115 self.serve_fuchsia_time_external_adjust,
116 );
117 inspector_node.record_bool("serve_test_protocols", self.serve_test_protocols);
118 inspector_node
119 .record_int("utc_max_allowed_delta_future_sec", self.utc_max_allowed_delta_future_sec);
120 inspector_node
121 .record_int("utc_max_allowed_delta_past_sec", self.utc_max_allowed_delta_past_sec);
122 inspector_node.record_bool("utc_start_at_startup", self.utc_start_at_startup);
123 inspector_node.record_bool(
124 "utc_start_at_startup_when_invalid_rtc",
125 self.utc_start_at_startup_when_invalid_rtc,
126 );
127 }
128}
129#[derive(Debug)]
130pub enum Error {
131 #[doc = r" Failed to read the content size of the VMO."]
132 GettingContentSize(zx::Status),
133 #[doc = r" Failed to read the content of the VMO."]
134 ReadingConfigBytes(zx::Status),
135 #[doc = r" The VMO was too small for this config library."]
136 TooFewBytes,
137 #[doc = r" The VMO's config ABI checksum did not match this library's."]
138 ChecksumMismatch { observed_checksum: Vec<u8> },
139 #[doc = r" Failed to parse the non-checksum bytes of the VMO as this library's FIDL type."]
140 Unpersist(fidl::Error),
141}
142impl std::fmt::Display for Error {
143 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
144 match self {
145 Self::GettingContentSize(status) => {
146 write!(f, "Failed to get content size: {status}")
147 }
148 Self::ReadingConfigBytes(status) => {
149 write!(f, "Failed to read VMO content: {status}")
150 }
151 Self::TooFewBytes => {
152 write!(f, "VMO content is not large enough for this config library.")
153 }
154 Self::ChecksumMismatch { observed_checksum } => {
155 write!(
156 f,
157 "ABI checksum mismatch, expected {:?}, got {:?}",
158 EXPECTED_CHECKSUM, observed_checksum,
159 )
160 }
161 Self::Unpersist(fidl_error) => {
162 write!(f, "Failed to parse contents of config VMO: {fidl_error}")
163 }
164 }
165 }
166}
167impl std::error::Error for Error {
168 #[allow(unused_parens, reason = "rustfmt errors without parens here")]
169 fn source(&self) -> Option<(&'_ (dyn std::error::Error + 'static))> {
170 match self {
171 Self::GettingContentSize(ref status) | Self::ReadingConfigBytes(ref status) => {
172 Some(status)
173 }
174 Self::TooFewBytes => None,
175 Self::ChecksumMismatch { .. } => None,
176 Self::Unpersist(ref fidl_error) => Some(fidl_error),
177 }
178 }
179 fn description(&self) -> &str {
180 match self {
181 Self::GettingContentSize(_) => "getting content size",
182 Self::ReadingConfigBytes(_) => "reading VMO contents",
183 Self::TooFewBytes => "VMO contents too small",
184 Self::ChecksumMismatch { .. } => "ABI checksum mismatch",
185 Self::Unpersist(_) => "FIDL parsing error",
186 }
187 }
188}