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