blob: 18235c04e060575ee4c590753bcc5697900e27f6 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2012 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//
Darin Petkova4a8a8c2010-07-15 22:21:12 -070016
Gilad Arnoldcf175a02014-07-10 16:48:47 -070017#ifndef UPDATE_ENGINE_OMAHA_REQUEST_PARAMS_H_
18#define UPDATE_ENGINE_OMAHA_REQUEST_PARAMS_H_
Darin Petkova4a8a8c2010-07-15 22:21:12 -070019
Ben Chan9abb7632014-08-07 00:10:53 -070020#include <stdint.h>
21
Darin Petkova4a8a8c2010-07-15 22:21:12 -070022#include <string>
Xiaochu Liu88d90382018-08-29 16:09:11 -070023#include <vector>
Darin Petkova4a8a8c2010-07-15 22:21:12 -070024
Ben Chan05735a12014-09-03 07:48:22 -070025#include <base/macros.h>
Alex Vakulenko75039d72014-03-25 12:36:28 -070026#include <base/time/time.h>
Darin Petkov49d91322010-10-25 16:34:58 -070027#include <gtest/gtest_prod.h> // for FRIEND_TEST
Darin Petkova4a8a8c2010-07-15 22:21:12 -070028
Alex Deymo39910dc2015-11-09 17:04:30 -080029#include "update_engine/common/platform_constants.h"
Alex Deymo85616652015-10-15 18:48:31 -070030#include "update_engine/image_properties.h"
Alex Deymoac41a822015-09-15 20:52:53 -070031
Darin Petkova4a8a8c2010-07-15 22:21:12 -070032// This gathers local system information and prepares info used by the
33// Omaha request action.
34
35namespace chromeos_update_engine {
36
Jay Srinivasanae4697c2013-03-18 17:08:08 -070037class SystemState;
Jay Srinivasan0a708742012-03-20 11:26:12 -070038
Jay Srinivasanae4697c2013-03-18 17:08:08 -070039// This class encapsulates the data Omaha gets for the request, along with
40// essential state needed for the processing of the request/response. The
41// strings in this struct should not be XML escaped.
42//
Alex Vakulenkod2779df2014-06-16 13:19:00 -070043// TODO(jaysri): chromium-os:39752 tracks the need to rename this class to
Jay Srinivasanae4697c2013-03-18 17:08:08 -070044// reflect its lifetime more appropriately.
45class OmahaRequestParams {
46 public:
Alex Vakulenkod2779df2014-06-16 13:19:00 -070047 explicit OmahaRequestParams(SystemState* system_state)
Jay Srinivasanae4697c2013-03-18 17:08:08 -070048 : system_state_(system_state),
Alex Deymoac41a822015-09-15 20:52:53 -070049 os_platform_(constants::kOmahaPlatformName),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070050 os_version_(kOsVersion),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070051 delta_okay_(true),
52 interactive_(false),
Marton Hunyadyba51c3f2018-04-25 15:18:10 +020053 rollback_allowed_(false),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070054 wall_clock_based_wait_enabled_(false),
55 update_check_count_wait_enabled_(false),
56 min_update_checks_needed_(kDefaultMinUpdateChecks),
Xiaochu Liu88d90382018-08-29 16:09:11 -070057 max_update_checks_allowed_(kDefaultMaxUpdateChecks),
58 is_install_(false) {}
Jay Srinivasan0a708742012-03-20 11:26:12 -070059
Alex Deymo3be05c82015-10-23 11:29:11 -070060 virtual ~OmahaRequestParams();
Alex Deymoe8948702014-11-11 21:44:45 -080061
Jay Srinivasanae4697c2013-03-18 17:08:08 -070062 // Setters and getters for the various properties.
63 inline std::string os_platform() const { return os_platform_; }
64 inline std::string os_version() const { return os_version_; }
65 inline std::string os_sp() const { return os_sp_; }
Alex Deymo85616652015-10-15 18:48:31 -070066 inline std::string os_board() const { return image_props_.board; }
Alex Deymoebf6e122017-03-10 16:12:01 -080067 inline std::string os_build_fingerprint() const {
68 return image_props_.build_fingerprint;
69 }
Sen Jiang1d5d95f2017-05-19 11:33:10 -070070 inline std::string os_build_type() const { return image_props_.build_type; }
Alex Deymo85616652015-10-15 18:48:31 -070071 inline std::string board_app_id() const { return image_props_.product_id; }
72 inline std::string canary_app_id() const {
73 return image_props_.canary_product_id;
74 }
Sen Jiang94a4dec2017-03-28 18:23:35 -070075 inline std::string system_app_id() const { return image_props_.system_id; }
Aaron Wood7dcdedf2017-09-06 17:17:41 -070076 inline void set_system_app_id(const std::string& system_app_id) {
77 image_props_.system_id = system_app_id;
78 }
Sen Jiang297e5832016-03-17 14:45:51 -070079 inline void set_app_id(const std::string& app_id) {
80 image_props_.product_id = app_id;
81 image_props_.canary_product_id = app_id;
82 }
Jay Srinivasanae4697c2013-03-18 17:08:08 -070083 inline std::string app_lang() const { return app_lang_; }
84 inline std::string hwid() const { return hwid_; }
Chris Sosac1972482013-04-30 22:31:10 -070085 inline std::string fw_version() const { return fw_version_; }
86 inline std::string ec_version() const { return ec_version_; }
Darin Petkova4a8a8c2010-07-15 22:21:12 -070087
Jay Srinivasanae4697c2013-03-18 17:08:08 -070088 inline void set_app_version(const std::string& version) {
Alex Deymo85616652015-10-15 18:48:31 -070089 image_props_.version = version;
Jay Srinivasanae4697c2013-03-18 17:08:08 -070090 }
Alex Deymo85616652015-10-15 18:48:31 -070091 inline std::string app_version() const { return image_props_.version; }
Sen Jiang94a4dec2017-03-28 18:23:35 -070092 inline std::string system_version() const {
93 return image_props_.system_version;
94 }
Sen Jiang684c9cd2017-10-17 16:26:45 -070095 inline std::string product_components() const {
96 return image_props_.product_components;
97 }
Sen Jiang8cd42342018-01-31 12:06:59 -080098 inline void set_product_components(const std::string& product_components) {
99 image_props_.product_components = product_components;
100 }
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700101
Alex Deymo85616652015-10-15 18:48:31 -0700102 inline std::string current_channel() const {
103 return image_props_.current_channel;
104 }
105 inline std::string target_channel() const {
106 return mutable_image_props_.target_channel;
107 }
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700108 inline std::string download_channel() const { return download_channel_; }
Darin Petkov49d91322010-10-25 16:34:58 -0700109
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700110 // Can client accept a delta ?
111 inline void set_delta_okay(bool ok) { delta_okay_ = ok; }
112 inline bool delta_okay() const { return delta_okay_; }
Jay Srinivasan0a708742012-03-20 11:26:12 -0700113
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700114 // True if this is a user-initiated update check.
Chris Sosa968d0572013-08-23 14:46:02 -0700115 inline void set_interactive(bool interactive) { interactive_ = interactive; }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700116 inline bool interactive() const { return interactive_; }
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700117
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700118 inline void set_update_url(const std::string& url) { update_url_ = url; }
119 inline std::string update_url() const { return update_url_; }
120
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700121 inline void set_target_version_prefix(const std::string& prefix) {
122 target_version_prefix_ = prefix;
123 }
124
125 inline std::string target_version_prefix() const {
126 return target_version_prefix_;
127 }
128
Marton Hunyadyba51c3f2018-04-25 15:18:10 +0200129 inline void set_rollback_allowed(bool rollback_allowed) {
130 rollback_allowed_ = rollback_allowed;
131 }
132
133 inline bool rollback_allowed() const { return rollback_allowed_; }
134
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700135 inline void set_wall_clock_based_wait_enabled(bool enabled) {
136 wall_clock_based_wait_enabled_ = enabled;
137 }
138 inline bool wall_clock_based_wait_enabled() const {
139 return wall_clock_based_wait_enabled_;
140 }
141
142 inline void set_waiting_period(base::TimeDelta period) {
143 waiting_period_ = period;
144 }
145 base::TimeDelta waiting_period() const { return waiting_period_; }
146
147 inline void set_update_check_count_wait_enabled(bool enabled) {
148 update_check_count_wait_enabled_ = enabled;
149 }
150
151 inline bool update_check_count_wait_enabled() const {
152 return update_check_count_wait_enabled_;
153 }
154
Ben Chan9abb7632014-08-07 00:10:53 -0700155 inline void set_min_update_checks_needed(int64_t min) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700156 min_update_checks_needed_ = min;
157 }
Ben Chan9abb7632014-08-07 00:10:53 -0700158 inline int64_t min_update_checks_needed() const {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700159 return min_update_checks_needed_;
160 }
161
Ben Chan9abb7632014-08-07 00:10:53 -0700162 inline void set_max_update_checks_allowed(int64_t max) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700163 max_update_checks_allowed_ = max;
164 }
Ben Chan9abb7632014-08-07 00:10:53 -0700165 inline int64_t max_update_checks_allowed() const {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700166 return max_update_checks_allowed_;
167 }
Xiaochu Liuf53a5d32018-11-26 13:48:59 -0800168 inline void set_dlc_module_ids(
169 const std::vector<std::string>& dlc_module_ids) {
170 dlc_module_ids_ = dlc_module_ids;
Xiaochu Liu88d90382018-08-29 16:09:11 -0700171 }
Xiaochu Liuf53a5d32018-11-26 13:48:59 -0800172 inline std::vector<std::string> dlc_module_ids() const {
173 return dlc_module_ids_;
174 }
Xiaochu Liu88d90382018-08-29 16:09:11 -0700175 inline void set_is_install(bool is_install) { is_install_ = is_install; }
176 inline bool is_install() const { return is_install_; }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700177
Jay Srinivasandb0acdf2013-04-02 14:47:45 -0700178 // Returns the app id corresponding to the current value of the
179 // download channel.
Alex Deymo560ae1d2014-10-28 02:17:54 -0700180 virtual std::string GetAppId() const;
Jay Srinivasandb0acdf2013-04-02 14:47:45 -0700181
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700182 // Suggested defaults
David Pursell02c18642014-11-06 11:26:11 -0800183 static const char kOsVersion[];
Ben Chan9abb7632014-08-07 00:10:53 -0700184 static const int64_t kDefaultMinUpdateChecks = 0;
185 static const int64_t kDefaultMaxUpdateChecks = 8;
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700186
Darin Petkov5a7f5652010-07-22 21:40:09 -0700187 // Initializes all the data in the object. Non-empty
188 // |in_app_version| or |in_update_url| prevents automatic detection
189 // of the parameter. Returns true on success, false otherwise.
190 bool Init(const std::string& in_app_version,
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200191 const std::string& in_update_url,
Gilad Arnoldbbdd4902013-01-10 16:06:30 -0800192 bool in_interactive);
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700193
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700194 // Permanently changes the release channel to |channel|. Performs a
195 // powerwash, if required and allowed.
196 // Returns true on success, false otherwise. Note: This call will fail if
197 // there's a channel change pending already. This is to serialize all the
198 // channel changes done by the user in order to avoid having to solve
199 // numerous edge cases around ensuring the powerwash happens as intended in
200 // all such cases.
Alex Deymo560ae1d2014-10-28 02:17:54 -0700201 virtual bool SetTargetChannel(const std::string& channel,
Alex Deymod942f9d2015-11-06 16:11:50 -0800202 bool is_powerwash_allowed,
203 std::string* error_message);
Darin Petkov49d91322010-10-25 16:34:58 -0700204
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700205 // Updates the download channel for this particular attempt from the current
206 // value of target channel. This method takes a "snapshot" of the current
207 // value of target channel and uses it for all subsequent Omaha requests for
208 // this attempt (i.e. initial request as well as download progress/error
209 // event requests). The snapshot will be updated only when either this method
210 // or Init is called again.
Alex Deymo560ae1d2014-10-28 02:17:54 -0700211 virtual void UpdateDownloadChannel();
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700212
Sen Jiang8500d3a2018-02-08 12:04:05 -0800213 // Returns whether we should powerwash for this update.
214 virtual bool ShouldPowerwash() const;
Satoru Takabayashi583667b2010-10-27 13:09:57 +0900215
David Pursell02c18642014-11-06 11:26:11 -0800216 // Check if the provided update URL is official, meaning either the default
217 // autoupdate server or the autoupdate autotest server.
218 virtual bool IsUpdateUrlOfficial() const;
219
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700220 // For unit-tests.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700221 void set_root(const std::string& root);
Chris Sosa28e479c2013-07-12 11:39:53 -0700222 void set_current_channel(const std::string& channel) {
Alex Deymo85616652015-10-15 18:48:31 -0700223 image_props_.current_channel = channel;
Chris Sosa28e479c2013-07-12 11:39:53 -0700224 }
Gilad Arnold76b2b482014-04-01 13:32:43 -0700225 void set_target_channel(const std::string& channel) {
Alex Deymo85616652015-10-15 18:48:31 -0700226 mutable_image_props_.target_channel = channel;
Gilad Arnold76b2b482014-04-01 13:32:43 -0700227 }
Marton Hunyady2abda312018-04-24 18:21:49 +0200228 void set_os_sp(const std::string& os_sp) { os_sp_ = os_sp; }
229 void set_os_board(const std::string& os_board) {
230 image_props_.board = os_board;
231 }
232 void set_app_lang(const std::string& app_lang) { app_lang_ = app_lang; }
233 void set_hwid(const std::string& hwid) { hwid_ = hwid; }
234 void set_fw_version(const std::string& fw_version) {
235 fw_version_ = fw_version;
236 }
237 void set_ec_version(const std::string& ec_version) {
238 ec_version_ = ec_version;
239 }
240 void set_is_powerwash_allowed(bool powerwash_allowed) {
241 mutable_image_props_.is_powerwash_allowed = powerwash_allowed;
242 }
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700243
244 private:
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700245 FRIEND_TEST(OmahaRequestParamsTest, ChannelIndexTest);
Chris Sosac1972482013-04-30 22:31:10 -0700246 FRIEND_TEST(OmahaRequestParamsTest, CollectECFWVersionsTest);
Sen Jiang7f785f52018-01-24 13:31:56 -0800247 FRIEND_TEST(OmahaRequestParamsTest, IsValidChannelTest);
Sen Jiang8500d3a2018-02-08 12:04:05 -0800248 FRIEND_TEST(OmahaRequestParamsTest, SetIsPowerwashAllowedTest);
Sen Jiang7f785f52018-01-24 13:31:56 -0800249 FRIEND_TEST(OmahaRequestParamsTest, SetTargetChannelInvalidTest);
Sen Jiang8500d3a2018-02-08 12:04:05 -0800250 FRIEND_TEST(OmahaRequestParamsTest, SetTargetChannelTest);
251 FRIEND_TEST(OmahaRequestParamsTest, ShouldPowerwashTest);
Sen Jiang7f785f52018-01-24 13:31:56 -0800252 FRIEND_TEST(OmahaRequestParamsTest, ToMoreStableChannelFlagTest);
Darin Petkov49d91322010-10-25 16:34:58 -0700253
Sen Jiangce3f7cf2018-01-25 14:07:45 -0800254 // Returns true if |channel| is a valid channel, otherwise write error to
255 // |error_message| if passed and return false.
256 bool IsValidChannel(const std::string& channel,
257 std::string* error_message) const;
258 bool IsValidChannel(const std::string& channel) const {
259 return IsValidChannel(channel, nullptr);
260 }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700261
262 // Returns the index of the given channel.
263 int GetChannelIndex(const std::string& channel) const;
264
Sen Jiang8500d3a2018-02-08 12:04:05 -0800265 // True if we're trying to update to a more stable channel.
266 // i.e. index(target_channel) > index(current_channel).
267 bool ToMoreStableChannel() const;
268
Chris Sosac1972482013-04-30 22:31:10 -0700269 // Returns True if we should store the fw/ec versions based on our hwid_.
270 // Compares hwid to a set of whitelisted prefixes.
271 bool CollectECFWVersions() const;
272
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700273 // Gets the machine type (e.g. "i686").
274 std::string GetMachineType() const;
275
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700276 // Global system context.
277 SystemState* system_state_;
278
Alex Deymo85616652015-10-15 18:48:31 -0700279 // The system image properties.
280 ImageProperties image_props_;
281 MutableImageProperties mutable_image_props_;
282
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700283 // Basic properties of the OS and Application that go into the Omaha request.
284 std::string os_platform_;
285 std::string os_version_;
286 std::string os_sp_;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700287 std::string app_lang_;
288
Alex Deymo85616652015-10-15 18:48:31 -0700289 // There are three channel values we deal with:
290 // * The channel we got the image we are running from or "current channel"
291 // stored in |image_props_.current_channel|.
292 //
293 // * The release channel we are tracking, where we should get updates from,
294 // stored in |mutable_image_props_.target_channel|. This channel is
295 // normally the same as the current_channel, except when the user changes
296 // the channel. In that case it'll have the release channel the user
297 // switched to, regardless of whether we downloaded an update from that
298 // channel or not, or if we are in the middle of a download from a
299 // previously selected channel (as opposed to download channel
300 // which gets updated only at the start of next download).
301 //
302 // * The channel from which we're downloading the payload. This should
303 // normally be the same as target channel. But if the user made another
304 // channel change after we started the download, then they'd be different,
305 // in which case, we'd detect elsewhere that the target channel has been
306 // changed and cancel the current download attempt.
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700307 std::string download_channel_;
308
Amin Hassani7cc8bb02019-01-14 16:29:47 -0800309 std::string hwid_; // Hardware Qualification ID of the client
Chris Sosac1972482013-04-30 22:31:10 -0700310 std::string fw_version_; // Chrome OS Firmware Version.
311 std::string ec_version_; // Chrome OS EC Version.
Amin Hassani7cc8bb02019-01-14 16:29:47 -0800312 bool delta_okay_; // If this client can accept a delta
313 bool interactive_; // Whether this is a user-initiated update check
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700314
315 // The URL to send the Omaha request to.
316 std::string update_url_;
317
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700318 // Prefix of the target OS version that the enterprise wants this device
319 // to be pinned to. It's empty otherwise.
320 std::string target_version_prefix_;
321
Marton Hunyadyba51c3f2018-04-25 15:18:10 +0200322 // Whether the client is accepting rollback images too.
323 bool rollback_allowed_;
324
Adolfo Victoria497044c2018-07-18 07:51:42 -0700325 // True if scattering or staging are enabled, in which case waiting_period_
326 // specifies the amount of absolute time that we've to wait for before sending
327 // a request to Omaha.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700328 bool wall_clock_based_wait_enabled_;
329 base::TimeDelta waiting_period_;
330
Adolfo Victoria497044c2018-07-18 07:51:42 -0700331 // True if scattering or staging are enabled to denote the number of update
332 // checks we've to skip before we can send a request to Omaha. The min and max
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700333 // values establish the bounds for a random number to be chosen within that
334 // range to enable such a wait.
335 bool update_check_count_wait_enabled_;
Ben Chan9abb7632014-08-07 00:10:53 -0700336 int64_t min_update_checks_needed_;
337 int64_t max_update_checks_allowed_;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700338
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700339 // When reading files, prepend root_ to the paths. Useful for testing.
340 std::string root_;
341
Xiaochu Liuf53a5d32018-11-26 13:48:59 -0800342 // A list of DLC module IDs to install.
343 std::vector<std::string> dlc_module_ids_;
Xiaochu Liu88d90382018-08-29 16:09:11 -0700344
345 // This variable defines whether the payload is being installed in the current
Xiaochu Liuf53a5d32018-11-26 13:48:59 -0800346 // partition. At the moment, this is used for installing DLC modules on the
347 // current active partition instead of the inactive partition.
Xiaochu Liu88d90382018-08-29 16:09:11 -0700348 bool is_install_;
349
Marton Hunyady2abda312018-04-24 18:21:49 +0200350 DISALLOW_COPY_AND_ASSIGN(OmahaRequestParams);
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700351};
352
353} // namespace chromeos_update_engine
354
Gilad Arnoldcf175a02014-07-10 16:48:47 -0700355#endif // UPDATE_ENGINE_OMAHA_REQUEST_PARAMS_H_