blob: fb7b6678b6ff6468f4d7db59bf9d6b6c8a7289b3 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
2 Copyright 2012 bigbiff/Dees_Troy TeamWin
3 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy32c8eb82012-09-11 15:28:06 -040018
19#include <ctype.h>
20#include <errno.h>
21#include <fcntl.h>
22#include <limits.h>
23#include <sys/stat.h>
24#include <sys/wait.h>
25#include <unistd.h>
26
27#include <string.h>
28#include <stdio.h>
29
Dees_Troy2673cec2013-04-02 20:22:16 +000030#include "twcommon.h"
Dees_Troyb9d88ac2012-09-14 14:34:19 -040031#include "mincrypt/rsa.h"
32#include "mincrypt/sha.h"
Ethan Yonker75bf0412014-11-21 13:54:27 -060033#include "mtdutils/mounts.h"
34#include "mtdutils/mtdutils.h"
Dees_Troy32c8eb82012-09-11 15:28:06 -040035#include "minzip/SysUtil.h"
36#include "minzip/Zip.h"
Ethan Yonker75bf0412014-11-21 13:54:27 -060037#include "verifier.h"
Dees_Troy32c8eb82012-09-11 15:28:06 -040038#include "variables.h"
39#include "data.hpp"
40#include "partitions.hpp"
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -050041#include "twrpDigest.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040042#include "twrp-functions.hpp"
Dees_Troy2673cec2013-04-02 20:22:16 +000043extern "C" {
44 #include "gui/gui.h"
that7e303cf2014-03-06 07:57:43 +010045 #include "legacy_property_service.h"
46}
47
48static const char* properties_path = "/dev/__properties__";
49static const char* properties_path_renamed = "/dev/__properties_kk__";
Matt Mowercdd3b332014-03-27 14:38:48 -050050static bool legacy_props_env_initd = false;
51static bool legacy_props_path_modified = false;
that7e303cf2014-03-06 07:57:43 +010052
Matt Mowercdd3b332014-03-27 14:38:48 -050053static int switch_to_legacy_properties()
that7e303cf2014-03-06 07:57:43 +010054{
Matt Mowercdd3b332014-03-27 14:38:48 -050055 if (!legacy_props_env_initd) {
56 if (legacy_properties_init() != 0)
57 return -1;
58
59 char tmp[32];
60 int propfd, propsz;
61 legacy_get_property_workspace(&propfd, &propsz);
62 sprintf(tmp, "%d,%d", dup(propfd), propsz);
63 setenv("ANDROID_PROPERTY_WORKSPACE", tmp, 1);
64 legacy_props_env_initd = true;
65 }
that7e303cf2014-03-06 07:57:43 +010066
67 if (TWFunc::Path_Exists(properties_path)) {
68 // hide real properties so that the updater uses the envvar to find the legacy format properties
Matt Mowercdd3b332014-03-27 14:38:48 -050069 if (rename(properties_path, properties_path_renamed) != 0) {
70 LOGERR("Renaming %s failed: %s\n", properties_path, strerror(errno));
71 return -1;
72 } else {
73 legacy_props_path_modified = true;
74 }
that7e303cf2014-03-06 07:57:43 +010075 }
Matt Mowercdd3b332014-03-27 14:38:48 -050076
77 return 0;
that7e303cf2014-03-06 07:57:43 +010078}
79
Matt Mowercdd3b332014-03-27 14:38:48 -050080static int switch_to_new_properties()
that7e303cf2014-03-06 07:57:43 +010081{
82 if (TWFunc::Path_Exists(properties_path_renamed)) {
Matt Mowercdd3b332014-03-27 14:38:48 -050083 if (rename(properties_path_renamed, properties_path) != 0) {
84 LOGERR("Renaming %s failed: %s\n", properties_path_renamed, strerror(errno));
85 return -1;
86 } else {
87 legacy_props_path_modified = false;
88 }
that7e303cf2014-03-06 07:57:43 +010089 }
Matt Mowercdd3b332014-03-27 14:38:48 -050090
91 return 0;
Dees_Troy2673cec2013-04-02 20:22:16 +000092}
Dees_Troy32c8eb82012-09-11 15:28:06 -040093
Dees_Troy2673cec2013-04-02 20:22:16 +000094static int Run_Update_Binary(const char *path, ZipArchive *Zip, int* wipe_cache) {
95 const ZipEntry* binary_location = mzFindZipEntry(Zip, ASSUMED_UPDATE_BINARY_NAME);
96 string Temp_Binary = "/tmp/updater";
97 int binary_fd, ret_val, pipe_fd[2], status, zip_verify;
98 char buffer[1024];
99 const char** args = (const char**)malloc(sizeof(char*) * 5);
100 FILE* child_data;
Dees_Troy32c8eb82012-09-11 15:28:06 -0400101
Dees_Troy2673cec2013-04-02 20:22:16 +0000102 if (binary_location == NULL) {
103 mzCloseZipArchive(Zip);
104 return INSTALL_CORRUPT;
105 }
Dees_Troy32c8eb82012-09-11 15:28:06 -0400106
Dees_Troy2673cec2013-04-02 20:22:16 +0000107 // Delete any existing updater
108 if (TWFunc::Path_Exists(Temp_Binary) && unlink(Temp_Binary.c_str()) != 0) {
109 LOGINFO("Unable to unlink '%s'\n", Temp_Binary.c_str());
110 }
Dees_Troy32c8eb82012-09-11 15:28:06 -0400111
Dees_Troy2673cec2013-04-02 20:22:16 +0000112 binary_fd = creat(Temp_Binary.c_str(), 0755);
113 if (binary_fd < 0) {
114 mzCloseZipArchive(Zip);
115 LOGERR("Could not create file for updater extract in '%s'\n", Temp_Binary.c_str());
116 return INSTALL_ERROR;
117 }
Dees_Troy32c8eb82012-09-11 15:28:06 -0400118
Dees_Troy2673cec2013-04-02 20:22:16 +0000119 ret_val = mzExtractZipEntryToFile(Zip, binary_location, binary_fd);
120 close(binary_fd);
Dees_Troy32c8eb82012-09-11 15:28:06 -0400121
Dees_Troy2673cec2013-04-02 20:22:16 +0000122 if (!ret_val) {
Dees_Troy512376c2013-09-03 19:39:41 +0000123 mzCloseZipArchive(Zip);
Dees_Troy2673cec2013-04-02 20:22:16 +0000124 LOGERR("Could not extract '%s'\n", ASSUMED_UPDATE_BINARY_NAME);
125 return INSTALL_ERROR;
126 }
Dees_Troy32c8eb82012-09-11 15:28:06 -0400127
Dees_Troy512376c2013-09-03 19:39:41 +0000128 // If exists, extract file_contexts from the zip file
129 const ZipEntry* selinx_contexts = mzFindZipEntry(Zip, "file_contexts");
130 if (selinx_contexts == NULL) {
131 mzCloseZipArchive(Zip);
132 LOGINFO("Zip does not contain SELinux file_contexts file in its root.\n");
133 } else {
134 string output_filename = "/file_contexts";
135 LOGINFO("Zip contains SELinux file_contexts file in its root. Extracting to %s\n", output_filename.c_str());
136 // Delete any file_contexts
137 if (TWFunc::Path_Exists(output_filename) && unlink(output_filename.c_str()) != 0) {
138 LOGINFO("Unable to unlink '%s'\n", output_filename.c_str());
139 }
140
141 int file_contexts_fd = creat(output_filename.c_str(), 0644);
142 if (file_contexts_fd < 0) {
143 mzCloseZipArchive(Zip);
144 LOGERR("Could not extract file_contexts to '%s'\n", output_filename.c_str());
145 return INSTALL_ERROR;
146 }
147
148 ret_val = mzExtractZipEntryToFile(Zip, selinx_contexts, file_contexts_fd);
149 close(file_contexts_fd);
150
151 if (!ret_val) {
152 mzCloseZipArchive(Zip);
153 LOGERR("Could not extract '%s'\n", ASSUMED_UPDATE_BINARY_NAME);
154 return INSTALL_ERROR;
155 }
156 }
157 mzCloseZipArchive(Zip);
158
Matt Mower6883d732014-03-20 17:28:13 -0500159#ifndef TW_NO_LEGACY_PROPS
Matt Mowercdd3b332014-03-27 14:38:48 -0500160 /* Set legacy properties */
161 if (switch_to_legacy_properties() != 0) {
162 LOGERR("Legacy property environment did not initialize successfully. Properties may not be detected.\n");
163 } else {
164 LOGINFO("Legacy property environment initialized.\n");
165 }
Matt Mower6883d732014-03-20 17:28:13 -0500166#endif
Matt Mowercdd3b332014-03-27 14:38:48 -0500167
Dees_Troy2673cec2013-04-02 20:22:16 +0000168 pipe(pipe_fd);
Dees_Troy32c8eb82012-09-11 15:28:06 -0400169
Dees_Troy2673cec2013-04-02 20:22:16 +0000170 args[0] = Temp_Binary.c_str();
171 args[1] = EXPAND(RECOVERY_API_VERSION);
172 char* temp = (char*)malloc(10);
173 sprintf(temp, "%d", pipe_fd[1]);
174 args[2] = temp;
175 args[3] = (char*)path;
176 args[4] = NULL;
Dees_Troy32c8eb82012-09-11 15:28:06 -0400177
Dees_Troy2673cec2013-04-02 20:22:16 +0000178 pid_t pid = fork();
179 if (pid == 0) {
180 close(pipe_fd[0]);
that7e303cf2014-03-06 07:57:43 +0100181 execve(Temp_Binary.c_str(), (char* const*)args, environ);
Dees_Troy2673cec2013-04-02 20:22:16 +0000182 printf("E:Can't execute '%s'\n", Temp_Binary.c_str());
183 _exit(-1);
184 }
185 close(pipe_fd[1]);
Dees_Troy32c8eb82012-09-11 15:28:06 -0400186
Dees_Troy2673cec2013-04-02 20:22:16 +0000187 *wipe_cache = 0;
Dees_Troy32c8eb82012-09-11 15:28:06 -0400188
Dees_Troy2673cec2013-04-02 20:22:16 +0000189 DataManager::GetValue(TW_SIGNED_ZIP_VERIFY_VAR, zip_verify);
190 child_data = fdopen(pipe_fd[0], "r");
191 while (fgets(buffer, sizeof(buffer), child_data) != NULL) {
192 char* command = strtok(buffer, " \n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200193 if (command == NULL) {
194 continue;
195 } else if (strcmp(command, "progress") == 0) {
196 char* fraction_char = strtok(NULL, " \n");
197 char* seconds_char = strtok(NULL, " \n");
Dees_Troy32c8eb82012-09-11 15:28:06 -0400198
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200199 float fraction_float = strtof(fraction_char, NULL);
200 int seconds_float = strtol(seconds_char, NULL, 10);
Dees_Troy32c8eb82012-09-11 15:28:06 -0400201
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200202 if (zip_verify)
Dees_Troy2673cec2013-04-02 20:22:16 +0000203 DataManager::ShowProgress(fraction_float * (1 - VERIFICATION_PROGRESS_FRACTION), seconds_float);
204 else
205 DataManager::ShowProgress(fraction_float, seconds_float);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200206 } else if (strcmp(command, "set_progress") == 0) {
207 char* fraction_char = strtok(NULL, " \n");
208 float fraction_float = strtof(fraction_char, NULL);
209 DataManager::SetProgress(fraction_float);
210 } else if (strcmp(command, "ui_print") == 0) {
211 char* display_value = strtok(NULL, "\n");
212 if (display_value) {
213 gui_print("%s", display_value);
214 } else {
215 gui_print("\n");
216 }
217 } else if (strcmp(command, "wipe_cache") == 0) {
218 *wipe_cache = 1;
219 } else if (strcmp(command, "clear_display") == 0) {
220 // Do nothing, not supported by TWRP
221 } else {
222 LOGERR("unknown command [%s]\n", command);
223 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000224 }
225 fclose(child_data);
Dees_Troy32c8eb82012-09-11 15:28:06 -0400226
Dees_Troy2673cec2013-04-02 20:22:16 +0000227 waitpid(pid, &status, 0);
Matt Mowercdd3b332014-03-27 14:38:48 -0500228
Matt Mower6883d732014-03-20 17:28:13 -0500229#ifndef TW_NO_LEGACY_PROPS
Matt Mowercdd3b332014-03-27 14:38:48 -0500230 /* Unset legacy properties */
231 if (legacy_props_path_modified) {
232 if (switch_to_new_properties() != 0) {
233 LOGERR("Legacy property environment did not disable successfully. Legacy properties may still be in use.\n");
234 } else {
235 LOGINFO("Legacy property environment disabled.\n");
236 }
237 }
Matt Mower6883d732014-03-20 17:28:13 -0500238#endif
Matt Mowercdd3b332014-03-27 14:38:48 -0500239
Dees_Troy2673cec2013-04-02 20:22:16 +0000240 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
241 LOGERR("Error executing updater binary in zip '%s'\n", path);
242 return INSTALL_ERROR;
243 }
Dees_Troy32c8eb82012-09-11 15:28:06 -0400244
Dees_Troy2673cec2013-04-02 20:22:16 +0000245 return INSTALL_SUCCESS;
Dees_Troy32c8eb82012-09-11 15:28:06 -0400246}
247
Dees_Troy32c8eb82012-09-11 15:28:06 -0400248extern "C" int TWinstall_zip(const char* path, int* wipe_cache) {
Ethan Yonkerd5801c52014-04-14 08:59:35 -0500249 int ret_val, zip_verify = 1, md5_return, key_count;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500250 twrpDigest md5sum;
251 string strpath = path;
Dees_Troy2673cec2013-04-02 20:22:16 +0000252 ZipArchive Zip;
Dees_Troy32c8eb82012-09-11 15:28:06 -0400253
Ethan Yonker24813422014-11-07 17:19:07 -0600254 if (strcmp(path, "error") == 0) {
255 LOGERR("Failed to get adb sideload file: '%s'\n", path);
Dees_Troy32c8eb82012-09-11 15:28:06 -0400256 return INSTALL_CORRUPT;
Matt Mowerd5c1a922014-04-15 12:50:58 -0500257 }
Dees_Troy32c8eb82012-09-11 15:28:06 -0400258
Ethan Yonker24813422014-11-07 17:19:07 -0600259 gui_print("Installing '%s'...\n", path);
260 if (strlen(path) < 9 || strncmp(path, "/sideload", 9) != 0) {
261 gui_print("Checking for MD5 file...\n");
262 md5sum.setfn(strpath);
263 md5_return = md5sum.verify_md5digest();
264 if (md5_return == -2) { // md5 did not match
265 LOGERR("Aborting zip install\n");
266 return INSTALL_CORRUPT;
267 }
268 }
269
Ethan Yonkerd5801c52014-04-14 08:59:35 -0500270#ifndef TW_OEM_BUILD
Dees_Troy32c8eb82012-09-11 15:28:06 -0400271 DataManager::GetValue(TW_SIGNED_ZIP_VERIFY_VAR, zip_verify);
Ethan Yonkerd5801c52014-04-14 08:59:35 -0500272#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000273 DataManager::SetProgress(0);
Ethan Yonkerf96087e2014-11-07 10:38:51 -0600274
275 MemMapping map;
276 if (sysMapFile(path, &map) != 0) {
277 LOGERR("Failed to sysMapFile '%s'\n", path);
278 return -1;
279 }
280
Dees_Troy32c8eb82012-09-11 15:28:06 -0400281 if (zip_verify) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000282 gui_print("Verifying zip signature...\n");
Ethan Yonkerf96087e2014-11-07 10:38:51 -0600283 ret_val = verify_file(map.addr, map.length);
Dees_Troy2673cec2013-04-02 20:22:16 +0000284 if (ret_val != VERIFY_SUCCESS) {
285 LOGERR("Zip signature verification failed: %i\n", ret_val);
Ethan Yonkerf9796a42014-11-08 07:28:03 -0600286 sysReleaseMap(&map);
Dees_Troy32c8eb82012-09-11 15:28:06 -0400287 return -1;
Ethan Yonker738be7a2014-12-10 11:40:43 -0600288 } else {
289 gui_print("Zip signature verified successfully.\n");
Dees_Troy32c8eb82012-09-11 15:28:06 -0400290 }
291 }
Ethan Yonkerf96087e2014-11-07 10:38:51 -0600292 ret_val = mzOpenZipArchive(map.addr, map.length, &Zip);
Dees_Troy2673cec2013-04-02 20:22:16 +0000293 if (ret_val != 0) {
294 LOGERR("Zip file is corrupt!\n", path);
Ethan Yonkerf9796a42014-11-08 07:28:03 -0600295 sysReleaseMap(&map);
Dees_Troy2673cec2013-04-02 20:22:16 +0000296 return INSTALL_CORRUPT;
297 }
Ethan Yonkerf9796a42014-11-08 07:28:03 -0600298 ret_val = Run_Update_Binary(path, &Zip, wipe_cache);
299 sysReleaseMap(&map);
300 return ret_val;
Dees_Troy32c8eb82012-09-11 15:28:06 -0400301}