Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 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 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 17 | #include "updater/updater.h" |
Tao Bao | 59dcb9c | 2016-10-03 18:06:46 -0700 | [diff] [blame] | 18 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 19 | #include <stdio.h> |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 20 | #include <stdlib.h> |
Dees_Troy | 512376c | 2013-09-03 19:39:41 +0000 | [diff] [blame] | 21 | #include <fcntl.h> |
Elliott Hughes | cd3c55a | 2015-01-29 20:50:08 -0800 | [diff] [blame] | 22 | #include <string.h> |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 23 | #include <unistd.h> |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 24 | |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 25 | #include <string> |
| 26 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 27 | #include <android-base/logging.h> |
Tao Bao | 59dcb9c | 2016-10-03 18:06:46 -0700 | [diff] [blame] | 28 | #include <android-base/strings.h> |
Jeff Vander Stoep | e35926e | 2017-06-14 15:30:39 -0700 | [diff] [blame] | 29 | #include <selinux/android.h> |
Elliott Hughes | 4bbd5bf | 2016-04-01 18:24:39 -0700 | [diff] [blame] | 30 | #include <selinux/label.h> |
| 31 | #include <selinux/selinux.h> |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 32 | #include <ziparchive/zip_archive.h> |
Elliott Hughes | 4bbd5bf | 2016-04-01 18:24:39 -0700 | [diff] [blame] | 33 | |
Tao Bao | 59dcb9c | 2016-10-03 18:06:46 -0700 | [diff] [blame] | 34 | #include "edify/expr.h" |
Tao Bao | 17054c0 | 2018-05-03 22:41:23 -0700 | [diff] [blame] | 35 | #include "otautil/dirutil.h" |
Tao Bao | 1fc5bf3 | 2017-10-06 07:43:41 -0700 | [diff] [blame] | 36 | #include "otautil/error_code.h" |
Tao Bao | 17054c0 | 2018-05-03 22:41:23 -0700 | [diff] [blame] | 37 | #include "otautil/sysutil.h" |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 38 | #include "updater/blockimg.h" |
Yifan Hong | 8ff84d7 | 2018-12-19 16:21:55 -0800 | [diff] [blame] | 39 | #include "updater/dynamic_partitions.h" |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 40 | #include "updater/install.h" |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 41 | |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 42 | // Generated by the makefile, this function defines the |
| 43 | // RegisterDeviceExtensions() function, which calls all the |
| 44 | // registration functions for device-specific extensions. |
| 45 | #include "register.inc" |
| 46 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 47 | // Where in the package we expect to find the edify script to execute. |
| 48 | // (Note it's "updateR-script", not the older "update-script".) |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 49 | static constexpr const char* SCRIPT_NAME = "META-INF/com/google/android/updater-script"; |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 50 | |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 51 | struct selabel_handle *sehandle; |
| 52 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 53 | static void UpdaterLogger(android::base::LogId /* id */, android::base::LogSeverity /* severity */, |
| 54 | const char* /* tag */, const char* /* file */, unsigned int /* line */, |
| 55 | const char* message) { |
| 56 | fprintf(stdout, "%s\n", message); |
| 57 | } |
| 58 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 59 | int main(int argc, char** argv) { |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 60 | // Various things log information to stdout or stderr more or less |
| 61 | // at random (though we've tried to standardize on stdout). The |
| 62 | // log file makes more sense if buffering is turned off so things |
| 63 | // appear in the right order. |
| 64 | setbuf(stdout, nullptr); |
| 65 | setbuf(stderr, nullptr); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 66 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 67 | // We don't have logcat yet under recovery. Update logs will always be written to stdout |
| 68 | // (which is redirected to recovery.log). |
| 69 | android::base::InitLogging(argv, &UpdaterLogger); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 70 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 71 | if (argc != 4 && argc != 5) { |
| 72 | LOG(ERROR) << "unexpected number of arguments: " << argc; |
| 73 | return 1; |
| 74 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 75 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 76 | char* version = argv[1]; |
| 77 | if ((version[0] != '1' && version[0] != '2' && version[0] != '3') || version[1] != '\0') { |
| 78 | // We support version 1, 2, or 3. |
| 79 | LOG(ERROR) << "wrong updater binary API; expected 1, 2, or 3; got " << argv[1]; |
| 80 | return 2; |
| 81 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 82 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 83 | // Set up the pipe for sending commands back to the parent process. |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 84 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 85 | int fd = atoi(argv[2]); |
| 86 | FILE* cmd_pipe = fdopen(fd, "wb"); |
| 87 | setlinebuf(cmd_pipe); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 88 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 89 | // Extract the script from the package. |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 90 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 91 | const char* package_filename = argv[3]; |
| 92 | MemMapping map; |
Tao Bao | b656a15 | 2017-04-18 23:54:29 -0700 | [diff] [blame] | 93 | if (!map.MapFile(package_filename)) { |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 94 | LOG(ERROR) << "failed to map package " << argv[3]; |
| 95 | return 3; |
| 96 | } |
| 97 | ZipArchiveHandle za; |
| 98 | int open_err = OpenArchiveFromMemory(map.addr, map.length, argv[3], &za); |
| 99 | if (open_err != 0) { |
| 100 | LOG(ERROR) << "failed to open package " << argv[3] << ": " << ErrorCodeString(open_err); |
| 101 | CloseArchive(za); |
| 102 | return 3; |
| 103 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 104 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 105 | ZipString script_name(SCRIPT_NAME); |
| 106 | ZipEntry script_entry; |
| 107 | int find_err = FindEntry(za, script_name, &script_entry); |
| 108 | if (find_err != 0) { |
| 109 | LOG(ERROR) << "failed to find " << SCRIPT_NAME << " in " << package_filename << ": " |
| 110 | << ErrorCodeString(find_err); |
| 111 | CloseArchive(za); |
| 112 | return 4; |
| 113 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 114 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 115 | std::string script; |
| 116 | script.resize(script_entry.uncompressed_length); |
| 117 | int extract_err = ExtractToMemory(za, &script_entry, reinterpret_cast<uint8_t*>(&script[0]), |
| 118 | script_entry.uncompressed_length); |
| 119 | if (extract_err != 0) { |
| 120 | LOG(ERROR) << "failed to read script from package: " << ErrorCodeString(extract_err); |
| 121 | CloseArchive(za); |
| 122 | return 5; |
| 123 | } |
Dees_Troy | 512376c | 2013-09-03 19:39:41 +0000 | [diff] [blame] | 124 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 125 | // Configure edify's functions. |
Dees_Troy | 512376c | 2013-09-03 19:39:41 +0000 | [diff] [blame] | 126 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 127 | RegisterBuiltins(); |
| 128 | RegisterInstallFunctions(); |
| 129 | RegisterBlockImageFunctions(); |
Yifan Hong | 8ff84d7 | 2018-12-19 16:21:55 -0800 | [diff] [blame] | 130 | RegisterDynamicPartitionsFunctions(); |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 131 | RegisterDeviceExtensions(); |
Dees_Troy | 512376c | 2013-09-03 19:39:41 +0000 | [diff] [blame] | 132 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 133 | // Parse the script. |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 134 | |
Tianjie Xu | c444732 | 2017-03-06 14:44:59 -0800 | [diff] [blame] | 135 | std::unique_ptr<Expr> root; |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 136 | int error_count = 0; |
Tao Bao | d8d514f | 2018-07-09 13:32:28 -0700 | [diff] [blame] | 137 | int error = ParseString(script, &root, &error_count); |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 138 | if (error != 0 || error_count > 0) { |
| 139 | LOG(ERROR) << error_count << " parse errors"; |
| 140 | CloseArchive(za); |
| 141 | return 6; |
| 142 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 143 | |
Jeff Vander Stoep | e35926e | 2017-06-14 15:30:39 -0700 | [diff] [blame] | 144 | sehandle = selinux_android_file_context_handle(); |
| 145 | selinux_android_set_sehandle(sehandle); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 146 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 147 | if (!sehandle) { |
| 148 | fprintf(cmd_pipe, "ui_print Warning: No file_contexts\n"); |
| 149 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 150 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 151 | // Evaluate the parsed script. |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 152 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 153 | UpdaterInfo updater_info; |
| 154 | updater_info.cmd_pipe = cmd_pipe; |
| 155 | updater_info.package_zip = za; |
| 156 | updater_info.version = atoi(version); |
| 157 | updater_info.package_zip_addr = map.addr; |
| 158 | updater_info.package_zip_len = map.length; |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 159 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 160 | State state(script, &updater_info); |
Tianjie Xu | 7ce287d | 2016-05-31 09:29:49 -0700 | [diff] [blame] | 161 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 162 | if (argc == 5) { |
| 163 | if (strcmp(argv[4], "retry") == 0) { |
| 164 | state.is_retry = true; |
Dees_Troy | 512376c | 2013-09-03 19:39:41 +0000 | [diff] [blame] | 165 | } else { |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 166 | printf("unexpected argument: %s", argv[4]); |
Dees_Troy | 512376c | 2013-09-03 19:39:41 +0000 | [diff] [blame] | 167 | } |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 168 | } |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 169 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 170 | if (access(SELINUX_CONTEXTS_TMP, R_OK) == 0) { |
| 171 | struct selinux_opt seopts[] = { |
| 172 | { SELABEL_OPT_PATH, SELINUX_CONTEXTS_TMP } |
| 173 | }; |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 174 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 175 | sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1); |
| 176 | } else { |
| 177 | struct selinux_opt seopts[] = { |
| 178 | { SELABEL_OPT_PATH, "/file_contexts" } |
| 179 | }; |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 180 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 181 | sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1); |
| 182 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 183 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 184 | std::string result; |
| 185 | bool status = Evaluate(&state, root, &result); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 186 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 187 | if (!status) { |
| 188 | if (state.errmsg.empty()) { |
| 189 | LOG(ERROR) << "script aborted (no error message)"; |
| 190 | fprintf(cmd_pipe, "ui_print script aborted (no error message)\n"); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 191 | } else { |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 192 | LOG(ERROR) << "script aborted: " << state.errmsg; |
| 193 | const std::vector<std::string> lines = android::base::Split(state.errmsg, "\n"); |
| 194 | for (const std::string& line : lines) { |
| 195 | // Parse the error code in abort message. |
| 196 | // Example: "E30: This package is for bullhead devices." |
| 197 | if (!line.empty() && line[0] == 'E') { |
Mikhail Lappo | 17e6d3f | 2017-03-23 16:56:50 +0100 | [diff] [blame] | 198 | if (sscanf(line.c_str(), "E%d: ", &state.error_code) != 1) { |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 199 | LOG(ERROR) << "Failed to parse error code: [" << line << "]"; |
| 200 | } |
| 201 | } |
| 202 | fprintf(cmd_pipe, "ui_print %s\n", line.c_str()); |
| 203 | } |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 204 | } |
| 205 | |
Tianjie Xu | e0c8879 | 2017-05-02 16:07:18 -0700 | [diff] [blame] | 206 | // Installation has been aborted. Set the error code to kScriptExecutionFailure unless |
| 207 | // a more specific code has been set in errmsg. |
| 208 | if (state.error_code == kNoError) { |
| 209 | state.error_code = kScriptExecutionFailure; |
| 210 | } |
| 211 | fprintf(cmd_pipe, "log error: %d\n", state.error_code); |
| 212 | // Cause code should provide additional information about the abort. |
| 213 | if (state.cause_code != kNoCause) { |
| 214 | fprintf(cmd_pipe, "log cause: %d\n", state.cause_code); |
Tianjie Xu | 6957555 | 2017-05-16 15:51:46 -0700 | [diff] [blame] | 215 | if (state.cause_code == kPatchApplicationFailure) { |
| 216 | LOG(INFO) << "Patch application failed, retry update."; |
| 217 | fprintf(cmd_pipe, "retry_update\n"); |
Tianjie Xu | 22f1120 | 2018-08-27 10:50:31 -0700 | [diff] [blame] | 218 | } else if (state.cause_code == kEioFailure) { |
| 219 | LOG(INFO) << "Update failed due to EIO, retry update."; |
| 220 | fprintf(cmd_pipe, "retry_update\n"); |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 221 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Doug Zongker | 8e5e4da | 2010-09-14 18:06:55 -0700 | [diff] [blame] | 224 | if (updater_info.package_zip) { |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 225 | CloseArchive(updater_info.package_zip); |
Doug Zongker | 8e5e4da | 2010-09-14 18:06:55 -0700 | [diff] [blame] | 226 | } |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 227 | return 7; |
| 228 | } else { |
| 229 | fprintf(cmd_pipe, "ui_print script succeeded: result was [%s]\n", result.c_str()); |
| 230 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 231 | |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 232 | if (updater_info.package_zip) { |
| 233 | CloseArchive(updater_info.package_zip); |
| 234 | } |
Tao Bao | 039f2da | 2016-11-22 16:29:50 -0800 | [diff] [blame] | 235 | |
| 236 | return 0; |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 237 | } |