blob: 97599357bcdb9558472667c5dee9c38eb437de83 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
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 Petkova4a8a8c2010-07-15 22:21:12 -070016
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 Petkova3df55b2010-11-15 13:33:55 -080025#include <vector>
Darin Petkova4a8a8c2010-07-15 22:21:12 -070026
Ben Chan06c76a42014-09-05 08:21:06 -070027#include <base/files/file_util.h>
Alex Vakulenko75039d72014-03-25 12:36:28 -070028#include <base/strings/string_util.h>
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070029#include <brillo/key_value_store.h>
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +020030#include <policy/device_policy.h>
Darin Petkov49d91322010-10-25 16:34:58 -070031
Chris Sosabe45bef2013-04-09 18:25:12 -070032#include "update_engine/constants.h"
J. Richard Barnette522d36f2013-10-28 17:22:12 -070033#include "update_engine/hardware_interface.h"
Alex Deymoac41a822015-09-15 20:52:53 -070034#include "update_engine/platform_constants.h"
Jay Srinivasanae4697c2013-03-18 17:08:08 -070035#include "update_engine/system_state.h"
Darin Petkova4a8a8c2010-07-15 22:21:12 -070036#include "update_engine/utils.h"
37
Darin Petkov49d91322010-10-25 16:34:58 -070038#define CALL_MEMBER_FN(object, member) ((object).*(member))
39
Darin Petkova4a8a8c2010-07-15 22:21:12 -070040using std::map;
41using std::string;
Darin Petkova3df55b2010-11-15 13:33:55 -080042using std::vector;
Darin Petkova4a8a8c2010-07-15 22:21:12 -070043
Darin Petkova4a8a8c2010-07-15 22:21:12 -070044namespace chromeos_update_engine {
45
David Pursell02c18642014-11-06 11:26:11 -080046const char OmahaRequestParams::kOsVersion[] = "Indy";
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +020047
Jay Srinivasanae4697c2013-03-18 17:08:08 -070048const char* kChannelsByStability[] = {
49 // This list has to be sorted from least stable to most stable channel.
50 "canary-channel",
51 "dev-channel",
52 "beta-channel",
53 "stable-channel",
54};
Darin Petkov49d91322010-10-25 16:34:58 -070055
Alex Deymof329b932014-10-30 01:37:48 -070056bool OmahaRequestParams::Init(const string& in_app_version,
57 const string& in_update_url,
Jay Srinivasanae4697c2013-03-18 17:08:08 -070058 bool in_interactive) {
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070059 LOG(INFO) << "Initializing parameters for this update attempt";
Alex Deymo85616652015-10-15 18:48:31 -070060 image_props_ = LoadImageProperties(system_state_);
61 mutable_image_props_ = LoadMutableImageProperties(system_state_);
62
63 // Sanity check the channel names.
64 if (!IsValidChannel(image_props_.current_channel))
65 image_props_.current_channel = "stable-channel";
66 if (!IsValidChannel(mutable_image_props_.target_channel))
67 mutable_image_props_.target_channel = image_props_.current_channel;
68 UpdateDownloadChannel();
69
70 LOG(INFO) << "Running from channel " << image_props_.current_channel;
71
Alex Deymoac41a822015-09-15 20:52:53 -070072 os_platform_ = constants::kOmahaPlatformName;
Jay Srinivasanae4697c2013-03-18 17:08:08 -070073 os_version_ = OmahaRequestParams::kOsVersion;
Alex Deymo85616652015-10-15 18:48:31 -070074 if (!in_app_version.empty())
75 image_props_.version = in_app_version;
76
77 os_sp_ = image_props_.version + "_" + GetMachineType();
Jay Srinivasanae4697c2013-03-18 17:08:08 -070078 app_lang_ = "en-US";
J. Richard Barnette522d36f2013-10-28 17:22:12 -070079 hwid_ = system_state_->hardware()->GetHardwareClass();
Chris Sosac1972482013-04-30 22:31:10 -070080 if (CollectECFWVersions()) {
J. Richard Barnette522d36f2013-10-28 17:22:12 -070081 fw_version_ = system_state_->hardware()->GetFirmwareVersion();
82 ec_version_ = system_state_->hardware()->GetECVersion();
Chris Sosac1972482013-04-30 22:31:10 -070083 }
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +020084
Alex Deymo85616652015-10-15 18:48:31 -070085 if (image_props_.current_channel == mutable_image_props_.target_channel) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -070086 // deltas are only okay if the /.nodelta file does not exist. if we don't
87 // know (i.e. stat() returns some unexpected error), then err on the side of
88 // caution and say deltas are not okay.
89 struct stat stbuf;
90 delta_okay_ = (stat((root_ + "/.nodelta").c_str(), &stbuf) < 0) &&
91 (errno == ENOENT);
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +020092 } else {
Alex Deymo85616652015-10-15 18:48:31 -070093 LOG(INFO) << "Disabling deltas as a channel change to "
94 << mutable_image_props_.target_channel
95 << " is pending, with is_powerwash_allowed="
96 << utils::ToString(mutable_image_props_.is_powerwash_allowed);
Jay Srinivasanae4697c2013-03-18 17:08:08 -070097 // For now, disable delta updates if the current channel is different from
98 // the channel that we're sending to the update server because such updates
99 // are destined to fail -- the current rootfs hash will be different than
100 // the expected hash due to the different channel in /etc/lsb-release.
101 delta_okay_ = false;
Patrick Dubroy7fbbe8a2011-08-01 17:28:22 +0200102 }
103
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700104 if (in_update_url.empty())
Alex Deymo85616652015-10-15 18:48:31 -0700105 update_url_ = image_props_.omaha_url;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700106 else
107 update_url_ = in_update_url;
Gilad Arnoldbbdd4902013-01-10 16:06:30 -0800108
109 // Set the interactive flag accordingly.
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700110 interactive_ = in_interactive;
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700111 return true;
112}
113
David Pursell02c18642014-11-06 11:26:11 -0800114bool OmahaRequestParams::IsUpdateUrlOfficial() const {
Alex Deymoac41a822015-09-15 20:52:53 -0700115 return (update_url_ == constants::kOmahaDefaultAUTestURL ||
Alex Deymo85616652015-10-15 18:48:31 -0700116 update_url_ == image_props_.omaha_url);
David Pursell02c18642014-11-06 11:26:11 -0800117}
118
Chris Sosac1972482013-04-30 22:31:10 -0700119bool OmahaRequestParams::CollectECFWVersions() const {
Alex Vakulenko6a9d3492015-06-15 12:53:22 -0700120 return base::StartsWithASCII(hwid_, string("SAMS ALEX"), true) ||
121 base::StartsWithASCII(hwid_, string("BUTTERFLY"), true) ||
122 base::StartsWithASCII(hwid_, string("LUMPY"), true) ||
123 base::StartsWithASCII(hwid_, string("PARROT"), true) ||
124 base::StartsWithASCII(hwid_, string("SPRING"), true) ||
125 base::StartsWithASCII(hwid_, string("SNOW"), true);
Chris Sosac1972482013-04-30 22:31:10 -0700126}
127
Alex Deymof329b932014-10-30 01:37:48 -0700128bool OmahaRequestParams::SetTargetChannel(const string& new_target_channel,
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700129 bool is_powerwash_allowed) {
130 LOG(INFO) << "SetTargetChannel called with " << new_target_channel
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700131 << ", Is Powerwash Allowed = "
132 << utils::ToString(is_powerwash_allowed)
Alex Deymo85616652015-10-15 18:48:31 -0700133 << ". Current channel = " << image_props_.current_channel
134 << ", existing target channel = "
135 << mutable_image_props_.target_channel
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700136 << ", download channel = " << download_channel_;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700137 TEST_AND_RETURN_FALSE(IsValidChannel(new_target_channel));
Alex Deymoa7658442014-04-17 15:49:37 -0700138
Alex Deymo85616652015-10-15 18:48:31 -0700139 MutableImageProperties new_props;
140 new_props.target_channel = new_target_channel;
141 new_props.is_powerwash_allowed = is_powerwash_allowed;
Alex Deymoa7658442014-04-17 15:49:37 -0700142
Alex Deymo85616652015-10-15 18:48:31 -0700143 TEST_AND_RETURN_FALSE(StoreMutableImageProperties(system_state_, new_props));
144 mutable_image_props_ = new_props;
Darin Petkov49d91322010-10-25 16:34:58 -0700145 return true;
146}
147
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700148void OmahaRequestParams::UpdateDownloadChannel() {
Alex Deymo85616652015-10-15 18:48:31 -0700149 if (download_channel_ != mutable_image_props_.target_channel) {
150 download_channel_ = mutable_image_props_.target_channel;
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700151 LOG(INFO) << "Download channel for this attempt = " << download_channel_;
152 }
153}
154
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700155string OmahaRequestParams::GetMachineType() const {
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700156 struct utsname buf;
157 string ret;
158 if (uname(&buf) == 0)
159 ret = buf.machine;
160 return ret;
161}
162
Alex Deymof329b932014-10-30 01:37:48 -0700163bool OmahaRequestParams::IsValidChannel(const string& channel) const {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700164 return GetChannelIndex(channel) >= 0;
Darin Petkov49d91322010-10-25 16:34:58 -0700165}
166
Alex Deymof329b932014-10-30 01:37:48 -0700167void OmahaRequestParams::set_root(const string& root) {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700168 root_ = root;
Alex Deymo85616652015-10-15 18:48:31 -0700169 test::SetImagePropertiesRootPrefix(root_.c_str());
Darin Petkov49d91322010-10-25 16:34:58 -0700170}
171
Alex Deymof329b932014-10-30 01:37:48 -0700172int OmahaRequestParams::GetChannelIndex(const string& channel) const {
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700173 for (size_t t = 0; t < arraysize(kChannelsByStability); ++t)
174 if (channel == kChannelsByStability[t])
175 return t;
176
177 return -1;
178}
179
180bool OmahaRequestParams::to_more_stable_channel() const {
Alex Deymo85616652015-10-15 18:48:31 -0700181 int current_channel_index = GetChannelIndex(image_props_.current_channel);
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700182 int download_channel_index = GetChannelIndex(download_channel_);
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700183
Jay Srinivasan1c0fe792013-03-28 16:45:25 -0700184 return download_channel_index > current_channel_index;
Jay Srinivasanae4697c2013-03-18 17:08:08 -0700185}
186
Jay Srinivasandb0acdf2013-04-02 14:47:45 -0700187string OmahaRequestParams::GetAppId() const {
Alex Deymo85616652015-10-15 18:48:31 -0700188 return download_channel_ == "canary-channel" ? image_props_.canary_product_id
189 : image_props_.product_id;
Jay Srinivasandb0acdf2013-04-02 14:47:45 -0700190}
191
Darin Petkova4a8a8c2010-07-15 22:21:12 -0700192} // namespace chromeos_update_engine