blob: db4ba937374735b366ba3e132f441a159386edec [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 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 */
16
Tao Bao20c581e2016-12-28 20:55:51 -080017#include "install.h"
18
Doug Zongkerb2ee9202009-06-04 10:24:53 -070019#include <ctype.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080020#include <errno.h>
21#include <fcntl.h>
Alex Deymo4e29ce02016-08-12 13:43:04 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Elliott Hughes26dbad22015-01-28 12:09:05 -080024#include <string.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <sys/stat.h>
Doug Zongkerb2ee9202009-06-04 10:24:53 -070026#include <sys/wait.h>
27#include <unistd.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080028
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -070029#include <algorithm>
Tianjie Xu37957102017-06-07 17:59:55 -070030#include <atomic>
Elliott Hughes8febafa2016-04-13 16:39:56 -070031#include <chrono>
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -070032#include <condition_variable>
Tao Bao5e535012017-03-16 17:37:38 -070033#include <functional>
Alex Deymo4344d632016-08-03 21:03:53 -070034#include <limits>
35#include <map>
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -070036#include <mutex>
Tianjie Xudd874b12016-05-13 12:13:15 -070037#include <string>
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -070038#include <thread>
Tao Bao71e3e092016-02-02 14:02:27 -080039#include <vector>
40
Tianjie Xue16e7992016-09-09 10:55:44 -070041#include <android-base/file.h>
42#include <android-base/logging.h>
Tao Bao20c581e2016-12-28 20:55:51 -080043#include <android-base/parsedouble.h>
Tianjie Xub0ddae52016-06-08 14:30:04 -070044#include <android-base/parseint.h>
Tao Baoefc35592017-01-08 22:45:47 -080045#include <android-base/properties.h>
Tianjie Xu16255832016-04-30 11:49:59 -070046#include <android-base/stringprintf.h>
47#include <android-base/strings.h>
Tao Bao919d2c92017-04-10 16:55:57 -070048#include <vintf/VintfObjectRecovery.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070049#include <ziparchive/zip_archive.h>
Tianjie Xu16255832016-04-30 11:49:59 -070050
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051#include "common.h"
Tianjie Xu16255832016-04-30 11:49:59 -070052#include "error_code.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070053#include "otautil/SysUtil.h"
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -070054#include "otautil/ThermalUtil.h"
Tao Bao00d57572017-05-02 15:48:54 -070055#include "private/install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080056#include "roots.h"
Doug Zongker10e418d2011-10-28 10:33:05 -070057#include "ui.h"
Mattias Nissler452df6d2016-04-04 16:17:01 +020058#include "verifier.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080059
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -070060using namespace std::chrono_literals;
61
Doug Zongker74406302011-10-28 15:13:10 -070062// Default allocation of progress bar segments to operations
Tao Bao20c581e2016-12-28 20:55:51 -080063static constexpr int VERIFICATION_PROGRESS_TIME = 60;
64static constexpr float VERIFICATION_PROGRESS_FRACTION = 0.25;
Doug Zongker74406302011-10-28 15:13:10 -070065
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -070066static std::condition_variable finish_log_temperature;
67
Tianjie Xub0ddae52016-06-08 14:30:04 -070068// This function parses and returns the build.version.incremental
Chih-Hung Hsieh8b238112016-08-26 14:54:29 -070069static int parse_build_number(const std::string& str) {
70 size_t pos = str.find('=');
Tianjie Xub0ddae52016-06-08 14:30:04 -070071 if (pos != std::string::npos) {
72 std::string num_string = android::base::Trim(str.substr(pos+1));
73 int build_number;
74 if (android::base::ParseInt(num_string.c_str(), &build_number, 0)) {
75 return build_number;
76 }
77 }
78
Tianjie Xuc21edd42016-08-05 18:00:04 -070079 LOG(ERROR) << "Failed to parse build number in " << str;
Tianjie Xub0ddae52016-06-08 14:30:04 -070080 return -1;
81}
82
Tao Bao8a7afcc2017-04-18 22:05:50 -070083bool read_metadata_from_package(ZipArchiveHandle zip, std::string* metadata) {
84 CHECK(metadata != nullptr);
Tianjie Xub0ddae52016-06-08 14:30:04 -070085
Tao Bao8a7afcc2017-04-18 22:05:50 -070086 static constexpr const char* METADATA_PATH = "META-INF/com/android/metadata";
87 ZipString path(METADATA_PATH);
88 ZipEntry entry;
89 if (FindEntry(zip, path, &entry) != 0) {
90 LOG(ERROR) << "Failed to find " << METADATA_PATH;
91 return false;
92 }
93
94 uint32_t length = entry.uncompressed_length;
95 metadata->resize(length, '\0');
96 int32_t err = ExtractToMemory(zip, &entry, reinterpret_cast<uint8_t*>(&(*metadata)[0]), length);
97 if (err != 0) {
98 LOG(ERROR) << "Failed to extract " << METADATA_PATH << ": " << ErrorCodeString(err);
99 return false;
100 }
101 return true;
Yabin Cui6faf0262016-06-09 14:09:39 -0700102}
103
104// Read the build.version.incremental of src/tgt from the metadata and log it to last_install.
Tao Bao29ee69b2017-05-01 12:23:17 -0700105static void read_source_target_build(ZipArchiveHandle zip, std::vector<std::string>* log_buffer) {
Tao Bao8a7afcc2017-04-18 22:05:50 -0700106 std::string metadata;
107 if (!read_metadata_from_package(zip, &metadata)) {
108 return;
109 }
110 // Examples of the pre-build and post-build strings in metadata:
111 // pre-build-incremental=2943039
112 // post-build-incremental=2951741
113 std::vector<std::string> lines = android::base::Split(metadata, "\n");
114 for (const std::string& line : lines) {
115 std::string str = android::base::Trim(line);
116 if (android::base::StartsWith(str, "pre-build-incremental")) {
117 int source_build = parse_build_number(str);
118 if (source_build != -1) {
Tao Bao29ee69b2017-05-01 12:23:17 -0700119 log_buffer->push_back(android::base::StringPrintf("source_build: %d", source_build));
Tao Bao8a7afcc2017-04-18 22:05:50 -0700120 }
121 } else if (android::base::StartsWith(str, "post-build-incremental")) {
122 int target_build = parse_build_number(str);
123 if (target_build != -1) {
Tao Bao29ee69b2017-05-01 12:23:17 -0700124 log_buffer->push_back(android::base::StringPrintf("target_build: %d", target_build));
Tao Bao8a7afcc2017-04-18 22:05:50 -0700125 }
Tianjie Xub0ddae52016-06-08 14:30:04 -0700126 }
Tao Bao8a7afcc2017-04-18 22:05:50 -0700127 }
Tianjie Xub0ddae52016-06-08 14:30:04 -0700128}
129
Alex Deymo4344d632016-08-03 21:03:53 -0700130#ifdef AB_OTA_UPDATER
131
132// Parses the metadata of the OTA package in |zip| and checks whether we are
133// allowed to accept this A/B package. Downgrading is not allowed unless
134// explicitly enabled in the package and only for incremental packages.
Tao Baoefc35592017-01-08 22:45:47 -0800135static int check_newer_ab_build(ZipArchiveHandle zip) {
136 std::string metadata_str;
137 if (!read_metadata_from_package(zip, &metadata_str)) {
138 return INSTALL_CORRUPT;
139 }
140 std::map<std::string, std::string> metadata;
141 for (const std::string& line : android::base::Split(metadata_str, "\n")) {
142 size_t eq = line.find('=');
143 if (eq != std::string::npos) {
144 metadata[line.substr(0, eq)] = line.substr(eq + 1);
Alex Deymo4344d632016-08-03 21:03:53 -0700145 }
Tao Baoefc35592017-01-08 22:45:47 -0800146 }
Alex Deymo4344d632016-08-03 21:03:53 -0700147
Tao Baoefc35592017-01-08 22:45:47 -0800148 std::string value = android::base::GetProperty("ro.product.device", "");
149 const std::string& pkg_device = metadata["pre-device"];
150 if (pkg_device != value || pkg_device.empty()) {
151 LOG(ERROR) << "Package is for product " << pkg_device << " but expected " << value;
152 return INSTALL_ERROR;
153 }
Alex Deymo4344d632016-08-03 21:03:53 -0700154
Tao Baoefc35592017-01-08 22:45:47 -0800155 // We allow the package to not have any serialno, but if it has a non-empty
156 // value it should match.
157 value = android::base::GetProperty("ro.serialno", "");
158 const std::string& pkg_serial_no = metadata["serialno"];
159 if (!pkg_serial_no.empty() && pkg_serial_no != value) {
160 LOG(ERROR) << "Package is for serial " << pkg_serial_no;
161 return INSTALL_ERROR;
162 }
Alex Deymo4344d632016-08-03 21:03:53 -0700163
Tao Baoefc35592017-01-08 22:45:47 -0800164 if (metadata["ota-type"] != "AB") {
165 LOG(ERROR) << "Package is not A/B";
166 return INSTALL_ERROR;
167 }
Alex Deymo4344d632016-08-03 21:03:53 -0700168
Tao Baoefc35592017-01-08 22:45:47 -0800169 // Incremental updates should match the current build.
170 value = android::base::GetProperty("ro.build.version.incremental", "");
171 const std::string& pkg_pre_build = metadata["pre-build-incremental"];
172 if (!pkg_pre_build.empty() && pkg_pre_build != value) {
173 LOG(ERROR) << "Package is for source build " << pkg_pre_build << " but expected " << value;
174 return INSTALL_ERROR;
175 }
Alex Deymo4344d632016-08-03 21:03:53 -0700176
Tao Baoefc35592017-01-08 22:45:47 -0800177 value = android::base::GetProperty("ro.build.fingerprint", "");
178 const std::string& pkg_pre_build_fingerprint = metadata["pre-build"];
179 if (!pkg_pre_build_fingerprint.empty() && pkg_pre_build_fingerprint != value) {
180 LOG(ERROR) << "Package is for source build " << pkg_pre_build_fingerprint << " but expected "
181 << value;
182 return INSTALL_ERROR;
183 }
Alex Deymo4344d632016-08-03 21:03:53 -0700184
Tao Baoefc35592017-01-08 22:45:47 -0800185 // Check for downgrade version.
186 int64_t build_timestamp =
187 android::base::GetIntProperty("ro.build.date.utc", std::numeric_limits<int64_t>::max());
188 int64_t pkg_post_timestamp = 0;
189 // We allow to full update to the same version we are running, in case there
190 // is a problem with the current copy of that version.
191 if (metadata["post-timestamp"].empty() ||
192 !android::base::ParseInt(metadata["post-timestamp"].c_str(), &pkg_post_timestamp) ||
193 pkg_post_timestamp < build_timestamp) {
194 if (metadata["ota-downgrade"] != "yes") {
195 LOG(ERROR) << "Update package is older than the current build, expected a build "
196 "newer than timestamp "
197 << build_timestamp << " but package has timestamp " << pkg_post_timestamp
198 << " and downgrade not allowed.";
199 return INSTALL_ERROR;
200 }
201 if (pkg_pre_build_fingerprint.empty()) {
202 LOG(ERROR) << "Downgrade package must have a pre-build version set, not allowed.";
203 return INSTALL_ERROR;
204 }
205 }
206
207 return 0;
Alex Deymo4344d632016-08-03 21:03:53 -0700208}
209
Tao Bao00d57572017-05-02 15:48:54 -0700210int update_binary_command(const std::string& package, ZipArchiveHandle zip,
211 const std::string& binary_path, int /* retry_count */, int status_fd,
212 std::vector<std::string>* cmd) {
Tao Baobc4b1fe2017-04-17 16:46:05 -0700213 CHECK(cmd != nullptr);
214 int ret = check_newer_ab_build(zip);
215 if (ret != 0) {
216 return ret;
217 }
Alex Deymo4344d632016-08-03 21:03:53 -0700218
Tao Baobc4b1fe2017-04-17 16:46:05 -0700219 // For A/B updates we extract the payload properties to a buffer and obtain the RAW payload offset
220 // in the zip file.
221 static constexpr const char* AB_OTA_PAYLOAD_PROPERTIES = "payload_properties.txt";
222 ZipString property_name(AB_OTA_PAYLOAD_PROPERTIES);
223 ZipEntry properties_entry;
224 if (FindEntry(zip, property_name, &properties_entry) != 0) {
225 LOG(ERROR) << "Failed to find " << AB_OTA_PAYLOAD_PROPERTIES;
226 return INSTALL_CORRUPT;
227 }
228 uint32_t properties_entry_length = properties_entry.uncompressed_length;
229 std::vector<uint8_t> payload_properties(properties_entry_length);
230 int32_t err =
231 ExtractToMemory(zip, &properties_entry, payload_properties.data(), properties_entry_length);
232 if (err != 0) {
233 LOG(ERROR) << "Failed to extract " << AB_OTA_PAYLOAD_PROPERTIES << ": " << ErrorCodeString(err);
234 return INSTALL_CORRUPT;
235 }
Alex Deymo4344d632016-08-03 21:03:53 -0700236
Tao Baobc4b1fe2017-04-17 16:46:05 -0700237 static constexpr const char* AB_OTA_PAYLOAD = "payload.bin";
238 ZipString payload_name(AB_OTA_PAYLOAD);
239 ZipEntry payload_entry;
240 if (FindEntry(zip, payload_name, &payload_entry) != 0) {
241 LOG(ERROR) << "Failed to find " << AB_OTA_PAYLOAD;
242 return INSTALL_CORRUPT;
243 }
244 long payload_offset = payload_entry.offset;
245 *cmd = {
Tao Bao00d57572017-05-02 15:48:54 -0700246 binary_path,
247 "--payload=file://" + package,
Tao Baobc4b1fe2017-04-17 16:46:05 -0700248 android::base::StringPrintf("--offset=%ld", payload_offset),
249 "--headers=" + std::string(payload_properties.begin(), payload_properties.end()),
250 android::base::StringPrintf("--status_fd=%d", status_fd),
251 };
252 return 0;
Alex Deymo4344d632016-08-03 21:03:53 -0700253}
254
255#else // !AB_OTA_UPDATER
256
Tao Bao00d57572017-05-02 15:48:54 -0700257int update_binary_command(const std::string& package, ZipArchiveHandle zip,
258 const std::string& binary_path, int retry_count, int status_fd,
259 std::vector<std::string>* cmd) {
Tao Baobc4b1fe2017-04-17 16:46:05 -0700260 CHECK(cmd != nullptr);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700261
Tao Baobc4b1fe2017-04-17 16:46:05 -0700262 // On traditional updates we extract the update binary from the package.
263 static constexpr const char* UPDATE_BINARY_NAME = "META-INF/com/google/android/update-binary";
264 ZipString binary_name(UPDATE_BINARY_NAME);
265 ZipEntry binary_entry;
266 if (FindEntry(zip, binary_name, &binary_entry) != 0) {
267 LOG(ERROR) << "Failed to find update binary " << UPDATE_BINARY_NAME;
268 return INSTALL_CORRUPT;
269 }
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700270
Tao Bao00d57572017-05-02 15:48:54 -0700271 unlink(binary_path.c_str());
272 int fd = creat(binary_path.c_str(), 0755);
Tao Baobc4b1fe2017-04-17 16:46:05 -0700273 if (fd == -1) {
Tao Bao00d57572017-05-02 15:48:54 -0700274 PLOG(ERROR) << "Failed to create " << binary_path;
Tao Baobc4b1fe2017-04-17 16:46:05 -0700275 return INSTALL_ERROR;
276 }
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700277
Tao Baobc4b1fe2017-04-17 16:46:05 -0700278 int32_t error = ExtractEntryToFile(zip, &binary_entry, fd);
279 close(fd);
280 if (error != 0) {
281 LOG(ERROR) << "Failed to extract " << UPDATE_BINARY_NAME << ": " << ErrorCodeString(error);
282 return INSTALL_ERROR;
283 }
284
285 *cmd = {
Tao Bao00d57572017-05-02 15:48:54 -0700286 binary_path,
Tao Bao8be0f392017-05-04 00:29:31 +0000287 EXPAND(RECOVERY_API_VERSION), // defined in Android.mk
Tao Baobc4b1fe2017-04-17 16:46:05 -0700288 std::to_string(status_fd),
Tao Bao00d57572017-05-02 15:48:54 -0700289 package,
Tao Baobc4b1fe2017-04-17 16:46:05 -0700290 };
291 if (retry_count > 0) {
292 cmd->push_back("retry");
293 }
294 return 0;
Alex Deymo4344d632016-08-03 21:03:53 -0700295}
296#endif // !AB_OTA_UPDATER
297
Tianjie Xu37957102017-06-07 17:59:55 -0700298static void log_max_temperature(int* max_temperature, const std::atomic<bool>& logger_finished) {
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700299 CHECK(max_temperature != nullptr);
300 std::mutex mtx;
301 std::unique_lock<std::mutex> lck(mtx);
Tianjie Xu37957102017-06-07 17:59:55 -0700302 while (!logger_finished.load() &&
303 finish_log_temperature.wait_for(lck, 20s) == std::cv_status::timeout) {
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700304 *max_temperature = std::max(*max_temperature, GetMaxValueFromThermalZone());
305 }
306}
307
Alex Deymo4344d632016-08-03 21:03:53 -0700308// If the package contains an update binary, extract it and run it.
Tao Bao00d57572017-05-02 15:48:54 -0700309static int try_update_binary(const std::string& package, ZipArchiveHandle zip, bool* wipe_cache,
Tao Bao29ee69b2017-05-01 12:23:17 -0700310 std::vector<std::string>* log_buffer, int retry_count,
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700311 int* max_temperature) {
Tao Bao20c581e2016-12-28 20:55:51 -0800312 read_source_target_build(zip, log_buffer);
Alex Deymo4344d632016-08-03 21:03:53 -0700313
Tao Bao20c581e2016-12-28 20:55:51 -0800314 int pipefd[2];
315 pipe(pipefd);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700316
Tao Bao20c581e2016-12-28 20:55:51 -0800317 std::vector<std::string> args;
Tao Bao00d57572017-05-02 15:48:54 -0700318#ifdef AB_OTA_UPDATER
319 int ret = update_binary_command(package, zip, "/sbin/update_engine_sideload", retry_count,
320 pipefd[1], &args);
321#else
322 int ret = update_binary_command(package, zip, "/tmp/update-binary", retry_count, pipefd[1],
323 &args);
324#endif
Tao Bao20c581e2016-12-28 20:55:51 -0800325 if (ret) {
326 close(pipefd[0]);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700327 close(pipefd[1]);
Tao Bao20c581e2016-12-28 20:55:51 -0800328 return ret;
329 }
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700330
Tao Bao20c581e2016-12-28 20:55:51 -0800331 // When executing the update binary contained in the package, the
332 // arguments passed are:
333 //
334 // - the version number for this interface
335 //
336 // - an FD to which the program can write in order to update the
337 // progress bar. The program can write single-line commands:
338 //
339 // progress <frac> <secs>
340 // fill up the next <frac> part of of the progress bar
341 // over <secs> seconds. If <secs> is zero, use
342 // set_progress commands to manually control the
343 // progress of this segment of the bar.
344 //
345 // set_progress <frac>
346 // <frac> should be between 0.0 and 1.0; sets the
347 // progress bar within the segment defined by the most
348 // recent progress command.
349 //
350 // ui_print <string>
351 // display <string> on the screen.
352 //
353 // wipe_cache
354 // a wipe of cache will be performed following a successful
355 // installation.
356 //
357 // clear_display
358 // turn off the text display.
359 //
360 // enable_reboot
361 // packages can explicitly request that they want the user
362 // to be able to reboot during installation (useful for
363 // debugging packages that don't exit).
364 //
365 // retry_update
366 // updater encounters some issue during the update. It requests
367 // a reboot to retry the same package automatically.
368 //
369 // log <string>
370 // updater requests logging the string (e.g. cause of the
371 // failure).
372 //
373 // - the name of the package zip file.
374 //
375 // - an optional argument "retry" if this update is a retry of a failed
376 // update attempt.
377 //
Doug Zongkerd0181b82011-10-19 10:51:12 -0700378
Tao Bao20c581e2016-12-28 20:55:51 -0800379 // Convert the vector to a NULL-terminated char* array suitable for execv.
380 const char* chr_args[args.size() + 1];
381 chr_args[args.size()] = nullptr;
382 for (size_t i = 0; i < args.size(); i++) {
383 chr_args[i] = args[i].c_str();
384 }
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700385
Tao Bao20c581e2016-12-28 20:55:51 -0800386 pid_t pid = fork();
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700387
Tao Bao20c581e2016-12-28 20:55:51 -0800388 if (pid == -1) {
389 close(pipefd[0]);
390 close(pipefd[1]);
391 PLOG(ERROR) << "Failed to fork update binary";
392 return INSTALL_ERROR;
393 }
394
395 if (pid == 0) {
396 umask(022);
397 close(pipefd[0]);
398 execv(chr_args[0], const_cast<char**>(chr_args));
Tianjie Xuab1abae2017-01-30 16:48:52 -0800399 // Bug: 34769056
400 // We shouldn't use LOG/PLOG in the forked process, since they may cause
401 // the child process to hang. This deadlock results from an improperly
402 // copied mutex in the ui functions.
403 fprintf(stdout, "E:Can't run %s (%s)\n", chr_args[0], strerror(errno));
Tao Bao3da88012017-02-03 13:09:23 -0800404 _exit(EXIT_FAILURE);
Tao Bao20c581e2016-12-28 20:55:51 -0800405 }
406 close(pipefd[1]);
407
Tianjie Xu37957102017-06-07 17:59:55 -0700408 std::atomic<bool> logger_finished(false);
409 std::thread temperature_logger(log_max_temperature, max_temperature, std::ref(logger_finished));
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700410
Tao Bao20c581e2016-12-28 20:55:51 -0800411 *wipe_cache = false;
412 bool retry_update = false;
413
414 char buffer[1024];
415 FILE* from_child = fdopen(pipefd[0], "r");
416 while (fgets(buffer, sizeof(buffer), from_child) != nullptr) {
417 std::string line(buffer);
418 size_t space = line.find_first_of(" \n");
419 std::string command(line.substr(0, space));
420 if (command.empty()) continue;
421
422 // Get rid of the leading and trailing space and/or newline.
423 std::string args = space == std::string::npos ? "" : android::base::Trim(line.substr(space));
424
425 if (command == "progress") {
426 std::vector<std::string> tokens = android::base::Split(args, " ");
427 double fraction;
428 int seconds;
429 if (tokens.size() == 2 && android::base::ParseDouble(tokens[0].c_str(), &fraction) &&
430 android::base::ParseInt(tokens[1], &seconds)) {
431 ui->ShowProgress(fraction * (1 - VERIFICATION_PROGRESS_FRACTION), seconds);
432 } else {
433 LOG(ERROR) << "invalid \"progress\" parameters: " << line;
434 }
435 } else if (command == "set_progress") {
436 std::vector<std::string> tokens = android::base::Split(args, " ");
437 double fraction;
438 if (tokens.size() == 1 && android::base::ParseDouble(tokens[0].c_str(), &fraction)) {
439 ui->SetProgress(fraction);
440 } else {
441 LOG(ERROR) << "invalid \"set_progress\" parameters: " << line;
442 }
443 } else if (command == "ui_print") {
Tao Baof0136422017-01-21 13:03:25 -0800444 ui->PrintOnScreenOnly("%s\n", args.c_str());
Tao Bao20c581e2016-12-28 20:55:51 -0800445 fflush(stdout);
446 } else if (command == "wipe_cache") {
447 *wipe_cache = true;
448 } else if (command == "clear_display") {
449 ui->SetBackground(RecoveryUI::NONE);
450 } else if (command == "enable_reboot") {
451 // packages can explicitly request that they want the user
452 // to be able to reboot during installation (useful for
453 // debugging packages that don't exit).
454 ui->SetEnableReboot(true);
455 } else if (command == "retry_update") {
456 retry_update = true;
457 } else if (command == "log") {
458 if (!args.empty()) {
459 // Save the logging request from updater and write to last_install later.
Tao Bao29ee69b2017-05-01 12:23:17 -0700460 log_buffer->push_back(args);
Tao Bao20c581e2016-12-28 20:55:51 -0800461 } else {
462 LOG(ERROR) << "invalid \"log\" parameters: " << line;
463 }
464 } else {
465 LOG(ERROR) << "unknown command [" << command << "]";
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700466 }
Tao Bao20c581e2016-12-28 20:55:51 -0800467 }
468 fclose(from_child);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700469
Tao Bao20c581e2016-12-28 20:55:51 -0800470 int status;
471 waitpid(pid, &status, 0);
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700472
Tianjie Xu37957102017-06-07 17:59:55 -0700473 logger_finished.store(true);
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700474 finish_log_temperature.notify_one();
475 temperature_logger.join();
476
Tao Bao20c581e2016-12-28 20:55:51 -0800477 if (retry_update) {
478 return INSTALL_RETRY;
479 }
480 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tao Bao00d57572017-05-02 15:48:54 -0700481 LOG(ERROR) << "Error in " << package << " (Status " << WEXITSTATUS(status) << ")";
Tao Bao20c581e2016-12-28 20:55:51 -0800482 return INSTALL_ERROR;
483 }
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700484
Tao Bao20c581e2016-12-28 20:55:51 -0800485 return INSTALL_SUCCESS;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700486}
487
Tao Bao1d866052017-04-10 16:55:57 -0700488// Verifes the compatibility info in a Treble-compatible package. Returns true directly if the
489// entry doesn't exist. Note that the compatibility info is packed in a zip file inside the OTA
490// package.
491bool verify_package_compatibility(ZipArchiveHandle package_zip) {
492 LOG(INFO) << "Verifying package compatibility...";
493
494 static constexpr const char* COMPATIBILITY_ZIP_ENTRY = "compatibility.zip";
495 ZipString compatibility_entry_name(COMPATIBILITY_ZIP_ENTRY);
496 ZipEntry compatibility_entry;
497 if (FindEntry(package_zip, compatibility_entry_name, &compatibility_entry) != 0) {
498 LOG(INFO) << "Package doesn't contain " << COMPATIBILITY_ZIP_ENTRY << " entry";
499 return true;
500 }
501
502 std::string zip_content(compatibility_entry.uncompressed_length, '\0');
503 int32_t ret;
504 if ((ret = ExtractToMemory(package_zip, &compatibility_entry,
505 reinterpret_cast<uint8_t*>(&zip_content[0]),
506 compatibility_entry.uncompressed_length)) != 0) {
507 LOG(ERROR) << "Failed to read " << COMPATIBILITY_ZIP_ENTRY << ": " << ErrorCodeString(ret);
508 return false;
509 }
510
511 ZipArchiveHandle zip_handle;
512 ret = OpenArchiveFromMemory(static_cast<void*>(const_cast<char*>(zip_content.data())),
513 zip_content.size(), COMPATIBILITY_ZIP_ENTRY, &zip_handle);
514 if (ret != 0) {
515 LOG(ERROR) << "Failed to OpenArchiveFromMemory: " << ErrorCodeString(ret);
516 return false;
517 }
518
519 // Iterate all the entries inside COMPATIBILITY_ZIP_ENTRY and read the contents.
520 void* cookie;
521 ret = StartIteration(zip_handle, &cookie, nullptr, nullptr);
522 if (ret != 0) {
523 LOG(ERROR) << "Failed to start iterating zip entries: " << ErrorCodeString(ret);
524 CloseArchive(zip_handle);
525 return false;
526 }
527 std::unique_ptr<void, decltype(&EndIteration)> guard(cookie, EndIteration);
528
529 std::vector<std::string> compatibility_info;
530 ZipEntry info_entry;
531 ZipString info_name;
532 while (Next(cookie, &info_entry, &info_name) == 0) {
533 std::string content(info_entry.uncompressed_length, '\0');
534 int32_t ret = ExtractToMemory(zip_handle, &info_entry, reinterpret_cast<uint8_t*>(&content[0]),
535 info_entry.uncompressed_length);
536 if (ret != 0) {
537 LOG(ERROR) << "Failed to read " << info_name.name << ": " << ErrorCodeString(ret);
538 CloseArchive(zip_handle);
539 return false;
540 }
541 compatibility_info.emplace_back(std::move(content));
542 }
Tao Bao1d866052017-04-10 16:55:57 -0700543 CloseArchive(zip_handle);
544
Tao Bao919d2c92017-04-10 16:55:57 -0700545 // VintfObjectRecovery::CheckCompatibility returns zero on success.
546 std::string err;
547 int result = android::vintf::VintfObjectRecovery::CheckCompatibility(compatibility_info, &err);
548 if (result == 0) {
549 return true;
550 }
551
552 LOG(ERROR) << "Failed to verify package compatibility (result " << result << "): " << err;
553 return false;
Tao Bao1d866052017-04-10 16:55:57 -0700554}
555
Tao Bao29ee69b2017-05-01 12:23:17 -0700556static int really_install_package(const std::string& path, bool* wipe_cache, bool needs_mount,
557 std::vector<std::string>* log_buffer, int retry_count,
558 int* max_temperature) {
559 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
560 ui->Print("Finding update package...\n");
561 // Give verification half the progress bar...
562 ui->SetProgressType(RecoveryUI::DETERMINATE);
563 ui->ShowProgress(VERIFICATION_PROGRESS_FRACTION, VERIFICATION_PROGRESS_TIME);
564 LOG(INFO) << "Update location: " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800565
Tao Bao29ee69b2017-05-01 12:23:17 -0700566 // Map the update package into memory.
567 ui->Print("Opening update package...\n");
Doug Zongker99916f02014-01-13 14:16:58 -0800568
Tao Bao29ee69b2017-05-01 12:23:17 -0700569 if (needs_mount) {
570 if (path[0] == '@') {
571 ensure_path_mounted(path.substr(1).c_str());
572 } else {
573 ensure_path_mounted(path.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800574 }
Tao Bao29ee69b2017-05-01 12:23:17 -0700575 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800576
Tao Bao29ee69b2017-05-01 12:23:17 -0700577 MemMapping map;
Tao Baob656a152017-04-18 23:54:29 -0700578 if (!map.MapFile(path)) {
Tao Bao29ee69b2017-05-01 12:23:17 -0700579 LOG(ERROR) << "failed to map file";
580 return INSTALL_CORRUPT;
581 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800582
Tao Bao29ee69b2017-05-01 12:23:17 -0700583 // Verify package.
584 if (!verify_package(map.addr, map.length)) {
585 log_buffer->push_back(android::base::StringPrintf("error: %d", kZipVerificationFailure));
Tao Bao29ee69b2017-05-01 12:23:17 -0700586 return INSTALL_CORRUPT;
587 }
Doug Zongker60151a22009-08-12 18:30:03 -0700588
Tao Bao29ee69b2017-05-01 12:23:17 -0700589 // Try to open the package.
590 ZipArchiveHandle zip;
591 int err = OpenArchiveFromMemory(map.addr, map.length, path.c_str(), &zip);
592 if (err != 0) {
593 LOG(ERROR) << "Can't open " << path << " : " << ErrorCodeString(err);
594 log_buffer->push_back(android::base::StringPrintf("error: %d", kZipOpenFailure));
Doug Zongker99916f02014-01-13 14:16:58 -0800595
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700596 CloseArchive(zip);
Tao Bao29ee69b2017-05-01 12:23:17 -0700597 return INSTALL_CORRUPT;
598 }
599
600 // Additionally verify the compatibility of the package.
601 if (!verify_package_compatibility(zip)) {
602 log_buffer->push_back(android::base::StringPrintf("error: %d", kPackageCompatibilityFailure));
Tao Bao29ee69b2017-05-01 12:23:17 -0700603 CloseArchive(zip);
604 return INSTALL_CORRUPT;
605 }
606
607 // Verify and install the contents of the package.
608 ui->Print("Installing update...\n");
609 if (retry_count > 0) {
610 ui->Print("Retry attempt: %d\n", retry_count);
611 }
612 ui->SetEnableReboot(false);
613 int result = try_update_binary(path, zip, wipe_cache, log_buffer, retry_count, max_temperature);
614 ui->SetEnableReboot(true);
615 ui->Print("\n");
616
Tao Bao29ee69b2017-05-01 12:23:17 -0700617 CloseArchive(zip);
618 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800619}
Doug Zongker469243e2011-04-12 09:28:10 -0700620
Tao Bao29ee69b2017-05-01 12:23:17 -0700621int install_package(const std::string& path, bool* wipe_cache, const std::string& install_file,
622 bool needs_mount, int retry_count) {
623 CHECK(!path.empty());
624 CHECK(!install_file.empty());
625 CHECK(wipe_cache != nullptr);
626
Tao Baof8119fb2017-04-18 21:35:12 -0700627 modified_flash = true;
628 auto start = std::chrono::system_clock::now();
Tao Bao682c34b2015-04-07 17:16:35 -0700629
Tao Baof8119fb2017-04-18 21:35:12 -0700630 int start_temperature = GetMaxValueFromThermalZone();
631 int max_temperature = start_temperature;
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700632
Tao Baof8119fb2017-04-18 21:35:12 -0700633 int result;
634 std::vector<std::string> log_buffer;
635 if (setup_install_mounts() != 0) {
636 LOG(ERROR) << "failed to set up expected mounts for install; aborting";
637 result = INSTALL_ERROR;
638 } else {
Tao Bao29ee69b2017-05-01 12:23:17 -0700639 result = really_install_package(path, wipe_cache, needs_mount, &log_buffer, retry_count,
Tao Baof8119fb2017-04-18 21:35:12 -0700640 &max_temperature);
641 }
642
643 // Measure the time spent to apply OTA update in seconds.
644 std::chrono::duration<double> duration = std::chrono::system_clock::now() - start;
645 int time_total = static_cast<int>(duration.count());
646
647 bool has_cache = volume_for_path("/cache") != nullptr;
648 // Skip logging the uncrypt_status on devices without /cache.
649 if (has_cache) {
650 static constexpr const char* UNCRYPT_STATUS = "/cache/recovery/uncrypt_status";
651 if (ensure_path_mounted(UNCRYPT_STATUS) != 0) {
652 LOG(WARNING) << "Can't mount " << UNCRYPT_STATUS;
Doug Zongker239ac6a2013-08-20 16:03:25 -0700653 } else {
Tao Baof8119fb2017-04-18 21:35:12 -0700654 std::string uncrypt_status;
655 if (!android::base::ReadFileToString(UNCRYPT_STATUS, &uncrypt_status)) {
656 PLOG(WARNING) << "failed to read uncrypt status";
657 } else if (!android::base::StartsWith(uncrypt_status, "uncrypt_")) {
658 LOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status;
Tianjie Xua2867782017-03-24 14:13:56 -0700659 } else {
Tao Baof8119fb2017-04-18 21:35:12 -0700660 log_buffer.push_back(android::base::Trim(uncrypt_status));
Tianjie Xua2867782017-03-24 14:13:56 -0700661 }
Doug Zongker469243e2011-04-12 09:28:10 -0700662 }
Tao Baof8119fb2017-04-18 21:35:12 -0700663 }
Tao Baobadaac42016-09-26 11:39:14 -0700664
Tao Baof8119fb2017-04-18 21:35:12 -0700665 // The first two lines need to be the package name and install result.
666 std::vector<std::string> log_header = {
667 path,
668 result == INSTALL_SUCCESS ? "1" : "0",
669 "time_total: " + std::to_string(time_total),
670 "retry: " + std::to_string(retry_count),
671 };
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700672
Tao Baof8119fb2017-04-18 21:35:12 -0700673 int end_temperature = GetMaxValueFromThermalZone();
674 max_temperature = std::max(end_temperature, max_temperature);
675 if (start_temperature > 0) {
676 log_buffer.push_back("temperature_start: " + std::to_string(start_temperature));
677 }
678 if (end_temperature > 0) {
679 log_buffer.push_back("temperature_end: " + std::to_string(end_temperature));
680 }
681 if (max_temperature > 0) {
682 log_buffer.push_back("temperature_max: " + std::to_string(max_temperature));
683 }
Tianjie Xu3ee2b9d2017-03-27 14:12:26 -0700684
Tao Baof8119fb2017-04-18 21:35:12 -0700685 std::string log_content =
686 android::base::Join(log_header, "\n") + "\n" + android::base::Join(log_buffer, "\n") + "\n";
687 if (!android::base::WriteStringToFile(log_content, install_file)) {
688 PLOG(ERROR) << "failed to write " << install_file;
689 }
Tao Baobadaac42016-09-26 11:39:14 -0700690
Tao Baof8119fb2017-04-18 21:35:12 -0700691 // Write a copy into last_log.
692 LOG(INFO) << log_content;
Tao Baobadaac42016-09-26 11:39:14 -0700693
Tao Baof8119fb2017-04-18 21:35:12 -0700694 return result;
Doug Zongker469243e2011-04-12 09:28:10 -0700695}
Yabin Cui6faf0262016-06-09 14:09:39 -0700696
697bool verify_package(const unsigned char* package_data, size_t package_size) {
Tao Baof8119fb2017-04-18 21:35:12 -0700698 static constexpr const char* PUBLIC_KEYS_FILE = "/res/keys";
Tao Bao5e535012017-03-16 17:37:38 -0700699 std::vector<Certificate> loadedKeys;
700 if (!load_keys(PUBLIC_KEYS_FILE, loadedKeys)) {
701 LOG(ERROR) << "Failed to load keys";
702 return false;
703 }
704 LOG(INFO) << loadedKeys.size() << " key(s) loaded from " << PUBLIC_KEYS_FILE;
Yabin Cui6faf0262016-06-09 14:09:39 -0700705
Tao Bao5e535012017-03-16 17:37:38 -0700706 // Verify package.
707 ui->Print("Verifying update package...\n");
708 auto t0 = std::chrono::system_clock::now();
Tao Bao76fdb242017-03-20 17:09:13 -0700709 int err = verify_file(package_data, package_size, loadedKeys,
Tao Bao5e535012017-03-16 17:37:38 -0700710 std::bind(&RecoveryUI::SetProgress, ui, std::placeholders::_1));
711 std::chrono::duration<double> duration = std::chrono::system_clock::now() - t0;
712 ui->Print("Update package verification took %.1f s (result %d).\n", duration.count(), err);
713 if (err != VERIFY_SUCCESS) {
714 LOG(ERROR) << "Signature verification failed";
715 LOG(ERROR) << "error: " << kZipVerificationFailure;
716 return false;
717 }
718 return true;
Yabin Cui6faf0262016-06-09 14:09:39 -0700719}