Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 1 | // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_H__ |
| 6 | #define CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_H__ |
| 7 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 8 | #include <time.h> |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 9 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 10 | #include <tr1/memory> |
| 11 | #include <string> |
| 12 | #include <vector> |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 13 | |
Darin Petkov | 85ced13 | 2010-09-01 10:20:56 -0700 | [diff] [blame] | 14 | #include <base/time.h> |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 15 | #include <glib.h> |
Darin Petkov | f42cc1c | 2010-09-01 09:03:02 -0700 | [diff] [blame] | 16 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 17 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 18 | #include "update_engine/action_processor.h" |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 19 | #include "update_engine/download_action.h" |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 20 | #include "update_engine/omaha_request_params.h" |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 21 | #include "update_engine/omaha_response_handler_action.h" |
| 22 | |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 23 | class MetricsLibraryInterface; |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 24 | struct UpdateEngineService; |
| 25 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 26 | namespace chromeos_update_engine { |
| 27 | |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 28 | class UpdateCheckScheduler; |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 29 | |
Andrew de los Reyes | 6b78e29 | 2010-05-10 15:54:39 -0700 | [diff] [blame] | 30 | extern const char* kUpdateCompletedMarker; |
| 31 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 32 | enum UpdateStatus { |
| 33 | UPDATE_STATUS_IDLE = 0, |
| 34 | UPDATE_STATUS_CHECKING_FOR_UPDATE, |
| 35 | UPDATE_STATUS_UPDATE_AVAILABLE, |
| 36 | UPDATE_STATUS_DOWNLOADING, |
| 37 | UPDATE_STATUS_VERIFYING, |
| 38 | UPDATE_STATUS_FINALIZING, |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 39 | UPDATE_STATUS_UPDATED_NEED_REBOOT, |
| 40 | UPDATE_STATUS_REPORTING_ERROR_EVENT, |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | const char* UpdateStatusToString(UpdateStatus status); |
| 44 | |
| 45 | class UpdateAttempter : public ActionProcessorDelegate, |
| 46 | public DownloadActionDelegate { |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 47 | public: |
Darin Petkov | 3627577 | 2010-10-01 11:40:57 -0700 | [diff] [blame^] | 48 | static const int kMaxDeltaUpdateFailures; |
| 49 | |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 50 | UpdateAttempter(PrefsInterface* prefs, MetricsLibraryInterface* metrics_lib); |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 51 | virtual ~UpdateAttempter(); |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 52 | |
Darin Petkov | 5a7f565 | 2010-07-22 21:40:09 -0700 | [diff] [blame] | 53 | // Checks for update and, if a newer version is available, attempts |
| 54 | // to update the system. Non-empty |in_app_version| or |
| 55 | // |in_update_url| prevents automatic detection of the parameter. |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 56 | virtual void Update(const std::string& app_version, |
| 57 | const std::string& omaha_url); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 58 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 59 | // ActionProcessorDelegate methods: |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 60 | void ProcessingDone(const ActionProcessor* processor, ActionExitCode code); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 61 | void ProcessingStopped(const ActionProcessor* processor); |
| 62 | void ActionCompleted(ActionProcessor* processor, |
| 63 | AbstractAction* action, |
Darin Petkov | c1a8b42 | 2010-07-19 11:34:49 -0700 | [diff] [blame] | 64 | ActionExitCode code); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 65 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 66 | // Stop updating. An attempt will be made to record status to the disk |
| 67 | // so that updates can be resumed later. |
| 68 | void Terminate(); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 69 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 70 | // Try to resume from a previously Terminate()d update. |
| 71 | void ResumeUpdating(); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 72 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 73 | // Returns the current status in the out params. Returns true on success. |
| 74 | bool GetStatus(int64_t* last_checked_time, |
| 75 | double* progress, |
| 76 | std::string* current_operation, |
| 77 | std::string* new_version, |
| 78 | int64_t* new_size); |
| 79 | |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 80 | UpdateStatus status() const { return status_; } |
| 81 | |
| 82 | int http_response_code() const { return http_response_code_; } |
| 83 | void set_http_response_code(int code) { http_response_code_ = code; } |
| 84 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 85 | void set_dbus_service(struct UpdateEngineService* dbus_service) { |
| 86 | dbus_service_ = dbus_service; |
| 87 | } |
| 88 | |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 89 | UpdateCheckScheduler* update_check_scheduler() const { |
| 90 | return update_check_scheduler_; |
| 91 | } |
| 92 | void set_update_check_scheduler(UpdateCheckScheduler* scheduler) { |
| 93 | update_check_scheduler_ = scheduler; |
| 94 | } |
| 95 | |
Darin Petkov | 5a7f565 | 2010-07-22 21:40:09 -0700 | [diff] [blame] | 96 | // This is the D-Bus service entry point for going through an |
| 97 | // update. If the current status is idle invokes Update. |
| 98 | void CheckForUpdate(const std::string& app_version, |
| 99 | const std::string& omaha_url); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 100 | |
Darin Petkov | 296889c | 2010-07-23 16:20:54 -0700 | [diff] [blame] | 101 | // Initiates a reboot if the current state is |
| 102 | // UPDATED_NEED_REBOOT. Returns true on sucess, false otherwise. |
| 103 | bool RebootIfNeeded(); |
| 104 | |
Darin Petkov | 9d911fa | 2010-08-19 09:36:08 -0700 | [diff] [blame] | 105 | // DownloadActionDelegate methods |
| 106 | void SetDownloadStatus(bool active); |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 107 | void BytesReceived(uint64_t bytes_received, uint64_t total); |
| 108 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 109 | private: |
Darin Petkov | f42cc1c | 2010-09-01 09:03:02 -0700 | [diff] [blame] | 110 | friend class UpdateAttempterTest; |
Darin Petkov | 3627577 | 2010-10-01 11:40:57 -0700 | [diff] [blame^] | 111 | FRIEND_TEST(UpdateAttempterTest, DisableDeltaUpdateIfNeededTest); |
| 112 | FRIEND_TEST(UpdateAttempterTest, MarkDeltaUpdateFailureTest); |
Darin Petkov | f42cc1c | 2010-09-01 09:03:02 -0700 | [diff] [blame] | 113 | FRIEND_TEST(UpdateAttempterTest, UpdateTest); |
| 114 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 115 | // Sets the status to the given status and notifies a status update |
| 116 | // over dbus. |
| 117 | void SetStatusAndNotify(UpdateStatus status); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 118 | |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 119 | // Creates an error event object in |error_event_| to be included in |
| 120 | // an OmahaRequestAction once the current action processor is done. |
Darin Petkov | 777dbfa | 2010-07-20 15:03:37 -0700 | [diff] [blame] | 121 | void CreatePendingErrorEvent(AbstractAction* action, ActionExitCode code); |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 122 | |
| 123 | // If there's a pending error event allocated in |error_event_|, |
| 124 | // schedules an OmahaRequestAction with that event in the current |
| 125 | // processor, clears the pending event, updates the status and |
| 126 | // returns true. Returns false otherwise. |
| 127 | bool ScheduleErrorEventAction(); |
| 128 | |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 129 | // Sets the process priority to |priority| and updates |priority_| |
| 130 | // if the new |priority| is different than the current |priority_|, |
| 131 | // otherwise simply returns. |
| 132 | void SetPriority(utils::ProcessPriority priority); |
| 133 | |
| 134 | // Set the process priority to low and sets up timeout events to |
| 135 | // increase the priority gradually to high. |
| 136 | void SetupPriorityManagement(); |
| 137 | |
| 138 | // Resets the process priority to normal and destroys any scheduled |
| 139 | // timeout sources. |
| 140 | void CleanupPriorityManagement(); |
| 141 | |
| 142 | // The process priority timeout source callback increases the |
| 143 | // current priority by one step (low goes to normal, normal goes to |
| 144 | // high). Returns true if the callback must be invoked again after a |
| 145 | // timeout, or false if GLib can destroy this timeout source. |
| 146 | static gboolean StaticManagePriorityCallback(gpointer data); |
| 147 | bool ManagePriorityCallback(); |
| 148 | |
Darin Petkov | 3627577 | 2010-10-01 11:40:57 -0700 | [diff] [blame^] | 149 | // Checks if a full update is needed and forces it by updating the Omaha |
| 150 | // request params. |
| 151 | void DisableDeltaUpdateIfNeeded(); |
| 152 | |
| 153 | // If this was a delta update attempt that failed, count it so that a full |
| 154 | // update can be tried when needed. |
| 155 | void MarkDeltaUpdateFailure(); |
| 156 | |
Darin Petkov | af18305 | 2010-08-23 12:07:13 -0700 | [diff] [blame] | 157 | // Last status notification timestamp used for throttling. Use |
| 158 | // monotonic TimeTicks to ensure that notifications are sent even if |
| 159 | // the system clock is set back in the middle of an update. |
| 160 | base::TimeTicks last_notify_time_; |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 161 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 162 | std::vector<std::tr1::shared_ptr<AbstractAction> > actions_; |
Darin Petkov | f42cc1c | 2010-09-01 09:03:02 -0700 | [diff] [blame] | 163 | scoped_ptr<ActionProcessor> processor_; |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 164 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 165 | // If non-null, this UpdateAttempter will send status updates over this |
| 166 | // dbus service. |
| 167 | UpdateEngineService* dbus_service_; |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 168 | |
| 169 | // pointer to the OmahaResponseHandlerAction in the actions_ vector; |
| 170 | std::tr1::shared_ptr<OmahaResponseHandlerAction> response_handler_action_; |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 171 | |
Darin Petkov | 1cbd78f | 2010-07-29 12:38:34 -0700 | [diff] [blame] | 172 | // Pointer to the preferences store interface. |
| 173 | PrefsInterface* prefs_; |
| 174 | |
Darin Petkov | 9d65b7b | 2010-07-20 09:13:01 -0700 | [diff] [blame] | 175 | // Pointer to the UMA metrics collection library. |
| 176 | MetricsLibraryInterface* metrics_lib_; |
| 177 | |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 178 | // The current UpdateCheckScheduler to notify of state transitions. |
| 179 | UpdateCheckScheduler* update_check_scheduler_; |
| 180 | |
Darin Petkov | 09f96c3 | 2010-07-20 09:24:57 -0700 | [diff] [blame] | 181 | // Pending error event, if any. |
| 182 | scoped_ptr<OmahaEvent> error_event_; |
| 183 | |
Darin Petkov | 85ced13 | 2010-09-01 10:20:56 -0700 | [diff] [blame] | 184 | // HTTP server response code from the last HTTP request action. |
Darin Petkov | 1023a60 | 2010-08-30 13:47:51 -0700 | [diff] [blame] | 185 | int http_response_code_; |
| 186 | |
Darin Petkov | c6c135c | 2010-08-11 13:36:18 -0700 | [diff] [blame] | 187 | // Current process priority. |
| 188 | utils::ProcessPriority priority_; |
| 189 | |
| 190 | // The process priority management timeout source. |
| 191 | GSource* manage_priority_source_; |
| 192 | |
Darin Petkov | 9d911fa | 2010-08-19 09:36:08 -0700 | [diff] [blame] | 193 | // Set to true if an update download is active (and BytesReceived |
| 194 | // will be called), set to false otherwise. |
| 195 | bool download_active_; |
| 196 | |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 197 | // For status: |
| 198 | UpdateStatus status_; |
| 199 | double download_progress_; |
| 200 | int64_t last_checked_time_; |
| 201 | std::string new_version_; |
| 202 | int64_t new_size_; |
Darin Petkov | 3627577 | 2010-10-01 11:40:57 -0700 | [diff] [blame^] | 203 | bool is_full_update_; |
Andrew de los Reyes | 63b96d7 | 2010-05-10 13:08:54 -0700 | [diff] [blame] | 204 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 205 | // Device paramaters common to all Omaha requests. |
| 206 | OmahaRequestDeviceParams omaha_request_params_; |
| 207 | |
Andrew de los Reyes | 4e9b9f4 | 2010-04-26 15:06:43 -0700 | [diff] [blame] | 208 | DISALLOW_COPY_AND_ASSIGN(UpdateAttempter); |
| 209 | }; |
| 210 | |
| 211 | } // namespace chromeos_update_engine |
| 212 | |
| 213 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_H__ |