Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 1 | // Copyright (c) 2014 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 5 | #include "update_engine/update_manager/chromeos_policy.h" |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 6 | |
Gilad Arnold | e121881 | 2014-05-07 12:21:36 -0700 | [diff] [blame] | 7 | #include <algorithm> |
Gilad Arnold | 0adbc94 | 2014-05-12 10:35:43 -0700 | [diff] [blame] | 8 | #include <set> |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 9 | #include <string> |
| 10 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 11 | #include <base/logging.h> |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 12 | #include <base/strings/string_util.h> |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 13 | #include <base/time/time.h> |
| 14 | |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 15 | #include "update_engine/error_code.h" |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 16 | #include "update_engine/update_manager/device_policy_provider.h" |
| 17 | #include "update_engine/update_manager/policy_utils.h" |
| 18 | #include "update_engine/update_manager/shill_provider.h" |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 19 | #include "update_engine/utils.h" |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 20 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 21 | using base::Time; |
| 22 | using base::TimeDelta; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 23 | using chromeos_update_engine::ErrorCode; |
| 24 | using std::max; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 25 | using std::min; |
Gilad Arnold | 0adbc94 | 2014-05-12 10:35:43 -0700 | [diff] [blame] | 26 | using std::set; |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 27 | using std::string; |
| 28 | |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 29 | namespace { |
| 30 | |
| 31 | // Increment |url_idx|, |url_num_failures| or none of them based on the provided |
| 32 | // error code. If |url_idx| is incremented, then sets |url_num_failures| to zero |
| 33 | // and returns true; otherwise, returns false. |
| 34 | // |
| 35 | // TODO(garnold) Adapted from PayloadState::UpdateFailed() (to be retired). |
| 36 | bool HandleErrorCode(ErrorCode err_code, int* url_idx, int* url_num_failures) { |
| 37 | err_code = chromeos_update_engine::utils::GetBaseErrorCode(err_code); |
| 38 | switch (err_code) { |
| 39 | // Errors which are good indicators of a problem with a particular URL or |
| 40 | // the protocol used in the URL or entities in the communication channel |
| 41 | // (e.g. proxies). We should try the next available URL in the next update |
| 42 | // check to quickly recover from these errors. |
| 43 | case ErrorCode::kPayloadHashMismatchError: |
| 44 | case ErrorCode::kPayloadSizeMismatchError: |
| 45 | case ErrorCode::kDownloadPayloadVerificationError: |
| 46 | case ErrorCode::kDownloadPayloadPubKeyVerificationError: |
| 47 | case ErrorCode::kSignedDeltaPayloadExpectedError: |
| 48 | case ErrorCode::kDownloadInvalidMetadataMagicString: |
| 49 | case ErrorCode::kDownloadSignatureMissingInManifest: |
| 50 | case ErrorCode::kDownloadManifestParseError: |
| 51 | case ErrorCode::kDownloadMetadataSignatureError: |
| 52 | case ErrorCode::kDownloadMetadataSignatureVerificationError: |
| 53 | case ErrorCode::kDownloadMetadataSignatureMismatch: |
| 54 | case ErrorCode::kDownloadOperationHashVerificationError: |
| 55 | case ErrorCode::kDownloadOperationExecutionError: |
| 56 | case ErrorCode::kDownloadOperationHashMismatch: |
| 57 | case ErrorCode::kDownloadInvalidMetadataSize: |
| 58 | case ErrorCode::kDownloadInvalidMetadataSignature: |
| 59 | case ErrorCode::kDownloadOperationHashMissingError: |
| 60 | case ErrorCode::kDownloadMetadataSignatureMissingError: |
| 61 | case ErrorCode::kPayloadMismatchedType: |
| 62 | case ErrorCode::kUnsupportedMajorPayloadVersion: |
| 63 | case ErrorCode::kUnsupportedMinorPayloadVersion: |
| 64 | LOG(INFO) << "Advancing download URL due to error " |
| 65 | << chromeos_update_engine::utils::CodeToString(err_code) |
| 66 | << " (" << static_cast<int>(err_code) << ")"; |
| 67 | *url_idx += 1; |
| 68 | *url_num_failures = 0; |
| 69 | return true; |
| 70 | |
| 71 | // Errors which seem to be just transient network/communication related |
| 72 | // failures and do not indicate any inherent problem with the URL itself. |
| 73 | // So, we should keep the current URL but just increment the |
| 74 | // failure count to give it more chances. This way, while we maximize our |
| 75 | // chances of downloading from the URLs that appear earlier in the response |
| 76 | // (because download from a local server URL that appears earlier in a |
| 77 | // response is preferable than downloading from the next URL which could be |
| 78 | // a internet URL and thus could be more expensive). |
| 79 | case ErrorCode::kError: |
| 80 | case ErrorCode::kDownloadTransferError: |
| 81 | case ErrorCode::kDownloadWriteError: |
| 82 | case ErrorCode::kDownloadStateInitializationError: |
Gilad Arnold | 684219d | 2014-07-07 14:54:57 -0700 | [diff] [blame^] | 83 | case ErrorCode::kOmahaErrorInHTTPResponse: // Aggregate for HTTP errors. |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 84 | LOG(INFO) << "Incrementing URL failure count due to error " |
| 85 | << chromeos_update_engine::utils::CodeToString(err_code) |
| 86 | << " (" << static_cast<int>(err_code) << ")"; |
| 87 | *url_num_failures += 1; |
| 88 | return false; |
| 89 | |
| 90 | // Errors which are not specific to a URL and hence shouldn't result in |
| 91 | // the URL being penalized. This can happen in two cases: |
| 92 | // 1. We haven't started downloading anything: These errors don't cost us |
| 93 | // anything in terms of actual payload bytes, so we should just do the |
| 94 | // regular retries at the next update check. |
| 95 | // 2. We have successfully downloaded the payload: In this case, the |
| 96 | // payload attempt number would have been incremented and would take care |
| 97 | // of the backoff at the next update check. |
| 98 | // In either case, there's no need to update URL index or failure count. |
| 99 | case ErrorCode::kOmahaRequestError: |
| 100 | case ErrorCode::kOmahaResponseHandlerError: |
| 101 | case ErrorCode::kPostinstallRunnerError: |
| 102 | case ErrorCode::kFilesystemCopierError: |
| 103 | case ErrorCode::kInstallDeviceOpenError: |
| 104 | case ErrorCode::kKernelDeviceOpenError: |
| 105 | case ErrorCode::kDownloadNewPartitionInfoError: |
| 106 | case ErrorCode::kNewRootfsVerificationError: |
| 107 | case ErrorCode::kNewKernelVerificationError: |
| 108 | case ErrorCode::kPostinstallBootedFromFirmwareB: |
| 109 | case ErrorCode::kPostinstallFirmwareRONotUpdatable: |
| 110 | case ErrorCode::kOmahaRequestEmptyResponseError: |
| 111 | case ErrorCode::kOmahaRequestXMLParseError: |
| 112 | case ErrorCode::kOmahaResponseInvalid: |
| 113 | case ErrorCode::kOmahaUpdateIgnoredPerPolicy: |
| 114 | case ErrorCode::kOmahaUpdateDeferredPerPolicy: |
| 115 | case ErrorCode::kOmahaUpdateDeferredForBackoff: |
| 116 | case ErrorCode::kPostinstallPowerwashError: |
| 117 | case ErrorCode::kUpdateCanceledByChannelChange: |
| 118 | LOG(INFO) << "Not changing URL index or failure count due to error " |
| 119 | << chromeos_update_engine::utils::CodeToString(err_code) |
| 120 | << " (" << static_cast<int>(err_code) << ")"; |
| 121 | return false; |
| 122 | |
| 123 | case ErrorCode::kSuccess: // success code |
| 124 | case ErrorCode::kUmaReportedMax: // not an error code |
| 125 | case ErrorCode::kOmahaRequestHTTPResponseBase: // aggregated already |
| 126 | case ErrorCode::kDevModeFlag: // not an error code |
| 127 | case ErrorCode::kResumedFlag: // not an error code |
| 128 | case ErrorCode::kTestImageFlag: // not an error code |
| 129 | case ErrorCode::kTestOmahaUrlFlag: // not an error code |
| 130 | case ErrorCode::kSpecialFlags: // not an error code |
| 131 | // These shouldn't happen. Enumerating these explicitly here so that we |
| 132 | // can let the compiler warn about new error codes that are added to |
| 133 | // action_processor.h but not added here. |
| 134 | LOG(WARNING) << "Unexpected error " |
| 135 | << chromeos_update_engine::utils::CodeToString(err_code) |
| 136 | << " (" << static_cast<int>(err_code) << ")"; |
| 137 | // Note: Not adding a default here so as to let the compiler warn us of |
| 138 | // any new enums that were added in the .h but not listed in this switch. |
| 139 | } |
| 140 | return false; |
| 141 | } |
| 142 | |
| 143 | // Checks whether |download_url| can be used under given download restrictions. |
| 144 | bool DownloadUrlIsUsable(const string& download_url, bool http_allowed) { |
| 145 | return http_allowed || !StartsWithASCII(download_url, "http://", false); |
| 146 | } |
| 147 | |
| 148 | } // namespace |
| 149 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 150 | namespace chromeos_update_manager { |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 151 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 152 | EvalStatus ChromeOSPolicy::UpdateCheckAllowed( |
| 153 | EvaluationContext* ec, State* state, string* error, |
| 154 | UpdateCheckParams* result) const { |
| 155 | Time next_update_check; |
| 156 | if (NextUpdateCheckTime(ec, state, error, &next_update_check) != |
| 157 | EvalStatus::kSucceeded) { |
| 158 | return EvalStatus::kFailed; |
| 159 | } |
| 160 | |
| 161 | if (!ec->IsTimeGreaterThan(next_update_check)) |
| 162 | return EvalStatus::kAskMeAgainLater; |
| 163 | |
| 164 | // It is time to check for an update. |
| 165 | result->updates_enabled = true; |
Alex Deymo | e636c3c | 2014-03-11 19:02:08 -0700 | [diff] [blame] | 166 | return EvalStatus::kSucceeded; |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 167 | } |
| 168 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 169 | EvalStatus ChromeOSPolicy::UpdateCanStart( |
| 170 | EvaluationContext* ec, |
| 171 | State* state, |
| 172 | string* error, |
| 173 | UpdateCanStartResult* result, |
| 174 | const bool interactive, |
| 175 | const UpdateState& update_state) const { |
| 176 | // Set the default return values. |
| 177 | result->update_can_start = true; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 178 | result->p2p_allowed = false; |
| 179 | result->target_channel.clear(); |
| 180 | result->cannot_start_reason = UpdateCannotStartReason::kUndefined; |
| 181 | result->scatter_wait_period = kZeroInterval; |
| 182 | result->scatter_check_threshold = 0; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 183 | result->download_url_idx = -1; |
| 184 | result->download_url_num_failures = 0; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 185 | |
| 186 | // Make sure that we're not due for an update check. |
| 187 | UpdateCheckParams check_result; |
| 188 | EvalStatus check_status = UpdateCheckAllowed(ec, state, error, &check_result); |
| 189 | if (check_status == EvalStatus::kFailed) |
| 190 | return EvalStatus::kFailed; |
| 191 | if (check_status == EvalStatus::kSucceeded && |
| 192 | check_result.updates_enabled == true) { |
| 193 | result->update_can_start = false; |
| 194 | result->cannot_start_reason = UpdateCannotStartReason::kCheckDue; |
| 195 | return EvalStatus::kSucceeded; |
| 196 | } |
| 197 | |
| 198 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
| 199 | |
| 200 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 201 | dp_provider->var_device_policy_is_loaded()); |
| 202 | if (device_policy_is_loaded_p && *device_policy_is_loaded_p) { |
| 203 | // Ensure that update is enabled. |
| 204 | const bool* update_disabled_p = ec->GetValue( |
| 205 | dp_provider->var_update_disabled()); |
| 206 | if (update_disabled_p && *update_disabled_p) { |
| 207 | result->update_can_start = false; |
| 208 | result->cannot_start_reason = UpdateCannotStartReason::kDisabledByPolicy; |
| 209 | return EvalStatus::kAskMeAgainLater; |
| 210 | } |
| 211 | |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 212 | // Check whether scattering applies to this update attempt. We should not be |
| 213 | // scattering if this is an interactive update check, or if OOBE is enabled |
| 214 | // but not completed. |
| 215 | // |
| 216 | // Note: current code further suppresses scattering if a "deadline" |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 217 | // attribute is found in the Omaha response. However, it appears that the |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 218 | // presence of this attribute is merely indicative of an OOBE update, during |
| 219 | // which we suppress scattering anyway. |
| 220 | bool scattering_applies = false; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 221 | if (!interactive) { |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 222 | const bool* is_oobe_enabled_p = ec->GetValue( |
| 223 | state->config_provider()->var_is_oobe_enabled()); |
| 224 | if (is_oobe_enabled_p && !(*is_oobe_enabled_p)) { |
| 225 | scattering_applies = true; |
| 226 | } else { |
| 227 | const bool* is_oobe_complete_p = ec->GetValue( |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 228 | state->system_provider()->var_is_oobe_complete()); |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 229 | scattering_applies = (is_oobe_complete_p && *is_oobe_complete_p); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | // Compute scattering values. |
| 234 | if (scattering_applies) { |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 235 | UpdateScatteringResult scatter_result; |
| 236 | EvalStatus scattering_status = UpdateScattering( |
| 237 | ec, state, error, &scatter_result, update_state); |
| 238 | if (scattering_status != EvalStatus::kSucceeded || |
| 239 | scatter_result.is_scattering) { |
| 240 | if (scattering_status != EvalStatus::kFailed) { |
| 241 | result->update_can_start = false; |
| 242 | result->cannot_start_reason = UpdateCannotStartReason::kScattering; |
| 243 | result->scatter_wait_period = scatter_result.wait_period; |
| 244 | result->scatter_check_threshold = scatter_result.check_threshold; |
| 245 | } |
| 246 | return scattering_status; |
| 247 | } |
| 248 | } |
| 249 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 250 | // Determine whether use of P2P is allowed by policy. |
| 251 | const bool* policy_au_p2p_enabled_p = ec->GetValue( |
| 252 | dp_provider->var_au_p2p_enabled()); |
| 253 | result->p2p_allowed = policy_au_p2p_enabled_p && *policy_au_p2p_enabled_p; |
| 254 | |
| 255 | // Determine whether a target channel is dictated by policy. |
| 256 | const bool* release_channel_delegated_p = ec->GetValue( |
| 257 | dp_provider->var_release_channel_delegated()); |
| 258 | if (release_channel_delegated_p && !(*release_channel_delegated_p)) { |
| 259 | const string* release_channel_p = ec->GetValue( |
| 260 | dp_provider->var_release_channel()); |
| 261 | if (release_channel_p) |
| 262 | result->target_channel = *release_channel_p; |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | // Enable P2P, if so mandated by the updater configuration. |
| 267 | if (!result->p2p_allowed) { |
| 268 | const bool* updater_p2p_enabled_p = ec->GetValue( |
| 269 | state->updater_provider()->var_p2p_enabled()); |
| 270 | result->p2p_allowed = updater_p2p_enabled_p && *updater_p2p_enabled_p; |
| 271 | } |
| 272 | |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 273 | // Determine the URL to download the update from. Note that a failure to find |
| 274 | // a download URL will only fail this policy iff no other means of download |
| 275 | // (such as P2P) are enabled. |
| 276 | UpdateDownloadUrlResult download_url_result; |
| 277 | EvalStatus download_url_status = UpdateDownloadUrl( |
| 278 | ec, state, error, &download_url_result, update_state); |
| 279 | if (download_url_status == EvalStatus::kSucceeded) { |
| 280 | result->download_url_idx = download_url_result.url_idx; |
| 281 | result->download_url_num_failures = download_url_result.url_num_failures; |
| 282 | } else if (!result->p2p_allowed) { |
| 283 | if (download_url_status != EvalStatus::kFailed) { |
| 284 | result->update_can_start = false; |
| 285 | result->cannot_start_reason = UpdateCannotStartReason::kCannotDownload; |
| 286 | } |
| 287 | return download_url_status; |
| 288 | } |
| 289 | |
Gilad Arnold | af2f6ae | 2014-04-28 14:14:52 -0700 | [diff] [blame] | 290 | return EvalStatus::kSucceeded; |
| 291 | } |
| 292 | |
Gilad Arnold | a8262e2 | 2014-06-02 13:54:27 -0700 | [diff] [blame] | 293 | // TODO(garnold) Logic in this method is based on |
| 294 | // ConnectionManager::IsUpdateAllowedOver(); be sure to deprecate the latter. |
| 295 | // |
| 296 | // TODO(garnold) The current logic generally treats the list of allowed |
| 297 | // connections coming from the device policy as a whitelist, meaning that it |
| 298 | // can only be used for enabling connections, but not disable them. Further, |
| 299 | // certain connection types (like Bluetooth) cannot be enabled even by policy. |
| 300 | // In effect, the only thing that device policy can change is to enable |
| 301 | // updates over a cellular network (disabled by default). We may want to |
| 302 | // revisit this semantics, allowing greater flexibility in defining specific |
| 303 | // permissions over all types of networks. |
Gilad Arnold | 684219d | 2014-07-07 14:54:57 -0700 | [diff] [blame^] | 304 | EvalStatus ChromeOSPolicy::UpdateDownloadAllowed( |
Gilad Arnold | a8262e2 | 2014-06-02 13:54:27 -0700 | [diff] [blame] | 305 | EvaluationContext* ec, |
| 306 | State* state, |
| 307 | string* error, |
| 308 | bool* result) const { |
| 309 | // Get the current connection type. |
| 310 | ShillProvider* const shill_provider = state->shill_provider(); |
| 311 | const ConnectionType* conn_type_p = ec->GetValue( |
| 312 | shill_provider->var_conn_type()); |
| 313 | POLICY_CHECK_VALUE_AND_FAIL(conn_type_p, error); |
| 314 | ConnectionType conn_type = *conn_type_p; |
| 315 | |
| 316 | // If we're tethering, treat it as a cellular connection. |
| 317 | if (conn_type != ConnectionType::kCellular) { |
| 318 | const ConnectionTethering* conn_tethering_p = ec->GetValue( |
| 319 | shill_provider->var_conn_tethering()); |
| 320 | POLICY_CHECK_VALUE_AND_FAIL(conn_tethering_p, error); |
| 321 | if (*conn_tethering_p == ConnectionTethering::kConfirmed) |
| 322 | conn_type = ConnectionType::kCellular; |
| 323 | } |
| 324 | |
| 325 | // By default, we allow updates for all connection types, with exceptions as |
| 326 | // noted below. This also determines whether a device policy can override the |
| 327 | // default. |
| 328 | *result = true; |
| 329 | bool device_policy_can_override = false; |
| 330 | switch (conn_type) { |
| 331 | case ConnectionType::kBluetooth: |
| 332 | *result = false; |
| 333 | break; |
| 334 | |
| 335 | case ConnectionType::kCellular: |
| 336 | *result = false; |
| 337 | device_policy_can_override = true; |
| 338 | break; |
| 339 | |
| 340 | case ConnectionType::kUnknown: |
| 341 | if (error) |
| 342 | *error = "Unknown connection type"; |
| 343 | return EvalStatus::kFailed; |
| 344 | |
| 345 | default: |
| 346 | break; // Nothing to do. |
| 347 | } |
| 348 | |
| 349 | // If update is allowed, we're done. |
| 350 | if (*result) |
| 351 | return EvalStatus::kSucceeded; |
| 352 | |
| 353 | // Check whether the device policy specifically allows this connection. |
| 354 | bool user_settings_can_override = false; |
| 355 | if (device_policy_can_override) { |
| 356 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
| 357 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 358 | dp_provider->var_device_policy_is_loaded()); |
| 359 | if (device_policy_is_loaded_p && *device_policy_is_loaded_p) { |
| 360 | const set<ConnectionType>* allowed_conn_types_p = ec->GetValue( |
| 361 | dp_provider->var_allowed_connection_types_for_update()); |
| 362 | if (allowed_conn_types_p) { |
| 363 | if (allowed_conn_types_p->count(conn_type)) { |
| 364 | *result = true; |
| 365 | return EvalStatus::kSucceeded; |
| 366 | } |
| 367 | } else { |
| 368 | user_settings_can_override = true; |
| 369 | } |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | // Local user settings can allow updates iff a policy was loaded but no |
| 374 | // allowed connections were specified in it. In all other cases, we either |
| 375 | // stick with the default or use the values determined by the policy. |
| 376 | if (user_settings_can_override) { |
| 377 | const bool* update_over_cellular_allowed_p = ec->GetValue( |
| 378 | state->updater_provider()->var_cellular_enabled()); |
| 379 | if (update_over_cellular_allowed_p && *update_over_cellular_allowed_p) |
| 380 | *result = true; |
| 381 | } |
| 382 | |
| 383 | return EvalStatus::kSucceeded; |
| 384 | } |
| 385 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 386 | EvalStatus ChromeOSPolicy::NextUpdateCheckTime(EvaluationContext* ec, |
| 387 | State* state, string* error, |
| 388 | Time* next_update_check) const { |
| 389 | // Don't check for updates too often. We limit the update checks to once every |
| 390 | // some interval. The interval is kTimeoutInitialInterval the first time and |
| 391 | // kTimeoutPeriodicInterval for the subsequent update checks. If the update |
| 392 | // check fails, we increase the interval between the update checks |
| 393 | // exponentially until kTimeoutMaxBackoffInterval. Finally, to avoid having |
| 394 | // many chromebooks running update checks at the exact same time, we add some |
| 395 | // fuzz to the interval. |
| 396 | const Time* updater_started_time = |
| 397 | ec->GetValue(state->updater_provider()->var_updater_started_time()); |
| 398 | POLICY_CHECK_VALUE_AND_FAIL(updater_started_time, error); |
| 399 | |
| 400 | const base::Time* last_checked_time = |
| 401 | ec->GetValue(state->updater_provider()->var_last_checked_time()); |
| 402 | |
| 403 | const uint64_t* seed = ec->GetValue(state->random_provider()->var_seed()); |
| 404 | POLICY_CHECK_VALUE_AND_FAIL(seed, error); |
| 405 | |
| 406 | PRNG prng(*seed); |
| 407 | |
| 408 | if (!last_checked_time || *last_checked_time < *updater_started_time) { |
| 409 | // First attempt. |
| 410 | *next_update_check = *updater_started_time + FuzzedInterval( |
| 411 | &prng, kTimeoutInitialInterval, kTimeoutRegularFuzz); |
| 412 | return EvalStatus::kSucceeded; |
| 413 | } |
| 414 | // Check for previous failed attempts to implement the exponential backoff. |
| 415 | const unsigned int* consecutive_failed_update_checks = ec->GetValue( |
| 416 | state->updater_provider()->var_consecutive_failed_update_checks()); |
| 417 | POLICY_CHECK_VALUE_AND_FAIL(consecutive_failed_update_checks, error); |
| 418 | |
| 419 | int interval = kTimeoutInitialInterval; |
| 420 | for (unsigned int i = 0; i < *consecutive_failed_update_checks; ++i) { |
| 421 | interval *= 2; |
| 422 | if (interval > kTimeoutMaxBackoffInterval) { |
| 423 | interval = kTimeoutMaxBackoffInterval; |
| 424 | break; |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | *next_update_check = *last_checked_time + FuzzedInterval( |
| 429 | &prng, interval, kTimeoutRegularFuzz); |
| 430 | return EvalStatus::kSucceeded; |
| 431 | } |
| 432 | |
| 433 | TimeDelta ChromeOSPolicy::FuzzedInterval(PRNG* prng, int interval, int fuzz) { |
Gilad Arnold | e121881 | 2014-05-07 12:21:36 -0700 | [diff] [blame] | 434 | DCHECK_GE(interval, 0); |
| 435 | DCHECK_GE(fuzz, 0); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 436 | int half_fuzz = fuzz / 2; |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 437 | // This guarantees the output interval is non negative. |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 438 | int interval_min = max(interval - half_fuzz, 0); |
Gilad Arnold | e121881 | 2014-05-07 12:21:36 -0700 | [diff] [blame] | 439 | int interval_max = interval + half_fuzz; |
| 440 | return TimeDelta::FromSeconds(prng->RandMinMax(interval_min, interval_max)); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 441 | } |
| 442 | |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 443 | EvalStatus ChromeOSPolicy::UpdateDownloadUrl( |
| 444 | EvaluationContext* ec, State* state, std::string* error, |
| 445 | UpdateDownloadUrlResult* result, const UpdateState& update_state) const { |
| 446 | int url_idx = 0; |
| 447 | int url_num_failures = 0; |
| 448 | if (update_state.num_checks > 1) { |
| 449 | // Ignore negative URL indexes, which indicate that no previous suitable |
| 450 | // download URL was found. |
| 451 | url_idx = max(0, update_state.download_url_idx); |
| 452 | url_num_failures = update_state.download_url_num_failures; |
| 453 | } |
| 454 | |
| 455 | // Preconditions / sanity checks. |
| 456 | DCHECK_GE(update_state.download_failures_max, 0); |
| 457 | DCHECK_LT(url_idx, static_cast<int>(update_state.download_urls.size())); |
| 458 | DCHECK_LE(url_num_failures, update_state.download_failures_max); |
| 459 | |
| 460 | // Determine whether HTTP downloads are forbidden by policy. This only |
| 461 | // applies to official system builds; otherwise, HTTP is always enabled. |
| 462 | bool http_allowed = true; |
| 463 | const bool* is_official_build_p = ec->GetValue( |
| 464 | state->system_provider()->var_is_official_build()); |
| 465 | if (is_official_build_p && *is_official_build_p) { |
| 466 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
| 467 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 468 | dp_provider->var_device_policy_is_loaded()); |
| 469 | if (device_policy_is_loaded_p && *device_policy_is_loaded_p) { |
| 470 | const bool* policy_http_downloads_enabled_p = ec->GetValue( |
| 471 | dp_provider->var_http_downloads_enabled()); |
| 472 | http_allowed = (!policy_http_downloads_enabled_p || |
| 473 | *policy_http_downloads_enabled_p); |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | // Process recent failures, stop if the URL index advances. |
| 478 | for (auto& err_code : update_state.download_url_error_codes) { |
| 479 | if (HandleErrorCode(err_code, &url_idx, &url_num_failures)) |
| 480 | break; |
| 481 | if (url_num_failures > update_state.download_failures_max) { |
| 482 | url_idx++; |
| 483 | url_num_failures = 0; |
| 484 | break; |
| 485 | } |
| 486 | } |
| 487 | url_idx %= update_state.download_urls.size(); |
| 488 | |
| 489 | // Scan through URLs until a usable one is found. |
| 490 | const int start_url_idx = url_idx; |
| 491 | while (!DownloadUrlIsUsable(update_state.download_urls[url_idx], |
| 492 | http_allowed)) { |
| 493 | url_idx = (url_idx + 1) % update_state.download_urls.size(); |
| 494 | url_num_failures = 0; |
| 495 | if (url_idx == start_url_idx) |
| 496 | return EvalStatus::kFailed; // No usable URLs. |
| 497 | } |
| 498 | |
| 499 | result->url_idx = url_idx; |
| 500 | result->url_num_failures = url_num_failures; |
| 501 | return EvalStatus::kSucceeded; |
| 502 | } |
| 503 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 504 | EvalStatus ChromeOSPolicy::UpdateScattering( |
| 505 | EvaluationContext* ec, |
| 506 | State* state, |
| 507 | string* error, |
| 508 | UpdateScatteringResult* result, |
| 509 | const UpdateState& update_state) const { |
| 510 | // Preconditions. These stem from the postconditions and usage contract. |
| 511 | DCHECK(update_state.scatter_wait_period >= kZeroInterval); |
| 512 | DCHECK_GE(update_state.scatter_check_threshold, 0); |
| 513 | |
| 514 | // Set default result values. |
| 515 | result->is_scattering = false; |
| 516 | result->wait_period = kZeroInterval; |
| 517 | result->check_threshold = 0; |
| 518 | |
| 519 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
| 520 | |
| 521 | // Ensure that a device policy is loaded. |
| 522 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 523 | dp_provider->var_device_policy_is_loaded()); |
| 524 | if (!(device_policy_is_loaded_p && *device_policy_is_loaded_p)) |
| 525 | return EvalStatus::kSucceeded; |
| 526 | |
| 527 | // Is scattering enabled by policy? |
| 528 | const TimeDelta* scatter_factor_p = ec->GetValue( |
| 529 | dp_provider->var_scatter_factor()); |
| 530 | if (!scatter_factor_p || *scatter_factor_p == kZeroInterval) |
| 531 | return EvalStatus::kSucceeded; |
| 532 | |
| 533 | // Obtain a pseudo-random number generator. |
| 534 | const uint64_t* seed = ec->GetValue(state->random_provider()->var_seed()); |
| 535 | POLICY_CHECK_VALUE_AND_FAIL(seed, error); |
| 536 | PRNG prng(*seed); |
| 537 | |
| 538 | // Step 1: Maintain the scattering wait period. |
| 539 | // |
| 540 | // If no wait period was previously determined, or it no longer fits in the |
| 541 | // scatter factor, then generate a new one. Otherwise, keep the one we have. |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 542 | TimeDelta wait_period = update_state.scatter_wait_period; |
| 543 | if (wait_period == kZeroInterval || wait_period > *scatter_factor_p) { |
| 544 | wait_period = TimeDelta::FromSeconds( |
| 545 | prng.RandMinMax(1, scatter_factor_p->InSeconds())); |
| 546 | } |
| 547 | |
| 548 | // If we surpass the wait period or the max scatter period associated with |
| 549 | // the update, then no wait is needed. |
| 550 | Time wait_expires = (update_state.first_seen + |
| 551 | min(wait_period, update_state.scatter_wait_period_max)); |
| 552 | if (ec->IsTimeGreaterThan(wait_expires)) |
| 553 | wait_period = kZeroInterval; |
| 554 | |
| 555 | // Step 2: Maintain the update check threshold count. |
| 556 | // |
| 557 | // If an update check threshold is not specified then generate a new |
| 558 | // one. |
| 559 | int check_threshold = update_state.scatter_check_threshold; |
| 560 | if (check_threshold == 0) { |
| 561 | check_threshold = prng.RandMinMax( |
| 562 | update_state.scatter_check_threshold_min, |
| 563 | update_state.scatter_check_threshold_max); |
| 564 | } |
| 565 | |
| 566 | // If the update check threshold is not within allowed range then nullify it. |
| 567 | // TODO(garnold) This is compliant with current logic found in |
| 568 | // OmahaRequestAction::IsUpdateCheckCountBasedWaitingSatisfied(). We may want |
| 569 | // to change it so that it behaves similarly to the wait period case, namely |
| 570 | // if the current value exceeds the maximum, we set a new one within range. |
| 571 | if (check_threshold > update_state.scatter_check_threshold_max) |
| 572 | check_threshold = 0; |
| 573 | |
| 574 | // If the update check threshold is non-zero and satisfied, then nullify it. |
| 575 | if (check_threshold > 0 && update_state.num_checks >= check_threshold) |
| 576 | check_threshold = 0; |
| 577 | |
| 578 | bool is_scattering = (wait_period != kZeroInterval || check_threshold); |
| 579 | EvalStatus ret = EvalStatus::kSucceeded; |
| 580 | if (is_scattering && wait_period == update_state.scatter_wait_period && |
| 581 | check_threshold == update_state.scatter_check_threshold) |
| 582 | ret = EvalStatus::kAskMeAgainLater; |
| 583 | result->is_scattering = is_scattering; |
| 584 | result->wait_period = wait_period; |
| 585 | result->check_threshold = check_threshold; |
| 586 | return ret; |
| 587 | } |
| 588 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 589 | } // namespace chromeos_update_manager |