blob: ee890e127d2e2b25e16577e6cc06f2ead2e837b2 [file] [log] [blame]
Casey Dahlina93cd532016-01-14 16:55:11 -08001//
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
Casey Dahlina93cd532016-01-14 16:55:11 -080019#include <string>
20
21#include <base/location.h>
22#include <base/logging.h>
23#include <base/strings/stringprintf.h>
24#include <brillo/bind_lambda.h>
25#include <brillo/message_loops/message_loop.h>
26#include <brillo/strings/string_utils.h>
27#include <policy/device_policy.h>
28
29#include "update_engine/common/clock_interface.h"
30#include "update_engine/common/hardware_interface.h"
31#include "update_engine/common/prefs.h"
32#include "update_engine/common/utils.h"
33#include "update_engine/connection_manager_interface.h"
34#include "update_engine/omaha_request_params.h"
Alex Deymob3fa53b2016-04-18 19:57:58 -070035#include "update_engine/omaha_utils.h"
Casey Dahlina93cd532016-01-14 16:55:11 -080036#include "update_engine/p2p_manager.h"
Shuqian Zhao29971732016-02-05 11:29:32 -080037#include "update_engine/payload_state_interface.h"
Alex Deymob3fa53b2016-04-18 19:57:58 -070038#include "update_engine/update_attempter.h"
Casey Dahlina93cd532016-01-14 16:55:11 -080039
40using base::StringPrintf;
41using brillo::ErrorPtr;
42using brillo::string_utils::ToString;
Casey Dahlina93cd532016-01-14 16:55:11 -080043using std::string;
44
45namespace chromeos_update_engine {
46
47namespace {
48// Log and set the error on the passed ErrorPtr.
49void 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
62const char* const UpdateEngineService::kErrorDomain = "update_engine";
63const char* const UpdateEngineService::kErrorFailed =
64 "org.chromium.UpdateEngine.Error.Failed";
65
66UpdateEngineService::UpdateEngineService(SystemState* system_state)
67 : system_state_(system_state) {
68}
69
70// org::chromium::UpdateEngineInterfaceInterface methods implementation.
71
72bool 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
88bool 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
99bool 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
107bool 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
116bool 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
133bool 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
142bool 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 }
Casey Dahlina93cd532016-01-14 16:55:11 -0800174 return true;
175}
176
177bool UpdateEngineService::GetChannel(ErrorPtr* /* error */,
178 bool in_get_current_channel,
179 string* out_channel) {
180 OmahaRequestParams* rp = system_state_->request_params();
181 *out_channel =
182 (in_get_current_channel ? rp->current_channel() : rp->target_channel());
183 return true;
184}
185
Alex Deymo5b5fa8b2016-10-06 15:40:49 -0700186bool UpdateEngineService::SetCohortHint(ErrorPtr* error,
187 string in_cohort_hint) {
188 PrefsInterface* prefs = system_state_->prefs();
189
190 // It is ok to override the cohort hint with an invalid value since it is
191 // stored in stateful partition. The code reading it should sanitize it
192 // anyway.
193 if (!prefs->SetString(kPrefsOmahaCohortHint, in_cohort_hint)) {
194 LogAndSetError(
195 error,
196 FROM_HERE,
197 StringPrintf("Error setting the cohort hint value to \"%s\".",
198 in_cohort_hint.c_str()));
199 return false;
200 }
201 return true;
202}
203
204bool UpdateEngineService::GetCohortHint(ErrorPtr* error,
205 string* out_cohort_hint) {
206 PrefsInterface* prefs = system_state_->prefs();
207
208 *out_cohort_hint = "";
209 if (prefs->Exists(kPrefsOmahaCohortHint) &&
210 !prefs->GetString(kPrefsOmahaCohortHint, out_cohort_hint)) {
211 LogAndSetError(error, FROM_HERE, "Error getting the cohort hint.");
212 return false;
213 }
214 return true;
215}
216
Casey Dahlina93cd532016-01-14 16:55:11 -0800217bool UpdateEngineService::SetP2PUpdatePermission(ErrorPtr* error,
218 bool in_enabled) {
219 PrefsInterface* prefs = system_state_->prefs();
220
221 if (!prefs->SetBoolean(kPrefsP2PEnabled, in_enabled)) {
222 LogAndSetError(
223 error,
224 FROM_HERE,
225 StringPrintf("Error setting the update via p2p permission to %s.",
226 ToString(in_enabled).c_str()));
227 return false;
228 }
229 return true;
230}
231
232bool UpdateEngineService::GetP2PUpdatePermission(ErrorPtr* error,
233 bool* out_enabled) {
234 PrefsInterface* prefs = system_state_->prefs();
235
236 bool p2p_pref = false; // Default if no setting is present.
237 if (prefs->Exists(kPrefsP2PEnabled) &&
238 !prefs->GetBoolean(kPrefsP2PEnabled, &p2p_pref)) {
239 LogAndSetError(error, FROM_HERE, "Error getting the P2PEnabled setting.");
240 return false;
241 }
242
243 *out_enabled = p2p_pref;
244 return true;
245}
246
247bool UpdateEngineService::SetUpdateOverCellularPermission(ErrorPtr* error,
248 bool in_allowed) {
Weidong Guo4b0d6032017-04-17 10:08:38 -0700249 ConnectionManagerInterface* connection_manager =
250 system_state_->connection_manager();
Casey Dahlina93cd532016-01-14 16:55:11 -0800251
252 // Check if this setting is allowed by the device policy.
Weidong Guo4b0d6032017-04-17 10:08:38 -0700253 if (connection_manager->IsAllowedConnectionTypesForUpdateSet()) {
254 LogAndSetError(error, FROM_HERE,
Casey Dahlina93cd532016-01-14 16:55:11 -0800255 "Ignoring the update over cellular setting since there's "
256 "a device policy enforcing this setting.");
257 return false;
258 }
259
260 // If the policy wasn't loaded yet, then it is still OK to change the local
261 // setting because the policy will be checked again during the update check.
262
263 PrefsInterface* prefs = system_state_->prefs();
264
Weidong Guo4b0d6032017-04-17 10:08:38 -0700265 if (!prefs ||
266 !prefs->SetBoolean(kPrefsUpdateOverCellularPermission, in_allowed)) {
267 LogAndSetError(error, FROM_HERE,
Casey Dahlina93cd532016-01-14 16:55:11 -0800268 string("Error setting the update over cellular to ") +
269 (in_allowed ? "true" : "false"));
270 return false;
271 }
272 return true;
273}
274
Weidong Guo4b0d6032017-04-17 10:08:38 -0700275bool UpdateEngineService::SetUpdateOverCellularTarget(
276 brillo::ErrorPtr* error, const std::string &target_version,
277 int64_t target_size) {
278 ConnectionManagerInterface* connection_manager =
279 system_state_->connection_manager();
Casey Dahlina93cd532016-01-14 16:55:11 -0800280
Weidong Guo4b0d6032017-04-17 10:08:38 -0700281 // Check if this setting is allowed by the device policy.
282 if (connection_manager->IsAllowedConnectionTypesForUpdateSet()) {
283 LogAndSetError(error, FROM_HERE,
284 "Ignoring the update over cellular setting since there's "
285 "a device policy enforcing this setting.");
286 return false;
Casey Dahlina93cd532016-01-14 16:55:11 -0800287 }
288
Weidong Guo4b0d6032017-04-17 10:08:38 -0700289 // If the policy wasn't loaded yet, then it is still OK to change the local
290 // setting because the policy will be checked again during the update check.
291
292 PrefsInterface* prefs = system_state_->prefs();
293
294 if (!prefs ||
295 !prefs->SetString(kPrefsUpdateOverCellularTargetVersion,
296 target_version) ||
297 !prefs->SetInt64(kPrefsUpdateOverCellularTargetSize, target_size)) {
298 LogAndSetError(error, FROM_HERE,
299 "Error setting the target for update over cellular.");
300 return false;
301 }
302 return true;
303}
304
305bool UpdateEngineService::GetUpdateOverCellularPermission(ErrorPtr* error,
306 bool* out_allowed) {
307 ConnectionManagerInterface* connection_manager =
308 system_state_->connection_manager();
309
310 if (connection_manager->IsAllowedConnectionTypesForUpdateSet()) {
311 // We have device policy, so ignore the user preferences.
312 *out_allowed = connection_manager->IsUpdateAllowedOver(
313 ConnectionType::kCellular, ConnectionTethering::kUnknown);
314 } else {
315 PrefsInterface* prefs = system_state_->prefs();
316
317 if (!prefs || !prefs->Exists(kPrefsUpdateOverCellularPermission)) {
318 // Update is not allowed as user preference is not set or not available.
319 *out_allowed = false;
320 return true;
321 }
322
323 bool is_allowed;
324
325 if (!prefs->GetBoolean(kPrefsUpdateOverCellularPermission, &is_allowed)) {
326 LogAndSetError(error, FROM_HERE,
327 "Error getting the update over cellular preference.");
328 return false;
329 }
330 *out_allowed = is_allowed;
331 }
Casey Dahlina93cd532016-01-14 16:55:11 -0800332 return true;
333}
334
335bool UpdateEngineService::GetDurationSinceUpdate(ErrorPtr* error,
336 int64_t* out_usec_wallclock) {
337 base::Time time;
338 if (!system_state_->update_attempter()->GetBootTimeAtUpdate(&time)) {
339 LogAndSetError(error, FROM_HERE, "No pending update.");
340 return false;
341 }
342
343 ClockInterface* clock = system_state_->clock();
344 *out_usec_wallclock = (clock->GetBootTime() - time).InMicroseconds();
345 return true;
346}
347
348bool UpdateEngineService::GetPrevVersion(ErrorPtr* /* error */,
349 string* out_prev_version) {
350 *out_prev_version = system_state_->update_attempter()->GetPrevVersion();
351 return true;
352}
353
354bool UpdateEngineService::GetRollbackPartition(
355 ErrorPtr* /* error */, string* out_rollback_partition_name) {
356 BootControlInterface::Slot rollback_slot =
357 system_state_->update_attempter()->GetRollbackSlot();
358
359 if (rollback_slot == BootControlInterface::kInvalidSlot) {
360 out_rollback_partition_name->clear();
361 return true;
362 }
363
364 string name;
365 if (!system_state_->boot_control()->GetPartitionDevice(
366 "KERNEL", rollback_slot, &name)) {
367 LOG(ERROR) << "Invalid rollback device";
368 return false;
369 }
370
371 LOG(INFO) << "Getting rollback partition name. Result: " << name;
372 *out_rollback_partition_name = name;
373 return true;
374}
375
Shuqian Zhao29971732016-02-05 11:29:32 -0800376bool UpdateEngineService::GetLastAttemptError(ErrorPtr* /* error */,
377 int32_t* out_last_attempt_error) {
378 ErrorCode error_code = system_state_->payload_state()->GetAttemptErrorCode();
379 *out_last_attempt_error = static_cast<int>(error_code);
380 return true;
381}
Alex Deymob3fa53b2016-04-18 19:57:58 -0700382
383bool UpdateEngineService::GetEolStatus(ErrorPtr* error,
384 int32_t* out_eol_status) {
385 PrefsInterface* prefs = system_state_->prefs();
386
387 string str_eol_status;
388 if (prefs->Exists(kPrefsOmahaEolStatus) &&
389 !prefs->GetString(kPrefsOmahaEolStatus, &str_eol_status)) {
390 LogAndSetError(error, FROM_HERE, "Error getting the end-of-life status.");
391 return false;
392 }
393
394 // StringToEolStatus will return kSupported for invalid values.
395 *out_eol_status = static_cast<int32_t>(StringToEolStatus(str_eol_status));
396 return true;
397}
398
Casey Dahlina93cd532016-01-14 16:55:11 -0800399} // namespace chromeos_update_engine