Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2011 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 | |
| 17 | #include "update_engine/omaha_request_params.h" |
| 18 | |
| 19 | #include <errno.h> |
| 20 | #include <fcntl.h> |
| 21 | #include <sys/utsname.h> |
| 22 | |
| 23 | #include <map> |
| 24 | #include <string> |
Darin Petkov | a3df55b | 2010-11-15 13:33:55 -0800 | [diff] [blame] | 25 | #include <vector> |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 26 | |
Ben Chan | 06c76a4 | 2014-09-05 08:21:06 -0700 | [diff] [blame] | 27 | #include <base/files/file_util.h> |
Alex Vakulenko | 75039d7 | 2014-03-25 12:36:28 -0700 | [diff] [blame] | 28 | #include <base/strings/string_util.h> |
Alex Deymo | d942f9d | 2015-11-06 16:11:50 -0800 | [diff] [blame] | 29 | #include <base/strings/stringprintf.h> |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 30 | #include <brillo/key_value_store.h> |
Alex Deymo | d942f9d | 2015-11-06 16:11:50 -0800 | [diff] [blame] | 31 | #include <brillo/strings/string_utils.h> |
Patrick Dubroy | 7fbbe8a | 2011-08-01 17:28:22 +0200 | [diff] [blame] | 32 | #include <policy/device_policy.h> |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 33 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 34 | #include "update_engine/common/constants.h" |
| 35 | #include "update_engine/common/hardware_interface.h" |
| 36 | #include "update_engine/common/platform_constants.h" |
| 37 | #include "update_engine/common/utils.h" |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 38 | #include "update_engine/system_state.h" |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 39 | |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 40 | #define CALL_MEMBER_FN(object, member) ((object).*(member)) |
| 41 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 42 | using std::map; |
| 43 | using std::string; |
Darin Petkov | a3df55b | 2010-11-15 13:33:55 -0800 | [diff] [blame] | 44 | using std::vector; |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 45 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 46 | namespace chromeos_update_engine { |
| 47 | |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 48 | const char OmahaRequestParams::kOsVersion[] = "Indy"; |
Patrick Dubroy | 7fbbe8a | 2011-08-01 17:28:22 +0200 | [diff] [blame] | 49 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 50 | const char* kChannelsByStability[] = { |
| 51 | // This list has to be sorted from least stable to most stable channel. |
| 52 | "canary-channel", |
| 53 | "dev-channel", |
| 54 | "beta-channel", |
| 55 | "stable-channel", |
| 56 | }; |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 57 | |
Alex Deymo | 3be05c8 | 2015-10-23 11:29:11 -0700 | [diff] [blame] | 58 | OmahaRequestParams::~OmahaRequestParams() { |
| 59 | if (!root_.empty()) |
| 60 | test::SetImagePropertiesRootPrefix(nullptr); |
| 61 | } |
| 62 | |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 63 | bool OmahaRequestParams::Init(const string& in_app_version, |
| 64 | const string& in_update_url, |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 65 | bool in_interactive) { |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 66 | LOG(INFO) << "Initializing parameters for this update attempt"; |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 67 | image_props_ = LoadImageProperties(system_state_); |
| 68 | mutable_image_props_ = LoadMutableImageProperties(system_state_); |
| 69 | |
| 70 | // Sanity check the channel names. |
| 71 | if (!IsValidChannel(image_props_.current_channel)) |
| 72 | image_props_.current_channel = "stable-channel"; |
| 73 | if (!IsValidChannel(mutable_image_props_.target_channel)) |
| 74 | mutable_image_props_.target_channel = image_props_.current_channel; |
| 75 | UpdateDownloadChannel(); |
| 76 | |
| 77 | LOG(INFO) << "Running from channel " << image_props_.current_channel; |
| 78 | |
Alex Deymo | ac41a82 | 2015-09-15 20:52:53 -0700 | [diff] [blame] | 79 | os_platform_ = constants::kOmahaPlatformName; |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 80 | os_version_ = OmahaRequestParams::kOsVersion; |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 81 | if (!in_app_version.empty()) |
| 82 | image_props_.version = in_app_version; |
| 83 | |
| 84 | os_sp_ = image_props_.version + "_" + GetMachineType(); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 85 | app_lang_ = "en-US"; |
J. Richard Barnette | 522d36f | 2013-10-28 17:22:12 -0700 | [diff] [blame] | 86 | hwid_ = system_state_->hardware()->GetHardwareClass(); |
Chris Sosa | c197248 | 2013-04-30 22:31:10 -0700 | [diff] [blame] | 87 | if (CollectECFWVersions()) { |
J. Richard Barnette | 522d36f | 2013-10-28 17:22:12 -0700 | [diff] [blame] | 88 | fw_version_ = system_state_->hardware()->GetFirmwareVersion(); |
| 89 | ec_version_ = system_state_->hardware()->GetECVersion(); |
Chris Sosa | c197248 | 2013-04-30 22:31:10 -0700 | [diff] [blame] | 90 | } |
Patrick Dubroy | 7fbbe8a | 2011-08-01 17:28:22 +0200 | [diff] [blame] | 91 | |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 92 | if (image_props_.current_channel == mutable_image_props_.target_channel) { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 93 | // deltas are only okay if the /.nodelta file does not exist. if we don't |
| 94 | // know (i.e. stat() returns some unexpected error), then err on the side of |
| 95 | // caution and say deltas are not okay. |
| 96 | struct stat stbuf; |
| 97 | delta_okay_ = (stat((root_ + "/.nodelta").c_str(), &stbuf) < 0) && |
| 98 | (errno == ENOENT); |
Patrick Dubroy | 7fbbe8a | 2011-08-01 17:28:22 +0200 | [diff] [blame] | 99 | } else { |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 100 | LOG(INFO) << "Disabling deltas as a channel change to " |
| 101 | << mutable_image_props_.target_channel |
| 102 | << " is pending, with is_powerwash_allowed=" |
| 103 | << utils::ToString(mutable_image_props_.is_powerwash_allowed); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 104 | // For now, disable delta updates if the current channel is different from |
| 105 | // the channel that we're sending to the update server because such updates |
| 106 | // are destined to fail -- the current rootfs hash will be different than |
| 107 | // the expected hash due to the different channel in /etc/lsb-release. |
| 108 | delta_okay_ = false; |
Patrick Dubroy | 7fbbe8a | 2011-08-01 17:28:22 +0200 | [diff] [blame] | 109 | } |
| 110 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 111 | if (in_update_url.empty()) |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 112 | update_url_ = image_props_.omaha_url; |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 113 | else |
| 114 | update_url_ = in_update_url; |
Gilad Arnold | bbdd490 | 2013-01-10 16:06:30 -0800 | [diff] [blame] | 115 | |
| 116 | // Set the interactive flag accordingly. |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 117 | interactive_ = in_interactive; |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 118 | return true; |
| 119 | } |
| 120 | |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 121 | bool OmahaRequestParams::IsUpdateUrlOfficial() const { |
Alex Deymo | ac41a82 | 2015-09-15 20:52:53 -0700 | [diff] [blame] | 122 | return (update_url_ == constants::kOmahaDefaultAUTestURL || |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 123 | update_url_ == image_props_.omaha_url); |
David Pursell | 02c1864 | 2014-11-06 11:26:11 -0800 | [diff] [blame] | 124 | } |
| 125 | |
Chris Sosa | c197248 | 2013-04-30 22:31:10 -0700 | [diff] [blame] | 126 | bool OmahaRequestParams::CollectECFWVersions() const { |
Alex Vakulenko | 6a9d349 | 2015-06-15 12:53:22 -0700 | [diff] [blame] | 127 | return base::StartsWithASCII(hwid_, string("SAMS ALEX"), true) || |
| 128 | base::StartsWithASCII(hwid_, string("BUTTERFLY"), true) || |
| 129 | base::StartsWithASCII(hwid_, string("LUMPY"), true) || |
| 130 | base::StartsWithASCII(hwid_, string("PARROT"), true) || |
| 131 | base::StartsWithASCII(hwid_, string("SPRING"), true) || |
| 132 | base::StartsWithASCII(hwid_, string("SNOW"), true); |
Chris Sosa | c197248 | 2013-04-30 22:31:10 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 135 | bool OmahaRequestParams::SetTargetChannel(const string& new_target_channel, |
Alex Deymo | d942f9d | 2015-11-06 16:11:50 -0800 | [diff] [blame] | 136 | bool is_powerwash_allowed, |
| 137 | string* error_message) { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 138 | LOG(INFO) << "SetTargetChannel called with " << new_target_channel |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 139 | << ", Is Powerwash Allowed = " |
| 140 | << utils::ToString(is_powerwash_allowed) |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 141 | << ". Current channel = " << image_props_.current_channel |
| 142 | << ", existing target channel = " |
| 143 | << mutable_image_props_.target_channel |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 144 | << ", download channel = " << download_channel_; |
Alex Deymo | d942f9d | 2015-11-06 16:11:50 -0800 | [diff] [blame] | 145 | if (!IsValidChannel(new_target_channel)) { |
| 146 | string valid_channels = brillo::string_utils::JoinRange( |
| 147 | ", ", |
| 148 | std::begin(kChannelsByStability), |
| 149 | std::end(kChannelsByStability)); |
| 150 | if (error_message) { |
| 151 | *error_message = base::StringPrintf( |
| 152 | "Invalid channel name \"%s\", valid names are: %s", |
| 153 | new_target_channel.c_str(), valid_channels.c_str()); |
| 154 | } |
| 155 | return false; |
| 156 | } |
Alex Deymo | a765844 | 2014-04-17 15:49:37 -0700 | [diff] [blame] | 157 | |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 158 | MutableImageProperties new_props; |
| 159 | new_props.target_channel = new_target_channel; |
| 160 | new_props.is_powerwash_allowed = is_powerwash_allowed; |
Alex Deymo | a765844 | 2014-04-17 15:49:37 -0700 | [diff] [blame] | 161 | |
Alex Deymo | d942f9d | 2015-11-06 16:11:50 -0800 | [diff] [blame] | 162 | if (!StoreMutableImageProperties(system_state_, new_props)) { |
| 163 | if (error_message) |
| 164 | *error_message = "Error storing the new channel value."; |
| 165 | return false; |
| 166 | } |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 167 | mutable_image_props_ = new_props; |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 168 | return true; |
| 169 | } |
| 170 | |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 171 | void OmahaRequestParams::UpdateDownloadChannel() { |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 172 | if (download_channel_ != mutable_image_props_.target_channel) { |
| 173 | download_channel_ = mutable_image_props_.target_channel; |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 174 | LOG(INFO) << "Download channel for this attempt = " << download_channel_; |
| 175 | } |
| 176 | } |
| 177 | |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 178 | string OmahaRequestParams::GetMachineType() const { |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 179 | struct utsname buf; |
| 180 | string ret; |
| 181 | if (uname(&buf) == 0) |
| 182 | ret = buf.machine; |
| 183 | return ret; |
| 184 | } |
| 185 | |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 186 | bool OmahaRequestParams::IsValidChannel(const string& channel) const { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 187 | return GetChannelIndex(channel) >= 0; |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 190 | void OmahaRequestParams::set_root(const string& root) { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 191 | root_ = root; |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 192 | test::SetImagePropertiesRootPrefix(root_.c_str()); |
Darin Petkov | 49d9132 | 2010-10-25 16:34:58 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Alex Deymo | f329b93 | 2014-10-30 01:37:48 -0700 | [diff] [blame] | 195 | int OmahaRequestParams::GetChannelIndex(const string& channel) const { |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 196 | for (size_t t = 0; t < arraysize(kChannelsByStability); ++t) |
| 197 | if (channel == kChannelsByStability[t]) |
| 198 | return t; |
| 199 | |
| 200 | return -1; |
| 201 | } |
| 202 | |
| 203 | bool OmahaRequestParams::to_more_stable_channel() const { |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 204 | int current_channel_index = GetChannelIndex(image_props_.current_channel); |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 205 | int download_channel_index = GetChannelIndex(download_channel_); |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 206 | |
Jay Srinivasan | 1c0fe79 | 2013-03-28 16:45:25 -0700 | [diff] [blame] | 207 | return download_channel_index > current_channel_index; |
Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Jay Srinivasan | db0acdf | 2013-04-02 14:47:45 -0700 | [diff] [blame] | 210 | string OmahaRequestParams::GetAppId() const { |
Alex Deymo | 8561665 | 2015-10-15 18:48:31 -0700 | [diff] [blame] | 211 | return download_channel_ == "canary-channel" ? image_props_.canary_product_id |
| 212 | : image_props_.product_id; |
Jay Srinivasan | db0acdf | 2013-04-02 14:47:45 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Darin Petkov | a4a8a8c | 2010-07-15 22:21:12 -0700 | [diff] [blame] | 215 | } // namespace chromeos_update_engine |