Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 1 | /* |
| 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_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 18 | |
| 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_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 30 | #include "twcommon.h" |
Dees_Troy | b9d88ac | 2012-09-14 14:34:19 -0400 | [diff] [blame] | 31 | #include "mincrypt/rsa.h" |
| 32 | #include "mincrypt/sha.h" |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 33 | #include "minui/minui.h" |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 34 | #include "mtdutils/mounts.h" |
| 35 | #include "mtdutils/mtdutils.h" |
| 36 | #if (ANDROID_VERSION >= 5) |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 37 | #include "minzip/SysUtil.h" |
| 38 | #include "minzip/Zip.h" |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 39 | #include "verifier.h" |
Dees Troy | b7ae098 | 2013-09-10 20:47:35 +0000 | [diff] [blame] | 40 | #else |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 41 | #include "verifierold.h" |
Dees Troy | b7ae098 | 2013-09-10 20:47:35 +0000 | [diff] [blame] | 42 | #include "minzipold/SysUtil.h" |
| 43 | #include "minzipold/Zip.h" |
| 44 | #endif |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 45 | #include "variables.h" |
| 46 | #include "data.hpp" |
| 47 | #include "partitions.hpp" |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 48 | #include "twrpDigest.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 49 | #include "twrp-functions.hpp" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 50 | extern "C" { |
| 51 | #include "gui/gui.h" |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 52 | #include "legacy_property_service.h" |
| 53 | } |
| 54 | |
| 55 | static const char* properties_path = "/dev/__properties__"; |
| 56 | static const char* properties_path_renamed = "/dev/__properties_kk__"; |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 57 | static bool legacy_props_env_initd = false; |
| 58 | static bool legacy_props_path_modified = false; |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 59 | |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 60 | static int switch_to_legacy_properties() |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 61 | { |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 62 | if (!legacy_props_env_initd) { |
| 63 | if (legacy_properties_init() != 0) |
| 64 | return -1; |
| 65 | |
| 66 | char tmp[32]; |
| 67 | int propfd, propsz; |
| 68 | legacy_get_property_workspace(&propfd, &propsz); |
| 69 | sprintf(tmp, "%d,%d", dup(propfd), propsz); |
| 70 | setenv("ANDROID_PROPERTY_WORKSPACE", tmp, 1); |
| 71 | legacy_props_env_initd = true; |
| 72 | } |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 73 | |
| 74 | if (TWFunc::Path_Exists(properties_path)) { |
| 75 | // hide real properties so that the updater uses the envvar to find the legacy format properties |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 76 | if (rename(properties_path, properties_path_renamed) != 0) { |
| 77 | LOGERR("Renaming %s failed: %s\n", properties_path, strerror(errno)); |
| 78 | return -1; |
| 79 | } else { |
| 80 | legacy_props_path_modified = true; |
| 81 | } |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 82 | } |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 83 | |
| 84 | return 0; |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 85 | } |
| 86 | |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 87 | static int switch_to_new_properties() |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 88 | { |
| 89 | if (TWFunc::Path_Exists(properties_path_renamed)) { |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 90 | if (rename(properties_path_renamed, properties_path) != 0) { |
| 91 | LOGERR("Renaming %s failed: %s\n", properties_path_renamed, strerror(errno)); |
| 92 | return -1; |
| 93 | } else { |
| 94 | legacy_props_path_modified = false; |
| 95 | } |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 96 | } |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 97 | |
| 98 | return 0; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 99 | } |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 100 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 101 | static int Run_Update_Binary(const char *path, ZipArchive *Zip, int* wipe_cache) { |
| 102 | const ZipEntry* binary_location = mzFindZipEntry(Zip, ASSUMED_UPDATE_BINARY_NAME); |
| 103 | string Temp_Binary = "/tmp/updater"; |
| 104 | int binary_fd, ret_val, pipe_fd[2], status, zip_verify; |
| 105 | char buffer[1024]; |
| 106 | const char** args = (const char**)malloc(sizeof(char*) * 5); |
| 107 | FILE* child_data; |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 108 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 109 | if (binary_location == NULL) { |
| 110 | mzCloseZipArchive(Zip); |
| 111 | return INSTALL_CORRUPT; |
| 112 | } |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 113 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 114 | // Delete any existing updater |
| 115 | if (TWFunc::Path_Exists(Temp_Binary) && unlink(Temp_Binary.c_str()) != 0) { |
| 116 | LOGINFO("Unable to unlink '%s'\n", Temp_Binary.c_str()); |
| 117 | } |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 118 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 119 | binary_fd = creat(Temp_Binary.c_str(), 0755); |
| 120 | if (binary_fd < 0) { |
| 121 | mzCloseZipArchive(Zip); |
| 122 | LOGERR("Could not create file for updater extract in '%s'\n", Temp_Binary.c_str()); |
| 123 | return INSTALL_ERROR; |
| 124 | } |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 125 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 126 | ret_val = mzExtractZipEntryToFile(Zip, binary_location, binary_fd); |
| 127 | close(binary_fd); |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 128 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 129 | if (!ret_val) { |
Dees_Troy | 512376c | 2013-09-03 19:39:41 +0000 | [diff] [blame] | 130 | mzCloseZipArchive(Zip); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 131 | LOGERR("Could not extract '%s'\n", ASSUMED_UPDATE_BINARY_NAME); |
| 132 | return INSTALL_ERROR; |
| 133 | } |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 134 | |
Dees_Troy | 512376c | 2013-09-03 19:39:41 +0000 | [diff] [blame] | 135 | // If exists, extract file_contexts from the zip file |
| 136 | const ZipEntry* selinx_contexts = mzFindZipEntry(Zip, "file_contexts"); |
| 137 | if (selinx_contexts == NULL) { |
| 138 | mzCloseZipArchive(Zip); |
| 139 | LOGINFO("Zip does not contain SELinux file_contexts file in its root.\n"); |
| 140 | } else { |
| 141 | string output_filename = "/file_contexts"; |
| 142 | LOGINFO("Zip contains SELinux file_contexts file in its root. Extracting to %s\n", output_filename.c_str()); |
| 143 | // Delete any file_contexts |
| 144 | if (TWFunc::Path_Exists(output_filename) && unlink(output_filename.c_str()) != 0) { |
| 145 | LOGINFO("Unable to unlink '%s'\n", output_filename.c_str()); |
| 146 | } |
| 147 | |
| 148 | int file_contexts_fd = creat(output_filename.c_str(), 0644); |
| 149 | if (file_contexts_fd < 0) { |
| 150 | mzCloseZipArchive(Zip); |
| 151 | LOGERR("Could not extract file_contexts to '%s'\n", output_filename.c_str()); |
| 152 | return INSTALL_ERROR; |
| 153 | } |
| 154 | |
| 155 | ret_val = mzExtractZipEntryToFile(Zip, selinx_contexts, file_contexts_fd); |
| 156 | close(file_contexts_fd); |
| 157 | |
| 158 | if (!ret_val) { |
| 159 | mzCloseZipArchive(Zip); |
| 160 | LOGERR("Could not extract '%s'\n", ASSUMED_UPDATE_BINARY_NAME); |
| 161 | return INSTALL_ERROR; |
| 162 | } |
| 163 | } |
| 164 | mzCloseZipArchive(Zip); |
| 165 | |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 166 | #ifndef TW_NO_LEGACY_PROPS |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 167 | /* Set legacy properties */ |
| 168 | if (switch_to_legacy_properties() != 0) { |
| 169 | LOGERR("Legacy property environment did not initialize successfully. Properties may not be detected.\n"); |
| 170 | } else { |
| 171 | LOGINFO("Legacy property environment initialized.\n"); |
| 172 | } |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 173 | #endif |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 174 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 175 | pipe(pipe_fd); |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 176 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 177 | args[0] = Temp_Binary.c_str(); |
| 178 | args[1] = EXPAND(RECOVERY_API_VERSION); |
| 179 | char* temp = (char*)malloc(10); |
| 180 | sprintf(temp, "%d", pipe_fd[1]); |
| 181 | args[2] = temp; |
| 182 | args[3] = (char*)path; |
| 183 | args[4] = NULL; |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 184 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 185 | pid_t pid = fork(); |
| 186 | if (pid == 0) { |
| 187 | close(pipe_fd[0]); |
that | 7e303cf | 2014-03-06 07:57:43 +0100 | [diff] [blame] | 188 | execve(Temp_Binary.c_str(), (char* const*)args, environ); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 189 | printf("E:Can't execute '%s'\n", Temp_Binary.c_str()); |
| 190 | _exit(-1); |
| 191 | } |
| 192 | close(pipe_fd[1]); |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 193 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 194 | *wipe_cache = 0; |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 195 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 196 | DataManager::GetValue(TW_SIGNED_ZIP_VERIFY_VAR, zip_verify); |
| 197 | child_data = fdopen(pipe_fd[0], "r"); |
| 198 | while (fgets(buffer, sizeof(buffer), child_data) != NULL) { |
| 199 | char* command = strtok(buffer, " \n"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 200 | if (command == NULL) { |
| 201 | continue; |
| 202 | } else if (strcmp(command, "progress") == 0) { |
| 203 | char* fraction_char = strtok(NULL, " \n"); |
| 204 | char* seconds_char = strtok(NULL, " \n"); |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 205 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 206 | float fraction_float = strtof(fraction_char, NULL); |
| 207 | int seconds_float = strtol(seconds_char, NULL, 10); |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 208 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 209 | if (zip_verify) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 210 | DataManager::ShowProgress(fraction_float * (1 - VERIFICATION_PROGRESS_FRACTION), seconds_float); |
| 211 | else |
| 212 | DataManager::ShowProgress(fraction_float, seconds_float); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 213 | } else if (strcmp(command, "set_progress") == 0) { |
| 214 | char* fraction_char = strtok(NULL, " \n"); |
| 215 | float fraction_float = strtof(fraction_char, NULL); |
| 216 | DataManager::SetProgress(fraction_float); |
| 217 | } else if (strcmp(command, "ui_print") == 0) { |
| 218 | char* display_value = strtok(NULL, "\n"); |
| 219 | if (display_value) { |
| 220 | gui_print("%s", display_value); |
| 221 | } else { |
| 222 | gui_print("\n"); |
| 223 | } |
| 224 | } else if (strcmp(command, "wipe_cache") == 0) { |
| 225 | *wipe_cache = 1; |
| 226 | } else if (strcmp(command, "clear_display") == 0) { |
| 227 | // Do nothing, not supported by TWRP |
| 228 | } else { |
| 229 | LOGERR("unknown command [%s]\n", command); |
| 230 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 231 | } |
| 232 | fclose(child_data); |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 233 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 234 | waitpid(pid, &status, 0); |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 235 | |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 236 | #ifndef TW_NO_LEGACY_PROPS |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 237 | /* Unset legacy properties */ |
| 238 | if (legacy_props_path_modified) { |
| 239 | if (switch_to_new_properties() != 0) { |
| 240 | LOGERR("Legacy property environment did not disable successfully. Legacy properties may still be in use.\n"); |
| 241 | } else { |
| 242 | LOGINFO("Legacy property environment disabled.\n"); |
| 243 | } |
| 244 | } |
Matt Mower | 6883d73 | 2014-03-20 17:28:13 -0500 | [diff] [blame] | 245 | #endif |
Matt Mower | cdd3b33 | 2014-03-27 14:38:48 -0500 | [diff] [blame] | 246 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 247 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
| 248 | LOGERR("Error executing updater binary in zip '%s'\n", path); |
| 249 | return INSTALL_ERROR; |
| 250 | } |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 251 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 252 | return INSTALL_SUCCESS; |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 253 | } |
| 254 | |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 255 | extern "C" int TWinstall_zip(const char* path, int* wipe_cache) { |
Ethan Yonker | d5801c5 | 2014-04-14 08:59:35 -0500 | [diff] [blame] | 256 | int ret_val, zip_verify = 1, md5_return, key_count; |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 257 | twrpDigest md5sum; |
| 258 | string strpath = path; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 259 | ZipArchive Zip; |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 260 | |
Ethan Yonker | 2481342 | 2014-11-07 17:19:07 -0600 | [diff] [blame] | 261 | if (strcmp(path, "error") == 0) { |
| 262 | LOGERR("Failed to get adb sideload file: '%s'\n", path); |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 263 | return INSTALL_CORRUPT; |
Matt Mower | d5c1a92 | 2014-04-15 12:50:58 -0500 | [diff] [blame] | 264 | } |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 265 | |
Ethan Yonker | 2481342 | 2014-11-07 17:19:07 -0600 | [diff] [blame] | 266 | gui_print("Installing '%s'...\n", path); |
| 267 | if (strlen(path) < 9 || strncmp(path, "/sideload", 9) != 0) { |
| 268 | gui_print("Checking for MD5 file...\n"); |
| 269 | md5sum.setfn(strpath); |
| 270 | md5_return = md5sum.verify_md5digest(); |
| 271 | if (md5_return == -2) { // md5 did not match |
| 272 | LOGERR("Aborting zip install\n"); |
| 273 | return INSTALL_CORRUPT; |
| 274 | } |
| 275 | } |
| 276 | |
Ethan Yonker | d5801c5 | 2014-04-14 08:59:35 -0500 | [diff] [blame] | 277 | #ifndef TW_OEM_BUILD |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 278 | DataManager::GetValue(TW_SIGNED_ZIP_VERIFY_VAR, zip_verify); |
Ethan Yonker | d5801c5 | 2014-04-14 08:59:35 -0500 | [diff] [blame] | 279 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 280 | DataManager::SetProgress(0); |
Ethan Yonker | f96087e | 2014-11-07 10:38:51 -0600 | [diff] [blame] | 281 | |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 282 | #if (ANDROID_VERSION >= 5) |
Ethan Yonker | f96087e | 2014-11-07 10:38:51 -0600 | [diff] [blame] | 283 | MemMapping map; |
| 284 | if (sysMapFile(path, &map) != 0) { |
| 285 | LOGERR("Failed to sysMapFile '%s'\n", path); |
| 286 | return -1; |
| 287 | } |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 288 | #endif |
Ethan Yonker | f96087e | 2014-11-07 10:38:51 -0600 | [diff] [blame] | 289 | |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 290 | if (zip_verify) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 291 | gui_print("Verifying zip signature...\n"); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 292 | #if (ANDROID_VERSION >= 5) |
Ethan Yonker | f96087e | 2014-11-07 10:38:51 -0600 | [diff] [blame] | 293 | ret_val = verify_file(map.addr, map.length); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 294 | #else |
| 295 | ret_val = verify_file(path); |
| 296 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 297 | if (ret_val != VERIFY_SUCCESS) { |
| 298 | LOGERR("Zip signature verification failed: %i\n", ret_val); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 299 | #if (ANDROID_VERSION >= 5) |
Ethan Yonker | f9796a4 | 2014-11-08 07:28:03 -0600 | [diff] [blame] | 300 | sysReleaseMap(&map); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 301 | #endif |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 302 | return -1; |
| 303 | } |
| 304 | } |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 305 | #if (ANDROID_VERSION >= 5) |
Ethan Yonker | f96087e | 2014-11-07 10:38:51 -0600 | [diff] [blame] | 306 | ret_val = mzOpenZipArchive(map.addr, map.length, &Zip); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 307 | #else |
| 308 | ret_val = mzOpenZipArchive(path, &Zip); |
| 309 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 310 | if (ret_val != 0) { |
| 311 | LOGERR("Zip file is corrupt!\n", path); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 312 | #if (ANDROID_VERSION >= 5) |
Ethan Yonker | f9796a4 | 2014-11-08 07:28:03 -0600 | [diff] [blame] | 313 | sysReleaseMap(&map); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 314 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 315 | return INSTALL_CORRUPT; |
| 316 | } |
Ethan Yonker | f9796a4 | 2014-11-08 07:28:03 -0600 | [diff] [blame] | 317 | ret_val = Run_Update_Binary(path, &Zip, wipe_cache); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 318 | #if (ANDROID_VERSION >= 5) |
Ethan Yonker | f9796a4 | 2014-11-08 07:28:03 -0600 | [diff] [blame] | 319 | sysReleaseMap(&map); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 320 | #endif |
Ethan Yonker | f9796a4 | 2014-11-08 07:28:03 -0600 | [diff] [blame] | 321 | return ret_val; |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 322 | } |