blob: 015f8f6cefa3cb4d138e9d1cf770c109f91fad92 [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
Doug Zongkerb2ee9202009-06-04 10:24:53 -070017#include <ctype.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080018#include <errno.h>
19#include <fcntl.h>
20#include <limits.h>
Elliott Hughes26dbad22015-01-28 12:09:05 -080021#include <string.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080022#include <sys/stat.h>
Doug Zongkerb2ee9202009-06-04 10:24:53 -070023#include <sys/wait.h>
24#include <unistd.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025
Elliott Hughes8febafa2016-04-13 16:39:56 -070026#include <chrono>
Tianjie Xudd874b12016-05-13 12:13:15 -070027#include <string>
Tao Bao71e3e092016-02-02 14:02:27 -080028#include <vector>
29
Tianjie Xub0ddae52016-06-08 14:30:04 -070030#include <android-base/parseint.h>
Tianjie Xu16255832016-04-30 11:49:59 -070031#include <android-base/stringprintf.h>
32#include <android-base/strings.h>
33
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include "common.h"
Tianjie Xu16255832016-04-30 11:49:59 -070035#include "error_code.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080036#include "install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080037#include "minui/minui.h"
38#include "minzip/SysUtil.h"
39#include "minzip/Zip.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080040#include "roots.h"
Doug Zongker10e418d2011-10-28 10:33:05 -070041#include "ui.h"
Mattias Nissler452df6d2016-04-04 16:17:01 +020042#include "verifier.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080043
Doug Zongker74406302011-10-28 15:13:10 -070044extern RecoveryUI* ui;
45
Doug Zongkerb2ee9202009-06-04 10:24:53 -070046#define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary"
Doug Zongkerd1b19b92009-04-01 15:48:46 -070047#define PUBLIC_KEYS_FILE "/res/keys"
Tianjie Xub0ddae52016-06-08 14:30:04 -070048static constexpr const char* METADATA_PATH = "META-INF/com/android/metadata";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080049
Doug Zongker74406302011-10-28 15:13:10 -070050// Default allocation of progress bar segments to operations
51static const int VERIFICATION_PROGRESS_TIME = 60;
52static const float VERIFICATION_PROGRESS_FRACTION = 0.25;
53static const float DEFAULT_FILES_PROGRESS_FRACTION = 0.4;
54static const float DEFAULT_IMAGE_PROGRESS_FRACTION = 0.1;
55
Tianjie Xub0ddae52016-06-08 14:30:04 -070056// This function parses and returns the build.version.incremental
57static int parse_build_number(std::string str) {
58 size_t pos = str.find("=");
59 if (pos != std::string::npos) {
60 std::string num_string = android::base::Trim(str.substr(pos+1));
61 int build_number;
62 if (android::base::ParseInt(num_string.c_str(), &build_number, 0)) {
63 return build_number;
64 }
65 }
66
67 LOGE("Failed to parse build number in %s.\n", str.c_str());
68 return -1;
69}
70
Yabin Cui6faf0262016-06-09 14:09:39 -070071bool read_metadata_from_package(ZipArchive* zip, std::string* meta_data) {
Tianjie Xub0ddae52016-06-08 14:30:04 -070072 const ZipEntry* meta_entry = mzFindZipEntry(zip, METADATA_PATH);
73 if (meta_entry == nullptr) {
74 LOGE("Failed to find %s in update package.\n", METADATA_PATH);
Yabin Cui6faf0262016-06-09 14:09:39 -070075 return false;
Tianjie Xub0ddae52016-06-08 14:30:04 -070076 }
77
Yabin Cui6faf0262016-06-09 14:09:39 -070078 meta_data->resize(meta_entry->uncompLen, '\0');
79 if (!mzReadZipEntry(zip, meta_entry, &(*meta_data)[0], meta_entry->uncompLen)) {
Tianjie Xub0ddae52016-06-08 14:30:04 -070080 LOGE("Failed to read metadata in update package.\n");
Yabin Cui6faf0262016-06-09 14:09:39 -070081 return false;
82 }
83 return true;
84}
85
86// Read the build.version.incremental of src/tgt from the metadata and log it to last_install.
87static void read_source_target_build(ZipArchive* zip, std::vector<std::string>& log_buffer) {
88 std::string meta_data;
89 if (!read_metadata_from_package(zip, &meta_data)) {
Tianjie Xub0ddae52016-06-08 14:30:04 -070090 return;
91 }
Tianjie Xub0ddae52016-06-08 14:30:04 -070092 // Examples of the pre-build and post-build strings in metadata:
93 // pre-build-incremental=2943039
94 // post-build-incremental=2951741
95 std::vector<std::string> lines = android::base::Split(meta_data, "\n");
96 for (const std::string& line : lines) {
97 std::string str = android::base::Trim(line);
98 if (android::base::StartsWith(str, "pre-build-incremental")){
99 int source_build = parse_build_number(str);
100 if (source_build != -1) {
101 log_buffer.push_back(android::base::StringPrintf("source_build: %d",
102 source_build));
103 }
104 } else if (android::base::StartsWith(str, "post-build-incremental")) {
105 int target_build = parse_build_number(str);
106 if (target_build != -1) {
107 log_buffer.push_back(android::base::StringPrintf("target_build: %d",
108 target_build));
109 }
110 }
111 }
112}
113
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700114// If the package contains an update binary, extract it and run it.
115static int
Tianjie Xudd874b12016-05-13 12:13:15 -0700116try_update_binary(const char* path, ZipArchive* zip, bool* wipe_cache,
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700117 std::vector<std::string>& log_buffer, int retry_count)
Tianjie Xudd874b12016-05-13 12:13:15 -0700118{
Tianjie Xub0ddae52016-06-08 14:30:04 -0700119 read_source_target_build(zip, log_buffer);
120
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700121 const ZipEntry* binary_entry =
122 mzFindZipEntry(zip, ASSUMED_UPDATE_BINARY_NAME);
123 if (binary_entry == NULL) {
Doug Zongker8e5e4da2010-09-14 18:06:55 -0700124 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700125 return INSTALL_CORRUPT;
126 }
127
Doug Zongker10e418d2011-10-28 10:33:05 -0700128 const char* binary = "/tmp/update_binary";
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700129 unlink(binary);
130 int fd = creat(binary, 0755);
131 if (fd < 0) {
Doug Zongker8e5e4da2010-09-14 18:06:55 -0700132 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700133 LOGE("Can't make %s\n", binary);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700134 return INSTALL_ERROR;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700135 }
136 bool ok = mzExtractZipEntryToFile(zip, binary_entry, fd);
137 close(fd);
Doug Zongker8e5e4da2010-09-14 18:06:55 -0700138 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700139
140 if (!ok) {
141 LOGE("Can't copy %s\n", ASSUMED_UPDATE_BINARY_NAME);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700142 return INSTALL_ERROR;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700143 }
144
145 int pipefd[2];
146 pipe(pipefd);
147
148 // When executing the update binary contained in the package, the
149 // arguments passed are:
150 //
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700151 // - the version number for this interface
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700152 //
153 // - an fd to which the program can write in order to update the
154 // progress bar. The program can write single-line commands:
155 //
156 // progress <frac> <secs>
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700157 // fill up the next <frac> part of of the progress bar
158 // over <secs> seconds. If <secs> is zero, use
159 // set_progress commands to manually control the
Tao Baob07e1f32015-04-10 16:14:52 -0700160 // progress of this segment of the bar.
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700161 //
162 // set_progress <frac>
163 // <frac> should be between 0.0 and 1.0; sets the
164 // progress bar within the segment defined by the most
165 // recent progress command.
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700166 //
167 // firmware <"hboot"|"radio"> <filename>
168 // arrange to install the contents of <filename> in the
Doug Zongkere08991e2010-02-02 13:09:52 -0800169 // given partition on reboot.
170 //
171 // (API v2: <filename> may start with "PACKAGE:" to
172 // indicate taking a file from the OTA package.)
173 //
174 // (API v3: this command no longer exists.)
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700175 //
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700176 // ui_print <string>
177 // display <string> on the screen.
178 //
Tao Baob07e1f32015-04-10 16:14:52 -0700179 // wipe_cache
180 // a wipe of cache will be performed following a successful
181 // installation.
182 //
183 // clear_display
184 // turn off the text display.
185 //
186 // enable_reboot
187 // packages can explicitly request that they want the user
188 // to be able to reboot during installation (useful for
189 // debugging packages that don't exit).
190 //
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700191 // - the name of the package zip file.
192 //
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700193 // - an optional argument "retry" if this update is a retry of a failed
194 // update attempt.
195 //
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700196
Tianjie Xu64f46fb2016-06-03 15:44:52 -0700197 const char* args[6];
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700198 args[0] = binary;
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700199 args[1] = EXPAND(RECOVERY_API_VERSION); // defined in Android.mk
Yabin Cui4425c1d2016-02-10 13:47:32 -0800200 char temp[16];
201 snprintf(temp, sizeof(temp), "%d", pipefd[1]);
Doug Zongker10e418d2011-10-28 10:33:05 -0700202 args[2] = temp;
Yabin Cui4425c1d2016-02-10 13:47:32 -0800203 args[3] = path;
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700204 args[4] = retry_count > 0 ? "retry" : NULL;
205 args[5] = NULL;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700206
207 pid_t pid = fork();
208 if (pid == 0) {
Alistair Strachan027429a2013-07-17 10:41:49 -0700209 umask(022);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700210 close(pipefd[0]);
Yabin Cui4425c1d2016-02-10 13:47:32 -0800211 execv(binary, const_cast<char**>(args));
Doug Zongker56c51052010-07-01 09:18:44 -0700212 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno));
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700213 _exit(-1);
214 }
215 close(pipefd[1]);
216
Tao Bao145d8612015-03-25 15:51:15 -0700217 *wipe_cache = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -0800218 bool retry_update = false;
Doug Zongkerd0181b82011-10-19 10:51:12 -0700219
Doug Zongker64893cc2009-07-14 16:31:56 -0700220 char buffer[1024];
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700221 FILE* from_child = fdopen(pipefd[0], "r");
222 while (fgets(buffer, sizeof(buffer), from_child) != NULL) {
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700223 char* command = strtok(buffer, " \n");
224 if (command == NULL) {
225 continue;
226 } else if (strcmp(command, "progress") == 0) {
227 char* fraction_s = strtok(NULL, " \n");
228 char* seconds_s = strtok(NULL, " \n");
229
230 float fraction = strtof(fraction_s, NULL);
231 int seconds = strtol(seconds_s, NULL, 10);
232
Doug Zongker74406302011-10-28 15:13:10 -0700233 ui->ShowProgress(fraction * (1-VERIFICATION_PROGRESS_FRACTION), seconds);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700234 } else if (strcmp(command, "set_progress") == 0) {
235 char* fraction_s = strtok(NULL, " \n");
236 float fraction = strtof(fraction_s, NULL);
Doug Zongker74406302011-10-28 15:13:10 -0700237 ui->SetProgress(fraction);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700238 } else if (strcmp(command, "ui_print") == 0) {
239 char* str = strtok(NULL, "\n");
240 if (str) {
Tao Baob6918c72015-05-19 17:02:16 -0700241 ui->PrintOnScreenOnly("%s", str);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700242 } else {
Tao Baob6918c72015-05-19 17:02:16 -0700243 ui->PrintOnScreenOnly("\n");
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700244 }
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700245 fflush(stdout);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700246 } else if (strcmp(command, "wipe_cache") == 0) {
Tao Bao145d8612015-03-25 15:51:15 -0700247 *wipe_cache = true;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700248 } else if (strcmp(command, "clear_display") == 0) {
249 ui->SetBackground(RecoveryUI::NONE);
Doug Zongkerc704e062014-05-23 08:40:35 -0700250 } else if (strcmp(command, "enable_reboot") == 0) {
251 // packages can explicitly request that they want the user
252 // to be able to reboot during installation (useful for
253 // debugging packages that don't exit).
254 ui->SetEnableReboot(true);
Tianjie Xu3c62b672016-02-05 18:25:58 -0800255 } else if (strcmp(command, "retry_update") == 0) {
256 retry_update = true;
Tianjie Xudd874b12016-05-13 12:13:15 -0700257 } else if (strcmp(command, "log") == 0) {
258 // Save the logging request from updater and write to
259 // last_install later.
260 log_buffer.push_back(std::string(strtok(NULL, "\n")));
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700261 } else {
262 LOGE("unknown command [%s]\n", command);
263 }
264 }
265 fclose(from_child);
266
267 int status;
268 waitpid(pid, &status, 0);
Tianjie Xu3c62b672016-02-05 18:25:58 -0800269 if (retry_update) {
270 return INSTALL_RETRY;
271 }
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700272 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700273 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status));
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700274 return INSTALL_ERROR;
275 }
276
Doug Zongkere08991e2010-02-02 13:09:52 -0800277 return INSTALL_SUCCESS;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700278}
279
Doug Zongker469243e2011-04-12 09:28:10 -0700280static int
Tianjie Xudd874b12016-05-13 12:13:15 -0700281really_install_package(const char *path, bool* wipe_cache, bool needs_mount,
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700282 std::vector<std::string>& log_buffer, int retry_count)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800283{
Doug Zongker02ec6b82012-08-22 17:26:40 -0700284 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
Doug Zongker74406302011-10-28 15:13:10 -0700285 ui->Print("Finding update package...\n");
Doug Zongker239ac6a2013-08-20 16:03:25 -0700286 // Give verification half the progress bar...
287 ui->SetProgressType(RecoveryUI::DETERMINATE);
288 ui->ShowProgress(VERIFICATION_PROGRESS_FRACTION, VERIFICATION_PROGRESS_TIME);
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700289 LOGI("Update location: %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800290
Doug Zongker99916f02014-01-13 14:16:58 -0800291 // Map the update package into memory.
292 ui->Print("Opening update package...\n");
293
Doug Zongker075ad802014-06-26 15:35:51 -0700294 if (path && needs_mount) {
Doug Zongker99916f02014-01-13 14:16:58 -0800295 if (path[0] == '@') {
296 ensure_path_mounted(path+1);
297 } else {
298 ensure_path_mounted(path);
299 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800300 }
301
Doug Zongker99916f02014-01-13 14:16:58 -0800302 MemMapping map;
303 if (sysMapFile(path, &map) != 0) {
304 LOGE("failed to map file\n");
305 return INSTALL_CORRUPT;
306 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800307
Elliott Hughes8febafa2016-04-13 16:39:56 -0700308 // Verify package.
Yabin Cui6faf0262016-06-09 14:09:39 -0700309 if (!verify_package(map.addr, map.length)) {
Tianjie Xu16255832016-04-30 11:49:59 -0700310 log_buffer.push_back(android::base::StringPrintf("error: %d", kZipVerificationFailure));
Doug Zongker99916f02014-01-13 14:16:58 -0800311 sysReleaseMap(&map);
Doug Zongker60151a22009-08-12 18:30:03 -0700312 return INSTALL_CORRUPT;
313 }
314
Elliott Hughes8febafa2016-04-13 16:39:56 -0700315 // Try to open the package.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800316 ZipArchive zip;
Yabin Cui6faf0262016-06-09 14:09:39 -0700317 int err = mzOpenZipArchive(map.addr, map.length, &zip);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800318 if (err != 0) {
319 LOGE("Can't open %s\n(%s)\n", path, err != -1 ? strerror(err) : "bad");
Tianjie Xu16255832016-04-30 11:49:59 -0700320 log_buffer.push_back(android::base::StringPrintf("error: %d", kZipOpenFailure));
321
Doug Zongker99916f02014-01-13 14:16:58 -0800322 sysReleaseMap(&map);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800323 return INSTALL_CORRUPT;
324 }
325
Elliott Hughes8febafa2016-04-13 16:39:56 -0700326 // Verify and install the contents of the package.
Doug Zongker74406302011-10-28 15:13:10 -0700327 ui->Print("Installing update...\n");
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700328 if (retry_count > 0) {
329 ui->Print("Retry attempt: %d\n", retry_count);
330 }
Doug Zongkerc704e062014-05-23 08:40:35 -0700331 ui->SetEnableReboot(false);
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700332 int result = try_update_binary(path, &zip, wipe_cache, log_buffer, retry_count);
Doug Zongkerc704e062014-05-23 08:40:35 -0700333 ui->SetEnableReboot(true);
Doug Zongker075ad802014-06-26 15:35:51 -0700334 ui->Print("\n");
Doug Zongker99916f02014-01-13 14:16:58 -0800335
336 sysReleaseMap(&map);
337
338 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800339}
Doug Zongker469243e2011-04-12 09:28:10 -0700340
341int
Tao Bao145d8612015-03-25 15:51:15 -0700342install_package(const char* path, bool* wipe_cache, const char* install_file,
Tianjie Xu16255832016-04-30 11:49:59 -0700343 bool needs_mount, int retry_count)
Doug Zongker469243e2011-04-12 09:28:10 -0700344{
Tao Bao682c34b2015-04-07 17:16:35 -0700345 modified_flash = true;
Tianjie Xudd874b12016-05-13 12:13:15 -0700346 auto start = std::chrono::system_clock::now();
Tao Bao682c34b2015-04-07 17:16:35 -0700347
Doug Zongkerd0181b82011-10-19 10:51:12 -0700348 FILE* install_log = fopen_path(install_file, "w");
Doug Zongker469243e2011-04-12 09:28:10 -0700349 if (install_log) {
350 fputs(path, install_log);
351 fputc('\n', install_log);
352 } else {
353 LOGE("failed to open last_install: %s\n", strerror(errno));
354 }
Doug Zongker239ac6a2013-08-20 16:03:25 -0700355 int result;
Tianjie Xudd874b12016-05-13 12:13:15 -0700356 std::vector<std::string> log_buffer;
Doug Zongker239ac6a2013-08-20 16:03:25 -0700357 if (setup_install_mounts() != 0) {
358 LOGE("failed to set up expected mounts for install; aborting\n");
359 result = INSTALL_ERROR;
360 } else {
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700361 result = really_install_package(path, wipe_cache, needs_mount, log_buffer, retry_count);
Doug Zongker239ac6a2013-08-20 16:03:25 -0700362 }
Tianjie Xu16255832016-04-30 11:49:59 -0700363 if (install_log != nullptr) {
Doug Zongker469243e2011-04-12 09:28:10 -0700364 fputc(result == INSTALL_SUCCESS ? '1' : '0', install_log);
365 fputc('\n', install_log);
Tianjie Xudd874b12016-05-13 12:13:15 -0700366 std::chrono::duration<double> duration = std::chrono::system_clock::now() - start;
367 int count = static_cast<int>(duration.count());
368 // Report the time spent to apply OTA update in seconds.
369 fprintf(install_log, "time_total: %d\n", count);
Tianjie Xu16255832016-04-30 11:49:59 -0700370 fprintf(install_log, "retry: %d\n", retry_count);
Tianjie Xudd874b12016-05-13 12:13:15 -0700371
372 for (const auto& s : log_buffer) {
373 fprintf(install_log, "%s\n", s.c_str());
374 }
375
Doug Zongker469243e2011-04-12 09:28:10 -0700376 fclose(install_log);
Doug Zongker469243e2011-04-12 09:28:10 -0700377 }
378 return result;
379}
Yabin Cui6faf0262016-06-09 14:09:39 -0700380
381bool verify_package(const unsigned char* package_data, size_t package_size) {
382 std::vector<Certificate> loadedKeys;
383 if (!load_keys(PUBLIC_KEYS_FILE, loadedKeys)) {
384 LOGE("Failed to load keys\n");
385 return false;
386 }
387 LOGI("%zu key(s) loaded from %s\n", loadedKeys.size(), PUBLIC_KEYS_FILE);
388
389 // Verify package.
390 ui->Print("Verifying update package...\n");
391 auto t0 = std::chrono::system_clock::now();
392 int err = verify_file(const_cast<unsigned char*>(package_data), package_size, loadedKeys);
393 std::chrono::duration<double> duration = std::chrono::system_clock::now() - t0;
394 ui->Print("Update package verification took %.1f s (result %d).\n", duration.count(), err);
395 if (err != VERIFY_SUCCESS) {
396 LOGE("Signature verification failed\n");
397 LOGE("error: %d\n", kZipVerificationFailure);
398 return false;
399 }
400 return true;
401}