blob: a31e1351a8fd7b325a66425d1cc3bae23aa188f2 [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>
Daniel Erat65f1da02014-06-27 22:05:38 -070017#include <base/strings/string_util.h>
Alex Vakulenko75039d72014-03-25 12:36:28 -070018#include <base/strings/stringprintf.h>
Daniel Eratc1f07c32013-10-10 10:18:02 -070019#include <chromeos/dbus/service_constants.h>
David Zeuthen3c55abd2013-10-14 12:48:03 -070020
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070021#include <glib.h>
Darin Petkov1023a602010-08-30 13:47:51 -070022#include <metrics/metrics_library.h>
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +020023#include <policy/device_policy.h>
Alex Deymobc91a272014-05-20 16:45:33 -070024#include <policy/libpolicy.h>
Darin Petkov9d65b7b2010-07-20 09:13:01 -070025
Bruno Rocha7f9aea22011-09-12 14:31:24 -070026#include "update_engine/certificate_checker.h"
David Zeuthen985b1122013-10-09 12:13:15 -070027#include "update_engine/clock_interface.h"
Jay Srinivasand29695d2013-04-08 15:08:05 -070028#include "update_engine/constants.h"
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070029#include "update_engine/dbus_service.h"
Daniel Erat65f1da02014-06-27 22:05:38 -070030#include "update_engine/dbus_wrapper_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070031#include "update_engine/download_action.h"
32#include "update_engine/filesystem_copier_action.h"
Alex Deymo42432912013-07-12 20:21:15 -070033#include "update_engine/hardware_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070034#include "update_engine/libcurl_http_fetcher.h"
David Zeuthen33bae492014-02-25 16:16:18 -080035#include "update_engine/metrics.h"
Andrew de los Reyes819fef22010-12-17 11:33:58 -080036#include "update_engine/multi_range_http_fetcher.h"
Darin Petkov6a5b3222010-07-13 14:55:28 -070037#include "update_engine/omaha_request_action.h"
Darin Petkova4a8a8c2010-07-15 22:21:12 -070038#include "update_engine/omaha_request_params.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070039#include "update_engine/omaha_response_handler_action.h"
David Zeuthen8f191b22013-08-06 12:27:50 -070040#include "update_engine/p2p_manager.h"
Jay Srinivasan55f50c22013-01-10 19:24:35 -080041#include "update_engine/payload_state_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070042#include "update_engine/postinstall_runner_action.h"
Darin Petkov36275772010-10-01 11:40:57 -070043#include "update_engine/prefs_interface.h"
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -070044#include "update_engine/subprocess.h"
Jay Srinivasan43488792012-06-19 00:25:31 -070045#include "update_engine/system_state.h"
Darin Petkov1023a602010-08-30 13:47:51 -070046#include "update_engine/update_check_scheduler.h"
J. Richard Barnette30842932013-10-28 15:04:23 -070047#include "update_engine/utils.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070048
Alex Deymobc91a272014-05-20 16:45:33 -070049using base::StringPrintf;
David Zeuthen3c55abd2013-10-14 12:48:03 -070050using base::Time;
Darin Petkovaf183052010-08-23 12:07:13 -070051using base::TimeDelta;
52using base::TimeTicks;
Andrew de los Reyes21816e12011-04-07 14:18:56 -070053using google::protobuf::NewPermanentCallback;
Darin Petkov9b230572010-10-08 10:20:09 -070054using std::make_pair;
Jay Srinivasan43488792012-06-19 00:25:31 -070055using std::set;
Alex Deymobc91a272014-05-20 16:45:33 -070056using std::shared_ptr;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070057using std::string;
58using std::vector;
59
60namespace chromeos_update_engine {
61
Darin Petkov36275772010-10-01 11:40:57 -070062const int UpdateAttempter::kMaxDeltaUpdateFailures = 3;
63
Andrew de los Reyes45168102010-11-22 11:13:50 -080064namespace {
65const int kMaxConsecutiveObeyProxyRequests = 20;
Gilad Arnold70e476e2013-07-30 16:01:13 -070066
67const char* kUpdateCompletedMarker =
68 "/var/run/update_engine_autoupdate_completed";
Alex Vakulenkod2779df2014-06-16 13:19:00 -070069} // namespace
Andrew de los Reyes45168102010-11-22 11:13:50 -080070
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070071const char* UpdateStatusToString(UpdateStatus status) {
72 switch (status) {
73 case UPDATE_STATUS_IDLE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070074 return update_engine::kUpdateStatusIdle;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070075 case UPDATE_STATUS_CHECKING_FOR_UPDATE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070076 return update_engine::kUpdateStatusCheckingForUpdate;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070077 case UPDATE_STATUS_UPDATE_AVAILABLE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070078 return update_engine::kUpdateStatusUpdateAvailable;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070079 case UPDATE_STATUS_DOWNLOADING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070080 return update_engine::kUpdateStatusDownloading;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070081 case UPDATE_STATUS_VERIFYING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070082 return update_engine::kUpdateStatusVerifying;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070083 case UPDATE_STATUS_FINALIZING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070084 return update_engine::kUpdateStatusFinalizing;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070085 case UPDATE_STATUS_UPDATED_NEED_REBOOT:
Daniel Eratc1f07c32013-10-10 10:18:02 -070086 return update_engine::kUpdateStatusUpdatedNeedReboot;
Darin Petkov09f96c32010-07-20 09:24:57 -070087 case UPDATE_STATUS_REPORTING_ERROR_EVENT:
Daniel Eratc1f07c32013-10-10 10:18:02 -070088 return update_engine::kUpdateStatusReportingErrorEvent;
Chris Sosad317e402013-06-12 13:47:09 -070089 case UPDATE_STATUS_ATTEMPTING_ROLLBACK:
Daniel Eratc1f07c32013-10-10 10:18:02 -070090 return update_engine::kUpdateStatusAttemptingRollback;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070091 default:
92 return "unknown status";
93 }
94}
95
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -070096// Turns a generic ErrorCode::kError to a generic error code specific
97// to |action| (e.g., ErrorCode::kFilesystemCopierError). If |code| is
98// not ErrorCode::kError, or the action is not matched, returns |code|
Darin Petkov777dbfa2010-07-20 15:03:37 -070099// unchanged.
David Zeuthena99981f2013-04-29 13:42:47 -0700100ErrorCode GetErrorCodeForAction(AbstractAction* action,
101 ErrorCode code) {
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700102 if (code != ErrorCode::kError)
Darin Petkov777dbfa2010-07-20 15:03:37 -0700103 return code;
104
105 const string type = action->Type();
106 if (type == OmahaRequestAction::StaticType())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700107 return ErrorCode::kOmahaRequestError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700108 if (type == OmahaResponseHandlerAction::StaticType())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700109 return ErrorCode::kOmahaResponseHandlerError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700110 if (type == FilesystemCopierAction::StaticType())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700111 return ErrorCode::kFilesystemCopierError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700112 if (type == PostinstallRunnerAction::StaticType())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700113 return ErrorCode::kPostinstallRunnerError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700114
115 return code;
116}
117
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800118UpdateAttempter::UpdateAttempter(SystemState* system_state,
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -0800119 DBusWrapperInterface* dbus_iface)
Gilad Arnold1f847232014-04-07 12:07:49 -0700120 : UpdateAttempter(system_state, dbus_iface, kUpdateCompletedMarker) {}
Gilad Arnold70e476e2013-07-30 16:01:13 -0700121
122UpdateAttempter::UpdateAttempter(SystemState* system_state,
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -0800123 DBusWrapperInterface* dbus_iface,
Gilad Arnold70e476e2013-07-30 16:01:13 -0700124 const std::string& update_completed_marker)
Gilad Arnold1f847232014-04-07 12:07:49 -0700125 : processor_(new ActionProcessor()),
126 system_state_(system_state),
Daniel Erat65f1da02014-06-27 22:05:38 -0700127 dbus_iface_(dbus_iface),
Gilad Arnold1f847232014-04-07 12:07:49 -0700128 chrome_proxy_resolver_(dbus_iface),
129 update_completed_marker_(update_completed_marker) {
Gilad Arnold70e476e2013-07-30 16:01:13 -0700130 if (!update_completed_marker_.empty() &&
Daniel Erat65f1da02014-06-27 22:05:38 -0700131 utils::FileExists(update_completed_marker_.c_str())) {
Darin Petkovc6c135c2010-08-11 13:36:18 -0700132 status_ = UPDATE_STATUS_UPDATED_NEED_REBOOT;
Daniel Erat65f1da02014-06-27 22:05:38 -0700133 } else {
Gilad Arnold70e476e2013-07-30 16:01:13 -0700134 status_ = UPDATE_STATUS_IDLE;
Daniel Erat65f1da02014-06-27 22:05:38 -0700135 }
Darin Petkovc6c135c2010-08-11 13:36:18 -0700136}
137
Gilad Arnold1f847232014-04-07 12:07:49 -0700138void UpdateAttempter::Init() {
139 // Pulling from the SystemState can only be done after construction, since
140 // this is an aggregate of various objects (such as the UpdateAttempter),
141 // which requires them all to be constructed prior to it being used.
142 prefs_ = system_state_->prefs();
143 omaha_request_params_ = system_state_->request_params();
144}
145
Darin Petkovc6c135c2010-08-11 13:36:18 -0700146UpdateAttempter::~UpdateAttempter() {
Chris Sosa4f8ee272012-11-30 13:01:54 -0800147 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700148}
149
David Zeuthen985b1122013-10-09 12:13:15 -0700150bool UpdateAttempter::CheckAndReportDailyMetrics() {
151 int64_t stored_value;
152 base::Time now = system_state_->clock()->GetWallclockTime();
153 if (system_state_->prefs()->Exists(kPrefsDailyMetricsLastReportedAt) &&
154 system_state_->prefs()->GetInt64(kPrefsDailyMetricsLastReportedAt,
155 &stored_value)) {
156 base::Time last_reported_at = base::Time::FromInternalValue(stored_value);
157 base::TimeDelta time_reported_since = now - last_reported_at;
158 if (time_reported_since.InSeconds() < 0) {
159 LOG(WARNING) << "Last reported daily metrics "
160 << utils::FormatTimeDelta(time_reported_since) << " ago "
161 << "which is negative. Either the system clock is wrong or "
162 << "the kPrefsDailyMetricsLastReportedAt state variable "
163 << "is wrong.";
164 // In this case, report daily metrics to reset.
165 } else {
166 if (time_reported_since.InSeconds() < 24*60*60) {
167 LOG(INFO) << "Last reported daily metrics "
168 << utils::FormatTimeDelta(time_reported_since) << " ago.";
169 return false;
170 }
171 LOG(INFO) << "Last reported daily metrics "
172 << utils::FormatTimeDelta(time_reported_since) << " ago, "
173 << "which is more than 24 hours ago.";
174 }
175 }
176
177 LOG(INFO) << "Reporting daily metrics.";
178 system_state_->prefs()->SetInt64(kPrefsDailyMetricsLastReportedAt,
179 now.ToInternalValue());
180
181 ReportOSAge();
182
183 return true;
184}
185
186void UpdateAttempter::ReportOSAge() {
187 struct stat sb;
188
189 if (system_state_ == NULL)
190 return;
191
192 if (stat("/etc/lsb-release", &sb) != 0) {
193 PLOG(ERROR) << "Error getting file status for /etc/lsb-release";
194 return;
195 }
196
197 base::Time lsb_release_timestamp = utils::TimeFromStructTimespec(&sb.st_ctim);
198 base::Time now = system_state_->clock()->GetWallclockTime();
199 base::TimeDelta age = now - lsb_release_timestamp;
200 if (age.InSeconds() < 0) {
201 LOG(ERROR) << "The OS age (" << utils::FormatTimeDelta(age)
202 << ") is negative. Maybe the clock is wrong?";
203 return;
204 }
205
206 std::string metric = "Installer.OSAgeDays";
207 LOG(INFO) << "Uploading " << utils::FormatTimeDelta(age)
208 << " for metric " << metric;
209 system_state_->metrics_lib()->SendToUMA(
210 metric,
211 static_cast<int>(age.InDays()),
212 0, // min: 0 days
213 6*30, // max: 6 months (approx)
214 kNumDefaultUmaBuckets);
David Zeuthen33bae492014-02-25 16:16:18 -0800215
216 metrics::ReportDailyMetrics(system_state_, age);
David Zeuthen985b1122013-10-09 12:13:15 -0700217}
218
Gilad Arnold28e2f392012-02-09 14:36:46 -0800219void UpdateAttempter::Update(const string& app_version,
220 const string& omaha_url,
Andrew de los Reyesfb2f4612011-06-09 18:21:49 -0700221 bool obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700222 bool interactive) {
David Zeuthen985b1122013-10-09 12:13:15 -0700223 // This is called at least every 4 hours (see the constant
224 // UpdateCheckScheduler::kTimeoutMaxBackoffInterval) so it's
225 // appropriate to use as a hook for reporting daily metrics.
226 CheckAndReportDailyMetrics();
227
Andrew de los Reyes000d8952011-03-02 15:21:14 -0800228 chrome_proxy_resolver_.Init();
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700229 fake_update_success_ = false;
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700230 if (status_ == UPDATE_STATUS_UPDATED_NEED_REBOOT) {
Thieu Le116fda32011-04-19 11:01:54 -0700231 // Although we have applied an update, we still want to ping Omaha
232 // to ensure the number of active statistics is accurate.
David Zeuthen33bae492014-02-25 16:16:18 -0800233 //
234 // Also convey to the UpdateEngine.Check.Result metric that we're
235 // not performing an update check because of this.
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700236 LOG(INFO) << "Not updating b/c we already updated and we're waiting for "
Thieu Le116fda32011-04-19 11:01:54 -0700237 << "reboot, we'll ping Omaha instead";
David Zeuthen33bae492014-02-25 16:16:18 -0800238 metrics::ReportUpdateCheckMetrics(system_state_,
239 metrics::CheckResult::kRebootPending,
240 metrics::CheckReaction::kUnset,
241 metrics::DownloadErrorCode::kUnset);
Thieu Le116fda32011-04-19 11:01:54 -0700242 PingOmaha();
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700243 return;
244 }
245 if (status_ != UPDATE_STATUS_IDLE) {
246 // Update in progress. Do nothing
247 return;
248 }
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700249
250 if (!CalculateUpdateParams(app_version,
251 omaha_url,
252 obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700253 interactive)) {
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700254 return;
255 }
256
257 BuildUpdateActions(interactive);
258
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700259 SetStatusAndNotify(UPDATE_STATUS_CHECKING_FOR_UPDATE);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700260
261 // Just in case we didn't update boot flags yet, make sure they're updated
262 // before any update processing starts.
263 start_action_processor_ = true;
264 UpdateBootFlags();
265}
266
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700267void UpdateAttempter::RefreshDevicePolicy() {
268 // Lazy initialize the policy provider, or reload the latest policy data.
269 if (!policy_provider_.get())
270 policy_provider_.reset(new policy::PolicyProvider());
271 policy_provider_->Reload();
272
273 const policy::DevicePolicy* device_policy = NULL;
274 if (policy_provider_->device_policy_is_loaded())
275 device_policy = &policy_provider_->GetDevicePolicy();
276
277 if (device_policy)
278 LOG(INFO) << "Device policies/settings present";
279 else
280 LOG(INFO) << "No device policies/settings present.";
281
282 system_state_->set_device_policy(device_policy);
David Zeuthen92d9c8b2013-09-11 10:58:11 -0700283 system_state_->p2p_manager()->SetDevicePolicy(device_policy);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700284}
285
David Zeuthen8f191b22013-08-06 12:27:50 -0700286void UpdateAttempter::CalculateP2PParams(bool interactive) {
287 bool use_p2p_for_downloading = false;
288 bool use_p2p_for_sharing = false;
289
290 // Never use p2p for downloading in interactive checks unless the
291 // developer has opted in for it via a marker file.
292 //
293 // (Why would a developer want to opt in? If he's working on the
294 // update_engine or p2p codebases so he can actually test his
295 // code.).
296
297 if (system_state_ != NULL) {
298 if (!system_state_->p2p_manager()->IsP2PEnabled()) {
299 LOG(INFO) << "p2p is not enabled - disallowing p2p for both"
300 << " downloading and sharing.";
301 } else {
302 // Allow p2p for sharing, even in interactive checks.
303 use_p2p_for_sharing = true;
304 if (!interactive) {
305 LOG(INFO) << "Non-interactive check - allowing p2p for downloading";
306 use_p2p_for_downloading = true;
307 } else {
David Zeuthen052d2902013-09-06 11:41:30 -0700308 LOG(INFO) << "Forcibly disabling use of p2p for downloading "
309 << "since this update attempt is interactive.";
David Zeuthen8f191b22013-08-06 12:27:50 -0700310 }
311 }
312 }
313
314 omaha_request_params_->set_use_p2p_for_downloading(use_p2p_for_downloading);
315 omaha_request_params_->set_use_p2p_for_sharing(use_p2p_for_sharing);
316}
317
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700318bool UpdateAttempter::CalculateUpdateParams(const string& app_version,
319 const string& omaha_url,
320 bool obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700321 bool interactive) {
Darin Petkov1023a602010-08-30 13:47:51 -0700322 http_response_code_ = 0;
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200323
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700324 RefreshDevicePolicy();
325 const policy::DevicePolicy* device_policy = system_state_->device_policy();
326 if (device_policy) {
Jay Srinivasandc9a8ca2013-03-19 18:12:38 -0700327 bool update_disabled = false;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700328 if (device_policy->GetUpdateDisabled(&update_disabled))
329 omaha_request_params_->set_update_disabled(update_disabled);
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700330
331 string target_version_prefix;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700332 if (device_policy->GetTargetVersionPrefix(&target_version_prefix))
333 omaha_request_params_->set_target_version_prefix(target_version_prefix);
Jay Srinivasan43488792012-06-19 00:25:31 -0700334
335 set<string> allowed_types;
336 string allowed_types_str;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700337 if (device_policy->GetAllowedConnectionTypesForUpdate(&allowed_types)) {
Jay Srinivasan43488792012-06-19 00:25:31 -0700338 set<string>::const_iterator iter;
339 for (iter = allowed_types.begin(); iter != allowed_types.end(); ++iter)
340 allowed_types_str += *iter + " ";
341 }
342
343 LOG(INFO) << "Networks over which updates are allowed per policy : "
344 << (allowed_types_str.empty() ? "all" : allowed_types_str);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700345 }
346
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800347 CalculateScatteringParams(interactive);
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200348
David Zeuthen8f191b22013-08-06 12:27:50 -0700349 CalculateP2PParams(interactive);
350 if (omaha_request_params_->use_p2p_for_downloading() ||
351 omaha_request_params_->use_p2p_for_sharing()) {
352 // OK, p2p is to be used - start it and perform housekeeping.
353 if (!StartP2PAndPerformHousekeeping()) {
354 // If this fails, disable p2p for this attempt
355 LOG(INFO) << "Forcibly disabling use of p2p since starting p2p or "
356 << "performing housekeeping failed.";
357 omaha_request_params_->set_use_p2p_for_downloading(false);
358 omaha_request_params_->set_use_p2p_for_sharing(false);
359 }
360 }
361
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700362 if (!omaha_request_params_->Init(app_version,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700363 omaha_url,
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700364 interactive)) {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700365 LOG(ERROR) << "Unable to initialize Omaha request params.";
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700366 return false;
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700367 }
Darin Petkov3aefa862010-12-07 14:45:00 -0800368
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700369 // Set the target channel iff ReleaseChannelDelegated policy is set to
370 // false and a non-empty ReleaseChannel policy is present. If delegated
371 // is true, we'll ignore ReleaseChannel policy value.
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700372 if (device_policy) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700373 bool delegated = false;
Chris Sosad6ab4042013-07-18 10:36:39 -0700374 if (!device_policy->GetReleaseChannelDelegated(&delegated) || delegated) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700375 LOG(INFO) << "Channel settings are delegated to user by policy. "
376 "Ignoring ReleaseChannel policy value";
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700377 } else {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700378 LOG(INFO) << "Channel settings are not delegated to the user by policy";
379 string target_channel;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700380 if (device_policy->GetReleaseChannel(&target_channel) &&
381 !target_channel.empty()) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700382 // Pass in false for powerwash_allowed until we add it to the policy
383 // protobuf.
384 LOG(INFO) << "Setting target channel from ReleaseChannel policy value";
385 omaha_request_params_->SetTargetChannel(target_channel, false);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700386
387 // Since this is the beginning of a new attempt, update the download
388 // channel. The download channel won't be updated until the next
389 // attempt, even if target channel changes meanwhile, so that how we'll
390 // know if we should cancel the current download attempt if there's
391 // such a change in target channel.
392 omaha_request_params_->UpdateDownloadChannel();
393 } else {
394 LOG(INFO) << "No ReleaseChannel specified in policy";
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700395 }
396 }
397 }
398
Jay Srinivasan0a708742012-03-20 11:26:12 -0700399 LOG(INFO) << "update_disabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700400 << utils::ToString(omaha_request_params_->update_disabled())
Jay Srinivasan0a708742012-03-20 11:26:12 -0700401 << ", target_version_prefix = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700402 << omaha_request_params_->target_version_prefix()
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700403 << ", scatter_factor_in_seconds = "
404 << utils::FormatSecs(scatter_factor_.InSeconds());
405
406 LOG(INFO) << "Wall Clock Based Wait Enabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700407 << omaha_request_params_->wall_clock_based_wait_enabled()
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700408 << ", Update Check Count Wait Enabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700409 << omaha_request_params_->update_check_count_wait_enabled()
Jay Srinivasan21be0752012-07-25 15:44:56 -0700410 << ", Waiting Period = " << utils::FormatSecs(
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700411 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan0a708742012-03-20 11:26:12 -0700412
David Zeuthen8f191b22013-08-06 12:27:50 -0700413 LOG(INFO) << "Use p2p For Downloading = "
414 << omaha_request_params_->use_p2p_for_downloading()
415 << ", Use p2p For Sharing = "
416 << omaha_request_params_->use_p2p_for_sharing();
417
Andrew de los Reyes45168102010-11-22 11:13:50 -0800418 obeying_proxies_ = true;
419 if (obey_proxies || proxy_manual_checks_ == 0) {
420 LOG(INFO) << "forced to obey proxies";
421 // If forced to obey proxies, every 20th request will not use proxies
422 proxy_manual_checks_++;
423 LOG(INFO) << "proxy manual checks: " << proxy_manual_checks_;
424 if (proxy_manual_checks_ >= kMaxConsecutiveObeyProxyRequests) {
425 proxy_manual_checks_ = 0;
426 obeying_proxies_ = false;
427 }
428 } else if (base::RandInt(0, 4) == 0) {
429 obeying_proxies_ = false;
430 }
431 LOG_IF(INFO, !obeying_proxies_) << "To help ensure updates work, this update "
432 "check we are ignoring the proxy settings and using "
433 "direct connections.";
434
Darin Petkov36275772010-10-01 11:40:57 -0700435 DisableDeltaUpdateIfNeeded();
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700436 return true;
437}
438
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800439void UpdateAttempter::CalculateScatteringParams(bool interactive) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700440 // Take a copy of the old scatter value before we update it, as
441 // we need to update the waiting period if this value changes.
442 TimeDelta old_scatter_factor = scatter_factor_;
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800443 const policy::DevicePolicy* device_policy = system_state_->device_policy();
Jay Srinivasan21be0752012-07-25 15:44:56 -0700444 if (device_policy) {
445 int64 new_scatter_factor_in_secs = 0;
446 device_policy->GetScatterFactorInSeconds(&new_scatter_factor_in_secs);
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700447 if (new_scatter_factor_in_secs < 0) // sanitize input, just in case.
Jay Srinivasan21be0752012-07-25 15:44:56 -0700448 new_scatter_factor_in_secs = 0;
449 scatter_factor_ = TimeDelta::FromSeconds(new_scatter_factor_in_secs);
450 }
451
452 bool is_scatter_enabled = false;
453 if (scatter_factor_.InSeconds() == 0) {
454 LOG(INFO) << "Scattering disabled since scatter factor is set to 0";
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800455 } else if (interactive) {
456 LOG(INFO) << "Scattering disabled as this is an interactive update check";
Alex Deymobccbc382014-04-03 13:38:55 -0700457 } else if (!system_state_->hardware()->IsOOBEComplete(nullptr)) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700458 LOG(INFO) << "Scattering disabled since OOBE is not complete yet";
459 } else {
460 is_scatter_enabled = true;
461 LOG(INFO) << "Scattering is enabled";
462 }
463
464 if (is_scatter_enabled) {
465 // This means the scattering policy is turned on.
466 // Now check if we need to update the waiting period. The two cases
467 // in which we'd need to update the waiting period are:
468 // 1. First time in process or a scheduled check after a user-initiated one.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700469 // (omaha_request_params_->waiting_period will be zero in this case).
Jay Srinivasan21be0752012-07-25 15:44:56 -0700470 // 2. Admin has changed the scattering policy value.
471 // (new scattering value will be different from old one in this case).
472 int64 wait_period_in_secs = 0;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700473 if (omaha_request_params_->waiting_period().InSeconds() == 0) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700474 // First case. Check if we have a suitable value to set for
475 // the waiting period.
476 if (prefs_->GetInt64(kPrefsWallClockWaitPeriod, &wait_period_in_secs) &&
477 wait_period_in_secs > 0 &&
478 wait_period_in_secs <= scatter_factor_.InSeconds()) {
479 // This means:
480 // 1. There's a persisted value for the waiting period available.
481 // 2. And that persisted value is still valid.
482 // So, in this case, we should reuse the persisted value instead of
483 // generating a new random value to improve the chances of a good
484 // distribution for scattering.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700485 omaha_request_params_->set_waiting_period(
486 TimeDelta::FromSeconds(wait_period_in_secs));
Jay Srinivasan21be0752012-07-25 15:44:56 -0700487 LOG(INFO) << "Using persisted wall-clock waiting period: " <<
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700488 utils::FormatSecs(
489 omaha_request_params_->waiting_period().InSeconds());
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700490 } else {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700491 // This means there's no persisted value for the waiting period
492 // available or its value is invalid given the new scatter_factor value.
493 // So, we should go ahead and regenerate a new value for the
494 // waiting period.
495 LOG(INFO) << "Persisted value not present or not valid ("
496 << utils::FormatSecs(wait_period_in_secs)
497 << ") for wall-clock waiting period.";
498 GenerateNewWaitingPeriod();
499 }
500 } else if (scatter_factor_ != old_scatter_factor) {
501 // This means there's already a waiting period value, but we detected
502 // a change in the scattering policy value. So, we should regenerate the
503 // waiting period to make sure it's within the bounds of the new scatter
504 // factor value.
505 GenerateNewWaitingPeriod();
506 } else {
507 // Neither the first time scattering is enabled nor the scattering value
508 // changed. Nothing to do.
509 LOG(INFO) << "Keeping current wall-clock waiting period: " <<
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700510 utils::FormatSecs(
511 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan21be0752012-07-25 15:44:56 -0700512 }
513
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700514 // The invariant at this point is that omaha_request_params_->waiting_period
Jay Srinivasan21be0752012-07-25 15:44:56 -0700515 // is non-zero no matter which path we took above.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700516 LOG_IF(ERROR, omaha_request_params_->waiting_period().InSeconds() == 0)
Jay Srinivasan21be0752012-07-25 15:44:56 -0700517 << "Waiting Period should NOT be zero at this point!!!";
518
519 // Since scattering is enabled, wall clock based wait will always be
520 // enabled.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700521 omaha_request_params_->set_wall_clock_based_wait_enabled(true);
Jay Srinivasan21be0752012-07-25 15:44:56 -0700522
523 // If we don't have any issues in accessing the file system to update
524 // the update check count value, we'll turn that on as well.
525 bool decrement_succeeded = DecrementUpdateCheckCount();
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700526 omaha_request_params_->set_update_check_count_wait_enabled(
527 decrement_succeeded);
Jay Srinivasan21be0752012-07-25 15:44:56 -0700528 } else {
529 // This means the scattering feature is turned off or disabled for
530 // this particular update check. Make sure to disable
531 // all the knobs and artifacts so that we don't invoke any scattering
532 // related code.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700533 omaha_request_params_->set_wall_clock_based_wait_enabled(false);
534 omaha_request_params_->set_update_check_count_wait_enabled(false);
535 omaha_request_params_->set_waiting_period(TimeDelta::FromSeconds(0));
Jay Srinivasan21be0752012-07-25 15:44:56 -0700536 prefs_->Delete(kPrefsWallClockWaitPeriod);
537 prefs_->Delete(kPrefsUpdateCheckCount);
538 // Don't delete the UpdateFirstSeenAt file as we don't want manual checks
539 // that result in no-updates (e.g. due to server side throttling) to
540 // cause update starvation by having the client generate a new
541 // UpdateFirstSeenAt for each scheduled check that follows a manual check.
542 }
543}
544
545void UpdateAttempter::GenerateNewWaitingPeriod() {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700546 omaha_request_params_->set_waiting_period(TimeDelta::FromSeconds(
547 base::RandInt(1, scatter_factor_.InSeconds())));
Jay Srinivasan21be0752012-07-25 15:44:56 -0700548
549 LOG(INFO) << "Generated new wall-clock waiting period: " << utils::FormatSecs(
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700550 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan21be0752012-07-25 15:44:56 -0700551
552 // Do a best-effort to persist this in all cases. Even if the persistence
553 // fails, we'll still be able to scatter based on our in-memory value.
554 // The persistence only helps in ensuring a good overall distribution
555 // across multiple devices if they tend to reboot too often.
556 prefs_->SetInt64(kPrefsWallClockWaitPeriod,
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700557 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan21be0752012-07-25 15:44:56 -0700558}
559
Chris Sosad317e402013-06-12 13:47:09 -0700560void UpdateAttempter::BuildPostInstallActions(
561 InstallPlanAction* previous_action) {
562 shared_ptr<PostinstallRunnerAction> postinstall_runner_action(
563 new PostinstallRunnerAction());
564 actions_.push_back(shared_ptr<AbstractAction>(postinstall_runner_action));
565 BondActions(previous_action,
566 postinstall_runner_action.get());
567}
568
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700569void UpdateAttempter::BuildUpdateActions(bool interactive) {
Darin Petkovf42cc1c2010-09-01 09:03:02 -0700570 CHECK(!processor_->IsRunning());
571 processor_->set_delegate(this);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700572
573 // Actions:
Darin Petkova0929552010-11-29 14:19:06 -0800574 LibcurlHttpFetcher* update_check_fetcher =
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700575 new LibcurlHttpFetcher(GetProxyResolver(), system_state_);
Andrew de los Reyesfb2f4612011-06-09 18:21:49 -0700576 // Try harder to connect to the network, esp when not interactive.
577 // See comment in libcurl_http_fetcher.cc.
578 update_check_fetcher->set_no_network_max_retries(interactive ? 1 : 3);
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700579 update_check_fetcher->set_check_certificate(CertificateChecker::kUpdate);
Darin Petkov6a5b3222010-07-13 14:55:28 -0700580 shared_ptr<OmahaRequestAction> update_check_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800581 new OmahaRequestAction(system_state_,
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700582 NULL,
Thieu Le116fda32011-04-19 11:01:54 -0700583 update_check_fetcher, // passes ownership
584 false));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700585 shared_ptr<OmahaResponseHandlerAction> response_handler_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800586 new OmahaResponseHandlerAction(system_state_));
Don Garrett83692e42013-11-08 10:11:30 -0800587 // We start with the kernel so it's marked as invalid more quickly.
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700588 shared_ptr<FilesystemCopierAction> kernel_filesystem_copier_action(
Alex Deymo42432912013-07-12 20:21:15 -0700589 new FilesystemCopierAction(system_state_, true, false));
Don Garrett83692e42013-11-08 10:11:30 -0800590 shared_ptr<FilesystemCopierAction> filesystem_copier_action(
591 new FilesystemCopierAction(system_state_, false, false));
592
Darin Petkov8c2980e2010-07-16 15:16:49 -0700593 shared_ptr<OmahaRequestAction> download_started_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800594 new OmahaRequestAction(system_state_,
Darin Petkov8c2980e2010-07-16 15:16:49 -0700595 new OmahaEvent(
Darin Petkove17f86b2010-07-20 09:12:01 -0700596 OmahaEvent::kTypeUpdateDownloadStarted),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700597 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700598 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -0700599 false));
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700600 LibcurlHttpFetcher* download_fetcher =
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700601 new LibcurlHttpFetcher(GetProxyResolver(), system_state_);
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700602 download_fetcher->set_check_certificate(CertificateChecker::kDownload);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700603 shared_ptr<DownloadAction> download_action(
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700604 new DownloadAction(prefs_,
Jay Srinivasanf0572052012-10-23 18:12:56 -0700605 system_state_,
Gilad Arnold9bedeb52011-11-17 16:19:57 -0800606 new MultiRangeHttpFetcher(
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700607 download_fetcher))); // passes ownership
Darin Petkov8c2980e2010-07-16 15:16:49 -0700608 shared_ptr<OmahaRequestAction> download_finished_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800609 new OmahaRequestAction(system_state_,
Darin Petkov8c2980e2010-07-16 15:16:49 -0700610 new OmahaEvent(
Darin Petkove17f86b2010-07-20 09:12:01 -0700611 OmahaEvent::kTypeUpdateDownloadFinished),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700612 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700613 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -0700614 false));
Darin Petkov3aefa862010-12-07 14:45:00 -0800615 shared_ptr<FilesystemCopierAction> filesystem_verifier_action(
Alex Deymo42432912013-07-12 20:21:15 -0700616 new FilesystemCopierAction(system_state_, false, true));
Darin Petkov3aefa862010-12-07 14:45:00 -0800617 shared_ptr<FilesystemCopierAction> kernel_filesystem_verifier_action(
Alex Deymo42432912013-07-12 20:21:15 -0700618 new FilesystemCopierAction(system_state_, true, true));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700619 shared_ptr<OmahaRequestAction> update_complete_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800620 new OmahaRequestAction(system_state_,
Darin Petkove17f86b2010-07-20 09:12:01 -0700621 new OmahaEvent(OmahaEvent::kTypeUpdateComplete),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700622 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700623 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -0700624 false));
Darin Petkov6a5b3222010-07-13 14:55:28 -0700625
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700626 download_action->set_delegate(this);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700627 response_handler_action_ = response_handler_action;
Darin Petkov9b230572010-10-08 10:20:09 -0700628 download_action_ = download_action;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700629
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700630 actions_.push_back(shared_ptr<AbstractAction>(update_check_action));
631 actions_.push_back(shared_ptr<AbstractAction>(response_handler_action));
632 actions_.push_back(shared_ptr<AbstractAction>(filesystem_copier_action));
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700633 actions_.push_back(shared_ptr<AbstractAction>(
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700634 kernel_filesystem_copier_action));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700635 actions_.push_back(shared_ptr<AbstractAction>(download_started_action));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700636 actions_.push_back(shared_ptr<AbstractAction>(download_action));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700637 actions_.push_back(shared_ptr<AbstractAction>(download_finished_action));
Darin Petkov3aefa862010-12-07 14:45:00 -0800638 actions_.push_back(shared_ptr<AbstractAction>(filesystem_verifier_action));
Chris Sosad317e402013-06-12 13:47:09 -0700639 actions_.push_back(shared_ptr<AbstractAction>(
640 kernel_filesystem_verifier_action));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700641
642 // Bond them together. We have to use the leaf-types when calling
643 // BondActions().
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700644 BondActions(update_check_action.get(),
645 response_handler_action.get());
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700646 BondActions(response_handler_action.get(),
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700647 filesystem_copier_action.get());
648 BondActions(filesystem_copier_action.get(),
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700649 kernel_filesystem_copier_action.get());
650 BondActions(kernel_filesystem_copier_action.get(),
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700651 download_action.get());
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700652 BondActions(download_action.get(),
Darin Petkov3aefa862010-12-07 14:45:00 -0800653 filesystem_verifier_action.get());
654 BondActions(filesystem_verifier_action.get(),
655 kernel_filesystem_verifier_action.get());
Chris Sosad317e402013-06-12 13:47:09 -0700656
657 BuildPostInstallActions(kernel_filesystem_verifier_action.get());
658
659 actions_.push_back(shared_ptr<AbstractAction>(update_complete_action));
660
661 // Enqueue the actions
662 for (vector<shared_ptr<AbstractAction> >::iterator it = actions_.begin();
663 it != actions_.end(); ++it) {
664 processor_->EnqueueAction(it->get());
665 }
666}
667
Chris Sosa44b9b7e2014-04-02 13:53:46 -0700668bool UpdateAttempter::Rollback(bool powerwash) {
669 if (!CanRollback()) {
670 return false;
671 }
Chris Sosad317e402013-06-12 13:47:09 -0700672
Chris Sosa44b9b7e2014-04-02 13:53:46 -0700673 // Extra check for enterprise-enrolled devices since they don't support
674 // powerwash.
675 if (powerwash) {
676 // Enterprise-enrolled devices have an empty owner in their device policy.
677 string owner;
678 RefreshDevicePolicy();
679 const policy::DevicePolicy* device_policy = system_state_->device_policy();
680 if (device_policy && (!device_policy->GetOwner(&owner) || owner.empty())) {
681 LOG(ERROR) << "Enterprise device detected. "
682 << "Cannot perform a powerwash for enterprise devices.";
683 return false;
684 }
685 }
686
687 processor_->set_delegate(this);
Chris Sosaaa18e162013-06-20 13:20:30 -0700688
Chris Sosa28e479c2013-07-12 11:39:53 -0700689 // Initialize the default request params.
690 if (!omaha_request_params_->Init("", "", true)) {
691 LOG(ERROR) << "Unable to initialize Omaha request params.";
692 return false;
693 }
694
Chris Sosad317e402013-06-12 13:47:09 -0700695 LOG(INFO) << "Setting rollback options.";
696 InstallPlan install_plan;
Chris Sosa44b9b7e2014-04-02 13:53:46 -0700697
698 TEST_AND_RETURN_FALSE(utils::GetInstallDev(
699 system_state_->hardware()->BootDevice(),
700 &install_plan.install_path));
Chris Sosa76a29ae2013-07-11 17:59:24 -0700701
Alex Deymo42432912013-07-12 20:21:15 -0700702 install_plan.kernel_install_path =
J. Richard Barnette30842932013-10-28 15:04:23 -0700703 utils::KernelDeviceOfBootDevice(install_plan.install_path);
Chris Sosad317e402013-06-12 13:47:09 -0700704 install_plan.powerwash_required = powerwash;
705
706 LOG(INFO) << "Using this install plan:";
707 install_plan.Dump();
708
709 shared_ptr<InstallPlanAction> install_plan_action(
710 new InstallPlanAction(install_plan));
711 actions_.push_back(shared_ptr<AbstractAction>(install_plan_action));
712
713 BuildPostInstallActions(install_plan_action.get());
714
715 // Enqueue the actions
716 for (vector<shared_ptr<AbstractAction> >::iterator it = actions_.begin();
717 it != actions_.end(); ++it) {
718 processor_->EnqueueAction(it->get());
719 }
Chris Sosaaa18e162013-06-20 13:20:30 -0700720
721 // Update the payload state for Rollback.
722 system_state_->payload_state()->Rollback();
723
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700724 SetStatusAndNotify(UPDATE_STATUS_ATTEMPTING_ROLLBACK);
Chris Sosad317e402013-06-12 13:47:09 -0700725
726 // Just in case we didn't update boot flags yet, make sure they're updated
727 // before any update processing starts. This also schedules the start of the
728 // actions we just posted.
729 start_action_processor_ = true;
730 UpdateBootFlags();
Chris Sosaaa18e162013-06-20 13:20:30 -0700731 return true;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700732}
733
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800734bool UpdateAttempter::CanRollback() const {
Chris Sosa44b9b7e2014-04-02 13:53:46 -0700735 // We can only rollback if the update_engine isn't busy and we have a valid
736 // rollback partition.
737 return (status_ == UPDATE_STATUS_IDLE && !GetRollbackPartition().empty());
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700738}
739
740std::string UpdateAttempter::GetRollbackPartition() const {
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800741 std::vector<std::string> kernel_devices =
742 system_state_->hardware()->GetKernelDevices();
743
744 std::string boot_kernel_device =
745 system_state_->hardware()->BootKernelDevice();
746
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700747 LOG(INFO) << "UpdateAttempter::GetRollbackPartition";
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700748 for (const auto& name : kernel_devices)
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700749 LOG(INFO) << " Available kernel device = " << name;
750 LOG(INFO) << " Boot kernel device = " << boot_kernel_device;
751
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800752 auto current = std::find(kernel_devices.begin(), kernel_devices.end(),
753 boot_kernel_device);
754
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700755 if (current == kernel_devices.end()) {
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800756 LOG(ERROR) << "Unable to find the boot kernel device in the list of "
757 << "available devices";
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700758 return std::string();
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800759 }
760
761 for (std::string const& device_name : kernel_devices) {
762 if (device_name != *current) {
763 bool bootable = false;
764 if (system_state_->hardware()->IsKernelBootable(device_name, &bootable) &&
765 bootable) {
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700766 return device_name;
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800767 }
768 }
769 }
770
Alex Vakulenko2bddadd2014-03-27 13:23:46 -0700771 return std::string();
772}
773
774std::vector<std::pair<std::string, bool>>
775 UpdateAttempter::GetKernelDevices() const {
776 std::vector<std::string> kernel_devices =
777 system_state_->hardware()->GetKernelDevices();
778
779 std::string boot_kernel_device =
780 system_state_->hardware()->BootKernelDevice();
781
782 std::vector<std::pair<std::string, bool>> info_list;
783 info_list.reserve(kernel_devices.size());
784
785 for (std::string device_name : kernel_devices) {
786 bool bootable = false;
787 system_state_->hardware()->IsKernelBootable(device_name, &bootable);
788 // Add '*' to the name of the partition we booted from.
789 if (device_name == boot_kernel_device)
790 device_name += '*';
791 info_list.emplace_back(device_name, bootable);
792 }
793
794 return info_list;
Alex Vakulenko59e253e2014-02-24 10:40:21 -0800795}
796
Gilad Arnold28e2f392012-02-09 14:36:46 -0800797void UpdateAttempter::CheckForUpdate(const string& app_version,
Jay Srinivasane73acab2012-07-10 14:34:03 -0700798 const string& omaha_url,
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800799 bool interactive) {
Jay Srinivasan08fce042012-06-07 16:31:01 -0700800 LOG(INFO) << "New update check requested";
801
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700802 if (status_ != UPDATE_STATUS_IDLE) {
Jay Srinivasan08fce042012-06-07 16:31:01 -0700803 LOG(INFO) << "Skipping update check because current status is "
804 << UpdateStatusToString(status_);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700805 return;
806 }
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800807
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800808 // Pass through the interactive flag, in case we want to simulate a scheduled
809 // test.
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700810 Update(app_version, omaha_url, true, interactive);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700811}
812
Darin Petkov296889c2010-07-23 16:20:54 -0700813bool UpdateAttempter::RebootIfNeeded() {
814 if (status_ != UPDATE_STATUS_UPDATED_NEED_REBOOT) {
815 LOG(INFO) << "Reboot requested, but status is "
816 << UpdateStatusToString(status_) << ", so not rebooting.";
817 return false;
818 }
Daniel Erat65f1da02014-06-27 22:05:38 -0700819
820 if (USE_POWER_MANAGEMENT && RequestPowerManagerReboot())
821 return true;
822
823 return RebootDirectly();
Darin Petkov296889c2010-07-23 16:20:54 -0700824}
825
David Zeuthen3c55abd2013-10-14 12:48:03 -0700826void UpdateAttempter::WriteUpdateCompletedMarker() {
827 if (update_completed_marker_.empty())
828 return;
829
830 int64_t value = system_state_->clock()->GetBootTime().ToInternalValue();
Alex Vakulenko75039d72014-03-25 12:36:28 -0700831 string contents = base::StringPrintf("%" PRIi64, value);
David Zeuthen3c55abd2013-10-14 12:48:03 -0700832
833 utils::WriteFile(update_completed_marker_.c_str(),
834 contents.c_str(),
835 contents.length());
836}
837
Daniel Erat65f1da02014-06-27 22:05:38 -0700838bool UpdateAttempter::RequestPowerManagerReboot() {
839 GError* error = NULL;
840 DBusGConnection* bus = dbus_iface_->BusGet(DBUS_BUS_SYSTEM, &error);
841 if (!bus) {
842 LOG(ERROR) << "Failed to get system bus: "
843 << utils::GetAndFreeGError(&error);
844 return false;
845 }
846
847 LOG(INFO) << "Calling " << power_manager::kPowerManagerInterface << "."
848 << power_manager::kRequestRestartMethod;
849 DBusGProxy* proxy = dbus_iface_->ProxyNewForName(
850 bus,
851 power_manager::kPowerManagerServiceName,
852 power_manager::kPowerManagerServicePath,
853 power_manager::kPowerManagerInterface);
854 const gboolean success = dbus_iface_->ProxyCall_1_0(
855 proxy,
856 power_manager::kRequestRestartMethod,
857 &error,
858 power_manager::REQUEST_RESTART_FOR_UPDATE);
859 dbus_iface_->ProxyUnref(proxy);
860
861 if (!success) {
862 LOG(ERROR) << "Failed to call " << power_manager::kRequestRestartMethod
863 << ": " << utils::GetAndFreeGError(&error);
864 return false;
865 }
866
867 return true;
868}
869
870bool UpdateAttempter::RebootDirectly() {
871 vector<string> command;
872 command.push_back("/sbin/shutdown");
873 command.push_back("-r");
874 command.push_back("now");
875 LOG(INFO) << "Running \"" << JoinString(command, ' ') << "\"";
876 int rc = 0;
877 Subprocess::SynchronousExec(command, &rc, NULL);
878 return rc == 0;
879}
880
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700881// Delegate methods:
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700882void UpdateAttempter::ProcessingDone(const ActionProcessor* processor,
David Zeuthena99981f2013-04-29 13:42:47 -0700883 ErrorCode code) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700884 LOG(INFO) << "Processing Done.";
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700885 actions_.clear();
Darin Petkov09f96c32010-07-20 09:24:57 -0700886
Chris Sosa4f8ee272012-11-30 13:01:54 -0800887 // Reset cpu shares back to normal.
888 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700889
Darin Petkov09f96c32010-07-20 09:24:57 -0700890 if (status_ == UPDATE_STATUS_REPORTING_ERROR_EVENT) {
891 LOG(INFO) << "Error event sent.";
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800892
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700893 // Inform scheduler of new status;
894 SetStatusAndNotify(UPDATE_STATUS_IDLE);
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800895
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700896 if (!fake_update_success_) {
897 return;
898 }
899 LOG(INFO) << "Booted from FW B and tried to install new firmware, "
900 "so requesting reboot from user.";
Darin Petkov09f96c32010-07-20 09:24:57 -0700901 }
902
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -0700903 if (code == ErrorCode::kSuccess) {
David Zeuthen3c55abd2013-10-14 12:48:03 -0700904 WriteUpdateCompletedMarker();
Darin Petkov36275772010-10-01 11:40:57 -0700905 prefs_->SetInt64(kPrefsDeltaUpdateFailures, 0);
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700906 prefs_->SetString(kPrefsPreviousVersion,
907 omaha_request_params_->app_version());
Darin Petkov9b230572010-10-08 10:20:09 -0700908 DeltaPerformer::ResetUpdateProgress(prefs_, false);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700909
David Zeuthen9a017f22013-04-11 16:10:26 -0700910 system_state_->payload_state()->UpdateSucceeded();
911
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700912 // Since we're done with scattering fully at this point, this is the
913 // safest point delete the state files, as we're sure that the status is
914 // set to reboot (which means no more updates will be applied until reboot)
915 // This deletion is required for correctness as we want the next update
916 // check to re-create a new random number for the update check count.
917 // Similarly, we also delete the wall-clock-wait period that was persisted
918 // so that we start with a new random value for the next update check
919 // after reboot so that the same device is not favored or punished in any
920 // way.
921 prefs_->Delete(kPrefsUpdateCheckCount);
922 prefs_->Delete(kPrefsWallClockWaitPeriod);
Jay Srinivasan34b5d862012-07-23 11:43:22 -0700923 prefs_->Delete(kPrefsUpdateFirstSeenAt);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700924
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700925 SetStatusAndNotify(UPDATE_STATUS_UPDATED_NEED_REBOOT);
Jay Srinivasan19409b72013-04-12 19:23:36 -0700926 LOG(INFO) << "Update successfully applied, waiting to reboot.";
Darin Petkov9d65b7b2010-07-20 09:13:01 -0700927
Don Garrettaf9085e2013-11-06 18:14:29 -0800928 // This pointer is NULL during rollback operations, and the stats
929 // don't make much sense then anway.
930 if (response_handler_action_) {
931 const InstallPlan& install_plan =
932 response_handler_action_->install_plan();
Alex Deymo42432912013-07-12 20:21:15 -0700933
Don Garrettaf9085e2013-11-06 18:14:29 -0800934 // Generate an unique payload identifier.
935 const string target_version_uid =
936 install_plan.payload_hash + ":" + install_plan.metadata_signature;
Alex Deymo42432912013-07-12 20:21:15 -0700937
Don Garrettaf9085e2013-11-06 18:14:29 -0800938 // Expect to reboot into the new version to send the proper metric during
939 // next boot.
940 system_state_->payload_state()->ExpectRebootInNewVersion(
941 target_version_uid);
Alex Deymo42432912013-07-12 20:21:15 -0700942
Don Garrettaf9085e2013-11-06 18:14:29 -0800943 // Also report the success code so that the percentiles can be
944 // interpreted properly for the remaining error codes in UMA.
945 utils::SendErrorCodeToUma(system_state_, code);
946 } else {
947 // If we just finished a rollback, then we expect to have no Omaha
948 // response. Otherwise, it's an error.
949 if (system_state_->payload_state()->GetRollbackVersion().empty()) {
950 LOG(ERROR) << "Can't send metrics because expected "
951 "response_handler_action_ missing.";
952 }
953 }
Darin Petkov09f96c32010-07-20 09:24:57 -0700954 return;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700955 }
Darin Petkov09f96c32010-07-20 09:24:57 -0700956
Darin Petkov1023a602010-08-30 13:47:51 -0700957 if (ScheduleErrorEventAction()) {
Darin Petkov09f96c32010-07-20 09:24:57 -0700958 return;
Darin Petkov1023a602010-08-30 13:47:51 -0700959 }
960 LOG(INFO) << "No update.";
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700961 SetStatusAndNotify(UPDATE_STATUS_IDLE);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700962}
963
964void UpdateAttempter::ProcessingStopped(const ActionProcessor* processor) {
Chris Sosa4f8ee272012-11-30 13:01:54 -0800965 // Reset cpu shares back to normal.
966 CleanupCpuSharesManagement();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700967 download_progress_ = 0.0;
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700968 SetStatusAndNotify(UPDATE_STATUS_IDLE);
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700969 actions_.clear();
Darin Petkov09f96c32010-07-20 09:24:57 -0700970 error_event_.reset(NULL);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700971}
972
973// Called whenever an action has finished processing, either successfully
974// or otherwise.
975void UpdateAttempter::ActionCompleted(ActionProcessor* processor,
976 AbstractAction* action,
David Zeuthena99981f2013-04-29 13:42:47 -0700977 ErrorCode code) {
Darin Petkov1023a602010-08-30 13:47:51 -0700978 // Reset download progress regardless of whether or not the download
979 // action succeeded. Also, get the response code from HTTP request
980 // actions (update download as well as the initial update check
981 // actions).
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700982 const string type = action->Type();
Darin Petkov1023a602010-08-30 13:47:51 -0700983 if (type == DownloadAction::StaticType()) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700984 download_progress_ = 0.0;
Gilad Arnoldcf175a02014-07-10 16:48:47 -0700985 DownloadAction* download_action = static_cast<DownloadAction*>(action);
Darin Petkov1023a602010-08-30 13:47:51 -0700986 http_response_code_ = download_action->GetHTTPResponseCode();
987 } else if (type == OmahaRequestAction::StaticType()) {
988 OmahaRequestAction* omaha_request_action =
Gilad Arnoldcf175a02014-07-10 16:48:47 -0700989 static_cast<OmahaRequestAction*>(action);
Darin Petkov1023a602010-08-30 13:47:51 -0700990 // If the request is not an event, then it's the update-check.
991 if (!omaha_request_action->IsEvent()) {
992 http_response_code_ = omaha_request_action->GetHTTPResponseCode();
Gilad Arnolda6dab942014-04-25 11:46:03 -0700993
994 // Record the number of consecutive failed update checks.
995 if (http_response_code_ == kHttpResponseInternalServerError ||
996 http_response_code_ == kHttpResponseServiceUnavailable) {
997 consecutive_failed_update_checks_++;
998 } else {
999 consecutive_failed_update_checks_ = 0;
1000 }
1001
Gilad Arnolda0258a52014-07-10 16:21:19 -07001002 // Store the server-dictated poll interval, if any.
1003 server_dictated_poll_interval_ =
1004 std::max(0, omaha_request_action->GetOutputObject().poll_interval);
1005 // TODO(garnold) Remove this once we deploy Update Manager.
Darin Petkov85ced132010-09-01 10:20:56 -07001006 if (update_check_scheduler_) {
1007 update_check_scheduler_->set_poll_interval(
Gilad Arnolda0258a52014-07-10 16:21:19 -07001008 server_dictated_poll_interval_);
Darin Petkov85ced132010-09-01 10:20:56 -07001009 }
Darin Petkov1023a602010-08-30 13:47:51 -07001010 }
1011 }
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001012 if (code != ErrorCode::kSuccess) {
Darin Petkov7ed561b2011-10-04 02:59:03 -07001013 // If the current state is at or past the download phase, count the failure
1014 // in case a switch to full update becomes necessary. Ignore network
1015 // transfer timeouts and failures.
Darin Petkov36275772010-10-01 11:40:57 -07001016 if (status_ >= UPDATE_STATUS_DOWNLOADING &&
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001017 code != ErrorCode::kDownloadTransferError) {
Darin Petkov36275772010-10-01 11:40:57 -07001018 MarkDeltaUpdateFailure();
1019 }
Darin Petkov777dbfa2010-07-20 15:03:37 -07001020 // On failure, schedule an error event to be sent to Omaha.
1021 CreatePendingErrorEvent(action, code);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001022 return;
Darin Petkov09f96c32010-07-20 09:24:57 -07001023 }
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001024 // Find out which action completed.
1025 if (type == OmahaResponseHandlerAction::StaticType()) {
Darin Petkov9b230572010-10-08 10:20:09 -07001026 // Note that the status will be updated to DOWNLOADING when some bytes get
1027 // actually downloaded from the server and the BytesReceived callback is
1028 // invoked. This avoids notifying the user that a download has started in
1029 // cases when the server and the client are unable to initiate the download.
1030 CHECK(action == response_handler_action_.get());
1031 const InstallPlan& plan = response_handler_action_->install_plan();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001032 last_checked_time_ = time(NULL);
Chris Sosafb1020e2013-07-29 17:27:33 -07001033 new_version_ = plan.version;
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001034 new_payload_size_ = plan.payload_size;
Darin Petkov9b230572010-10-08 10:20:09 -07001035 SetupDownload();
Chris Sosa4f8ee272012-11-30 13:01:54 -08001036 SetupCpuSharesManagement();
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001037 SetStatusAndNotify(UPDATE_STATUS_UPDATE_AVAILABLE);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001038 } else if (type == DownloadAction::StaticType()) {
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001039 SetStatusAndNotify(UPDATE_STATUS_FINALIZING);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001040 }
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001041}
1042
1043// Stop updating. An attempt will be made to record status to the disk
1044// so that updates can be resumed later.
1045void UpdateAttempter::Terminate() {
1046 // TODO(adlr): implement this method.
1047 NOTIMPLEMENTED();
1048}
1049
1050// Try to resume from a previously Terminate()d update.
1051void UpdateAttempter::ResumeUpdating() {
1052 // TODO(adlr): implement this method.
1053 NOTIMPLEMENTED();
1054}
1055
Darin Petkov9d911fa2010-08-19 09:36:08 -07001056void UpdateAttempter::SetDownloadStatus(bool active) {
1057 download_active_ = active;
1058 LOG(INFO) << "Download status: " << (active ? "active" : "inactive");
1059}
1060
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001061void UpdateAttempter::BytesReceived(uint64_t bytes_received, uint64_t total) {
Darin Petkov9d911fa2010-08-19 09:36:08 -07001062 if (!download_active_) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001063 LOG(ERROR) << "BytesReceived called while not downloading.";
1064 return;
1065 }
Darin Petkovaf183052010-08-23 12:07:13 -07001066 double progress = static_cast<double>(bytes_received) /
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001067 static_cast<double>(total);
Darin Petkovaf183052010-08-23 12:07:13 -07001068 // Self throttle based on progress. Also send notifications if
1069 // progress is too slow.
1070 const double kDeltaPercent = 0.01; // 1%
1071 if (status_ != UPDATE_STATUS_DOWNLOADING ||
1072 bytes_received == total ||
1073 progress - download_progress_ >= kDeltaPercent ||
1074 TimeTicks::Now() - last_notify_time_ >= TimeDelta::FromSeconds(10)) {
1075 download_progress_ = progress;
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001076 SetStatusAndNotify(UPDATE_STATUS_DOWNLOADING);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001077 }
1078}
1079
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -07001080bool UpdateAttempter::ResetStatus() {
1081 LOG(INFO) << "Attempting to reset state from "
1082 << UpdateStatusToString(status_) << " to UPDATE_STATUS_IDLE";
1083
1084 switch (status_) {
1085 case UPDATE_STATUS_IDLE:
1086 // no-op.
1087 return true;
1088
1089 case UPDATE_STATUS_UPDATED_NEED_REBOOT: {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001090 bool ret_value = true;
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -07001091 status_ = UPDATE_STATUS_IDLE;
1092 LOG(INFO) << "Reset Successful";
1093
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001094 // Remove the reboot marker so that if the machine is rebooted
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -07001095 // after resetting to idle state, it doesn't go back to
1096 // UPDATE_STATUS_UPDATED_NEED_REBOOT state.
Gilad Arnold70e476e2013-07-30 16:01:13 -07001097 if (!update_completed_marker_.empty()) {
Alex Vakulenko75039d72014-03-25 12:36:28 -07001098 if (!base::DeleteFile(base::FilePath(update_completed_marker_), false))
Gilad Arnold70e476e2013-07-30 16:01:13 -07001099 ret_value = false;
1100 }
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001101
Alex Deymo42432912013-07-12 20:21:15 -07001102 // Notify the PayloadState that the successful payload was canceled.
1103 system_state_->payload_state()->ResetUpdateStatus();
1104
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001105 return ret_value;
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -07001106 }
1107
1108 default:
1109 LOG(ERROR) << "Reset not allowed in this state.";
1110 return false;
1111 }
1112}
1113
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001114bool UpdateAttempter::GetStatus(int64_t* last_checked_time,
1115 double* progress,
Gilad Arnold28e2f392012-02-09 14:36:46 -08001116 string* current_operation,
1117 string* new_version,
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001118 int64_t* new_payload_size) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001119 *last_checked_time = last_checked_time_;
1120 *progress = download_progress_;
1121 *current_operation = UpdateStatusToString(status_);
1122 *new_version = new_version_;
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001123 *new_payload_size = new_payload_size_;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001124 return true;
1125}
1126
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001127void UpdateAttempter::UpdateBootFlags() {
Darin Petkov58dd1342011-05-06 12:05:13 -07001128 if (update_boot_flags_running_) {
1129 LOG(INFO) << "Update boot flags running, nothing to do.";
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001130 return;
1131 }
Darin Petkov58dd1342011-05-06 12:05:13 -07001132 if (updated_boot_flags_) {
1133 LOG(INFO) << "Already updated boot flags. Skipping.";
1134 if (start_action_processor_) {
1135 ScheduleProcessingStart();
1136 }
1137 return;
1138 }
1139 // This is purely best effort. Failures should be logged by Subprocess. Run
1140 // the script asynchronously to avoid blocking the event loop regardless of
1141 // the script runtime.
1142 update_boot_flags_running_ = true;
1143 LOG(INFO) << "Updating boot flags...";
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001144 vector<string> cmd(1, "/usr/sbin/chromeos-setgoodkernel");
Darin Petkov58dd1342011-05-06 12:05:13 -07001145 if (!Subprocess::Get().Exec(cmd, StaticCompleteUpdateBootFlags, this)) {
1146 CompleteUpdateBootFlags(1);
1147 }
1148}
1149
1150void UpdateAttempter::CompleteUpdateBootFlags(int return_code) {
1151 update_boot_flags_running_ = false;
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001152 updated_boot_flags_ = true;
Darin Petkov58dd1342011-05-06 12:05:13 -07001153 if (start_action_processor_) {
1154 ScheduleProcessingStart();
1155 }
1156}
1157
1158void UpdateAttempter::StaticCompleteUpdateBootFlags(
1159 int return_code,
Gilad Arnold28e2f392012-02-09 14:36:46 -08001160 const string& output,
Darin Petkov58dd1342011-05-06 12:05:13 -07001161 void* p) {
1162 reinterpret_cast<UpdateAttempter*>(p)->CompleteUpdateBootFlags(return_code);
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -07001163}
1164
Darin Petkov61635a92011-05-18 16:20:36 -07001165void UpdateAttempter::BroadcastStatus() {
1166 if (!dbus_service_) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001167 return;
Darin Petkov61635a92011-05-18 16:20:36 -07001168 }
Darin Petkovaf183052010-08-23 12:07:13 -07001169 last_notify_time_ = TimeTicks::Now();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001170 update_engine_service_emit_status_update(
1171 dbus_service_,
1172 last_checked_time_,
1173 download_progress_,
1174 UpdateStatusToString(status_),
1175 new_version_.c_str(),
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001176 new_payload_size_);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -07001177}
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001178
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001179uint32_t UpdateAttempter::GetErrorCodeFlags() {
1180 uint32_t flags = 0;
1181
J. Richard Barnette056b0ab2013-10-29 15:24:56 -07001182 if (!system_state_->hardware()->IsNormalBootMode())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001183 flags |= static_cast<uint32_t>(ErrorCode::kDevModeFlag);
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001184
1185 if (response_handler_action_.get() &&
1186 response_handler_action_->install_plan().is_resume)
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001187 flags |= static_cast<uint32_t>(ErrorCode::kResumedFlag);
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001188
J. Richard Barnette056b0ab2013-10-29 15:24:56 -07001189 if (!system_state_->hardware()->IsOfficialBuild())
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001190 flags |= static_cast<uint32_t>(ErrorCode::kTestImageFlag);
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001191
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001192 if (omaha_request_params_->update_url() != kProductionOmahaUrl)
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001193 flags |= static_cast<uint32_t>(ErrorCode::kTestOmahaUrlFlag);
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001194
1195 return flags;
1196}
1197
David Zeuthena99981f2013-04-29 13:42:47 -07001198bool UpdateAttempter::ShouldCancel(ErrorCode* cancel_reason) {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001199 // Check if the channel we're attempting to update to is the same as the
1200 // target channel currently chosen by the user.
1201 OmahaRequestParams* params = system_state_->request_params();
1202 if (params->download_channel() != params->target_channel()) {
1203 LOG(ERROR) << "Aborting download as target channel: "
1204 << params->target_channel()
1205 << " is different from the download channel: "
1206 << params->download_channel();
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001207 *cancel_reason = ErrorCode::kUpdateCanceledByChannelChange;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -07001208 return true;
1209 }
1210
1211 return false;
1212}
1213
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001214void UpdateAttempter::SetStatusAndNotify(UpdateStatus status) {
Darin Petkov61635a92011-05-18 16:20:36 -07001215 status_ = status;
1216 if (update_check_scheduler_) {
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001217 update_check_scheduler_->SetUpdateStatus(status_);
Darin Petkov61635a92011-05-18 16:20:36 -07001218 }
1219 BroadcastStatus();
1220}
1221
Darin Petkov777dbfa2010-07-20 15:03:37 -07001222void UpdateAttempter::CreatePendingErrorEvent(AbstractAction* action,
David Zeuthena99981f2013-04-29 13:42:47 -07001223 ErrorCode code) {
Darin Petkov09f96c32010-07-20 09:24:57 -07001224 if (error_event_.get()) {
1225 // This shouldn't really happen.
1226 LOG(WARNING) << "There's already an existing pending error event.";
1227 return;
1228 }
Darin Petkov777dbfa2010-07-20 15:03:37 -07001229
Darin Petkovabc7bc02011-02-23 14:39:43 -08001230 // For now assume that a generic Omaha response action failure means that
1231 // there's no update so don't send an event. Also, double check that the
1232 // failure has not occurred while sending an error event -- in which case
1233 // don't schedule another. This shouldn't really happen but just in case...
1234 if ((action->Type() == OmahaResponseHandlerAction::StaticType() &&
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001235 code == ErrorCode::kError) ||
Darin Petkov777dbfa2010-07-20 15:03:37 -07001236 status_ == UPDATE_STATUS_REPORTING_ERROR_EVENT) {
1237 return;
1238 }
1239
Jay Srinivasan56d5aa42012-03-26 14:27:59 -07001240 // Classify the code to generate the appropriate result so that
1241 // the Borgmon charts show up the results correctly.
1242 // Do this before calling GetErrorCodeForAction which could potentially
1243 // augment the bit representation of code and thus cause no matches for
1244 // the switch cases below.
1245 OmahaEvent::Result event_result;
1246 switch (code) {
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001247 case ErrorCode::kOmahaUpdateIgnoredPerPolicy:
1248 case ErrorCode::kOmahaUpdateDeferredPerPolicy:
1249 case ErrorCode::kOmahaUpdateDeferredForBackoff:
Jay Srinivasan56d5aa42012-03-26 14:27:59 -07001250 event_result = OmahaEvent::kResultUpdateDeferred;
1251 break;
1252 default:
1253 event_result = OmahaEvent::kResultError;
1254 break;
1255 }
1256
Darin Petkov777dbfa2010-07-20 15:03:37 -07001257 code = GetErrorCodeForAction(action, code);
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001258 fake_update_success_ = code == ErrorCode::kPostinstallBootedFromFirmwareB;
Darin Petkov18c7bce2011-06-16 14:07:00 -07001259
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001260 // Compute the final error code with all the bit flags to be sent to Omaha.
Gilad Arnoldd1c4d2d2014-06-05 14:07:53 -07001261 code = static_cast<ErrorCode>(
1262 static_cast<uint32_t>(code) | GetErrorCodeFlags());
Darin Petkov09f96c32010-07-20 09:24:57 -07001263 error_event_.reset(new OmahaEvent(OmahaEvent::kTypeUpdateComplete,
Jay Srinivasan56d5aa42012-03-26 14:27:59 -07001264 event_result,
Darin Petkov09f96c32010-07-20 09:24:57 -07001265 code));
1266}
1267
1268bool UpdateAttempter::ScheduleErrorEventAction() {
1269 if (error_event_.get() == NULL)
1270 return false;
1271
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001272 LOG(ERROR) << "Update failed.";
1273 system_state_->payload_state()->UpdateFailed(error_event_->error_code);
1274
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001275 // Send it to Uma.
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001276 LOG(INFO) << "Reporting the error event";
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001277 utils::SendErrorCodeToUma(system_state_, error_event_->error_code);
1278
1279 // Send it to Omaha.
Darin Petkov09f96c32010-07-20 09:24:57 -07001280 shared_ptr<OmahaRequestAction> error_event_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001281 new OmahaRequestAction(system_state_,
Darin Petkov09f96c32010-07-20 09:24:57 -07001282 error_event_.release(), // Pass ownership.
Jay Srinivasan08fce042012-06-07 16:31:01 -07001283 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001284 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -07001285 false));
Darin Petkov09f96c32010-07-20 09:24:57 -07001286 actions_.push_back(shared_ptr<AbstractAction>(error_event_action));
Darin Petkovf42cc1c2010-09-01 09:03:02 -07001287 processor_->EnqueueAction(error_event_action.get());
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001288 SetStatusAndNotify(UPDATE_STATUS_REPORTING_ERROR_EVENT);
Darin Petkovf42cc1c2010-09-01 09:03:02 -07001289 processor_->StartProcessing();
Darin Petkov09f96c32010-07-20 09:24:57 -07001290 return true;
1291}
1292
Chris Sosa4f8ee272012-11-30 13:01:54 -08001293void UpdateAttempter::SetCpuShares(utils::CpuShares shares) {
1294 if (shares_ == shares) {
Darin Petkovc6c135c2010-08-11 13:36:18 -07001295 return;
1296 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001297 if (utils::SetCpuShares(shares)) {
1298 shares_ = shares;
1299 LOG(INFO) << "CPU shares = " << shares_;
Darin Petkovc6c135c2010-08-11 13:36:18 -07001300 }
1301}
1302
Chris Sosa4f8ee272012-11-30 13:01:54 -08001303void UpdateAttempter::SetupCpuSharesManagement() {
1304 if (manage_shares_source_) {
1305 LOG(ERROR) << "Cpu shares timeout source hasn't been destroyed.";
1306 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -07001307 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001308 const int kCpuSharesTimeout = 2 * 60 * 60; // 2 hours
1309 manage_shares_source_ = g_timeout_source_new_seconds(kCpuSharesTimeout);
1310 g_source_set_callback(manage_shares_source_,
1311 StaticManageCpuSharesCallback,
Darin Petkovc6c135c2010-08-11 13:36:18 -07001312 this,
1313 NULL);
Chris Sosa4f8ee272012-11-30 13:01:54 -08001314 g_source_attach(manage_shares_source_, NULL);
1315 SetCpuShares(utils::kCpuSharesLow);
Darin Petkovc6c135c2010-08-11 13:36:18 -07001316}
1317
Chris Sosa4f8ee272012-11-30 13:01:54 -08001318void UpdateAttempter::CleanupCpuSharesManagement() {
1319 if (manage_shares_source_) {
1320 g_source_destroy(manage_shares_source_);
1321 manage_shares_source_ = NULL;
Darin Petkovc6c135c2010-08-11 13:36:18 -07001322 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001323 SetCpuShares(utils::kCpuSharesNormal);
Darin Petkovc6c135c2010-08-11 13:36:18 -07001324}
1325
Chris Sosa4f8ee272012-11-30 13:01:54 -08001326gboolean UpdateAttempter::StaticManageCpuSharesCallback(gpointer data) {
1327 return reinterpret_cast<UpdateAttempter*>(data)->ManageCpuSharesCallback();
Darin Petkovc6c135c2010-08-11 13:36:18 -07001328}
1329
Darin Petkove6ef2f82011-03-07 17:31:11 -08001330gboolean UpdateAttempter::StaticStartProcessing(gpointer data) {
1331 reinterpret_cast<UpdateAttempter*>(data)->processor_->StartProcessing();
1332 return FALSE; // Don't call this callback again.
1333}
1334
Darin Petkov58dd1342011-05-06 12:05:13 -07001335void UpdateAttempter::ScheduleProcessingStart() {
1336 LOG(INFO) << "Scheduling an action processor start.";
1337 start_action_processor_ = false;
1338 g_idle_add(&StaticStartProcessing, this);
1339}
1340
Chris Sosa4f8ee272012-11-30 13:01:54 -08001341bool UpdateAttempter::ManageCpuSharesCallback() {
1342 SetCpuShares(utils::kCpuSharesNormal);
1343 manage_shares_source_ = NULL;
Darin Petkovf622ef72010-10-26 13:49:24 -07001344 return false; // Destroy the timeout source.
Darin Petkovc6c135c2010-08-11 13:36:18 -07001345}
1346
Darin Petkov36275772010-10-01 11:40:57 -07001347void UpdateAttempter::DisableDeltaUpdateIfNeeded() {
1348 int64_t delta_failures;
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001349 if (omaha_request_params_->delta_okay() &&
Darin Petkov36275772010-10-01 11:40:57 -07001350 prefs_->GetInt64(kPrefsDeltaUpdateFailures, &delta_failures) &&
1351 delta_failures >= kMaxDeltaUpdateFailures) {
1352 LOG(WARNING) << "Too many delta update failures, forcing full update.";
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001353 omaha_request_params_->set_delta_okay(false);
Darin Petkov36275772010-10-01 11:40:57 -07001354 }
1355}
1356
1357void UpdateAttempter::MarkDeltaUpdateFailure() {
Darin Petkov2dd01092010-10-08 15:43:05 -07001358 // Don't try to resume a failed delta update.
1359 DeltaPerformer::ResetUpdateProgress(prefs_, false);
Darin Petkov36275772010-10-01 11:40:57 -07001360 int64_t delta_failures;
1361 if (!prefs_->GetInt64(kPrefsDeltaUpdateFailures, &delta_failures) ||
1362 delta_failures < 0) {
1363 delta_failures = 0;
1364 }
1365 prefs_->SetInt64(kPrefsDeltaUpdateFailures, ++delta_failures);
1366}
1367
Darin Petkov9b230572010-10-08 10:20:09 -07001368void UpdateAttempter::SetupDownload() {
Gilad Arnold9bedeb52011-11-17 16:19:57 -08001369 MultiRangeHttpFetcher* fetcher =
Gilad Arnoldcf175a02014-07-10 16:48:47 -07001370 static_cast<MultiRangeHttpFetcher*>(download_action_->http_fetcher());
Andrew de los Reyes819fef22010-12-17 11:33:58 -08001371 fetcher->ClearRanges();
Darin Petkov9b230572010-10-08 10:20:09 -07001372 if (response_handler_action_->install_plan().is_resume) {
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001373 // Resuming an update so fetch the update manifest metadata first.
Darin Petkov9b230572010-10-08 10:20:09 -07001374 int64_t manifest_metadata_size = 0;
1375 prefs_->GetInt64(kPrefsManifestMetadataSize, &manifest_metadata_size);
Andrew de los Reyes819fef22010-12-17 11:33:58 -08001376 fetcher->AddRange(0, manifest_metadata_size);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001377 // If there're remaining unprocessed data blobs, fetch them. Be careful not
1378 // to request data beyond the end of the payload to avoid 416 HTTP response
1379 // error codes.
Darin Petkov9b230572010-10-08 10:20:09 -07001380 int64_t next_data_offset = 0;
1381 prefs_->GetInt64(kPrefsUpdateStateNextDataOffset, &next_data_offset);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001382 uint64_t resume_offset = manifest_metadata_size + next_data_offset;
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001383 if (resume_offset < response_handler_action_->install_plan().payload_size) {
Gilad Arnolde4ad2502011-12-29 17:08:54 -08001384 fetcher->AddRange(resume_offset);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001385 }
Darin Petkov9b230572010-10-08 10:20:09 -07001386 } else {
Gilad Arnolde4ad2502011-12-29 17:08:54 -08001387 fetcher->AddRange(0);
Darin Petkov9b230572010-10-08 10:20:09 -07001388 }
Darin Petkov9b230572010-10-08 10:20:09 -07001389}
1390
Thieu Le116fda32011-04-19 11:01:54 -07001391void UpdateAttempter::PingOmaha() {
Thieu Led88a8572011-05-26 09:09:19 -07001392 if (!processor_->IsRunning()) {
1393 shared_ptr<OmahaRequestAction> ping_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001394 new OmahaRequestAction(system_state_,
Thieu Led88a8572011-05-26 09:09:19 -07001395 NULL,
Jay Srinivasan08fce042012-06-07 16:31:01 -07001396 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001397 system_state_),
Thieu Led88a8572011-05-26 09:09:19 -07001398 true));
1399 actions_.push_back(shared_ptr<OmahaRequestAction>(ping_action));
1400 processor_->set_delegate(NULL);
1401 processor_->EnqueueAction(ping_action.get());
1402 // Call StartProcessing() synchronously here to avoid any race conditions
1403 // caused by multiple outstanding ping Omaha requests. If we call
1404 // StartProcessing() asynchronously, the device can be suspended before we
1405 // get a chance to callback to StartProcessing(). When the device resumes
1406 // (assuming the device sleeps longer than the next update check period),
1407 // StartProcessing() is called back and at the same time, the next update
1408 // check is fired which eventually invokes StartProcessing(). A crash
1409 // can occur because StartProcessing() checks to make sure that the
1410 // processor is idle which it isn't due to the two concurrent ping Omaha
1411 // requests.
1412 processor_->StartProcessing();
1413 } else {
Darin Petkov58dd1342011-05-06 12:05:13 -07001414 LOG(WARNING) << "Action processor running, Omaha ping suppressed.";
Darin Petkov58dd1342011-05-06 12:05:13 -07001415 }
Thieu Led88a8572011-05-26 09:09:19 -07001416
1417 // Update the status which will schedule the next update check
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001418 SetStatusAndNotify(UPDATE_STATUS_UPDATED_NEED_REBOOT);
Thieu Le116fda32011-04-19 11:01:54 -07001419}
1420
Jay Srinivasan480ddfa2012-06-01 19:15:26 -07001421
1422bool UpdateAttempter::DecrementUpdateCheckCount() {
1423 int64 update_check_count_value;
1424
1425 if (!prefs_->Exists(kPrefsUpdateCheckCount)) {
1426 // This file does not exist. This means we haven't started our update
1427 // check count down yet, so nothing more to do. This file will be created
1428 // later when we first satisfy the wall-clock-based-wait period.
1429 LOG(INFO) << "No existing update check count. That's normal.";
1430 return true;
1431 }
1432
1433 if (prefs_->GetInt64(kPrefsUpdateCheckCount, &update_check_count_value)) {
1434 // Only if we're able to read a proper integer value, then go ahead
1435 // and decrement and write back the result in the same file, if needed.
1436 LOG(INFO) << "Update check count = " << update_check_count_value;
1437
1438 if (update_check_count_value == 0) {
1439 // It could be 0, if, for some reason, the file didn't get deleted
1440 // when we set our status to waiting for reboot. so we just leave it
1441 // as is so that we can prevent another update_check wait for this client.
1442 LOG(INFO) << "Not decrementing update check count as it's already 0.";
1443 return true;
1444 }
1445
1446 if (update_check_count_value > 0)
1447 update_check_count_value--;
1448 else
1449 update_check_count_value = 0;
1450
1451 // Write out the new value of update_check_count_value.
1452 if (prefs_->SetInt64(kPrefsUpdateCheckCount, update_check_count_value)) {
1453 // We successfully wrote out te new value, so enable the
1454 // update check based wait.
1455 LOG(INFO) << "New update check count = " << update_check_count_value;
1456 return true;
1457 }
1458 }
1459
1460 LOG(INFO) << "Deleting update check count state due to read/write errors.";
1461
1462 // We cannot read/write to the file, so disable the update check based wait
1463 // so that we don't get stuck in this OS version by any chance (which could
1464 // happen if there's some bug that causes to read/write incorrectly).
1465 // Also attempt to delete the file to do our best effort to cleanup.
1466 prefs_->Delete(kPrefsUpdateCheckCount);
1467 return false;
1468}
Chris Sosad317e402013-06-12 13:47:09 -07001469
David Zeuthen8f191b22013-08-06 12:27:50 -07001470
David Zeuthene4c58bf2013-06-18 17:26:50 -07001471void UpdateAttempter::UpdateEngineStarted() {
Alex Vakulenkodea2eac2014-03-14 15:56:59 -07001472 // If we just booted into a new update, keep the previous OS version
1473 // in case we rebooted because of a crash of the old version, so we
1474 // can do a proper crash report with correcy information.
1475 // This must be done before calling
1476 // system_state_->payload_state()->UpdateEngineStarted() since it will
1477 // delete SystemUpdated marker file.
1478 if (system_state_->system_rebooted() &&
1479 prefs_->Exists(kPrefsSystemUpdatedMarker)) {
1480 if (!prefs_->GetString(kPrefsPreviousVersion, &prev_version_)) {
1481 // If we fail to get the version string, make sure it stays empty.
1482 prev_version_.clear();
1483 }
1484 }
1485
David Zeuthene4c58bf2013-06-18 17:26:50 -07001486 system_state_->payload_state()->UpdateEngineStarted();
David Zeuthen8f191b22013-08-06 12:27:50 -07001487 StartP2PAtStartup();
1488}
1489
1490bool UpdateAttempter::StartP2PAtStartup() {
1491 if (system_state_ == NULL ||
1492 !system_state_->p2p_manager()->IsP2PEnabled()) {
1493 LOG(INFO) << "Not starting p2p at startup since it's not enabled.";
1494 return false;
1495 }
1496
1497 if (system_state_->p2p_manager()->CountSharedFiles() < 1) {
1498 LOG(INFO) << "Not starting p2p at startup since our application "
1499 << "is not sharing any files.";
1500 return false;
1501 }
1502
1503 return StartP2PAndPerformHousekeeping();
1504}
1505
1506bool UpdateAttempter::StartP2PAndPerformHousekeeping() {
1507 if (system_state_ == NULL)
1508 return false;
1509
1510 if (!system_state_->p2p_manager()->IsP2PEnabled()) {
1511 LOG(INFO) << "Not starting p2p since it's not enabled.";
1512 return false;
1513 }
1514
1515 LOG(INFO) << "Ensuring that p2p is running.";
1516 if (!system_state_->p2p_manager()->EnsureP2PRunning()) {
1517 LOG(ERROR) << "Error starting p2p.";
1518 return false;
1519 }
1520
1521 LOG(INFO) << "Performing p2p housekeeping.";
1522 if (!system_state_->p2p_manager()->PerformHousekeeping()) {
1523 LOG(ERROR) << "Error performing housekeeping for p2p.";
1524 return false;
1525 }
1526
1527 LOG(INFO) << "Done performing p2p housekeeping.";
1528 return true;
David Zeuthene4c58bf2013-06-18 17:26:50 -07001529}
1530
David Zeuthen3c55abd2013-10-14 12:48:03 -07001531bool UpdateAttempter::GetBootTimeAtUpdate(base::Time *out_boot_time) {
1532 if (update_completed_marker_.empty())
1533 return false;
1534
1535 string contents;
1536 if (!utils::ReadFile(update_completed_marker_, &contents))
1537 return false;
1538
1539 char *endp;
1540 int64_t stored_value = strtoll(contents.c_str(), &endp, 10);
1541 if (*endp != '\0') {
1542 LOG(ERROR) << "Error parsing file " << update_completed_marker_ << " "
1543 << "with content '" << contents << "'";
1544 return false;
1545 }
1546
1547 *out_boot_time = Time::FromInternalValue(stored_value);
1548 return true;
1549}
1550
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001551} // namespace chromeos_update_engine