blob: 499f8f6b6b6fbaec0681d60935677a4c73361689 [file] [log] [blame]
Alex Deymo5e3ea272016-01-28 13:42:23 -08001//
2// Copyright (C) 2016 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Amin Hassaniec7bc112020-10-29 16:47:58 -070017#ifndef UPDATE_ENGINE_AOSP_UPDATE_ATTEMPTER_ANDROID_H_
18#define UPDATE_ENGINE_AOSP_UPDATE_ATTEMPTER_ANDROID_H_
Alex Deymo5e3ea272016-01-28 13:42:23 -080019
20#include <stdint.h>
21
22#include <memory>
23#include <string>
24#include <vector>
25
Kyeongkab.Nam500ca132019-06-26 13:48:07 +090026#include <android-base/unique_fd.h>
Alex Deymo5e3ea272016-01-28 13:42:23 -080027#include <base/time/time.h>
28
Amin Hassaniec7bc112020-10-29 16:47:58 -070029#include "update_engine/aosp/service_delegate_android_interface.h"
Alex Deymo5e3ea272016-01-28 13:42:23 -080030#include "update_engine/client_library/include/update_engine/update_status.h"
31#include "update_engine/common/action_processor.h"
32#include "update_engine/common/boot_control_interface.h"
Tianjie Xu90aaa102017-10-10 17:39:03 -070033#include "update_engine/common/clock.h"
Amin Hassaniec7bc112020-10-29 16:47:58 -070034#include "update_engine/common/daemon_state_interface.h"
35#include "update_engine/common/download_action.h"
Alex Deymo5e3ea272016-01-28 13:42:23 -080036#include "update_engine/common/hardware_interface.h"
Amin Hassaniec7bc112020-10-29 16:47:58 -070037#include "update_engine/common/metrics_reporter_interface.h"
38#include "update_engine/common/network_selector_interface.h"
Alex Deymo5e3ea272016-01-28 13:42:23 -080039#include "update_engine/common/prefs_interface.h"
Amin Hassaniec7bc112020-10-29 16:47:58 -070040#include "update_engine/common/service_observer_interface.h"
Tianjie Xu90aaa102017-10-10 17:39:03 -070041#include "update_engine/metrics_utils.h"
Kelvin Zhang70eef232020-06-12 20:32:40 +000042#include "update_engine/payload_consumer/filesystem_verifier_action.h"
Alex Deymo0d298542016-03-30 18:31:49 -070043#include "update_engine/payload_consumer/postinstall_runner_action.h"
Alex Deymo5e3ea272016-01-28 13:42:23 -080044
45namespace chromeos_update_engine {
46
Alex Deymo0d298542016-03-30 18:31:49 -070047class UpdateAttempterAndroid
48 : public ServiceDelegateAndroidInterface,
49 public ActionProcessorDelegate,
50 public DownloadActionDelegate,
Kelvin Zhang70eef232020-06-12 20:32:40 +000051 public FilesystemVerifyDelegate,
Yifan Hong90965502020-02-19 15:22:47 -080052 public PostinstallRunnerAction::DelegateInterface,
53 public CleanupPreviousUpdateActionDelegateInterface {
Alex Deymo5e3ea272016-01-28 13:42:23 -080054 public:
55 using UpdateStatus = update_engine::UpdateStatus;
56
Alex Deymo03a4de72016-07-20 16:08:23 -070057 UpdateAttempterAndroid(DaemonStateInterface* daemon_state,
Alex Deymo5e3ea272016-01-28 13:42:23 -080058 PrefsInterface* prefs,
59 BootControlInterface* boot_control_,
60 HardwareInterface* hardware_);
61 ~UpdateAttempterAndroid() override;
62
63 // Further initialization to be done post construction.
64 void Init();
65
66 // ServiceDelegateAndroidInterface overrides.
67 bool ApplyPayload(const std::string& payload_url,
68 int64_t payload_offset,
69 int64_t payload_size,
70 const std::vector<std::string>& key_value_pair_headers,
71 brillo::ErrorPtr* error) override;
Kyeongkab.Nam500ca132019-06-26 13:48:07 +090072 bool ApplyPayload(int fd,
73 int64_t payload_offset,
74 int64_t payload_size,
75 const std::vector<std::string>& key_value_pair_headers,
76 brillo::ErrorPtr* error) override;
Alex Deymo5e3ea272016-01-28 13:42:23 -080077 bool SuspendUpdate(brillo::ErrorPtr* error) override;
78 bool ResumeUpdate(brillo::ErrorPtr* error) override;
79 bool CancelUpdate(brillo::ErrorPtr* error) override;
Alex Deymo3b678db2016-02-09 11:50:06 -080080 bool ResetStatus(brillo::ErrorPtr* error) override;
Sen Jiang28d8ed92018-02-01 13:46:39 -080081 bool VerifyPayloadApplicable(const std::string& metadata_filename,
82 brillo::ErrorPtr* error) override;
Yifan Hong6f7e29f2019-12-13 14:41:06 -080083 uint64_t AllocateSpaceForPayload(
84 const std::string& metadata_filename,
85 const std::vector<std::string>& key_value_pair_headers,
86 brillo::ErrorPtr* error) override;
Yifan Hong40bb0d02020-02-24 17:33:14 -080087 void CleanupSuccessfulUpdate(
88 std::unique_ptr<CleanupSuccessfulUpdateCallbackInterface> callback,
89 brillo::ErrorPtr* error) override;
Alex Deymo5e3ea272016-01-28 13:42:23 -080090
91 // ActionProcessorDelegate methods:
92 void ProcessingDone(const ActionProcessor* processor,
93 ErrorCode code) override;
94 void ProcessingStopped(const ActionProcessor* processor) override;
95 void ActionCompleted(ActionProcessor* processor,
96 AbstractAction* action,
97 ErrorCode code) override;
98
99 // DownloadActionDelegate overrides.
100 void BytesReceived(uint64_t bytes_progressed,
101 uint64_t bytes_received,
102 uint64_t total) override;
103 bool ShouldCancel(ErrorCode* cancel_reason) override;
104 void DownloadComplete() override;
105
Kelvin Zhang70eef232020-06-12 20:32:40 +0000106 // FilesystemVerifyDelegate overrides
107 void OnVerifyProgressUpdate(double progress) override;
108
Alex Deymo0d298542016-03-30 18:31:49 -0700109 // PostinstallRunnerAction::DelegateInterface
110 void ProgressUpdate(double progress) override;
111
Yifan Hong90965502020-02-19 15:22:47 -0800112 // CleanupPreviousUpdateActionDelegateInterface
113 void OnCleanupProgressUpdate(double progress) override;
114
Alex Deymo5e3ea272016-01-28 13:42:23 -0800115 private:
Tianjie Xu90aaa102017-10-10 17:39:03 -0700116 friend class UpdateAttempterAndroidTest;
117
Alex Deymo5e3ea272016-01-28 13:42:23 -0800118 // Schedules an event loop callback to start the action processor. This is
119 // scheduled asynchronously to unblock the event loop.
120 void ScheduleProcessingStart();
121
122 // Notifies an update request completed with the given error |code| to all
123 // observers.
124 void TerminateUpdateAndNotify(ErrorCode error_code);
125
126 // Sets the status to the given |status| and notifies a status update to
127 // all observers.
128 void SetStatusAndNotify(UpdateStatus status);
129
130 // Helper method to construct the sequence of actions to be performed for
Amin Hassani667cf7b2018-07-25 14:32:00 -0700131 // applying an update using a given HttpFetcher. The ownership of |fetcher| is
132 // passed to this function.
133 void BuildUpdateActions(HttpFetcher* fetcher);
Alex Deymo5e3ea272016-01-28 13:42:23 -0800134
Alex Deymo5e3ea272016-01-28 13:42:23 -0800135 // Writes to the processing completed marker. Does nothing if
136 // |update_completed_marker_| is empty.
137 bool WriteUpdateCompletedMarker();
138
139 // Returns whether an update was completed in the current boot.
140 bool UpdateCompletedOnThisBoot();
141
Tianjie Xu90aaa102017-10-10 17:39:03 -0700142 // Prefs to use for metrics report
143 // |kPrefsPayloadAttemptNumber|: number of update attempts for the current
144 // payload_id.
145 // |KprefsNumReboots|: number of reboots when applying the current update.
146 // |kPrefsSystemUpdatedMarker|: end timestamp of the last successful update.
Tianjie Xu2a0ea632018-08-06 12:59:23 -0700147 // |kPrefsUpdateTimestampStart|: start timestamp in monotonic time of the
148 // current update.
149 // |kPrefsUpdateBootTimestampStart|: start timestamp in boot time of
150 // the current update.
Tianjie Xud4777a12017-10-24 14:54:18 -0700151 // |kPrefsCurrentBytesDownloaded|: number of bytes downloaded for the current
152 // payload_id.
153 // |kPrefsTotalBytesDownloaded|: number of bytes downloaded in total since
154 // the last successful update.
Tianjie Xu90aaa102017-10-10 17:39:03 -0700155
156 // Metrics report function to call:
157 // |ReportUpdateAttemptMetrics|
158 // |ReportSuccessfulUpdateMetrics|
159 // Prefs to update:
160 // |kPrefsSystemUpdatedMarker|
161 void CollectAndReportUpdateMetricsOnUpdateFinished(ErrorCode error_code);
162
163 // Metrics report function to call:
164 // |ReportAbnormallyTerminatedUpdateAttemptMetrics|
165 // |ReportTimeToRebootMetrics|
166 // Prefs to update:
167 // |kPrefsBootId|, |kPrefsPreviousVersion|
168 void UpdatePrefsAndReportUpdateMetricsOnReboot();
169
170 // Prefs to update:
Tianjie Xu2a0ea632018-08-06 12:59:23 -0700171 // |kPrefsPayloadAttemptNumber|, |kPrefsUpdateTimestampStart|,
172 // |kPrefsUpdateBootTimestampStart|
Tianjie Xu90aaa102017-10-10 17:39:03 -0700173 void UpdatePrefsOnUpdateStart(bool is_resume);
174
175 // Prefs to delete:
xunchang9cf52622019-01-25 11:04:58 -0800176 // |kPrefsNumReboots|, |kPrefsCurrentBytesDownloaded|
Tianjie Xud4777a12017-10-24 14:54:18 -0700177 // |kPrefsSystemUpdatedMarker|, |kPrefsUpdateTimestampStart|,
xunchang9cf52622019-01-25 11:04:58 -0800178 // |kPrefsUpdateBootTimestampStart|
Tianjie Xu90aaa102017-10-10 17:39:03 -0700179 void ClearMetricsPrefs();
180
Yifan Hongbd47d622019-12-13 14:59:58 -0800181 // Return source and target slots for update.
182 BootControlInterface::Slot GetCurrentSlot() const;
183 BootControlInterface::Slot GetTargetSlot() const;
184
185 // Helper of public VerifyPayloadApplicable. Return the parsed manifest in
186 // |manifest|.
187 static bool VerifyPayloadParseManifest(const std::string& metadata_filename,
188 DeltaArchiveManifest* manifest,
189 brillo::ErrorPtr* error);
190
Yifan Hong90965502020-02-19 15:22:47 -0800191 // Enqueue and run a CleanupPreviousUpdateAction.
192 void ScheduleCleanupPreviousUpdate();
193
Yifan Hong40bb0d02020-02-24 17:33:14 -0800194 // Notify and clear |cleanup_previous_update_callbacks_|.
195 void NotifyCleanupPreviousUpdateCallbacksAndClear();
196
197 // Remove |callback| from |cleanup_previous_update_callbacks_|.
198 void RemoveCleanupPreviousUpdateCallback(
199 CleanupSuccessfulUpdateCallbackInterface* callback);
200
Alex Deymo03a4de72016-07-20 16:08:23 -0700201 DaemonStateInterface* daemon_state_;
Alex Deymo5e3ea272016-01-28 13:42:23 -0800202
203 // DaemonStateAndroid pointers.
204 PrefsInterface* prefs_;
205 BootControlInterface* boot_control_;
206 HardwareInterface* hardware_;
207
208 // Last status notification timestamp used for throttling. Use monotonic
209 // TimeTicks to ensure that notifications are sent even if the system clock is
210 // set back in the middle of an update.
211 base::TimeTicks last_notify_time_;
212
Amin Hassani04d41622018-12-20 15:35:41 -0800213 // Only direct proxy supported.
214 DirectProxyResolver proxy_resolver_;
215
Amin Hassani667cf7b2018-07-25 14:32:00 -0700216 // The processor for running Actions.
Alex Deymo5e3ea272016-01-28 13:42:23 -0800217 std::unique_ptr<ActionProcessor> processor_;
218
Alex Deymo5e3ea272016-01-28 13:42:23 -0800219 // The InstallPlan used during the ongoing update.
220 InstallPlan install_plan_;
221
222 // For status:
223 UpdateStatus status_{UpdateStatus::IDLE};
224 double download_progress_{0.0};
225
Alex Deymo0fd51ff2016-02-03 14:22:43 -0800226 // The offset in the payload file where the CrAU part starts.
227 int64_t base_offset_{0};
228
Alex Deymo87792ea2016-07-25 15:40:36 -0700229 // Helper class to select the network to use during the update.
230 std::unique_ptr<NetworkSelectorInterface> network_selector_;
231
Tianjie Xu90aaa102017-10-10 17:39:03 -0700232 std::unique_ptr<ClockInterface> clock_;
233
Tianjie Xu1b661142017-09-28 14:03:42 -0700234 std::unique_ptr<MetricsReporterInterface> metrics_reporter_;
235
Kyeongkab.Nam500ca132019-06-26 13:48:07 +0900236 ::android::base::unique_fd payload_fd_;
237
Yifan Hong40bb0d02020-02-24 17:33:14 -0800238 std::vector<std::unique_ptr<CleanupSuccessfulUpdateCallbackInterface>>
239 cleanup_previous_update_callbacks_;
240 // Result of previous CleanupPreviousUpdateAction. Nullopt If
241 // CleanupPreviousUpdateAction has not been executed.
242 std::optional<ErrorCode> cleanup_previous_update_code_{std::nullopt};
243
Alex Deymo5e3ea272016-01-28 13:42:23 -0800244 DISALLOW_COPY_AND_ASSIGN(UpdateAttempterAndroid);
245};
246
247} // namespace chromeos_update_engine
248
Amin Hassaniec7bc112020-10-29 16:47:58 -0700249#endif // UPDATE_ENGINE_AOSP_UPDATE_ATTEMPTER_ANDROID_H_