blob: 520d9c9eb6f0b58d9f8902c2602d0c255fce08e8 [file] [log] [blame]
Jay Srinivasan480ddfa2012-06-01 19:15:26 -07001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "update_engine/update_attempter.h"
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07006
Alex Vakulenko59e253e2014-02-24 10:40:21 -08007#include <algorithm>
Alex Deymobc91a272014-05-20 16:45:33 -07008#include <memory>
Alex Vakulenkod2779df2014-06-16 13:19:00 -07009#include <set>
Alex Deymobc91a272014-05-20 16:45:33 -070010#include <string>
11#include <vector>
Alex Vakulenkod2779df2014-06-16 13:19:00 -070012#include <utility>
Darin Petkov9d65b7b2010-07-20 09:13:01 -070013
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -070014#include <base/file_util.h>
David Zeuthen3c55abd2013-10-14 12:48:03 -070015#include <base/logging.h>
Andrew de los Reyes45168102010-11-22 11:13:50 -080016#include <base/rand_util.h>
Alex Vakulenko75039d72014-03-25 12:36:28 -070017#include <base/strings/stringprintf.h>
Daniel Eratc1f07c32013-10-10 10:18:02 -070018#include <chromeos/dbus/service_constants.h>
David Zeuthen3c55abd2013-10-14 12:48:03 -070019
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070020#include <glib.h>
Darin Petkov1023a602010-08-30 13:47:51 -070021#include <metrics/metrics_library.h>
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +020022#include <policy/device_policy.h>
Alex Deymobc91a272014-05-20 16:45:33 -070023#include <policy/libpolicy.h>
Darin Petkov9d65b7b2010-07-20 09:13:01 -070024
Bruno Rocha7f9aea22011-09-12 14:31:24 -070025#include "update_engine/certificate_checker.h"
David Zeuthen985b1122013-10-09 12:13:15 -070026#include "update_engine/clock_interface.h"
Jay Srinivasand29695d2013-04-08 15:08:05 -070027#include "update_engine/constants.h"
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070028#include "update_engine/dbus_service.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070029#include "update_engine/download_action.h"
30#include "update_engine/filesystem_copier_action.h"
Alex Deymo42432912013-07-12 20:21:15 -070031#include "update_engine/hardware_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070032#include "update_engine/libcurl_http_fetcher.h"
David Zeuthen33bae492014-02-25 16:16:18 -080033#include "update_engine/metrics.h"
Andrew de los Reyes819fef22010-12-17 11:33:58 -080034#include "update_engine/multi_range_http_fetcher.h"
Darin Petkov6a5b3222010-07-13 14:55:28 -070035#include "update_engine/omaha_request_action.h"
Darin Petkova4a8a8c2010-07-15 22:21:12 -070036#include "update_engine/omaha_request_params.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070037#include "update_engine/omaha_response_handler_action.h"
David Zeuthen8f191b22013-08-06 12:27:50 -070038#include "update_engine/p2p_manager.h"
Jay Srinivasan55f50c22013-01-10 19:24:35 -080039#include "update_engine/payload_state_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070040#include "update_engine/postinstall_runner_action.h"
Darin Petkov36275772010-10-01 11:40:57 -070041#include "update_engine/prefs_interface.h"
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -070042#include "update_engine/subprocess.h"
Jay Srinivasan43488792012-06-19 00:25:31 -070043#include "update_engine/system_state.h"
Darin Petkov1023a602010-08-30 13:47:51 -070044#include "update_engine/update_check_scheduler.h"
J. Richard Barnette30842932013-10-28 15:04:23 -070045#include "update_engine/utils.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070046
Alex Deymobc91a272014-05-20 16:45:33 -070047using base::StringPrintf;
David Zeuthen3c55abd2013-10-14 12:48:03 -070048using base::Time;
Darin Petkovaf183052010-08-23 12:07:13 -070049using base::TimeDelta;
50using base::TimeTicks;
Andrew de los Reyes21816e12011-04-07 14:18:56 -070051using google::protobuf::NewPermanentCallback;
Darin Petkov9b230572010-10-08 10:20:09 -070052using std::make_pair;
Jay Srinivasan43488792012-06-19 00:25:31 -070053using std::set;
Alex Deymobc91a272014-05-20 16:45:33 -070054using std::shared_ptr;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070055using std::string;
56using std::vector;
57
58namespace chromeos_update_engine {
59
Darin Petkov36275772010-10-01 11:40:57 -070060const int UpdateAttempter::kMaxDeltaUpdateFailures = 3;
61
Andrew de los Reyes45168102010-11-22 11:13:50 -080062namespace {
63const int kMaxConsecutiveObeyProxyRequests = 20;
Gilad Arnold70e476e2013-07-30 16:01:13 -070064
65const char* kUpdateCompletedMarker =
66 "/var/run/update_engine_autoupdate_completed";
Alex Vakulenkod2779df2014-06-16 13:19:00 -070067} // namespace
Andrew de los Reyes45168102010-11-22 11:13:50 -080068
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070069const char* UpdateStatusToString(UpdateStatus status) {
70 switch (status) {
71 case UPDATE_STATUS_IDLE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070072 return update_engine::kUpdateStatusIdle;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070073 case UPDATE_STATUS_CHECKING_FOR_UPDATE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070074 return update_engine::kUpdateStatusCheckingForUpdate;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070075 case UPDATE_STATUS_UPDATE_AVAILABLE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070076 return update_engine::kUpdateStatusUpdateAvailable;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070077 case UPDATE_STATUS_DOWNLOADING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070078 return update_engine::kUpdateStatusDownloading;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070079 case UPDATE_STATUS_VERIFYING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070080 return update_engine::kUpdateStatusVerifying;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070081 case UPDATE_STATUS_FINALIZING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070082 return update_engine::kUpdateStatusFinalizing;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070083 case UPDATE_STATUS_UPDATED_NEED_REBOOT:
Daniel Eratc1f07c32013-10-10 10:18:02 -070084 return update_engine::kUpdateStatusUpdatedNeedReboot;
Darin Petkov09f96c32010-07-20 09:24:57 -070085 case UPDATE_STATUS_REPORTING_ERROR_EVENT:
Daniel Eratc1f07c32013-10-10 10:18:02 -070086 return update_engine::kUpdateStatusReportingErrorEvent;
Chris Sosad317e402013-06-12 13:47:09 -070087 case UPDATE_STATUS_ATTEMPTING_ROLLBACK:
Daniel Eratc1f07c32013-10-10 10:18:02 -070088 return update_engine::kUpdateStatusAttemptingRollback;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070089 default:
90 return "unknown status";
91 }
92}
93
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -070094// Turns a generic ErrorCode::kError to a generic error code specific
95// to |action| (e.g., ErrorCode::kFilesystemCopierError). If |code| is
96// not ErrorCode::kError, or the action is not matched, returns |code|
Darin Petkov777dbfa2010-07-20 15:03:37 -070097// unchanged.
David Zeuthena99981f2013-04-29 13:42:47 -070098ErrorCode GetErrorCodeForAction(AbstractAction* action,
99 ErrorCode code) {
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700100 if (code != ErrorCode::kError)
Darin Petkov777dbfa2010-07-20 15:03:37 -0700101 return code;
102
103 const string type = action->Type();
104 if (type == OmahaRequestAction::StaticType())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700105 return ErrorCode::kOmahaRequestError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700106 if (type == OmahaResponseHandlerAction::StaticType())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700107 return ErrorCode::kOmahaResponseHandlerError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700108 if (type == FilesystemCopierAction::StaticType())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700109 return ErrorCode::kFilesystemCopierError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700110 if (type == PostinstallRunnerAction::StaticType())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700111 return ErrorCode::kPostinstallRunnerError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700112
113 return code;
114}
115
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800116UpdateAttempter::UpdateAttempter(SystemState* system_state,
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -0800117 DBusWrapperInterface* dbus_iface)
Gilad Arnold1f847232014-04-07 12:07:49 -0700118 : UpdateAttempter(system_state, dbus_iface, kUpdateCompletedMarker) {}
Gilad Arnold70e476e2013-07-30 16:01:13 -0700119
120UpdateAttempter::UpdateAttempter(SystemState* system_state,
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -0800121 DBusWrapperInterface* dbus_iface,
Gilad Arnold70e476e2013-07-30 16:01:13 -0700122 const std::string& update_completed_marker)
Gilad Arnold1f847232014-04-07 12:07:49 -0700123 : processor_(new ActionProcessor()),
124 system_state_(system_state),
125 chrome_proxy_resolver_(dbus_iface),
126 update_completed_marker_(update_completed_marker) {
Gilad Arnold70e476e2013-07-30 16:01:13 -0700127 if (!update_completed_marker_.empty() &&
128 utils::FileExists(update_completed_marker_.c_str()))
Darin Petkovc6c135c2010-08-11 13:36:18 -0700129 status_ = UPDATE_STATUS_UPDATED_NEED_REBOOT;
Gilad Arnold70e476e2013-07-30 16:01:13 -0700130 else
131 status_ = UPDATE_STATUS_IDLE;
Darin Petkovc6c135c2010-08-11 13:36:18 -0700132}
133
Gilad Arnold1f847232014-04-07 12:07:49 -0700134void UpdateAttempter::Init() {
135 // Pulling from the SystemState can only be done after construction, since
136 // this is an aggregate of various objects (such as the UpdateAttempter),
137 // which requires them all to be constructed prior to it being used.
138 prefs_ = system_state_->prefs();
139 omaha_request_params_ = system_state_->request_params();
140}
141
Darin Petkovc6c135c2010-08-11 13:36:18 -0700142UpdateAttempter::~UpdateAttempter() {
Chris Sosa4f8ee272012-11-30 13:01:54 -0800143 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700144}
145
David Zeuthen985b1122013-10-09 12:13:15 -0700146bool UpdateAttempter::CheckAndReportDailyMetrics() {
147 int64_t stored_value;
148 base::Time now = system_state_->clock()->GetWallclockTime();
149 if (system_state_->prefs()->Exists(kPrefsDailyMetricsLastReportedAt) &&
150 system_state_->prefs()->GetInt64(kPrefsDailyMetricsLastReportedAt,
151 &stored_value)) {
152 base::Time last_reported_at = base::Time::FromInternalValue(stored_value);
153 base::TimeDelta time_reported_since = now - last_reported_at;
154 if (time_reported_since.InSeconds() < 0) {
155 LOG(WARNING) << "Last reported daily metrics "
156 << utils::FormatTimeDelta(time_reported_since) << " ago "
157 << "which is negative. Either the system clock is wrong or "
158 << "the kPrefsDailyMetricsLastReportedAt state variable "
159 << "is wrong.";
160 // In this case, report daily metrics to reset.
161 } else {
162 if (time_reported_since.InSeconds() < 24*60*60) {
163 LOG(INFO) << "Last reported daily metrics "
164 << utils::FormatTimeDelta(time_reported_since) << " ago.";
165 return false;
166 }
167 LOG(INFO) << "Last reported daily metrics "
168 << utils::FormatTimeDelta(time_reported_since) << " ago, "
169 << "which is more than 24 hours ago.";
170 }
171 }
172
173 LOG(INFO) << "Reporting daily metrics.";
174 system_state_->prefs()->SetInt64(kPrefsDailyMetricsLastReportedAt,
175 now.ToInternalValue());
176
177 ReportOSAge();
178
179 return true;
180}
181
182void UpdateAttempter::ReportOSAge() {
183 struct stat sb;
184
185 if (system_state_ == NULL)
186 return;
187
188 if (stat("/etc/lsb-release", &sb) != 0) {
189 PLOG(ERROR) << "Error getting file status for /etc/lsb-release";
190 return;
191 }
192
193 base::Time lsb_release_timestamp = utils::TimeFromStructTimespec(&sb.st_ctim);
194 base::Time now = system_state_->clock()->GetWallclockTime();
195 base::TimeDelta age = now - lsb_release_timestamp;
196 if (age.InSeconds() < 0) {
197 LOG(ERROR) << "The OS age (" << utils::FormatTimeDelta(age)
198 << ") is negative. Maybe the clock is wrong?";
199 return;
200 }
201
202 std::string metric = "Installer.OSAgeDays";
203 LOG(INFO) << "Uploading " << utils::FormatTimeDelta(age)
204 << " for metric " << metric;
205 system_state_->metrics_lib()->SendToUMA(
206 metric,
207 static_cast<int>(age.InDays()),
208 0, // min: 0 days
209 6*30, // max: 6 months (approx)
210 kNumDefaultUmaBuckets);
David Zeuthen33bae492014-02-25 16:16:18 -0800211
212 metrics::ReportDailyMetrics(system_state_, age);
David Zeuthen985b1122013-10-09 12:13:15 -0700213}
214
Gilad Arnold28e2f392012-02-09 14:36:46 -0800215void UpdateAttempter::Update(const string& app_version,
216 const string& omaha_url,
Andrew de los Reyesfb2f4612011-06-09 18:21:49 -0700217 bool obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700218 bool interactive) {
David Zeuthen985b1122013-10-09 12:13:15 -0700219 // This is called at least every 4 hours (see the constant
220 // UpdateCheckScheduler::kTimeoutMaxBackoffInterval) so it's
221 // appropriate to use as a hook for reporting daily metrics.
222 CheckAndReportDailyMetrics();
223
Andrew de los Reyes000d8952011-03-02 15:21:14 -0800224 chrome_proxy_resolver_.Init();
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700225 fake_update_success_ = false;
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700226 if (status_ == UPDATE_STATUS_UPDATED_NEED_REBOOT) {
Thieu Le116fda32011-04-19 11:01:54 -0700227 // Although we have applied an update, we still want to ping Omaha
228 // to ensure the number of active statistics is accurate.
David Zeuthen33bae492014-02-25 16:16:18 -0800229 //
230 // Also convey to the UpdateEngine.Check.Result metric that we're
231 // not performing an update check because of this.
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700232 LOG(INFO) << "Not updating b/c we already updated and we're waiting for "
Thieu Le116fda32011-04-19 11:01:54 -0700233 << "reboot, we'll ping Omaha instead";
David Zeuthen33bae492014-02-25 16:16:18 -0800234 metrics::ReportUpdateCheckMetrics(system_state_,
235 metrics::CheckResult::kRebootPending,
236 metrics::CheckReaction::kUnset,
237 metrics::DownloadErrorCode::kUnset);
Thieu Le116fda32011-04-19 11:01:54 -0700238 PingOmaha();
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700239 return;
240 }
241 if (status_ != UPDATE_STATUS_IDLE) {
242 // Update in progress. Do nothing
243 return;
244 }
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700245
246 if (!CalculateUpdateParams(app_version,
247 omaha_url,
248 obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700249 interactive)) {
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700250 return;
251 }
252
253 BuildUpdateActions(interactive);
254
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700255 SetStatusAndNotify(UPDATE_STATUS_CHECKING_FOR_UPDATE);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700256
257 // Just in case we didn't update boot flags yet, make sure they're updated
258 // before any update processing starts.
259 start_action_processor_ = true;
260 UpdateBootFlags();
261}
262
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700263void UpdateAttempter::RefreshDevicePolicy() {
264 // Lazy initialize the policy provider, or reload the latest policy data.
265 if (!policy_provider_.get())
266 policy_provider_.reset(new policy::PolicyProvider());
267 policy_provider_->Reload();
268
269 const policy::DevicePolicy* device_policy = NULL;
270 if (policy_provider_->device_policy_is_loaded())
271 device_policy = &policy_provider_->GetDevicePolicy();
272
273 if (device_policy)
274 LOG(INFO) << "Device policies/settings present";
275 else
276 LOG(INFO) << "No device policies/settings present.";
277
278 system_state_->set_device_policy(device_policy);
David Zeuthen92d9c8b2013-09-11 10:58:11 -0700279 system_state_->p2p_manager()->SetDevicePolicy(device_policy);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700280}
281
David Zeuthen8f191b22013-08-06 12:27:50 -0700282void UpdateAttempter::CalculateP2PParams(bool interactive) {
283 bool use_p2p_for_downloading = false;
284 bool use_p2p_for_sharing = false;
285
286 // Never use p2p for downloading in interactive checks unless the
287 // developer has opted in for it via a marker file.
288 //
289 // (Why would a developer want to opt in? If he's working on the
290 // update_engine or p2p codebases so he can actually test his
291 // code.).
292
293 if (system_state_ != NULL) {
294 if (!system_state_->p2p_manager()->IsP2PEnabled()) {
295 LOG(INFO) << "p2p is not enabled - disallowing p2p for both"
296 << " downloading and sharing.";
297 } else {
298 // Allow p2p for sharing, even in interactive checks.
299 use_p2p_for_sharing = true;
300 if (!interactive) {
301 LOG(INFO) << "Non-interactive check - allowing p2p for downloading";
302 use_p2p_for_downloading = true;
303 } else {
David Zeuthen052d2902013-09-06 11:41:30 -0700304 LOG(INFO) << "Forcibly disabling use of p2p for downloading "
305 << "since this update attempt is interactive.";
David Zeuthen8f191b22013-08-06 12:27:50 -0700306 }
307 }
308 }
309
310 omaha_request_params_->set_use_p2p_for_downloading(use_p2p_for_downloading);
311 omaha_request_params_->set_use_p2p_for_sharing(use_p2p_for_sharing);
312}
313
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700314bool UpdateAttempter::CalculateUpdateParams(const string& app_version,
315 const string& omaha_url,
316 bool obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700317 bool interactive) {
Darin Petkov1023a602010-08-30 13:47:51 -0700318 http_response_code_ = 0;
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200319
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700320 RefreshDevicePolicy();
321 const policy::DevicePolicy* device_policy = system_state_->device_policy();
322 if (device_policy) {
Jay Srinivasandc9a8ca2013-03-19 18:12:38 -0700323 bool update_disabled = false;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700324 if (device_policy->GetUpdateDisabled(&update_disabled))
325 omaha_request_params_->set_update_disabled(update_disabled);
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700326
327 string target_version_prefix;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700328 if (device_policy->GetTargetVersionPrefix(&target_version_prefix))
329 omaha_request_params_->set_target_version_prefix(target_version_prefix);
Jay Srinivasan43488792012-06-19 00:25:31 -0700330
331 set<string> allowed_types;
332 string allowed_types_str;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700333 if (device_policy->GetAllowedConnectionTypesForUpdate(&allowed_types)) {
Jay Srinivasan43488792012-06-19 00:25:31 -0700334 set<string>::const_iterator iter;
335 for (iter = allowed_types.begin(); iter != allowed_types.end(); ++iter)
336 allowed_types_str += *iter + " ";
337 }
338
339 LOG(INFO) << "Networks over which updates are allowed per policy : "
340 << (allowed_types_str.empty() ? "all" : allowed_types_str);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700341 }
342
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800343 CalculateScatteringParams(interactive);
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200344
David Zeuthen8f191b22013-08-06 12:27:50 -0700345 CalculateP2PParams(interactive);
346 if (omaha_request_params_->use_p2p_for_downloading() ||
347 omaha_request_params_->use_p2p_for_sharing()) {
348 // OK, p2p is to be used - start it and perform housekeeping.
349 if (!StartP2PAndPerformHousekeeping()) {
350 // If this fails, disable p2p for this attempt
351 LOG(INFO) << "Forcibly disabling use of p2p since starting p2p or "
352 << "performing housekeeping failed.";
353 omaha_request_params_->set_use_p2p_for_downloading(false);
354 omaha_request_params_->set_use_p2p_for_sharing(false);
355 }
356 }
357
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700358 if (!omaha_request_params_->Init(app_version,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700359 omaha_url,
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700360 interactive)) {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700361 LOG(ERROR) << "Unable to initialize Omaha request params.";
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700362 return false;
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700363 }
Darin Petkov3aefa862010-12-07 14:45:00 -0800364
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700365 // Set the target channel iff ReleaseChannelDelegated policy is set to
366 // false and a non-empty ReleaseChannel policy is present. If delegated
367 // is true, we'll ignore ReleaseChannel policy value.
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700368 if (device_policy) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700369 bool delegated = false;
Chris Sosad6ab4042013-07-18 10:36:39 -0700370 if (!device_policy->GetReleaseChannelDelegated(&delegated) || delegated) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700371 LOG(INFO) << "Channel settings are delegated to user by policy. "
372 "Ignoring ReleaseChannel policy value";
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700373 } else {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700374 LOG(INFO) << "Channel settings are not delegated to the user by policy";
375 string target_channel;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700376 if (device_policy->GetReleaseChannel(&target_channel) &&
377 !target_channel.empty()) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700378 // Pass in false for powerwash_allowed until we add it to the policy
379 // protobuf.
380 LOG(INFO) << "Setting target channel from ReleaseChannel policy value";
381 omaha_request_params_->SetTargetChannel(target_channel, false);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700382
383 // Since this is the beginning of a new attempt, update the download
384 // channel. The download channel won't be updated until the next
385 // attempt, even if target channel changes meanwhile, so that how we'll
386 // know if we should cancel the current download attempt if there's
387 // such a change in target channel.
388 omaha_request_params_->UpdateDownloadChannel();
389 } else {
390 LOG(INFO) << "No ReleaseChannel specified in policy";
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700391 }
392 }
393 }
394
Jay Srinivasan0a708742012-03-20 11:26:12 -0700395 LOG(INFO) << "update_disabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700396 << utils::ToString(omaha_request_params_->update_disabled())
Jay Srinivasan0a708742012-03-20 11:26:12 -0700397 << ", target_version_prefix = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700398 << omaha_request_params_->target_version_prefix()
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700399 << ", scatter_factor_in_seconds = "
400 << utils::FormatSecs(scatter_factor_.InSeconds());
401
402 LOG(INFO) << "Wall Clock Based Wait Enabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700403 << omaha_request_params_->wall_clock_based_wait_enabled()
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700404 << ", Update Check Count Wait Enabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700405 << omaha_request_params_->update_check_count_wait_enabled()
Jay Srinivasan21be0752012-07-25 15:44:56 -0700406 << ", Waiting Period = " << utils::FormatSecs(
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700407 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan0a708742012-03-20 11:26:12 -0700408
David Zeuthen8f191b22013-08-06 12:27:50 -0700409 LOG(INFO) << "Use p2p For Downloading = "
410 << omaha_request_params_->use_p2p_for_downloading()
411 << ", Use p2p For Sharing = "
412 << omaha_request_params_->use_p2p_for_sharing();
413
Andrew de los Reyes45168102010-11-22 11:13:50 -0800414 obeying_proxies_ = true;
415 if (obey_proxies || proxy_manual_checks_ == 0) {
416 LOG(INFO) << "forced to obey proxies";
417 // If forced to obey proxies, every 20th request will not use proxies
418 proxy_manual_checks_++;
419 LOG(INFO) << "proxy manual checks: " << proxy_manual_checks_;
420 if (proxy_manual_checks_ >= kMaxConsecutiveObeyProxyRequests) {
421 proxy_manual_checks_ = 0;
422 obeying_proxies_ = false;
423 }
424 } else if (base::RandInt(0, 4) == 0) {
425 obeying_proxies_ = false;
426 }
427 LOG_IF(INFO, !obeying_proxies_) << "To help ensure updates work, this update "
428 "check we are ignoring the proxy settings and using "
429 "direct connections.";
430
Darin Petkov36275772010-10-01 11:40:57 -0700431 DisableDeltaUpdateIfNeeded();
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700432 return true;
433}
434
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800435void UpdateAttempter::CalculateScatteringParams(bool interactive) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700436 // Take a copy of the old scatter value before we update it, as
437 // we need to update the waiting period if this value changes.
438 TimeDelta old_scatter_factor = scatter_factor_;
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800439 const policy::DevicePolicy* device_policy = system_state_->device_policy();
Jay Srinivasan21be0752012-07-25 15:44:56 -0700440 if (device_policy) {
441 int64 new_scatter_factor_in_secs = 0;
442 device_policy->GetScatterFactorInSeconds(&new_scatter_factor_in_secs);
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700443 if (new_scatter_factor_in_secs < 0) // sanitize input, just in case.
Jay Srinivasan21be0752012-07-25 15:44:56 -0700444 new_scatter_factor_in_secs = 0;
445 scatter_factor_ = TimeDelta::FromSeconds(new_scatter_factor_in_secs);
446 }
447
448 bool is_scatter_enabled = false;
449 if (scatter_factor_.InSeconds() == 0) {
450 LOG(INFO) << "Scattering disabled since scatter factor is set to 0";
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800451 } else if (interactive) {
452 LOG(INFO) << "Scattering disabled as this is an interactive update check";
Alex Deymobccbc382014-04-03 13:38:55 -0700453 } else if (!system_state_->hardware()->IsOOBEComplete(nullptr)) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700454 LOG(INFO) << "Scattering disabled since OOBE is not complete yet";
455 } else {
456 is_scatter_enabled = true;
457 LOG(INFO) << "Scattering is enabled";
458 }
459
460 if (is_scatter_enabled) {
461 // This means the scattering policy is turned on.
462 // Now check if we need to update the waiting period. The two cases
463 // in which we'd need to update the waiting period are:
464 // 1. First time in process or a scheduled check after a user-initiated one.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700465 // (omaha_request_params_->waiting_period will be zero in this case).
Jay Srinivasan21be0752012-07-25 15:44:56 -0700466 // 2. Admin has changed the scattering policy value.
467 // (new scattering value will be different from old one in this case).
468 int64 wait_period_in_secs = 0;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700469 if (omaha_request_params_->waiting_period().InSeconds() == 0) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700470 // First case. Check if we have a suitable value to set for
471 // the waiting period.
472 if (prefs_->GetInt64(kPrefsWallClockWaitPeriod, &wait_period_in_secs) &&
473 wait_period_in_secs > 0 &&
474 wait_period_in_secs <= scatter_factor_.InSeconds()) {
475 // This means:
476 // 1. There's a persisted value for the waiting period available.
477 // 2. And that persisted value is still valid.
478 // So, in this case, we should reuse the persisted value instead of
479 // generating a new random value to improve the chances of a good
480 // distribution for scattering.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700481 omaha_request_params_->set_waiting_period(
482 TimeDelta::FromSeconds(wait_period_in_secs));
Jay Srinivasan21be0752012-07-25 15:44:56 -0700483 LOG(INFO) << "Using persisted wall-clock waiting period: " <<
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700484 utils::FormatSecs(
485 omaha_request_params_->waiting_period().InSeconds());
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700486 } else {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700487 // This means there's no persisted value for the waiting period
488 // available or its value is invalid given the new scatter_factor value.
489 // So, we should go ahead and regenerate a new value for the
490 // waiting period.
491 LOG(INFO) << "Persisted value not present or not valid ("
492 << utils::FormatSecs(wait_period_in_secs)
493 << ") for wall-clock waiting period.";
494 GenerateNewWaitingPeriod();
495 }
496 } else if (scatter_factor_ != old_scatter_factor) {
497 // This means there's already a waiting period value, but we detected
498 // a change in the scattering policy value. So, we should regenerate the
499 // waiting period to make sure it's within the bounds of the new scatter
500 // factor value.
501 GenerateNewWaitingPeriod();
502 } else {
503 // Neither the first time scattering is enabled nor the scattering value
504 // changed. Nothing to do.
505 LOG(INFO) << "Keeping current wall-clock waiting period: " <<
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700506 utils::FormatSecs(
507 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan21be0752012-07-25 15:44:56 -0700508 }
509
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700510 // The invariant at this point is that omaha_request_params_->waiting_period
Jay Srinivasan21be0752012-07-25 15:44:56 -0700511 // is non-zero no matter which path we took above.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700512 LOG_IF(ERROR, omaha_request_params_->waiting_period().InSeconds() == 0)
Jay Srinivasan21be0752012-07-25 15:44:56 -0700513 << "Waiting Period should NOT be zero at this point!!!";
514
515 // Since scattering is enabled, wall clock based wait will always be
516 // enabled.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700517 omaha_request_params_->set_wall_clock_based_wait_enabled(true);
Jay Srinivasan21be0752012-07-25 15:44:56 -0700518
519 // If we don't have any issues in accessing the file system to update
520 // the update check count value, we'll turn that on as well.
521 bool decrement_succeeded = DecrementUpdateCheckCount();
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700522 omaha_request_params_->set_update_check_count_wait_enabled(
523 decrement_succeeded);
Jay Srinivasan21be0752012-07-25 15:44:56 -0700524 } else {
525 // This means the scattering feature is turned off or disabled for
526 // this particular update check. Make sure to disable
527 // all the knobs and artifacts so that we don't invoke any scattering
528 // related code.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700529 omaha_request_params_->set_wall_clock_based_wait_enabled(false);
530 omaha_request_params_->set_update_check_count_wait_enabled(false);
531 omaha_request_params_->set_waiting_period(TimeDelta::FromSeconds(0));
Jay Srinivasan21be0752012-07-25 15:44:56 -0700532 prefs_->Delete(kPrefsWallClockWaitPeriod);
533 prefs_->Delete(kPrefsUpdateCheckCount);
534 // Don't delete the UpdateFirstSeenAt file as we don't want manual checks
535 // that result in no-updates (e.g. due to server side throttling) to
536 // cause update starvation by having the client generate a new
537 // UpdateFirstSeenAt for each scheduled check that follows a manual check.
538 }
539}
540
541void UpdateAttempter::GenerateNewWaitingPeriod() {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700542 omaha_request_params_->set_waiting_period(TimeDelta::FromSeconds(
543 base::RandInt(1, scatter_factor_.InSeconds())));
Jay Srinivasan21be0752012-07-25 15:44:56 -0700544
545 LOG(INFO) << "Generated new wall-clock waiting period: " << utils::FormatSecs(
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700546 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan21be0752012-07-25 15:44:56 -0700547
548 // Do a best-effort to persist this in all cases. Even if the persistence
549 // fails, we'll still be able to scatter based on our in-memory value.
550 // The persistence only helps in ensuring a good overall distribution
551 // across multiple devices if they tend to reboot too often.
552 prefs_->SetInt64(kPrefsWallClockWaitPeriod,
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700553 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan21be0752012-07-25 15:44:56 -0700554}
555
Chris Sosad317e402013-06-12 13:47:09 -0700556void UpdateAttempter::BuildPostInstallActions(
557 InstallPlanAction* previous_action) {
558 shared_ptr<PostinstallRunnerAction> postinstall_runner_action(
559 new PostinstallRunnerAction());
560 actions_.push_back(shared_ptr<AbstractAction>(postinstall_runner_action));
561 BondActions(previous_action,
562 postinstall_runner_action.get());
563}
564
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700565void UpdateAttempter::BuildUpdateActions(bool interactive) {
Darin Petkovf42cc1c2010-09-01 09:03:02 -0700566 CHECK(!processor_->IsRunning());
567 processor_->set_delegate(this);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700568
569 // Actions:
Darin Petkova0929552010-11-29 14:19:06 -0800570 LibcurlHttpFetcher* update_check_fetcher =
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700571 new LibcurlHttpFetcher(GetProxyResolver(), system_state_);
Andrew de los Reyesfb2f4612011-06-09 18:21:49 -0700572 // Try harder to connect to the network, esp when not interactive.
573 // See comment in libcurl_http_fetcher.cc.
574 update_check_fetcher->set_no_network_max_retries(interactive ? 1 : 3);
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700575 update_check_fetcher->set_check_certificate(CertificateChecker::kUpdate);
Darin Petkov6a5b3222010-07-13 14:55:28 -0700576 shared_ptr<OmahaRequestAction> update_check_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800577 new OmahaRequestAction(system_state_,
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700578 NULL,
Thieu Le116fda32011-04-19 11:01:54 -0700579 update_check_fetcher, // passes ownership
580 false));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700581 shared_ptr<OmahaResponseHandlerAction> response_handler_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800582 new OmahaResponseHandlerAction(system_state_));
Don Garrett83692e42013-11-08 10:11:30 -0800583 // We start with the kernel so it's marked as invalid more quickly.
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700584 shared_ptr<FilesystemCopierAction> kernel_filesystem_copier_action(
Alex Deymo42432912013-07-12 20:21:15 -0700585 new FilesystemCopierAction(system_state_, true, false));
Don Garrett83692e42013-11-08 10:11:30 -0800586 shared_ptr<FilesystemCopierAction> filesystem_copier_action(
587 new FilesystemCopierAction(system_state_, false, false));
588
Darin Petkov8c2980e2010-07-16 15:16:49 -0700589 shared_ptr<OmahaRequestAction> download_started_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800590 new OmahaRequestAction(system_state_,
Darin Petkov8c2980e2010-07-16 15:16:49 -0700591 new OmahaEvent(
Darin Petkove17f86b2010-07-20 09:12:01 -0700592 OmahaEvent::kTypeUpdateDownloadStarted),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700593 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700594 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -0700595 false));
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700596 LibcurlHttpFetcher* download_fetcher =
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700597 new LibcurlHttpFetcher(GetProxyResolver(), system_state_);
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700598 download_fetcher->set_check_certificate(CertificateChecker::kDownload);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700599 shared_ptr<DownloadAction> download_action(
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700600 new DownloadAction(prefs_,
Jay Srinivasanf0572052012-10-23 18:12:56 -0700601 system_state_,
Gilad Arnold9bedeb52011-11-17 16:19:57 -0800602 new MultiRangeHttpFetcher(
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700603 download_fetcher))); // passes ownership
Darin Petkov8c2980e2010-07-16 15:16:49 -0700604 shared_ptr<OmahaRequestAction> download_finished_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800605 new OmahaRequestAction(system_state_,
Darin Petkov8c2980e2010-07-16 15:16:49 -0700606 new OmahaEvent(
Darin Petkove17f86b2010-07-20 09:12:01 -0700607 OmahaEvent::kTypeUpdateDownloadFinished),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700608 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700609 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -0700610 false));
Darin Petkov3aefa862010-12-07 14:45:00 -0800611 shared_ptr<FilesystemCopierAction> filesystem_verifier_action(
Alex Deymo42432912013-07-12 20:21:15 -0700612 new FilesystemCopierAction(system_state_, false, true));
Darin Petkov3aefa862010-12-07 14:45:00 -0800613 shared_ptr<FilesystemCopierAction> kernel_filesystem_verifier_action(
Alex Deymo42432912013-07-12 20:21:15 -0700614 new FilesystemCopierAction(system_state_, true, true));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700615 shared_ptr<OmahaRequestAction> update_complete_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800616 new OmahaRequestAction(system_state_,
Darin Petkove17f86b2010-07-20 09:12:01 -0700617 new OmahaEvent(OmahaEvent::kTypeUpdateComplete),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700618 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700619 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -0700620 false));
Darin Petkov6a5b3222010-07-13 14:55:28 -0700621
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700622 download_action->set_delegate(this);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700623 response_handler_action_ = response_handler_action;
Darin Petkov9b230572010-10-08 10:20:09 -0700624 download_action_ = download_action;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700625
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700626 actions_.push_back(shared_ptr<AbstractAction>(update_check_action));
627 actions_.push_back(shared_ptr<AbstractAction>(response_handler_action));
628 actions_.push_back(shared_ptr<AbstractAction>(filesystem_copier_action));
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700629 actions_.push_back(shared_ptr<AbstractAction>(
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700630 kernel_filesystem_copier_action));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700631 actions_.push_back(shared_ptr<AbstractAction>(download_started_action));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700632 actions_.push_back(shared_ptr<AbstractAction>(download_action));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700633 actions_.push_back(shared_ptr<AbstractAction>(download_finished_action));
Darin Petkov3aefa862010-12-07 14:45:00 -0800634 actions_.push_back(shared_ptr<AbstractAction>(filesystem_verifier_action));
Chris Sosad317e402013-06-12 13:47:09 -0700635 actions_.push_back(shared_ptr<AbstractAction>(
636 kernel_filesystem_verifier_action));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700637
638 // Bond them together. We have to use the leaf-types when calling
639 // BondActions().
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700640 BondActions(update_check_action.get(),
641 response_handler_action.get());
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700642 BondActions(response_handler_action.get(),
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700643 filesystem_copier_action.get());
644 BondActions(filesystem_copier_action.get(),
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700645 kernel_filesystem_copier_action.get());
646 BondActions(kernel_filesystem_copier_action.get(),
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700647 download_action.get());
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700648 BondActions(download_action.get(),
Darin Petkov3aefa862010-12-07 14:45:00 -0800649 filesystem_verifier_action.get());
650 BondActions(filesystem_verifier_action.get(),
651 kernel_filesystem_verifier_action.get());
Chris Sosad317e402013-06-12 13:47:09 -0700652
653 BuildPostInstallActions(kernel_filesystem_verifier_action.get());
654
655 actions_.push_back(shared_ptr<AbstractAction>(update_complete_action));
656
657 // Enqueue the actions
658 for (vector<shared_ptr<AbstractAction> >::iterator it = actions_.begin();
659 it != actions_.end(); ++it) {
660 processor_->EnqueueAction(it->get());
661 }
662}
663
Chris Sosa44b9b7e2014-04-02 13:53:46 -0700664bool UpdateAttempter::Rollback(bool powerwash) {
665 if (!CanRollback()) {
666 return false;
667 }
Chris Sosad317e402013-06-12 13:47:09 -0700668
Chris Sosa44b9b7e2014-04-02 13:53:46 -0700669 // Extra check for enterprise-enrolled devices since they don't support
670 // powerwash.
671 if (powerwash) {
672 // Enterprise-enrolled devices have an empty owner in their device policy.
673 string owner;
674 RefreshDevicePolicy();
675 const policy::DevicePolicy* device_policy = system_state_->device_policy();
676 if (device_policy && (!device_policy->GetOwner(&owner) || owner.empty())) {
677 LOG(ERROR) << "Enterprise device detected. "
678 << "Cannot perform a powerwash for enterprise devices.";
679 return false;
680 }
681 }
682
683 processor_->set_delegate(this);
Chris Sosaaa18e162013-06-20 13:20:30 -0700684
Chris Sosa28e479c2013-07-12 11:39:53 -0700685 // Initialize the default request params.
686 if (!omaha_request_params_->Init("", "", true)) {
687 LOG(ERROR) << "Unable to initialize Omaha request params.";
688 return false;
689 }
690
Chris Sosad317e402013-06-12 13:47:09 -0700691 LOG(INFO) << "Setting rollback options.";
692 InstallPlan install_plan;
Chris Sosa44b9b7e2014-04-02 13:53:46 -0700693
694 TEST_AND_RETURN_FALSE(utils::GetInstallDev(
695 system_state_->hardware()->BootDevice(),
696 &install_plan.install_path));
Chris Sosa76a29ae2013-07-11 17:59:24 -0700697
Alex Deymo42432912013-07-12 20:21:15 -0700698 install_plan.kernel_install_path =
J. Richard Barnette30842932013-10-28 15:04:23 -0700699 utils::KernelDeviceOfBootDevice(install_plan.install_path);
Chris Sosad317e402013-06-12 13:47:09 -0700700 install_plan.powerwash_required = powerwash;
701
702 LOG(INFO) << "Using this install plan:";
703 install_plan.Dump();
704
705 shared_ptr<InstallPlanAction> install_plan_action(
706 new InstallPlanAction(install_plan));
707 actions_.push_back(shared_ptr<AbstractAction>(install_plan_action));
708
709 BuildPostInstallActions(install_plan_action.get());
710
711 // Enqueue the actions
712 for (vector<shared_ptr<AbstractAction> >::iterator it = actions_.begin();
713 it != actions_.end(); ++it) {
714 processor_->EnqueueAction(it->get());
715 }
Chris Sosaaa18e162013-06-20 13:20:30 -0700716
717 // Update the payload state for Rollback.
718 system_state_->payload_state()->Rollback();
719
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700720 SetStatusAndNotify(UPDATE_STATUS_ATTEMPTING_ROLLBACK);
Chris Sosad317e402013-06-12 13:47:09 -0700721
722 // Just in case we didn't update boot flags yet, make sure they're updated
723 // before any update processing starts. This also schedules the start of the
724 // actions we just posted.
725 start_action_processor_ = true;
726 UpdateBootFlags();
Chris Sosaaa18e162013-06-20 13:20:30 -0700727 return true;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700728}
729
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800730bool UpdateAttempter::CanRollback() const {
Chris Sosa44b9b7e2014-04-02 13:53:46 -0700731 // We can only rollback if the update_engine isn't busy and we have a valid
732 // rollback partition.
733 return (status_ == UPDATE_STATUS_IDLE && !GetRollbackPartition().empty());
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700734}
735
736std::string UpdateAttempter::GetRollbackPartition() const {
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800737 std::vector<std::string> kernel_devices =
738 system_state_->hardware()->GetKernelDevices();
739
740 std::string boot_kernel_device =
741 system_state_->hardware()->BootKernelDevice();
742
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700743 LOG(INFO) << "UpdateAttempter::GetRollbackPartition";
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700744 for (const auto& name : kernel_devices)
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700745 LOG(INFO) << " Available kernel device = " << name;
746 LOG(INFO) << " Boot kernel device = " << boot_kernel_device;
747
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800748 auto current = std::find(kernel_devices.begin(), kernel_devices.end(),
749 boot_kernel_device);
750
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700751 if (current == kernel_devices.end()) {
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800752 LOG(ERROR) << "Unable to find the boot kernel device in the list of "
753 << "available devices";
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700754 return std::string();
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800755 }
756
757 for (std::string const& device_name : kernel_devices) {
758 if (device_name != *current) {
759 bool bootable = false;
760 if (system_state_->hardware()->IsKernelBootable(device_name, &bootable) &&
761 bootable) {
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700762 return device_name;
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800763 }
764 }
765 }
766
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700767 return std::string();
768}
769
770std::vector<std::pair<std::string, bool>>
771 UpdateAttempter::GetKernelDevices() const {
772 std::vector<std::string> kernel_devices =
773 system_state_->hardware()->GetKernelDevices();
774
775 std::string boot_kernel_device =
776 system_state_->hardware()->BootKernelDevice();
777
778 std::vector<std::pair<std::string, bool>> info_list;
779 info_list.reserve(kernel_devices.size());
780
781 for (std::string device_name : kernel_devices) {
782 bool bootable = false;
783 system_state_->hardware()->IsKernelBootable(device_name, &bootable);
784 // Add '*' to the name of the partition we booted from.
785 if (device_name == boot_kernel_device)
786 device_name += '*';
787 info_list.emplace_back(device_name, bootable);
788 }
789
790 return info_list;
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800791}
792
Gilad Arnold28e2f392012-02-09 14:36:46 -0800793void UpdateAttempter::CheckForUpdate(const string& app_version,
Jay Srinivasane73acab2012-07-10 14:34:03 -0700794 const string& omaha_url,
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800795 bool interactive) {
Jay Srinivasan08fce042012-06-07 16:31:01 -0700796 LOG(INFO) << "New update check requested";
797
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700798 if (status_ != UPDATE_STATUS_IDLE) {
Jay Srinivasan08fce042012-06-07 16:31:01 -0700799 LOG(INFO) << "Skipping update check because current status is "
800 << UpdateStatusToString(status_);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700801 return;
802 }
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800803
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800804 // Pass through the interactive flag, in case we want to simulate a scheduled
805 // test.
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700806 Update(app_version, omaha_url, true, interactive);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700807}
808
Darin Petkov296889c2010-07-23 16:20:54 -0700809bool UpdateAttempter::RebootIfNeeded() {
810 if (status_ != UPDATE_STATUS_UPDATED_NEED_REBOOT) {
811 LOG(INFO) << "Reboot requested, but status is "
812 << UpdateStatusToString(status_) << ", so not rebooting.";
813 return false;
814 }
815 TEST_AND_RETURN_FALSE(utils::Reboot());
816 return true;
817}
818
David Zeuthen3c55abd2013-10-14 12:48:03 -0700819void UpdateAttempter::WriteUpdateCompletedMarker() {
820 if (update_completed_marker_.empty())
821 return;
822
823 int64_t value = system_state_->clock()->GetBootTime().ToInternalValue();
Alex Vakulenko75039d72014-03-25 12:36:28 -0700824 string contents = base::StringPrintf("%" PRIi64, value);
David Zeuthen3c55abd2013-10-14 12:48:03 -0700825
826 utils::WriteFile(update_completed_marker_.c_str(),
827 contents.c_str(),
828 contents.length());
829}
830
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700831// Delegate methods:
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700832void UpdateAttempter::ProcessingDone(const ActionProcessor* processor,
David Zeuthena99981f2013-04-29 13:42:47 -0700833 ErrorCode code) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700834 LOG(INFO) << "Processing Done.";
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700835 actions_.clear();
Darin Petkov09f96c32010-07-20 09:24:57 -0700836
Chris Sosa4f8ee272012-11-30 13:01:54 -0800837 // Reset cpu shares back to normal.
838 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700839
Darin Petkov09f96c32010-07-20 09:24:57 -0700840 if (status_ == UPDATE_STATUS_REPORTING_ERROR_EVENT) {
841 LOG(INFO) << "Error event sent.";
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800842
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700843 // Inform scheduler of new status;
844 SetStatusAndNotify(UPDATE_STATUS_IDLE);
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800845
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700846 if (!fake_update_success_) {
847 return;
848 }
849 LOG(INFO) << "Booted from FW B and tried to install new firmware, "
850 "so requesting reboot from user.";
Darin Petkov09f96c32010-07-20 09:24:57 -0700851 }
852
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700853 if (code == ErrorCode::kSuccess) {
David Zeuthen3c55abd2013-10-14 12:48:03 -0700854 WriteUpdateCompletedMarker();
Darin Petkov36275772010-10-01 11:40:57 -0700855 prefs_->SetInt64(kPrefsDeltaUpdateFailures, 0);
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700856 prefs_->SetString(kPrefsPreviousVersion,
857 omaha_request_params_->app_version());
Darin Petkov9b230572010-10-08 10:20:09 -0700858 DeltaPerformer::ResetUpdateProgress(prefs_, false);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700859
David Zeuthen9a017f22013-04-11 16:10:26 -0700860 system_state_->payload_state()->UpdateSucceeded();
861
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700862 // Since we're done with scattering fully at this point, this is the
863 // safest point delete the state files, as we're sure that the status is
864 // set to reboot (which means no more updates will be applied until reboot)
865 // This deletion is required for correctness as we want the next update
866 // check to re-create a new random number for the update check count.
867 // Similarly, we also delete the wall-clock-wait period that was persisted
868 // so that we start with a new random value for the next update check
869 // after reboot so that the same device is not favored or punished in any
870 // way.
871 prefs_->Delete(kPrefsUpdateCheckCount);
872 prefs_->Delete(kPrefsWallClockWaitPeriod);
Jay Srinivasan34b5d862012-07-23 11:43:22 -0700873 prefs_->Delete(kPrefsUpdateFirstSeenAt);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700874
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700875 SetStatusAndNotify(UPDATE_STATUS_UPDATED_NEED_REBOOT);
Jay Srinivasan19409b72013-04-12 19:23:36 -0700876 LOG(INFO) << "Update successfully applied, waiting to reboot.";
Darin Petkov9d65b7b2010-07-20 09:13:01 -0700877
Don Garrettaf9085e2013-11-06 18:14:29 -0800878 // This pointer is NULL during rollback operations, and the stats
879 // don't make much sense then anway.
880 if (response_handler_action_) {
881 const InstallPlan& install_plan =
882 response_handler_action_->install_plan();
Alex Deymo42432912013-07-12 20:21:15 -0700883
Don Garrettaf9085e2013-11-06 18:14:29 -0800884 // Generate an unique payload identifier.
885 const string target_version_uid =
886 install_plan.payload_hash + ":" + install_plan.metadata_signature;
Alex Deymo42432912013-07-12 20:21:15 -0700887
Don Garrettaf9085e2013-11-06 18:14:29 -0800888 // Expect to reboot into the new version to send the proper metric during
889 // next boot.
890 system_state_->payload_state()->ExpectRebootInNewVersion(
891 target_version_uid);
Alex Deymo42432912013-07-12 20:21:15 -0700892
Don Garrettaf9085e2013-11-06 18:14:29 -0800893 // Also report the success code so that the percentiles can be
894 // interpreted properly for the remaining error codes in UMA.
895 utils::SendErrorCodeToUma(system_state_, code);
896 } else {
897 // If we just finished a rollback, then we expect to have no Omaha
898 // response. Otherwise, it's an error.
899 if (system_state_->payload_state()->GetRollbackVersion().empty()) {
900 LOG(ERROR) << "Can't send metrics because expected "
901 "response_handler_action_ missing.";
902 }
903 }
Darin Petkov09f96c32010-07-20 09:24:57 -0700904 return;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700905 }
Darin Petkov09f96c32010-07-20 09:24:57 -0700906
Darin Petkov1023a602010-08-30 13:47:51 -0700907 if (ScheduleErrorEventAction()) {
Darin Petkov09f96c32010-07-20 09:24:57 -0700908 return;
Darin Petkov1023a602010-08-30 13:47:51 -0700909 }
910 LOG(INFO) << "No update.";
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700911 SetStatusAndNotify(UPDATE_STATUS_IDLE);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700912}
913
914void UpdateAttempter::ProcessingStopped(const ActionProcessor* processor) {
Chris Sosa4f8ee272012-11-30 13:01:54 -0800915 // Reset cpu shares back to normal.
916 CleanupCpuSharesManagement();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700917 download_progress_ = 0.0;
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700918 SetStatusAndNotify(UPDATE_STATUS_IDLE);
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700919 actions_.clear();
Darin Petkov09f96c32010-07-20 09:24:57 -0700920 error_event_.reset(NULL);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700921}
922
923// Called whenever an action has finished processing, either successfully
924// or otherwise.
925void UpdateAttempter::ActionCompleted(ActionProcessor* processor,
926 AbstractAction* action,
David Zeuthena99981f2013-04-29 13:42:47 -0700927 ErrorCode code) {
Darin Petkov1023a602010-08-30 13:47:51 -0700928 // Reset download progress regardless of whether or not the download
929 // action succeeded. Also, get the response code from HTTP request
930 // actions (update download as well as the initial update check
931 // actions).
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700932 const string type = action->Type();
Darin Petkov1023a602010-08-30 13:47:51 -0700933 if (type == DownloadAction::StaticType()) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700934 download_progress_ = 0.0;
Darin Petkov1023a602010-08-30 13:47:51 -0700935 DownloadAction* download_action = dynamic_cast<DownloadAction*>(action);
936 http_response_code_ = download_action->GetHTTPResponseCode();
937 } else if (type == OmahaRequestAction::StaticType()) {
938 OmahaRequestAction* omaha_request_action =
939 dynamic_cast<OmahaRequestAction*>(action);
940 // If the request is not an event, then it's the update-check.
941 if (!omaha_request_action->IsEvent()) {
942 http_response_code_ = omaha_request_action->GetHTTPResponseCode();
Gilad Arnolda6dab942014-04-25 11:46:03 -0700943
944 // Record the number of consecutive failed update checks.
945 if (http_response_code_ == kHttpResponseInternalServerError ||
946 http_response_code_ == kHttpResponseServiceUnavailable) {
947 consecutive_failed_update_checks_++;
948 } else {
949 consecutive_failed_update_checks_ = 0;
950 }
951
Darin Petkov85ced132010-09-01 10:20:56 -0700952 // Forward the server-dictated poll interval to the update check
953 // scheduler, if any.
954 if (update_check_scheduler_) {
955 update_check_scheduler_->set_poll_interval(
956 omaha_request_action->GetOutputObject().poll_interval);
957 }
Darin Petkov1023a602010-08-30 13:47:51 -0700958 }
959 }
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700960 if (code != ErrorCode::kSuccess) {
Darin Petkov7ed561b2011-10-04 02:59:03 -0700961 // If the current state is at or past the download phase, count the failure
962 // in case a switch to full update becomes necessary. Ignore network
963 // transfer timeouts and failures.
Darin Petkov36275772010-10-01 11:40:57 -0700964 if (status_ >= UPDATE_STATUS_DOWNLOADING &&
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700965 code != ErrorCode::kDownloadTransferError) {
Darin Petkov36275772010-10-01 11:40:57 -0700966 MarkDeltaUpdateFailure();
967 }
Darin Petkov777dbfa2010-07-20 15:03:37 -0700968 // On failure, schedule an error event to be sent to Omaha.
969 CreatePendingErrorEvent(action, code);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700970 return;
Darin Petkov09f96c32010-07-20 09:24:57 -0700971 }
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700972 // Find out which action completed.
973 if (type == OmahaResponseHandlerAction::StaticType()) {
Darin Petkov9b230572010-10-08 10:20:09 -0700974 // Note that the status will be updated to DOWNLOADING when some bytes get
975 // actually downloaded from the server and the BytesReceived callback is
976 // invoked. This avoids notifying the user that a download has started in
977 // cases when the server and the client are unable to initiate the download.
978 CHECK(action == response_handler_action_.get());
979 const InstallPlan& plan = response_handler_action_->install_plan();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700980 last_checked_time_ = time(NULL);
Chris Sosafb1020e2013-07-29 17:27:33 -0700981 new_version_ = plan.version;
Jay Srinivasan51dcf262012-09-13 17:24:32 -0700982 new_payload_size_ = plan.payload_size;
Darin Petkov9b230572010-10-08 10:20:09 -0700983 SetupDownload();
Chris Sosa4f8ee272012-11-30 13:01:54 -0800984 SetupCpuSharesManagement();
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700985 SetStatusAndNotify(UPDATE_STATUS_UPDATE_AVAILABLE);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700986 } else if (type == DownloadAction::StaticType()) {
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700987 SetStatusAndNotify(UPDATE_STATUS_FINALIZING);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700988 }
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700989}
990
991// Stop updating. An attempt will be made to record status to the disk
992// so that updates can be resumed later.
993void UpdateAttempter::Terminate() {
994 // TODO(adlr): implement this method.
995 NOTIMPLEMENTED();
996}
997
998// Try to resume from a previously Terminate()d update.
999void UpdateAttempter::ResumeUpdating() {
1000 // TODO(adlr): implement this method.
1001 NOTIMPLEMENTED();
1002}
1003
Darin Petkov9d911fa2010-08-19 09:36:08 -07001004void UpdateAttempter::SetDownloadStatus(bool active) {
1005 download_active_ = active;
1006 LOG(INFO) << "Download status: " << (active ? "active" : "inactive");
1007}
1008
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001009void UpdateAttempter::BytesReceived(uint64_t bytes_received, uint64_t total) {
Darin Petkov9d911fa2010-08-19 09:36:08 -07001010 if (!download_active_) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001011 LOG(ERROR) << "BytesReceived called while not downloading.";
1012 return;
1013 }
Darin Petkovaf183052010-08-23 12:07:13 -07001014 double progress = static_cast<double>(bytes_received) /
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001015 static_cast<double>(total);
Darin Petkovaf183052010-08-23 12:07:13 -07001016 // Self throttle based on progress. Also send notifications if
1017 // progress is too slow.
1018 const double kDeltaPercent = 0.01; // 1%
1019 if (status_ != UPDATE_STATUS_DOWNLOADING ||
1020 bytes_received == total ||
1021 progress - download_progress_ >= kDeltaPercent ||
1022 TimeTicks::Now() - last_notify_time_ >= TimeDelta::FromSeconds(10)) {
1023 download_progress_ = progress;
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001024 SetStatusAndNotify(UPDATE_STATUS_DOWNLOADING);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001025 }
1026}
1027
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -07001028bool UpdateAttempter::ResetStatus() {
1029 LOG(INFO) << "Attempting to reset state from "
1030 << UpdateStatusToString(status_) << " to UPDATE_STATUS_IDLE";
1031
1032 switch (status_) {
1033 case UPDATE_STATUS_IDLE:
1034 // no-op.
1035 return true;
1036
1037 case UPDATE_STATUS_UPDATED_NEED_REBOOT: {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001038 bool ret_value = true;
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -07001039 status_ = UPDATE_STATUS_IDLE;
1040 LOG(INFO) << "Reset Successful";
1041
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001042 // Remove the reboot marker so that if the machine is rebooted
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -07001043 // after resetting to idle state, it doesn't go back to
1044 // UPDATE_STATUS_UPDATED_NEED_REBOOT state.
Gilad Arnold70e476e2013-07-30 16:01:13 -07001045 if (!update_completed_marker_.empty()) {
Alex Vakulenko75039d72014-03-25 12:36:28 -07001046 if (!base::DeleteFile(base::FilePath(update_completed_marker_), false))
Gilad Arnold70e476e2013-07-30 16:01:13 -07001047 ret_value = false;
1048 }
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001049
Alex Deymo42432912013-07-12 20:21:15 -07001050 // Notify the PayloadState that the successful payload was canceled.
1051 system_state_->payload_state()->ResetUpdateStatus();
1052
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001053 return ret_value;
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -07001054 }
1055
1056 default:
1057 LOG(ERROR) << "Reset not allowed in this state.";
1058 return false;
1059 }
1060}
1061
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001062bool UpdateAttempter::GetStatus(int64_t* last_checked_time,
1063 double* progress,
Gilad Arnold28e2f392012-02-09 14:36:46 -08001064 string* current_operation,
1065 string* new_version,
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001066 int64_t* new_payload_size) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001067 *last_checked_time = last_checked_time_;
1068 *progress = download_progress_;
1069 *current_operation = UpdateStatusToString(status_);
1070 *new_version = new_version_;
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001071 *new_payload_size = new_payload_size_;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001072 return true;
1073}
1074
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001075void UpdateAttempter::UpdateBootFlags() {
Darin Petkov58dd1342011-05-06 12:05:13 -07001076 if (update_boot_flags_running_) {
1077 LOG(INFO) << "Update boot flags running, nothing to do.";
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001078 return;
1079 }
Darin Petkov58dd1342011-05-06 12:05:13 -07001080 if (updated_boot_flags_) {
1081 LOG(INFO) << "Already updated boot flags. Skipping.";
1082 if (start_action_processor_) {
1083 ScheduleProcessingStart();
1084 }
1085 return;
1086 }
1087 // This is purely best effort. Failures should be logged by Subprocess. Run
1088 // the script asynchronously to avoid blocking the event loop regardless of
1089 // the script runtime.
1090 update_boot_flags_running_ = true;
1091 LOG(INFO) << "Updating boot flags...";
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001092 vector<string> cmd(1, "/usr/sbin/chromeos-setgoodkernel");
Darin Petkov58dd1342011-05-06 12:05:13 -07001093 if (!Subprocess::Get().Exec(cmd, StaticCompleteUpdateBootFlags, this)) {
1094 CompleteUpdateBootFlags(1);
1095 }
1096}
1097
1098void UpdateAttempter::CompleteUpdateBootFlags(int return_code) {
1099 update_boot_flags_running_ = false;
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001100 updated_boot_flags_ = true;
Darin Petkov58dd1342011-05-06 12:05:13 -07001101 if (start_action_processor_) {
1102 ScheduleProcessingStart();
1103 }
1104}
1105
1106void UpdateAttempter::StaticCompleteUpdateBootFlags(
1107 int return_code,
Gilad Arnold28e2f392012-02-09 14:36:46 -08001108 const string& output,
Darin Petkov58dd1342011-05-06 12:05:13 -07001109 void* p) {
1110 reinterpret_cast<UpdateAttempter*>(p)->CompleteUpdateBootFlags(return_code);
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001111}
1112
Darin Petkov61635a92011-05-18 16:20:36 -07001113void UpdateAttempter::BroadcastStatus() {
1114 if (!dbus_service_) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001115 return;
Darin Petkov61635a92011-05-18 16:20:36 -07001116 }
Darin Petkovaf183052010-08-23 12:07:13 -07001117 last_notify_time_ = TimeTicks::Now();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001118 update_engine_service_emit_status_update(
1119 dbus_service_,
1120 last_checked_time_,
1121 download_progress_,
1122 UpdateStatusToString(status_),
1123 new_version_.c_str(),
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001124 new_payload_size_);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001125}
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001126
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001127uint32_t UpdateAttempter::GetErrorCodeFlags() {
1128 uint32_t flags = 0;
1129
J. Richard Barnette056b0ab2013-10-29 15:24:56 -07001130 if (!system_state_->hardware()->IsNormalBootMode())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001131 flags |= static_cast<uint32_t>(ErrorCode::kDevModeFlag);
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001132
1133 if (response_handler_action_.get() &&
1134 response_handler_action_->install_plan().is_resume)
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001135 flags |= static_cast<uint32_t>(ErrorCode::kResumedFlag);
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001136
J. Richard Barnette056b0ab2013-10-29 15:24:56 -07001137 if (!system_state_->hardware()->IsOfficialBuild())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001138 flags |= static_cast<uint32_t>(ErrorCode::kTestImageFlag);
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001139
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001140 if (omaha_request_params_->update_url() != kProductionOmahaUrl)
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001141 flags |= static_cast<uint32_t>(ErrorCode::kTestOmahaUrlFlag);
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001142
1143 return flags;
1144}
1145
David Zeuthena99981f2013-04-29 13:42:47 -07001146bool UpdateAttempter::ShouldCancel(ErrorCode* cancel_reason) {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001147 // Check if the channel we're attempting to update to is the same as the
1148 // target channel currently chosen by the user.
1149 OmahaRequestParams* params = system_state_->request_params();
1150 if (params->download_channel() != params->target_channel()) {
1151 LOG(ERROR) << "Aborting download as target channel: "
1152 << params->target_channel()
1153 << " is different from the download channel: "
1154 << params->download_channel();
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001155 *cancel_reason = ErrorCode::kUpdateCanceledByChannelChange;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001156 return true;
1157 }
1158
1159 return false;
1160}
1161
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001162void UpdateAttempter::SetStatusAndNotify(UpdateStatus status) {
Darin Petkov61635a92011-05-18 16:20:36 -07001163 status_ = status;
1164 if (update_check_scheduler_) {
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001165 update_check_scheduler_->SetUpdateStatus(status_);
Darin Petkov61635a92011-05-18 16:20:36 -07001166 }
1167 BroadcastStatus();
1168}
1169
Darin Petkov777dbfa2010-07-20 15:03:37 -07001170void UpdateAttempter::CreatePendingErrorEvent(AbstractAction* action,
David Zeuthena99981f2013-04-29 13:42:47 -07001171 ErrorCode code) {
Darin Petkov09f96c32010-07-20 09:24:57 -07001172 if (error_event_.get()) {
1173 // This shouldn't really happen.
1174 LOG(WARNING) << "There's already an existing pending error event.";
1175 return;
1176 }
Darin Petkov777dbfa2010-07-20 15:03:37 -07001177
Darin Petkovabc7bc02011-02-23 14:39:43 -08001178 // For now assume that a generic Omaha response action failure means that
1179 // there's no update so don't send an event. Also, double check that the
1180 // failure has not occurred while sending an error event -- in which case
1181 // don't schedule another. This shouldn't really happen but just in case...
1182 if ((action->Type() == OmahaResponseHandlerAction::StaticType() &&
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001183 code == ErrorCode::kError) ||
Darin Petkov777dbfa2010-07-20 15:03:37 -07001184 status_ == UPDATE_STATUS_REPORTING_ERROR_EVENT) {
1185 return;
1186 }
1187
Jay Srinivasan56d5aa42012-03-26 14:27:59 -07001188 // Classify the code to generate the appropriate result so that
1189 // the Borgmon charts show up the results correctly.
1190 // Do this before calling GetErrorCodeForAction which could potentially
1191 // augment the bit representation of code and thus cause no matches for
1192 // the switch cases below.
1193 OmahaEvent::Result event_result;
1194 switch (code) {
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001195 case ErrorCode::kOmahaUpdateIgnoredPerPolicy:
1196 case ErrorCode::kOmahaUpdateDeferredPerPolicy:
1197 case ErrorCode::kOmahaUpdateDeferredForBackoff:
Jay Srinivasan56d5aa42012-03-26 14:27:59 -07001198 event_result = OmahaEvent::kResultUpdateDeferred;
1199 break;
1200 default:
1201 event_result = OmahaEvent::kResultError;
1202 break;
1203 }
1204
Darin Petkov777dbfa2010-07-20 15:03:37 -07001205 code = GetErrorCodeForAction(action, code);
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001206 fake_update_success_ = code == ErrorCode::kPostinstallBootedFromFirmwareB;
Darin Petkov18c7bce2011-06-16 14:07:00 -07001207
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001208 // Compute the final error code with all the bit flags to be sent to Omaha.
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001209 code = static_cast<ErrorCode>(
1210 static_cast<uint32_t>(code) | GetErrorCodeFlags());
Darin Petkov09f96c32010-07-20 09:24:57 -07001211 error_event_.reset(new OmahaEvent(OmahaEvent::kTypeUpdateComplete,
Jay Srinivasan56d5aa42012-03-26 14:27:59 -07001212 event_result,
Darin Petkov09f96c32010-07-20 09:24:57 -07001213 code));
1214}
1215
1216bool UpdateAttempter::ScheduleErrorEventAction() {
1217 if (error_event_.get() == NULL)
1218 return false;
1219
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001220 LOG(ERROR) << "Update failed.";
1221 system_state_->payload_state()->UpdateFailed(error_event_->error_code);
1222
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001223 // Send it to Uma.
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001224 LOG(INFO) << "Reporting the error event";
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001225 utils::SendErrorCodeToUma(system_state_, error_event_->error_code);
1226
1227 // Send it to Omaha.
Darin Petkov09f96c32010-07-20 09:24:57 -07001228 shared_ptr<OmahaRequestAction> error_event_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001229 new OmahaRequestAction(system_state_,
Darin Petkov09f96c32010-07-20 09:24:57 -07001230 error_event_.release(), // Pass ownership.
Jay Srinivasan08fce042012-06-07 16:31:01 -07001231 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001232 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -07001233 false));
Darin Petkov09f96c32010-07-20 09:24:57 -07001234 actions_.push_back(shared_ptr<AbstractAction>(error_event_action));
Darin Petkovf42cc1c2010-09-01 09:03:02 -07001235 processor_->EnqueueAction(error_event_action.get());
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001236 SetStatusAndNotify(UPDATE_STATUS_REPORTING_ERROR_EVENT);
Darin Petkovf42cc1c2010-09-01 09:03:02 -07001237 processor_->StartProcessing();
Darin Petkov09f96c32010-07-20 09:24:57 -07001238 return true;
1239}
1240
Chris Sosa4f8ee272012-11-30 13:01:54 -08001241void UpdateAttempter::SetCpuShares(utils::CpuShares shares) {
1242 if (shares_ == shares) {
Darin Petkovc6c135c2010-08-11 13:36:18 -07001243 return;
1244 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001245 if (utils::SetCpuShares(shares)) {
1246 shares_ = shares;
1247 LOG(INFO) << "CPU shares = " << shares_;
Darin Petkovc6c135c2010-08-11 13:36:18 -07001248 }
1249}
1250
Chris Sosa4f8ee272012-11-30 13:01:54 -08001251void UpdateAttempter::SetupCpuSharesManagement() {
1252 if (manage_shares_source_) {
1253 LOG(ERROR) << "Cpu shares timeout source hasn't been destroyed.";
1254 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -07001255 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001256 const int kCpuSharesTimeout = 2 * 60 * 60; // 2 hours
1257 manage_shares_source_ = g_timeout_source_new_seconds(kCpuSharesTimeout);
1258 g_source_set_callback(manage_shares_source_,
1259 StaticManageCpuSharesCallback,
Darin Petkovc6c135c2010-08-11 13:36:18 -07001260 this,
1261 NULL);
Chris Sosa4f8ee272012-11-30 13:01:54 -08001262 g_source_attach(manage_shares_source_, NULL);
1263 SetCpuShares(utils::kCpuSharesLow);
Darin Petkovc6c135c2010-08-11 13:36:18 -07001264}
1265
Chris Sosa4f8ee272012-11-30 13:01:54 -08001266void UpdateAttempter::CleanupCpuSharesManagement() {
1267 if (manage_shares_source_) {
1268 g_source_destroy(manage_shares_source_);
1269 manage_shares_source_ = NULL;
Darin Petkovc6c135c2010-08-11 13:36:18 -07001270 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001271 SetCpuShares(utils::kCpuSharesNormal);
Darin Petkovc6c135c2010-08-11 13:36:18 -07001272}
1273
Chris Sosa4f8ee272012-11-30 13:01:54 -08001274gboolean UpdateAttempter::StaticManageCpuSharesCallback(gpointer data) {
1275 return reinterpret_cast<UpdateAttempter*>(data)->ManageCpuSharesCallback();
Darin Petkovc6c135c2010-08-11 13:36:18 -07001276}
1277
Darin Petkove6ef2f82011-03-07 17:31:11 -08001278gboolean UpdateAttempter::StaticStartProcessing(gpointer data) {
1279 reinterpret_cast<UpdateAttempter*>(data)->processor_->StartProcessing();
1280 return FALSE; // Don't call this callback again.
1281}
1282
Darin Petkov58dd1342011-05-06 12:05:13 -07001283void UpdateAttempter::ScheduleProcessingStart() {
1284 LOG(INFO) << "Scheduling an action processor start.";
1285 start_action_processor_ = false;
1286 g_idle_add(&StaticStartProcessing, this);
1287}
1288
Chris Sosa4f8ee272012-11-30 13:01:54 -08001289bool UpdateAttempter::ManageCpuSharesCallback() {
1290 SetCpuShares(utils::kCpuSharesNormal);
1291 manage_shares_source_ = NULL;
Darin Petkovf622ef72010-10-26 13:49:24 -07001292 return false; // Destroy the timeout source.
Darin Petkovc6c135c2010-08-11 13:36:18 -07001293}
1294
Darin Petkov36275772010-10-01 11:40:57 -07001295void UpdateAttempter::DisableDeltaUpdateIfNeeded() {
1296 int64_t delta_failures;
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001297 if (omaha_request_params_->delta_okay() &&
Darin Petkov36275772010-10-01 11:40:57 -07001298 prefs_->GetInt64(kPrefsDeltaUpdateFailures, &delta_failures) &&
1299 delta_failures >= kMaxDeltaUpdateFailures) {
1300 LOG(WARNING) << "Too many delta update failures, forcing full update.";
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001301 omaha_request_params_->set_delta_okay(false);
Darin Petkov36275772010-10-01 11:40:57 -07001302 }
1303}
1304
1305void UpdateAttempter::MarkDeltaUpdateFailure() {
Darin Petkov2dd01092010-10-08 15:43:05 -07001306 // Don't try to resume a failed delta update.
1307 DeltaPerformer::ResetUpdateProgress(prefs_, false);
Darin Petkov36275772010-10-01 11:40:57 -07001308 int64_t delta_failures;
1309 if (!prefs_->GetInt64(kPrefsDeltaUpdateFailures, &delta_failures) ||
1310 delta_failures < 0) {
1311 delta_failures = 0;
1312 }
1313 prefs_->SetInt64(kPrefsDeltaUpdateFailures, ++delta_failures);
1314}
1315
Darin Petkov9b230572010-10-08 10:20:09 -07001316void UpdateAttempter::SetupDownload() {
Gilad Arnold9bedeb52011-11-17 16:19:57 -08001317 MultiRangeHttpFetcher* fetcher =
1318 dynamic_cast<MultiRangeHttpFetcher*>(download_action_->http_fetcher());
Andrew de los Reyes819fef22010-12-17 11:33:58 -08001319 fetcher->ClearRanges();
Darin Petkov9b230572010-10-08 10:20:09 -07001320 if (response_handler_action_->install_plan().is_resume) {
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001321 // Resuming an update so fetch the update manifest metadata first.
Darin Petkov9b230572010-10-08 10:20:09 -07001322 int64_t manifest_metadata_size = 0;
1323 prefs_->GetInt64(kPrefsManifestMetadataSize, &manifest_metadata_size);
Andrew de los Reyes819fef22010-12-17 11:33:58 -08001324 fetcher->AddRange(0, manifest_metadata_size);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001325 // If there're remaining unprocessed data blobs, fetch them. Be careful not
1326 // to request data beyond the end of the payload to avoid 416 HTTP response
1327 // error codes.
Darin Petkov9b230572010-10-08 10:20:09 -07001328 int64_t next_data_offset = 0;
1329 prefs_->GetInt64(kPrefsUpdateStateNextDataOffset, &next_data_offset);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001330 uint64_t resume_offset = manifest_metadata_size + next_data_offset;
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001331 if (resume_offset < response_handler_action_->install_plan().payload_size) {
Gilad Arnolde4ad2502011-12-29 17:08:54 -08001332 fetcher->AddRange(resume_offset);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001333 }
Darin Petkov9b230572010-10-08 10:20:09 -07001334 } else {
Gilad Arnolde4ad2502011-12-29 17:08:54 -08001335 fetcher->AddRange(0);
Darin Petkov9b230572010-10-08 10:20:09 -07001336 }
Darin Petkov9b230572010-10-08 10:20:09 -07001337}
1338
Thieu Le116fda32011-04-19 11:01:54 -07001339void UpdateAttempter::PingOmaha() {
Thieu Led88a8572011-05-26 09:09:19 -07001340 if (!processor_->IsRunning()) {
1341 shared_ptr<OmahaRequestAction> ping_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001342 new OmahaRequestAction(system_state_,
Thieu Led88a8572011-05-26 09:09:19 -07001343 NULL,
Jay Srinivasan08fce042012-06-07 16:31:01 -07001344 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001345 system_state_),
Thieu Led88a8572011-05-26 09:09:19 -07001346 true));
1347 actions_.push_back(shared_ptr<OmahaRequestAction>(ping_action));
1348 processor_->set_delegate(NULL);
1349 processor_->EnqueueAction(ping_action.get());
1350 // Call StartProcessing() synchronously here to avoid any race conditions
1351 // caused by multiple outstanding ping Omaha requests. If we call
1352 // StartProcessing() asynchronously, the device can be suspended before we
1353 // get a chance to callback to StartProcessing(). When the device resumes
1354 // (assuming the device sleeps longer than the next update check period),
1355 // StartProcessing() is called back and at the same time, the next update
1356 // check is fired which eventually invokes StartProcessing(). A crash
1357 // can occur because StartProcessing() checks to make sure that the
1358 // processor is idle which it isn't due to the two concurrent ping Omaha
1359 // requests.
1360 processor_->StartProcessing();
1361 } else {
Darin Petkov58dd1342011-05-06 12:05:13 -07001362 LOG(WARNING) << "Action processor running, Omaha ping suppressed.";
Darin Petkov58dd1342011-05-06 12:05:13 -07001363 }
Thieu Led88a8572011-05-26 09:09:19 -07001364
1365 // Update the status which will schedule the next update check
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001366 SetStatusAndNotify(UPDATE_STATUS_UPDATED_NEED_REBOOT);
Thieu Le116fda32011-04-19 11:01:54 -07001367}
1368
Jay Srinivasan480ddfa2012-06-01 19:15:26 -07001369
1370bool UpdateAttempter::DecrementUpdateCheckCount() {
1371 int64 update_check_count_value;
1372
1373 if (!prefs_->Exists(kPrefsUpdateCheckCount)) {
1374 // This file does not exist. This means we haven't started our update
1375 // check count down yet, so nothing more to do. This file will be created
1376 // later when we first satisfy the wall-clock-based-wait period.
1377 LOG(INFO) << "No existing update check count. That's normal.";
1378 return true;
1379 }
1380
1381 if (prefs_->GetInt64(kPrefsUpdateCheckCount, &update_check_count_value)) {
1382 // Only if we're able to read a proper integer value, then go ahead
1383 // and decrement and write back the result in the same file, if needed.
1384 LOG(INFO) << "Update check count = " << update_check_count_value;
1385
1386 if (update_check_count_value == 0) {
1387 // It could be 0, if, for some reason, the file didn't get deleted
1388 // when we set our status to waiting for reboot. so we just leave it
1389 // as is so that we can prevent another update_check wait for this client.
1390 LOG(INFO) << "Not decrementing update check count as it's already 0.";
1391 return true;
1392 }
1393
1394 if (update_check_count_value > 0)
1395 update_check_count_value--;
1396 else
1397 update_check_count_value = 0;
1398
1399 // Write out the new value of update_check_count_value.
1400 if (prefs_->SetInt64(kPrefsUpdateCheckCount, update_check_count_value)) {
1401 // We successfully wrote out te new value, so enable the
1402 // update check based wait.
1403 LOG(INFO) << "New update check count = " << update_check_count_value;
1404 return true;
1405 }
1406 }
1407
1408 LOG(INFO) << "Deleting update check count state due to read/write errors.";
1409
1410 // We cannot read/write to the file, so disable the update check based wait
1411 // so that we don't get stuck in this OS version by any chance (which could
1412 // happen if there's some bug that causes to read/write incorrectly).
1413 // Also attempt to delete the file to do our best effort to cleanup.
1414 prefs_->Delete(kPrefsUpdateCheckCount);
1415 return false;
1416}
Chris Sosad317e402013-06-12 13:47:09 -07001417
David Zeuthen8f191b22013-08-06 12:27:50 -07001418
David Zeuthene4c58bf2013-06-18 17:26:50 -07001419void UpdateAttempter::UpdateEngineStarted() {
Alex Vakulenkodea2eac2014-03-14 15:56:59 -07001420 // If we just booted into a new update, keep the previous OS version
1421 // in case we rebooted because of a crash of the old version, so we
1422 // can do a proper crash report with correcy information.
1423 // This must be done before calling
1424 // system_state_->payload_state()->UpdateEngineStarted() since it will
1425 // delete SystemUpdated marker file.
1426 if (system_state_->system_rebooted() &&
1427 prefs_->Exists(kPrefsSystemUpdatedMarker)) {
1428 if (!prefs_->GetString(kPrefsPreviousVersion, &prev_version_)) {
1429 // If we fail to get the version string, make sure it stays empty.
1430 prev_version_.clear();
1431 }
1432 }
1433
David Zeuthene4c58bf2013-06-18 17:26:50 -07001434 system_state_->payload_state()->UpdateEngineStarted();
David Zeuthen8f191b22013-08-06 12:27:50 -07001435 StartP2PAtStartup();
1436}
1437
1438bool UpdateAttempter::StartP2PAtStartup() {
1439 if (system_state_ == NULL ||
1440 !system_state_->p2p_manager()->IsP2PEnabled()) {
1441 LOG(INFO) << "Not starting p2p at startup since it's not enabled.";
1442 return false;
1443 }
1444
1445 if (system_state_->p2p_manager()->CountSharedFiles() < 1) {
1446 LOG(INFO) << "Not starting p2p at startup since our application "
1447 << "is not sharing any files.";
1448 return false;
1449 }
1450
1451 return StartP2PAndPerformHousekeeping();
1452}
1453
1454bool UpdateAttempter::StartP2PAndPerformHousekeeping() {
1455 if (system_state_ == NULL)
1456 return false;
1457
1458 if (!system_state_->p2p_manager()->IsP2PEnabled()) {
1459 LOG(INFO) << "Not starting p2p since it's not enabled.";
1460 return false;
1461 }
1462
1463 LOG(INFO) << "Ensuring that p2p is running.";
1464 if (!system_state_->p2p_manager()->EnsureP2PRunning()) {
1465 LOG(ERROR) << "Error starting p2p.";
1466 return false;
1467 }
1468
1469 LOG(INFO) << "Performing p2p housekeeping.";
1470 if (!system_state_->p2p_manager()->PerformHousekeeping()) {
1471 LOG(ERROR) << "Error performing housekeeping for p2p.";
1472 return false;
1473 }
1474
1475 LOG(INFO) << "Done performing p2p housekeeping.";
1476 return true;
David Zeuthene4c58bf2013-06-18 17:26:50 -07001477}
1478
David Zeuthen3c55abd2013-10-14 12:48:03 -07001479bool UpdateAttempter::GetBootTimeAtUpdate(base::Time *out_boot_time) {
1480 if (update_completed_marker_.empty())
1481 return false;
1482
1483 string contents;
1484 if (!utils::ReadFile(update_completed_marker_, &contents))
1485 return false;
1486
1487 char *endp;
1488 int64_t stored_value = strtoll(contents.c_str(), &endp, 10);
1489 if (*endp != '\0') {
1490 LOG(ERROR) << "Error parsing file " << update_completed_marker_ << " "
1491 << "with content '" << contents << "'";
1492 return false;
1493 }
1494
1495 *out_boot_time = Time::FromInternalValue(stored_value);
1496 return true;
1497}
1498
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001499} // namespace chromeos_update_engine