blob: 9db5640a0670587807cd450bbcacd5fb90175d53 [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>
21#include <sys/stat.h>
Doug Zongkerb2ee9202009-06-04 10:24:53 -070022#include <sys/wait.h>
23#include <unistd.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080024
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include "common.h"
26#include "install.h"
27#include "mincrypt/rsa.h"
28#include "minui/minui.h"
29#include "minzip/SysUtil.h"
30#include "minzip/Zip.h"
31#include "mtdutils/mounts.h"
32#include "mtdutils/mtdutils.h"
33#include "roots.h"
34#include "verifier.h"
Doug Zongker10e418d2011-10-28 10:33:05 -070035#include "ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080036
Doug Zongker74406302011-10-28 15:13:10 -070037extern RecoveryUI* ui;
38
Doug Zongkerb2ee9202009-06-04 10:24:53 -070039#define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary"
Doug Zongkerd1b19b92009-04-01 15:48:46 -070040#define PUBLIC_KEYS_FILE "/res/keys"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080041
Doug Zongker74406302011-10-28 15:13:10 -070042// Default allocation of progress bar segments to operations
43static const int VERIFICATION_PROGRESS_TIME = 60;
44static const float VERIFICATION_PROGRESS_FRACTION = 0.25;
45static const float DEFAULT_FILES_PROGRESS_FRACTION = 0.4;
46static const float DEFAULT_IMAGE_PROGRESS_FRACTION = 0.1;
47
Doug Zongkerb2ee9202009-06-04 10:24:53 -070048// If the package contains an update binary, extract it and run it.
49static int
Doug Zongkerd0181b82011-10-19 10:51:12 -070050try_update_binary(const char *path, ZipArchive *zip, int* wipe_cache) {
Doug Zongkerb2ee9202009-06-04 10:24:53 -070051 const ZipEntry* binary_entry =
52 mzFindZipEntry(zip, ASSUMED_UPDATE_BINARY_NAME);
53 if (binary_entry == NULL) {
Doug Zongker8e5e4da2010-09-14 18:06:55 -070054 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -070055 return INSTALL_CORRUPT;
56 }
57
Doug Zongker10e418d2011-10-28 10:33:05 -070058 const char* binary = "/tmp/update_binary";
Doug Zongkerb2ee9202009-06-04 10:24:53 -070059 unlink(binary);
60 int fd = creat(binary, 0755);
61 if (fd < 0) {
Doug Zongker8e5e4da2010-09-14 18:06:55 -070062 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -070063 LOGE("Can't make %s\n", binary);
Doug Zongkerd0181b82011-10-19 10:51:12 -070064 return INSTALL_ERROR;
Doug Zongkerb2ee9202009-06-04 10:24:53 -070065 }
66 bool ok = mzExtractZipEntryToFile(zip, binary_entry, fd);
67 close(fd);
Doug Zongker8e5e4da2010-09-14 18:06:55 -070068 mzCloseZipArchive(zip);
Doug Zongkerb2ee9202009-06-04 10:24:53 -070069
70 if (!ok) {
71 LOGE("Can't copy %s\n", ASSUMED_UPDATE_BINARY_NAME);
Doug Zongkerd0181b82011-10-19 10:51:12 -070072 return INSTALL_ERROR;
Doug Zongkerb2ee9202009-06-04 10:24:53 -070073 }
74
75 int pipefd[2];
76 pipe(pipefd);
77
78 // When executing the update binary contained in the package, the
79 // arguments passed are:
80 //
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070081 // - the version number for this interface
Doug Zongkerb2ee9202009-06-04 10:24:53 -070082 //
83 // - an fd to which the program can write in order to update the
84 // progress bar. The program can write single-line commands:
85 //
86 // progress <frac> <secs>
Doug Zongkerfbf3c102009-06-24 09:36:20 -070087 // fill up the next <frac> part of of the progress bar
88 // over <secs> seconds. If <secs> is zero, use
89 // set_progress commands to manually control the
90 // progress of this segment of the bar
91 //
92 // set_progress <frac>
93 // <frac> should be between 0.0 and 1.0; sets the
94 // progress bar within the segment defined by the most
95 // recent progress command.
Doug Zongkerb2ee9202009-06-04 10:24:53 -070096 //
97 // firmware <"hboot"|"radio"> <filename>
98 // arrange to install the contents of <filename> in the
Doug Zongkere08991e2010-02-02 13:09:52 -080099 // given partition on reboot.
100 //
101 // (API v2: <filename> may start with "PACKAGE:" to
102 // indicate taking a file from the OTA package.)
103 //
104 // (API v3: this command no longer exists.)
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700105 //
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700106 // ui_print <string>
107 // display <string> on the screen.
108 //
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700109 // - the name of the package zip file.
110 //
111
Doug Zongker10e418d2011-10-28 10:33:05 -0700112 const char** args = (const char**)malloc(sizeof(char*) * 5);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700113 args[0] = binary;
Doug Zongkerfb2e3af2009-06-17 17:29:40 -0700114 args[1] = EXPAND(RECOVERY_API_VERSION); // defined in Android.mk
Doug Zongker10e418d2011-10-28 10:33:05 -0700115 char* temp = (char*)malloc(10);
116 sprintf(temp, "%d", pipefd[1]);
117 args[2] = temp;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700118 args[3] = (char*)path;
119 args[4] = NULL;
120
121 pid_t pid = fork();
122 if (pid == 0) {
Alistair Strachan027429a2013-07-17 10:41:49 -0700123 umask(022);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700124 close(pipefd[0]);
Doug Zongker10e418d2011-10-28 10:33:05 -0700125 execv(binary, (char* const*)args);
Doug Zongker56c51052010-07-01 09:18:44 -0700126 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno));
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700127 _exit(-1);
128 }
129 close(pipefd[1]);
130
Doug Zongkerd0181b82011-10-19 10:51:12 -0700131 *wipe_cache = 0;
132
Doug Zongker64893cc2009-07-14 16:31:56 -0700133 char buffer[1024];
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700134 FILE* from_child = fdopen(pipefd[0], "r");
135 while (fgets(buffer, sizeof(buffer), from_child) != NULL) {
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700136 char* command = strtok(buffer, " \n");
137 if (command == NULL) {
138 continue;
139 } else if (strcmp(command, "progress") == 0) {
140 char* fraction_s = strtok(NULL, " \n");
141 char* seconds_s = strtok(NULL, " \n");
142
143 float fraction = strtof(fraction_s, NULL);
144 int seconds = strtol(seconds_s, NULL, 10);
145
Doug Zongker74406302011-10-28 15:13:10 -0700146 ui->ShowProgress(fraction * (1-VERIFICATION_PROGRESS_FRACTION), seconds);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700147 } else if (strcmp(command, "set_progress") == 0) {
148 char* fraction_s = strtok(NULL, " \n");
149 float fraction = strtof(fraction_s, NULL);
Doug Zongker74406302011-10-28 15:13:10 -0700150 ui->SetProgress(fraction);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700151 } else if (strcmp(command, "ui_print") == 0) {
152 char* str = strtok(NULL, "\n");
153 if (str) {
Doug Zongker74406302011-10-28 15:13:10 -0700154 ui->Print("%s", str);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700155 } else {
Doug Zongker74406302011-10-28 15:13:10 -0700156 ui->Print("\n");
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700157 }
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700158 fflush(stdout);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700159 } else if (strcmp(command, "wipe_cache") == 0) {
160 *wipe_cache = 1;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700161 } else if (strcmp(command, "clear_display") == 0) {
162 ui->SetBackground(RecoveryUI::NONE);
Doug Zongkerc704e062014-05-23 08:40:35 -0700163 } else if (strcmp(command, "enable_reboot") == 0) {
164 // packages can explicitly request that they want the user
165 // to be able to reboot during installation (useful for
166 // debugging packages that don't exit).
167 ui->SetEnableReboot(true);
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700168 } else {
169 LOGE("unknown command [%s]\n", command);
170 }
171 }
172 fclose(from_child);
173
174 int status;
175 waitpid(pid, &status, 0);
176 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700177 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status));
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700178 return INSTALL_ERROR;
179 }
180
Doug Zongkere08991e2010-02-02 13:09:52 -0800181 return INSTALL_SUCCESS;
Doug Zongkerb2ee9202009-06-04 10:24:53 -0700182}
183
Doug Zongker469243e2011-04-12 09:28:10 -0700184static int
Doug Zongker075ad802014-06-26 15:35:51 -0700185really_install_package(const char *path, int* wipe_cache, bool needs_mount)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800186{
Doug Zongker02ec6b82012-08-22 17:26:40 -0700187 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
Doug Zongker74406302011-10-28 15:13:10 -0700188 ui->Print("Finding update package...\n");
Doug Zongker239ac6a2013-08-20 16:03:25 -0700189 // Give verification half the progress bar...
190 ui->SetProgressType(RecoveryUI::DETERMINATE);
191 ui->ShowProgress(VERIFICATION_PROGRESS_FRACTION, VERIFICATION_PROGRESS_TIME);
Doug Zongkercc8cd3f2010-09-20 12:16:13 -0700192 LOGI("Update location: %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800193
Doug Zongker99916f02014-01-13 14:16:58 -0800194 // Map the update package into memory.
195 ui->Print("Opening update package...\n");
196
Doug Zongker075ad802014-06-26 15:35:51 -0700197 if (path && needs_mount) {
Doug Zongker99916f02014-01-13 14:16:58 -0800198 if (path[0] == '@') {
199 ensure_path_mounted(path+1);
200 } else {
201 ensure_path_mounted(path);
202 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800203 }
204
Doug Zongker99916f02014-01-13 14:16:58 -0800205 MemMapping map;
206 if (sysMapFile(path, &map) != 0) {
207 LOGE("failed to map file\n");
208 return INSTALL_CORRUPT;
209 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800210
Doug Zongkerd1b19b92009-04-01 15:48:46 -0700211 int numKeys;
Doug Zongkerbac7fba2013-04-10 11:32:17 -0700212 Certificate* loadedKeys = load_keys(PUBLIC_KEYS_FILE, &numKeys);
Doug Zongkerd1b19b92009-04-01 15:48:46 -0700213 if (loadedKeys == NULL) {
214 LOGE("Failed to load keys\n");
215 return INSTALL_CORRUPT;
216 }
217 LOGI("%d key(s) loaded from %s\n", numKeys, PUBLIC_KEYS_FILE);
218
Doug Zongker74406302011-10-28 15:13:10 -0700219 ui->Print("Verifying update package...\n");
Doug Zongker60151a22009-08-12 18:30:03 -0700220
221 int err;
Doug Zongker99916f02014-01-13 14:16:58 -0800222 err = verify_file(map.addr, map.length, loadedKeys, numKeys);
Doug Zongker60151a22009-08-12 18:30:03 -0700223 free(loadedKeys);
224 LOGI("verify_file returned %d\n", err);
225 if (err != VERIFY_SUCCESS) {
226 LOGE("signature verification failed\n");
Doug Zongker99916f02014-01-13 14:16:58 -0800227 sysReleaseMap(&map);
Doug Zongker60151a22009-08-12 18:30:03 -0700228 return INSTALL_CORRUPT;
229 }
230
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800231 /* Try to open the package.
232 */
233 ZipArchive zip;
Doug Zongker99916f02014-01-13 14:16:58 -0800234 err = mzOpenZipArchive(map.addr, map.length, &zip);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800235 if (err != 0) {
236 LOGE("Can't open %s\n(%s)\n", path, err != -1 ? strerror(err) : "bad");
Doug Zongker99916f02014-01-13 14:16:58 -0800237 sysReleaseMap(&map);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800238 return INSTALL_CORRUPT;
239 }
240
241 /* Verify and install the contents of the package.
242 */
Doug Zongker74406302011-10-28 15:13:10 -0700243 ui->Print("Installing update...\n");
Doug Zongkerc704e062014-05-23 08:40:35 -0700244 ui->SetEnableReboot(false);
Doug Zongker99916f02014-01-13 14:16:58 -0800245 int result = try_update_binary(path, &zip, wipe_cache);
Doug Zongkerc704e062014-05-23 08:40:35 -0700246 ui->SetEnableReboot(true);
Doug Zongker075ad802014-06-26 15:35:51 -0700247 ui->Print("\n");
Doug Zongker99916f02014-01-13 14:16:58 -0800248
249 sysReleaseMap(&map);
250
251 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800252}
Doug Zongker469243e2011-04-12 09:28:10 -0700253
254int
Doug Zongker075ad802014-06-26 15:35:51 -0700255install_package(const char* path, int* wipe_cache, const char* install_file,
256 bool needs_mount)
Doug Zongker469243e2011-04-12 09:28:10 -0700257{
Doug Zongkerd0181b82011-10-19 10:51:12 -0700258 FILE* install_log = fopen_path(install_file, "w");
Doug Zongker469243e2011-04-12 09:28:10 -0700259 if (install_log) {
260 fputs(path, install_log);
261 fputc('\n', install_log);
262 } else {
263 LOGE("failed to open last_install: %s\n", strerror(errno));
264 }
Doug Zongker239ac6a2013-08-20 16:03:25 -0700265 int result;
266 if (setup_install_mounts() != 0) {
267 LOGE("failed to set up expected mounts for install; aborting\n");
268 result = INSTALL_ERROR;
269 } else {
Doug Zongker075ad802014-06-26 15:35:51 -0700270 result = really_install_package(path, wipe_cache, needs_mount);
Doug Zongker239ac6a2013-08-20 16:03:25 -0700271 }
Doug Zongker469243e2011-04-12 09:28:10 -0700272 if (install_log) {
273 fputc(result == INSTALL_SUCCESS ? '1' : '0', install_log);
274 fputc('\n', install_log);
275 fclose(install_log);
Doug Zongker469243e2011-04-12 09:28:10 -0700276 }
277 return result;
278}