blob: 569b62630457b8dc94b492040613233d58cb7d70 [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
7// From 'man clock_gettime': feature test macro: _POSIX_C_SOURCE >= 199309L
8#ifndef _POSIX_C_SOURCE
9#define _POSIX_C_SOURCE 199309L
10#endif // _POSIX_C_SOURCE
11#include <time.h>
12
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070013#include <string>
Darin Petkov9b230572010-10-08 10:20:09 -070014#include <tr1/memory>
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070015#include <vector>
Darin Petkov9d65b7b2010-07-20 09:13:01 -070016
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -070017#include <base/file_util.h>
Andrew de los Reyes45168102010-11-22 11:13:50 -080018#include <base/rand_util.h>
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070019#include <glib.h>
Darin Petkov1023a602010-08-30 13:47:51 -070020#include <metrics/metrics_library.h>
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +020021#include <policy/libpolicy.h>
22#include <policy/device_policy.h>
Darin Petkov9d65b7b2010-07-20 09:13:01 -070023
Bruno Rocha7f9aea22011-09-12 14:31:24 -070024#include "update_engine/certificate_checker.h"
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070025#include "update_engine/dbus_service.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070026#include "update_engine/download_action.h"
27#include "update_engine/filesystem_copier_action.h"
Jay Srinivasan55f50c22013-01-10 19:24:35 -080028#include "update_engine/gpio_handler.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070029#include "update_engine/libcurl_http_fetcher.h"
Andrew de los Reyes819fef22010-12-17 11:33:58 -080030#include "update_engine/multi_range_http_fetcher.h"
Darin Petkov6a5b3222010-07-13 14:55:28 -070031#include "update_engine/omaha_request_action.h"
Darin Petkova4a8a8c2010-07-15 22:21:12 -070032#include "update_engine/omaha_request_params.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070033#include "update_engine/omaha_response_handler_action.h"
Jay Srinivasan55f50c22013-01-10 19:24:35 -080034#include "update_engine/payload_state_interface.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070035#include "update_engine/postinstall_runner_action.h"
Darin Petkov36275772010-10-01 11:40:57 -070036#include "update_engine/prefs_interface.h"
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -070037#include "update_engine/subprocess.h"
Jay Srinivasan43488792012-06-19 00:25:31 -070038#include "update_engine/system_state.h"
Darin Petkov1023a602010-08-30 13:47:51 -070039#include "update_engine/update_check_scheduler.h"
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070040
Darin Petkovaf183052010-08-23 12:07:13 -070041using base::TimeDelta;
42using base::TimeTicks;
Andrew de los Reyes21816e12011-04-07 14:18:56 -070043using google::protobuf::NewPermanentCallback;
Darin Petkov9b230572010-10-08 10:20:09 -070044using std::make_pair;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070045using std::tr1::shared_ptr;
Jay Srinivasan43488792012-06-19 00:25:31 -070046using std::set;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -070047using std::string;
48using std::vector;
49
50namespace chromeos_update_engine {
51
Darin Petkov36275772010-10-01 11:40:57 -070052const int UpdateAttempter::kMaxDeltaUpdateFailures = 3;
53
Gilad Arnold1ebd8132012-03-05 10:19:29 -080054// Private test server URL w/ custom port number.
Gilad Arnolded747312012-03-15 18:20:41 -070055// TODO(garnold) This is a temporary hack to allow us to test the closed loop
56// automated update testing. To be replaced with an hard-coded local IP address.
57const char* const UpdateAttempter::kTestUpdateUrl(
58 "http://garnold.mtv.corp.google.com:8080/update");
Gilad Arnold28e2f392012-02-09 14:36:46 -080059
Darin Petkovcd1666f2010-09-23 09:53:44 -070060const char* kUpdateCompletedMarker =
61 "/var/run/update_engine_autoupdate_completed";
Andrew de los Reyes6b78e292010-05-10 15:54:39 -070062
Andrew de los Reyes45168102010-11-22 11:13:50 -080063namespace {
64const int kMaxConsecutiveObeyProxyRequests = 20;
65} // namespace {}
66
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070067const char* UpdateStatusToString(UpdateStatus status) {
68 switch (status) {
69 case UPDATE_STATUS_IDLE:
70 return "UPDATE_STATUS_IDLE";
71 case UPDATE_STATUS_CHECKING_FOR_UPDATE:
72 return "UPDATE_STATUS_CHECKING_FOR_UPDATE";
73 case UPDATE_STATUS_UPDATE_AVAILABLE:
74 return "UPDATE_STATUS_UPDATE_AVAILABLE";
75 case UPDATE_STATUS_DOWNLOADING:
76 return "UPDATE_STATUS_DOWNLOADING";
77 case UPDATE_STATUS_VERIFYING:
78 return "UPDATE_STATUS_VERIFYING";
79 case UPDATE_STATUS_FINALIZING:
80 return "UPDATE_STATUS_FINALIZING";
81 case UPDATE_STATUS_UPDATED_NEED_REBOOT:
82 return "UPDATE_STATUS_UPDATED_NEED_REBOOT";
Darin Petkov09f96c32010-07-20 09:24:57 -070083 case UPDATE_STATUS_REPORTING_ERROR_EVENT:
84 return "UPDATE_STATUS_REPORTING_ERROR_EVENT";
Andrew de los Reyes63b96d72010-05-10 13:08:54 -070085 default:
86 return "unknown status";
87 }
88}
89
Darin Petkov777dbfa2010-07-20 15:03:37 -070090// Turns a generic kActionCodeError to a generic error code specific
91// to |action| (e.g., kActionCodeFilesystemCopierError). If |code| is
92// not kActionCodeError, or the action is not matched, returns |code|
93// unchanged.
94ActionExitCode GetErrorCodeForAction(AbstractAction* action,
95 ActionExitCode code) {
96 if (code != kActionCodeError)
97 return code;
98
99 const string type = action->Type();
100 if (type == OmahaRequestAction::StaticType())
101 return kActionCodeOmahaRequestError;
102 if (type == OmahaResponseHandlerAction::StaticType())
103 return kActionCodeOmahaResponseHandlerError;
104 if (type == FilesystemCopierAction::StaticType())
105 return kActionCodeFilesystemCopierError;
106 if (type == PostinstallRunnerAction::StaticType())
107 return kActionCodePostinstallRunnerError;
Darin Petkov777dbfa2010-07-20 15:03:37 -0700108
109 return code;
110}
111
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800112UpdateAttempter::UpdateAttempter(SystemState* system_state,
Gilad Arnoldbf7919b2013-01-08 13:07:37 -0800113 DbusGlibInterface* dbus_iface)
Darin Petkovf42cc1c2010-09-01 09:03:02 -0700114 : processor_(new ActionProcessor()),
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800115 system_state_(system_state),
Darin Petkovf42cc1c2010-09-01 09:03:02 -0700116 dbus_service_(NULL),
Darin Petkov1023a602010-08-30 13:47:51 -0700117 update_check_scheduler_(NULL),
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700118 fake_update_success_(false),
Darin Petkov1023a602010-08-30 13:47:51 -0700119 http_response_code_(0),
Chris Sosa4f8ee272012-11-30 13:01:54 -0800120 shares_(utils::kCpuSharesNormal),
121 manage_shares_source_(NULL),
Darin Petkov9d911fa2010-08-19 09:36:08 -0700122 download_active_(false),
Darin Petkovc6c135c2010-08-11 13:36:18 -0700123 status_(UPDATE_STATUS_IDLE),
124 download_progress_(0.0),
125 last_checked_time_(0),
126 new_version_("0.0.0.0"),
Jay Srinivasan51dcf262012-09-13 17:24:32 -0700127 new_payload_size_(0),
Andrew de los Reyes45168102010-11-22 11:13:50 -0800128 proxy_manual_checks_(0),
129 obeying_proxies_(true),
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -0700130 chrome_proxy_resolver_(dbus_iface),
Darin Petkov58dd1342011-05-06 12:05:13 -0700131 updated_boot_flags_(false),
132 update_boot_flags_running_(false),
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200133 start_action_processor_(false),
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800134 policy_provider_(NULL),
Gilad Arnold4d740eb2012-05-15 08:48:13 -0700135 is_using_test_url_(false),
Gilad Arnold7c04e762012-05-23 10:54:02 -0700136 is_test_mode_(false),
Gilad Arnoldbf7919b2013-01-08 13:07:37 -0800137 is_test_update_attempted_(false) {
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800138 prefs_ = system_state->prefs();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700139 if (utils::FileExists(kUpdateCompletedMarker))
140 status_ = UPDATE_STATUS_UPDATED_NEED_REBOOT;
141}
142
143UpdateAttempter::~UpdateAttempter() {
Chris Sosa4f8ee272012-11-30 13:01:54 -0800144 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700145}
146
Gilad Arnold28e2f392012-02-09 14:36:46 -0800147void UpdateAttempter::Update(const string& app_version,
148 const string& omaha_url,
Andrew de los Reyesfb2f4612011-06-09 18:21:49 -0700149 bool obey_proxies,
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800150 bool interactive,
Gilad Arnold7c04e762012-05-23 10:54:02 -0700151 bool is_test_mode,
Jay Srinivasan08fce042012-06-07 16:31:01 -0700152 bool is_user_initiated) {
Andrew de los Reyes000d8952011-03-02 15:21:14 -0800153 chrome_proxy_resolver_.Init();
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700154 fake_update_success_ = false;
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700155 if (status_ == UPDATE_STATUS_UPDATED_NEED_REBOOT) {
Thieu Le116fda32011-04-19 11:01:54 -0700156 // Although we have applied an update, we still want to ping Omaha
157 // to ensure the number of active statistics is accurate.
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700158 LOG(INFO) << "Not updating b/c we already updated and we're waiting for "
Thieu Le116fda32011-04-19 11:01:54 -0700159 << "reboot, we'll ping Omaha instead";
160 PingOmaha();
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700161 return;
162 }
163 if (status_ != UPDATE_STATUS_IDLE) {
164 // Update in progress. Do nothing
165 return;
166 }
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700167
168 if (!CalculateUpdateParams(app_version,
169 omaha_url,
170 obey_proxies,
171 interactive,
Gilad Arnold7c04e762012-05-23 10:54:02 -0700172 is_test_mode,
Jay Srinivasan08fce042012-06-07 16:31:01 -0700173 is_user_initiated)) {
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700174 return;
175 }
176
177 BuildUpdateActions(interactive);
178
179 SetStatusAndNotify(UPDATE_STATUS_CHECKING_FOR_UPDATE,
180 kUpdateNoticeUnspecified);
181
182 // Just in case we didn't update boot flags yet, make sure they're updated
183 // before any update processing starts.
184 start_action_processor_ = true;
185 UpdateBootFlags();
186}
187
188bool UpdateAttempter::CalculateUpdateParams(const string& app_version,
189 const string& omaha_url,
190 bool obey_proxies,
191 bool interactive,
Gilad Arnold7c04e762012-05-23 10:54:02 -0700192 bool is_test_mode,
Jay Srinivasan08fce042012-06-07 16:31:01 -0700193 bool is_user_initiated) {
Darin Petkov1023a602010-08-30 13:47:51 -0700194 http_response_code_ = 0;
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200195
Gilad Arnold7c04e762012-05-23 10:54:02 -0700196 // Set the test mode flag for the current update attempt.
197 is_test_mode_ = is_test_mode;
198
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200199 // Lazy initialize the policy provider, or reload the latest policy data.
200 if (!policy_provider_.get()) {
201 policy_provider_.reset(new policy::PolicyProvider());
202 } else {
203 policy_provider_->Reload();
204 }
205
206 // If the release_track is specified by policy, that takes precedence.
207 string release_track;
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700208
Jay Srinivasan0a708742012-03-20 11:26:12 -0700209 if (policy_provider_->device_policy_is_loaded()) {
210 const policy::DevicePolicy& device_policy =
211 policy_provider_->GetDevicePolicy();
212 device_policy.GetReleaseChannel(&release_track);
213 device_policy.GetUpdateDisabled(&omaha_request_params_.update_disabled);
214 device_policy.GetTargetVersionPrefix(
215 &omaha_request_params_.target_version_prefix);
Jay Srinivasan43488792012-06-19 00:25:31 -0700216
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800217 system_state_->set_device_policy(&device_policy);
Jay Srinivasan43488792012-06-19 00:25:31 -0700218
219 set<string> allowed_types;
220 string allowed_types_str;
221 if (device_policy.GetAllowedConnectionTypesForUpdate(&allowed_types)) {
222 set<string>::const_iterator iter;
223 for (iter = allowed_types.begin(); iter != allowed_types.end(); ++iter)
224 allowed_types_str += *iter + " ";
225 }
226
227 LOG(INFO) << "Networks over which updates are allowed per policy : "
228 << (allowed_types_str.empty() ? "all" : allowed_types_str);
229 } else {
230 LOG(INFO) << "No device policies present.";
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800231 system_state_->set_device_policy(NULL);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700232 }
233
Jay Srinivasan21be0752012-07-25 15:44:56 -0700234 CalculateScatteringParams(is_user_initiated);
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200235
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800236 // Determine whether an alternative test address should be used.
Gilad Arnold28e2f392012-02-09 14:36:46 -0800237 string omaha_url_to_use = omaha_url;
Gilad Arnold7c04e762012-05-23 10:54:02 -0700238 if ((is_using_test_url_ = (omaha_url_to_use.empty() && is_test_mode_))) {
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800239 omaha_url_to_use = kTestUpdateUrl;
240 LOG(INFO) << "using alternative server address: " << omaha_url_to_use;
Gilad Arnold28e2f392012-02-09 14:36:46 -0800241 }
242
Jay Srinivasan0a708742012-03-20 11:26:12 -0700243 if (!omaha_request_params_.Init(app_version,
244 omaha_url_to_use,
Gilad Arnold28e2f392012-02-09 14:36:46 -0800245 release_track)) {
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700246 LOG(ERROR) << "Unable to initialize Omaha request device params.";
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700247 return false;
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700248 }
Darin Petkov3aefa862010-12-07 14:45:00 -0800249
Jay Srinivasan0a708742012-03-20 11:26:12 -0700250 LOG(INFO) << "update_disabled = "
251 << (omaha_request_params_.update_disabled ? "true" : "false")
252 << ", target_version_prefix = "
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700253 << omaha_request_params_.target_version_prefix
254 << ", scatter_factor_in_seconds = "
255 << utils::FormatSecs(scatter_factor_.InSeconds());
256
257 LOG(INFO) << "Wall Clock Based Wait Enabled = "
258 << omaha_request_params_.wall_clock_based_wait_enabled
259 << ", Update Check Count Wait Enabled = "
260 << omaha_request_params_.update_check_count_wait_enabled
Jay Srinivasan21be0752012-07-25 15:44:56 -0700261 << ", Waiting Period = " << utils::FormatSecs(
262 omaha_request_params_.waiting_period.InSeconds());
Jay Srinivasan0a708742012-03-20 11:26:12 -0700263
Andrew de los Reyes45168102010-11-22 11:13:50 -0800264 obeying_proxies_ = true;
265 if (obey_proxies || proxy_manual_checks_ == 0) {
266 LOG(INFO) << "forced to obey proxies";
267 // If forced to obey proxies, every 20th request will not use proxies
268 proxy_manual_checks_++;
269 LOG(INFO) << "proxy manual checks: " << proxy_manual_checks_;
270 if (proxy_manual_checks_ >= kMaxConsecutiveObeyProxyRequests) {
271 proxy_manual_checks_ = 0;
272 obeying_proxies_ = false;
273 }
274 } else if (base::RandInt(0, 4) == 0) {
275 obeying_proxies_ = false;
276 }
277 LOG_IF(INFO, !obeying_proxies_) << "To help ensure updates work, this update "
278 "check we are ignoring the proxy settings and using "
279 "direct connections.";
280
Darin Petkov36275772010-10-01 11:40:57 -0700281 DisableDeltaUpdateIfNeeded();
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700282 return true;
283}
284
Jay Srinivasan21be0752012-07-25 15:44:56 -0700285void UpdateAttempter::CalculateScatteringParams(bool is_user_initiated) {
286 // Take a copy of the old scatter value before we update it, as
287 // we need to update the waiting period if this value changes.
288 TimeDelta old_scatter_factor = scatter_factor_;
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800289 const policy::DevicePolicy* device_policy = system_state_->device_policy();
Jay Srinivasan21be0752012-07-25 15:44:56 -0700290 if (device_policy) {
291 int64 new_scatter_factor_in_secs = 0;
292 device_policy->GetScatterFactorInSeconds(&new_scatter_factor_in_secs);
293 if (new_scatter_factor_in_secs < 0) // sanitize input, just in case.
294 new_scatter_factor_in_secs = 0;
295 scatter_factor_ = TimeDelta::FromSeconds(new_scatter_factor_in_secs);
296 }
297
298 bool is_scatter_enabled = false;
299 if (scatter_factor_.InSeconds() == 0) {
300 LOG(INFO) << "Scattering disabled since scatter factor is set to 0";
301 } else if (is_user_initiated) {
302 LOG(INFO) << "Scattering disabled as this update check is user-initiated";
303 } else if (!system_state_->IsOOBEComplete()) {
304 LOG(INFO) << "Scattering disabled since OOBE is not complete yet";
305 } else {
306 is_scatter_enabled = true;
307 LOG(INFO) << "Scattering is enabled";
308 }
309
310 if (is_scatter_enabled) {
311 // This means the scattering policy is turned on.
312 // Now check if we need to update the waiting period. The two cases
313 // in which we'd need to update the waiting period are:
314 // 1. First time in process or a scheduled check after a user-initiated one.
315 // (omaha_request_params_.waiting_period will be zero in this case).
316 // 2. Admin has changed the scattering policy value.
317 // (new scattering value will be different from old one in this case).
318 int64 wait_period_in_secs = 0;
319 if (omaha_request_params_.waiting_period.InSeconds() == 0) {
320 // First case. Check if we have a suitable value to set for
321 // the waiting period.
322 if (prefs_->GetInt64(kPrefsWallClockWaitPeriod, &wait_period_in_secs) &&
323 wait_period_in_secs > 0 &&
324 wait_period_in_secs <= scatter_factor_.InSeconds()) {
325 // This means:
326 // 1. There's a persisted value for the waiting period available.
327 // 2. And that persisted value is still valid.
328 // So, in this case, we should reuse the persisted value instead of
329 // generating a new random value to improve the chances of a good
330 // distribution for scattering.
331 omaha_request_params_.waiting_period =
332 TimeDelta::FromSeconds(wait_period_in_secs);
333 LOG(INFO) << "Using persisted wall-clock waiting period: " <<
334 utils::FormatSecs(omaha_request_params_.waiting_period.InSeconds());
335 }
336 else {
337 // This means there's no persisted value for the waiting period
338 // available or its value is invalid given the new scatter_factor value.
339 // So, we should go ahead and regenerate a new value for the
340 // waiting period.
341 LOG(INFO) << "Persisted value not present or not valid ("
342 << utils::FormatSecs(wait_period_in_secs)
343 << ") for wall-clock waiting period.";
344 GenerateNewWaitingPeriod();
345 }
346 } else if (scatter_factor_ != old_scatter_factor) {
347 // This means there's already a waiting period value, but we detected
348 // a change in the scattering policy value. So, we should regenerate the
349 // waiting period to make sure it's within the bounds of the new scatter
350 // factor value.
351 GenerateNewWaitingPeriod();
352 } else {
353 // Neither the first time scattering is enabled nor the scattering value
354 // changed. Nothing to do.
355 LOG(INFO) << "Keeping current wall-clock waiting period: " <<
356 utils::FormatSecs(omaha_request_params_.waiting_period.InSeconds());
357 }
358
359 // The invariant at this point is that omaha_request_params_.waiting_period
360 // is non-zero no matter which path we took above.
361 LOG_IF(ERROR, omaha_request_params_.waiting_period.InSeconds() == 0)
362 << "Waiting Period should NOT be zero at this point!!!";
363
364 // Since scattering is enabled, wall clock based wait will always be
365 // enabled.
366 omaha_request_params_.wall_clock_based_wait_enabled = true;
367
368 // If we don't have any issues in accessing the file system to update
369 // the update check count value, we'll turn that on as well.
370 bool decrement_succeeded = DecrementUpdateCheckCount();
371 omaha_request_params_.update_check_count_wait_enabled = decrement_succeeded;
372 } else {
373 // This means the scattering feature is turned off or disabled for
374 // this particular update check. Make sure to disable
375 // all the knobs and artifacts so that we don't invoke any scattering
376 // related code.
377 omaha_request_params_.wall_clock_based_wait_enabled = false;
378 omaha_request_params_.update_check_count_wait_enabled = false;
379 omaha_request_params_.waiting_period = TimeDelta::FromSeconds(0);
380 prefs_->Delete(kPrefsWallClockWaitPeriod);
381 prefs_->Delete(kPrefsUpdateCheckCount);
382 // Don't delete the UpdateFirstSeenAt file as we don't want manual checks
383 // that result in no-updates (e.g. due to server side throttling) to
384 // cause update starvation by having the client generate a new
385 // UpdateFirstSeenAt for each scheduled check that follows a manual check.
386 }
387}
388
389void UpdateAttempter::GenerateNewWaitingPeriod() {
390 omaha_request_params_.waiting_period = TimeDelta::FromSeconds(
391 base::RandInt(1, scatter_factor_.InSeconds()));
392
393 LOG(INFO) << "Generated new wall-clock waiting period: " << utils::FormatSecs(
394 omaha_request_params_.waiting_period.InSeconds());
395
396 // Do a best-effort to persist this in all cases. Even if the persistence
397 // fails, we'll still be able to scatter based on our in-memory value.
398 // The persistence only helps in ensuring a good overall distribution
399 // across multiple devices if they tend to reboot too often.
400 prefs_->SetInt64(kPrefsWallClockWaitPeriod,
401 omaha_request_params_.waiting_period.InSeconds());
402}
403
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700404void UpdateAttempter::BuildUpdateActions(bool interactive) {
Darin Petkovf42cc1c2010-09-01 09:03:02 -0700405 CHECK(!processor_->IsRunning());
406 processor_->set_delegate(this);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700407
408 // Actions:
Darin Petkova0929552010-11-29 14:19:06 -0800409 LibcurlHttpFetcher* update_check_fetcher =
Gilad Arnold7c04e762012-05-23 10:54:02 -0700410 new LibcurlHttpFetcher(GetProxyResolver(), system_state_, is_test_mode_);
Andrew de los Reyesfb2f4612011-06-09 18:21:49 -0700411 // Try harder to connect to the network, esp when not interactive.
412 // See comment in libcurl_http_fetcher.cc.
413 update_check_fetcher->set_no_network_max_retries(interactive ? 1 : 3);
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700414 update_check_fetcher->set_check_certificate(CertificateChecker::kUpdate);
Darin Petkov6a5b3222010-07-13 14:55:28 -0700415 shared_ptr<OmahaRequestAction> update_check_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800416 new OmahaRequestAction(system_state_,
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700417 &omaha_request_params_,
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700418 NULL,
Thieu Le116fda32011-04-19 11:01:54 -0700419 update_check_fetcher, // passes ownership
420 false));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700421 shared_ptr<OmahaResponseHandlerAction> response_handler_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800422 new OmahaResponseHandlerAction(system_state_));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700423 shared_ptr<FilesystemCopierAction> filesystem_copier_action(
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700424 new FilesystemCopierAction(false, false));
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700425 shared_ptr<FilesystemCopierAction> kernel_filesystem_copier_action(
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700426 new FilesystemCopierAction(true, false));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700427 shared_ptr<OmahaRequestAction> download_started_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800428 new OmahaRequestAction(system_state_,
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700429 &omaha_request_params_,
Darin Petkov8c2980e2010-07-16 15:16:49 -0700430 new OmahaEvent(
Darin Petkove17f86b2010-07-20 09:12:01 -0700431 OmahaEvent::kTypeUpdateDownloadStarted),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700432 new LibcurlHttpFetcher(GetProxyResolver(),
Gilad Arnold7c04e762012-05-23 10:54:02 -0700433 system_state_,
434 is_test_mode_),
Thieu Le116fda32011-04-19 11:01:54 -0700435 false));
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700436 LibcurlHttpFetcher* download_fetcher =
Gilad Arnold7c04e762012-05-23 10:54:02 -0700437 new LibcurlHttpFetcher(GetProxyResolver(), system_state_, is_test_mode_);
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700438 download_fetcher->set_check_certificate(CertificateChecker::kDownload);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700439 shared_ptr<DownloadAction> download_action(
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700440 new DownloadAction(prefs_,
Jay Srinivasanf0572052012-10-23 18:12:56 -0700441 system_state_,
Gilad Arnold9bedeb52011-11-17 16:19:57 -0800442 new MultiRangeHttpFetcher(
Bruno Rocha7f9aea22011-09-12 14:31:24 -0700443 download_fetcher))); // passes ownership
Darin Petkov8c2980e2010-07-16 15:16:49 -0700444 shared_ptr<OmahaRequestAction> download_finished_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800445 new OmahaRequestAction(system_state_,
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700446 &omaha_request_params_,
Darin Petkov8c2980e2010-07-16 15:16:49 -0700447 new OmahaEvent(
Darin Petkove17f86b2010-07-20 09:12:01 -0700448 OmahaEvent::kTypeUpdateDownloadFinished),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700449 new LibcurlHttpFetcher(GetProxyResolver(),
Gilad Arnold7c04e762012-05-23 10:54:02 -0700450 system_state_,
451 is_test_mode_),
Thieu Le116fda32011-04-19 11:01:54 -0700452 false));
Darin Petkov3aefa862010-12-07 14:45:00 -0800453 shared_ptr<FilesystemCopierAction> filesystem_verifier_action(
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700454 new FilesystemCopierAction(false, true));
Darin Petkov3aefa862010-12-07 14:45:00 -0800455 shared_ptr<FilesystemCopierAction> kernel_filesystem_verifier_action(
Gilad Arnold581c2ea2012-07-19 12:33:49 -0700456 new FilesystemCopierAction(true, true));
Darin Petkov6d5dbf62010-11-08 16:09:55 -0800457 shared_ptr<PostinstallRunnerAction> postinstall_runner_action(
458 new PostinstallRunnerAction);
Darin Petkov8c2980e2010-07-16 15:16:49 -0700459 shared_ptr<OmahaRequestAction> update_complete_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800460 new OmahaRequestAction(system_state_,
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700461 &omaha_request_params_,
Darin Petkove17f86b2010-07-20 09:12:01 -0700462 new OmahaEvent(OmahaEvent::kTypeUpdateComplete),
Jay Srinivasan08fce042012-06-07 16:31:01 -0700463 new LibcurlHttpFetcher(GetProxyResolver(),
Gilad Arnold7c04e762012-05-23 10:54:02 -0700464 system_state_,
465 is_test_mode_),
Thieu Le116fda32011-04-19 11:01:54 -0700466 false));
Darin Petkov6a5b3222010-07-13 14:55:28 -0700467
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700468 download_action->set_delegate(this);
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700469 response_handler_action_ = response_handler_action;
Darin Petkov9b230572010-10-08 10:20:09 -0700470 download_action_ = download_action;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700471
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700472 actions_.push_back(shared_ptr<AbstractAction>(update_check_action));
473 actions_.push_back(shared_ptr<AbstractAction>(response_handler_action));
474 actions_.push_back(shared_ptr<AbstractAction>(filesystem_copier_action));
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700475 actions_.push_back(shared_ptr<AbstractAction>(
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700476 kernel_filesystem_copier_action));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700477 actions_.push_back(shared_ptr<AbstractAction>(download_started_action));
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700478 actions_.push_back(shared_ptr<AbstractAction>(download_action));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700479 actions_.push_back(shared_ptr<AbstractAction>(download_finished_action));
Darin Petkov3aefa862010-12-07 14:45:00 -0800480 actions_.push_back(shared_ptr<AbstractAction>(filesystem_verifier_action));
481 actions_.push_back(shared_ptr<AbstractAction>(
482 kernel_filesystem_verifier_action));
Darin Petkov6d5dbf62010-11-08 16:09:55 -0800483 actions_.push_back(shared_ptr<AbstractAction>(postinstall_runner_action));
Darin Petkov8c2980e2010-07-16 15:16:49 -0700484 actions_.push_back(shared_ptr<AbstractAction>(update_complete_action));
Darin Petkov6a5b3222010-07-13 14:55:28 -0700485
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700486 // Enqueue the actions
487 for (vector<shared_ptr<AbstractAction> >::iterator it = actions_.begin();
488 it != actions_.end(); ++it) {
Darin Petkovf42cc1c2010-09-01 09:03:02 -0700489 processor_->EnqueueAction(it->get());
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700490 }
491
492 // Bond them together. We have to use the leaf-types when calling
493 // BondActions().
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700494 BondActions(update_check_action.get(),
495 response_handler_action.get());
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700496 BondActions(response_handler_action.get(),
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700497 filesystem_copier_action.get());
498 BondActions(filesystem_copier_action.get(),
Andrew de los Reyesf9714432010-05-04 10:21:23 -0700499 kernel_filesystem_copier_action.get());
500 BondActions(kernel_filesystem_copier_action.get(),
Andrew de los Reyesf9185172010-05-03 11:07:05 -0700501 download_action.get());
Andrew de los Reyesf98bff82010-05-06 13:33:25 -0700502 BondActions(download_action.get(),
Darin Petkov3aefa862010-12-07 14:45:00 -0800503 filesystem_verifier_action.get());
504 BondActions(filesystem_verifier_action.get(),
505 kernel_filesystem_verifier_action.get());
506 BondActions(kernel_filesystem_verifier_action.get(),
Darin Petkov6d5dbf62010-11-08 16:09:55 -0800507 postinstall_runner_action.get());
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700508}
509
Gilad Arnold28e2f392012-02-09 14:36:46 -0800510void UpdateAttempter::CheckForUpdate(const string& app_version,
Jay Srinivasane73acab2012-07-10 14:34:03 -0700511 const string& omaha_url,
512 bool is_user_initiated) {
Jay Srinivasan08fce042012-06-07 16:31:01 -0700513 LOG(INFO) << "New update check requested";
514
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700515 if (status_ != UPDATE_STATUS_IDLE) {
Jay Srinivasan08fce042012-06-07 16:31:01 -0700516 LOG(INFO) << "Skipping update check because current status is "
517 << UpdateStatusToString(status_);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700518 return;
519 }
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800520
521 // Read GPIO signals and determine whether this is an automated test scenario.
522 // For safety, we only allow a test update to be performed once; subsequent
523 // update requests will be carried out normally.
Gilad Arnoldbf7919b2013-01-08 13:07:37 -0800524 bool is_test_mode = (!is_test_update_attempted_ &&
525 system_state_->gpio_handler()->IsTestModeSignaled());
Gilad Arnold7c04e762012-05-23 10:54:02 -0700526 if (is_test_mode) {
527 LOG(WARNING) << "this is a test mode update attempt!";
Gilad Arnold4d740eb2012-05-15 08:48:13 -0700528 is_test_update_attempted_ = true;
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800529 }
530
Jay Srinivasan08fce042012-06-07 16:31:01 -0700531 // Passing true for is_user_initiated to indicate that this
532 // is not a scheduled update check.
Gilad Arnold7c04e762012-05-23 10:54:02 -0700533 Update(app_version, omaha_url, true, true, is_test_mode, is_user_initiated);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700534}
535
Darin Petkov296889c2010-07-23 16:20:54 -0700536bool UpdateAttempter::RebootIfNeeded() {
537 if (status_ != UPDATE_STATUS_UPDATED_NEED_REBOOT) {
538 LOG(INFO) << "Reboot requested, but status is "
539 << UpdateStatusToString(status_) << ", so not rebooting.";
540 return false;
541 }
542 TEST_AND_RETURN_FALSE(utils::Reboot());
543 return true;
544}
545
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700546// Delegate methods:
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700547void UpdateAttempter::ProcessingDone(const ActionProcessor* processor,
Darin Petkovc1a8b422010-07-19 11:34:49 -0700548 ActionExitCode code) {
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700549 CHECK(response_handler_action_);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700550 LOG(INFO) << "Processing Done.";
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700551 actions_.clear();
Darin Petkov09f96c32010-07-20 09:24:57 -0700552
Chris Sosa4f8ee272012-11-30 13:01:54 -0800553 // Reset cpu shares back to normal.
554 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700555
Darin Petkov09f96c32010-07-20 09:24:57 -0700556 if (status_ == UPDATE_STATUS_REPORTING_ERROR_EVENT) {
557 LOG(INFO) << "Error event sent.";
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800558
559 // Inform scheduler of new status; also specifically inform about a failed
560 // update attempt with a test address.
561 SetStatusAndNotify(UPDATE_STATUS_IDLE,
562 (is_using_test_url_ ? kUpdateNoticeTestAddrFailed :
563 kUpdateNoticeUnspecified));
564
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700565 if (!fake_update_success_) {
566 return;
567 }
568 LOG(INFO) << "Booted from FW B and tried to install new firmware, "
569 "so requesting reboot from user.";
Darin Petkov09f96c32010-07-20 09:24:57 -0700570 }
571
Darin Petkovc1a8b422010-07-19 11:34:49 -0700572 if (code == kActionCodeSuccess) {
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700573 utils::WriteFile(kUpdateCompletedMarker, "", 0);
Darin Petkov36275772010-10-01 11:40:57 -0700574 prefs_->SetInt64(kPrefsDeltaUpdateFailures, 0);
Darin Petkov95508da2011-01-05 12:42:29 -0800575 prefs_->SetString(kPrefsPreviousVersion, omaha_request_params_.app_version);
Darin Petkov9b230572010-10-08 10:20:09 -0700576 DeltaPerformer::ResetUpdateProgress(prefs_, false);
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700577
578 // Since we're done with scattering fully at this point, this is the
579 // safest point delete the state files, as we're sure that the status is
580 // set to reboot (which means no more updates will be applied until reboot)
581 // This deletion is required for correctness as we want the next update
582 // check to re-create a new random number for the update check count.
583 // Similarly, we also delete the wall-clock-wait period that was persisted
584 // so that we start with a new random value for the next update check
585 // after reboot so that the same device is not favored or punished in any
586 // way.
587 prefs_->Delete(kPrefsUpdateCheckCount);
588 prefs_->Delete(kPrefsWallClockWaitPeriod);
Jay Srinivasan34b5d862012-07-23 11:43:22 -0700589 prefs_->Delete(kPrefsUpdateFirstSeenAt);
Jay Srinivasanf0572052012-10-23 18:12:56 -0700590 LOG(INFO) << "Update successfully applied, waiting to reboot.";
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700591
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800592 SetStatusAndNotify(UPDATE_STATUS_UPDATED_NEED_REBOOT,
593 kUpdateNoticeUnspecified);
Darin Petkov9d65b7b2010-07-20 09:13:01 -0700594
595 // Report the time it took to update the system.
596 int64_t update_time = time(NULL) - last_checked_time_;
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700597 if (!fake_update_success_)
Jay Srinivasanf0572052012-10-23 18:12:56 -0700598 system_state_->metrics_lib()->SendToUMA(
599 "Installer.UpdateTime",
600 static_cast<int>(update_time), // sample
601 1, // min = 1 second
602 20 * 60, // max = 20 minutes
603 50); // buckets
604
605 // Also report the success code so that the percentiles can be
606 // interpreted properly for the remaining error codes in UMA.
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800607 utils::SendErrorCodeToUma(system_state_, code);
Darin Petkov09f96c32010-07-20 09:24:57 -0700608 return;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700609 }
Darin Petkov09f96c32010-07-20 09:24:57 -0700610
Darin Petkov1023a602010-08-30 13:47:51 -0700611 if (ScheduleErrorEventAction()) {
Darin Petkov09f96c32010-07-20 09:24:57 -0700612 return;
Darin Petkov1023a602010-08-30 13:47:51 -0700613 }
614 LOG(INFO) << "No update.";
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800615 SetStatusAndNotify(UPDATE_STATUS_IDLE, kUpdateNoticeUnspecified);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700616}
617
618void UpdateAttempter::ProcessingStopped(const ActionProcessor* processor) {
Chris Sosa4f8ee272012-11-30 13:01:54 -0800619 // Reset cpu shares back to normal.
620 CleanupCpuSharesManagement();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700621 download_progress_ = 0.0;
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800622 SetStatusAndNotify(UPDATE_STATUS_IDLE, kUpdateNoticeUnspecified);
Andrew de los Reyes6b78e292010-05-10 15:54:39 -0700623 actions_.clear();
Darin Petkov09f96c32010-07-20 09:24:57 -0700624 error_event_.reset(NULL);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700625}
626
627// Called whenever an action has finished processing, either successfully
628// or otherwise.
629void UpdateAttempter::ActionCompleted(ActionProcessor* processor,
630 AbstractAction* action,
Darin Petkovc1a8b422010-07-19 11:34:49 -0700631 ActionExitCode code) {
Darin Petkov1023a602010-08-30 13:47:51 -0700632 // Reset download progress regardless of whether or not the download
633 // action succeeded. Also, get the response code from HTTP request
634 // actions (update download as well as the initial update check
635 // actions).
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700636 const string type = action->Type();
Darin Petkov1023a602010-08-30 13:47:51 -0700637 if (type == DownloadAction::StaticType()) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700638 download_progress_ = 0.0;
Darin Petkov1023a602010-08-30 13:47:51 -0700639 DownloadAction* download_action = dynamic_cast<DownloadAction*>(action);
640 http_response_code_ = download_action->GetHTTPResponseCode();
641 } else if (type == OmahaRequestAction::StaticType()) {
642 OmahaRequestAction* omaha_request_action =
643 dynamic_cast<OmahaRequestAction*>(action);
644 // If the request is not an event, then it's the update-check.
645 if (!omaha_request_action->IsEvent()) {
646 http_response_code_ = omaha_request_action->GetHTTPResponseCode();
Darin Petkov85ced132010-09-01 10:20:56 -0700647 // Forward the server-dictated poll interval to the update check
648 // scheduler, if any.
649 if (update_check_scheduler_) {
650 update_check_scheduler_->set_poll_interval(
651 omaha_request_action->GetOutputObject().poll_interval);
652 }
Darin Petkov1023a602010-08-30 13:47:51 -0700653 }
654 }
Darin Petkov09f96c32010-07-20 09:24:57 -0700655 if (code != kActionCodeSuccess) {
Darin Petkov7ed561b2011-10-04 02:59:03 -0700656 // If the current state is at or past the download phase, count the failure
657 // in case a switch to full update becomes necessary. Ignore network
658 // transfer timeouts and failures.
Darin Petkov36275772010-10-01 11:40:57 -0700659 if (status_ >= UPDATE_STATUS_DOWNLOADING &&
Darin Petkov36275772010-10-01 11:40:57 -0700660 code != kActionCodeDownloadTransferError) {
661 MarkDeltaUpdateFailure();
662 }
Darin Petkov777dbfa2010-07-20 15:03:37 -0700663 // On failure, schedule an error event to be sent to Omaha.
664 CreatePendingErrorEvent(action, code);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700665 return;
Darin Petkov09f96c32010-07-20 09:24:57 -0700666 }
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700667 // Find out which action completed.
668 if (type == OmahaResponseHandlerAction::StaticType()) {
Darin Petkov9b230572010-10-08 10:20:09 -0700669 // Note that the status will be updated to DOWNLOADING when some bytes get
670 // actually downloaded from the server and the BytesReceived callback is
671 // invoked. This avoids notifying the user that a download has started in
672 // cases when the server and the client are unable to initiate the download.
673 CHECK(action == response_handler_action_.get());
674 const InstallPlan& plan = response_handler_action_->install_plan();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700675 last_checked_time_ = time(NULL);
676 // TODO(adlr): put version in InstallPlan
677 new_version_ = "0.0.0.0";
Jay Srinivasan51dcf262012-09-13 17:24:32 -0700678 new_payload_size_ = plan.payload_size;
Darin Petkov9b230572010-10-08 10:20:09 -0700679 SetupDownload();
Chris Sosa4f8ee272012-11-30 13:01:54 -0800680 SetupCpuSharesManagement();
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800681 SetStatusAndNotify(UPDATE_STATUS_UPDATE_AVAILABLE,
682 kUpdateNoticeUnspecified);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700683 } else if (type == DownloadAction::StaticType()) {
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800684 SetStatusAndNotify(UPDATE_STATUS_FINALIZING, kUpdateNoticeUnspecified);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700685 }
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700686}
687
688// Stop updating. An attempt will be made to record status to the disk
689// so that updates can be resumed later.
690void UpdateAttempter::Terminate() {
691 // TODO(adlr): implement this method.
692 NOTIMPLEMENTED();
693}
694
695// Try to resume from a previously Terminate()d update.
696void UpdateAttempter::ResumeUpdating() {
697 // TODO(adlr): implement this method.
698 NOTIMPLEMENTED();
699}
700
Darin Petkov9d911fa2010-08-19 09:36:08 -0700701void UpdateAttempter::SetDownloadStatus(bool active) {
702 download_active_ = active;
703 LOG(INFO) << "Download status: " << (active ? "active" : "inactive");
704}
705
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700706void UpdateAttempter::BytesReceived(uint64_t bytes_received, uint64_t total) {
Darin Petkov9d911fa2010-08-19 09:36:08 -0700707 if (!download_active_) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700708 LOG(ERROR) << "BytesReceived called while not downloading.";
709 return;
710 }
Darin Petkovaf183052010-08-23 12:07:13 -0700711 double progress = static_cast<double>(bytes_received) /
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700712 static_cast<double>(total);
Darin Petkovaf183052010-08-23 12:07:13 -0700713 // Self throttle based on progress. Also send notifications if
714 // progress is too slow.
715 const double kDeltaPercent = 0.01; // 1%
716 if (status_ != UPDATE_STATUS_DOWNLOADING ||
717 bytes_received == total ||
718 progress - download_progress_ >= kDeltaPercent ||
719 TimeTicks::Now() - last_notify_time_ >= TimeDelta::FromSeconds(10)) {
720 download_progress_ = progress;
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800721 SetStatusAndNotify(UPDATE_STATUS_DOWNLOADING, kUpdateNoticeUnspecified);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700722 }
723}
724
Jay Srinivasanc1ba09a2012-08-14 14:15:57 -0700725bool UpdateAttempter::ResetStatus() {
726 LOG(INFO) << "Attempting to reset state from "
727 << UpdateStatusToString(status_) << " to UPDATE_STATUS_IDLE";
728
729 switch (status_) {
730 case UPDATE_STATUS_IDLE:
731 // no-op.
732 return true;
733
734 case UPDATE_STATUS_UPDATED_NEED_REBOOT: {
735 status_ = UPDATE_STATUS_IDLE;
736 LOG(INFO) << "Reset Successful";
737
738 // also remove the reboot marker so that if the machine is rebooted
739 // after resetting to idle state, it doesn't go back to
740 // UPDATE_STATUS_UPDATED_NEED_REBOOT state.
741 const FilePath kUpdateCompletedMarkerPath(kUpdateCompletedMarker);
742 return file_util::Delete(kUpdateCompletedMarkerPath, false);
743 }
744
745 default:
746 LOG(ERROR) << "Reset not allowed in this state.";
747 return false;
748 }
749}
750
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700751bool UpdateAttempter::GetStatus(int64_t* last_checked_time,
752 double* progress,
Gilad Arnold28e2f392012-02-09 14:36:46 -0800753 string* current_operation,
754 string* new_version,
Jay Srinivasan51dcf262012-09-13 17:24:32 -0700755 int64_t* new_payload_size) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700756 *last_checked_time = last_checked_time_;
757 *progress = download_progress_;
758 *current_operation = UpdateStatusToString(status_);
759 *new_version = new_version_;
Jay Srinivasan51dcf262012-09-13 17:24:32 -0700760 *new_payload_size = new_payload_size_;
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700761 return true;
762}
763
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -0700764void UpdateAttempter::UpdateBootFlags() {
Darin Petkov58dd1342011-05-06 12:05:13 -0700765 if (update_boot_flags_running_) {
766 LOG(INFO) << "Update boot flags running, nothing to do.";
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -0700767 return;
768 }
Darin Petkov58dd1342011-05-06 12:05:13 -0700769 if (updated_boot_flags_) {
770 LOG(INFO) << "Already updated boot flags. Skipping.";
771 if (start_action_processor_) {
772 ScheduleProcessingStart();
773 }
774 return;
775 }
776 // This is purely best effort. Failures should be logged by Subprocess. Run
777 // the script asynchronously to avoid blocking the event loop regardless of
778 // the script runtime.
779 update_boot_flags_running_ = true;
780 LOG(INFO) << "Updating boot flags...";
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -0700781 vector<string> cmd(1, "/usr/sbin/chromeos-setgoodkernel");
Darin Petkov58dd1342011-05-06 12:05:13 -0700782 if (!Subprocess::Get().Exec(cmd, StaticCompleteUpdateBootFlags, this)) {
783 CompleteUpdateBootFlags(1);
784 }
785}
786
787void UpdateAttempter::CompleteUpdateBootFlags(int return_code) {
788 update_boot_flags_running_ = false;
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -0700789 updated_boot_flags_ = true;
Darin Petkov58dd1342011-05-06 12:05:13 -0700790 if (start_action_processor_) {
791 ScheduleProcessingStart();
792 }
793}
794
795void UpdateAttempter::StaticCompleteUpdateBootFlags(
796 int return_code,
Gilad Arnold28e2f392012-02-09 14:36:46 -0800797 const string& output,
Darin Petkov58dd1342011-05-06 12:05:13 -0700798 void* p) {
799 reinterpret_cast<UpdateAttempter*>(p)->CompleteUpdateBootFlags(return_code);
Andrew de los Reyes6dbf30a2011-04-19 10:58:16 -0700800}
801
Darin Petkov61635a92011-05-18 16:20:36 -0700802void UpdateAttempter::BroadcastStatus() {
803 if (!dbus_service_) {
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700804 return;
Darin Petkov61635a92011-05-18 16:20:36 -0700805 }
Darin Petkovaf183052010-08-23 12:07:13 -0700806 last_notify_time_ = TimeTicks::Now();
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700807 update_engine_service_emit_status_update(
808 dbus_service_,
809 last_checked_time_,
810 download_progress_,
811 UpdateStatusToString(status_),
812 new_version_.c_str(),
Jay Srinivasan51dcf262012-09-13 17:24:32 -0700813 new_payload_size_);
Andrew de los Reyes63b96d72010-05-10 13:08:54 -0700814}
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -0700815
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800816uint32_t UpdateAttempter::GetErrorCodeFlags() {
817 uint32_t flags = 0;
818
819 if (!utils::IsNormalBootMode())
820 flags |= kActionCodeDevModeFlag;
821
822 if (response_handler_action_.get() &&
823 response_handler_action_->install_plan().is_resume)
824 flags |= kActionCodeResumedFlag;
825
826 if (!utils::IsOfficialBuild())
827 flags |= kActionCodeTestImageFlag;
828
829 if (omaha_request_params_.update_url != kProductionOmahaUrl)
830 flags |= kActionCodeTestOmahaUrlFlag;
831
832 return flags;
833}
834
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800835void UpdateAttempter::SetStatusAndNotify(UpdateStatus status,
836 UpdateNotice notice) {
Darin Petkov61635a92011-05-18 16:20:36 -0700837 status_ = status;
838 if (update_check_scheduler_) {
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800839 update_check_scheduler_->SetUpdateStatus(status_, notice);
Darin Petkov61635a92011-05-18 16:20:36 -0700840 }
841 BroadcastStatus();
842}
843
Darin Petkov777dbfa2010-07-20 15:03:37 -0700844void UpdateAttempter::CreatePendingErrorEvent(AbstractAction* action,
845 ActionExitCode code) {
Darin Petkov09f96c32010-07-20 09:24:57 -0700846 if (error_event_.get()) {
847 // This shouldn't really happen.
848 LOG(WARNING) << "There's already an existing pending error event.";
849 return;
850 }
Darin Petkov777dbfa2010-07-20 15:03:37 -0700851
Darin Petkovabc7bc02011-02-23 14:39:43 -0800852 // For now assume that a generic Omaha response action failure means that
853 // there's no update so don't send an event. Also, double check that the
854 // failure has not occurred while sending an error event -- in which case
855 // don't schedule another. This shouldn't really happen but just in case...
856 if ((action->Type() == OmahaResponseHandlerAction::StaticType() &&
857 code == kActionCodeError) ||
Darin Petkov777dbfa2010-07-20 15:03:37 -0700858 status_ == UPDATE_STATUS_REPORTING_ERROR_EVENT) {
859 return;
860 }
861
Jay Srinivasan56d5aa42012-03-26 14:27:59 -0700862 // Classify the code to generate the appropriate result so that
863 // the Borgmon charts show up the results correctly.
864 // Do this before calling GetErrorCodeForAction which could potentially
865 // augment the bit representation of code and thus cause no matches for
866 // the switch cases below.
867 OmahaEvent::Result event_result;
868 switch (code) {
869 case kActionCodeOmahaUpdateIgnoredPerPolicy:
870 case kActionCodeOmahaUpdateDeferredPerPolicy:
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800871 case kActionCodeOmahaUpdateDeferredForBackoff:
Jay Srinivasan56d5aa42012-03-26 14:27:59 -0700872 event_result = OmahaEvent::kResultUpdateDeferred;
873 break;
874 default:
875 event_result = OmahaEvent::kResultError;
876 break;
877 }
878
Darin Petkov777dbfa2010-07-20 15:03:37 -0700879 code = GetErrorCodeForAction(action, code);
Andrew de los Reyesc1d5c932011-04-20 17:15:47 -0700880 fake_update_success_ = code == kActionCodePostinstallBootedFromFirmwareB;
Darin Petkov18c7bce2011-06-16 14:07:00 -0700881
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800882 // Compute the final error code with all the bit flags to be sent to Omaha.
883 code = static_cast<ActionExitCode>(code | GetErrorCodeFlags());
Darin Petkov09f96c32010-07-20 09:24:57 -0700884 error_event_.reset(new OmahaEvent(OmahaEvent::kTypeUpdateComplete,
Jay Srinivasan56d5aa42012-03-26 14:27:59 -0700885 event_result,
Darin Petkov09f96c32010-07-20 09:24:57 -0700886 code));
887}
888
889bool UpdateAttempter::ScheduleErrorEventAction() {
890 if (error_event_.get() == NULL)
891 return false;
892
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800893 LOG(ERROR) << "Update failed.";
894 system_state_->payload_state()->UpdateFailed(error_event_->error_code);
895
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800896 // Send it to Uma.
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800897 LOG(INFO) << "Reporting the error event";
Jay Srinivasan55f50c22013-01-10 19:24:35 -0800898 utils::SendErrorCodeToUma(system_state_, error_event_->error_code);
899
900 // Send it to Omaha.
Darin Petkov09f96c32010-07-20 09:24:57 -0700901 shared_ptr<OmahaRequestAction> error_event_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800902 new OmahaRequestAction(system_state_,
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700903 &omaha_request_params_,
Darin Petkov09f96c32010-07-20 09:24:57 -0700904 error_event_.release(), // Pass ownership.
Jay Srinivasan08fce042012-06-07 16:31:01 -0700905 new LibcurlHttpFetcher(GetProxyResolver(),
Gilad Arnold7c04e762012-05-23 10:54:02 -0700906 system_state_,
907 is_test_mode_),
Thieu Le116fda32011-04-19 11:01:54 -0700908 false));
Darin Petkov09f96c32010-07-20 09:24:57 -0700909 actions_.push_back(shared_ptr<AbstractAction>(error_event_action));
Darin Petkovf42cc1c2010-09-01 09:03:02 -0700910 processor_->EnqueueAction(error_event_action.get());
Gilad Arnold1ebd8132012-03-05 10:19:29 -0800911 SetStatusAndNotify(UPDATE_STATUS_REPORTING_ERROR_EVENT,
912 kUpdateNoticeUnspecified);
Darin Petkovf42cc1c2010-09-01 09:03:02 -0700913 processor_->StartProcessing();
Darin Petkov09f96c32010-07-20 09:24:57 -0700914 return true;
915}
916
Chris Sosa4f8ee272012-11-30 13:01:54 -0800917void UpdateAttempter::SetCpuShares(utils::CpuShares shares) {
918 if (shares_ == shares) {
Darin Petkovc6c135c2010-08-11 13:36:18 -0700919 return;
920 }
Chris Sosa4f8ee272012-11-30 13:01:54 -0800921 if (utils::SetCpuShares(shares)) {
922 shares_ = shares;
923 LOG(INFO) << "CPU shares = " << shares_;
Darin Petkovc6c135c2010-08-11 13:36:18 -0700924 }
925}
926
Chris Sosa4f8ee272012-11-30 13:01:54 -0800927void UpdateAttempter::SetupCpuSharesManagement() {
928 if (manage_shares_source_) {
929 LOG(ERROR) << "Cpu shares timeout source hasn't been destroyed.";
930 CleanupCpuSharesManagement();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700931 }
Chris Sosa4f8ee272012-11-30 13:01:54 -0800932 const int kCpuSharesTimeout = 2 * 60 * 60; // 2 hours
933 manage_shares_source_ = g_timeout_source_new_seconds(kCpuSharesTimeout);
934 g_source_set_callback(manage_shares_source_,
935 StaticManageCpuSharesCallback,
Darin Petkovc6c135c2010-08-11 13:36:18 -0700936 this,
937 NULL);
Chris Sosa4f8ee272012-11-30 13:01:54 -0800938 g_source_attach(manage_shares_source_, NULL);
939 SetCpuShares(utils::kCpuSharesLow);
Darin Petkovc6c135c2010-08-11 13:36:18 -0700940}
941
Chris Sosa4f8ee272012-11-30 13:01:54 -0800942void UpdateAttempter::CleanupCpuSharesManagement() {
943 if (manage_shares_source_) {
944 g_source_destroy(manage_shares_source_);
945 manage_shares_source_ = NULL;
Darin Petkovc6c135c2010-08-11 13:36:18 -0700946 }
Chris Sosa4f8ee272012-11-30 13:01:54 -0800947 SetCpuShares(utils::kCpuSharesNormal);
Darin Petkovc6c135c2010-08-11 13:36:18 -0700948}
949
Chris Sosa4f8ee272012-11-30 13:01:54 -0800950gboolean UpdateAttempter::StaticManageCpuSharesCallback(gpointer data) {
951 return reinterpret_cast<UpdateAttempter*>(data)->ManageCpuSharesCallback();
Darin Petkovc6c135c2010-08-11 13:36:18 -0700952}
953
Darin Petkove6ef2f82011-03-07 17:31:11 -0800954gboolean UpdateAttempter::StaticStartProcessing(gpointer data) {
955 reinterpret_cast<UpdateAttempter*>(data)->processor_->StartProcessing();
956 return FALSE; // Don't call this callback again.
957}
958
Darin Petkov58dd1342011-05-06 12:05:13 -0700959void UpdateAttempter::ScheduleProcessingStart() {
960 LOG(INFO) << "Scheduling an action processor start.";
961 start_action_processor_ = false;
962 g_idle_add(&StaticStartProcessing, this);
963}
964
Chris Sosa4f8ee272012-11-30 13:01:54 -0800965bool UpdateAttempter::ManageCpuSharesCallback() {
966 SetCpuShares(utils::kCpuSharesNormal);
967 manage_shares_source_ = NULL;
Darin Petkovf622ef72010-10-26 13:49:24 -0700968 return false; // Destroy the timeout source.
Darin Petkovc6c135c2010-08-11 13:36:18 -0700969}
970
Darin Petkov36275772010-10-01 11:40:57 -0700971void UpdateAttempter::DisableDeltaUpdateIfNeeded() {
972 int64_t delta_failures;
973 if (omaha_request_params_.delta_okay &&
974 prefs_->GetInt64(kPrefsDeltaUpdateFailures, &delta_failures) &&
975 delta_failures >= kMaxDeltaUpdateFailures) {
976 LOG(WARNING) << "Too many delta update failures, forcing full update.";
977 omaha_request_params_.delta_okay = false;
978 }
979}
980
981void UpdateAttempter::MarkDeltaUpdateFailure() {
Darin Petkov2dd01092010-10-08 15:43:05 -0700982 // Don't try to resume a failed delta update.
983 DeltaPerformer::ResetUpdateProgress(prefs_, false);
Darin Petkov36275772010-10-01 11:40:57 -0700984 int64_t delta_failures;
985 if (!prefs_->GetInt64(kPrefsDeltaUpdateFailures, &delta_failures) ||
986 delta_failures < 0) {
987 delta_failures = 0;
988 }
989 prefs_->SetInt64(kPrefsDeltaUpdateFailures, ++delta_failures);
990}
991
Darin Petkov9b230572010-10-08 10:20:09 -0700992void UpdateAttempter::SetupDownload() {
Gilad Arnold9bedeb52011-11-17 16:19:57 -0800993 MultiRangeHttpFetcher* fetcher =
994 dynamic_cast<MultiRangeHttpFetcher*>(download_action_->http_fetcher());
Andrew de los Reyes819fef22010-12-17 11:33:58 -0800995 fetcher->ClearRanges();
Darin Petkov9b230572010-10-08 10:20:09 -0700996 if (response_handler_action_->install_plan().is_resume) {
Darin Petkovb21ce5d2010-10-21 16:03:05 -0700997 // Resuming an update so fetch the update manifest metadata first.
Darin Petkov9b230572010-10-08 10:20:09 -0700998 int64_t manifest_metadata_size = 0;
999 prefs_->GetInt64(kPrefsManifestMetadataSize, &manifest_metadata_size);
Andrew de los Reyes819fef22010-12-17 11:33:58 -08001000 fetcher->AddRange(0, manifest_metadata_size);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001001 // If there're remaining unprocessed data blobs, fetch them. Be careful not
1002 // to request data beyond the end of the payload to avoid 416 HTTP response
1003 // error codes.
Darin Petkov9b230572010-10-08 10:20:09 -07001004 int64_t next_data_offset = 0;
1005 prefs_->GetInt64(kPrefsUpdateStateNextDataOffset, &next_data_offset);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001006 uint64_t resume_offset = manifest_metadata_size + next_data_offset;
Jay Srinivasan51dcf262012-09-13 17:24:32 -07001007 if (resume_offset < response_handler_action_->install_plan().payload_size) {
Gilad Arnolde4ad2502011-12-29 17:08:54 -08001008 fetcher->AddRange(resume_offset);
Darin Petkovb21ce5d2010-10-21 16:03:05 -07001009 }
Darin Petkov9b230572010-10-08 10:20:09 -07001010 } else {
Gilad Arnolde4ad2502011-12-29 17:08:54 -08001011 fetcher->AddRange(0);
Darin Petkov9b230572010-10-08 10:20:09 -07001012 }
Darin Petkov9b230572010-10-08 10:20:09 -07001013}
1014
Thieu Le116fda32011-04-19 11:01:54 -07001015void UpdateAttempter::PingOmaha() {
Thieu Led88a8572011-05-26 09:09:19 -07001016 if (!processor_->IsRunning()) {
1017 shared_ptr<OmahaRequestAction> ping_action(
Jay Srinivasan6f6ea002012-12-14 11:26:28 -08001018 new OmahaRequestAction(system_state_,
Jay Srinivasan480ddfa2012-06-01 19:15:26 -07001019 &omaha_request_params_,
Thieu Led88a8572011-05-26 09:09:19 -07001020 NULL,
Jay Srinivasan08fce042012-06-07 16:31:01 -07001021 new LibcurlHttpFetcher(GetProxyResolver(),
Gilad Arnold7c04e762012-05-23 10:54:02 -07001022 system_state_,
1023 is_test_mode_),
Thieu Led88a8572011-05-26 09:09:19 -07001024 true));
1025 actions_.push_back(shared_ptr<OmahaRequestAction>(ping_action));
1026 processor_->set_delegate(NULL);
1027 processor_->EnqueueAction(ping_action.get());
1028 // Call StartProcessing() synchronously here to avoid any race conditions
1029 // caused by multiple outstanding ping Omaha requests. If we call
1030 // StartProcessing() asynchronously, the device can be suspended before we
1031 // get a chance to callback to StartProcessing(). When the device resumes
1032 // (assuming the device sleeps longer than the next update check period),
1033 // StartProcessing() is called back and at the same time, the next update
1034 // check is fired which eventually invokes StartProcessing(). A crash
1035 // can occur because StartProcessing() checks to make sure that the
1036 // processor is idle which it isn't due to the two concurrent ping Omaha
1037 // requests.
1038 processor_->StartProcessing();
1039 } else {
Darin Petkov58dd1342011-05-06 12:05:13 -07001040 LOG(WARNING) << "Action processor running, Omaha ping suppressed.";
Darin Petkov58dd1342011-05-06 12:05:13 -07001041 }
Thieu Led88a8572011-05-26 09:09:19 -07001042
1043 // Update the status which will schedule the next update check
Gilad Arnold1ebd8132012-03-05 10:19:29 -08001044 SetStatusAndNotify(UPDATE_STATUS_UPDATED_NEED_REBOOT,
1045 kUpdateNoticeUnspecified);
Thieu Le116fda32011-04-19 11:01:54 -07001046}
1047
Jay Srinivasan480ddfa2012-06-01 19:15:26 -07001048
1049bool UpdateAttempter::DecrementUpdateCheckCount() {
1050 int64 update_check_count_value;
1051
1052 if (!prefs_->Exists(kPrefsUpdateCheckCount)) {
1053 // This file does not exist. This means we haven't started our update
1054 // check count down yet, so nothing more to do. This file will be created
1055 // later when we first satisfy the wall-clock-based-wait period.
1056 LOG(INFO) << "No existing update check count. That's normal.";
1057 return true;
1058 }
1059
1060 if (prefs_->GetInt64(kPrefsUpdateCheckCount, &update_check_count_value)) {
1061 // Only if we're able to read a proper integer value, then go ahead
1062 // and decrement and write back the result in the same file, if needed.
1063 LOG(INFO) << "Update check count = " << update_check_count_value;
1064
1065 if (update_check_count_value == 0) {
1066 // It could be 0, if, for some reason, the file didn't get deleted
1067 // when we set our status to waiting for reboot. so we just leave it
1068 // as is so that we can prevent another update_check wait for this client.
1069 LOG(INFO) << "Not decrementing update check count as it's already 0.";
1070 return true;
1071 }
1072
1073 if (update_check_count_value > 0)
1074 update_check_count_value--;
1075 else
1076 update_check_count_value = 0;
1077
1078 // Write out the new value of update_check_count_value.
1079 if (prefs_->SetInt64(kPrefsUpdateCheckCount, update_check_count_value)) {
1080 // We successfully wrote out te new value, so enable the
1081 // update check based wait.
1082 LOG(INFO) << "New update check count = " << update_check_count_value;
1083 return true;
1084 }
1085 }
1086
1087 LOG(INFO) << "Deleting update check count state due to read/write errors.";
1088
1089 // We cannot read/write to the file, so disable the update check based wait
1090 // so that we don't get stuck in this OS version by any chance (which could
1091 // happen if there's some bug that causes to read/write incorrectly).
1092 // Also attempt to delete the file to do our best effort to cleanup.
1093 prefs_->Delete(kPrefsUpdateCheckCount);
1094 return false;
1095}
1096
Andrew de los Reyes4e9b9f42010-04-26 15:06:43 -07001097} // namespace chromeos_update_engine