blob: a9215aefd8175c23341328ae3ed2da15bef8c776 [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>
23
Ben Chan05735a12014-09-03 07:48:22 -070024#include <base/macros.h>
Alex Vakulenko75039d72014-03-25 12:36:28 -070025#include <base/time/time.h>
Darin Petkov49d91322010-10-25 16:34:58 -070026#include <gtest/gtest_prod.h> // for FRIEND_TEST
Darin Petkova4a8a8c2010-07-15 22:21:12 -070027
Alex Deymo39910dc2015-11-09 17:04:30 -080028#include "update_engine/common/platform_constants.h"
Alex Deymo85616652015-10-15 18:48:31 -070029#include "update_engine/image_properties.h"
Alex Deymoac41a822015-09-15 20:52:53 -070030
Darin Petkova4a8a8c2010-07-15 22:21:12 -070031// This gathers local system information and prepares info used by the
32// Omaha request action.
33
34namespace chromeos_update_engine {
35
Jay Srinivasanae4697c2013-03-18 17:08:08 -070036class SystemState;
Jay Srinivasan0a708742012-03-20 11:26:12 -070037
Jay Srinivasanae4697c2013-03-18 17:08:08 -070038// This class encapsulates the data Omaha gets for the request, along with
39// essential state needed for the processing of the request/response. The
40// strings in this struct should not be XML escaped.
41//
Alex Vakulenkod2779df2014-06-16 13:19:00 -070042// TODO(jaysri): chromium-os:39752 tracks the need to rename this class to
Jay Srinivasanae4697c2013-03-18 17:08:08 -070043// reflect its lifetime more appropriately.
44class OmahaRequestParams {
45 public:
Alex Vakulenkod2779df2014-06-16 13:19:00 -070046 explicit OmahaRequestParams(SystemState* system_state)
Jay Srinivasanae4697c2013-03-18 17:08:08 -070047 : system_state_(system_state),
Alex Deymoac41a822015-09-15 20:52:53 -070048 os_platform_(constants::kOmahaPlatformName),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070049 os_version_(kOsVersion),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070050 delta_okay_(true),
51 interactive_(false),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070052 wall_clock_based_wait_enabled_(false),
53 update_check_count_wait_enabled_(false),
54 min_update_checks_needed_(kDefaultMinUpdateChecks),
Alex Deymo85616652015-10-15 18:48:31 -070055 max_update_checks_allowed_(kDefaultMaxUpdateChecks) {}
Jay Srinivasan0a708742012-03-20 11:26:12 -070056
Jay Srinivasanae4697c2013-03-18 17:08:08 -070057 OmahaRequestParams(SystemState* system_state,
58 const std::string& in_os_platform,
Darin Petkova4a8a8c2010-07-15 22:21:12 -070059 const std::string& in_os_version,
60 const std::string& in_os_sp,
61 const std::string& in_os_board,
62 const std::string& in_app_id,
63 const std::string& in_app_version,
64 const std::string& in_app_lang,
Jay Srinivasanae4697c2013-03-18 17:08:08 -070065 const std::string& in_target_channel,
66 const std::string& in_hwid,
Chris Sosac1972482013-04-30 22:31:10 -070067 const std::string& in_fw_version,
68 const std::string& in_ec_version,
Jay Srinivasan0a708742012-03-20 11:26:12 -070069 bool in_delta_okay,
Gilad Arnoldbbdd4902013-01-10 16:06:30 -080070 bool in_interactive,
Jay Srinivasan0a708742012-03-20 11:26:12 -070071 const std::string& in_update_url,
Gilad Arnold74b5f552014-10-07 08:17:16 -070072 const std::string& in_target_version_prefix)
Jay Srinivasanae4697c2013-03-18 17:08:08 -070073 : system_state_(system_state),
74 os_platform_(in_os_platform),
75 os_version_(in_os_version),
76 os_sp_(in_os_sp),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070077 app_lang_(in_app_lang),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070078 hwid_(in_hwid),
Chris Sosac1972482013-04-30 22:31:10 -070079 fw_version_(in_fw_version),
80 ec_version_(in_ec_version),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070081 delta_okay_(in_delta_okay),
82 interactive_(in_interactive),
83 update_url_(in_update_url),
Jay Srinivasanae4697c2013-03-18 17:08:08 -070084 target_version_prefix_(in_target_version_prefix),
85 wall_clock_based_wait_enabled_(false),
86 update_check_count_wait_enabled_(false),
87 min_update_checks_needed_(kDefaultMinUpdateChecks),
Alex Deymo85616652015-10-15 18:48:31 -070088 max_update_checks_allowed_(kDefaultMaxUpdateChecks) {
89 image_props_.board = in_os_board;
90 image_props_.product_id = in_app_id;
91 image_props_.canary_product_id = in_app_id;
92 image_props_.version = in_app_version;
93 image_props_.current_channel = in_target_channel;
94 mutable_image_props_.target_channel = in_target_channel;
95 mutable_image_props_.is_powerwash_allowed = false;
96 }
Darin Petkova4a8a8c2010-07-15 22:21:12 -070097
Alex Deymo3be05c82015-10-23 11:29:11 -070098 virtual ~OmahaRequestParams();
Alex Deymoe8948702014-11-11 21:44:45 -080099
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700100 // Setters and getters for the various properties.
101 inline std::string os_platform() const { return os_platform_; }
102 inline std::string os_version() const { return os_version_; }
103 inline std::string os_sp() const { return os_sp_; }
Alex Deymo85616652015-10-15 18:48:31 -0700104 inline std::string os_board() const { return image_props_.board; }
Alex Deymoebf6e122017-03-10 16:12:01 -0800105 inline std::string os_build_fingerprint() const {
106 return image_props_.build_fingerprint;
107 }
Sen Jiang1d5d95f2017-05-19 11:33:10 -0700108 inline std::string os_build_type() const { return image_props_.build_type; }
Alex Deymo85616652015-10-15 18:48:31 -0700109 inline std::string board_app_id() const { return image_props_.product_id; }
110 inline std::string canary_app_id() const {
111 return image_props_.canary_product_id;
112 }
Sen Jiang94a4dec2017-03-28 18:23:35 -0700113 inline std::string system_app_id() const { return image_props_.system_id; }
Aaron Wood7dcdedf2017-09-06 17:17:41 -0700114 inline void set_system_app_id(const std::string& system_app_id) {
115 image_props_.system_id = system_app_id;
116 }
Sen Jiang297e5832016-03-17 14:45:51 -0700117 inline void set_app_id(const std::string& app_id) {
118 image_props_.product_id = app_id;
119 image_props_.canary_product_id = app_id;
120 }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700121 inline std::string app_lang() const { return app_lang_; }
122 inline std::string hwid() const { return hwid_; }
Chris Sosac1972482013-04-30 22:31:10 -0700123 inline std::string fw_version() const { return fw_version_; }
124 inline std::string ec_version() const { return ec_version_; }
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700125
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700126 inline void set_app_version(const std::string& version) {
Alex Deymo85616652015-10-15 18:48:31 -0700127 image_props_.version = version;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700128 }
Alex Deymo85616652015-10-15 18:48:31 -0700129 inline std::string app_version() const { return image_props_.version; }
Sen Jiang94a4dec2017-03-28 18:23:35 -0700130 inline std::string system_version() const {
131 return image_props_.system_version;
132 }
Sen Jiang684c9cd2017-10-17 16:26:45 -0700133 inline std::string product_components() const {
134 return image_props_.product_components;
135 }
Sen Jiang8cd42342018-01-31 12:06:59 -0800136 inline void set_product_components(const std::string& product_components) {
137 image_props_.product_components = product_components;
138 }
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700139
Alex Deymo85616652015-10-15 18:48:31 -0700140 inline std::string current_channel() const {
141 return image_props_.current_channel;
142 }
143 inline std::string target_channel() const {
144 return mutable_image_props_.target_channel;
145 }
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700146 inline std::string download_channel() const { return download_channel_; }
Darin Petkov49d91322010-10-25 16:34:58 -0700147
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700148 // Can client accept a delta ?
149 inline void set_delta_okay(bool ok) { delta_okay_ = ok; }
150 inline bool delta_okay() const { return delta_okay_; }
Jay Srinivasan0a708742012-03-20 11:26:12 -0700151
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700152 // True if this is a user-initiated update check.
Chris Sosa968d0572013-08-23 14:46:02 -0700153 inline void set_interactive(bool interactive) { interactive_ = interactive; }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700154 inline bool interactive() const { return interactive_; }
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700155
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700156 inline void set_update_url(const std::string& url) { update_url_ = url; }
157 inline std::string update_url() const { return update_url_; }
158
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700159 inline void set_target_version_prefix(const std::string& prefix) {
160 target_version_prefix_ = prefix;
161 }
162
163 inline std::string target_version_prefix() const {
164 return target_version_prefix_;
165 }
166
167 inline void set_wall_clock_based_wait_enabled(bool enabled) {
168 wall_clock_based_wait_enabled_ = enabled;
169 }
170 inline bool wall_clock_based_wait_enabled() const {
171 return wall_clock_based_wait_enabled_;
172 }
173
174 inline void set_waiting_period(base::TimeDelta period) {
175 waiting_period_ = period;
176 }
177 base::TimeDelta waiting_period() const { return waiting_period_; }
178
179 inline void set_update_check_count_wait_enabled(bool enabled) {
180 update_check_count_wait_enabled_ = enabled;
181 }
182
183 inline bool update_check_count_wait_enabled() const {
184 return update_check_count_wait_enabled_;
185 }
186
Ben Chan9abb7632014-08-07 00:10:53 -0700187 inline void set_min_update_checks_needed(int64_t min) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700188 min_update_checks_needed_ = min;
189 }
Ben Chan9abb7632014-08-07 00:10:53 -0700190 inline int64_t min_update_checks_needed() const {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700191 return min_update_checks_needed_;
192 }
193
Ben Chan9abb7632014-08-07 00:10:53 -0700194 inline void set_max_update_checks_allowed(int64_t max) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700195 max_update_checks_allowed_ = max;
196 }
Ben Chan9abb7632014-08-07 00:10:53 -0700197 inline int64_t max_update_checks_allowed() const {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700198 return max_update_checks_allowed_;
199 }
200
201 // True if we're trying to update to a more stable channel.
202 // i.e. index(target_channel) > index(current_channel).
Alex Deymo560ae1d2014-10-28 02:17:54 -0700203 virtual bool to_more_stable_channel() const;
Jay Srinivasan480ddfa2012-06-01 19:15:26 -0700204
Jay Srinivasandb0acdf2013-04-02 14:47:45 -0700205 // Returns the app id corresponding to the current value of the
206 // download channel.
Alex Deymo560ae1d2014-10-28 02:17:54 -0700207 virtual std::string GetAppId() const;
Jay Srinivasandb0acdf2013-04-02 14:47:45 -0700208
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700209 // Suggested defaults
David Pursell02c18642014-11-06 11:26:11 -0800210 static const char kOsVersion[];
David Pursell02c18642014-11-06 11:26:11 -0800211 static const char kIsPowerwashAllowedKey[];
Ben Chan9abb7632014-08-07 00:10:53 -0700212 static const int64_t kDefaultMinUpdateChecks = 0;
213 static const int64_t kDefaultMaxUpdateChecks = 8;
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700214
Darin Petkov5a7f5652010-07-22 21:40:09 -0700215 // Initializes all the data in the object. Non-empty
216 // |in_app_version| or |in_update_url| prevents automatic detection
217 // of the parameter. Returns true on success, false otherwise.
218 bool Init(const std::string& in_app_version,
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200219 const std::string& in_update_url,
Gilad Arnoldbbdd4902013-01-10 16:06:30 -0800220 bool in_interactive);
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700221
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700222 // Permanently changes the release channel to |channel|. Performs a
223 // powerwash, if required and allowed.
224 // Returns true on success, false otherwise. Note: This call will fail if
225 // there's a channel change pending already. This is to serialize all the
226 // channel changes done by the user in order to avoid having to solve
227 // numerous edge cases around ensuring the powerwash happens as intended in
228 // all such cases.
Alex Deymo560ae1d2014-10-28 02:17:54 -0700229 virtual bool SetTargetChannel(const std::string& channel,
Alex Deymod942f9d2015-11-06 16:11:50 -0800230 bool is_powerwash_allowed,
231 std::string* error_message);
Darin Petkov49d91322010-10-25 16:34:58 -0700232
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700233 // Updates the download channel for this particular attempt from the current
234 // value of target channel. This method takes a "snapshot" of the current
235 // value of target channel and uses it for all subsequent Omaha requests for
236 // this attempt (i.e. initial request as well as download progress/error
237 // event requests). The snapshot will be updated only when either this method
238 // or Init is called again.
Alex Deymo560ae1d2014-10-28 02:17:54 -0700239 virtual void UpdateDownloadChannel();
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700240
Alex Deymo85616652015-10-15 18:48:31 -0700241 virtual bool is_powerwash_allowed() const {
242 return mutable_image_props_.is_powerwash_allowed;
243 }
Satoru Takabayashi583667b2010-10-27 13:09:57 +0900244
David Pursell02c18642014-11-06 11:26:11 -0800245 // Check if the provided update URL is official, meaning either the default
246 // autoupdate server or the autoupdate autotest server.
247 virtual bool IsUpdateUrlOfficial() const;
248
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700249 // For unit-tests.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700250 void set_root(const std::string& root);
Chris Sosa28e479c2013-07-12 11:39:53 -0700251 void set_current_channel(const std::string& channel) {
Alex Deymo85616652015-10-15 18:48:31 -0700252 image_props_.current_channel = channel;
Chris Sosa28e479c2013-07-12 11:39:53 -0700253 }
Gilad Arnold76b2b482014-04-01 13:32:43 -0700254 void set_target_channel(const std::string& channel) {
Alex Deymo85616652015-10-15 18:48:31 -0700255 mutable_image_props_.target_channel = channel;
Gilad Arnold76b2b482014-04-01 13:32:43 -0700256 }
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700257
258 private:
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700259 FRIEND_TEST(OmahaRequestParamsTest, ChannelIndexTest);
Chris Sosac1972482013-04-30 22:31:10 -0700260 FRIEND_TEST(OmahaRequestParamsTest, CollectECFWVersionsTest);
Sen Jiang7f785f52018-01-24 13:31:56 -0800261 FRIEND_TEST(OmahaRequestParamsTest, IsValidChannelTest);
262 FRIEND_TEST(OmahaRequestParamsTest, SetTargetChannelInvalidTest);
263 FRIEND_TEST(OmahaRequestParamsTest, ToMoreStableChannelFlagTest);
Darin Petkov49d91322010-10-25 16:34:58 -0700264
Sen Jiangce3f7cf2018-01-25 14:07:45 -0800265 // Returns true if |channel| is a valid channel, otherwise write error to
266 // |error_message| if passed and return false.
267 bool IsValidChannel(const std::string& channel,
268 std::string* error_message) const;
269 bool IsValidChannel(const std::string& channel) const {
270 return IsValidChannel(channel, nullptr);
271 }
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700272
273 // Returns the index of the given channel.
274 int GetChannelIndex(const std::string& channel) const;
275
Chris Sosac1972482013-04-30 22:31:10 -0700276 // Returns True if we should store the fw/ec versions based on our hwid_.
277 // Compares hwid to a set of whitelisted prefixes.
278 bool CollectECFWVersions() const;
279
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700280 // These are individual helper methods to initialize the said properties from
281 // the LSB value.
282 void SetTargetChannelFromLsbValue();
283 void SetCurrentChannelFromLsbValue();
284 void SetIsPowerwashAllowedFromLsbValue();
285
286 // Initializes the required properties from the LSB value.
287 void InitFromLsbValue();
Darin Petkov49d91322010-10-25 16:34:58 -0700288
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700289 // Gets the machine type (e.g. "i686").
290 std::string GetMachineType() const;
291
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700292 // Global system context.
293 SystemState* system_state_;
294
Alex Deymo85616652015-10-15 18:48:31 -0700295 // The system image properties.
296 ImageProperties image_props_;
297 MutableImageProperties mutable_image_props_;
298
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700299 // Basic properties of the OS and Application that go into the Omaha request.
300 std::string os_platform_;
301 std::string os_version_;
302 std::string os_sp_;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700303 std::string app_lang_;
304
Alex Deymo85616652015-10-15 18:48:31 -0700305 // There are three channel values we deal with:
306 // * The channel we got the image we are running from or "current channel"
307 // stored in |image_props_.current_channel|.
308 //
309 // * The release channel we are tracking, where we should get updates from,
310 // stored in |mutable_image_props_.target_channel|. This channel is
311 // normally the same as the current_channel, except when the user changes
312 // the channel. In that case it'll have the release channel the user
313 // switched to, regardless of whether we downloaded an update from that
314 // channel or not, or if we are in the middle of a download from a
315 // previously selected channel (as opposed to download channel
316 // which gets updated only at the start of next download).
317 //
318 // * The channel from which we're downloading the payload. This should
319 // normally be the same as target channel. But if the user made another
320 // channel change after we started the download, then they'd be different,
321 // in which case, we'd detect elsewhere that the target channel has been
322 // changed and cancel the current download attempt.
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700323 std::string download_channel_;
324
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700325 std::string hwid_; // Hardware Qualification ID of the client
Chris Sosac1972482013-04-30 22:31:10 -0700326 std::string fw_version_; // Chrome OS Firmware Version.
327 std::string ec_version_; // Chrome OS EC Version.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700328 bool delta_okay_; // If this client can accept a delta
329 bool interactive_; // Whether this is a user-initiated update check
330
331 // The URL to send the Omaha request to.
332 std::string update_url_;
333
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700334 // Prefix of the target OS version that the enterprise wants this device
335 // to be pinned to. It's empty otherwise.
336 std::string target_version_prefix_;
337
338 // True if scattering is enabled, in which case waiting_period_ specifies the
339 // amount of absolute time that we've to wait for before sending a request to
340 // Omaha.
341 bool wall_clock_based_wait_enabled_;
342 base::TimeDelta waiting_period_;
343
344 // True if scattering is enabled to denote the number of update checks
345 // we've to skip before we can send a request to Omaha. The min and max
346 // values establish the bounds for a random number to be chosen within that
347 // range to enable such a wait.
348 bool update_check_count_wait_enabled_;
Ben Chan9abb7632014-08-07 00:10:53 -0700349 int64_t min_update_checks_needed_;
350 int64_t max_update_checks_allowed_;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700351
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700352 // When reading files, prepend root_ to the paths. Useful for testing.
353 std::string root_;
354
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700355 // TODO(jaysri): Uncomment this after fixing unit tests, as part of
356 // chromium-os:39752
357 // DISALLOW_COPY_AND_ASSIGN(OmahaRequestParams);
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700358};
359
360} // namespace chromeos_update_engine
361
Gilad Arnoldcf175a02014-07-10 16:48:47 -0700362#endif // UPDATE_ENGINE_OMAHA_REQUEST_PARAMS_H_