The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | /* |
| 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 Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 17 | #include <ctype.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 18 | #include <errno.h> |
| 19 | #include <fcntl.h> |
| 20 | #include <limits.h> |
Elliott Hughes | 26dbad2 | 2015-01-28 12:09:05 -0800 | [diff] [blame] | 21 | #include <string.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 22 | #include <sys/stat.h> |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 23 | #include <sys/wait.h> |
| 24 | #include <unistd.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 25 | |
Elliott Hughes | 8febafa | 2016-04-13 16:39:56 -0700 | [diff] [blame] | 26 | #include <chrono> |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 27 | #include <string> |
Tao Bao | 71e3e09 | 2016-02-02 14:02:27 -0800 | [diff] [blame] | 28 | #include <vector> |
| 29 | |
Tianjie Xu | b0ddae5 | 2016-06-08 14:30:04 -0700 | [diff] [blame] | 30 | #include <android-base/parseint.h> |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 31 | #include <android-base/stringprintf.h> |
| 32 | #include <android-base/strings.h> |
| 33 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 34 | #include "common.h" |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 35 | #include "error_code.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 36 | #include "install.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 37 | #include "minui/minui.h" |
| 38 | #include "minzip/SysUtil.h" |
| 39 | #include "minzip/Zip.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 40 | #include "roots.h" |
Doug Zongker | 10e418d | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 41 | #include "ui.h" |
Mattias Nissler | 452df6d | 2016-04-04 16:17:01 +0200 | [diff] [blame] | 42 | #include "verifier.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 43 | |
Doug Zongker | 7440630 | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 44 | extern RecoveryUI* ui; |
| 45 | |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 46 | #define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary" |
Doug Zongker | d1b19b9 | 2009-04-01 15:48:46 -0700 | [diff] [blame] | 47 | #define PUBLIC_KEYS_FILE "/res/keys" |
Tianjie Xu | b0ddae5 | 2016-06-08 14:30:04 -0700 | [diff] [blame] | 48 | static constexpr const char* METADATA_PATH = "META-INF/com/android/metadata"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 49 | |
Doug Zongker | 7440630 | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 50 | // Default allocation of progress bar segments to operations |
| 51 | static const int VERIFICATION_PROGRESS_TIME = 60; |
| 52 | static const float VERIFICATION_PROGRESS_FRACTION = 0.25; |
| 53 | static const float DEFAULT_FILES_PROGRESS_FRACTION = 0.4; |
| 54 | static const float DEFAULT_IMAGE_PROGRESS_FRACTION = 0.1; |
| 55 | |
Tianjie Xu | b0ddae5 | 2016-06-08 14:30:04 -0700 | [diff] [blame] | 56 | // This function parses and returns the build.version.incremental |
| 57 | static 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 | |
| 71 | // Read the build.version.incremental of src/tgt from the metadata and log it to last_install. |
| 72 | static void read_source_target_build(ZipArchive* zip, std::vector<std::string>& log_buffer) { |
| 73 | const ZipEntry* meta_entry = mzFindZipEntry(zip, METADATA_PATH); |
| 74 | if (meta_entry == nullptr) { |
| 75 | LOGE("Failed to find %s in update package.\n", METADATA_PATH); |
| 76 | return; |
| 77 | } |
| 78 | |
| 79 | std::string meta_data(meta_entry->uncompLen, '\0'); |
| 80 | if (!mzReadZipEntry(zip, meta_entry, &meta_data[0], meta_entry->uncompLen)) { |
| 81 | LOGE("Failed to read metadata in update package.\n"); |
| 82 | return; |
| 83 | } |
| 84 | |
| 85 | // Examples of the pre-build and post-build strings in metadata: |
| 86 | // pre-build-incremental=2943039 |
| 87 | // post-build-incremental=2951741 |
| 88 | std::vector<std::string> lines = android::base::Split(meta_data, "\n"); |
| 89 | for (const std::string& line : lines) { |
| 90 | std::string str = android::base::Trim(line); |
| 91 | if (android::base::StartsWith(str, "pre-build-incremental")){ |
| 92 | int source_build = parse_build_number(str); |
| 93 | if (source_build != -1) { |
| 94 | log_buffer.push_back(android::base::StringPrintf("source_build: %d", |
| 95 | source_build)); |
| 96 | } |
| 97 | } else if (android::base::StartsWith(str, "post-build-incremental")) { |
| 98 | int target_build = parse_build_number(str); |
| 99 | if (target_build != -1) { |
| 100 | log_buffer.push_back(android::base::StringPrintf("target_build: %d", |
| 101 | target_build)); |
| 102 | } |
| 103 | } |
| 104 | } |
| 105 | } |
| 106 | |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 107 | // If the package contains an update binary, extract it and run it. |
| 108 | static int |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 109 | try_update_binary(const char* path, ZipArchive* zip, bool* wipe_cache, |
Tianjie Xu | 7ce287d | 2016-05-31 09:29:49 -0700 | [diff] [blame] | 110 | std::vector<std::string>& log_buffer, int retry_count) |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 111 | { |
Tianjie Xu | b0ddae5 | 2016-06-08 14:30:04 -0700 | [diff] [blame] | 112 | read_source_target_build(zip, log_buffer); |
| 113 | |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 114 | const ZipEntry* binary_entry = |
| 115 | mzFindZipEntry(zip, ASSUMED_UPDATE_BINARY_NAME); |
| 116 | if (binary_entry == NULL) { |
Doug Zongker | 8e5e4da | 2010-09-14 18:06:55 -0700 | [diff] [blame] | 117 | mzCloseZipArchive(zip); |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 118 | return INSTALL_CORRUPT; |
| 119 | } |
| 120 | |
Doug Zongker | 10e418d | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 121 | const char* binary = "/tmp/update_binary"; |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 122 | unlink(binary); |
| 123 | int fd = creat(binary, 0755); |
| 124 | if (fd < 0) { |
Doug Zongker | 8e5e4da | 2010-09-14 18:06:55 -0700 | [diff] [blame] | 125 | mzCloseZipArchive(zip); |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 126 | LOGE("Can't make %s\n", binary); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 127 | return INSTALL_ERROR; |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 128 | } |
| 129 | bool ok = mzExtractZipEntryToFile(zip, binary_entry, fd); |
| 130 | close(fd); |
Doug Zongker | 8e5e4da | 2010-09-14 18:06:55 -0700 | [diff] [blame] | 131 | mzCloseZipArchive(zip); |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 132 | |
| 133 | if (!ok) { |
| 134 | LOGE("Can't copy %s\n", ASSUMED_UPDATE_BINARY_NAME); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 135 | return INSTALL_ERROR; |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | int pipefd[2]; |
| 139 | pipe(pipefd); |
| 140 | |
| 141 | // When executing the update binary contained in the package, the |
| 142 | // arguments passed are: |
| 143 | // |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 144 | // - the version number for this interface |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 145 | // |
| 146 | // - an fd to which the program can write in order to update the |
| 147 | // progress bar. The program can write single-line commands: |
| 148 | // |
| 149 | // progress <frac> <secs> |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 150 | // fill up the next <frac> part of of the progress bar |
| 151 | // over <secs> seconds. If <secs> is zero, use |
| 152 | // set_progress commands to manually control the |
Tao Bao | b07e1f3 | 2015-04-10 16:14:52 -0700 | [diff] [blame] | 153 | // progress of this segment of the bar. |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 154 | // |
| 155 | // set_progress <frac> |
| 156 | // <frac> should be between 0.0 and 1.0; sets the |
| 157 | // progress bar within the segment defined by the most |
| 158 | // recent progress command. |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 159 | // |
| 160 | // firmware <"hboot"|"radio"> <filename> |
| 161 | // arrange to install the contents of <filename> in the |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 162 | // given partition on reboot. |
| 163 | // |
| 164 | // (API v2: <filename> may start with "PACKAGE:" to |
| 165 | // indicate taking a file from the OTA package.) |
| 166 | // |
| 167 | // (API v3: this command no longer exists.) |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 168 | // |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 169 | // ui_print <string> |
| 170 | // display <string> on the screen. |
| 171 | // |
Tao Bao | b07e1f3 | 2015-04-10 16:14:52 -0700 | [diff] [blame] | 172 | // wipe_cache |
| 173 | // a wipe of cache will be performed following a successful |
| 174 | // installation. |
| 175 | // |
| 176 | // clear_display |
| 177 | // turn off the text display. |
| 178 | // |
| 179 | // enable_reboot |
| 180 | // packages can explicitly request that they want the user |
| 181 | // to be able to reboot during installation (useful for |
| 182 | // debugging packages that don't exit). |
| 183 | // |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 184 | // - the name of the package zip file. |
| 185 | // |
Tianjie Xu | 7ce287d | 2016-05-31 09:29:49 -0700 | [diff] [blame] | 186 | // - an optional argument "retry" if this update is a retry of a failed |
| 187 | // update attempt. |
| 188 | // |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 189 | |
Tianjie Xu | 64f46fb | 2016-06-03 15:44:52 -0700 | [diff] [blame] | 190 | const char* args[6]; |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 191 | args[0] = binary; |
Doug Zongker | fb2e3af | 2009-06-17 17:29:40 -0700 | [diff] [blame] | 192 | args[1] = EXPAND(RECOVERY_API_VERSION); // defined in Android.mk |
Yabin Cui | 4425c1d | 2016-02-10 13:47:32 -0800 | [diff] [blame] | 193 | char temp[16]; |
| 194 | snprintf(temp, sizeof(temp), "%d", pipefd[1]); |
Doug Zongker | 10e418d | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 195 | args[2] = temp; |
Yabin Cui | 4425c1d | 2016-02-10 13:47:32 -0800 | [diff] [blame] | 196 | args[3] = path; |
Tianjie Xu | 7ce287d | 2016-05-31 09:29:49 -0700 | [diff] [blame] | 197 | args[4] = retry_count > 0 ? "retry" : NULL; |
| 198 | args[5] = NULL; |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 199 | |
| 200 | pid_t pid = fork(); |
| 201 | if (pid == 0) { |
Alistair Strachan | 027429a | 2013-07-17 10:41:49 -0700 | [diff] [blame] | 202 | umask(022); |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 203 | close(pipefd[0]); |
Yabin Cui | 4425c1d | 2016-02-10 13:47:32 -0800 | [diff] [blame] | 204 | execv(binary, const_cast<char**>(args)); |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 205 | fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno)); |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 206 | _exit(-1); |
| 207 | } |
| 208 | close(pipefd[1]); |
| 209 | |
Tao Bao | 145d861 | 2015-03-25 15:51:15 -0700 | [diff] [blame] | 210 | *wipe_cache = false; |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 211 | bool retry_update = false; |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 212 | |
Doug Zongker | 64893cc | 2009-07-14 16:31:56 -0700 | [diff] [blame] | 213 | char buffer[1024]; |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 214 | FILE* from_child = fdopen(pipefd[0], "r"); |
| 215 | while (fgets(buffer, sizeof(buffer), from_child) != NULL) { |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 216 | char* command = strtok(buffer, " \n"); |
| 217 | if (command == NULL) { |
| 218 | continue; |
| 219 | } else if (strcmp(command, "progress") == 0) { |
| 220 | char* fraction_s = strtok(NULL, " \n"); |
| 221 | char* seconds_s = strtok(NULL, " \n"); |
| 222 | |
| 223 | float fraction = strtof(fraction_s, NULL); |
| 224 | int seconds = strtol(seconds_s, NULL, 10); |
| 225 | |
Doug Zongker | 7440630 | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 226 | ui->ShowProgress(fraction * (1-VERIFICATION_PROGRESS_FRACTION), seconds); |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 227 | } else if (strcmp(command, "set_progress") == 0) { |
| 228 | char* fraction_s = strtok(NULL, " \n"); |
| 229 | float fraction = strtof(fraction_s, NULL); |
Doug Zongker | 7440630 | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 230 | ui->SetProgress(fraction); |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 231 | } else if (strcmp(command, "ui_print") == 0) { |
| 232 | char* str = strtok(NULL, "\n"); |
| 233 | if (str) { |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 234 | ui->PrintOnScreenOnly("%s", str); |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 235 | } else { |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 236 | ui->PrintOnScreenOnly("\n"); |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 237 | } |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 238 | fflush(stdout); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 239 | } else if (strcmp(command, "wipe_cache") == 0) { |
Tao Bao | 145d861 | 2015-03-25 15:51:15 -0700 | [diff] [blame] | 240 | *wipe_cache = true; |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 241 | } else if (strcmp(command, "clear_display") == 0) { |
| 242 | ui->SetBackground(RecoveryUI::NONE); |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 243 | } else if (strcmp(command, "enable_reboot") == 0) { |
| 244 | // packages can explicitly request that they want the user |
| 245 | // to be able to reboot during installation (useful for |
| 246 | // debugging packages that don't exit). |
| 247 | ui->SetEnableReboot(true); |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 248 | } else if (strcmp(command, "retry_update") == 0) { |
| 249 | retry_update = true; |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 250 | } else if (strcmp(command, "log") == 0) { |
| 251 | // Save the logging request from updater and write to |
| 252 | // last_install later. |
| 253 | log_buffer.push_back(std::string(strtok(NULL, "\n"))); |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 254 | } else { |
| 255 | LOGE("unknown command [%s]\n", command); |
| 256 | } |
| 257 | } |
| 258 | fclose(from_child); |
| 259 | |
| 260 | int status; |
| 261 | waitpid(pid, &status, 0); |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 262 | if (retry_update) { |
| 263 | return INSTALL_RETRY; |
| 264 | } |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 265 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 266 | LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status)); |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 267 | return INSTALL_ERROR; |
| 268 | } |
| 269 | |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 270 | return INSTALL_SUCCESS; |
Doug Zongker | b2ee920 | 2009-06-04 10:24:53 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 273 | static int |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 274 | really_install_package(const char *path, bool* wipe_cache, bool needs_mount, |
Tianjie Xu | 7ce287d | 2016-05-31 09:29:49 -0700 | [diff] [blame] | 275 | std::vector<std::string>& log_buffer, int retry_count) |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 276 | { |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 277 | ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); |
Doug Zongker | 7440630 | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 278 | ui->Print("Finding update package...\n"); |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 279 | // Give verification half the progress bar... |
| 280 | ui->SetProgressType(RecoveryUI::DETERMINATE); |
| 281 | ui->ShowProgress(VERIFICATION_PROGRESS_FRACTION, VERIFICATION_PROGRESS_TIME); |
Doug Zongker | cc8cd3f | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 282 | LOGI("Update location: %s\n", path); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 283 | |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 284 | // Map the update package into memory. |
| 285 | ui->Print("Opening update package...\n"); |
| 286 | |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 287 | if (path && needs_mount) { |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 288 | if (path[0] == '@') { |
| 289 | ensure_path_mounted(path+1); |
| 290 | } else { |
| 291 | ensure_path_mounted(path); |
| 292 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 293 | } |
| 294 | |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 295 | MemMapping map; |
| 296 | if (sysMapFile(path, &map) != 0) { |
| 297 | LOGE("failed to map file\n"); |
| 298 | return INSTALL_CORRUPT; |
| 299 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 300 | |
Elliott Hughes | 8febafa | 2016-04-13 16:39:56 -0700 | [diff] [blame] | 301 | // Load keys. |
Tao Bao | 71e3e09 | 2016-02-02 14:02:27 -0800 | [diff] [blame] | 302 | std::vector<Certificate> loadedKeys; |
| 303 | if (!load_keys(PUBLIC_KEYS_FILE, loadedKeys)) { |
Doug Zongker | d1b19b9 | 2009-04-01 15:48:46 -0700 | [diff] [blame] | 304 | LOGE("Failed to load keys\n"); |
| 305 | return INSTALL_CORRUPT; |
| 306 | } |
Tao Bao | 71e3e09 | 2016-02-02 14:02:27 -0800 | [diff] [blame] | 307 | LOGI("%zu key(s) loaded from %s\n", loadedKeys.size(), PUBLIC_KEYS_FILE); |
Doug Zongker | d1b19b9 | 2009-04-01 15:48:46 -0700 | [diff] [blame] | 308 | |
Elliott Hughes | 8febafa | 2016-04-13 16:39:56 -0700 | [diff] [blame] | 309 | // Verify package. |
Doug Zongker | 7440630 | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 310 | ui->Print("Verifying update package...\n"); |
Elliott Hughes | 8febafa | 2016-04-13 16:39:56 -0700 | [diff] [blame] | 311 | auto t0 = std::chrono::system_clock::now(); |
Tao Bao | 71e3e09 | 2016-02-02 14:02:27 -0800 | [diff] [blame] | 312 | int err = verify_file(map.addr, map.length, loadedKeys); |
Elliott Hughes | 8febafa | 2016-04-13 16:39:56 -0700 | [diff] [blame] | 313 | std::chrono::duration<double> duration = std::chrono::system_clock::now() - t0; |
| 314 | ui->Print("Update package verification took %.1f s (result %d).\n", duration.count(), err); |
Doug Zongker | 60151a2 | 2009-08-12 18:30:03 -0700 | [diff] [blame] | 315 | if (err != VERIFY_SUCCESS) { |
| 316 | LOGE("signature verification failed\n"); |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 317 | log_buffer.push_back(android::base::StringPrintf("error: %d", kZipVerificationFailure)); |
| 318 | |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 319 | sysReleaseMap(&map); |
Doug Zongker | 60151a2 | 2009-08-12 18:30:03 -0700 | [diff] [blame] | 320 | return INSTALL_CORRUPT; |
| 321 | } |
| 322 | |
Elliott Hughes | 8febafa | 2016-04-13 16:39:56 -0700 | [diff] [blame] | 323 | // Try to open the package. |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 324 | ZipArchive zip; |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 325 | err = mzOpenZipArchive(map.addr, map.length, &zip); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 326 | if (err != 0) { |
| 327 | LOGE("Can't open %s\n(%s)\n", path, err != -1 ? strerror(err) : "bad"); |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 328 | log_buffer.push_back(android::base::StringPrintf("error: %d", kZipOpenFailure)); |
| 329 | |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 330 | sysReleaseMap(&map); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 331 | return INSTALL_CORRUPT; |
| 332 | } |
| 333 | |
Elliott Hughes | 8febafa | 2016-04-13 16:39:56 -0700 | [diff] [blame] | 334 | // Verify and install the contents of the package. |
Doug Zongker | 7440630 | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 335 | ui->Print("Installing update...\n"); |
Tianjie Xu | 7ce287d | 2016-05-31 09:29:49 -0700 | [diff] [blame] | 336 | if (retry_count > 0) { |
| 337 | ui->Print("Retry attempt: %d\n", retry_count); |
| 338 | } |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 339 | ui->SetEnableReboot(false); |
Tianjie Xu | 7ce287d | 2016-05-31 09:29:49 -0700 | [diff] [blame] | 340 | int result = try_update_binary(path, &zip, wipe_cache, log_buffer, retry_count); |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 341 | ui->SetEnableReboot(true); |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 342 | ui->Print("\n"); |
Doug Zongker | 99916f0 | 2014-01-13 14:16:58 -0800 | [diff] [blame] | 343 | |
| 344 | sysReleaseMap(&map); |
| 345 | |
| 346 | return result; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 347 | } |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 348 | |
| 349 | int |
Tao Bao | 145d861 | 2015-03-25 15:51:15 -0700 | [diff] [blame] | 350 | install_package(const char* path, bool* wipe_cache, const char* install_file, |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 351 | bool needs_mount, int retry_count) |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 352 | { |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 353 | modified_flash = true; |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 354 | auto start = std::chrono::system_clock::now(); |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 355 | |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 356 | FILE* install_log = fopen_path(install_file, "w"); |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 357 | if (install_log) { |
| 358 | fputs(path, install_log); |
| 359 | fputc('\n', install_log); |
| 360 | } else { |
| 361 | LOGE("failed to open last_install: %s\n", strerror(errno)); |
| 362 | } |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 363 | int result; |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 364 | std::vector<std::string> log_buffer; |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 365 | if (setup_install_mounts() != 0) { |
| 366 | LOGE("failed to set up expected mounts for install; aborting\n"); |
| 367 | result = INSTALL_ERROR; |
| 368 | } else { |
Tianjie Xu | 7ce287d | 2016-05-31 09:29:49 -0700 | [diff] [blame] | 369 | result = really_install_package(path, wipe_cache, needs_mount, log_buffer, retry_count); |
Doug Zongker | 239ac6a | 2013-08-20 16:03:25 -0700 | [diff] [blame] | 370 | } |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 371 | if (install_log != nullptr) { |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 372 | fputc(result == INSTALL_SUCCESS ? '1' : '0', install_log); |
| 373 | fputc('\n', install_log); |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 374 | std::chrono::duration<double> duration = std::chrono::system_clock::now() - start; |
| 375 | int count = static_cast<int>(duration.count()); |
| 376 | // Report the time spent to apply OTA update in seconds. |
| 377 | fprintf(install_log, "time_total: %d\n", count); |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 378 | fprintf(install_log, "retry: %d\n", retry_count); |
Tianjie Xu | dd874b1 | 2016-05-13 12:13:15 -0700 | [diff] [blame] | 379 | |
| 380 | for (const auto& s : log_buffer) { |
| 381 | fprintf(install_log, "%s\n", s.c_str()); |
| 382 | } |
| 383 | |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 384 | fclose(install_log); |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 385 | } |
| 386 | return result; |
| 387 | } |