omaha_client/state_machine/update_check.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
// Copyright 2019 The Fuchsia Authors
//
// Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
// This file may not be copied, modified, or distributed except according to
// those terms.
/// The update_check module contains the structures and functions for performing a single update
/// check with Omaha.
use crate::{
common::{ProtocolState, UpdateCheckSchedule, UserCounting},
protocol::Cohort,
storage::{Storage, StorageExt},
time::PartialComplexTime,
};
use std::convert::{TryFrom, TryInto};
use std::time::Duration;
use tracing::error;
// These are the keys used to persist data to storage.
pub const CONSECUTIVE_FAILED_UPDATE_CHECKS: &str = "consecutive_failed_update_checks";
pub const LAST_UPDATE_TIME: &str = "last_update_time";
pub const SERVER_DICTATED_POLL_INTERVAL: &str = "server_dictated_poll_interval";
/// The Context provides the protocol context for a given update check operation. This is
/// information that's passed to the Policy to allow it to properly reason about what can and cannot
/// be done at this time.
#[derive(Clone, Debug)]
pub struct Context {
/// The last-computed time to next check for an update.
pub schedule: UpdateCheckSchedule,
/// The state of the protocol (retries, errors, etc.) as of the last update check that was
/// attempted.
pub state: ProtocolState,
}
impl Context {
/// Load and initialize update check context from persistent storage.
pub async fn load(storage: &impl Storage) -> Self {
let last_update_time = storage
.get_time(LAST_UPDATE_TIME)
.await
.map(PartialComplexTime::Wall);
let server_dictated_poll_interval = storage
.get_int(SERVER_DICTATED_POLL_INTERVAL)
.await
.and_then(|t| u64::try_from(t).ok())
.map(Duration::from_micros);
let consecutive_failed_update_checks: u32 = storage
.get_int(CONSECUTIVE_FAILED_UPDATE_CHECKS)
.await
.unwrap_or(0)
.try_into()
.unwrap_or_default();
// last_check_time isn't really last_update_time, but we're not persisting our
// between-check wall time for reporting, and this is a reasonable-enough proxy.
Context {
schedule: UpdateCheckSchedule::builder()
.last_update_time(last_update_time)
.last_update_check_time(last_update_time)
.build(),
state: ProtocolState {
server_dictated_poll_interval,
consecutive_failed_update_checks,
..Default::default()
},
}
}
/// Persist data in Context to |storage|, will try to set all of them to storage even if
/// previous set fails.
/// It will NOT call commit() on |storage|, caller is responsible to call commit().
pub async fn persist<'a>(&'a self, storage: &'a mut impl Storage) {
if let Err(e) = storage
.set_option_int(
LAST_UPDATE_TIME,
self.schedule
.last_update_time
.and_then(PartialComplexTime::checked_to_micros_since_epoch),
)
.await
{
error!("Unable to persist {}: {}", LAST_UPDATE_TIME, e);
}
if let Err(e) = storage
.set_option_int(
SERVER_DICTATED_POLL_INTERVAL,
self.state
.server_dictated_poll_interval
.map(|t| t.as_micros())
.and_then(|t| i64::try_from(t).ok()),
)
.await
{
error!("Unable to persist {}: {}", SERVER_DICTATED_POLL_INTERVAL, e);
}
// By converting to an option, set_option_int will clean up storage associated with this
// value if it's the default (0).
let consecutive_failed_update_checks_option = {
if self.state.consecutive_failed_update_checks == 0 {
None
} else {
Some(self.state.consecutive_failed_update_checks as i64)
}
};
if let Err(e) = storage
.set_option_int(
CONSECUTIVE_FAILED_UPDATE_CHECKS,
consecutive_failed_update_checks_option,
)
.await
{
error!(
"Unable to persist {}: {}",
CONSECUTIVE_FAILED_UPDATE_CHECKS, e
);
}
}
}
/// The response context from the update check contains any extra information that Omaha returns to
/// the client, separate from the data about a particular app itself.
#[derive(Debug)]
pub struct Response {
/// The set of responses for all the apps in the request.
pub app_responses: Vec<AppResponse>,
}
/// For each application that had an update check performed, a new App (potentially with new Cohort
/// and UserCounting data) and a corresponding response Action are returned from the update check.
#[derive(Debug)]
pub struct AppResponse {
/// The returned information about an application.
pub app_id: String,
/// Cohort data returned from Omaha
pub cohort: Cohort,
pub user_counting: UserCounting,
/// The resultant action of its update check.
pub result: Action,
}
/// The Action is the result of an update check for a single App. This is just informational, for
/// the purposes of updating the protocol state. Any update action should already have been taken
/// by the Installer.
#[derive(Debug, Clone, PartialEq)]
pub enum Action {
/// Omaha's response was "no update"
NoUpdate,
/// Policy deferred the update. The update check was successful, and Omaha returned that an
/// update is available, but it is not able to be acted on at this time.
DeferredByPolicy,
/// Policy Denied the update. The update check was successful, and Omaha returned that an
/// update is available, but it is not allowed to be installed per Policy.
DeniedByPolicy,
/// The install process encountered an error.
/// TODO: Attach an error to this
InstallPlanExecutionError,
/// An update was performed.
Updated,
}
#[cfg(test)]
mod tests {
use super::*;
use crate::storage::MemStorage;
use futures::executor::block_on;
#[test]
fn test_load_context() {
block_on(async {
let mut storage = MemStorage::new();
let last_update_time = 123456789;
let poll_interval = Duration::from_micros(56789u64);
storage
.set_int(LAST_UPDATE_TIME, last_update_time)
.await
.unwrap();
storage
.set_int(
SERVER_DICTATED_POLL_INTERVAL,
poll_interval.as_micros() as i64,
)
.await
.unwrap();
storage
.set_int(CONSECUTIVE_FAILED_UPDATE_CHECKS, 1234)
.await
.unwrap();
let context = Context::load(&storage).await;
let last_update_time = PartialComplexTime::from_micros_since_epoch(last_update_time);
assert_eq!(context.schedule.last_update_time, Some(last_update_time));
assert_eq!(
context.state.server_dictated_poll_interval,
Some(poll_interval)
);
assert_eq!(context.state.consecutive_failed_update_checks, 1234);
});
}
#[test]
fn test_load_context_empty_storage() {
block_on(async {
let storage = MemStorage::new();
let context = Context::load(&storage).await;
assert_eq!(None, context.schedule.last_update_time);
assert_eq!(None, context.state.server_dictated_poll_interval);
assert_eq!(0, context.state.consecutive_failed_update_checks);
});
}
#[test]
fn test_persist_context() {
block_on(async {
let mut storage = MemStorage::new();
let last_update_time = PartialComplexTime::from_micros_since_epoch(123456789);
let server_dictated_poll_interval = Some(Duration::from_micros(56789));
let consecutive_failed_update_checks = 1234;
let context = Context {
schedule: UpdateCheckSchedule::builder()
.last_update_time(last_update_time)
.build(),
state: ProtocolState {
server_dictated_poll_interval,
consecutive_failed_update_checks,
..ProtocolState::default()
},
};
context.persist(&mut storage).await;
assert_eq!(Some(123456789), storage.get_int(LAST_UPDATE_TIME).await);
assert_eq!(
Some(56789),
storage.get_int(SERVER_DICTATED_POLL_INTERVAL).await
);
assert_eq!(
Some(1234),
storage.get_int(CONSECUTIVE_FAILED_UPDATE_CHECKS).await
);
assert!(!storage.committed());
});
}
#[test]
fn test_persist_context_remove_defaults() {
block_on(async {
let mut storage = MemStorage::new();
let last_update_time = PartialComplexTime::from_micros_since_epoch(123456789);
storage
.set_int(SERVER_DICTATED_POLL_INTERVAL, 987654)
.await
.unwrap();
storage
.set_int(CONSECUTIVE_FAILED_UPDATE_CHECKS, 1234)
.await
.unwrap();
let context = Context {
schedule: UpdateCheckSchedule::builder()
.last_update_time(last_update_time)
.build(),
state: ProtocolState {
server_dictated_poll_interval: None,
consecutive_failed_update_checks: 0,
..ProtocolState::default()
},
};
context.persist(&mut storage).await;
assert_eq!(Some(123456789), storage.get_int(LAST_UPDATE_TIME).await);
assert_eq!(None, storage.get_int(SERVER_DICTATED_POLL_INTERVAL).await);
assert_eq!(
None,
storage.get_int(CONSECUTIVE_FAILED_UPDATE_CHECKS).await
);
assert!(!storage.committed());
});
}
}