blob: 518337fef615f317a2669e6f97ae782b4e1e446f [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"
40#include "mtdutils/mounts.h"
41#include "mtdutils/mtdutils.h"
42#include "roots.h"
Doug Zongker10e418d2011-10-28 10:33:05 -070043#include "ui.h"
Elliott Hughes8febafa2016-04-13 16:39:56 -070044#include "verifier.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080045
Doug Zongker74406302011-10-28 15:13:10 -070046extern RecoveryUI* ui;
47
Doug Zongkerb2ee9202009-06-04 10:24:53 -070048#define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary"
Doug Zongkerd1b19b92009-04-01 15:48:46 -070049#define PUBLIC_KEYS_FILE "/res/keys"
Tianjie Xub0ddae52016-06-08 14:30:04 -070050static constexpr const char* METADATA_PATH = "META-INF/com/android/metadata";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051
Doug Zongker74406302011-10-28 15:13:10 -070052// Default allocation of progress bar segments to operations
53static const int VERIFICATION_PROGRESS_TIME = 60;
54static const float VERIFICATION_PROGRESS_FRACTION = 0.25;
55static const float DEFAULT_FILES_PROGRESS_FRACTION = 0.4;
56static const float DEFAULT_IMAGE_PROGRESS_FRACTION = 0.1;
57
Tianjie Xub0ddae52016-06-08 14:30:04 -070058// This function parses and returns the build.version.incremental
59static int parse_build_number(std::string str) {
60 size_t pos = str.find("=");
61 if (pos != std::string::npos) {
62 std::string num_string = android::base::Trim(str.substr(pos+1));
63 int build_number;
64 if (android::base::ParseInt(num_string.c_str(), &build_number, 0)) {
65 return build_number;
66 }
67 }
68
69 LOGE("Failed to parse build number in %s.\n", str.c_str());
70 return -1;
71}
72
Yabin Cui6faf0262016-06-09 14:09:39 -070073bool read_metadata_from_package(ZipArchive* zip, std::string* meta_data) {
Tianjie Xub0ddae52016-06-08 14:30:04 -070074 const ZipEntry* meta_entry = mzFindZipEntry(zip, METADATA_PATH);
75 if (meta_entry == nullptr) {
76 LOGE("Failed to find %s in update package.\n", METADATA_PATH);
Yabin Cui6faf0262016-06-09 14:09:39 -070077 return false;
Tianjie Xub0ddae52016-06-08 14:30:04 -070078 }
79
Yabin Cui6faf0262016-06-09 14:09:39 -070080 meta_data->resize(meta_entry->uncompLen, '\0');
81 if (!mzReadZipEntry(zip, meta_entry, &(*meta_data)[0], meta_entry->uncompLen)) {
Tianjie Xub0ddae52016-06-08 14:30:04 -070082 LOGE("Failed to read metadata in update package.\n");
Yabin Cui6faf0262016-06-09 14:09:39 -070083 return false;
84 }
85 return true;
86}
87
88// Read the build.version.incremental of src/tgt from the metadata and log it to last_install.
89static void read_source_target_build(ZipArchive* zip, std::vector<std::string>& log_buffer) {
90 std::string meta_data;
91 if (!read_metadata_from_package(zip, &meta_data)) {
Tianjie Xub0ddae52016-06-08 14:30:04 -070092 return;
93 }
Tianjie Xub0ddae52016-06-08 14:30:04 -070094 // Examples of the pre-build and post-build strings in metadata:
95 // pre-build-incremental=2943039
96 // post-build-incremental=2951741
97 std::vector<std::string> lines = android::base::Split(meta_data, "\n");
98 for (const std::string& line : lines) {
99 std::string str = android::base::Trim(line);
100 if (android::base::StartsWith(str, "pre-build-incremental")){
101 int source_build = parse_build_number(str);
102 if (source_build != -1) {
103 log_buffer.push_back(android::base::StringPrintf("source_build: %d",
104 source_build));
105 }
106 } else if (android::base::StartsWith(str, "post-build-incremental")) {
107 int target_build = parse_build_number(str);
108 if (target_build != -1) {
109 log_buffer.push_back(android::base::StringPrintf("target_build: %d",
110 target_build));
111 }
112 }
113 }
114}
115
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700116// If the package contains an update binary, extract it and run it.
117static int
Tianjie Xudd874b12016-05-13 12:13:15 -0700118try_update_binary(const char* path, ZipArchive* zip, bool* wipe_cache,
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700119 std::vector<std::string>& log_buffer, int retry_count)
Tianjie Xudd874b12016-05-13 12:13:15 -0700120{
Tianjie Xub0ddae52016-06-08 14:30:04 -0700121 read_source_target_build(zip, log_buffer);
122
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700123 const ZipEntry* binary_entry =
124 mzFindZipEntry(zip, ASSUMED_UPDATE_BINARY_NAME);
125 if (binary_entry == NULL) {
Doug Zongker8e5e4da2010-09-14 18:06:55 -0700126 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700127 return INSTALL_CORRUPT;
128 }
129
Doug Zongker10e418d2011-10-28 10:33:05 -0700130 const char* binary = "/tmp/update_binary";
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700131 unlink(binary);
132 int fd = creat(binary, 0755);
133 if (fd < 0) {
Doug Zongker8e5e4da2010-09-14 18:06:55 -0700134 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700135 LOGE("Can't make %s\n", binary);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700136 return INSTALL_ERROR;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700137 }
138 bool ok = mzExtractZipEntryToFile(zip, binary_entry, fd);
139 close(fd);
Doug Zongker8e5e4da2010-09-14 18:06:55 -0700140 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700141
142 if (!ok) {
143 LOGE("Can't copy %s\n", ASSUMED_UPDATE_BINARY_NAME);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700144 return INSTALL_ERROR;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700145 }
146
147 int pipefd[2];
148 pipe(pipefd);
149
150 // When executing the update binary contained in the package, the
151 // arguments passed are:
152 //
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700153 // - the version number for this interface
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700154 //
155 // - an fd to which the program can write in order to update the
156 // progress bar. The program can write single-line commands:
157 //
158 // progress <frac> <secs>
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700159 // fill up the next <frac> part of of the progress bar
160 // over <secs> seconds. If <secs> is zero, use
161 // set_progress commands to manually control the
Tao Baob07e1f32015-04-10 16:14:52 -0700162 // progress of this segment of the bar.
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700163 //
164 // set_progress <frac>
165 // <frac> should be between 0.0 and 1.0; sets the
166 // progress bar within the segment defined by the most
167 // recent progress command.
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700168 //
169 // firmware <"hboot"|"radio"> <filename>
170 // arrange to install the contents of <filename> in the
Doug Zongkere08991e2010-02-02 13:09:52 -0800171 // given partition on reboot.
172 //
173 // (API v2: <filename> may start with "PACKAGE:" to
174 // indicate taking a file from the OTA package.)
175 //
176 // (API v3: this command no longer exists.)
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700177 //
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700178 // ui_print <string>
179 // display <string> on the screen.
180 //
Tao Baob07e1f32015-04-10 16:14:52 -0700181 // wipe_cache
182 // a wipe of cache will be performed following a successful
183 // installation.
184 //
185 // clear_display
186 // turn off the text display.
187 //
188 // enable_reboot
189 // packages can explicitly request that they want the user
190 // to be able to reboot during installation (useful for
191 // debugging packages that don't exit).
192 //
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700193 // - the name of the package zip file.
194 //
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700195 // - an optional argument "retry" if this update is a retry of a failed
196 // update attempt.
197 //
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700198
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700199 const char** args = (const char**)malloc(sizeof(char*) * 6);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700200 args[0] = binary;
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700201 args[1] = EXPAND(RECOVERY_API_VERSION); // defined in Android.mk
Doug Zongker10e418d2011-10-28 10:33:05 -0700202 char* temp = (char*)malloc(10);
203 sprintf(temp, "%d", pipefd[1]);
204 args[2] = temp;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700205 args[3] = (char*)path;
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700206 args[4] = retry_count > 0 ? "retry" : NULL;
207 args[5] = NULL;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700208
209 pid_t pid = fork();
210 if (pid == 0) {
Alistair Strachan027429a2013-07-17 10:41:49 -0700211 umask(022);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700212 close(pipefd[0]);
Doug Zongker10e418d2011-10-28 10:33:05 -0700213 execv(binary, (char* const*)args);
Doug Zongker56c51052010-07-01 09:18:44 -0700214 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno));
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700215 _exit(-1);
216 }
217 close(pipefd[1]);
218
Tao Bao145d8612015-03-25 15:51:15 -0700219 *wipe_cache = false;
Tianjie Xufa12b972016-02-05 18:25:58 -0800220 bool retry_update = false;
Doug Zongkerd0181b82011-10-19 10:51:12 -0700221
Doug Zongker64893cc2009-07-14 16:31:56 -0700222 char buffer[1024];
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700223 FILE* from_child = fdopen(pipefd[0], "r");
224 while (fgets(buffer, sizeof(buffer), from_child) != NULL) {
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700225 char* command = strtok(buffer, " \n");
226 if (command == NULL) {
227 continue;
228 } else if (strcmp(command, "progress") == 0) {
229 char* fraction_s = strtok(NULL, " \n");
230 char* seconds_s = strtok(NULL, " \n");
231
232 float fraction = strtof(fraction_s, NULL);
233 int seconds = strtol(seconds_s, NULL, 10);
234
Doug Zongker74406302011-10-28 15:13:10 -0700235 ui->ShowProgress(fraction * (1-VERIFICATION_PROGRESS_FRACTION), seconds);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700236 } else if (strcmp(command, "set_progress") == 0) {
237 char* fraction_s = strtok(NULL, " \n");
238 float fraction = strtof(fraction_s, NULL);
Doug Zongker74406302011-10-28 15:13:10 -0700239 ui->SetProgress(fraction);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700240 } else if (strcmp(command, "ui_print") == 0) {
241 char* str = strtok(NULL, "\n");
242 if (str) {
Tao Baob6918c72015-05-19 17:02:16 -0700243 ui->PrintOnScreenOnly("%s", str);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700244 } else {
Tao Baob6918c72015-05-19 17:02:16 -0700245 ui->PrintOnScreenOnly("\n");
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700246 }
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700247 fflush(stdout);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700248 } else if (strcmp(command, "wipe_cache") == 0) {
Tao Bao145d8612015-03-25 15:51:15 -0700249 *wipe_cache = true;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700250 } else if (strcmp(command, "clear_display") == 0) {
251 ui->SetBackground(RecoveryUI::NONE);
Doug Zongkerc704e062014-05-23 08:40:35 -0700252 } else if (strcmp(command, "enable_reboot") == 0) {
253 // packages can explicitly request that they want the user
254 // to be able to reboot during installation (useful for
255 // debugging packages that don't exit).
256 ui->SetEnableReboot(true);
Tianjie Xufa12b972016-02-05 18:25:58 -0800257 } else if (strcmp(command, "retry_update") == 0) {
258 retry_update = true;
Tianjie Xudd874b12016-05-13 12:13:15 -0700259 } else if (strcmp(command, "log") == 0) {
260 // Save the logging request from updater and write to
261 // last_install later.
262 log_buffer.push_back(std::string(strtok(NULL, "\n")));
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700263 } else {
264 LOGE("unknown command [%s]\n", command);
265 }
266 }
267 fclose(from_child);
268
269 int status;
270 waitpid(pid, &status, 0);
Tianjie Xufa12b972016-02-05 18:25:58 -0800271 if (retry_update) {
272 return INSTALL_RETRY;
273 }
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700274 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700275 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status));
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700276 return INSTALL_ERROR;
277 }
278
Doug Zongkere08991e2010-02-02 13:09:52 -0800279 return INSTALL_SUCCESS;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700280}
281
Doug Zongker469243e2011-04-12 09:28:10 -0700282static int
Tianjie Xudd874b12016-05-13 12:13:15 -0700283really_install_package(const char *path, bool* wipe_cache, bool needs_mount,
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700284 std::vector<std::string>& log_buffer, int retry_count)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800285{
Doug Zongker02ec6b82012-08-22 17:26:40 -0700286 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
Doug Zongker74406302011-10-28 15:13:10 -0700287 ui->Print("Finding update package...\n");
Doug Zongker239ac6a2013-08-20 16:03:25 -0700288 // Give verification half the progress bar...
289 ui->SetProgressType(RecoveryUI::DETERMINATE);
290 ui->ShowProgress(VERIFICATION_PROGRESS_FRACTION, VERIFICATION_PROGRESS_TIME);
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700291 LOGI("Update location: %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800292
Doug Zongker99916f02014-01-13 14:16:58 -0800293 // Map the update package into memory.
294 ui->Print("Opening update package...\n");
295
Doug Zongker075ad802014-06-26 15:35:51 -0700296 if (path && needs_mount) {
Doug Zongker99916f02014-01-13 14:16:58 -0800297 if (path[0] == '@') {
298 ensure_path_mounted(path+1);
299 } else {
300 ensure_path_mounted(path);
301 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800302 }
303
Doug Zongker99916f02014-01-13 14:16:58 -0800304 MemMapping map;
305 if (sysMapFile(path, &map) != 0) {
306 LOGE("failed to map file\n");
307 return INSTALL_CORRUPT;
308 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800309
Elliott Hughes8febafa2016-04-13 16:39:56 -0700310 // Verify package.
Yabin Cui6faf0262016-06-09 14:09:39 -0700311 if (!verify_package(map.addr, map.length)) {
Tianjie Xu16255832016-04-30 11:49:59 -0700312 log_buffer.push_back(android::base::StringPrintf("error: %d", kZipVerificationFailure));
Doug Zongker99916f02014-01-13 14:16:58 -0800313 sysReleaseMap(&map);
Doug Zongker60151a22009-08-12 18:30:03 -0700314 return INSTALL_CORRUPT;
315 }
316
Elliott Hughes8febafa2016-04-13 16:39:56 -0700317 // Try to open the package.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800318 ZipArchive zip;
Yabin Cui6faf0262016-06-09 14:09:39 -0700319 int err = mzOpenZipArchive(map.addr, map.length, &zip);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800320 if (err != 0) {
321 LOGE("Can't open %s\n(%s)\n", path, err != -1 ? strerror(err) : "bad");
Tianjie Xu16255832016-04-30 11:49:59 -0700322 log_buffer.push_back(android::base::StringPrintf("error: %d", kZipOpenFailure));
323
Doug Zongker99916f02014-01-13 14:16:58 -0800324 sysReleaseMap(&map);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800325 return INSTALL_CORRUPT;
326 }
327
Elliott Hughes8febafa2016-04-13 16:39:56 -0700328 // Verify and install the contents of the package.
Doug Zongker74406302011-10-28 15:13:10 -0700329 ui->Print("Installing update...\n");
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700330 if (retry_count > 0) {
331 ui->Print("Retry attempt: %d\n", retry_count);
332 }
Doug Zongkerc704e062014-05-23 08:40:35 -0700333 ui->SetEnableReboot(false);
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700334 int result = try_update_binary(path, &zip, wipe_cache, log_buffer, retry_count);
Doug Zongkerc704e062014-05-23 08:40:35 -0700335 ui->SetEnableReboot(true);
Doug Zongker075ad802014-06-26 15:35:51 -0700336 ui->Print("\n");
Doug Zongker99916f02014-01-13 14:16:58 -0800337
338 sysReleaseMap(&map);
339
340 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800341}
Doug Zongker469243e2011-04-12 09:28:10 -0700342
343int
Tao Bao145d8612015-03-25 15:51:15 -0700344install_package(const char* path, bool* wipe_cache, const char* install_file,
Tianjie Xu16255832016-04-30 11:49:59 -0700345 bool needs_mount, int retry_count)
Doug Zongker469243e2011-04-12 09:28:10 -0700346{
Tao Bao682c34b2015-04-07 17:16:35 -0700347 modified_flash = true;
Tianjie Xudd874b12016-05-13 12:13:15 -0700348 auto start = std::chrono::system_clock::now();
Tao Bao682c34b2015-04-07 17:16:35 -0700349
Doug Zongkerd0181b82011-10-19 10:51:12 -0700350 FILE* install_log = fopen_path(install_file, "w");
Doug Zongker469243e2011-04-12 09:28:10 -0700351 if (install_log) {
352 fputs(path, install_log);
353 fputc('\n', install_log);
354 } else {
355 LOGE("failed to open last_install: %s\n", strerror(errno));
356 }
Doug Zongker239ac6a2013-08-20 16:03:25 -0700357 int result;
Tianjie Xudd874b12016-05-13 12:13:15 -0700358 std::vector<std::string> log_buffer;
Doug Zongker239ac6a2013-08-20 16:03:25 -0700359 if (setup_install_mounts() != 0) {
360 LOGE("failed to set up expected mounts for install; aborting\n");
361 result = INSTALL_ERROR;
362 } else {
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700363 result = really_install_package(path, wipe_cache, needs_mount, log_buffer, retry_count);
Doug Zongker239ac6a2013-08-20 16:03:25 -0700364 }
Tianjie Xu16255832016-04-30 11:49:59 -0700365 if (install_log != nullptr) {
Doug Zongker469243e2011-04-12 09:28:10 -0700366 fputc(result == INSTALL_SUCCESS ? '1' : '0', install_log);
367 fputc('\n', install_log);
Tianjie Xudd874b12016-05-13 12:13:15 -0700368 std::chrono::duration<double> duration = std::chrono::system_clock::now() - start;
369 int count = static_cast<int>(duration.count());
370 // Report the time spent to apply OTA update in seconds.
371 fprintf(install_log, "time_total: %d\n", count);
Tianjie Xu16255832016-04-30 11:49:59 -0700372 fprintf(install_log, "retry: %d\n", retry_count);
Tianjie Xudd874b12016-05-13 12:13:15 -0700373
374 for (const auto& s : log_buffer) {
375 fprintf(install_log, "%s\n", s.c_str());
376 }
377
Doug Zongker469243e2011-04-12 09:28:10 -0700378 fclose(install_log);
Doug Zongker469243e2011-04-12 09:28:10 -0700379 }
380 return result;
381}
Yabin Cui6faf0262016-06-09 14:09:39 -0700382
383bool verify_package(const unsigned char* package_data, size_t package_size) {
384 std::vector<Certificate> loadedKeys;
385 if (!load_keys(PUBLIC_KEYS_FILE, loadedKeys)) {
386 LOGE("Failed to load keys\n");
387 return false;
388 }
389 LOGI("%zu key(s) loaded from %s\n", loadedKeys.size(), PUBLIC_KEYS_FILE);
390
391 // Verify package.
392 ui->Print("Verifying update package...\n");
393 auto t0 = std::chrono::system_clock::now();
394 int err = verify_file(const_cast<unsigned char*>(package_data), package_size, loadedKeys);
395 std::chrono::duration<double> duration = std::chrono::system_clock::now() - t0;
396 ui->Print("Update package verification took %.1f s (result %d).\n", duration.count(), err);
397 if (err != VERIFY_SUCCESS) {
398 LOGE("Signature verification failed\n");
399 LOGE("error: %d\n", kZipVerificationFailure);
400 return false;
401 }
402 return true;
403}