blob: b865081b493407bfcdf76354c63c04c0c48dda03 [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/wipe.h>
Tao Bao361342c2016-02-08 11:15:50 -080053#include <openssl/sha.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070054#include <selinux/label.h>
55#include <selinux/selinux.h>
Tao Bao09e468f2017-09-29 14:39:33 -070056#include <tune2fs.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"
Elliott Hughes63a31922016-06-09 17:41:22 -070060#include "mounts.h"
Tao Baod33b2f82017-09-28 21:29:11 -070061#include "otafault/ota_io.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070062#include "otautil/DirUtil.h"
Tao Bao1fc5bf32017-10-06 07:43:41 -070063#include "otautil/error_code.h"
Tao Bao09e468f2017-09-29 14:39:33 -070064#include "otautil/print_sha1.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070065#include "updater/updater.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070066
Tao Bao1107d962015-09-09 17:16:55 -070067// Send over the buffer to recovery though the command pipe.
68static void uiPrint(State* state, const std::string& buffer) {
Tao Bao039f2da2016-11-22 16:29:50 -080069 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070070
Tao Bao039f2da2016-11-22 16:29:50 -080071 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
72 // So skip sending empty strings to UI.
73 std::vector<std::string> lines = android::base::Split(buffer, "\n");
74 for (auto& line : lines) {
75 if (!line.empty()) {
76 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
Tao Bao1107d962015-09-09 17:16:55 -070077 }
Tao Bao039f2da2016-11-22 16:29:50 -080078 }
Tao Bao1107d962015-09-09 17:16:55 -070079
Tao Bao039f2da2016-11-22 16:29:50 -080080 // On the updater side, we need to dump the contents to stderr (which has
81 // been redirected to the log file). Because the recovery will only print
82 // the contents to screen when processing pipe command ui_print.
83 LOG(INFO) << buffer;
Michael Runged4a63422014-10-22 19:48:41 -070084}
85
Elliott Hughes83ce7552016-06-30 09:28:42 -070086void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
Tao Bao039f2da2016-11-22 16:29:50 -080087 std::string error_msg;
Tao Bao1107d962015-09-09 17:16:55 -070088
Tao Bao039f2da2016-11-22 16:29:50 -080089 va_list ap;
90 va_start(ap, format);
91 android::base::StringAppendV(&error_msg, format, ap);
92 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -070093
Tao Bao039f2da2016-11-22 16:29:50 -080094 uiPrint(state, error_msg);
Michael Runged4a63422014-10-22 19:48:41 -070095}
96
Doug Zongker3d177d02010-07-01 09:18:44 -070097// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -070098// mount(fs_type, partition_type, location, mount_point, mount_options)
Tianjie Xuc4447322017-03-06 14:44:59 -080099
Doug Zongker3d177d02010-07-01 09:18:44 -0700100// fs_type="ext4" partition_type="EMMC" location=device
Tianjie Xuc4447322017-03-06 14:44:59 -0800101Value* MountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
102 if (argv.size() != 4 && argv.size() != 5) {
103 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %zu", name,
104 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800105 }
106
107 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800108 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800109 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
110 }
111 const std::string& fs_type = args[0];
112 const std::string& partition_type = args[1];
113 const std::string& location = args[2];
114 const std::string& mount_point = args[3];
115 std::string mount_options;
116
Tianjie Xuc4447322017-03-06 14:44:59 -0800117 if (argv.size() == 5) {
Tao Bao039f2da2016-11-22 16:29:50 -0800118 mount_options = args[4];
119 }
120
121 if (fs_type.empty()) {
122 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
123 }
124 if (partition_type.empty()) {
125 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
126 name);
127 }
128 if (location.empty()) {
129 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
130 }
131 if (mount_point.empty()) {
132 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
133 name);
134 }
135
136 {
137 char* secontext = nullptr;
138
139 if (sehandle) {
140 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
141 setfscreatecon(secontext);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700142 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700143
Tao Bao039f2da2016-11-22 16:29:50 -0800144 mkdir(mount_point.c_str(), 0755);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700145
Tao Bao039f2da2016-11-22 16:29:50 -0800146 if (secontext) {
147 freecon(secontext);
148 setfscreatecon(nullptr);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700149 }
Tao Bao039f2da2016-11-22 16:29:50 -0800150 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700151
Tao Bao039f2da2016-11-22 16:29:50 -0800152 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
153 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700154 uiPrintf(state, "%s: Failed to mount %s at %s: %s", name, location.c_str(), mount_point.c_str(),
155 strerror(errno));
Tao Bao039f2da2016-11-22 16:29:50 -0800156 return StringValue("");
157 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700158
Tao Bao039f2da2016-11-22 16:29:50 -0800159 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700160}
161
Doug Zongker8edb00c2009-06-11 17:21:44 -0700162// is_mounted(mount_point)
Tianjie Xuc4447322017-03-06 14:44:59 -0800163Value* IsMountedFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
164 if (argv.size() != 1) {
165 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800166 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700167
Tao Bao039f2da2016-11-22 16:29:50 -0800168 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800169 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800170 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
171 }
172 const std::string& mount_point = args[0];
173 if (mount_point.empty()) {
174 return ErrorAbort(state, kArgsParsingFailure,
175 "mount_point argument to unmount() can't be empty");
176 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700177
Tao Bao039f2da2016-11-22 16:29:50 -0800178 scan_mounted_volumes();
179 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
180 if (vol == nullptr) {
181 return StringValue("");
182 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700183
Tao Bao039f2da2016-11-22 16:29:50 -0800184 return StringValue(mount_point);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700185}
186
Tianjie Xuc4447322017-03-06 14:44:59 -0800187Value* UnmountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
188 if (argv.size() != 1) {
189 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800190 }
191 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800192 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800193 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
194 }
195 const std::string& mount_point = args[0];
196 if (mount_point.empty()) {
197 return ErrorAbort(state, kArgsParsingFailure,
198 "mount_point argument to unmount() can't be empty");
199 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700200
Tao Bao039f2da2016-11-22 16:29:50 -0800201 scan_mounted_volumes();
202 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
203 if (vol == nullptr) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700204 uiPrintf(state, "Failed to unmount %s: No such volume", mount_point.c_str());
Tao Bao039f2da2016-11-22 16:29:50 -0800205 return nullptr;
206 } else {
207 int ret = unmount_mounted_volume(vol);
208 if (ret != 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700209 uiPrintf(state, "Failed to unmount %s: %s", mount_point.c_str(), strerror(errno));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700210 }
Tao Bao039f2da2016-11-22 16:29:50 -0800211 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700212
Tao Bao039f2da2016-11-22 16:29:50 -0800213 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700214}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700215
JP Abgrall37aedb32014-06-16 19:07:39 -0700216static int exec_cmd(const char* path, char* const argv[]) {
Tao Bao039f2da2016-11-22 16:29:50 -0800217 pid_t child;
218 if ((child = vfork()) == 0) {
219 execv(path, argv);
Tao Bao3da88012017-02-03 13:09:23 -0800220 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800221 }
222
223 int status;
224 waitpid(child, &status, 0);
225 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
226 LOG(ERROR) << path << " failed with status " << WEXITSTATUS(status);
227 }
228 return WEXITSTATUS(status);
JP Abgrall37aedb32014-06-16 19:07:39 -0700229}
230
Stephen Smalley779701d2012-02-09 14:13:23 -0500231// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700232//
Tao Bao039f2da2016-11-22 16:29:50 -0800233// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
234// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700235// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800236// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700237// 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 -0800238Value* FormatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
239 if (argv.size() != 5) {
240 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %zu", name,
241 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800242 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500243
Tao Bao039f2da2016-11-22 16:29:50 -0800244 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800245 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800246 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
247 }
248 const std::string& fs_type = args[0];
249 const std::string& partition_type = args[1];
250 const std::string& location = args[2];
251 const std::string& fs_size = args[3];
252 const std::string& mount_point = args[4];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700253
Tao Bao039f2da2016-11-22 16:29:50 -0800254 if (fs_type.empty()) {
255 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
256 }
257 if (partition_type.empty()) {
258 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
259 name);
260 }
261 if (location.empty()) {
262 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
263 }
264 if (mount_point.empty()) {
265 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
266 name);
267 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700268
Tao Bao039f2da2016-11-22 16:29:50 -0800269 int64_t size;
270 if (!android::base::ParseInt(fs_size, &size)) {
271 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
272 fs_size.c_str());
273 }
274
275 if (fs_type == "ext4") {
Jin Qianded2dac2017-04-21 14:36:12 -0700276 const char* mke2fs_argv[] = { "/sbin/mke2fs_static", "-t", "ext4", "-b", "4096",
277 location.c_str(), nullptr, nullptr };
278 std::string size_str;
279 if (size != 0) {
280 size_str = std::to_string(size / 4096LL);
281 mke2fs_argv[6] = size_str.c_str();
282 }
283
284 int status = exec_cmd(mke2fs_argv[0], const_cast<char**>(mke2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800285 if (status != 0) {
Jin Qian502fd1c2017-11-02 11:58:12 -0700286 LOG(ERROR) << name << ": mke2fs failed (" << status << ") on " << location;
287 return StringValue("");
Jin Qianded2dac2017-04-21 14:36:12 -0700288 }
289
Tao Bao338be532017-07-11 16:45:04 -0700290 const char* e2fsdroid_argv[] = { "/sbin/e2fsdroid_static", "-e", "-a", mount_point.c_str(),
Jin Qianded2dac2017-04-21 14:36:12 -0700291 location.c_str(), nullptr };
292 status = exec_cmd(e2fsdroid_argv[0], const_cast<char**>(e2fsdroid_argv));
293 if (status != 0) {
294 LOG(ERROR) << name << ": e2fsdroid failed (" << status << ") on " << location;
Tao Bao039f2da2016-11-22 16:29:50 -0800295 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700296 }
Tao Bao039f2da2016-11-22 16:29:50 -0800297 return StringValue(location);
298 } else if (fs_type == "f2fs") {
299 if (size < 0) {
300 LOG(ERROR) << name << ": fs_size can't be negative for f2fs: " << fs_size;
301 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700302 }
Tao Bao039f2da2016-11-22 16:29:50 -0800303 std::string num_sectors = std::to_string(size / 512);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700304
Tao Bao039f2da2016-11-22 16:29:50 -0800305 const char* f2fs_path = "/sbin/mkfs.f2fs";
Tao Bao397a8132017-05-12 11:02:27 -0700306 const char* f2fs_argv[] = {
307 "mkfs.f2fs", "-t", "-d1", location.c_str(), (size < 512) ? nullptr : num_sectors.c_str(),
308 nullptr
309 };
310 int status = exec_cmd(f2fs_path, const_cast<char**>(f2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800311 if (status != 0) {
312 LOG(ERROR) << name << ": mkfs.f2fs failed (" << status << ") on " << location;
313 return StringValue("");
314 }
315 return StringValue(location);
316 } else {
317 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \""
318 << partition_type << "\"";
319 }
320
321 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700322}
323
Tianjie Xuc4447322017-03-06 14:44:59 -0800324Value* ShowProgressFn(const char* name, State* state,
325 const std::vector<std::unique_ptr<Expr>>& argv) {
326 if (argv.size() != 2) {
327 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
328 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800329 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700330
Tao Bao039f2da2016-11-22 16:29:50 -0800331 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800332 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800333 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
334 }
335 const std::string& frac_str = args[0];
336 const std::string& sec_str = args[1];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700337
Tao Bao039f2da2016-11-22 16:29:50 -0800338 double frac;
339 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
340 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
341 frac_str.c_str());
342 }
343 int sec;
344 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
345 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
346 sec_str.c_str());
347 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700348
Tao Bao039f2da2016-11-22 16:29:50 -0800349 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
350 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700351
Tao Bao039f2da2016-11-22 16:29:50 -0800352 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700353}
354
Tianjie Xuc4447322017-03-06 14:44:59 -0800355Value* SetProgressFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
356 if (argv.size() != 1) {
357 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800358 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700359
Tao Bao039f2da2016-11-22 16:29:50 -0800360 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800361 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800362 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
363 }
364 const std::string& frac_str = args[0];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700365
Tao Bao039f2da2016-11-22 16:29:50 -0800366 double frac;
367 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
368 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
369 frac_str.c_str());
370 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700371
Tao Bao039f2da2016-11-22 16:29:50 -0800372 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
373 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700374
Tao Bao039f2da2016-11-22 16:29:50 -0800375 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700376}
377
Tao Baoef0eb3b2016-11-14 21:29:52 -0800378// package_extract_file(package_file[, dest_file])
379// Extracts a single package_file from the update package and writes it to dest_file,
380// overwriting existing files if necessary. Without the dest_file argument, returns the
381// contents of the package file as a binary blob.
Tianjie Xuc4447322017-03-06 14:44:59 -0800382Value* PackageExtractFileFn(const char* name, State* state,
383 const std::vector<std::unique_ptr<Expr>>& argv) {
384 if (argv.size() < 1 || argv.size() > 2) {
385 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %zu", name,
386 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800387 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700388
Tianjie Xuc4447322017-03-06 14:44:59 -0800389 if (argv.size() == 2) {
Tao Baoef0eb3b2016-11-14 21:29:52 -0800390 // The two-argument version extracts to a file.
391
392 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800393 if (!ReadArgs(state, argv, &args)) {
394 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
395 argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700396 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800397 const std::string& zip_path = args[0];
398 const std::string& dest_path = args[1];
Doug Zongker43772d22014-06-09 14:13:19 -0700399
Tao Baoef0eb3b2016-11-14 21:29:52 -0800400 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
401 ZipString zip_string_path(zip_path.c_str());
402 ZipEntry entry;
403 if (FindEntry(za, zip_string_path, &entry) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800404 LOG(ERROR) << name << ": no " << zip_path << " in package";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800405 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700406 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800407
Tao Bao358c2ec2016-11-28 11:48:43 -0800408 unique_fd fd(TEMP_FAILURE_RETRY(
409 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
Tao Baoef0eb3b2016-11-14 21:29:52 -0800410 if (fd == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800411 PLOG(ERROR) << name << ": can't open " << dest_path << " for write";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800412 return StringValue("");
413 }
414
415 bool success = true;
416 int32_t ret = ExtractEntryToFile(za, &entry, fd);
417 if (ret != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800418 LOG(ERROR) << name << ": Failed to extract entry \"" << zip_path << "\" ("
419 << entry.uncompressed_length << " bytes) to \"" << dest_path
420 << "\": " << ErrorCodeString(ret);
Tao Baoef0eb3b2016-11-14 21:29:52 -0800421 success = false;
422 }
423 if (ota_fsync(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800424 PLOG(ERROR) << "fsync of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800425 success = false;
426 }
427 if (ota_close(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800428 PLOG(ERROR) << "close of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800429 success = false;
430 }
431
432 return StringValue(success ? "t" : "");
433 } else {
434 // The one-argument version returns the contents of the file as the result.
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());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800440 }
441 const std::string& zip_path = args[0];
442
443 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
444 ZipString zip_string_path(zip_path.c_str());
445 ZipEntry entry;
446 if (FindEntry(za, zip_string_path, &entry) != 0) {
447 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
448 zip_path.c_str());
449 }
450
451 std::string buffer;
452 buffer.resize(entry.uncompressed_length);
453
454 int32_t ret = ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
455 if (ret != 0) {
456 return ErrorAbort(state, kPackageExtractFileFailure,
457 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
458 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
459 }
460
461 return new Value(VAL_BLOB, buffer);
462 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700463}
464
Tianjie Xuc4447322017-03-06 14:44:59 -0800465Value* GetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
466 if (argv.size() != 1) {
467 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800468 }
469 std::string key;
470 if (!Evaluate(state, argv[0], &key)) {
471 return nullptr;
472 }
473 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700474
Tao Bao039f2da2016-11-22 16:29:50 -0800475 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700476}
477
Doug Zongker47cace92009-06-18 10:11:50 -0700478// file_getprop(file, key)
479//
480// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700481// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700482// and returns the value for 'key' (or "" if it isn't defined).
Tianjie Xuc4447322017-03-06 14:44:59 -0800483Value* FileGetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
484 if (argv.size() != 2) {
485 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
486 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800487 }
488
489 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800490 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800491 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
492 }
493 const std::string& filename = args[0];
494 const std::string& key = args[1];
495
496 struct stat st;
497 if (stat(filename.c_str(), &st) < 0) {
498 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
499 filename.c_str(), strerror(errno));
500 }
501
502 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
503 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
504 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
505 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
506 }
507
508 std::string buffer(st.st_size, '\0');
509 unique_file f(ota_fopen(filename.c_str(), "rb"));
510 if (f == nullptr) {
511 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name, filename.c_str(),
512 strerror(errno));
513 }
514
515 if (ota_fread(&buffer[0], 1, st.st_size, f.get()) != static_cast<size_t>(st.st_size)) {
516 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s", name,
517 static_cast<size_t>(st.st_size), filename.c_str());
518 return nullptr;
519 }
520
521 ota_fclose(f);
522
523 std::vector<std::string> lines = android::base::Split(buffer, "\n");
524 for (size_t i = 0; i < lines.size(); i++) {
525 std::string line = android::base::Trim(lines[i]);
526
527 // comment or blank line: skip to next line
528 if (line.empty() || line[0] == '#') {
529 continue;
530 }
531 size_t equal_pos = line.find('=');
532 if (equal_pos == std::string::npos) {
533 continue;
Tao Bao51d516e2016-11-03 14:49:01 -0700534 }
535
Tao Bao358c2ec2016-11-28 11:48:43 -0800536 // trim whitespace between key and '='
537 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700538
Tao Bao358c2ec2016-11-28 11:48:43 -0800539 // not the key we're looking for
540 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700541
Tao Bao358c2ec2016-11-28 11:48:43 -0800542 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
543 }
Doug Zongker47cace92009-06-18 10:11:50 -0700544
Tao Bao358c2ec2016-11-28 11:48:43 -0800545 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700546}
547
Doug Zongker8edb00c2009-06-11 17:21:44 -0700548// apply_patch_space(bytes)
Tianjie Xuc4447322017-03-06 14:44:59 -0800549Value* ApplyPatchSpaceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
550 if (argv.size() != 1) {
551 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 args, got %zu", name,
552 argv.size());
553 }
Tao Bao039f2da2016-11-22 16:29:50 -0800554 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800555 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800556 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
557 }
558 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800559
Tao Bao039f2da2016-11-22 16:29:50 -0800560 size_t bytes;
561 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
562 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
563 name, bytes_str.c_str());
564 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800565
Tao Bao039f2da2016-11-22 16:29:50 -0800566 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800567}
568
Tao Bao039f2da2016-11-22 16:29:50 -0800569// apply_patch(src_file, tgt_file, tgt_sha1, tgt_size, patch1_sha1, patch1_blob, [...])
570// Applies a binary patch to the src_file to produce the tgt_file. If the desired target is the
571// same as the source, pass "-" for tgt_file. tgt_sha1 and tgt_size are the expected final SHA1
572// hash and size of the target file. The remaining arguments must come in pairs: a SHA1 hash (a
573// 40-character hex string) and a blob. The blob is the patch to be applied when the source
574// file's current contents have the given SHA1.
575//
576// The patching is done in a safe manner that guarantees the target file either has the desired
577// SHA1 hash and size, or it is untouched -- it will not be left in an unrecoverable intermediate
578// state. If the process is interrupted during patching, the target file may be in an intermediate
579// state; a copy exists in the cache partition so restarting the update can successfully update
580// the file.
Tianjie Xuc4447322017-03-06 14:44:59 -0800581Value* ApplyPatchFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
582 if (argv.size() < 6 || (argv.size() % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700583 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xuc4447322017-03-06 14:44:59 -0800584 "even number, got %zu", name, argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700585 }
586
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700587 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800588 if (!ReadArgs(state, argv, &args, 0, 4)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700589 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700590 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700591 const std::string& source_filename = args[0];
592 const std::string& target_filename = args[1];
593 const std::string& target_sha1 = args[2];
594 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700595
Tao Baob15fd222015-09-24 11:10:51 -0700596 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700597 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
598 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
599 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800600 }
601
Tianjie Xuc4447322017-03-06 14:44:59 -0800602 int patchcount = (argv.size()-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700603 std::vector<std::unique_ptr<Value>> arg_values;
Tianjie Xuc4447322017-03-06 14:44:59 -0800604 if (!ReadValueArgs(state, argv, &arg_values, 4, argv.size() - 4)) {
Yabin Cui64be2132016-02-03 18:16:02 -0800605 return nullptr;
606 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700607
Yabin Cui64be2132016-02-03 18:16:02 -0800608 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700609 if (arg_values[i * 2]->type != VAL_STRING) {
610 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
611 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800612 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700613 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
614 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
615 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800616 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700617 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700618
Tianjie Xuaced5d92016-10-12 10:55:04 -0700619 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700620 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800621 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700622 patch_sha_str.push_back(arg_values[i * 2]->data);
623 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700624 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800625
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700626 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
627 target_sha1.c_str(), target_size,
628 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800629
Tianjie Xuaced5d92016-10-12 10:55:04 -0700630 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800631}
632
Tao Bao039f2da2016-11-22 16:29:50 -0800633// apply_patch_check(filename, [sha1, ...])
634// Returns true if the contents of filename or the temporary copy in the cache partition (if
635// present) have a SHA-1 checksum equal to one of the given sha1 values. sha1 values are
636// specified as 40 hex digits. This function differs from sha1_check(read_file(filename),
637// sha1 [, ...]) in that it knows to check the cache partition copy, so apply_patch_check() will
638// succeed even if the file was corrupted by an interrupted apply_patch() update.
Tianjie Xuc4447322017-03-06 14:44:59 -0800639Value* ApplyPatchCheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
640 if (argv.size() < 1) {
641 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %zu", name,
642 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800643 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800644
Tao Bao039f2da2016-11-22 16:29:50 -0800645 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800646 if (!ReadArgs(state, argv, &args, 0, 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800647 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
648 }
649 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800650
Tao Bao039f2da2016-11-22 16:29:50 -0800651 std::vector<std::string> sha1s;
Tao Baodb56eb02017-03-23 06:34:20 -0700652 if (argv.size() > 1 && !ReadArgs(state, argv, &sha1s, 1, argv.size() - 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800653 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
654 }
655 int result = applypatch_check(filename.c_str(), sha1s);
Tianjie Xuaced5d92016-10-12 10:55:04 -0700656
Tao Bao039f2da2016-11-22 16:29:50 -0800657 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700658}
659
Tao Bao0bbc7642017-03-29 23:57:47 -0700660// This is the updater side handler for ui_print() in edify script. Contents will be sent over to
661// the recovery side for on-screen display.
Tianjie Xuc4447322017-03-06 14:44:59 -0800662Value* UIPrintFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Bao039f2da2016-11-22 16:29:50 -0800663 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800664 if (!ReadArgs(state, argv, &args)) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700665 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tao Bao039f2da2016-11-22 16:29:50 -0800666 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700667
Tao Bao0bbc7642017-03-29 23:57:47 -0700668 std::string buffer = android::base::Join(args, "");
Tao Bao039f2da2016-11-22 16:29:50 -0800669 uiPrint(state, buffer);
670 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700671}
672
Tianjie Xuc4447322017-03-06 14:44:59 -0800673Value* WipeCacheFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
674 if (!argv.empty()) {
675 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
676 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800677 }
678 fprintf(static_cast<UpdaterInfo*>(state->cookie)->cmd_pipe, "wipe_cache\n");
679 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700680}
681
Tianjie Xuc4447322017-03-06 14:44:59 -0800682Value* RunProgramFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
683 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800684 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
685 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700686
Tao Bao039f2da2016-11-22 16:29:50 -0800687 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800688 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800689 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
690 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700691
Tianjie Xuc4447322017-03-06 14:44:59 -0800692 char* args2[argv.size() + 1];
693 for (size_t i = 0; i < argv.size(); i++) {
Tao Bao039f2da2016-11-22 16:29:50 -0800694 args2[i] = &args[i][0];
695 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800696 args2[argv.size()] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700697
Tianjie Xuc4447322017-03-06 14:44:59 -0800698 LOG(INFO) << "about to run program [" << args2[0] << "] with " << argv.size() << " args";
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700699
Tao Bao039f2da2016-11-22 16:29:50 -0800700 pid_t child = fork();
701 if (child == 0) {
702 execv(args2[0], args2);
703 PLOG(ERROR) << "run_program: execv failed";
Tao Bao3da88012017-02-03 13:09:23 -0800704 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800705 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700706
Tao Bao039f2da2016-11-22 16:29:50 -0800707 int status;
708 waitpid(child, &status, 0);
709 if (WIFEXITED(status)) {
710 if (WEXITSTATUS(status) != 0) {
711 LOG(ERROR) << "run_program: child exited with status " << WEXITSTATUS(status);
712 }
713 } else if (WIFSIGNALED(status)) {
714 LOG(ERROR) << "run_program: child terminated by signal " << WTERMSIG(status);
715 }
716
717 return StringValue(std::to_string(status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700718}
719
Doug Zongker512536a2010-02-17 16:11:44 -0800720// sha1_check(data)
721// to return the sha1 of the data (given in the format returned by
722// read_file).
723//
724// sha1_check(data, sha1_hex, [sha1_hex, ...])
725// returns the sha1 of the file if it matches any of the hex
726// strings passed, or "" if it does not equal any of them.
727//
Tianjie Xuc4447322017-03-06 14:44:59 -0800728Value* Sha1CheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
729 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800730 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
731 }
Doug Zongker512536a2010-02-17 16:11:44 -0800732
Tao Bao039f2da2016-11-22 16:29:50 -0800733 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800734 if (!ReadValueArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800735 return nullptr;
736 }
Doug Zongker512536a2010-02-17 16:11:44 -0800737
Tao Bao039f2da2016-11-22 16:29:50 -0800738 if (args[0]->type == VAL_INVALID) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700739 return StringValue("");
Tao Bao039f2da2016-11-22 16:29:50 -0800740 }
741 uint8_t digest[SHA_DIGEST_LENGTH];
742 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
743
Tianjie Xuc4447322017-03-06 14:44:59 -0800744 if (argv.size() == 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800745 return StringValue(print_sha1(digest));
746 }
747
Tianjie Xuc4447322017-03-06 14:44:59 -0800748 for (size_t i = 1; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -0800749 uint8_t arg_digest[SHA_DIGEST_LENGTH];
750 if (args[i]->type != VAL_STRING) {
751 LOG(ERROR) << name << "(): arg " << i << " is not a string; skipping";
752 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
753 // Warn about bad args and skip them.
754 LOG(ERROR) << name << "(): error parsing \"" << args[i]->data << "\" as sha-1; skipping";
755 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
756 // Found a match.
757 return args[i].release();
758 }
759 }
760
761 // Didn't match any of the hex strings; return false.
762 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -0800763}
764
Hristo Bojinovdb314d62010-08-02 10:29:49 -0700765// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -0800766// is actually a FileContents*).
Tianjie Xuc4447322017-03-06 14:44:59 -0800767Value* ReadFileFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
768 if (argv.size() != 1) {
769 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800770 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700771
Tao Bao039f2da2016-11-22 16:29:50 -0800772 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800773 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800774 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
775 }
776 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -0800777
Tao Bao039f2da2016-11-22 16:29:50 -0800778 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -0800779
Tao Bao039f2da2016-11-22 16:29:50 -0800780 FileContents fc;
781 if (LoadFileContents(filename.c_str(), &fc) == 0) {
782 v->type = VAL_BLOB;
783 v->data = std::string(fc.data.begin(), fc.data.end());
784 }
785 return v;
Doug Zongker512536a2010-02-17 16:11:44 -0800786}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700787
Tao Baod0f30882016-11-03 23:52:01 -0700788// write_value(value, filename)
789// Writes 'value' to 'filename'.
790// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
Tianjie Xuc4447322017-03-06 14:44:59 -0800791Value* WriteValueFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
792 if (argv.size() != 2) {
793 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
794 argv.size());
Tao Baod0f30882016-11-03 23:52:01 -0700795 }
796
797 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800798 if (!ReadArgs(state, argv, &args)) {
Tao Baod0f30882016-11-03 23:52:01 -0700799 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
800 }
801
802 const std::string& filename = args[1];
803 if (filename.empty()) {
804 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
805 }
806
807 const std::string& value = args[0];
808 if (!android::base::WriteStringToFile(value, filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800809 PLOG(ERROR) << name << ": Failed to write to \"" << filename << "\"";
Tao Baod0f30882016-11-03 23:52:01 -0700810 return StringValue("");
811 } else {
812 return StringValue("t");
813 }
814}
815
Doug Zongkerc87bab12013-11-25 13:53:25 -0800816// Immediately reboot the device. Recovery is not finished normally,
817// so if you reboot into recovery it will re-start applying the
818// current package (because nothing has cleared the copy of the
819// arguments stored in the BCB).
820//
821// The argument is the partition name passed to the android reboot
822// property. It can be "recovery" to boot from the recovery
823// partition, or "" (empty string) to boot from the regular boot
824// partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800825Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
826 if (argv.size() != 2) {
827 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
828 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800829 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800830
Tao Baobedf5fc2016-11-18 12:01:26 -0800831 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800832 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800833 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
834 }
835 const std::string& filename = args[0];
836 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800837
Tao Baobedf5fc2016-11-18 12:01:26 -0800838 // Zero out the 'command' field of the bootloader message. Leave the rest intact.
839 bootloader_message boot;
840 std::string err;
841 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800842 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800843 return StringValue("");
844 }
845 memset(boot.command, 0, sizeof(boot.command));
846 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800847 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800848 return StringValue("");
849 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800850
Dmitri Plotnikov8706a982017-04-18 08:28:26 -0700851 std::string reboot_cmd = "reboot," + property;
852 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
853 reboot_cmd += ",quiescent";
854 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800855 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800856
Tao Baobedf5fc2016-11-18 12:01:26 -0800857 sleep(5);
858 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800859}
860
861// Store a string value somewhere that future invocations of recovery
862// can access it. This value is called the "stage" and can be used to
863// drive packages that need to do reboots in the middle of
864// installation and keep track of where they are in the multi-stage
865// install.
866//
867// The first argument is the block device for the misc partition
868// ("/misc" in the fstab), which is where this value is stored. The
869// second argument is the string to store; it should not exceed 31
870// bytes.
Tianjie Xuc4447322017-03-06 14:44:59 -0800871Value* SetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
872 if (argv.size() != 2) {
873 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
874 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800875 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800876
Tao Baobedf5fc2016-11-18 12:01:26 -0800877 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800878 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800879 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
880 }
881 const std::string& filename = args[0];
882 const std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800883
Tao Baobedf5fc2016-11-18 12:01:26 -0800884 // Store this value in the misc partition, immediately after the
885 // bootloader message that the main recovery uses to save its
886 // arguments in case of the device restarting midway through
887 // package installation.
888 bootloader_message boot;
889 std::string err;
890 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800891 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800892 return StringValue("");
893 }
894 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage));
895 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800896 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800897 return StringValue("");
898 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800899
Tao Baobedf5fc2016-11-18 12:01:26 -0800900 return StringValue(filename);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800901}
902
903// Return the value most recently saved with SetStageFn. The argument
904// is the block device for the misc partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800905Value* GetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
906 if (argv.size() != 1) {
907 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800908 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800909
Tao Baobedf5fc2016-11-18 12:01:26 -0800910 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800911 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800912 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
913 }
914 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800915
Tao Baobedf5fc2016-11-18 12:01:26 -0800916 bootloader_message boot;
917 std::string err;
918 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800919 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800920 return StringValue("");
921 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800922
Tao Baobedf5fc2016-11-18 12:01:26 -0800923 return StringValue(boot.stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800924}
925
Tianjie Xuc4447322017-03-06 14:44:59 -0800926Value* WipeBlockDeviceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
927 if (argv.size() != 2) {
928 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
929 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800930 }
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800931
Tao Bao358c2ec2016-11-28 11:48:43 -0800932 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800933 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800934 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
935 }
936 const std::string& filename = args[0];
937 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800938
Tao Bao358c2ec2016-11-28 11:48:43 -0800939 size_t len;
940 if (!android::base::ParseUint(len_str.c_str(), &len)) {
941 return nullptr;
942 }
943 unique_fd fd(ota_open(filename.c_str(), O_WRONLY, 0644));
944 // The wipe_block_device function in ext4_utils returns 0 on success and 1
945 // for failure.
946 int status = wipe_block_device(fd, len);
947 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800948}
949
Tianjie Xuc4447322017-03-06 14:44:59 -0800950Value* EnableRebootFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
951 if (!argv.empty()) {
952 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
953 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800954 }
955 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
956 fprintf(ui->cmd_pipe, "enable_reboot\n");
957 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -0700958}
959
Tianjie Xuc4447322017-03-06 14:44:59 -0800960Value* Tune2FsFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
961 if (argv.empty()) {
962 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800963 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800964
Tao Bao039f2da2016-11-22 16:29:50 -0800965 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800966 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800967 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
968 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800969
Tianjie Xuc4447322017-03-06 14:44:59 -0800970 char* args2[argv.size() + 1];
Tao Bao039f2da2016-11-22 16:29:50 -0800971 // Tune2fs expects the program name as its args[0]
972 args2[0] = const_cast<char*>(name);
973 if (args2[0] == nullptr) {
974 return nullptr;
975 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800976 for (size_t i = 0; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -0800977 args2[i + 1] = &args[i][0];
978 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800979
Tao Bao039f2da2016-11-22 16:29:50 -0800980 // tune2fs changes the file system parameters on an ext2 file system; it
981 // returns 0 on success.
Tianjie Xuc4447322017-03-06 14:44:59 -0800982 int result = tune2fs_main(argv.size() + 1, args2);
Tao Bao039f2da2016-11-22 16:29:50 -0800983 if (result != 0) {
984 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
985 }
986 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -0800987}
988
Doug Zongker9931f7f2009-06-10 14:11:53 -0700989void RegisterInstallFunctions() {
Tao Bao039f2da2016-11-22 16:29:50 -0800990 RegisterFunction("mount", MountFn);
991 RegisterFunction("is_mounted", IsMountedFn);
992 RegisterFunction("unmount", UnmountFn);
993 RegisterFunction("format", FormatFn);
994 RegisterFunction("show_progress", ShowProgressFn);
995 RegisterFunction("set_progress", SetProgressFn);
Tao Bao039f2da2016-11-22 16:29:50 -0800996 RegisterFunction("package_extract_file", PackageExtractFileFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700997
Tao Bao039f2da2016-11-22 16:29:50 -0800998 RegisterFunction("getprop", GetPropFn);
999 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001000
Tao Bao039f2da2016-11-22 16:29:50 -08001001 RegisterFunction("apply_patch", ApplyPatchFn);
1002 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1003 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001004
Tao Bao039f2da2016-11-22 16:29:50 -08001005 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001006
Tao Bao039f2da2016-11-22 16:29:50 -08001007 RegisterFunction("read_file", ReadFileFn);
1008 RegisterFunction("sha1_check", Sha1CheckFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001009 RegisterFunction("write_value", WriteValueFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001010
Tao Bao039f2da2016-11-22 16:29:50 -08001011 RegisterFunction("wipe_cache", WipeCacheFn);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001012
Tao Bao039f2da2016-11-22 16:29:50 -08001013 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001014
Tao Bao039f2da2016-11-22 16:29:50 -08001015 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001016
Tao Bao039f2da2016-11-22 16:29:50 -08001017 RegisterFunction("reboot_now", RebootNowFn);
1018 RegisterFunction("get_stage", GetStageFn);
1019 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001020
Tao Bao039f2da2016-11-22 16:29:50 -08001021 RegisterFunction("enable_reboot", EnableRebootFn);
1022 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001023}