Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2012 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 | // |
| 16 | |
| 17 | #include "update_engine/common_service.h" |
| 18 | |
| 19 | #include <set> |
| 20 | #include <string> |
| 21 | |
| 22 | #include <base/location.h> |
| 23 | #include <base/logging.h> |
| 24 | #include <base/strings/stringprintf.h> |
| 25 | #include <brillo/bind_lambda.h> |
| 26 | #include <brillo/message_loops/message_loop.h> |
| 27 | #include <brillo/strings/string_utils.h> |
| 28 | #include <policy/device_policy.h> |
| 29 | |
| 30 | #include "update_engine/common/clock_interface.h" |
| 31 | #include "update_engine/common/hardware_interface.h" |
| 32 | #include "update_engine/common/prefs.h" |
| 33 | #include "update_engine/common/utils.h" |
| 34 | #include "update_engine/connection_manager_interface.h" |
| 35 | #include "update_engine/omaha_request_params.h" |
Alex Deymo | b3fa53b | 2016-04-18 19:57:58 -0700 | [diff] [blame^] | 36 | #include "update_engine/omaha_utils.h" |
Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 37 | #include "update_engine/p2p_manager.h" |
Shuqian Zhao | 2997173 | 2016-02-05 11:29:32 -0800 | [diff] [blame] | 38 | #include "update_engine/payload_state_interface.h" |
Alex Deymo | b3fa53b | 2016-04-18 19:57:58 -0700 | [diff] [blame^] | 39 | #include "update_engine/update_attempter.h" |
Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 40 | |
| 41 | using base::StringPrintf; |
| 42 | using brillo::ErrorPtr; |
| 43 | using brillo::string_utils::ToString; |
| 44 | using std::set; |
| 45 | using std::string; |
| 46 | |
| 47 | namespace chromeos_update_engine { |
| 48 | |
| 49 | namespace { |
| 50 | // Log and set the error on the passed ErrorPtr. |
| 51 | void LogAndSetError(ErrorPtr* error, |
| 52 | const tracked_objects::Location& location, |
| 53 | const string& reason) { |
| 54 | brillo::Error::AddTo(error, |
| 55 | location, |
| 56 | UpdateEngineService::kErrorDomain, |
| 57 | UpdateEngineService::kErrorFailed, |
| 58 | reason); |
| 59 | LOG(ERROR) << "Sending Update Engine Failure: " << location.ToString() << ": " |
| 60 | << reason; |
| 61 | } |
| 62 | } // namespace |
| 63 | |
| 64 | const char* const UpdateEngineService::kErrorDomain = "update_engine"; |
| 65 | const char* const UpdateEngineService::kErrorFailed = |
| 66 | "org.chromium.UpdateEngine.Error.Failed"; |
| 67 | |
| 68 | UpdateEngineService::UpdateEngineService(SystemState* system_state) |
| 69 | : system_state_(system_state) { |
| 70 | } |
| 71 | |
| 72 | // org::chromium::UpdateEngineInterfaceInterface methods implementation. |
| 73 | |
| 74 | bool UpdateEngineService::AttemptUpdate(ErrorPtr* /* error */, |
| 75 | const string& in_app_version, |
| 76 | const string& in_omaha_url, |
| 77 | int32_t in_flags_as_int) { |
| 78 | AttemptUpdateFlags flags = static_cast<AttemptUpdateFlags>(in_flags_as_int); |
| 79 | bool interactive = !(flags & kAttemptUpdateFlagNonInteractive); |
| 80 | |
| 81 | LOG(INFO) << "Attempt update: app_version=\"" << in_app_version << "\" " |
| 82 | << "omaha_url=\"" << in_omaha_url << "\" " |
| 83 | << "flags=0x" << std::hex << flags << " " |
| 84 | << "interactive=" << (interactive ? "yes" : "no"); |
| 85 | system_state_->update_attempter()->CheckForUpdate( |
| 86 | in_app_version, in_omaha_url, interactive); |
| 87 | return true; |
| 88 | } |
| 89 | |
| 90 | bool UpdateEngineService::AttemptRollback(ErrorPtr* error, bool in_powerwash) { |
| 91 | LOG(INFO) << "Attempting rollback to non-active partitions."; |
| 92 | |
| 93 | if (!system_state_->update_attempter()->Rollback(in_powerwash)) { |
| 94 | // TODO(dgarrett): Give a more specific error code/reason. |
| 95 | LogAndSetError(error, FROM_HERE, "Rollback attempt failed."); |
| 96 | return false; |
| 97 | } |
| 98 | return true; |
| 99 | } |
| 100 | |
| 101 | bool UpdateEngineService::CanRollback(ErrorPtr* /* error */, |
| 102 | bool* out_can_rollback) { |
| 103 | bool can_rollback = system_state_->update_attempter()->CanRollback(); |
| 104 | LOG(INFO) << "Checking to see if we can rollback . Result: " << can_rollback; |
| 105 | *out_can_rollback = can_rollback; |
| 106 | return true; |
| 107 | } |
| 108 | |
| 109 | bool UpdateEngineService::ResetStatus(ErrorPtr* error) { |
| 110 | if (!system_state_->update_attempter()->ResetStatus()) { |
| 111 | // TODO(dgarrett): Give a more specific error code/reason. |
| 112 | LogAndSetError(error, FROM_HERE, "ResetStatus failed."); |
| 113 | return false; |
| 114 | } |
| 115 | return true; |
| 116 | } |
| 117 | |
| 118 | bool UpdateEngineService::GetStatus(ErrorPtr* error, |
| 119 | int64_t* out_last_checked_time, |
| 120 | double* out_progress, |
| 121 | string* out_current_operation, |
| 122 | string* out_new_version, |
| 123 | int64_t* out_new_size) { |
| 124 | if (!system_state_->update_attempter()->GetStatus(out_last_checked_time, |
| 125 | out_progress, |
| 126 | out_current_operation, |
| 127 | out_new_version, |
| 128 | out_new_size)) { |
| 129 | LogAndSetError(error, FROM_HERE, "GetStatus failed."); |
| 130 | return false; |
| 131 | } |
| 132 | return true; |
| 133 | } |
| 134 | |
| 135 | bool UpdateEngineService::RebootIfNeeded(ErrorPtr* error) { |
| 136 | if (!system_state_->update_attempter()->RebootIfNeeded()) { |
| 137 | // TODO(dgarrett): Give a more specific error code/reason. |
| 138 | LogAndSetError(error, FROM_HERE, "Reboot not needed, or attempt failed."); |
| 139 | return false; |
| 140 | } |
| 141 | return true; |
| 142 | } |
| 143 | |
| 144 | bool UpdateEngineService::SetChannel(ErrorPtr* error, |
| 145 | const string& in_target_channel, |
| 146 | bool in_is_powerwash_allowed) { |
| 147 | const policy::DevicePolicy* device_policy = system_state_->device_policy(); |
| 148 | |
| 149 | // The device_policy is loaded in a lazy way before an update check. Load it |
| 150 | // now from the libbrillo cache if it wasn't already loaded. |
| 151 | if (!device_policy) { |
| 152 | UpdateAttempter* update_attempter = system_state_->update_attempter(); |
| 153 | if (update_attempter) { |
| 154 | update_attempter->RefreshDevicePolicy(); |
| 155 | device_policy = system_state_->device_policy(); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | bool delegated = false; |
| 160 | if (device_policy && device_policy->GetReleaseChannelDelegated(&delegated) && |
| 161 | !delegated) { |
| 162 | LogAndSetError(error, |
| 163 | FROM_HERE, |
| 164 | "Cannot set target channel explicitly when channel " |
| 165 | "policy/settings is not delegated"); |
| 166 | return false; |
| 167 | } |
| 168 | |
| 169 | LOG(INFO) << "Setting destination channel to: " << in_target_channel; |
| 170 | string error_message; |
| 171 | if (!system_state_->request_params()->SetTargetChannel( |
| 172 | in_target_channel, in_is_powerwash_allowed, &error_message)) { |
| 173 | LogAndSetError(error, FROM_HERE, error_message); |
| 174 | return false; |
| 175 | } |
| 176 | // Update the weave state because updated the target channel. |
Alex Deymo | fa78f14 | 2016-01-26 21:36:16 -0800 | [diff] [blame] | 177 | system_state_->update_attempter()->BroadcastChannel(); |
Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 178 | return true; |
| 179 | } |
| 180 | |
| 181 | bool UpdateEngineService::GetChannel(ErrorPtr* /* error */, |
| 182 | bool in_get_current_channel, |
| 183 | string* out_channel) { |
| 184 | OmahaRequestParams* rp = system_state_->request_params(); |
| 185 | *out_channel = |
| 186 | (in_get_current_channel ? rp->current_channel() : rp->target_channel()); |
| 187 | return true; |
| 188 | } |
| 189 | |
| 190 | bool UpdateEngineService::SetP2PUpdatePermission(ErrorPtr* error, |
| 191 | bool in_enabled) { |
| 192 | PrefsInterface* prefs = system_state_->prefs(); |
| 193 | |
| 194 | if (!prefs->SetBoolean(kPrefsP2PEnabled, in_enabled)) { |
| 195 | LogAndSetError( |
| 196 | error, |
| 197 | FROM_HERE, |
| 198 | StringPrintf("Error setting the update via p2p permission to %s.", |
| 199 | ToString(in_enabled).c_str())); |
| 200 | return false; |
| 201 | } |
| 202 | return true; |
| 203 | } |
| 204 | |
| 205 | bool UpdateEngineService::GetP2PUpdatePermission(ErrorPtr* error, |
| 206 | bool* out_enabled) { |
| 207 | PrefsInterface* prefs = system_state_->prefs(); |
| 208 | |
| 209 | bool p2p_pref = false; // Default if no setting is present. |
| 210 | if (prefs->Exists(kPrefsP2PEnabled) && |
| 211 | !prefs->GetBoolean(kPrefsP2PEnabled, &p2p_pref)) { |
| 212 | LogAndSetError(error, FROM_HERE, "Error getting the P2PEnabled setting."); |
| 213 | return false; |
| 214 | } |
| 215 | |
| 216 | *out_enabled = p2p_pref; |
| 217 | return true; |
| 218 | } |
| 219 | |
| 220 | bool UpdateEngineService::SetUpdateOverCellularPermission(ErrorPtr* error, |
| 221 | bool in_allowed) { |
| 222 | set<string> allowed_types; |
| 223 | const policy::DevicePolicy* device_policy = system_state_->device_policy(); |
| 224 | |
| 225 | // The device_policy is loaded in a lazy way before an update check. Load it |
| 226 | // now from the libbrillo cache if it wasn't already loaded. |
| 227 | if (!device_policy) { |
| 228 | UpdateAttempter* update_attempter = system_state_->update_attempter(); |
| 229 | if (update_attempter) { |
| 230 | update_attempter->RefreshDevicePolicy(); |
| 231 | device_policy = system_state_->device_policy(); |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | // Check if this setting is allowed by the device policy. |
| 236 | if (device_policy && |
| 237 | device_policy->GetAllowedConnectionTypesForUpdate(&allowed_types)) { |
| 238 | LogAndSetError(error, |
| 239 | FROM_HERE, |
| 240 | "Ignoring the update over cellular setting since there's " |
| 241 | "a device policy enforcing this setting."); |
| 242 | return false; |
| 243 | } |
| 244 | |
| 245 | // If the policy wasn't loaded yet, then it is still OK to change the local |
| 246 | // setting because the policy will be checked again during the update check. |
| 247 | |
| 248 | PrefsInterface* prefs = system_state_->prefs(); |
| 249 | |
| 250 | if (!prefs->SetBoolean(kPrefsUpdateOverCellularPermission, in_allowed)) { |
| 251 | LogAndSetError(error, |
| 252 | FROM_HERE, |
| 253 | string("Error setting the update over cellular to ") + |
| 254 | (in_allowed ? "true" : "false")); |
| 255 | return false; |
| 256 | } |
| 257 | return true; |
| 258 | } |
| 259 | |
| 260 | bool UpdateEngineService::GetUpdateOverCellularPermission(ErrorPtr* /* error */, |
| 261 | bool* out_allowed) { |
| 262 | ConnectionManagerInterface* cm = system_state_->connection_manager(); |
| 263 | |
| 264 | // The device_policy is loaded in a lazy way before an update check and is |
| 265 | // used to determine if an update is allowed over cellular. Load the device |
| 266 | // policy now from the libbrillo cache if it wasn't already loaded. |
| 267 | if (!system_state_->device_policy()) { |
| 268 | UpdateAttempter* update_attempter = system_state_->update_attempter(); |
| 269 | if (update_attempter) |
| 270 | update_attempter->RefreshDevicePolicy(); |
| 271 | } |
| 272 | |
| 273 | // Return the current setting based on the same logic used while checking for |
| 274 | // updates. A log message could be printed as the result of this test. |
| 275 | LOG(INFO) << "Checking if updates over cellular networks are allowed:"; |
| 276 | *out_allowed = cm->IsUpdateAllowedOver( |
| 277 | chromeos_update_engine::NetworkConnectionType::kCellular, |
| 278 | chromeos_update_engine::NetworkTethering::kUnknown); |
| 279 | return true; |
| 280 | } |
| 281 | |
| 282 | bool UpdateEngineService::GetDurationSinceUpdate(ErrorPtr* error, |
| 283 | int64_t* out_usec_wallclock) { |
| 284 | base::Time time; |
| 285 | if (!system_state_->update_attempter()->GetBootTimeAtUpdate(&time)) { |
| 286 | LogAndSetError(error, FROM_HERE, "No pending update."); |
| 287 | return false; |
| 288 | } |
| 289 | |
| 290 | ClockInterface* clock = system_state_->clock(); |
| 291 | *out_usec_wallclock = (clock->GetBootTime() - time).InMicroseconds(); |
| 292 | return true; |
| 293 | } |
| 294 | |
| 295 | bool UpdateEngineService::GetPrevVersion(ErrorPtr* /* error */, |
| 296 | string* out_prev_version) { |
| 297 | *out_prev_version = system_state_->update_attempter()->GetPrevVersion(); |
| 298 | return true; |
| 299 | } |
| 300 | |
| 301 | bool UpdateEngineService::GetRollbackPartition( |
| 302 | ErrorPtr* /* error */, string* out_rollback_partition_name) { |
| 303 | BootControlInterface::Slot rollback_slot = |
| 304 | system_state_->update_attempter()->GetRollbackSlot(); |
| 305 | |
| 306 | if (rollback_slot == BootControlInterface::kInvalidSlot) { |
| 307 | out_rollback_partition_name->clear(); |
| 308 | return true; |
| 309 | } |
| 310 | |
| 311 | string name; |
| 312 | if (!system_state_->boot_control()->GetPartitionDevice( |
| 313 | "KERNEL", rollback_slot, &name)) { |
| 314 | LOG(ERROR) << "Invalid rollback device"; |
| 315 | return false; |
| 316 | } |
| 317 | |
| 318 | LOG(INFO) << "Getting rollback partition name. Result: " << name; |
| 319 | *out_rollback_partition_name = name; |
| 320 | return true; |
| 321 | } |
| 322 | |
Shuqian Zhao | 2997173 | 2016-02-05 11:29:32 -0800 | [diff] [blame] | 323 | bool UpdateEngineService::GetLastAttemptError(ErrorPtr* /* error */, |
| 324 | int32_t* out_last_attempt_error) { |
| 325 | ErrorCode error_code = system_state_->payload_state()->GetAttemptErrorCode(); |
| 326 | *out_last_attempt_error = static_cast<int>(error_code); |
| 327 | return true; |
| 328 | } |
Alex Deymo | b3fa53b | 2016-04-18 19:57:58 -0700 | [diff] [blame^] | 329 | |
| 330 | bool UpdateEngineService::GetEolStatus(ErrorPtr* error, |
| 331 | int32_t* out_eol_status) { |
| 332 | PrefsInterface* prefs = system_state_->prefs(); |
| 333 | |
| 334 | string str_eol_status; |
| 335 | if (prefs->Exists(kPrefsOmahaEolStatus) && |
| 336 | !prefs->GetString(kPrefsOmahaEolStatus, &str_eol_status)) { |
| 337 | LogAndSetError(error, FROM_HERE, "Error getting the end-of-life status."); |
| 338 | return false; |
| 339 | } |
| 340 | |
| 341 | // StringToEolStatus will return kSupported for invalid values. |
| 342 | *out_eol_status = static_cast<int32_t>(StringToEolStatus(str_eol_status)); |
| 343 | return true; |
| 344 | } |
| 345 | |
Casey Dahlin | a93cd53 | 2016-01-14 16:55:11 -0800 | [diff] [blame] | 346 | } // namespace chromeos_update_engine |