Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // |
| 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 Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 16 | |
Gilad Arnold | cf175a0 | 2014-07-10 16:48:47 -0700 | [diff] [blame] | 17 | #ifndef UPDATE_ENGINE_OMAHA_REQUEST_PARAMS_H_ |
| 18 | #define UPDATE_ENGINE_OMAHA_REQUEST_PARAMS_H_ |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 19 | |
Ben Chan | 9abb763 | 2014-08-07 00:10:53 -0700 | [diff] [blame] | 20 | #include <stdint.h> |
| 21 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 22 | #include <string> |
Xiaochu Liu | 88d9038 | 2018-08-29 16:09:11 -0700 | [diff] [blame] | 23 | #include <vector> |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 24 | |
Ben Chan | 05735a1 | 2014-09-03 07:48:22 -0700 | [diff] [blame] | 25 | #include <base/macros.h> |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 26 | #include <base/time/time.h> |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 27 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 28 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 29 | #include "update_engine/common/platform_constants.h" |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 30 | #include "update_engine/image_properties.h" |
Alex Deymo | ac41a82 | 2015-09-15 20:52:53 -0700 | [diff] [blame] | 31 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 32 | // This gathers local system information and prepares info used by the |
| 33 | // Omaha request action. |
| 34 | |
| 35 | namespace chromeos_update_engine { |
| 36 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 37 | class SystemState; |
Jay Srinivasan | 0a70874 | 2012-03-20 11:26:12 -0700 | [diff] [blame] | 38 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 39 | // 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 Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 43 | // TODO(jaysri): chromium-os:39752 tracks the need to rename this class to |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 44 | // reflect its lifetime more appropriately. |
| 45 | class OmahaRequestParams { |
| 46 | public: |
Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 47 | explicit OmahaRequestParams(SystemState* system_state) |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 48 | : system_state_(system_state), |
Alex Deymo | ac41a82 | 2015-09-15 20:52:53 -0700 | [diff] [blame] | 49 | os_platform_(constants::kOmahaPlatformName), |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 50 | os_version_(kOsVersion), |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 51 | delta_okay_(true), |
| 52 | interactive_(false), |
Marton Hunyady | ba51c3f | 2018-04-25 15:18:10 +0200 | [diff] [blame] | 53 | rollback_allowed_(false), |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 54 | wall_clock_based_wait_enabled_(false), |
| 55 | update_check_count_wait_enabled_(false), |
| 56 | min_update_checks_needed_(kDefaultMinUpdateChecks), |
Xiaochu Liu | 88d9038 | 2018-08-29 16:09:11 -0700 | [diff] [blame] | 57 | max_update_checks_allowed_(kDefaultMaxUpdateChecks), |
| 58 | is_install_(false) {} |
Jay Srinivasan | 0a70874 | 2012-03-20 11:26:12 -0700 | [diff] [blame] | 59 | |
Alex Deymo | 3be05c8 | 2015-10-23 11:29:11 -0700 | [diff] [blame] | 60 | virtual ~OmahaRequestParams(); |
Alex Deymo | e894870 | 2014-11-11 21:44:45 -0800 | [diff] [blame] | 61 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 62 | // 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 Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 66 | inline std::string os_board() const { return image_props_.board; } |
Alex Deymo | ebf6e12 | 2017-03-10 16:12:01 -0800 | [diff] [blame] | 67 | inline std::string os_build_fingerprint() const { |
| 68 | return image_props_.build_fingerprint; |
| 69 | } |
Sen Jiang | 1d5d95f | 2017-05-19 11:33:10 -0700 | [diff] [blame] | 70 | inline std::string os_build_type() const { return image_props_.build_type; } |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 71 | 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 Jiang | 94a4dec | 2017-03-28 18:23:35 -0700 | [diff] [blame] | 75 | inline std::string system_app_id() const { return image_props_.system_id; } |
Aaron Wood | 7dcdedf | 2017-09-06 17:17:41 -0700 | [diff] [blame] | 76 | inline void set_system_app_id(const std::string& system_app_id) { |
| 77 | image_props_.system_id = system_app_id; |
| 78 | } |
Sen Jiang | 297e583 | 2016-03-17 14:45:51 -0700 | [diff] [blame] | 79 | 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 Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 83 | inline std::string app_lang() const { return app_lang_; } |
| 84 | inline std::string hwid() const { return hwid_; } |
Chris Sosa | c197248 | 2013-04-30 22:31:10 -0700 | [diff] [blame] | 85 | inline std::string fw_version() const { return fw_version_; } |
| 86 | inline std::string ec_version() const { return ec_version_; } |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 87 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 88 | inline void set_app_version(const std::string& version) { |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 89 | image_props_.version = version; |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 90 | } |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 91 | inline std::string app_version() const { return image_props_.version; } |
Sen Jiang | 94a4dec | 2017-03-28 18:23:35 -0700 | [diff] [blame] | 92 | inline std::string system_version() const { |
| 93 | return image_props_.system_version; |
| 94 | } |
Sen Jiang | 684c9cd | 2017-10-17 16:26:45 -0700 | [diff] [blame] | 95 | inline std::string product_components() const { |
| 96 | return image_props_.product_components; |
| 97 | } |
Sen Jiang | 8cd4234 | 2018-01-31 12:06:59 -0800 | [diff] [blame] | 98 | inline void set_product_components(const std::string& product_components) { |
| 99 | image_props_.product_components = product_components; |
| 100 | } |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 101 | |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 102 | 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 Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 108 | inline std::string download_channel() const { return download_channel_; } |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 109 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 110 | // 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 Srinivasan | 0a70874 | 2012-03-20 11:26:12 -0700 | [diff] [blame] | 113 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 114 | // True if this is a user-initiated update check. |
Chris Sosa | 968d057 | 2013-08-23 14:46:02 -0700 | [diff] [blame] | 115 | inline void set_interactive(bool interactive) { interactive_ = interactive; } |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 116 | inline bool interactive() const { return interactive_; } |
Jay Srinivasan | 480ddfa | 2012-06-01 19:15:26 -0700 | [diff] [blame] | 117 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 118 | inline void set_update_url(const std::string& url) { update_url_ = url; } |
| 119 | inline std::string update_url() const { return update_url_; } |
| 120 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 121 | 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 Hunyady | ba51c3f | 2018-04-25 15:18:10 +0200 | [diff] [blame] | 129 | 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 Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 135 | 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 Chan | 9abb763 | 2014-08-07 00:10:53 -0700 | [diff] [blame] | 155 | inline void set_min_update_checks_needed(int64_t min) { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 156 | min_update_checks_needed_ = min; |
| 157 | } |
Ben Chan | 9abb763 | 2014-08-07 00:10:53 -0700 | [diff] [blame] | 158 | inline int64_t min_update_checks_needed() const { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 159 | return min_update_checks_needed_; |
| 160 | } |
| 161 | |
Ben Chan | 9abb763 | 2014-08-07 00:10:53 -0700 | [diff] [blame] | 162 | inline void set_max_update_checks_allowed(int64_t max) { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 163 | max_update_checks_allowed_ = max; |
| 164 | } |
Ben Chan | 9abb763 | 2014-08-07 00:10:53 -0700 | [diff] [blame] | 165 | inline int64_t max_update_checks_allowed() const { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 166 | return max_update_checks_allowed_; |
| 167 | } |
Xiaochu Liu | f53a5d3 | 2018-11-26 13:48:59 -0800 | [diff] [blame] | 168 | inline void set_dlc_module_ids( |
| 169 | const std::vector<std::string>& dlc_module_ids) { |
| 170 | dlc_module_ids_ = dlc_module_ids; |
Xiaochu Liu | 88d9038 | 2018-08-29 16:09:11 -0700 | [diff] [blame] | 171 | } |
Xiaochu Liu | f53a5d3 | 2018-11-26 13:48:59 -0800 | [diff] [blame] | 172 | inline std::vector<std::string> dlc_module_ids() const { |
| 173 | return dlc_module_ids_; |
| 174 | } |
Xiaochu Liu | 88d9038 | 2018-08-29 16:09:11 -0700 | [diff] [blame] | 175 | inline void set_is_install(bool is_install) { is_install_ = is_install; } |
| 176 | inline bool is_install() const { return is_install_; } |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 177 | |
Jay Srinivasan | db0acdf | 2013-04-02 14:47:45 -0700 | [diff] [blame] | 178 | // Returns the app id corresponding to the current value of the |
| 179 | // download channel. |
Alex Deymo | 560ae1d | 2014-10-28 02:17:54 -0700 | [diff] [blame] | 180 | virtual std::string GetAppId() const; |
Jay Srinivasan | db0acdf | 2013-04-02 14:47:45 -0700 | [diff] [blame] | 181 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 182 | // Suggested defaults |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 183 | static const char kOsVersion[]; |
Ben Chan | 9abb763 | 2014-08-07 00:10:53 -0700 | [diff] [blame] | 184 | static const int64_t kDefaultMinUpdateChecks = 0; |
| 185 | static const int64_t kDefaultMaxUpdateChecks = 8; |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 186 | |
Darin Petkov | 5a7f565 | 2010-07-22 21:40:09 -0700 | [diff] [blame] | 187 | // 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 Dubroy | 7fbbe8a | 2011-08-01 17:28:22 +0200 | [diff] [blame] | 191 | const std::string& in_update_url, |
Gilad Arnold | bbdd490 | 2013-01-10 16:06:30 -0800 | [diff] [blame] | 192 | bool in_interactive); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 193 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 194 | // 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 Deymo | 560ae1d | 2014-10-28 02:17:54 -0700 | [diff] [blame] | 201 | virtual bool SetTargetChannel(const std::string& channel, |
Alex Deymo | d942f9d | 2015-11-06 16:11:50 -0800 | [diff] [blame] | 202 | bool is_powerwash_allowed, |
| 203 | std::string* error_message); |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 204 | |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 205 | // 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 Deymo | 560ae1d | 2014-10-28 02:17:54 -0700 | [diff] [blame] | 211 | virtual void UpdateDownloadChannel(); |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 212 | |
Sen Jiang | 8500d3a | 2018-02-08 12:04:05 -0800 | [diff] [blame] | 213 | // Returns whether we should powerwash for this update. |
| 214 | virtual bool ShouldPowerwash() const; |
Satoru Takabayashi | 583667b | 2010-10-27 13:09:57 +0900 | [diff] [blame] | 215 | |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 216 | // 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 Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 220 | // For unit-tests. |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 221 | void set_root(const std::string& root); |
Chris Sosa | 28e479c | 2013-07-12 11:39:53 -0700 | [diff] [blame] | 222 | void set_current_channel(const std::string& channel) { |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 223 | image_props_.current_channel = channel; |
Chris Sosa | 28e479c | 2013-07-12 11:39:53 -0700 | [diff] [blame] | 224 | } |
Gilad Arnold | 76b2b48 | 2014-04-01 13:32:43 -0700 | [diff] [blame] | 225 | void set_target_channel(const std::string& channel) { |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 226 | mutable_image_props_.target_channel = channel; |
Gilad Arnold | 76b2b48 | 2014-04-01 13:32:43 -0700 | [diff] [blame] | 227 | } |
Marton Hunyady | 2abda31 | 2018-04-24 18:21:49 +0200 | [diff] [blame] | 228 | 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 Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 243 | |
| 244 | private: |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 245 | FRIEND_TEST(OmahaRequestParamsTest, ChannelIndexTest); |
Chris Sosa | c197248 | 2013-04-30 22:31:10 -0700 | [diff] [blame] | 246 | FRIEND_TEST(OmahaRequestParamsTest, CollectECFWVersionsTest); |
Sen Jiang | 7f785f5 | 2018-01-24 13:31:56 -0800 | [diff] [blame] | 247 | FRIEND_TEST(OmahaRequestParamsTest, IsValidChannelTest); |
Sen Jiang | 8500d3a | 2018-02-08 12:04:05 -0800 | [diff] [blame] | 248 | FRIEND_TEST(OmahaRequestParamsTest, SetIsPowerwashAllowedTest); |
Sen Jiang | 7f785f5 | 2018-01-24 13:31:56 -0800 | [diff] [blame] | 249 | FRIEND_TEST(OmahaRequestParamsTest, SetTargetChannelInvalidTest); |
Sen Jiang | 8500d3a | 2018-02-08 12:04:05 -0800 | [diff] [blame] | 250 | FRIEND_TEST(OmahaRequestParamsTest, SetTargetChannelTest); |
| 251 | FRIEND_TEST(OmahaRequestParamsTest, ShouldPowerwashTest); |
Sen Jiang | 7f785f5 | 2018-01-24 13:31:56 -0800 | [diff] [blame] | 252 | FRIEND_TEST(OmahaRequestParamsTest, ToMoreStableChannelFlagTest); |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 253 | |
Sen Jiang | ce3f7cf | 2018-01-25 14:07:45 -0800 | [diff] [blame] | 254 | // 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 Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 261 | |
| 262 | // Returns the index of the given channel. |
| 263 | int GetChannelIndex(const std::string& channel) const; |
| 264 | |
Sen Jiang | 8500d3a | 2018-02-08 12:04:05 -0800 | [diff] [blame] | 265 | // 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 Sosa | c197248 | 2013-04-30 22:31:10 -0700 | [diff] [blame] | 269 | // 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 Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 273 | // Gets the machine type (e.g. "i686"). |
| 274 | std::string GetMachineType() const; |
| 275 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 276 | // Global system context. |
| 277 | SystemState* system_state_; |
| 278 | |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 279 | // The system image properties. |
| 280 | ImageProperties image_props_; |
| 281 | MutableImageProperties mutable_image_props_; |
| 282 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 283 | // 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 Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 287 | std::string app_lang_; |
| 288 | |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 289 | // 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 Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 307 | std::string download_channel_; |
| 308 | |
Amin Hassani | 7cc8bb0 | 2019-01-14 16:29:47 -0800 | [diff] [blame] | 309 | std::string hwid_; // Hardware Qualification ID of the client |
Chris Sosa | c197248 | 2013-04-30 22:31:10 -0700 | [diff] [blame] | 310 | std::string fw_version_; // Chrome OS Firmware Version. |
| 311 | std::string ec_version_; // Chrome OS EC Version. |
Amin Hassani | 7cc8bb0 | 2019-01-14 16:29:47 -0800 | [diff] [blame] | 312 | bool delta_okay_; // If this client can accept a delta |
| 313 | bool interactive_; // Whether this is a user-initiated update check |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 314 | |
| 315 | // The URL to send the Omaha request to. |
| 316 | std::string update_url_; |
| 317 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 318 | // 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 Hunyady | ba51c3f | 2018-04-25 15:18:10 +0200 | [diff] [blame] | 322 | // Whether the client is accepting rollback images too. |
| 323 | bool rollback_allowed_; |
| 324 | |
Adolfo Victoria | 497044c | 2018-07-18 07:51:42 -0700 | [diff] [blame] | 325 | // 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 Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 328 | bool wall_clock_based_wait_enabled_; |
| 329 | base::TimeDelta waiting_period_; |
| 330 | |
Adolfo Victoria | 497044c | 2018-07-18 07:51:42 -0700 | [diff] [blame] | 331 | // 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 Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 333 | // 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 Chan | 9abb763 | 2014-08-07 00:10:53 -0700 | [diff] [blame] | 336 | int64_t min_update_checks_needed_; |
| 337 | int64_t max_update_checks_allowed_; |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 338 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 339 | // When reading files, prepend root_ to the paths. Useful for testing. |
| 340 | std::string root_; |
| 341 | |
Xiaochu Liu | f53a5d3 | 2018-11-26 13:48:59 -0800 | [diff] [blame] | 342 | // A list of DLC module IDs to install. |
| 343 | std::vector<std::string> dlc_module_ids_; |
Xiaochu Liu | 88d9038 | 2018-08-29 16:09:11 -0700 | [diff] [blame] | 344 | |
| 345 | // This variable defines whether the payload is being installed in the current |
Xiaochu Liu | f53a5d3 | 2018-11-26 13:48:59 -0800 | [diff] [blame] | 346 | // partition. At the moment, this is used for installing DLC modules on the |
| 347 | // current active partition instead of the inactive partition. |
Xiaochu Liu | 88d9038 | 2018-08-29 16:09:11 -0700 | [diff] [blame] | 348 | bool is_install_; |
| 349 | |
Marton Hunyady | 2abda31 | 2018-04-24 18:21:49 +0200 | [diff] [blame] | 350 | DISALLOW_COPY_AND_ASSIGN(OmahaRequestParams); |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 351 | }; |
| 352 | |
| 353 | } // namespace chromeos_update_engine |
| 354 | |
Gilad Arnold | cf175a0 | 2014-07-10 16:48:47 -0700 | [diff] [blame] | 355 | #endif // UPDATE_ENGINE_OMAHA_REQUEST_PARAMS_H_ |