Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2014 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 16 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 17 | #include "update_engine/update_manager/chromeos_policy.h" |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 18 | |
Gilad Arnold | e121881 | 2014-05-07 12:21:36 -0700 | [diff] [blame] | 19 | #include <algorithm> |
Gilad Arnold | 0adbc94 | 2014-05-12 10:35:43 -0700 | [diff] [blame] | 20 | #include <set> |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 21 | #include <string> |
| 22 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 23 | #include <base/logging.h> |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 24 | #include <base/strings/string_util.h> |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 25 | #include <base/time/time.h> |
| 26 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 27 | #include "update_engine/common/error_code.h" |
Alex Deymo | e88e9fe | 2016-02-03 16:38:00 -0800 | [diff] [blame] | 28 | #include "update_engine/common/error_code_utils.h" |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 29 | #include "update_engine/common/utils.h" |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 30 | #include "update_engine/update_manager/device_policy_provider.h" |
| 31 | #include "update_engine/update_manager/policy_utils.h" |
| 32 | #include "update_engine/update_manager/shill_provider.h" |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 33 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 34 | using base::Time; |
| 35 | using base::TimeDelta; |
Sen Jiang | 255e22b | 2016-05-20 16:15:29 -0700 | [diff] [blame] | 36 | using chromeos_update_engine::ConnectionTethering; |
| 37 | using chromeos_update_engine::ConnectionType; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 38 | using chromeos_update_engine::ErrorCode; |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 39 | using std::get; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 40 | using std::max; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 41 | using std::min; |
Gilad Arnold | 0adbc94 | 2014-05-12 10:35:43 -0700 | [diff] [blame] | 42 | using std::set; |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 43 | using std::string; |
| 44 | |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 45 | namespace { |
| 46 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 47 | // Examines |err_code| and decides whether the URL index needs to be advanced, |
| 48 | // the error count for the URL incremented, or none of the above. In the first |
| 49 | // case, returns true; in the second case, increments |*url_num_error_p| and |
| 50 | // returns false; otherwise just returns false. |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 51 | // |
| 52 | // TODO(garnold) Adapted from PayloadState::UpdateFailed() (to be retired). |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 53 | bool HandleErrorCode(ErrorCode err_code, int* url_num_error_p) { |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 54 | err_code = chromeos_update_engine::utils::GetBaseErrorCode(err_code); |
| 55 | switch (err_code) { |
| 56 | // Errors which are good indicators of a problem with a particular URL or |
| 57 | // the protocol used in the URL or entities in the communication channel |
| 58 | // (e.g. proxies). We should try the next available URL in the next update |
| 59 | // check to quickly recover from these errors. |
| 60 | case ErrorCode::kPayloadHashMismatchError: |
| 61 | case ErrorCode::kPayloadSizeMismatchError: |
| 62 | case ErrorCode::kDownloadPayloadVerificationError: |
| 63 | case ErrorCode::kDownloadPayloadPubKeyVerificationError: |
| 64 | case ErrorCode::kSignedDeltaPayloadExpectedError: |
| 65 | case ErrorCode::kDownloadInvalidMetadataMagicString: |
| 66 | case ErrorCode::kDownloadSignatureMissingInManifest: |
| 67 | case ErrorCode::kDownloadManifestParseError: |
| 68 | case ErrorCode::kDownloadMetadataSignatureError: |
| 69 | case ErrorCode::kDownloadMetadataSignatureVerificationError: |
| 70 | case ErrorCode::kDownloadMetadataSignatureMismatch: |
| 71 | case ErrorCode::kDownloadOperationHashVerificationError: |
| 72 | case ErrorCode::kDownloadOperationExecutionError: |
| 73 | case ErrorCode::kDownloadOperationHashMismatch: |
| 74 | case ErrorCode::kDownloadInvalidMetadataSize: |
| 75 | case ErrorCode::kDownloadInvalidMetadataSignature: |
| 76 | case ErrorCode::kDownloadOperationHashMissingError: |
| 77 | case ErrorCode::kDownloadMetadataSignatureMissingError: |
| 78 | case ErrorCode::kPayloadMismatchedType: |
| 79 | case ErrorCode::kUnsupportedMajorPayloadVersion: |
| 80 | case ErrorCode::kUnsupportedMinorPayloadVersion: |
Sen Jiang | 8e768e9 | 2017-06-28 17:13:19 -0700 | [diff] [blame] | 81 | case ErrorCode::kPayloadTimestampError: |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 82 | LOG(INFO) << "Advancing download URL due to error " |
Alex Deymo | e88e9fe | 2016-02-03 16:38:00 -0800 | [diff] [blame] | 83 | << chromeos_update_engine::utils::ErrorCodeToString(err_code) |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 84 | << " (" << static_cast<int>(err_code) << ")"; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 85 | return true; |
| 86 | |
| 87 | // Errors which seem to be just transient network/communication related |
| 88 | // failures and do not indicate any inherent problem with the URL itself. |
| 89 | // So, we should keep the current URL but just increment the |
| 90 | // failure count to give it more chances. This way, while we maximize our |
| 91 | // chances of downloading from the URLs that appear earlier in the response |
| 92 | // (because download from a local server URL that appears earlier in a |
| 93 | // response is preferable than downloading from the next URL which could be |
Alex Vakulenko | 072359c | 2014-07-18 11:41:07 -0700 | [diff] [blame] | 94 | // an Internet URL and thus could be more expensive). |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 95 | case ErrorCode::kError: |
| 96 | case ErrorCode::kDownloadTransferError: |
| 97 | case ErrorCode::kDownloadWriteError: |
| 98 | case ErrorCode::kDownloadStateInitializationError: |
Gilad Arnold | 684219d | 2014-07-07 14:54:57 -0700 | [diff] [blame] | 99 | case ErrorCode::kOmahaErrorInHTTPResponse: // Aggregate for HTTP errors. |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 100 | LOG(INFO) << "Incrementing URL failure count due to error " |
Alex Deymo | e88e9fe | 2016-02-03 16:38:00 -0800 | [diff] [blame] | 101 | << chromeos_update_engine::utils::ErrorCodeToString(err_code) |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 102 | << " (" << static_cast<int>(err_code) << ")"; |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 103 | *url_num_error_p += 1; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 104 | return false; |
| 105 | |
| 106 | // Errors which are not specific to a URL and hence shouldn't result in |
| 107 | // the URL being penalized. This can happen in two cases: |
| 108 | // 1. We haven't started downloading anything: These errors don't cost us |
| 109 | // anything in terms of actual payload bytes, so we should just do the |
| 110 | // regular retries at the next update check. |
| 111 | // 2. We have successfully downloaded the payload: In this case, the |
| 112 | // payload attempt number would have been incremented and would take care |
Alex Vakulenko | 072359c | 2014-07-18 11:41:07 -0700 | [diff] [blame] | 113 | // of the back-off at the next update check. |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 114 | // In either case, there's no need to update URL index or failure count. |
| 115 | case ErrorCode::kOmahaRequestError: |
| 116 | case ErrorCode::kOmahaResponseHandlerError: |
| 117 | case ErrorCode::kPostinstallRunnerError: |
| 118 | case ErrorCode::kFilesystemCopierError: |
| 119 | case ErrorCode::kInstallDeviceOpenError: |
| 120 | case ErrorCode::kKernelDeviceOpenError: |
| 121 | case ErrorCode::kDownloadNewPartitionInfoError: |
| 122 | case ErrorCode::kNewRootfsVerificationError: |
| 123 | case ErrorCode::kNewKernelVerificationError: |
| 124 | case ErrorCode::kPostinstallBootedFromFirmwareB: |
| 125 | case ErrorCode::kPostinstallFirmwareRONotUpdatable: |
| 126 | case ErrorCode::kOmahaRequestEmptyResponseError: |
| 127 | case ErrorCode::kOmahaRequestXMLParseError: |
| 128 | case ErrorCode::kOmahaResponseInvalid: |
| 129 | case ErrorCode::kOmahaUpdateIgnoredPerPolicy: |
| 130 | case ErrorCode::kOmahaUpdateDeferredPerPolicy: |
Kevin Cernekee | 2494e28 | 2016-03-29 18:03:53 -0700 | [diff] [blame] | 131 | case ErrorCode::kNonCriticalUpdateInOOBE: |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 132 | case ErrorCode::kOmahaUpdateDeferredForBackoff: |
| 133 | case ErrorCode::kPostinstallPowerwashError: |
| 134 | case ErrorCode::kUpdateCanceledByChannelChange: |
David Zeuthen | f3e2801 | 2014-08-26 18:23:52 -0400 | [diff] [blame] | 135 | case ErrorCode::kOmahaRequestXMLHasEntityDecl: |
Allie Wood | eb9e6d8 | 2015-04-17 13:55:30 -0700 | [diff] [blame] | 136 | case ErrorCode::kFilesystemVerifierError: |
Alex Deymo | 1f19dcc | 2016-02-03 09:22:17 -0800 | [diff] [blame] | 137 | case ErrorCode::kUserCanceled: |
Sen Jiang | fe52282 | 2017-10-31 15:14:11 -0700 | [diff] [blame^] | 138 | case ErrorCode::kUpdatedButNotActive: |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 139 | LOG(INFO) << "Not changing URL index or failure count due to error " |
Alex Deymo | e88e9fe | 2016-02-03 16:38:00 -0800 | [diff] [blame] | 140 | << chromeos_update_engine::utils::ErrorCodeToString(err_code) |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 141 | << " (" << static_cast<int>(err_code) << ")"; |
| 142 | return false; |
| 143 | |
| 144 | case ErrorCode::kSuccess: // success code |
| 145 | case ErrorCode::kUmaReportedMax: // not an error code |
| 146 | case ErrorCode::kOmahaRequestHTTPResponseBase: // aggregated already |
Alex Deymo | 1f19dcc | 2016-02-03 09:22:17 -0800 | [diff] [blame] | 147 | case ErrorCode::kDevModeFlag: // not an error code |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 148 | case ErrorCode::kResumedFlag: // not an error code |
| 149 | case ErrorCode::kTestImageFlag: // not an error code |
| 150 | case ErrorCode::kTestOmahaUrlFlag: // not an error code |
| 151 | case ErrorCode::kSpecialFlags: // not an error code |
| 152 | // These shouldn't happen. Enumerating these explicitly here so that we |
| 153 | // can let the compiler warn about new error codes that are added to |
| 154 | // action_processor.h but not added here. |
| 155 | LOG(WARNING) << "Unexpected error " |
Alex Deymo | e88e9fe | 2016-02-03 16:38:00 -0800 | [diff] [blame] | 156 | << chromeos_update_engine::utils::ErrorCodeToString(err_code) |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 157 | << " (" << static_cast<int>(err_code) << ")"; |
| 158 | // Note: Not adding a default here so as to let the compiler warn us of |
| 159 | // any new enums that were added in the .h but not listed in this switch. |
| 160 | } |
| 161 | return false; |
| 162 | } |
| 163 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 164 | // Checks whether |url| can be used under given download restrictions. |
| 165 | bool IsUrlUsable(const string& url, bool http_allowed) { |
Alex Vakulenko | 0103c36 | 2016-01-20 07:56:15 -0800 | [diff] [blame] | 166 | return http_allowed || |
| 167 | !base::StartsWith(url, "http://", |
| 168 | base::CompareCase::INSENSITIVE_ASCII); |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | } // namespace |
| 172 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 173 | namespace chromeos_update_manager { |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 174 | |
Gilad Arnold | a2e8eaa | 2014-09-24 13:12:33 -0700 | [diff] [blame] | 175 | const int ChromeOSPolicy::kTimeoutInitialInterval = 7 * 60; |
Alex Deymo | 14e7dde | 2015-10-20 14:46:33 -0700 | [diff] [blame] | 176 | |
| 177 | // TODO(deymo): Split the update_manager policies for Brillo and ChromeOS and |
| 178 | // make the update check periodic interval configurable. |
| 179 | #ifdef __ANDROID__ |
| 180 | const int ChromeOSPolicy::kTimeoutPeriodicInterval = 5 * 60 * 60; |
Alex Deymo | dbe13b4 | 2015-11-06 11:15:08 -0800 | [diff] [blame] | 181 | const int ChromeOSPolicy::kTimeoutMaxBackoffInterval = 26 * 60 * 60; |
Alex Deymo | 14e7dde | 2015-10-20 14:46:33 -0700 | [diff] [blame] | 182 | #else |
Gilad Arnold | a2e8eaa | 2014-09-24 13:12:33 -0700 | [diff] [blame] | 183 | const int ChromeOSPolicy::kTimeoutPeriodicInterval = 45 * 60; |
Alex Deymo | dbe13b4 | 2015-11-06 11:15:08 -0800 | [diff] [blame] | 184 | const int ChromeOSPolicy::kTimeoutMaxBackoffInterval = 4 * 60 * 60; |
Alex Deymo | 14e7dde | 2015-10-20 14:46:33 -0700 | [diff] [blame] | 185 | #endif // __ANDROID__ |
| 186 | |
Gilad Arnold | a2e8eaa | 2014-09-24 13:12:33 -0700 | [diff] [blame] | 187 | const int ChromeOSPolicy::kTimeoutRegularFuzz = 10 * 60; |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 188 | const int ChromeOSPolicy::kAttemptBackoffMaxIntervalInDays = 16; |
| 189 | const int ChromeOSPolicy::kAttemptBackoffFuzzInHours = 12; |
Gilad Arnold | 349ac83 | 2014-10-06 14:20:28 -0700 | [diff] [blame] | 190 | const int ChromeOSPolicy::kMaxP2PAttempts = 10; |
| 191 | const int ChromeOSPolicy::kMaxP2PAttemptsPeriodInSeconds = 5 * 24 * 60 * 60; |
Gilad Arnold | a2e8eaa | 2014-09-24 13:12:33 -0700 | [diff] [blame] | 192 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 193 | EvalStatus ChromeOSPolicy::UpdateCheckAllowed( |
| 194 | EvaluationContext* ec, State* state, string* error, |
| 195 | UpdateCheckParams* result) const { |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 196 | // Set the default return values. |
| 197 | result->updates_enabled = true; |
| 198 | result->target_channel.clear(); |
Gilad Arnold | d4b3032 | 2014-07-21 15:35:27 -0700 | [diff] [blame] | 199 | result->target_version_prefix.clear(); |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 200 | result->is_interactive = false; |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 201 | |
Gilad Arnold | a1eabcd | 2014-07-09 15:42:40 -0700 | [diff] [blame] | 202 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 203 | UpdaterProvider* const updater_provider = state->updater_provider(); |
Gilad Arnold | a1eabcd | 2014-07-09 15:42:40 -0700 | [diff] [blame] | 204 | SystemProvider* const system_provider = state->system_provider(); |
| 205 | |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 206 | // Do not perform any updates if booted from removable device. This decision |
| 207 | // is final. |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 208 | const unsigned int* num_slots_p = ec->GetValue( |
| 209 | system_provider->var_num_slots()); |
| 210 | if (!num_slots_p || *num_slots_p < 2) { |
| 211 | LOG(INFO) << "Not enough slots for A/B updates, disabling update checks."; |
Gilad Arnold | bfc44f7 | 2014-07-09 14:41:39 -0700 | [diff] [blame] | 212 | result->updates_enabled = false; |
| 213 | return EvalStatus::kSucceeded; |
| 214 | } |
| 215 | |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 216 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 217 | dp_provider->var_device_policy_is_loaded()); |
| 218 | if (device_policy_is_loaded_p && *device_policy_is_loaded_p) { |
Xiyuan Xia | 6e30bc5 | 2016-02-24 15:35:42 -0800 | [diff] [blame] | 219 | bool kiosk_app_control_chrome_version = false; |
| 220 | |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 221 | // Check whether updates are disabled by policy. |
| 222 | const bool* update_disabled_p = ec->GetValue( |
| 223 | dp_provider->var_update_disabled()); |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 224 | if (update_disabled_p && *update_disabled_p) { |
Xiyuan Xia | 6e30bc5 | 2016-02-24 15:35:42 -0800 | [diff] [blame] | 225 | // Check whether allow kiosk app to control chrome version policy. This |
| 226 | // policy is only effective when AU is disabled by admin. |
| 227 | const bool* allow_kiosk_app_control_chrome_version_p = ec->GetValue( |
| 228 | dp_provider->var_allow_kiosk_app_control_chrome_version()); |
| 229 | kiosk_app_control_chrome_version = |
| 230 | allow_kiosk_app_control_chrome_version_p && |
| 231 | *allow_kiosk_app_control_chrome_version_p; |
| 232 | if (!kiosk_app_control_chrome_version) { |
| 233 | // No kiosk pin chrome version policy. AU is really disabled. |
| 234 | LOG(INFO) << "Updates disabled by policy, blocking update checks."; |
| 235 | return EvalStatus::kAskMeAgainLater; |
| 236 | } |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 237 | } |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 238 | |
Xiyuan Xia | 6e30bc5 | 2016-02-24 15:35:42 -0800 | [diff] [blame] | 239 | if (kiosk_app_control_chrome_version) { |
| 240 | // Get the required platform version from Chrome. |
| 241 | const string* kiosk_required_platform_version_p = |
| 242 | ec->GetValue(system_provider->var_kiosk_required_platform_version()); |
Xiyuan Xia | ed9bd92 | 2016-04-07 14:45:16 -0700 | [diff] [blame] | 243 | if (!kiosk_required_platform_version_p) { |
| 244 | LOG(INFO) << "Kiosk app required platform version is not fetched, " |
| 245 | "blocking update checks"; |
| 246 | return EvalStatus::kAskMeAgainLater; |
| 247 | } |
| 248 | |
| 249 | result->target_version_prefix = *kiosk_required_platform_version_p; |
Xiyuan Xia | c0e8f9a | 2017-02-22 13:19:35 -0800 | [diff] [blame] | 250 | LOG(INFO) << "Allow kiosk app to control Chrome version policy is set, " |
| 251 | << "target version is " |
| 252 | << (!kiosk_required_platform_version_p->empty() |
Xiyuan Xia | 6e30bc5 | 2016-02-24 15:35:42 -0800 | [diff] [blame] | 253 | ? *kiosk_required_platform_version_p |
| 254 | : std::string("latest")); |
| 255 | } else { |
| 256 | // Determine whether a target version prefix is dictated by policy. |
| 257 | const string* target_version_prefix_p = ec->GetValue( |
| 258 | dp_provider->var_target_version_prefix()); |
| 259 | if (target_version_prefix_p) |
| 260 | result->target_version_prefix = *target_version_prefix_p; |
| 261 | } |
Gilad Arnold | d4b3032 | 2014-07-21 15:35:27 -0700 | [diff] [blame] | 262 | |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 263 | // Determine whether a target channel is dictated by policy. |
| 264 | const bool* release_channel_delegated_p = ec->GetValue( |
| 265 | dp_provider->var_release_channel_delegated()); |
| 266 | if (release_channel_delegated_p && !(*release_channel_delegated_p)) { |
| 267 | const string* release_channel_p = ec->GetValue( |
| 268 | dp_provider->var_release_channel()); |
| 269 | if (release_channel_p) |
| 270 | result->target_channel = *release_channel_p; |
| 271 | } |
| 272 | } |
| 273 | |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 274 | // First, check to see if an interactive update was requested. |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 275 | const UpdateRequestStatus* forced_update_requested_p = ec->GetValue( |
| 276 | updater_provider->var_forced_update_requested()); |
| 277 | if (forced_update_requested_p && |
| 278 | *forced_update_requested_p != UpdateRequestStatus::kNone) { |
| 279 | result->is_interactive = |
| 280 | (*forced_update_requested_p == UpdateRequestStatus::kInteractive); |
| 281 | LOG(INFO) << "Forced update signaled (" |
| 282 | << (result->is_interactive ? "interactive" : "periodic") |
| 283 | << "), allowing update check."; |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 284 | return EvalStatus::kSucceeded; |
| 285 | } |
| 286 | |
| 287 | // The logic thereafter applies to periodic updates. Bear in mind that we |
| 288 | // should not return a final "no" if any of these criteria are not satisfied, |
| 289 | // because the system may still update due to an interactive update request. |
| 290 | |
| 291 | // Unofficial builds should not perform periodic update checks. |
| 292 | const bool* is_official_build_p = ec->GetValue( |
| 293 | system_provider->var_is_official_build()); |
| 294 | if (is_official_build_p && !(*is_official_build_p)) { |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 295 | LOG(INFO) << "Unofficial build, blocking periodic update checks."; |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 296 | return EvalStatus::kAskMeAgainLater; |
| 297 | } |
| 298 | |
| 299 | // If OOBE is enabled, wait until it is completed. |
| 300 | const bool* is_oobe_enabled_p = ec->GetValue( |
| 301 | state->config_provider()->var_is_oobe_enabled()); |
| 302 | if (is_oobe_enabled_p && *is_oobe_enabled_p) { |
| 303 | const bool* is_oobe_complete_p = ec->GetValue( |
| 304 | system_provider->var_is_oobe_complete()); |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 305 | if (is_oobe_complete_p && !(*is_oobe_complete_p)) { |
| 306 | LOG(INFO) << "OOBE not completed, blocking update checks."; |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 307 | return EvalStatus::kAskMeAgainLater; |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 308 | } |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | // Ensure that periodic update checks are timed properly. |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 312 | Time next_update_check; |
| 313 | if (NextUpdateCheckTime(ec, state, error, &next_update_check) != |
| 314 | EvalStatus::kSucceeded) { |
| 315 | return EvalStatus::kFailed; |
| 316 | } |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 317 | if (!ec->IsWallclockTimeGreaterThan(next_update_check)) { |
| 318 | LOG(INFO) << "Periodic check interval not satisfied, blocking until " |
| 319 | << chromeos_update_engine::utils::ToString(next_update_check); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 320 | return EvalStatus::kAskMeAgainLater; |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 321 | } |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 322 | |
| 323 | // It is time to check for an update. |
Gilad Arnold | ec7f916 | 2014-07-15 13:24:46 -0700 | [diff] [blame] | 324 | LOG(INFO) << "Allowing update check."; |
Alex Deymo | e636c3c | 2014-03-11 19:02:08 -0700 | [diff] [blame] | 325 | return EvalStatus::kSucceeded; |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 326 | } |
| 327 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 328 | EvalStatus ChromeOSPolicy::UpdateCanStart( |
| 329 | EvaluationContext* ec, |
| 330 | State* state, |
| 331 | string* error, |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 332 | UpdateDownloadParams* result, |
Gilad Arnold | d78caf9 | 2014-09-24 09:28:14 -0700 | [diff] [blame] | 333 | const UpdateState update_state) const { |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 334 | // Set the default return values. Note that we set persisted values (backoff, |
| 335 | // scattering) to the same values presented in the update state. The reason is |
| 336 | // that preemptive returns, such as the case where an update check is due, |
| 337 | // should not clear off the said values; rather, it is the deliberate |
| 338 | // inference of new values that should cause them to be reset. |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 339 | result->update_can_start = false; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 340 | result->cannot_start_reason = UpdateCannotStartReason::kUndefined; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 341 | result->download_url_idx = -1; |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 342 | result->download_url_allowed = true; |
| 343 | result->download_url_num_errors = 0; |
Gilad Arnold | b2f9919 | 2014-10-07 13:01:52 -0700 | [diff] [blame] | 344 | result->p2p_downloading_allowed = false; |
| 345 | result->p2p_sharing_allowed = false; |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 346 | result->do_increment_failures = false; |
| 347 | result->backoff_expiry = update_state.backoff_expiry; |
| 348 | result->scatter_wait_period = update_state.scatter_wait_period; |
| 349 | result->scatter_check_threshold = update_state.scatter_check_threshold; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 350 | |
| 351 | // Make sure that we're not due for an update check. |
| 352 | UpdateCheckParams check_result; |
| 353 | EvalStatus check_status = UpdateCheckAllowed(ec, state, error, &check_result); |
| 354 | if (check_status == EvalStatus::kFailed) |
| 355 | return EvalStatus::kFailed; |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 356 | bool is_check_due = (check_status == EvalStatus::kSucceeded && |
| 357 | check_result.updates_enabled == true); |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 358 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 359 | // Check whether backoff applies, and if not then which URL can be used for |
| 360 | // downloading. These require scanning the download error log, and so they are |
| 361 | // done together. |
| 362 | UpdateBackoffAndDownloadUrlResult backoff_url_result; |
| 363 | EvalStatus backoff_url_status = UpdateBackoffAndDownloadUrl( |
| 364 | ec, state, error, &backoff_url_result, update_state); |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 365 | if (backoff_url_status == EvalStatus::kFailed) |
| 366 | return EvalStatus::kFailed; |
| 367 | result->download_url_idx = backoff_url_result.url_idx; |
| 368 | result->download_url_num_errors = backoff_url_result.url_num_errors; |
| 369 | result->do_increment_failures = backoff_url_result.do_increment_failures; |
| 370 | result->backoff_expiry = backoff_url_result.backoff_expiry; |
| 371 | bool is_backoff_active = |
| 372 | (backoff_url_status == EvalStatus::kAskMeAgainLater) || |
| 373 | !backoff_url_result.backoff_expiry.is_null(); |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 374 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 375 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 376 | bool is_scattering_active = false; |
| 377 | EvalStatus scattering_status = EvalStatus::kSucceeded; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 378 | |
| 379 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 380 | dp_provider->var_device_policy_is_loaded()); |
| 381 | if (device_policy_is_loaded_p && *device_policy_is_loaded_p) { |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 382 | // Check whether scattering applies to this update attempt. We should not be |
| 383 | // scattering if this is an interactive update check, or if OOBE is enabled |
| 384 | // but not completed. |
| 385 | // |
| 386 | // Note: current code further suppresses scattering if a "deadline" |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 387 | // attribute is found in the Omaha response. However, it appears that the |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 388 | // presence of this attribute is merely indicative of an OOBE update, during |
| 389 | // which we suppress scattering anyway. |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 390 | bool is_scattering_applicable = false; |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 391 | result->scatter_wait_period = kZeroInterval; |
| 392 | result->scatter_check_threshold = 0; |
| 393 | if (!update_state.is_interactive) { |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 394 | const bool* is_oobe_enabled_p = ec->GetValue( |
| 395 | state->config_provider()->var_is_oobe_enabled()); |
| 396 | if (is_oobe_enabled_p && !(*is_oobe_enabled_p)) { |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 397 | is_scattering_applicable = true; |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 398 | } else { |
| 399 | const bool* is_oobe_complete_p = ec->GetValue( |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 400 | state->system_provider()->var_is_oobe_complete()); |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 401 | is_scattering_applicable = (is_oobe_complete_p && *is_oobe_complete_p); |
Gilad Arnold | 76a11f6 | 2014-05-20 09:02:12 -0700 | [diff] [blame] | 402 | } |
| 403 | } |
| 404 | |
| 405 | // Compute scattering values. |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 406 | if (is_scattering_applicable) { |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 407 | UpdateScatteringResult scatter_result; |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 408 | scattering_status = UpdateScattering(ec, state, error, &scatter_result, |
| 409 | update_state); |
| 410 | if (scattering_status == EvalStatus::kFailed) { |
| 411 | return EvalStatus::kFailed; |
| 412 | } else { |
| 413 | result->scatter_wait_period = scatter_result.wait_period; |
| 414 | result->scatter_check_threshold = scatter_result.check_threshold; |
| 415 | if (scattering_status == EvalStatus::kAskMeAgainLater || |
| 416 | scatter_result.is_scattering) |
| 417 | is_scattering_active = true; |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 418 | } |
| 419 | } |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 420 | } |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 421 | |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 422 | // Find out whether P2P is globally enabled. |
| 423 | bool p2p_enabled; |
| 424 | EvalStatus p2p_enabled_status = P2PEnabled(ec, state, error, &p2p_enabled); |
| 425 | if (p2p_enabled_status != EvalStatus::kSucceeded) |
| 426 | return EvalStatus::kFailed; |
| 427 | |
| 428 | // Is P2P is enabled, consider allowing it for downloading and/or sharing. |
| 429 | if (p2p_enabled) { |
| 430 | // Sharing via P2P is allowed if not disabled by Omaha. |
| 431 | if (update_state.p2p_sharing_disabled) { |
| 432 | LOG(INFO) << "Blocked P2P sharing because it is disabled by Omaha."; |
Gilad Arnold | b2f9919 | 2014-10-07 13:01:52 -0700 | [diff] [blame] | 433 | } else { |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 434 | result->p2p_sharing_allowed = true; |
Gilad Arnold | ef8d087 | 2014-10-03 14:14:06 -0700 | [diff] [blame] | 435 | } |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 436 | |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 437 | // Downloading via P2P is allowed if not disabled by Omaha, an update is not |
| 438 | // interactive, and other limits haven't been reached. |
| 439 | if (update_state.p2p_downloading_disabled) { |
| 440 | LOG(INFO) << "Blocked P2P downloading because it is disabled by Omaha."; |
| 441 | } else if (update_state.is_interactive) { |
| 442 | LOG(INFO) << "Blocked P2P downloading because update is interactive."; |
Gilad Arnold | b2f9919 | 2014-10-07 13:01:52 -0700 | [diff] [blame] | 443 | } else if (update_state.p2p_num_attempts >= kMaxP2PAttempts) { |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 444 | LOG(INFO) << "Blocked P2P downloading as it was attempted too many " |
| 445 | "times."; |
Gilad Arnold | b2f9919 | 2014-10-07 13:01:52 -0700 | [diff] [blame] | 446 | } else if (!update_state.p2p_first_attempted.is_null() && |
| 447 | ec->IsWallclockTimeGreaterThan( |
| 448 | update_state.p2p_first_attempted + |
| 449 | TimeDelta::FromSeconds(kMaxP2PAttemptsPeriodInSeconds))) { |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 450 | LOG(INFO) << "Blocked P2P downloading as its usage timespan exceeds " |
| 451 | "limit."; |
Gilad Arnold | b2f9919 | 2014-10-07 13:01:52 -0700 | [diff] [blame] | 452 | } else { |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 453 | // P2P download is allowed; if backoff or scattering are active, be sure |
| 454 | // to suppress them, yet prevent any download URL from being used. |
Gilad Arnold | b2f9919 | 2014-10-07 13:01:52 -0700 | [diff] [blame] | 455 | result->p2p_downloading_allowed = true; |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 456 | if (is_backoff_active || is_scattering_active) { |
| 457 | is_backoff_active = is_scattering_active = false; |
| 458 | result->download_url_allowed = false; |
| 459 | } |
Gilad Arnold | b2f9919 | 2014-10-07 13:01:52 -0700 | [diff] [blame] | 460 | } |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 463 | // Check for various deterrents. |
| 464 | if (is_check_due) { |
| 465 | result->cannot_start_reason = UpdateCannotStartReason::kCheckDue; |
| 466 | return EvalStatus::kSucceeded; |
| 467 | } |
| 468 | if (is_backoff_active) { |
| 469 | result->cannot_start_reason = UpdateCannotStartReason::kBackoff; |
| 470 | return backoff_url_status; |
| 471 | } |
| 472 | if (is_scattering_active) { |
| 473 | result->cannot_start_reason = UpdateCannotStartReason::kScattering; |
| 474 | return scattering_status; |
| 475 | } |
Gilad Arnold | b2f9919 | 2014-10-07 13:01:52 -0700 | [diff] [blame] | 476 | if (result->download_url_idx < 0 && !result->p2p_downloading_allowed) { |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 477 | result->cannot_start_reason = UpdateCannotStartReason::kCannotDownload; |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 478 | return EvalStatus::kSucceeded; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 479 | } |
| 480 | |
Gilad Arnold | 14a9e70 | 2014-10-08 08:09:09 -0700 | [diff] [blame] | 481 | // Update is good to go. |
| 482 | result->update_can_start = true; |
Gilad Arnold | af2f6ae | 2014-04-28 14:14:52 -0700 | [diff] [blame] | 483 | return EvalStatus::kSucceeded; |
| 484 | } |
| 485 | |
Gilad Arnold | a8262e2 | 2014-06-02 13:54:27 -0700 | [diff] [blame] | 486 | // TODO(garnold) Logic in this method is based on |
| 487 | // ConnectionManager::IsUpdateAllowedOver(); be sure to deprecate the latter. |
| 488 | // |
| 489 | // TODO(garnold) The current logic generally treats the list of allowed |
| 490 | // connections coming from the device policy as a whitelist, meaning that it |
| 491 | // can only be used for enabling connections, but not disable them. Further, |
| 492 | // certain connection types (like Bluetooth) cannot be enabled even by policy. |
| 493 | // In effect, the only thing that device policy can change is to enable |
| 494 | // updates over a cellular network (disabled by default). We may want to |
| 495 | // revisit this semantics, allowing greater flexibility in defining specific |
| 496 | // permissions over all types of networks. |
Gilad Arnold | 684219d | 2014-07-07 14:54:57 -0700 | [diff] [blame] | 497 | EvalStatus ChromeOSPolicy::UpdateDownloadAllowed( |
Gilad Arnold | a8262e2 | 2014-06-02 13:54:27 -0700 | [diff] [blame] | 498 | EvaluationContext* ec, |
| 499 | State* state, |
| 500 | string* error, |
| 501 | bool* result) const { |
| 502 | // Get the current connection type. |
| 503 | ShillProvider* const shill_provider = state->shill_provider(); |
| 504 | const ConnectionType* conn_type_p = ec->GetValue( |
| 505 | shill_provider->var_conn_type()); |
| 506 | POLICY_CHECK_VALUE_AND_FAIL(conn_type_p, error); |
| 507 | ConnectionType conn_type = *conn_type_p; |
| 508 | |
| 509 | // If we're tethering, treat it as a cellular connection. |
| 510 | if (conn_type != ConnectionType::kCellular) { |
| 511 | const ConnectionTethering* conn_tethering_p = ec->GetValue( |
| 512 | shill_provider->var_conn_tethering()); |
| 513 | POLICY_CHECK_VALUE_AND_FAIL(conn_tethering_p, error); |
| 514 | if (*conn_tethering_p == ConnectionTethering::kConfirmed) |
| 515 | conn_type = ConnectionType::kCellular; |
| 516 | } |
| 517 | |
| 518 | // By default, we allow updates for all connection types, with exceptions as |
| 519 | // noted below. This also determines whether a device policy can override the |
| 520 | // default. |
| 521 | *result = true; |
| 522 | bool device_policy_can_override = false; |
| 523 | switch (conn_type) { |
| 524 | case ConnectionType::kBluetooth: |
| 525 | *result = false; |
| 526 | break; |
| 527 | |
| 528 | case ConnectionType::kCellular: |
| 529 | *result = false; |
| 530 | device_policy_can_override = true; |
| 531 | break; |
| 532 | |
| 533 | case ConnectionType::kUnknown: |
| 534 | if (error) |
| 535 | *error = "Unknown connection type"; |
| 536 | return EvalStatus::kFailed; |
| 537 | |
| 538 | default: |
| 539 | break; // Nothing to do. |
| 540 | } |
| 541 | |
| 542 | // If update is allowed, we're done. |
| 543 | if (*result) |
| 544 | return EvalStatus::kSucceeded; |
| 545 | |
| 546 | // Check whether the device policy specifically allows this connection. |
Gilad Arnold | a8262e2 | 2014-06-02 13:54:27 -0700 | [diff] [blame] | 547 | if (device_policy_can_override) { |
| 548 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
| 549 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 550 | dp_provider->var_device_policy_is_loaded()); |
| 551 | if (device_policy_is_loaded_p && *device_policy_is_loaded_p) { |
| 552 | const set<ConnectionType>* allowed_conn_types_p = ec->GetValue( |
| 553 | dp_provider->var_allowed_connection_types_for_update()); |
| 554 | if (allowed_conn_types_p) { |
| 555 | if (allowed_conn_types_p->count(conn_type)) { |
| 556 | *result = true; |
| 557 | return EvalStatus::kSucceeded; |
| 558 | } |
Gilad Arnold | 28d6be6 | 2014-06-30 14:04:04 -0700 | [diff] [blame] | 559 | } else if (conn_type == ConnectionType::kCellular) { |
| 560 | // Local user settings can allow updates over cellular iff a policy was |
| 561 | // loaded but no allowed connections were specified in it. |
| 562 | const bool* update_over_cellular_allowed_p = ec->GetValue( |
| 563 | state->updater_provider()->var_cellular_enabled()); |
| 564 | if (update_over_cellular_allowed_p && *update_over_cellular_allowed_p) |
| 565 | *result = true; |
Gilad Arnold | a8262e2 | 2014-06-02 13:54:27 -0700 | [diff] [blame] | 566 | } |
| 567 | } |
| 568 | } |
| 569 | |
Gilad Arnold | 28d6be6 | 2014-06-30 14:04:04 -0700 | [diff] [blame] | 570 | return (*result ? EvalStatus::kSucceeded : EvalStatus::kAskMeAgainLater); |
Gilad Arnold | a8262e2 | 2014-06-02 13:54:27 -0700 | [diff] [blame] | 571 | } |
| 572 | |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 573 | EvalStatus ChromeOSPolicy::P2PEnabled(EvaluationContext* ec, |
| 574 | State* state, |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 575 | string* error, |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 576 | bool* result) const { |
| 577 | bool enabled = false; |
| 578 | |
| 579 | // Determine whether use of P2P is allowed by policy. Even if P2P is not |
| 580 | // explicitly allowed, we allow it if the device is enterprise enrolled (that |
| 581 | // is, missing or empty owner string). |
| 582 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
| 583 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 584 | dp_provider->var_device_policy_is_loaded()); |
| 585 | if (device_policy_is_loaded_p && *device_policy_is_loaded_p) { |
| 586 | const bool* policy_au_p2p_enabled_p = ec->GetValue( |
| 587 | dp_provider->var_au_p2p_enabled()); |
| 588 | if (policy_au_p2p_enabled_p) { |
| 589 | enabled = *policy_au_p2p_enabled_p; |
| 590 | } else { |
| 591 | const string* policy_owner_p = ec->GetValue(dp_provider->var_owner()); |
| 592 | if (!policy_owner_p || policy_owner_p->empty()) |
| 593 | enabled = true; |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | // Enable P2P, if so mandated by the updater configuration. This is additive |
| 598 | // to whether or not P2P is enabled by device policy. |
| 599 | if (!enabled) { |
| 600 | const bool* updater_p2p_enabled_p = ec->GetValue( |
| 601 | state->updater_provider()->var_p2p_enabled()); |
| 602 | enabled = updater_p2p_enabled_p && *updater_p2p_enabled_p; |
| 603 | } |
| 604 | |
| 605 | *result = enabled; |
| 606 | return EvalStatus::kSucceeded; |
| 607 | } |
| 608 | |
| 609 | EvalStatus ChromeOSPolicy::P2PEnabledChanged(EvaluationContext* ec, |
| 610 | State* state, |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 611 | string* error, |
Gilad Arnold | 78ecbfc | 2014-10-22 14:38:25 -0700 | [diff] [blame] | 612 | bool* result, |
| 613 | bool prev_result) const { |
| 614 | EvalStatus status = P2PEnabled(ec, state, error, result); |
| 615 | if (status == EvalStatus::kSucceeded && *result == prev_result) |
| 616 | return EvalStatus::kAskMeAgainLater; |
| 617 | return status; |
| 618 | } |
| 619 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 620 | EvalStatus ChromeOSPolicy::NextUpdateCheckTime(EvaluationContext* ec, |
| 621 | State* state, string* error, |
| 622 | Time* next_update_check) const { |
Gilad Arnold | a0258a5 | 2014-07-10 16:21:19 -0700 | [diff] [blame] | 623 | UpdaterProvider* const updater_provider = state->updater_provider(); |
| 624 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 625 | // Don't check for updates too often. We limit the update checks to once every |
| 626 | // some interval. The interval is kTimeoutInitialInterval the first time and |
| 627 | // kTimeoutPeriodicInterval for the subsequent update checks. If the update |
| 628 | // check fails, we increase the interval between the update checks |
| 629 | // exponentially until kTimeoutMaxBackoffInterval. Finally, to avoid having |
| 630 | // many chromebooks running update checks at the exact same time, we add some |
| 631 | // fuzz to the interval. |
| 632 | const Time* updater_started_time = |
Gilad Arnold | a0258a5 | 2014-07-10 16:21:19 -0700 | [diff] [blame] | 633 | ec->GetValue(updater_provider->var_updater_started_time()); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 634 | POLICY_CHECK_VALUE_AND_FAIL(updater_started_time, error); |
| 635 | |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 636 | const Time* last_checked_time = |
Gilad Arnold | a0258a5 | 2014-07-10 16:21:19 -0700 | [diff] [blame] | 637 | ec->GetValue(updater_provider->var_last_checked_time()); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 638 | |
| 639 | const uint64_t* seed = ec->GetValue(state->random_provider()->var_seed()); |
| 640 | POLICY_CHECK_VALUE_AND_FAIL(seed, error); |
| 641 | |
| 642 | PRNG prng(*seed); |
| 643 | |
Gilad Arnold | 38b1402 | 2014-07-09 12:45:56 -0700 | [diff] [blame] | 644 | // If this is the first attempt, compute and return an initial value. |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 645 | if (!last_checked_time || *last_checked_time < *updater_started_time) { |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 646 | *next_update_check = *updater_started_time + FuzzedInterval( |
| 647 | &prng, kTimeoutInitialInterval, kTimeoutRegularFuzz); |
| 648 | return EvalStatus::kSucceeded; |
| 649 | } |
Gilad Arnold | 38b1402 | 2014-07-09 12:45:56 -0700 | [diff] [blame] | 650 | |
Gilad Arnold | a0258a5 | 2014-07-10 16:21:19 -0700 | [diff] [blame] | 651 | // Check whether the server is enforcing a poll interval; if not, this value |
| 652 | // will be zero. |
| 653 | const unsigned int* server_dictated_poll_interval = ec->GetValue( |
| 654 | updater_provider->var_server_dictated_poll_interval()); |
| 655 | POLICY_CHECK_VALUE_AND_FAIL(server_dictated_poll_interval, error); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 656 | |
Gilad Arnold | a0258a5 | 2014-07-10 16:21:19 -0700 | [diff] [blame] | 657 | int interval = *server_dictated_poll_interval; |
| 658 | int fuzz = 0; |
| 659 | |
Alex Vakulenko | 072359c | 2014-07-18 11:41:07 -0700 | [diff] [blame] | 660 | // If no poll interval was dictated by server compute a back-off period, |
Gilad Arnold | a0258a5 | 2014-07-10 16:21:19 -0700 | [diff] [blame] | 661 | // starting from a predetermined base periodic interval and increasing |
| 662 | // exponentially by the number of consecutive failed attempts. |
| 663 | if (interval == 0) { |
| 664 | const unsigned int* consecutive_failed_update_checks = ec->GetValue( |
| 665 | updater_provider->var_consecutive_failed_update_checks()); |
| 666 | POLICY_CHECK_VALUE_AND_FAIL(consecutive_failed_update_checks, error); |
| 667 | |
| 668 | interval = kTimeoutPeriodicInterval; |
| 669 | unsigned int num_failures = *consecutive_failed_update_checks; |
| 670 | while (interval < kTimeoutMaxBackoffInterval && num_failures) { |
| 671 | interval *= 2; |
| 672 | num_failures--; |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | |
Alex Vakulenko | 072359c | 2014-07-18 11:41:07 -0700 | [diff] [blame] | 676 | // We cannot back off longer than the predetermined maximum interval. |
Gilad Arnold | a0258a5 | 2014-07-10 16:21:19 -0700 | [diff] [blame] | 677 | if (interval > kTimeoutMaxBackoffInterval) |
| 678 | interval = kTimeoutMaxBackoffInterval; |
| 679 | |
Alex Vakulenko | 072359c | 2014-07-18 11:41:07 -0700 | [diff] [blame] | 680 | // We cannot back off shorter than the predetermined periodic interval. Also, |
Gilad Arnold | a0258a5 | 2014-07-10 16:21:19 -0700 | [diff] [blame] | 681 | // in this case set the fuzz to a predetermined regular value. |
| 682 | if (interval <= kTimeoutPeriodicInterval) { |
| 683 | interval = kTimeoutPeriodicInterval; |
| 684 | fuzz = kTimeoutRegularFuzz; |
| 685 | } |
| 686 | |
| 687 | // If not otherwise determined, defer to a fuzz of +/-(interval / 2). |
Gilad Arnold | 38b1402 | 2014-07-09 12:45:56 -0700 | [diff] [blame] | 688 | if (fuzz == 0) |
| 689 | fuzz = interval; |
| 690 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 691 | *next_update_check = *last_checked_time + FuzzedInterval( |
Gilad Arnold | 38b1402 | 2014-07-09 12:45:56 -0700 | [diff] [blame] | 692 | &prng, interval, fuzz); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 693 | return EvalStatus::kSucceeded; |
| 694 | } |
| 695 | |
| 696 | TimeDelta ChromeOSPolicy::FuzzedInterval(PRNG* prng, int interval, int fuzz) { |
Gilad Arnold | e121881 | 2014-05-07 12:21:36 -0700 | [diff] [blame] | 697 | DCHECK_GE(interval, 0); |
| 698 | DCHECK_GE(fuzz, 0); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 699 | int half_fuzz = fuzz / 2; |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 700 | // This guarantees the output interval is non negative. |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 701 | int interval_min = max(interval - half_fuzz, 0); |
Gilad Arnold | e121881 | 2014-05-07 12:21:36 -0700 | [diff] [blame] | 702 | int interval_max = interval + half_fuzz; |
| 703 | return TimeDelta::FromSeconds(prng->RandMinMax(interval_min, interval_max)); |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 704 | } |
| 705 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 706 | EvalStatus ChromeOSPolicy::UpdateBackoffAndDownloadUrl( |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 707 | EvaluationContext* ec, State* state, string* error, |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 708 | UpdateBackoffAndDownloadUrlResult* result, |
| 709 | const UpdateState& update_state) const { |
| 710 | // Sanity checks. |
| 711 | DCHECK_GE(update_state.download_errors_max, 0); |
| 712 | |
| 713 | // Set default result values. |
| 714 | result->do_increment_failures = false; |
| 715 | result->backoff_expiry = update_state.backoff_expiry; |
| 716 | result->url_idx = -1; |
| 717 | result->url_num_errors = 0; |
| 718 | |
| 719 | const bool* is_official_build_p = ec->GetValue( |
| 720 | state->system_provider()->var_is_official_build()); |
| 721 | bool is_official_build = (is_official_build_p ? *is_official_build_p : true); |
| 722 | |
| 723 | // Check whether backoff is enabled. |
| 724 | bool may_backoff = false; |
| 725 | if (update_state.is_backoff_disabled) { |
| 726 | LOG(INFO) << "Backoff disabled by Omaha."; |
| 727 | } else if (update_state.is_interactive) { |
| 728 | LOG(INFO) << "No backoff for interactive updates."; |
| 729 | } else if (update_state.is_delta_payload) { |
| 730 | LOG(INFO) << "No backoff for delta payloads."; |
| 731 | } else if (!is_official_build) { |
| 732 | LOG(INFO) << "No backoff for unofficial builds."; |
| 733 | } else { |
| 734 | may_backoff = true; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 735 | } |
| 736 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 737 | // If previous backoff still in effect, block. |
| 738 | if (may_backoff && !update_state.backoff_expiry.is_null() && |
| 739 | !ec->IsWallclockTimeGreaterThan(update_state.backoff_expiry)) { |
| 740 | LOG(INFO) << "Previous backoff has not expired, waiting."; |
| 741 | return EvalStatus::kAskMeAgainLater; |
| 742 | } |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 743 | |
| 744 | // Determine whether HTTP downloads are forbidden by policy. This only |
| 745 | // applies to official system builds; otherwise, HTTP is always enabled. |
| 746 | bool http_allowed = true; |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 747 | if (is_official_build) { |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 748 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
| 749 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 750 | dp_provider->var_device_policy_is_loaded()); |
| 751 | if (device_policy_is_loaded_p && *device_policy_is_loaded_p) { |
| 752 | const bool* policy_http_downloads_enabled_p = ec->GetValue( |
| 753 | dp_provider->var_http_downloads_enabled()); |
| 754 | http_allowed = (!policy_http_downloads_enabled_p || |
| 755 | *policy_http_downloads_enabled_p); |
| 756 | } |
| 757 | } |
| 758 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 759 | int url_idx = update_state.last_download_url_idx; |
| 760 | if (url_idx < 0) |
| 761 | url_idx = -1; |
| 762 | bool do_advance_url = false; |
| 763 | bool is_failure_occurred = false; |
| 764 | Time err_time; |
| 765 | |
| 766 | // Scan the relevant part of the download error log, tracking which URLs are |
| 767 | // being used, and accounting the number of errors for each URL. Note that |
| 768 | // this process may not traverse all errors provided, as it may decide to bail |
| 769 | // out midway depending on the particular errors exhibited, the number of |
| 770 | // failures allowed, etc. When this ends, |url_idx| will point to the last URL |
| 771 | // used (-1 if starting fresh), |do_advance_url| will determine whether the |
| 772 | // URL needs to be advanced, and |err_time| the point in time when the last |
| 773 | // reported error occurred. Additionally, if the error log indicates that an |
| 774 | // update attempt has failed (abnormal), then |is_failure_occurred| will be |
| 775 | // set to true. |
| 776 | const int num_urls = update_state.download_urls.size(); |
| 777 | int prev_url_idx = -1; |
| 778 | int url_num_errors = update_state.last_download_url_num_errors; |
| 779 | Time prev_err_time; |
| 780 | bool is_first = true; |
| 781 | for (const auto& err_tuple : update_state.download_errors) { |
| 782 | // Do some sanity checks. |
| 783 | int used_url_idx = get<0>(err_tuple); |
| 784 | if (is_first && url_idx >= 0 && used_url_idx != url_idx) { |
| 785 | LOG(WARNING) << "First URL in error log (" << used_url_idx |
| 786 | << ") not as expected (" << url_idx << ")"; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 787 | } |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 788 | is_first = false; |
| 789 | url_idx = used_url_idx; |
| 790 | if (url_idx < 0 || url_idx >= num_urls) { |
| 791 | LOG(ERROR) << "Download error log contains an invalid URL index (" |
| 792 | << url_idx << ")"; |
| 793 | return EvalStatus::kFailed; |
| 794 | } |
| 795 | err_time = get<2>(err_tuple); |
| 796 | if (!(prev_err_time.is_null() || err_time >= prev_err_time)) { |
| 797 | // TODO(garnold) Monotonicity cannot really be assumed when dealing with |
| 798 | // wallclock-based timestamps. However, we're making a simplifying |
| 799 | // assumption so as to keep the policy implementation straightforward, for |
| 800 | // now. In general, we should convert all timestamp handling in the |
| 801 | // UpdateManager to use monotonic time (instead of wallclock), including |
| 802 | // the computation of various expiration times (backoff, scattering, etc). |
| 803 | // The client will do whatever conversions necessary when |
| 804 | // persisting/retrieving these values across reboots. See chromium:408794. |
| 805 | LOG(ERROR) << "Download error timestamps not monotonically increasing."; |
| 806 | return EvalStatus::kFailed; |
| 807 | } |
| 808 | prev_err_time = err_time; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 809 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 810 | // Ignore errors that happened before the last known failed attempt. |
| 811 | if (!update_state.failures_last_updated.is_null() && |
| 812 | err_time <= update_state.failures_last_updated) |
| 813 | continue; |
| 814 | |
| 815 | if (prev_url_idx >= 0) { |
| 816 | if (url_idx < prev_url_idx) { |
| 817 | LOG(ERROR) << "The URLs in the download error log have wrapped around (" |
| 818 | << prev_url_idx << "->" << url_idx |
| 819 | << "). This should not have happened and means that there's " |
| 820 | "a bug. To be conservative, we record a failed attempt " |
| 821 | "(invalidating the rest of the error log) and resume " |
| 822 | "download from the first usable URL."; |
| 823 | url_idx = -1; |
| 824 | is_failure_occurred = true; |
| 825 | break; |
| 826 | } |
| 827 | |
| 828 | if (url_idx > prev_url_idx) { |
| 829 | url_num_errors = 0; |
| 830 | do_advance_url = false; |
| 831 | } |
| 832 | } |
| 833 | |
| 834 | if (HandleErrorCode(get<1>(err_tuple), &url_num_errors) || |
| 835 | url_num_errors > update_state.download_errors_max) |
| 836 | do_advance_url = true; |
| 837 | |
| 838 | prev_url_idx = url_idx; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 839 | } |
| 840 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 841 | // If required, advance to the next usable URL. If the URLs wraparound, we |
| 842 | // mark an update attempt failure. Also be sure to set the download error |
| 843 | // count to zero. |
| 844 | if (url_idx < 0 || do_advance_url) { |
| 845 | url_num_errors = 0; |
| 846 | int start_url_idx = -1; |
| 847 | do { |
| 848 | if (++url_idx == num_urls) { |
| 849 | url_idx = 0; |
| 850 | // We only mark failure if an actual advancing of a URL was required. |
| 851 | if (do_advance_url) |
| 852 | is_failure_occurred = true; |
| 853 | } |
| 854 | |
| 855 | if (start_url_idx < 0) |
| 856 | start_url_idx = url_idx; |
| 857 | else if (url_idx == start_url_idx) |
| 858 | url_idx = -1; // No usable URL. |
| 859 | } while (url_idx >= 0 && |
| 860 | !IsUrlUsable(update_state.download_urls[url_idx], http_allowed)); |
| 861 | } |
| 862 | |
| 863 | // If we have a download URL but a failure was observed, compute a new backoff |
| 864 | // expiry (if allowed). The backoff period is generally 2 ^ (num_failures - 1) |
| 865 | // days, bounded by the size of int and kAttemptBackoffMaxIntervalInDays, and |
| 866 | // fuzzed by kAttemptBackoffFuzzInHours hours. Backoff expiry is computed from |
| 867 | // the latest recorded time of error. |
| 868 | Time backoff_expiry; |
| 869 | if (url_idx >= 0 && is_failure_occurred && may_backoff) { |
| 870 | CHECK(!err_time.is_null()) |
| 871 | << "We must have an error timestamp if a failure occurred!"; |
| 872 | const uint64_t* seed = ec->GetValue(state->random_provider()->var_seed()); |
| 873 | POLICY_CHECK_VALUE_AND_FAIL(seed, error); |
| 874 | PRNG prng(*seed); |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 875 | int exp = min(update_state.num_failures, |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 876 | static_cast<int>(sizeof(int)) * 8 - 2); |
| 877 | TimeDelta backoff_interval = TimeDelta::FromDays( |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 878 | min(1 << exp, kAttemptBackoffMaxIntervalInDays)); |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 879 | TimeDelta backoff_fuzz = TimeDelta::FromHours(kAttemptBackoffFuzzInHours); |
| 880 | TimeDelta wait_period = FuzzedInterval(&prng, backoff_interval.InSeconds(), |
| 881 | backoff_fuzz.InSeconds()); |
| 882 | backoff_expiry = err_time + wait_period; |
| 883 | |
| 884 | // If the newly computed backoff already expired, nullify it. |
| 885 | if (ec->IsWallclockTimeGreaterThan(backoff_expiry)) |
| 886 | backoff_expiry = Time(); |
| 887 | } |
| 888 | |
| 889 | result->do_increment_failures = is_failure_occurred; |
| 890 | result->backoff_expiry = backoff_expiry; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 891 | result->url_idx = url_idx; |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 892 | result->url_num_errors = url_num_errors; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 893 | return EvalStatus::kSucceeded; |
| 894 | } |
| 895 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 896 | EvalStatus ChromeOSPolicy::UpdateScattering( |
| 897 | EvaluationContext* ec, |
| 898 | State* state, |
| 899 | string* error, |
| 900 | UpdateScatteringResult* result, |
| 901 | const UpdateState& update_state) const { |
| 902 | // Preconditions. These stem from the postconditions and usage contract. |
| 903 | DCHECK(update_state.scatter_wait_period >= kZeroInterval); |
| 904 | DCHECK_GE(update_state.scatter_check_threshold, 0); |
| 905 | |
| 906 | // Set default result values. |
| 907 | result->is_scattering = false; |
| 908 | result->wait_period = kZeroInterval; |
| 909 | result->check_threshold = 0; |
| 910 | |
| 911 | DevicePolicyProvider* const dp_provider = state->device_policy_provider(); |
| 912 | |
| 913 | // Ensure that a device policy is loaded. |
| 914 | const bool* device_policy_is_loaded_p = ec->GetValue( |
| 915 | dp_provider->var_device_policy_is_loaded()); |
| 916 | if (!(device_policy_is_loaded_p && *device_policy_is_loaded_p)) |
| 917 | return EvalStatus::kSucceeded; |
| 918 | |
| 919 | // Is scattering enabled by policy? |
| 920 | const TimeDelta* scatter_factor_p = ec->GetValue( |
| 921 | dp_provider->var_scatter_factor()); |
| 922 | if (!scatter_factor_p || *scatter_factor_p == kZeroInterval) |
| 923 | return EvalStatus::kSucceeded; |
| 924 | |
| 925 | // Obtain a pseudo-random number generator. |
| 926 | const uint64_t* seed = ec->GetValue(state->random_provider()->var_seed()); |
| 927 | POLICY_CHECK_VALUE_AND_FAIL(seed, error); |
| 928 | PRNG prng(*seed); |
| 929 | |
| 930 | // Step 1: Maintain the scattering wait period. |
| 931 | // |
| 932 | // If no wait period was previously determined, or it no longer fits in the |
| 933 | // 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] | 934 | TimeDelta wait_period = update_state.scatter_wait_period; |
| 935 | if (wait_period == kZeroInterval || wait_period > *scatter_factor_p) { |
| 936 | wait_period = TimeDelta::FromSeconds( |
| 937 | prng.RandMinMax(1, scatter_factor_p->InSeconds())); |
| 938 | } |
| 939 | |
Gilad Arnold | dc4bb26 | 2014-07-23 10:45:19 -0700 | [diff] [blame] | 940 | // If we surpassed the wait period or the max scatter period associated with |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 941 | // the update, then no wait is needed. |
| 942 | Time wait_expires = (update_state.first_seen + |
| 943 | min(wait_period, update_state.scatter_wait_period_max)); |
Gilad Arnold | a65fced | 2014-07-23 09:01:31 -0700 | [diff] [blame] | 944 | if (ec->IsWallclockTimeGreaterThan(wait_expires)) |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 945 | wait_period = kZeroInterval; |
| 946 | |
| 947 | // Step 2: Maintain the update check threshold count. |
| 948 | // |
| 949 | // If an update check threshold is not specified then generate a new |
| 950 | // one. |
| 951 | int check_threshold = update_state.scatter_check_threshold; |
| 952 | if (check_threshold == 0) { |
| 953 | check_threshold = prng.RandMinMax( |
| 954 | update_state.scatter_check_threshold_min, |
| 955 | update_state.scatter_check_threshold_max); |
| 956 | } |
| 957 | |
| 958 | // If the update check threshold is not within allowed range then nullify it. |
| 959 | // TODO(garnold) This is compliant with current logic found in |
| 960 | // OmahaRequestAction::IsUpdateCheckCountBasedWaitingSatisfied(). We may want |
| 961 | // to change it so that it behaves similarly to the wait period case, namely |
| 962 | // if the current value exceeds the maximum, we set a new one within range. |
| 963 | if (check_threshold > update_state.scatter_check_threshold_max) |
| 964 | check_threshold = 0; |
| 965 | |
| 966 | // If the update check threshold is non-zero and satisfied, then nullify it. |
| 967 | if (check_threshold > 0 && update_state.num_checks >= check_threshold) |
| 968 | check_threshold = 0; |
| 969 | |
| 970 | bool is_scattering = (wait_period != kZeroInterval || check_threshold); |
| 971 | EvalStatus ret = EvalStatus::kSucceeded; |
| 972 | if (is_scattering && wait_period == update_state.scatter_wait_period && |
| 973 | check_threshold == update_state.scatter_check_threshold) |
| 974 | ret = EvalStatus::kAskMeAgainLater; |
| 975 | result->is_scattering = is_scattering; |
| 976 | result->wait_period = wait_period; |
| 977 | result->check_threshold = check_threshold; |
| 978 | return ret; |
| 979 | } |
| 980 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 981 | } // namespace chromeos_update_manager |