blob: dd52d0dc0d57f50aa421933ac69fed65e3eb4246 [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>
9#include <string>
10#include <vector>
Darin Petkov9d65b7b2010-07-20 09:13:01 -070011
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -070012#include <base/file_util.h>
David Zeuthen3c55abd2013-10-14 12:48:03 -070013#include <base/logging.h>
Andrew de los Reyes45168102010-11-22 11:13:50 -080014#include <base/rand_util.h>
Alex Vakulenko75039d72014-03-25 12:36:28 -070015#include <base/strings/stringprintf.h>
Daniel Eratc1f07c32013-10-10 10:18:02 -070016#include <chromeos/dbus/service_constants.h>
David Zeuthen3c55abd2013-10-14 12:48:03 -070017
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070018#include <glib.h>
Darin Petkov1023a602010-08-30 13:47:51 -070019#include <metrics/metrics_library.h>
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +020020#include <policy/device_policy.h>
Alex Deymobc91a272014-05-20 16:45:33 -070021#include <policy/libpolicy.h>
Darin Petkov9d65b7b2010-07-20 09:13:01 -070022
Bruno Rocha7f9aea22011-09-12 14:31:24 -070023#include "update_engine/certificate_checker.h"
David Zeuthen985b1122013-10-09 12:13:15 -070024#include "update_engine/clock_interface.h"
Jay Srinivasand29695d2013-04-08 15:08:05 -070025#include "update_engine/constants.h"
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070026#include "update_engine/dbus_service.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070027#include "update_engine/download_action.h"
28#include "update_engine/filesystem_copier_action.h"
Alex Deymo42432912013-07-12 20:21:15 -070029#include "update_engine/hardware_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070030#include "update_engine/libcurl_http_fetcher.h"
David Zeuthen33bae492014-02-25 16:16:18 -080031#include "update_engine/metrics.h"
Andrew de los Reyes819fef22010-12-17 11:33:58 -080032#include "update_engine/multi_range_http_fetcher.h"
Darin Petkov6a5b3222010-07-13 14:55:28 -070033#include "update_engine/omaha_request_action.h"
Darin Petkova4a8a8c2010-07-15 22:21:12 -070034#include "update_engine/omaha_request_params.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070035#include "update_engine/omaha_response_handler_action.h"
David Zeuthen8f191b22013-08-06 12:27:50 -070036#include "update_engine/p2p_manager.h"
Jay Srinivasan55f50c22013-01-10 19:24:35 -080037#include "update_engine/payload_state_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070038#include "update_engine/postinstall_runner_action.h"
Darin Petkov36275772010-10-01 11:40:57 -070039#include "update_engine/prefs_interface.h"
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -070040#include "update_engine/subprocess.h"
Jay Srinivasan43488792012-06-19 00:25:31 -070041#include "update_engine/system_state.h"
Darin Petkov1023a602010-08-30 13:47:51 -070042#include "update_engine/update_check_scheduler.h"
J. Richard Barnette30842932013-10-28 15:04:23 -070043#include "update_engine/utils.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070044
Alex Deymobc91a272014-05-20 16:45:33 -070045using base::StringPrintf;
David Zeuthen3c55abd2013-10-14 12:48:03 -070046using base::Time;
Darin Petkovaf183052010-08-23 12:07:13 -070047using base::TimeDelta;
48using base::TimeTicks;
Andrew de los Reyes21816e12011-04-07 14:18:56 -070049using google::protobuf::NewPermanentCallback;
Darin Petkov9b230572010-10-08 10:20:09 -070050using std::make_pair;
Jay Srinivasan43488792012-06-19 00:25:31 -070051using std::set;
Alex Deymobc91a272014-05-20 16:45:33 -070052using std::shared_ptr;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070053using std::string;
54using std::vector;
55
56namespace chromeos_update_engine {
57
Darin Petkov36275772010-10-01 11:40:57 -070058const int UpdateAttempter::kMaxDeltaUpdateFailures = 3;
59
Andrew de los Reyes45168102010-11-22 11:13:50 -080060namespace {
61const int kMaxConsecutiveObeyProxyRequests = 20;
Gilad Arnold70e476e2013-07-30 16:01:13 -070062
63const char* kUpdateCompletedMarker =
64 "/var/run/update_engine_autoupdate_completed";
Andrew de los Reyes45168102010-11-22 11:13:50 -080065} // namespace {}
66
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070067const char* UpdateStatusToString(UpdateStatus status) {
68 switch (status) {
69 case UPDATE_STATUS_IDLE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070070 return update_engine::kUpdateStatusIdle;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070071 case UPDATE_STATUS_CHECKING_FOR_UPDATE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070072 return update_engine::kUpdateStatusCheckingForUpdate;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070073 case UPDATE_STATUS_UPDATE_AVAILABLE:
Daniel Eratc1f07c32013-10-10 10:18:02 -070074 return update_engine::kUpdateStatusUpdateAvailable;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070075 case UPDATE_STATUS_DOWNLOADING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070076 return update_engine::kUpdateStatusDownloading;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070077 case UPDATE_STATUS_VERIFYING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070078 return update_engine::kUpdateStatusVerifying;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070079 case UPDATE_STATUS_FINALIZING:
Daniel Eratc1f07c32013-10-10 10:18:02 -070080 return update_engine::kUpdateStatusFinalizing;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070081 case UPDATE_STATUS_UPDATED_NEED_REBOOT:
Daniel Eratc1f07c32013-10-10 10:18:02 -070082 return update_engine::kUpdateStatusUpdatedNeedReboot;
Darin Petkov09f96c32010-07-20 09:24:57 -070083 case UPDATE_STATUS_REPORTING_ERROR_EVENT:
Daniel Eratc1f07c32013-10-10 10:18:02 -070084 return update_engine::kUpdateStatusReportingErrorEvent;
Chris Sosad317e402013-06-12 13:47:09 -070085 case UPDATE_STATUS_ATTEMPTING_ROLLBACK:
Daniel Eratc1f07c32013-10-10 10:18:02 -070086 return update_engine::kUpdateStatusAttemptingRollback;
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070087 default:
88 return "unknown status";
89 }
90}
91
David Zeuthena99981f2013-04-29 13:42:47 -070092// Turns a generic kErrorCodeError to a generic error code specific
93// to |action| (e.g., kErrorCodeFilesystemCopierError). If |code| is
94// not kErrorCodeError, or the action is not matched, returns |code|
Darin Petkov777dbfa2010-07-20 15:03:37 -070095// unchanged.
David Zeuthena99981f2013-04-29 13:42:47 -070096ErrorCode GetErrorCodeForAction(AbstractAction* action,
97 ErrorCode code) {
98 if (code != kErrorCodeError)
Darin Petkov777dbfa2010-07-20 15:03:37 -070099 return code;
100
101 const string type = action->Type();
102 if (type == OmahaRequestAction::StaticType())
David Zeuthena99981f2013-04-29 13:42:47 -0700103 return kErrorCodeOmahaRequestError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700104 if (type == OmahaResponseHandlerAction::StaticType())
David Zeuthena99981f2013-04-29 13:42:47 -0700105 return kErrorCodeOmahaResponseHandlerError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700106 if (type == FilesystemCopierAction::StaticType())
David Zeuthena99981f2013-04-29 13:42:47 -0700107 return kErrorCodeFilesystemCopierError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700108 if (type == PostinstallRunnerAction::StaticType())
David Zeuthena99981f2013-04-29 13:42:47 -0700109 return kErrorCodePostinstallRunnerError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700110
111 return code;
112}
113
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800114UpdateAttempter::UpdateAttempter(SystemState* system_state,
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -0800115 DBusWrapperInterface* dbus_iface)
Gilad Arnold1f847232014-04-07 12:07:49 -0700116 : UpdateAttempter(system_state, dbus_iface, kUpdateCompletedMarker) {}
Gilad Arnold70e476e2013-07-30 16:01:13 -0700117
118UpdateAttempter::UpdateAttempter(SystemState* system_state,
Gilad Arnold1b9d6ae2014-03-03 13:46:07 -0800119 DBusWrapperInterface* dbus_iface,
Gilad Arnold70e476e2013-07-30 16:01:13 -0700120 const std::string& update_completed_marker)
Gilad Arnold1f847232014-04-07 12:07:49 -0700121 : processor_(new ActionProcessor()),
122 system_state_(system_state),
123 chrome_proxy_resolver_(dbus_iface),
124 update_completed_marker_(update_completed_marker) {
Gilad Arnold70e476e2013-07-30 16:01:13 -0700125 if (!update_completed_marker_.empty() &&
126 utils::FileExists(update_completed_marker_.c_str()))
Darin Petkovc6c135c2010-08-11 13:36:18 -0700127 status_ = UPDATE_STATUS_UPDATED_NEED_REBOOT;
Gilad Arnold70e476e2013-07-30 16:01:13 -0700128 else
129 status_ = UPDATE_STATUS_IDLE;
Darin Petkovc6c135c2010-08-11 13:36:18 -0700130}
131
Gilad Arnold1f847232014-04-07 12:07:49 -0700132void UpdateAttempter::Init() {
133 // Pulling from the SystemState can only be done after construction, since
134 // this is an aggregate of various objects (such as the UpdateAttempter),
135 // which requires them all to be constructed prior to it being used.
136 prefs_ = system_state_->prefs();
137 omaha_request_params_ = system_state_->request_params();
138}
139
Darin Petkovc6c135c2010-08-11 13:36:18 -0700140UpdateAttempter::~UpdateAttempter() {
Chris Sosa4f8ee272012-11-30 13:01:54 -0800141 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700142}
143
David Zeuthen985b1122013-10-09 12:13:15 -0700144bool UpdateAttempter::CheckAndReportDailyMetrics() {
145 int64_t stored_value;
146 base::Time now = system_state_->clock()->GetWallclockTime();
147 if (system_state_->prefs()->Exists(kPrefsDailyMetricsLastReportedAt) &&
148 system_state_->prefs()->GetInt64(kPrefsDailyMetricsLastReportedAt,
149 &stored_value)) {
150 base::Time last_reported_at = base::Time::FromInternalValue(stored_value);
151 base::TimeDelta time_reported_since = now - last_reported_at;
152 if (time_reported_since.InSeconds() < 0) {
153 LOG(WARNING) << "Last reported daily metrics "
154 << utils::FormatTimeDelta(time_reported_since) << " ago "
155 << "which is negative. Either the system clock is wrong or "
156 << "the kPrefsDailyMetricsLastReportedAt state variable "
157 << "is wrong.";
158 // In this case, report daily metrics to reset.
159 } else {
160 if (time_reported_since.InSeconds() < 24*60*60) {
161 LOG(INFO) << "Last reported daily metrics "
162 << utils::FormatTimeDelta(time_reported_since) << " ago.";
163 return false;
164 }
165 LOG(INFO) << "Last reported daily metrics "
166 << utils::FormatTimeDelta(time_reported_since) << " ago, "
167 << "which is more than 24 hours ago.";
168 }
169 }
170
171 LOG(INFO) << "Reporting daily metrics.";
172 system_state_->prefs()->SetInt64(kPrefsDailyMetricsLastReportedAt,
173 now.ToInternalValue());
174
175 ReportOSAge();
176
177 return true;
178}
179
180void UpdateAttempter::ReportOSAge() {
181 struct stat sb;
182
183 if (system_state_ == NULL)
184 return;
185
186 if (stat("/etc/lsb-release", &sb) != 0) {
187 PLOG(ERROR) << "Error getting file status for /etc/lsb-release";
188 return;
189 }
190
191 base::Time lsb_release_timestamp = utils::TimeFromStructTimespec(&sb.st_ctim);
192 base::Time now = system_state_->clock()->GetWallclockTime();
193 base::TimeDelta age = now - lsb_release_timestamp;
194 if (age.InSeconds() < 0) {
195 LOG(ERROR) << "The OS age (" << utils::FormatTimeDelta(age)
196 << ") is negative. Maybe the clock is wrong?";
197 return;
198 }
199
200 std::string metric = "Installer.OSAgeDays";
201 LOG(INFO) << "Uploading " << utils::FormatTimeDelta(age)
202 << " for metric " << metric;
203 system_state_->metrics_lib()->SendToUMA(
204 metric,
205 static_cast<int>(age.InDays()),
206 0, // min: 0 days
207 6*30, // max: 6 months (approx)
208 kNumDefaultUmaBuckets);
David Zeuthen33bae492014-02-25 16:16:18 -0800209
210 metrics::ReportDailyMetrics(system_state_, age);
David Zeuthen985b1122013-10-09 12:13:15 -0700211}
212
Gilad Arnold28e2f392012-02-09 14:36:46 -0800213void UpdateAttempter::Update(const string& app_version,
214 const string& omaha_url,
Andrew de los Reyesfb2f4612011-06-09 18:21:49 -0700215 bool obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700216 bool interactive) {
David Zeuthen985b1122013-10-09 12:13:15 -0700217 // This is called at least every 4 hours (see the constant
218 // UpdateCheckScheduler::kTimeoutMaxBackoffInterval) so it's
219 // appropriate to use as a hook for reporting daily metrics.
220 CheckAndReportDailyMetrics();
221
Andrew de los Reyes000d8952011-03-02 15:21:14 -0800222 chrome_proxy_resolver_.Init();
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700223 fake_update_success_ = false;
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700224 if (status_ == UPDATE_STATUS_UPDATED_NEED_REBOOT) {
Thieu Le116fda32011-04-19 11:01:54 -0700225 // Although we have applied an update, we still want to ping Omaha
226 // to ensure the number of active statistics is accurate.
David Zeuthen33bae492014-02-25 16:16:18 -0800227 //
228 // Also convey to the UpdateEngine.Check.Result metric that we're
229 // not performing an update check because of this.
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700230 LOG(INFO) << "Not updating b/c we already updated and we're waiting for "
Thieu Le116fda32011-04-19 11:01:54 -0700231 << "reboot, we'll ping Omaha instead";
David Zeuthen33bae492014-02-25 16:16:18 -0800232 metrics::ReportUpdateCheckMetrics(system_state_,
233 metrics::CheckResult::kRebootPending,
234 metrics::CheckReaction::kUnset,
235 metrics::DownloadErrorCode::kUnset);
Thieu Le116fda32011-04-19 11:01:54 -0700236 PingOmaha();
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700237 return;
238 }
239 if (status_ != UPDATE_STATUS_IDLE) {
240 // Update in progress. Do nothing
241 return;
242 }
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700243
244 if (!CalculateUpdateParams(app_version,
245 omaha_url,
246 obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700247 interactive)) {
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700248 return;
249 }
250
251 BuildUpdateActions(interactive);
252
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700253 SetStatusAndNotify(UPDATE_STATUS_CHECKING_FOR_UPDATE);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700254
255 // Just in case we didn't update boot flags yet, make sure they're updated
256 // before any update processing starts.
257 start_action_processor_ = true;
258 UpdateBootFlags();
259}
260
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700261void UpdateAttempter::RefreshDevicePolicy() {
262 // Lazy initialize the policy provider, or reload the latest policy data.
263 if (!policy_provider_.get())
264 policy_provider_.reset(new policy::PolicyProvider());
265 policy_provider_->Reload();
266
267 const policy::DevicePolicy* device_policy = NULL;
268 if (policy_provider_->device_policy_is_loaded())
269 device_policy = &policy_provider_->GetDevicePolicy();
270
271 if (device_policy)
272 LOG(INFO) << "Device policies/settings present";
273 else
274 LOG(INFO) << "No device policies/settings present.";
275
276 system_state_->set_device_policy(device_policy);
David Zeuthen92d9c8b2013-09-11 10:58:11 -0700277 system_state_->p2p_manager()->SetDevicePolicy(device_policy);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700278}
279
David Zeuthen8f191b22013-08-06 12:27:50 -0700280void UpdateAttempter::CalculateP2PParams(bool interactive) {
281 bool use_p2p_for_downloading = false;
282 bool use_p2p_for_sharing = false;
283
284 // Never use p2p for downloading in interactive checks unless the
285 // developer has opted in for it via a marker file.
286 //
287 // (Why would a developer want to opt in? If he's working on the
288 // update_engine or p2p codebases so he can actually test his
289 // code.).
290
291 if (system_state_ != NULL) {
292 if (!system_state_->p2p_manager()->IsP2PEnabled()) {
293 LOG(INFO) << "p2p is not enabled - disallowing p2p for both"
294 << " downloading and sharing.";
295 } else {
296 // Allow p2p for sharing, even in interactive checks.
297 use_p2p_for_sharing = true;
298 if (!interactive) {
299 LOG(INFO) << "Non-interactive check - allowing p2p for downloading";
300 use_p2p_for_downloading = true;
301 } else {
David Zeuthen052d2902013-09-06 11:41:30 -0700302 LOG(INFO) << "Forcibly disabling use of p2p for downloading "
303 << "since this update attempt is interactive.";
David Zeuthen8f191b22013-08-06 12:27:50 -0700304 }
305 }
306 }
307
308 omaha_request_params_->set_use_p2p_for_downloading(use_p2p_for_downloading);
309 omaha_request_params_->set_use_p2p_for_sharing(use_p2p_for_sharing);
310}
311
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700312bool UpdateAttempter::CalculateUpdateParams(const string& app_version,
313 const string& omaha_url,
314 bool obey_proxies,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700315 bool interactive) {
Darin Petkov1023a602010-08-30 13:47:51 -0700316 http_response_code_ = 0;
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200317
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700318 RefreshDevicePolicy();
319 const policy::DevicePolicy* device_policy = system_state_->device_policy();
320 if (device_policy) {
Jay Srinivasandc9a8ca2013-03-19 18:12:38 -0700321 bool update_disabled = false;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700322 if (device_policy->GetUpdateDisabled(&update_disabled))
323 omaha_request_params_->set_update_disabled(update_disabled);
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700324
325 string target_version_prefix;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700326 if (device_policy->GetTargetVersionPrefix(&target_version_prefix))
327 omaha_request_params_->set_target_version_prefix(target_version_prefix);
Jay Srinivasan43488792012-06-19 00:25:31 -0700328
329 set<string> allowed_types;
330 string allowed_types_str;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700331 if (device_policy->GetAllowedConnectionTypesForUpdate(&allowed_types)) {
Jay Srinivasan43488792012-06-19 00:25:31 -0700332 set<string>::const_iterator iter;
333 for (iter = allowed_types.begin(); iter != allowed_types.end(); ++iter)
334 allowed_types_str += *iter + " ";
335 }
336
337 LOG(INFO) << "Networks over which updates are allowed per policy : "
338 << (allowed_types_str.empty() ? "all" : allowed_types_str);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700339 }
340
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800341 CalculateScatteringParams(interactive);
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200342
David Zeuthen8f191b22013-08-06 12:27:50 -0700343 CalculateP2PParams(interactive);
344 if (omaha_request_params_->use_p2p_for_downloading() ||
345 omaha_request_params_->use_p2p_for_sharing()) {
346 // OK, p2p is to be used - start it and perform housekeeping.
347 if (!StartP2PAndPerformHousekeeping()) {
348 // If this fails, disable p2p for this attempt
349 LOG(INFO) << "Forcibly disabling use of p2p since starting p2p or "
350 << "performing housekeeping failed.";
351 omaha_request_params_->set_use_p2p_for_downloading(false);
352 omaha_request_params_->set_use_p2p_for_sharing(false);
353 }
354 }
355
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700356 if (!omaha_request_params_->Init(app_version,
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -0700357 omaha_url,
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700358 interactive)) {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700359 LOG(ERROR) << "Unable to initialize Omaha request params.";
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700360 return false;
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700361 }
Darin Petkov3aefa862010-12-07 14:45:00 -0800362
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700363 // Set the target channel iff ReleaseChannelDelegated policy is set to
364 // false and a non-empty ReleaseChannel policy is present. If delegated
365 // is true, we'll ignore ReleaseChannel policy value.
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700366 if (device_policy) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700367 bool delegated = false;
Chris Sosad6ab4042013-07-18 10:36:39 -0700368 if (!device_policy->GetReleaseChannelDelegated(&delegated) || delegated) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700369 LOG(INFO) << "Channel settings are delegated to user by policy. "
370 "Ignoring ReleaseChannel policy value";
371 }
372 else {
373 LOG(INFO) << "Channel settings are not delegated to the user by policy";
374 string target_channel;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700375 if (device_policy->GetReleaseChannel(&target_channel) &&
376 !target_channel.empty()) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700377 // Pass in false for powerwash_allowed until we add it to the policy
378 // protobuf.
379 LOG(INFO) << "Setting target channel from ReleaseChannel policy value";
380 omaha_request_params_->SetTargetChannel(target_channel, false);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700381
382 // Since this is the beginning of a new attempt, update the download
383 // channel. The download channel won't be updated until the next
384 // attempt, even if target channel changes meanwhile, so that how we'll
385 // know if we should cancel the current download attempt if there's
386 // such a change in target channel.
387 omaha_request_params_->UpdateDownloadChannel();
388 } else {
389 LOG(INFO) << "No ReleaseChannel specified in policy";
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700390 }
391 }
392 }
393
Jay Srinivasan0a708742012-03-20 11:26:12 -0700394 LOG(INFO) << "update_disabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700395 << utils::ToString(omaha_request_params_->update_disabled())
Jay Srinivasan0a708742012-03-20 11:26:12 -0700396 << ", target_version_prefix = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700397 << omaha_request_params_->target_version_prefix()
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700398 << ", scatter_factor_in_seconds = "
399 << utils::FormatSecs(scatter_factor_.InSeconds());
400
401 LOG(INFO) << "Wall Clock Based Wait Enabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700402 << omaha_request_params_->wall_clock_based_wait_enabled()
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700403 << ", Update Check Count Wait Enabled = "
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700404 << omaha_request_params_->update_check_count_wait_enabled()
Jay Srinivasan21be0752012-07-25 15:44:56 -0700405 << ", Waiting Period = " << utils::FormatSecs(
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700406 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan0a708742012-03-20 11:26:12 -0700407
David Zeuthen8f191b22013-08-06 12:27:50 -0700408 LOG(INFO) << "Use p2p For Downloading = "
409 << omaha_request_params_->use_p2p_for_downloading()
410 << ", Use p2p For Sharing = "
411 << omaha_request_params_->use_p2p_for_sharing();
412
Andrew de los Reyes45168102010-11-22 11:13:50 -0800413 obeying_proxies_ = true;
414 if (obey_proxies || proxy_manual_checks_ == 0) {
415 LOG(INFO) << "forced to obey proxies";
416 // If forced to obey proxies, every 20th request will not use proxies
417 proxy_manual_checks_++;
418 LOG(INFO) << "proxy manual checks: " << proxy_manual_checks_;
419 if (proxy_manual_checks_ >= kMaxConsecutiveObeyProxyRequests) {
420 proxy_manual_checks_ = 0;
421 obeying_proxies_ = false;
422 }
423 } else if (base::RandInt(0, 4) == 0) {
424 obeying_proxies_ = false;
425 }
426 LOG_IF(INFO, !obeying_proxies_) << "To help ensure updates work, this update "
427 "check we are ignoring the proxy settings and using "
428 "direct connections.";
429
Darin Petkov36275772010-10-01 11:40:57 -0700430 DisableDeltaUpdateIfNeeded();
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700431 return true;
432}
433
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800434void UpdateAttempter::CalculateScatteringParams(bool interactive) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700435 // Take a copy of the old scatter value before we update it, as
436 // we need to update the waiting period if this value changes.
437 TimeDelta old_scatter_factor = scatter_factor_;
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800438 const policy::DevicePolicy* device_policy = system_state_->device_policy();
Jay Srinivasan21be0752012-07-25 15:44:56 -0700439 if (device_policy) {
440 int64 new_scatter_factor_in_secs = 0;
441 device_policy->GetScatterFactorInSeconds(&new_scatter_factor_in_secs);
442 if (new_scatter_factor_in_secs < 0) // sanitize input, just in case.
443 new_scatter_factor_in_secs = 0;
444 scatter_factor_ = TimeDelta::FromSeconds(new_scatter_factor_in_secs);
445 }
446
447 bool is_scatter_enabled = false;
448 if (scatter_factor_.InSeconds() == 0) {
449 LOG(INFO) << "Scattering disabled since scatter factor is set to 0";
Gilad Arnoldb92f0df2013-01-10 16:32:45 -0800450 } else if (interactive) {
451 LOG(INFO) << "Scattering disabled as this is an interactive update check";
Alex Deymobccbc382014-04-03 13:38:55 -0700452 } else if (!system_state_->hardware()->IsOOBEComplete(nullptr)) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700453 LOG(INFO) << "Scattering disabled since OOBE is not complete yet";
454 } else {
455 is_scatter_enabled = true;
456 LOG(INFO) << "Scattering is enabled";
457 }
458
459 if (is_scatter_enabled) {
460 // This means the scattering policy is turned on.
461 // Now check if we need to update the waiting period. The two cases
462 // in which we'd need to update the waiting period are:
463 // 1. First time in process or a scheduled check after a user-initiated one.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700464 // (omaha_request_params_->waiting_period will be zero in this case).
Jay Srinivasan21be0752012-07-25 15:44:56 -0700465 // 2. Admin has changed the scattering policy value.
466 // (new scattering value will be different from old one in this case).
467 int64 wait_period_in_secs = 0;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700468 if (omaha_request_params_->waiting_period().InSeconds() == 0) {
Jay Srinivasan21be0752012-07-25 15:44:56 -0700469 // First case. Check if we have a suitable value to set for
470 // the waiting period.
471 if (prefs_->GetInt64(kPrefsWallClockWaitPeriod, &wait_period_in_secs) &&
472 wait_period_in_secs > 0 &&
473 wait_period_in_secs <= scatter_factor_.InSeconds()) {
474 // This means:
475 // 1. There's a persisted value for the waiting period available.
476 // 2. And that persisted value is still valid.
477 // So, in this case, we should reuse the persisted value instead of
478 // generating a new random value to improve the chances of a good
479 // distribution for scattering.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700480 omaha_request_params_->set_waiting_period(
481 TimeDelta::FromSeconds(wait_period_in_secs));
Jay Srinivasan21be0752012-07-25 15:44:56 -0700482 LOG(INFO) << "Using persisted wall-clock waiting period: " <<
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700483 utils::FormatSecs(
484 omaha_request_params_->waiting_period().InSeconds());
Jay Srinivasan21be0752012-07-25 15:44:56 -0700485 }
486 else {
487 // 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";
744 for (auto&& name : kernel_devices)
745 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
751 if(current == kernel_devices.end()) {
752 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
David Zeuthena99981f2013-04-29 13:42:47 -0700853 if (code == kErrorCodeSuccess) {
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 }
David Zeuthena99981f2013-04-29 13:42:47 -0700960 if (code != kErrorCodeSuccess) {
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 &&
David Zeuthena99981f2013-04-29 13:42:47 -0700965 code != kErrorCodeDownloadTransferError) {
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())
David Zeuthena99981f2013-04-29 13:42:47 -07001131 flags |= kErrorCodeDevModeFlag;
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001132
1133 if (response_handler_action_.get() &&
1134 response_handler_action_->install_plan().is_resume)
David Zeuthena99981f2013-04-29 13:42:47 -07001135 flags |= kErrorCodeResumedFlag;
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001136
J. Richard Barnette056b0ab2013-10-29 15:24:56 -07001137 if (!system_state_->hardware()->IsOfficialBuild())
David Zeuthena99981f2013-04-29 13:42:47 -07001138 flags |= kErrorCodeTestImageFlag;
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001139
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001140 if (omaha_request_params_->update_url() != kProductionOmahaUrl)
David Zeuthena99981f2013-04-29 13:42:47 -07001141 flags |= kErrorCodeTestOmahaUrlFlag;
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();
David Zeuthena99981f2013-04-29 13:42:47 -07001155 *cancel_reason = kErrorCodeUpdateCanceledByChannelChange;
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() &&
David Zeuthena99981f2013-04-29 13:42:47 -07001183 code == kErrorCodeError) ||
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) {
David Zeuthena99981f2013-04-29 13:42:47 -07001195 case kErrorCodeOmahaUpdateIgnoredPerPolicy:
1196 case kErrorCodeOmahaUpdateDeferredPerPolicy:
1197 case kErrorCodeOmahaUpdateDeferredForBackoff:
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);
David Zeuthena99981f2013-04-29 13:42:47 -07001206 fake_update_success_ = code == kErrorCodePostinstallBootedFromFirmwareB;
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.
David Zeuthena99981f2013-04-29 13:42:47 -07001209 code = static_cast<ErrorCode>(code | GetErrorCodeFlags());
Darin Petkov09f96c32010-07-20 09:24:57 -07001210 error_event_.reset(new OmahaEvent(OmahaEvent::kTypeUpdateComplete,
Jay Srinivasan56d5aa42012-03-26 14:27:59 -07001211 event_result,
Darin Petkov09f96c32010-07-20 09:24:57 -07001212 code));
1213}
1214
1215bool UpdateAttempter::ScheduleErrorEventAction() {
1216 if (error_event_.get() == NULL)
1217 return false;
1218
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001219 LOG(ERROR) << "Update failed.";
1220 system_state_->payload_state()->UpdateFailed(error_event_->error_code);
1221
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001222 // Send it to Uma.
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001223 LOG(INFO) << "Reporting the error event";
Jay Srinivasan55f50c22013-01-10 19:24:35 -08001224 utils::SendErrorCodeToUma(system_state_, error_event_->error_code);
1225
1226 // Send it to Omaha.
Darin Petkov09f96c32010-07-20 09:24:57 -07001227 shared_ptr<OmahaRequestAction> error_event_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001228 new OmahaRequestAction(system_state_,
Darin Petkov09f96c32010-07-20 09:24:57 -07001229 error_event_.release(), // Pass ownership.
Jay Srinivasan08fce042012-06-07 16:31:01 -07001230 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001231 system_state_),
Thieu Le116fda32011-04-19 11:01:54 -07001232 false));
Darin Petkov09f96c32010-07-20 09:24:57 -07001233 actions_.push_back(shared_ptr<AbstractAction>(error_event_action));
Darin Petkovf42cc1c2010-09-01 09:03:02 -07001234 processor_->EnqueueAction(error_event_action.get());
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001235 SetStatusAndNotify(UPDATE_STATUS_REPORTING_ERROR_EVENT);
Darin Petkovf42cc1c2010-09-01 09:03:02 -07001236 processor_->StartProcessing();
Darin Petkov09f96c32010-07-20 09:24:57 -07001237 return true;
1238}
1239
Chris Sosa4f8ee272012-11-30 13:01:54 -08001240void UpdateAttempter::SetCpuShares(utils::CpuShares shares) {
1241 if (shares_ == shares) {
Darin Petkovc6c135c2010-08-11 13:36:18 -07001242 return;
1243 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001244 if (utils::SetCpuShares(shares)) {
1245 shares_ = shares;
1246 LOG(INFO) << "CPU shares = " << shares_;
Darin Petkovc6c135c2010-08-11 13:36:18 -07001247 }
1248}
1249
Chris Sosa4f8ee272012-11-30 13:01:54 -08001250void UpdateAttempter::SetupCpuSharesManagement() {
1251 if (manage_shares_source_) {
1252 LOG(ERROR) << "Cpu shares timeout source hasn't been destroyed.";
1253 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -07001254 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001255 const int kCpuSharesTimeout = 2 * 60 * 60; // 2 hours
1256 manage_shares_source_ = g_timeout_source_new_seconds(kCpuSharesTimeout);
1257 g_source_set_callback(manage_shares_source_,
1258 StaticManageCpuSharesCallback,
Darin Petkovc6c135c2010-08-11 13:36:18 -07001259 this,
1260 NULL);
Chris Sosa4f8ee272012-11-30 13:01:54 -08001261 g_source_attach(manage_shares_source_, NULL);
1262 SetCpuShares(utils::kCpuSharesLow);
Darin Petkovc6c135c2010-08-11 13:36:18 -07001263}
1264
Chris Sosa4f8ee272012-11-30 13:01:54 -08001265void UpdateAttempter::CleanupCpuSharesManagement() {
1266 if (manage_shares_source_) {
1267 g_source_destroy(manage_shares_source_);
1268 manage_shares_source_ = NULL;
Darin Petkovc6c135c2010-08-11 13:36:18 -07001269 }
Chris Sosa4f8ee272012-11-30 13:01:54 -08001270 SetCpuShares(utils::kCpuSharesNormal);
Darin Petkovc6c135c2010-08-11 13:36:18 -07001271}
1272
Chris Sosa4f8ee272012-11-30 13:01:54 -08001273gboolean UpdateAttempter::StaticManageCpuSharesCallback(gpointer data) {
1274 return reinterpret_cast<UpdateAttempter*>(data)->ManageCpuSharesCallback();
Darin Petkovc6c135c2010-08-11 13:36:18 -07001275}
1276
Darin Petkove6ef2f82011-03-07 17:31:11 -08001277gboolean UpdateAttempter::StaticStartProcessing(gpointer data) {
1278 reinterpret_cast<UpdateAttempter*>(data)->processor_->StartProcessing();
1279 return FALSE; // Don't call this callback again.
1280}
1281
Darin Petkov58dd1342011-05-06 12:05:13 -07001282void UpdateAttempter::ScheduleProcessingStart() {
1283 LOG(INFO) << "Scheduling an action processor start.";
1284 start_action_processor_ = false;
1285 g_idle_add(&StaticStartProcessing, this);
1286}
1287
Chris Sosa4f8ee272012-11-30 13:01:54 -08001288bool UpdateAttempter::ManageCpuSharesCallback() {
1289 SetCpuShares(utils::kCpuSharesNormal);
1290 manage_shares_source_ = NULL;
Darin Petkovf622ef72010-10-26 13:49:24 -07001291 return false; // Destroy the timeout source.
Darin Petkovc6c135c2010-08-11 13:36:18 -07001292}
1293
Darin Petkov36275772010-10-01 11:40:57 -07001294void UpdateAttempter::DisableDeltaUpdateIfNeeded() {
1295 int64_t delta_failures;
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001296 if (omaha_request_params_->delta_okay() &&
Darin Petkov36275772010-10-01 11:40:57 -07001297 prefs_->GetInt64(kPrefsDeltaUpdateFailures, &delta_failures) &&
1298 delta_failures >= kMaxDeltaUpdateFailures) {
1299 LOG(WARNING) << "Too many delta update failures, forcing full update.";
Jay Srinivasanae4697c2013-03-18 17:08:08 -07001300 omaha_request_params_->set_delta_okay(false);
Darin Petkov36275772010-10-01 11:40:57 -07001301 }
1302}
1303
1304void UpdateAttempter::MarkDeltaUpdateFailure() {
Darin Petkov2dd01092010-10-08 15:43:05 -07001305 // Don't try to resume a failed delta update.
1306 DeltaPerformer::ResetUpdateProgress(prefs_, false);
Darin Petkov36275772010-10-01 11:40:57 -07001307 int64_t delta_failures;
1308 if (!prefs_->GetInt64(kPrefsDeltaUpdateFailures, &delta_failures) ||
1309 delta_failures < 0) {
1310 delta_failures = 0;
1311 }
1312 prefs_->SetInt64(kPrefsDeltaUpdateFailures, ++delta_failures);
1313}
1314
Darin Petkov9b230572010-10-08 10:20:09 -07001315void UpdateAttempter::SetupDownload() {
Gilad Arnold9bedeb52011-11-17 16:19:57 -08001316 MultiRangeHttpFetcher* fetcher =
1317 dynamic_cast<MultiRangeHttpFetcher*>(download_action_->http_fetcher());
Andrew de los Reyes819fef22010-12-17 11:33:58 -08001318 fetcher->ClearRanges();
Darin Petkov9b230572010-10-08 10:20:09 -07001319 if (response_handler_action_->install_plan().is_resume) {
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001320 // Resuming an update so fetch the update manifest metadata first.
Darin Petkov9b230572010-10-08 10:20:09 -07001321 int64_t manifest_metadata_size = 0;
1322 prefs_->GetInt64(kPrefsManifestMetadataSize, &manifest_metadata_size);
Andrew de los Reyes819fef22010-12-17 11:33:58 -08001323 fetcher->AddRange(0, manifest_metadata_size);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001324 // If there're remaining unprocessed data blobs, fetch them. Be careful not
1325 // to request data beyond the end of the payload to avoid 416 HTTP response
1326 // error codes.
Darin Petkov9b230572010-10-08 10:20:09 -07001327 int64_t next_data_offset = 0;
1328 prefs_->GetInt64(kPrefsUpdateStateNextDataOffset, &next_data_offset);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001329 uint64_t resume_offset = manifest_metadata_size + next_data_offset;
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001330 if (resume_offset < response_handler_action_->install_plan().payload_size) {
Gilad Arnolde4ad2502011-12-29 17:08:54 -08001331 fetcher->AddRange(resume_offset);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001332 }
Darin Petkov9b230572010-10-08 10:20:09 -07001333 } else {
Gilad Arnolde4ad2502011-12-29 17:08:54 -08001334 fetcher->AddRange(0);
Darin Petkov9b230572010-10-08 10:20:09 -07001335 }
Darin Petkov9b230572010-10-08 10:20:09 -07001336}
1337
Thieu Le116fda32011-04-19 11:01:54 -07001338void UpdateAttempter::PingOmaha() {
Thieu Led88a8572011-05-26 09:09:19 -07001339 if (!processor_->IsRunning()) {
1340 shared_ptr<OmahaRequestAction> ping_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001341 new OmahaRequestAction(system_state_,
Thieu Led88a8572011-05-26 09:09:19 -07001342 NULL,
Jay Srinivasan08fce042012-06-07 16:31:01 -07001343 new LibcurlHttpFetcher(GetProxyResolver(),
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001344 system_state_),
Thieu Led88a8572011-05-26 09:09:19 -07001345 true));
1346 actions_.push_back(shared_ptr<OmahaRequestAction>(ping_action));
1347 processor_->set_delegate(NULL);
1348 processor_->EnqueueAction(ping_action.get());
1349 // Call StartProcessing() synchronously here to avoid any race conditions
1350 // caused by multiple outstanding ping Omaha requests. If we call
1351 // StartProcessing() asynchronously, the device can be suspended before we
1352 // get a chance to callback to StartProcessing(). When the device resumes
1353 // (assuming the device sleeps longer than the next update check period),
1354 // StartProcessing() is called back and at the same time, the next update
1355 // check is fired which eventually invokes StartProcessing(). A crash
1356 // can occur because StartProcessing() checks to make sure that the
1357 // processor is idle which it isn't due to the two concurrent ping Omaha
1358 // requests.
1359 processor_->StartProcessing();
1360 } else {
Darin Petkov58dd1342011-05-06 12:05:13 -07001361 LOG(WARNING) << "Action processor running, Omaha ping suppressed.";
Darin Petkov58dd1342011-05-06 12:05:13 -07001362 }
Thieu Led88a8572011-05-26 09:09:19 -07001363
1364 // Update the status which will schedule the next update check
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -07001365 SetStatusAndNotify(UPDATE_STATUS_UPDATED_NEED_REBOOT);
Thieu Le116fda32011-04-19 11:01:54 -07001366}
1367
Jay Srinivasan480ddfa2012-06-01 19:15:26 -07001368
1369bool UpdateAttempter::DecrementUpdateCheckCount() {
1370 int64 update_check_count_value;
1371
1372 if (!prefs_->Exists(kPrefsUpdateCheckCount)) {
1373 // This file does not exist. This means we haven't started our update
1374 // check count down yet, so nothing more to do. This file will be created
1375 // later when we first satisfy the wall-clock-based-wait period.
1376 LOG(INFO) << "No existing update check count. That's normal.";
1377 return true;
1378 }
1379
1380 if (prefs_->GetInt64(kPrefsUpdateCheckCount, &update_check_count_value)) {
1381 // Only if we're able to read a proper integer value, then go ahead
1382 // and decrement and write back the result in the same file, if needed.
1383 LOG(INFO) << "Update check count = " << update_check_count_value;
1384
1385 if (update_check_count_value == 0) {
1386 // It could be 0, if, for some reason, the file didn't get deleted
1387 // when we set our status to waiting for reboot. so we just leave it
1388 // as is so that we can prevent another update_check wait for this client.
1389 LOG(INFO) << "Not decrementing update check count as it's already 0.";
1390 return true;
1391 }
1392
1393 if (update_check_count_value > 0)
1394 update_check_count_value--;
1395 else
1396 update_check_count_value = 0;
1397
1398 // Write out the new value of update_check_count_value.
1399 if (prefs_->SetInt64(kPrefsUpdateCheckCount, update_check_count_value)) {
1400 // We successfully wrote out te new value, so enable the
1401 // update check based wait.
1402 LOG(INFO) << "New update check count = " << update_check_count_value;
1403 return true;
1404 }
1405 }
1406
1407 LOG(INFO) << "Deleting update check count state due to read/write errors.";
1408
1409 // We cannot read/write to the file, so disable the update check based wait
1410 // so that we don't get stuck in this OS version by any chance (which could
1411 // happen if there's some bug that causes to read/write incorrectly).
1412 // Also attempt to delete the file to do our best effort to cleanup.
1413 prefs_->Delete(kPrefsUpdateCheckCount);
1414 return false;
1415}
Chris Sosad317e402013-06-12 13:47:09 -07001416
David Zeuthen8f191b22013-08-06 12:27:50 -07001417
David Zeuthene4c58bf2013-06-18 17:26:50 -07001418void UpdateAttempter::UpdateEngineStarted() {
Alex Vakulenkodea2eac2014-03-14 15:56:59 -07001419 // If we just booted into a new update, keep the previous OS version
1420 // in case we rebooted because of a crash of the old version, so we
1421 // can do a proper crash report with correcy information.
1422 // This must be done before calling
1423 // system_state_->payload_state()->UpdateEngineStarted() since it will
1424 // delete SystemUpdated marker file.
1425 if (system_state_->system_rebooted() &&
1426 prefs_->Exists(kPrefsSystemUpdatedMarker)) {
1427 if (!prefs_->GetString(kPrefsPreviousVersion, &prev_version_)) {
1428 // If we fail to get the version string, make sure it stays empty.
1429 prev_version_.clear();
1430 }
1431 }
1432
David Zeuthene4c58bf2013-06-18 17:26:50 -07001433 system_state_->payload_state()->UpdateEngineStarted();
David Zeuthen8f191b22013-08-06 12:27:50 -07001434 StartP2PAtStartup();
1435}
1436
1437bool UpdateAttempter::StartP2PAtStartup() {
1438 if (system_state_ == NULL ||
1439 !system_state_->p2p_manager()->IsP2PEnabled()) {
1440 LOG(INFO) << "Not starting p2p at startup since it's not enabled.";
1441 return false;
1442 }
1443
1444 if (system_state_->p2p_manager()->CountSharedFiles() < 1) {
1445 LOG(INFO) << "Not starting p2p at startup since our application "
1446 << "is not sharing any files.";
1447 return false;
1448 }
1449
1450 return StartP2PAndPerformHousekeeping();
1451}
1452
1453bool UpdateAttempter::StartP2PAndPerformHousekeeping() {
1454 if (system_state_ == NULL)
1455 return false;
1456
1457 if (!system_state_->p2p_manager()->IsP2PEnabled()) {
1458 LOG(INFO) << "Not starting p2p since it's not enabled.";
1459 return false;
1460 }
1461
1462 LOG(INFO) << "Ensuring that p2p is running.";
1463 if (!system_state_->p2p_manager()->EnsureP2PRunning()) {
1464 LOG(ERROR) << "Error starting p2p.";
1465 return false;
1466 }
1467
1468 LOG(INFO) << "Performing p2p housekeeping.";
1469 if (!system_state_->p2p_manager()->PerformHousekeeping()) {
1470 LOG(ERROR) << "Error performing housekeeping for p2p.";
1471 return false;
1472 }
1473
1474 LOG(INFO) << "Done performing p2p housekeeping.";
1475 return true;
David Zeuthene4c58bf2013-06-18 17:26:50 -07001476}
1477
David Zeuthen3c55abd2013-10-14 12:48:03 -07001478bool UpdateAttempter::GetBootTimeAtUpdate(base::Time *out_boot_time) {
1479 if (update_completed_marker_.empty())
1480 return false;
1481
1482 string contents;
1483 if (!utils::ReadFile(update_completed_marker_, &contents))
1484 return false;
1485
1486 char *endp;
1487 int64_t stored_value = strtoll(contents.c_str(), &endp, 10);
1488 if (*endp != '\0') {
1489 LOG(ERROR) << "Error parsing file " << update_completed_marker_ << " "
1490 << "with content '" << contents << "'";
1491 return false;
1492 }
1493
1494 *out_boot_time = Time::FromInternalValue(stored_value);
1495 return true;
1496}
1497
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001498} // namespace chromeos_update_engine