blob: c5f9a89bbd7d18cf00491f5cd0cd8655e8547ae8 [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/install.h"
18
Doug Zongkerfbf3c102009-06-24 09:36:20 -070019#include <ctype.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070020#include <errno.h>
Tao Bao361342c2016-02-08 11:15:50 -080021#include <fcntl.h>
22#include <ftw.h>
23#include <inttypes.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070024#include <stdarg.h>
Doug Zongkerfbf3c102009-06-24 09:36:20 -070025#include <stdio.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070026#include <stdlib.h>
27#include <string.h>
Tao Bao361342c2016-02-08 11:15:50 -080028#include <sys/capability.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070029#include <sys/mount.h>
30#include <sys/stat.h>
31#include <sys/types.h>
Doug Zongkera3f89ea2009-09-10 14:10:48 -070032#include <sys/wait.h>
Nick Kralevich5dbdef02013-09-07 14:41:06 -070033#include <sys/xattr.h>
Tao Bao361342c2016-02-08 11:15:50 -080034#include <time.h>
35#include <unistd.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070036#include <utime.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070037
Yabin Cui64be2132016-02-03 18:16:02 -080038#include <memory>
Tao Bao361342c2016-02-08 11:15:50 -080039#include <string>
Yabin Cui64be2132016-02-03 18:16:02 -080040#include <vector>
41
Tao Baod0f30882016-11-03 23:52:01 -070042#include <android-base/file.h>
Tao Bao039f2da2016-11-22 16:29:50 -080043#include <android-base/logging.h>
Tianjie Xu5fe280a2016-10-17 18:15:20 -070044#include <android-base/parsedouble.h>
Tao Baod0f30882016-11-03 23:52:01 -070045#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070046#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080047#include <android-base/stringprintf.h>
Tao Baod0f30882016-11-03 23:52:01 -070048#include <android-base/strings.h>
Tao Bao0d3f84f2016-12-28 15:09:20 -080049#include <applypatch/applypatch.h>
50#include <bootloader_message/bootloader_message.h>
Tao Bao0c7839a2016-10-10 15:48:37 -070051#include <cutils/android_reboot.h>
Tao Baode40ba52016-10-05 23:17:01 -070052#include <ext4_utils/make_ext4fs.h>
53#include <ext4_utils/wipe.h>
Tao Bao361342c2016-02-08 11:15:50 -080054#include <openssl/sha.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070055#include <selinux/label.h>
56#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070057#include <ziparchive/zip_archive.h>
Tao Bao1107d962015-09-09 17:16:55 -070058
Doug Zongker9931f7f2009-06-10 14:11:53 -070059#include "edify/expr.h"
Tianjie Xu16255832016-04-30 11:49:59 -070060#include "error_code.h"
Elliott Hughes63a31922016-06-09 17:41:22 -070061#include "mounts.h"
Jed Estep39c1b5e2015-12-15 16:04:53 -080062#include "ota_io.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070063#include "otautil/DirUtil.h"
64#include "otautil/ZipUtil.h"
Tao Bao361342c2016-02-08 11:15:50 -080065#include "print_sha1.h"
Michael Rungeacf47db2014-11-21 00:12:28 -080066#include "tune2fs.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070067#include "updater/updater.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070068
Tao Bao1107d962015-09-09 17:16:55 -070069// Send over the buffer to recovery though the command pipe.
70static void uiPrint(State* state, const std::string& buffer) {
Tao Bao039f2da2016-11-22 16:29:50 -080071 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070072
Tao Bao039f2da2016-11-22 16:29:50 -080073 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
74 // So skip sending empty strings to UI.
75 std::vector<std::string> lines = android::base::Split(buffer, "\n");
76 for (auto& line : lines) {
77 if (!line.empty()) {
78 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
Tao Bao1107d962015-09-09 17:16:55 -070079 }
Tao Bao039f2da2016-11-22 16:29:50 -080080 }
Tao Bao1107d962015-09-09 17:16:55 -070081
Tao Bao039f2da2016-11-22 16:29:50 -080082 // On the updater side, we need to dump the contents to stderr (which has
83 // been redirected to the log file). Because the recovery will only print
84 // the contents to screen when processing pipe command ui_print.
85 LOG(INFO) << buffer;
Michael Runged4a63422014-10-22 19:48:41 -070086}
87
Elliott Hughes83ce7552016-06-30 09:28:42 -070088void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
Tao Bao039f2da2016-11-22 16:29:50 -080089 std::string error_msg;
Tao Bao1107d962015-09-09 17:16:55 -070090
Tao Bao039f2da2016-11-22 16:29:50 -080091 va_list ap;
92 va_start(ap, format);
93 android::base::StringAppendV(&error_msg, format, ap);
94 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -070095
Tao Bao039f2da2016-11-22 16:29:50 -080096 uiPrint(state, error_msg);
Michael Runged4a63422014-10-22 19:48:41 -070097}
98
Tianjie Xud75003d2016-11-04 11:31:29 -070099static bool is_dir(const std::string& dirpath) {
100 struct stat st;
101 return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
102}
103
Tao Bao0c7839a2016-10-10 15:48:37 -0700104// Create all parent directories of name, if necessary.
Tianjie Xud75003d2016-11-04 11:31:29 -0700105static bool make_parents(const std::string& name) {
Tao Bao039f2da2016-11-22 16:29:50 -0800106 size_t prev_end = 0;
107 while (prev_end < name.size()) {
108 size_t next_end = name.find('/', prev_end + 1);
109 if (next_end == std::string::npos) {
110 break;
Tao Bao0c7839a2016-10-10 15:48:37 -0700111 }
Tao Bao039f2da2016-11-22 16:29:50 -0800112 std::string dir_path = name.substr(0, next_end);
113 if (!is_dir(dir_path)) {
114 int result = mkdir(dir_path.c_str(), 0700);
115 if (result != 0) {
116 PLOG(ERROR) << "failed to mkdir " << dir_path << " when make parents for " << name;
117 return false;
118 }
119
120 LOG(INFO) << "created [" << dir_path << "]";
121 }
122 prev_end = next_end;
123 }
124 return true;
Tao Bao0c7839a2016-10-10 15:48:37 -0700125}
126
Doug Zongker3d177d02010-07-01 09:18:44 -0700127// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -0700128// mount(fs_type, partition_type, location, mount_point, mount_options)
Tianjie Xuc4447322017-03-06 14:44:59 -0800129
Doug Zongker3d177d02010-07-01 09:18:44 -0700130// fs_type="ext4" partition_type="EMMC" location=device
Tianjie Xuc4447322017-03-06 14:44:59 -0800131Value* MountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
132 if (argv.size() != 4 && argv.size() != 5) {
133 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %zu", name,
134 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800135 }
136
137 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800138 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800139 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
140 }
141 const std::string& fs_type = args[0];
142 const std::string& partition_type = args[1];
143 const std::string& location = args[2];
144 const std::string& mount_point = args[3];
145 std::string mount_options;
146
Tianjie Xuc4447322017-03-06 14:44:59 -0800147 if (argv.size() == 5) {
Tao Bao039f2da2016-11-22 16:29:50 -0800148 mount_options = args[4];
149 }
150
151 if (fs_type.empty()) {
152 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
153 }
154 if (partition_type.empty()) {
155 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
156 name);
157 }
158 if (location.empty()) {
159 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
160 }
161 if (mount_point.empty()) {
162 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
163 name);
164 }
165
166 {
167 char* secontext = nullptr;
168
169 if (sehandle) {
170 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
171 setfscreatecon(secontext);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700172 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700173
Tao Bao039f2da2016-11-22 16:29:50 -0800174 mkdir(mount_point.c_str(), 0755);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700175
Tao Bao039f2da2016-11-22 16:29:50 -0800176 if (secontext) {
177 freecon(secontext);
178 setfscreatecon(nullptr);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700179 }
Tao Bao039f2da2016-11-22 16:29:50 -0800180 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700181
Tao Bao039f2da2016-11-22 16:29:50 -0800182 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
183 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700184 uiPrintf(state, "%s: Failed to mount %s at %s: %s", name, location.c_str(), mount_point.c_str(),
185 strerror(errno));
Tao Bao039f2da2016-11-22 16:29:50 -0800186 return StringValue("");
187 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700188
Tao Bao039f2da2016-11-22 16:29:50 -0800189 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700190}
191
Doug Zongker8edb00c2009-06-11 17:21:44 -0700192// is_mounted(mount_point)
Tianjie Xuc4447322017-03-06 14:44:59 -0800193Value* IsMountedFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
194 if (argv.size() != 1) {
195 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800196 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700197
Tao Bao039f2da2016-11-22 16:29:50 -0800198 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800199 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800200 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
201 }
202 const std::string& mount_point = args[0];
203 if (mount_point.empty()) {
204 return ErrorAbort(state, kArgsParsingFailure,
205 "mount_point argument to unmount() can't be empty");
206 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700207
Tao Bao039f2da2016-11-22 16:29:50 -0800208 scan_mounted_volumes();
209 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
210 if (vol == nullptr) {
211 return StringValue("");
212 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700213
Tao Bao039f2da2016-11-22 16:29:50 -0800214 return StringValue(mount_point);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700215}
216
Tianjie Xuc4447322017-03-06 14:44:59 -0800217Value* UnmountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
218 if (argv.size() != 1) {
219 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800220 }
221 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800222 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800223 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
224 }
225 const std::string& mount_point = args[0];
226 if (mount_point.empty()) {
227 return ErrorAbort(state, kArgsParsingFailure,
228 "mount_point argument to unmount() can't be empty");
229 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700230
Tao Bao039f2da2016-11-22 16:29:50 -0800231 scan_mounted_volumes();
232 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
233 if (vol == nullptr) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700234 uiPrintf(state, "Failed to unmount %s: No such volume", mount_point.c_str());
Tao Bao039f2da2016-11-22 16:29:50 -0800235 return nullptr;
236 } else {
237 int ret = unmount_mounted_volume(vol);
238 if (ret != 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700239 uiPrintf(state, "Failed to unmount %s: %s", mount_point.c_str(), strerror(errno));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700240 }
Tao Bao039f2da2016-11-22 16:29:50 -0800241 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700242
Tao Bao039f2da2016-11-22 16:29:50 -0800243 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700244}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700245
JP Abgrall37aedb32014-06-16 19:07:39 -0700246static int exec_cmd(const char* path, char* const argv[]) {
Tao Bao039f2da2016-11-22 16:29:50 -0800247 pid_t child;
248 if ((child = vfork()) == 0) {
249 execv(path, argv);
Tao Bao3da88012017-02-03 13:09:23 -0800250 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800251 }
252
253 int status;
254 waitpid(child, &status, 0);
255 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
256 LOG(ERROR) << path << " failed with status " << WEXITSTATUS(status);
257 }
258 return WEXITSTATUS(status);
JP Abgrall37aedb32014-06-16 19:07:39 -0700259}
260
Stephen Smalley779701d2012-02-09 14:13:23 -0500261// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700262//
Tao Bao039f2da2016-11-22 16:29:50 -0800263// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
264// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700265// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800266// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700267// if fs_size < 0, then reserve that many bytes at the end of the partition (not for "f2fs")
Tianjie Xuc4447322017-03-06 14:44:59 -0800268Value* FormatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
269 if (argv.size() != 5) {
270 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %zu", name,
271 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800272 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500273
Tao Bao039f2da2016-11-22 16:29:50 -0800274 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800275 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800276 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
277 }
278 const std::string& fs_type = args[0];
279 const std::string& partition_type = args[1];
280 const std::string& location = args[2];
281 const std::string& fs_size = args[3];
282 const std::string& mount_point = args[4];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700283
Tao Bao039f2da2016-11-22 16:29:50 -0800284 if (fs_type.empty()) {
285 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
286 }
287 if (partition_type.empty()) {
288 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
289 name);
290 }
291 if (location.empty()) {
292 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
293 }
294 if (mount_point.empty()) {
295 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
296 name);
297 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700298
Tao Bao039f2da2016-11-22 16:29:50 -0800299 int64_t size;
300 if (!android::base::ParseInt(fs_size, &size)) {
301 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
302 fs_size.c_str());
303 }
304
305 if (fs_type == "ext4") {
306 int status = make_ext4fs(location.c_str(), size, mount_point.c_str(), sehandle);
307 if (status != 0) {
308 LOG(ERROR) << name << ": make_ext4fs failed (" << status << ") on " << location;
309 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700310 }
Tao Bao039f2da2016-11-22 16:29:50 -0800311 return StringValue(location);
312 } else if (fs_type == "f2fs") {
313 if (size < 0) {
314 LOG(ERROR) << name << ": fs_size can't be negative for f2fs: " << fs_size;
315 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700316 }
Tao Bao039f2da2016-11-22 16:29:50 -0800317 std::string num_sectors = std::to_string(size / 512);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700318
Tao Bao039f2da2016-11-22 16:29:50 -0800319 const char* f2fs_path = "/sbin/mkfs.f2fs";
Tao Bao397a8132017-05-12 11:02:27 -0700320 const char* f2fs_argv[] = {
321 "mkfs.f2fs", "-t", "-d1", location.c_str(), (size < 512) ? nullptr : num_sectors.c_str(),
322 nullptr
323 };
324 int status = exec_cmd(f2fs_path, const_cast<char**>(f2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800325 if (status != 0) {
326 LOG(ERROR) << name << ": mkfs.f2fs failed (" << status << ") on " << location;
327 return StringValue("");
328 }
329 return StringValue(location);
330 } else {
331 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \""
332 << partition_type << "\"";
333 }
334
335 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700336}
337
Tianjie Xuc4447322017-03-06 14:44:59 -0800338Value* ShowProgressFn(const char* name, State* state,
339 const std::vector<std::unique_ptr<Expr>>& argv) {
340 if (argv.size() != 2) {
341 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
342 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800343 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700344
Tao Bao039f2da2016-11-22 16:29:50 -0800345 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800346 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800347 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
348 }
349 const std::string& frac_str = args[0];
350 const std::string& sec_str = args[1];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700351
Tao Bao039f2da2016-11-22 16:29:50 -0800352 double frac;
353 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
354 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
355 frac_str.c_str());
356 }
357 int sec;
358 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
359 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
360 sec_str.c_str());
361 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700362
Tao Bao039f2da2016-11-22 16:29:50 -0800363 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
364 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700365
Tao Bao039f2da2016-11-22 16:29:50 -0800366 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700367}
368
Tianjie Xuc4447322017-03-06 14:44:59 -0800369Value* SetProgressFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
370 if (argv.size() != 1) {
371 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800372 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700373
Tao Bao039f2da2016-11-22 16:29:50 -0800374 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800375 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800376 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
377 }
378 const std::string& frac_str = args[0];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700379
Tao Bao039f2da2016-11-22 16:29:50 -0800380 double frac;
381 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
382 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
383 frac_str.c_str());
384 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700385
Tao Bao039f2da2016-11-22 16:29:50 -0800386 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
387 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700388
Tao Bao039f2da2016-11-22 16:29:50 -0800389 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700390}
391
Tao Bao1036d362016-11-17 22:49:56 -0800392// package_extract_dir(package_dir, dest_dir)
393// Extracts all files from the package underneath package_dir and writes them to the
394// corresponding tree beneath dest_dir. Any existing files are overwritten.
395// Example: package_extract_dir("system", "/system")
396//
397// Note: package_dir needs to be a relative path; dest_dir needs to be an absolute path.
Tianjie Xuc4447322017-03-06 14:44:59 -0800398Value* PackageExtractDirFn(const char* name, State* state,
399 const std::vector<std::unique_ptr<Expr>>&argv) {
400 if (argv.size() != 2) {
401 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
402 argv.size());
Tao Bao1036d362016-11-17 22:49:56 -0800403 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700404
Tao Bao1036d362016-11-17 22:49:56 -0800405 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800406 if (!ReadArgs(state, argv, &args)) {
Tao Bao1036d362016-11-17 22:49:56 -0800407 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
408 }
409 const std::string& zip_path = args[0];
410 const std::string& dest_path = args[1];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700411
Tao Bao1036d362016-11-17 22:49:56 -0800412 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700413
Tao Bao1036d362016-11-17 22:49:56 -0800414 // To create a consistent system image, never use the clock for timestamps.
415 constexpr struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default
Doug Zongker9931f7f2009-06-10 14:11:53 -0700416
Tao Bao1036d362016-11-17 22:49:56 -0800417 bool success = ExtractPackageRecursive(za, zip_path, dest_path, &timestamp, sehandle);
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700418
Tao Bao1036d362016-11-17 22:49:56 -0800419 return StringValue(success ? "t" : "");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700420}
421
Tao Baoef0eb3b2016-11-14 21:29:52 -0800422// package_extract_file(package_file[, dest_file])
423// Extracts a single package_file from the update package and writes it to dest_file,
424// overwriting existing files if necessary. Without the dest_file argument, returns the
425// contents of the package file as a binary blob.
Tianjie Xuc4447322017-03-06 14:44:59 -0800426Value* PackageExtractFileFn(const char* name, State* state,
427 const std::vector<std::unique_ptr<Expr>>& argv) {
428 if (argv.size() < 1 || argv.size() > 2) {
429 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %zu", name,
430 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800431 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700432
Tianjie Xuc4447322017-03-06 14:44:59 -0800433 if (argv.size() == 2) {
Tao Baoef0eb3b2016-11-14 21:29:52 -0800434 // The two-argument version extracts to a file.
435
436 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800437 if (!ReadArgs(state, argv, &args)) {
438 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
439 argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700440 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800441 const std::string& zip_path = args[0];
442 const std::string& dest_path = args[1];
Doug Zongker43772d22014-06-09 14:13:19 -0700443
Tao Baoef0eb3b2016-11-14 21:29:52 -0800444 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
445 ZipString zip_string_path(zip_path.c_str());
446 ZipEntry entry;
447 if (FindEntry(za, zip_string_path, &entry) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800448 LOG(ERROR) << name << ": no " << zip_path << " in package";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800449 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700450 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800451
Tao Bao358c2ec2016-11-28 11:48:43 -0800452 unique_fd fd(TEMP_FAILURE_RETRY(
453 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
Tao Baoef0eb3b2016-11-14 21:29:52 -0800454 if (fd == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800455 PLOG(ERROR) << name << ": can't open " << dest_path << " for write";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800456 return StringValue("");
457 }
458
459 bool success = true;
460 int32_t ret = ExtractEntryToFile(za, &entry, fd);
461 if (ret != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800462 LOG(ERROR) << name << ": Failed to extract entry \"" << zip_path << "\" ("
463 << entry.uncompressed_length << " bytes) to \"" << dest_path
464 << "\": " << ErrorCodeString(ret);
Tao Baoef0eb3b2016-11-14 21:29:52 -0800465 success = false;
466 }
467 if (ota_fsync(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800468 PLOG(ERROR) << "fsync of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800469 success = false;
470 }
471 if (ota_close(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800472 PLOG(ERROR) << "close of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800473 success = false;
474 }
475
476 return StringValue(success ? "t" : "");
477 } else {
478 // The one-argument version returns the contents of the file as the result.
479
480 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800481 if (!ReadArgs(state, argv, &args)) {
482 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
483 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800484 }
485 const std::string& zip_path = args[0];
486
487 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
488 ZipString zip_string_path(zip_path.c_str());
489 ZipEntry entry;
490 if (FindEntry(za, zip_string_path, &entry) != 0) {
491 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
492 zip_path.c_str());
493 }
494
495 std::string buffer;
496 buffer.resize(entry.uncompressed_length);
497
498 int32_t ret = ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
499 if (ret != 0) {
500 return ErrorAbort(state, kPackageExtractFileFailure,
501 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
502 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
503 }
504
505 return new Value(VAL_BLOB, buffer);
506 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700507}
508
Tianjie Xuc4447322017-03-06 14:44:59 -0800509Value* GetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
510 if (argv.size() != 1) {
511 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800512 }
513 std::string key;
514 if (!Evaluate(state, argv[0], &key)) {
515 return nullptr;
516 }
517 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700518
Tao Bao039f2da2016-11-22 16:29:50 -0800519 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700520}
521
Doug Zongker47cace92009-06-18 10:11:50 -0700522// file_getprop(file, key)
523//
524// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700525// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700526// and returns the value for 'key' (or "" if it isn't defined).
Tianjie Xuc4447322017-03-06 14:44:59 -0800527Value* FileGetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
528 if (argv.size() != 2) {
529 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
530 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800531 }
532
533 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800534 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800535 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
536 }
537 const std::string& filename = args[0];
538 const std::string& key = args[1];
539
540 struct stat st;
541 if (stat(filename.c_str(), &st) < 0) {
542 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
543 filename.c_str(), strerror(errno));
544 }
545
546 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
547 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
548 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
549 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
550 }
551
552 std::string buffer(st.st_size, '\0');
553 unique_file f(ota_fopen(filename.c_str(), "rb"));
554 if (f == nullptr) {
555 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name, filename.c_str(),
556 strerror(errno));
557 }
558
559 if (ota_fread(&buffer[0], 1, st.st_size, f.get()) != static_cast<size_t>(st.st_size)) {
560 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s", name,
561 static_cast<size_t>(st.st_size), filename.c_str());
562 return nullptr;
563 }
564
565 ota_fclose(f);
566
567 std::vector<std::string> lines = android::base::Split(buffer, "\n");
568 for (size_t i = 0; i < lines.size(); i++) {
569 std::string line = android::base::Trim(lines[i]);
570
571 // comment or blank line: skip to next line
572 if (line.empty() || line[0] == '#') {
573 continue;
574 }
575 size_t equal_pos = line.find('=');
576 if (equal_pos == std::string::npos) {
577 continue;
Tao Bao51d516e2016-11-03 14:49:01 -0700578 }
579
Tao Bao358c2ec2016-11-28 11:48:43 -0800580 // trim whitespace between key and '='
581 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700582
Tao Bao358c2ec2016-11-28 11:48:43 -0800583 // not the key we're looking for
584 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700585
Tao Bao358c2ec2016-11-28 11:48:43 -0800586 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
587 }
Doug Zongker47cace92009-06-18 10:11:50 -0700588
Tao Bao358c2ec2016-11-28 11:48:43 -0800589 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700590}
591
Doug Zongker8edb00c2009-06-11 17:21:44 -0700592// apply_patch_space(bytes)
Tianjie Xuc4447322017-03-06 14:44:59 -0800593Value* ApplyPatchSpaceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
594 if (argv.size() != 1) {
595 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 args, got %zu", name,
596 argv.size());
597 }
Tao Bao039f2da2016-11-22 16:29:50 -0800598 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800599 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800600 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
601 }
602 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800603
Tao Bao039f2da2016-11-22 16:29:50 -0800604 size_t bytes;
605 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
606 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
607 name, bytes_str.c_str());
608 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800609
Tao Bao039f2da2016-11-22 16:29:50 -0800610 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800611}
612
Tao Bao039f2da2016-11-22 16:29:50 -0800613// apply_patch(src_file, tgt_file, tgt_sha1, tgt_size, patch1_sha1, patch1_blob, [...])
614// Applies a binary patch to the src_file to produce the tgt_file. If the desired target is the
615// same as the source, pass "-" for tgt_file. tgt_sha1 and tgt_size are the expected final SHA1
616// hash and size of the target file. The remaining arguments must come in pairs: a SHA1 hash (a
617// 40-character hex string) and a blob. The blob is the patch to be applied when the source
618// file's current contents have the given SHA1.
619//
620// The patching is done in a safe manner that guarantees the target file either has the desired
621// SHA1 hash and size, or it is untouched -- it will not be left in an unrecoverable intermediate
622// state. If the process is interrupted during patching, the target file may be in an intermediate
623// state; a copy exists in the cache partition so restarting the update can successfully update
624// the file.
Tianjie Xuc4447322017-03-06 14:44:59 -0800625Value* ApplyPatchFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
626 if (argv.size() < 6 || (argv.size() % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700627 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xuc4447322017-03-06 14:44:59 -0800628 "even number, got %zu", name, argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700629 }
630
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700631 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800632 if (!ReadArgs(state, argv, &args, 0, 4)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700633 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700634 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700635 const std::string& source_filename = args[0];
636 const std::string& target_filename = args[1];
637 const std::string& target_sha1 = args[2];
638 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700639
Tao Baob15fd222015-09-24 11:10:51 -0700640 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700641 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
642 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
643 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800644 }
645
Tianjie Xuc4447322017-03-06 14:44:59 -0800646 int patchcount = (argv.size()-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700647 std::vector<std::unique_ptr<Value>> arg_values;
Tianjie Xuc4447322017-03-06 14:44:59 -0800648 if (!ReadValueArgs(state, argv, &arg_values, 4, argv.size() - 4)) {
Yabin Cui64be2132016-02-03 18:16:02 -0800649 return nullptr;
650 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700651
Yabin Cui64be2132016-02-03 18:16:02 -0800652 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700653 if (arg_values[i * 2]->type != VAL_STRING) {
654 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
655 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800656 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700657 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
658 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
659 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800660 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700661 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700662
Tianjie Xuaced5d92016-10-12 10:55:04 -0700663 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700664 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800665 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700666 patch_sha_str.push_back(arg_values[i * 2]->data);
667 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700668 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800669
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700670 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
671 target_sha1.c_str(), target_size,
672 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800673
Tianjie Xuaced5d92016-10-12 10:55:04 -0700674 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800675}
676
Tao Bao039f2da2016-11-22 16:29:50 -0800677// apply_patch_check(filename, [sha1, ...])
678// Returns true if the contents of filename or the temporary copy in the cache partition (if
679// present) have a SHA-1 checksum equal to one of the given sha1 values. sha1 values are
680// specified as 40 hex digits. This function differs from sha1_check(read_file(filename),
681// sha1 [, ...]) in that it knows to check the cache partition copy, so apply_patch_check() will
682// succeed even if the file was corrupted by an interrupted apply_patch() update.
Tianjie Xuc4447322017-03-06 14:44:59 -0800683Value* ApplyPatchCheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
684 if (argv.size() < 1) {
685 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %zu", name,
686 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800687 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800688
Tao Bao039f2da2016-11-22 16:29:50 -0800689 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800690 if (!ReadArgs(state, argv, &args, 0, 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800691 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
692 }
693 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800694
Tao Bao039f2da2016-11-22 16:29:50 -0800695 std::vector<std::string> sha1s;
Tao Baodb56eb02017-03-23 06:34:20 -0700696 if (argv.size() > 1 && !ReadArgs(state, argv, &sha1s, 1, argv.size() - 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800697 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
698 }
699 int result = applypatch_check(filename.c_str(), sha1s);
Tianjie Xuaced5d92016-10-12 10:55:04 -0700700
Tao Bao039f2da2016-11-22 16:29:50 -0800701 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700702}
703
Tao Bao0bbc7642017-03-29 23:57:47 -0700704// This is the updater side handler for ui_print() in edify script. Contents will be sent over to
705// the recovery side for on-screen display.
Tianjie Xuc4447322017-03-06 14:44:59 -0800706Value* UIPrintFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Bao039f2da2016-11-22 16:29:50 -0800707 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800708 if (!ReadArgs(state, argv, &args)) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700709 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tao Bao039f2da2016-11-22 16:29:50 -0800710 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700711
Tao Bao0bbc7642017-03-29 23:57:47 -0700712 std::string buffer = android::base::Join(args, "");
Tao Bao039f2da2016-11-22 16:29:50 -0800713 uiPrint(state, buffer);
714 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700715}
716
Tianjie Xuc4447322017-03-06 14:44:59 -0800717Value* WipeCacheFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
718 if (!argv.empty()) {
719 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
720 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800721 }
722 fprintf(static_cast<UpdaterInfo*>(state->cookie)->cmd_pipe, "wipe_cache\n");
723 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700724}
725
Tianjie Xuc4447322017-03-06 14:44:59 -0800726Value* RunProgramFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
727 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800728 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
729 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700730
Tao Bao039f2da2016-11-22 16:29:50 -0800731 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800732 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800733 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
734 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700735
Tianjie Xuc4447322017-03-06 14:44:59 -0800736 char* args2[argv.size() + 1];
737 for (size_t i = 0; i < argv.size(); i++) {
Tao Bao039f2da2016-11-22 16:29:50 -0800738 args2[i] = &args[i][0];
739 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800740 args2[argv.size()] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700741
Tianjie Xuc4447322017-03-06 14:44:59 -0800742 LOG(INFO) << "about to run program [" << args2[0] << "] with " << argv.size() << " args";
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700743
Tao Bao039f2da2016-11-22 16:29:50 -0800744 pid_t child = fork();
745 if (child == 0) {
746 execv(args2[0], args2);
747 PLOG(ERROR) << "run_program: execv failed";
Tao Bao3da88012017-02-03 13:09:23 -0800748 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800749 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700750
Tao Bao039f2da2016-11-22 16:29:50 -0800751 int status;
752 waitpid(child, &status, 0);
753 if (WIFEXITED(status)) {
754 if (WEXITSTATUS(status) != 0) {
755 LOG(ERROR) << "run_program: child exited with status " << WEXITSTATUS(status);
756 }
757 } else if (WIFSIGNALED(status)) {
758 LOG(ERROR) << "run_program: child terminated by signal " << WTERMSIG(status);
759 }
760
761 return StringValue(std::to_string(status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700762}
763
Doug Zongker512536a2010-02-17 16:11:44 -0800764// sha1_check(data)
765// to return the sha1 of the data (given in the format returned by
766// read_file).
767//
768// sha1_check(data, sha1_hex, [sha1_hex, ...])
769// returns the sha1 of the file if it matches any of the hex
770// strings passed, or "" if it does not equal any of them.
771//
Tianjie Xuc4447322017-03-06 14:44:59 -0800772Value* Sha1CheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
773 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800774 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
775 }
Doug Zongker512536a2010-02-17 16:11:44 -0800776
Tao Bao039f2da2016-11-22 16:29:50 -0800777 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800778 if (!ReadValueArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800779 return nullptr;
780 }
Doug Zongker512536a2010-02-17 16:11:44 -0800781
Tao Bao039f2da2016-11-22 16:29:50 -0800782 if (args[0]->type == VAL_INVALID) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700783 return StringValue("");
Tao Bao039f2da2016-11-22 16:29:50 -0800784 }
785 uint8_t digest[SHA_DIGEST_LENGTH];
786 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
787
Tianjie Xuc4447322017-03-06 14:44:59 -0800788 if (argv.size() == 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800789 return StringValue(print_sha1(digest));
790 }
791
Tianjie Xuc4447322017-03-06 14:44:59 -0800792 for (size_t i = 1; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -0800793 uint8_t arg_digest[SHA_DIGEST_LENGTH];
794 if (args[i]->type != VAL_STRING) {
795 LOG(ERROR) << name << "(): arg " << i << " is not a string; skipping";
796 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
797 // Warn about bad args and skip them.
798 LOG(ERROR) << name << "(): error parsing \"" << args[i]->data << "\" as sha-1; skipping";
799 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
800 // Found a match.
801 return args[i].release();
802 }
803 }
804
805 // Didn't match any of the hex strings; return false.
806 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -0800807}
808
Hristo Bojinovdb314d62010-08-02 10:29:49 -0700809// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -0800810// is actually a FileContents*).
Tianjie Xuc4447322017-03-06 14:44:59 -0800811Value* ReadFileFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
812 if (argv.size() != 1) {
813 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800814 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700815
Tao Bao039f2da2016-11-22 16:29:50 -0800816 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800817 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800818 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
819 }
820 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -0800821
Tao Bao039f2da2016-11-22 16:29:50 -0800822 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -0800823
Tao Bao039f2da2016-11-22 16:29:50 -0800824 FileContents fc;
825 if (LoadFileContents(filename.c_str(), &fc) == 0) {
826 v->type = VAL_BLOB;
827 v->data = std::string(fc.data.begin(), fc.data.end());
828 }
829 return v;
Doug Zongker512536a2010-02-17 16:11:44 -0800830}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700831
Tao Baod0f30882016-11-03 23:52:01 -0700832// write_value(value, filename)
833// Writes 'value' to 'filename'.
834// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
Tianjie Xuc4447322017-03-06 14:44:59 -0800835Value* WriteValueFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
836 if (argv.size() != 2) {
837 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
838 argv.size());
Tao Baod0f30882016-11-03 23:52:01 -0700839 }
840
841 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800842 if (!ReadArgs(state, argv, &args)) {
Tao Baod0f30882016-11-03 23:52:01 -0700843 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
844 }
845
846 const std::string& filename = args[1];
847 if (filename.empty()) {
848 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
849 }
850
851 const std::string& value = args[0];
852 if (!android::base::WriteStringToFile(value, filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800853 PLOG(ERROR) << name << ": Failed to write to \"" << filename << "\"";
Tao Baod0f30882016-11-03 23:52:01 -0700854 return StringValue("");
855 } else {
856 return StringValue("t");
857 }
858}
859
Doug Zongkerc87bab12013-11-25 13:53:25 -0800860// Immediately reboot the device. Recovery is not finished normally,
861// so if you reboot into recovery it will re-start applying the
862// current package (because nothing has cleared the copy of the
863// arguments stored in the BCB).
864//
865// The argument is the partition name passed to the android reboot
866// property. It can be "recovery" to boot from the recovery
867// partition, or "" (empty string) to boot from the regular boot
868// partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800869Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
870 if (argv.size() != 2) {
871 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
872 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800873 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800874
Tao Baobedf5fc2016-11-18 12:01:26 -0800875 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800876 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800877 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
878 }
879 const std::string& filename = args[0];
880 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800881
Tao Baobedf5fc2016-11-18 12:01:26 -0800882 // Zero out the 'command' field of the bootloader message. Leave the rest intact.
883 bootloader_message boot;
884 std::string err;
885 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800886 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800887 return StringValue("");
888 }
889 memset(boot.command, 0, sizeof(boot.command));
890 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800891 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800892 return StringValue("");
893 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800894
Dmitri Plotnikov8706a982017-04-18 08:28:26 -0700895 std::string reboot_cmd = "reboot," + property;
896 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
897 reboot_cmd += ",quiescent";
898 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800899 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800900
Tao Baobedf5fc2016-11-18 12:01:26 -0800901 sleep(5);
902 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800903}
904
905// Store a string value somewhere that future invocations of recovery
906// can access it. This value is called the "stage" and can be used to
907// drive packages that need to do reboots in the middle of
908// installation and keep track of where they are in the multi-stage
909// install.
910//
911// The first argument is the block device for the misc partition
912// ("/misc" in the fstab), which is where this value is stored. The
913// second argument is the string to store; it should not exceed 31
914// bytes.
Tianjie Xuc4447322017-03-06 14:44:59 -0800915Value* SetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
916 if (argv.size() != 2) {
917 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
918 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800919 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800920
Tao Baobedf5fc2016-11-18 12:01:26 -0800921 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800922 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800923 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
924 }
925 const std::string& filename = args[0];
926 const std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800927
Tao Baobedf5fc2016-11-18 12:01:26 -0800928 // Store this value in the misc partition, immediately after the
929 // bootloader message that the main recovery uses to save its
930 // arguments in case of the device restarting midway through
931 // package installation.
932 bootloader_message boot;
933 std::string err;
934 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800935 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800936 return StringValue("");
937 }
938 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage));
939 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800940 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800941 return StringValue("");
942 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800943
Tao Baobedf5fc2016-11-18 12:01:26 -0800944 return StringValue(filename);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800945}
946
947// Return the value most recently saved with SetStageFn. The argument
948// is the block device for the misc partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800949Value* GetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
950 if (argv.size() != 1) {
951 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800952 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800953
Tao Baobedf5fc2016-11-18 12:01:26 -0800954 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800955 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800956 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
957 }
958 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800959
Tao Baobedf5fc2016-11-18 12:01:26 -0800960 bootloader_message boot;
961 std::string err;
962 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800963 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800964 return StringValue("");
965 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800966
Tao Baobedf5fc2016-11-18 12:01:26 -0800967 return StringValue(boot.stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800968}
969
Tianjie Xuc4447322017-03-06 14:44:59 -0800970Value* WipeBlockDeviceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
971 if (argv.size() != 2) {
972 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
973 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800974 }
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800975
Tao Bao358c2ec2016-11-28 11:48:43 -0800976 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800977 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800978 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
979 }
980 const std::string& filename = args[0];
981 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800982
Tao Bao358c2ec2016-11-28 11:48:43 -0800983 size_t len;
984 if (!android::base::ParseUint(len_str.c_str(), &len)) {
985 return nullptr;
986 }
987 unique_fd fd(ota_open(filename.c_str(), O_WRONLY, 0644));
988 // The wipe_block_device function in ext4_utils returns 0 on success and 1
989 // for failure.
990 int status = wipe_block_device(fd, len);
991 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800992}
993
Tianjie Xuc4447322017-03-06 14:44:59 -0800994Value* EnableRebootFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
995 if (!argv.empty()) {
996 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
997 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800998 }
999 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
1000 fprintf(ui->cmd_pipe, "enable_reboot\n");
1001 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -07001002}
1003
Tianjie Xuc4447322017-03-06 14:44:59 -08001004Value* Tune2FsFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
1005 if (argv.empty()) {
1006 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -08001007 }
Michael Rungeacf47db2014-11-21 00:12:28 -08001008
Tao Bao039f2da2016-11-22 16:29:50 -08001009 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -08001010 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -08001011 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
1012 }
Michael Rungeacf47db2014-11-21 00:12:28 -08001013
Tianjie Xuc4447322017-03-06 14:44:59 -08001014 char* args2[argv.size() + 1];
Tao Bao039f2da2016-11-22 16:29:50 -08001015 // Tune2fs expects the program name as its args[0]
1016 args2[0] = const_cast<char*>(name);
1017 if (args2[0] == nullptr) {
1018 return nullptr;
1019 }
Tianjie Xuc4447322017-03-06 14:44:59 -08001020 for (size_t i = 0; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -08001021 args2[i + 1] = &args[i][0];
1022 }
Michael Rungeacf47db2014-11-21 00:12:28 -08001023
Tao Bao039f2da2016-11-22 16:29:50 -08001024 // tune2fs changes the file system parameters on an ext2 file system; it
1025 // returns 0 on success.
Tianjie Xuc4447322017-03-06 14:44:59 -08001026 int result = tune2fs_main(argv.size() + 1, args2);
Tao Bao039f2da2016-11-22 16:29:50 -08001027 if (result != 0) {
1028 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
1029 }
1030 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -08001031}
1032
Doug Zongker9931f7f2009-06-10 14:11:53 -07001033void RegisterInstallFunctions() {
Tao Bao039f2da2016-11-22 16:29:50 -08001034 RegisterFunction("mount", MountFn);
1035 RegisterFunction("is_mounted", IsMountedFn);
1036 RegisterFunction("unmount", UnmountFn);
1037 RegisterFunction("format", FormatFn);
1038 RegisterFunction("show_progress", ShowProgressFn);
1039 RegisterFunction("set_progress", SetProgressFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001040 RegisterFunction("package_extract_dir", PackageExtractDirFn);
1041 RegisterFunction("package_extract_file", PackageExtractFileFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001042
Tao Bao039f2da2016-11-22 16:29:50 -08001043 RegisterFunction("getprop", GetPropFn);
1044 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001045
Tao Bao039f2da2016-11-22 16:29:50 -08001046 RegisterFunction("apply_patch", ApplyPatchFn);
1047 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1048 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001049
Tao Bao039f2da2016-11-22 16:29:50 -08001050 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001051
Tao Bao039f2da2016-11-22 16:29:50 -08001052 RegisterFunction("read_file", ReadFileFn);
1053 RegisterFunction("sha1_check", Sha1CheckFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001054 RegisterFunction("write_value", WriteValueFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001055
Tao Bao039f2da2016-11-22 16:29:50 -08001056 RegisterFunction("wipe_cache", WipeCacheFn);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001057
Tao Bao039f2da2016-11-22 16:29:50 -08001058 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001059
Tao Bao039f2da2016-11-22 16:29:50 -08001060 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001061
Tao Bao039f2da2016-11-22 16:29:50 -08001062 RegisterFunction("reboot_now", RebootNowFn);
1063 RegisterFunction("get_stage", GetStageFn);
1064 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001065
Tao Bao039f2da2016-11-22 16:29:50 -08001066 RegisterFunction("enable_reboot", EnableRebootFn);
1067 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001068}