blob: fd66e93cb43c9812ac965e3c8e081b5cd31ef859 [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001/*
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 Bao0c7839a2016-10-10 15:48:37 -070017#include "updater/updater.h"
Tao Bao59dcb9c2016-10-03 18:06:46 -070018
Doug Zongker9931f7f2009-06-10 14:11:53 -070019#include <stdio.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070020#include <stdlib.h>
Dees_Troy512376c2013-09-03 19:39:41 +000021#include <fcntl.h>
Elliott Hughescd3c55a2015-01-29 20:50:08 -080022#include <string.h>
Tao Bao641fa972018-04-25 18:59:40 -070023#include <unistd.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070024
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070025#include <string>
26
Tao Bao039f2da2016-11-22 16:29:50 -080027#include <android-base/logging.h>
Tao Bao59dcb9c2016-10-03 18:06:46 -070028#include <android-base/strings.h>
Jeff Vander Stoepe35926e2017-06-14 15:30:39 -070029#include <selinux/android.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070030#include <selinux/label.h>
31#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070032#include <ziparchive/zip_archive.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070033
Tao Bao59dcb9c2016-10-03 18:06:46 -070034#include "edify/expr.h"
Tao Bao17054c02018-05-03 22:41:23 -070035#include "otautil/dirutil.h"
Tao Bao1fc5bf32017-10-06 07:43:41 -070036#include "otautil/error_code.h"
Tao Bao17054c02018-05-03 22:41:23 -070037#include "otautil/sysutil.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070038#include "updater/blockimg.h"
Yifan Hong8ff84d72018-12-19 16:21:55 -080039#include "updater/dynamic_partitions.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070040#include "updater/install.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070041
Doug Zongker2b0fdc62009-06-19 11:22:06 -070042// 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 Zongker9931f7f2009-06-10 14:11:53 -070047// 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 Bao039f2da2016-11-22 16:29:50 -080049static constexpr const char* SCRIPT_NAME = "META-INF/com/google/android/updater-script";
Doug Zongker9931f7f2009-06-10 14:11:53 -070050
bigbiff26d5d5f2020-03-23 09:56:16 -040051<<<<<<< HEAD
Dees_Troy512376c2013-09-03 19:39:41 +000052#define SELINUX_CONTEXTS_ZIP "file_contexts"
53#define SELINUX_CONTEXTS_TMP "/tmp/file_contexts"
Doug Zongker9931f7f2009-06-10 14:11:53 -070054
Tianjie Xufa12b972016-02-05 18:25:58 -080055extern bool have_eio_error;
56
bigbiff26d5d5f2020-03-23 09:56:16 -040057=======
58>>>>>>> android-10.0.0_r25
Stephen Smalley779701d2012-02-09 14:13:23 -050059struct selabel_handle *sehandle;
60
Tao Bao039f2da2016-11-22 16:29:50 -080061static void UpdaterLogger(android::base::LogId /* id */, android::base::LogSeverity /* severity */,
62 const char* /* tag */, const char* /* file */, unsigned int /* line */,
63 const char* message) {
64 fprintf(stdout, "%s\n", message);
65}
66
Doug Zongker9931f7f2009-06-10 14:11:53 -070067int main(int argc, char** argv) {
Tao Bao039f2da2016-11-22 16:29:50 -080068 // Various things log information to stdout or stderr more or less
69 // at random (though we've tried to standardize on stdout). The
70 // log file makes more sense if buffering is turned off so things
71 // appear in the right order.
72 setbuf(stdout, nullptr);
73 setbuf(stderr, nullptr);
Doug Zongker512536a2010-02-17 16:11:44 -080074
Tao Bao039f2da2016-11-22 16:29:50 -080075 // We don't have logcat yet under recovery. Update logs will always be written to stdout
76 // (which is redirected to recovery.log).
77 android::base::InitLogging(argv, &UpdaterLogger);
Doug Zongker9931f7f2009-06-10 14:11:53 -070078
Tao Bao039f2da2016-11-22 16:29:50 -080079 if (argc != 4 && argc != 5) {
80 LOG(ERROR) << "unexpected number of arguments: " << argc;
81 return 1;
82 }
Doug Zongker9931f7f2009-06-10 14:11:53 -070083
Tao Bao039f2da2016-11-22 16:29:50 -080084 char* version = argv[1];
85 if ((version[0] != '1' && version[0] != '2' && version[0] != '3') || version[1] != '\0') {
86 // We support version 1, 2, or 3.
87 LOG(ERROR) << "wrong updater binary API; expected 1, 2, or 3; got " << argv[1];
88 return 2;
89 }
Doug Zongker9931f7f2009-06-10 14:11:53 -070090
Tao Bao039f2da2016-11-22 16:29:50 -080091 // Set up the pipe for sending commands back to the parent process.
Doug Zongker9931f7f2009-06-10 14:11:53 -070092
Tao Bao039f2da2016-11-22 16:29:50 -080093 int fd = atoi(argv[2]);
94 FILE* cmd_pipe = fdopen(fd, "wb");
95 setlinebuf(cmd_pipe);
Doug Zongker9931f7f2009-06-10 14:11:53 -070096
Tao Bao039f2da2016-11-22 16:29:50 -080097 // Extract the script from the package.
Doug Zongker9931f7f2009-06-10 14:11:53 -070098
Tao Bao039f2da2016-11-22 16:29:50 -080099 const char* package_filename = argv[3];
100 MemMapping map;
Tao Baob656a152017-04-18 23:54:29 -0700101 if (!map.MapFile(package_filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800102 LOG(ERROR) << "failed to map package " << argv[3];
103 return 3;
104 }
105 ZipArchiveHandle za;
106 int open_err = OpenArchiveFromMemory(map.addr, map.length, argv[3], &za);
107 if (open_err != 0) {
108 LOG(ERROR) << "failed to open package " << argv[3] << ": " << ErrorCodeString(open_err);
109 CloseArchive(za);
110 return 3;
111 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700112
Tao Bao039f2da2016-11-22 16:29:50 -0800113 ZipString script_name(SCRIPT_NAME);
114 ZipEntry script_entry;
115 int find_err = FindEntry(za, script_name, &script_entry);
116 if (find_err != 0) {
117 LOG(ERROR) << "failed to find " << SCRIPT_NAME << " in " << package_filename << ": "
118 << ErrorCodeString(find_err);
119 CloseArchive(za);
120 return 4;
121 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700122
Tao Bao039f2da2016-11-22 16:29:50 -0800123 std::string script;
124 script.resize(script_entry.uncompressed_length);
125 int extract_err = ExtractToMemory(za, &script_entry, reinterpret_cast<uint8_t*>(&script[0]),
126 script_entry.uncompressed_length);
127 if (extract_err != 0) {
128 LOG(ERROR) << "failed to read script from package: " << ErrorCodeString(extract_err);
129 CloseArchive(za);
130 return 5;
131 }
Dees_Troy512376c2013-09-03 19:39:41 +0000132
Tao Bao039f2da2016-11-22 16:29:50 -0800133 // Configure edify's functions.
Dees_Troy512376c2013-09-03 19:39:41 +0000134
Tao Bao039f2da2016-11-22 16:29:50 -0800135 RegisterBuiltins();
136 RegisterInstallFunctions();
137 RegisterBlockImageFunctions();
Yifan Hong8ff84d72018-12-19 16:21:55 -0800138 RegisterDynamicPartitionsFunctions();
Tao Bao039f2da2016-11-22 16:29:50 -0800139 RegisterDeviceExtensions();
Dees_Troy512376c2013-09-03 19:39:41 +0000140
Tao Bao039f2da2016-11-22 16:29:50 -0800141 // Parse the script.
Doug Zongker9931f7f2009-06-10 14:11:53 -0700142
Tianjie Xuc4447322017-03-06 14:44:59 -0800143 std::unique_ptr<Expr> root;
Tao Bao039f2da2016-11-22 16:29:50 -0800144 int error_count = 0;
Tao Baod8d514f2018-07-09 13:32:28 -0700145 int error = ParseString(script, &root, &error_count);
Tao Bao039f2da2016-11-22 16:29:50 -0800146 if (error != 0 || error_count > 0) {
147 LOG(ERROR) << error_count << " parse errors";
148 CloseArchive(za);
149 return 6;
150 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700151
Jeff Vander Stoepe35926e2017-06-14 15:30:39 -0700152 sehandle = selinux_android_file_context_handle();
153 selinux_android_set_sehandle(sehandle);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700154
Tao Bao039f2da2016-11-22 16:29:50 -0800155 if (!sehandle) {
156 fprintf(cmd_pipe, "ui_print Warning: No file_contexts\n");
157 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700158
Tao Bao039f2da2016-11-22 16:29:50 -0800159 // Evaluate the parsed script.
Stephen Smalley779701d2012-02-09 14:13:23 -0500160
Tao Bao039f2da2016-11-22 16:29:50 -0800161 UpdaterInfo updater_info;
162 updater_info.cmd_pipe = cmd_pipe;
163 updater_info.package_zip = za;
164 updater_info.version = atoi(version);
165 updater_info.package_zip_addr = map.addr;
166 updater_info.package_zip_len = map.length;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700167
Tao Bao039f2da2016-11-22 16:29:50 -0800168 State state(script, &updater_info);
Tianjie Xu7ce287d2016-05-31 09:29:49 -0700169
Tao Bao039f2da2016-11-22 16:29:50 -0800170 if (argc == 5) {
171 if (strcmp(argv[4], "retry") == 0) {
172 state.is_retry = true;
Dees_Troy512376c2013-09-03 19:39:41 +0000173 } else {
Tao Bao039f2da2016-11-22 16:29:50 -0800174 printf("unexpected argument: %s", argv[4]);
Dees_Troy512376c2013-09-03 19:39:41 +0000175 }
Tao Bao039f2da2016-11-22 16:29:50 -0800176 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700177
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500178 if (access(SELINUX_CONTEXTS_TMP, R_OK) == 0) {
179 struct selinux_opt seopts[] = {
180 { SELABEL_OPT_PATH, SELINUX_CONTEXTS_TMP }
181 };
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700182
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500183 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
184 } else {
185 struct selinux_opt seopts[] = {
186 { SELABEL_OPT_PATH, "/file_contexts" }
187 };
Doug Zongker9931f7f2009-06-10 14:11:53 -0700188
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500189 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
190 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700191
Tao Bao039f2da2016-11-22 16:29:50 -0800192 std::string result;
193 bool status = Evaluate(&state, root, &result);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700194
Tao Bao039f2da2016-11-22 16:29:50 -0800195 if (!status) {
196 if (state.errmsg.empty()) {
197 LOG(ERROR) << "script aborted (no error message)";
198 fprintf(cmd_pipe, "ui_print script aborted (no error message)\n");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700199 } else {
Tao Bao039f2da2016-11-22 16:29:50 -0800200 LOG(ERROR) << "script aborted: " << state.errmsg;
201 const std::vector<std::string> lines = android::base::Split(state.errmsg, "\n");
202 for (const std::string& line : lines) {
203 // Parse the error code in abort message.
204 // Example: "E30: This package is for bullhead devices."
205 if (!line.empty() && line[0] == 'E') {
Mikhail Lappo17e6d3f2017-03-23 16:56:50 +0100206 if (sscanf(line.c_str(), "E%d: ", &state.error_code) != 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800207 LOG(ERROR) << "Failed to parse error code: [" << line << "]";
208 }
209 }
210 fprintf(cmd_pipe, "ui_print %s\n", line.c_str());
211 }
Tao Bao039f2da2016-11-22 16:29:50 -0800212 }
213
Tianjie Xue0c88792017-05-02 16:07:18 -0700214 // Installation has been aborted. Set the error code to kScriptExecutionFailure unless
215 // a more specific code has been set in errmsg.
216 if (state.error_code == kNoError) {
217 state.error_code = kScriptExecutionFailure;
218 }
219 fprintf(cmd_pipe, "log error: %d\n", state.error_code);
220 // Cause code should provide additional information about the abort.
221 if (state.cause_code != kNoCause) {
222 fprintf(cmd_pipe, "log cause: %d\n", state.cause_code);
Tianjie Xu69575552017-05-16 15:51:46 -0700223 if (state.cause_code == kPatchApplicationFailure) {
224 LOG(INFO) << "Patch application failed, retry update.";
225 fprintf(cmd_pipe, "retry_update\n");
Tianjie Xu22f11202018-08-27 10:50:31 -0700226 } else if (state.cause_code == kEioFailure) {
227 LOG(INFO) << "Update failed due to EIO, retry update.";
228 fprintf(cmd_pipe, "retry_update\n");
Tao Bao039f2da2016-11-22 16:29:50 -0800229 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700230 }
231
Doug Zongker8e5e4da2010-09-14 18:06:55 -0700232 if (updater_info.package_zip) {
Tao Bao039f2da2016-11-22 16:29:50 -0800233 CloseArchive(updater_info.package_zip);
Doug Zongker8e5e4da2010-09-14 18:06:55 -0700234 }
Tao Bao039f2da2016-11-22 16:29:50 -0800235 return 7;
236 } else {
237 fprintf(cmd_pipe, "ui_print script succeeded: result was [%s]\n", result.c_str());
238 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700239
Tao Bao039f2da2016-11-22 16:29:50 -0800240 if (updater_info.package_zip) {
241 CloseArchive(updater_info.package_zip);
242 }
Tao Bao039f2da2016-11-22 16:29:50 -0800243
244 return 0;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700245}