blob: 3adb37f950ff9ee53e486f4e71ffa446eafd7b55 [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 Bao1bf17722016-11-03 23:52:01 -070039#include <string>
Yabin Cui64be2132016-02-03 18:16:02 -080040#include <vector>
41
Tao Bao1bf17722016-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>
Elliott Hughes4b166f02015-12-04 15:30:20 -080045#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 Estepff6df892015-12-15 16:04:53 -080062#include "ota_io.h"
Ethan Yonker8373cfe2017-09-08 06:50:54 -050063
Doug Zongker512536a2010-02-17 16:11:44 -080064#include "applypatch/applypatch.h"
Dees_Troy512376c2013-09-03 19:39:41 +000065#include "flashutils/flashutils.h"
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -080066#include "install.h"
Ethan Yonker7e1b9862015-03-19 14:10:01 -050067#ifdef HAVE_LIBTUNE2FS
Michael Rungeb278c252014-11-21 00:12:28 -080068#include "tune2fs.h"
Ethan Yonker7e1b9862015-03-19 14:10:01 -050069#endif
Doug Zongker8edb00c2009-06-11 17:21:44 -070070
Doug Zongker3d177d02010-07-01 09:18:44 -070071#ifdef USE_EXT4
72#include "make_ext4fs.h"
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -080073#include "wipe.h"
Doug Zongker3d177d02010-07-01 09:18:44 -070074#endif
75
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070076#include "otautil/DirUtil.h"
77#include "otautil/ZipUtil.h"
Tao Bao361342c2016-02-08 11:15:50 -080078#include "print_sha1.h"
Michael Rungeacf47db2014-11-21 00:12:28 -080079#include "tune2fs.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070080#include "updater/updater.h"
Doug Zongker52b40362014-02-10 15:30:30 -080081
Tao Bao1107d962015-09-09 17:16:55 -070082// Send over the buffer to recovery though the command pipe.
83static void uiPrint(State* state, const std::string& buffer) {
Tao Bao039f2da2016-11-22 16:29:50 -080084 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070085
Tao Bao039f2da2016-11-22 16:29:50 -080086 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
87 // So skip sending empty strings to UI.
88 std::vector<std::string> lines = android::base::Split(buffer, "\n");
89 for (auto& line : lines) {
90 if (!line.empty()) {
91 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
Michael Runge75480252014-10-22 19:48:41 -070092 }
Tao Bao039f2da2016-11-22 16:29:50 -080093 }
Tao Bao1107d962015-09-09 17:16:55 -070094
Tao Bao039f2da2016-11-22 16:29:50 -080095 // On the updater side, we need to dump the contents to stderr (which has
96 // been redirected to the log file). Because the recovery will only print
97 // the contents to screen when processing pipe command ui_print.
98 LOG(INFO) << buffer;
Michael Runge75480252014-10-22 19:48:41 -070099}
100
Elliott Hughes83ce7552016-06-30 09:28:42 -0700101void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
Tao Bao039f2da2016-11-22 16:29:50 -0800102 std::string error_msg;
Tao Bao1107d962015-09-09 17:16:55 -0700103
Tao Bao039f2da2016-11-22 16:29:50 -0800104 va_list ap;
105 va_start(ap, format);
106 android::base::StringAppendV(&error_msg, format, ap);
107 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -0700108
Tao Bao039f2da2016-11-22 16:29:50 -0800109 uiPrint(state, error_msg);
Michael Runge75480252014-10-22 19:48:41 -0700110}
111
Tianjie Xud75003d2016-11-04 11:31:29 -0700112static bool is_dir(const std::string& dirpath) {
113 struct stat st;
114 return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700115}
116
Doug Zongkera23075f2012-08-06 16:19:09 -0700117// Create all parent directories of name, if necessary.
Tianjie Xud75003d2016-11-04 11:31:29 -0700118static bool make_parents(const std::string& name) {
Tao Bao039f2da2016-11-22 16:29:50 -0800119 size_t prev_end = 0;
120 while (prev_end < name.size()) {
121 size_t next_end = name.find('/', prev_end + 1);
122 if (next_end == std::string::npos) {
123 break;
Doug Zongkera23075f2012-08-06 16:19:09 -0700124 }
Tao Bao039f2da2016-11-22 16:29:50 -0800125 std::string dir_path = name.substr(0, next_end);
126 if (!is_dir(dir_path)) {
127 int result = mkdir(dir_path.c_str(), 0700);
128 if (result != 0) {
129 PLOG(ERROR) << "failed to mkdir " << dir_path << " when make parents for " << name;
130 return false;
131 }
132
133 LOG(INFO) << "created [" << dir_path << "]";
134 }
135 prev_end = next_end;
136 }
137 return true;
Doug Zongkera23075f2012-08-06 16:19:09 -0700138}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700139
Doug Zongker9931f7f2009-06-10 14:11:53 -0700140// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -0700141// mount(fs_type, partition_type, location, mount_point, mount_options)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700142
Doug Zongker9931f7f2009-06-10 14:11:53 -0700143// fs_type="ext4" partition_type="EMMC" location=device
Tianjie Xuc4447322017-03-06 14:44:59 -0800144Value* MountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
145 if (argv.size() != 4 && argv.size() != 5) {
146 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %zu", name,
147 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800148 }
149
150 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800151 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800152 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
153 }
154 const std::string& fs_type = args[0];
155 const std::string& partition_type = args[1];
156 const std::string& location = args[2];
157 const std::string& mount_point = args[3];
158 std::string mount_options;
159
Tianjie Xuc4447322017-03-06 14:44:59 -0800160 if (argv.size() == 5) {
Tao Bao039f2da2016-11-22 16:29:50 -0800161 mount_options = args[4];
162 }
163
164 if (fs_type.empty()) {
165 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
166 }
167 if (partition_type.empty()) {
168 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
169 name);
170 }
171 if (location.empty()) {
172 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
173 }
174 if (mount_point.empty()) {
175 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
176 name);
177 }
178
179 {
180 char* secontext = nullptr;
181
182 if (sehandle) {
183 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
184 setfscreatecon(secontext);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700185 }
186
Tao Bao039f2da2016-11-22 16:29:50 -0800187 mkdir(mount_point.c_str(), 0755);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700188
Tao Bao039f2da2016-11-22 16:29:50 -0800189 if (secontext) {
190 freecon(secontext);
191 setfscreatecon(nullptr);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700192 }
Tao Bao039f2da2016-11-22 16:29:50 -0800193 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700194
Tao Bao039f2da2016-11-22 16:29:50 -0800195 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
196 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
197 uiPrintf(state, "%s: failed to mount %s at %s: %s\n", name, location.c_str(),
198 mount_point.c_str(), strerror(errno));
199 return StringValue("");
200 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700201
Tao Bao039f2da2016-11-22 16:29:50 -0800202 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700203}
204
Doug Zongker9931f7f2009-06-10 14:11:53 -0700205// is_mounted(mount_point)
Tianjie Xuc4447322017-03-06 14:44:59 -0800206Value* IsMountedFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
207 if (argv.size() != 1) {
208 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800209 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700210
Tao Bao039f2da2016-11-22 16:29:50 -0800211 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800212 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800213 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
214 }
215 const std::string& mount_point = args[0];
216 if (mount_point.empty()) {
217 return ErrorAbort(state, kArgsParsingFailure,
218 "mount_point argument to unmount() can't be empty");
219 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700220
Tao Bao039f2da2016-11-22 16:29:50 -0800221 scan_mounted_volumes();
222 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
223 if (vol == nullptr) {
224 return StringValue("");
225 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700226
Tao Bao039f2da2016-11-22 16:29:50 -0800227 return StringValue(mount_point);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700228}
229
Tianjie Xuc4447322017-03-06 14:44:59 -0800230Value* UnmountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
231 if (argv.size() != 1) {
232 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800233 }
234 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800235 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800236 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
237 }
238 const std::string& mount_point = args[0];
239 if (mount_point.empty()) {
240 return ErrorAbort(state, kArgsParsingFailure,
241 "mount_point argument to unmount() can't be empty");
242 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700243
Tao Bao039f2da2016-11-22 16:29:50 -0800244 scan_mounted_volumes();
245 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
246 if (vol == nullptr) {
247 uiPrintf(state, "unmount of %s failed; no such volume\n", mount_point.c_str());
248 return nullptr;
249 } else {
250 int ret = unmount_mounted_volume(vol);
251 if (ret != 0) {
252 uiPrintf(state, "unmount of %s failed (%d): %s\n", mount_point.c_str(), ret, strerror(errno));
Nick Kralevich6a821fe2014-10-23 20:36:42 -0700253 }
Tao Bao039f2da2016-11-22 16:29:50 -0800254 }
Nick Kralevich6a821fe2014-10-23 20:36:42 -0700255
Tao Bao039f2da2016-11-22 16:29:50 -0800256 return StringValue(mount_point);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700257}
258
JP Abgrall37aedb32014-06-16 19:07:39 -0700259static int exec_cmd(const char* path, char* const argv[]) {
Tao Bao039f2da2016-11-22 16:29:50 -0800260 pid_t child;
261 if ((child = vfork()) == 0) {
262 execv(path, argv);
Tao Bao3da88012017-02-03 13:09:23 -0800263 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800264 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700265
Tao Bao039f2da2016-11-22 16:29:50 -0800266 int status;
267 waitpid(child, &status, 0);
268 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
269 LOG(ERROR) << path << " failed with status " << WEXITSTATUS(status);
270 }
271 return WEXITSTATUS(status);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700272}
273
Doug Zongker9931f7f2009-06-10 14:11:53 -0700274// format(fs_type, partition_type, location, fs_size, mount_point)
275//
Tao Bao039f2da2016-11-22 16:29:50 -0800276// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
277// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700278// if fs_size == 0, then make fs uses the entire partition.
Doug Zongker9931f7f2009-06-10 14:11:53 -0700279// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700280// 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 -0800281Value* FormatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
282 if (argv.size() != 5) {
283 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %zu", name,
284 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800285 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700286
Tao Bao039f2da2016-11-22 16:29:50 -0800287 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800288 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800289 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
290 }
291 const std::string& fs_type = args[0];
292 const std::string& partition_type = args[1];
293 const std::string& location = args[2];
294 const std::string& fs_size = args[3];
295 const std::string& mount_point = args[4];
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700296
Tao Bao039f2da2016-11-22 16:29:50 -0800297 if (fs_type.empty()) {
298 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
299 }
300 if (partition_type.empty()) {
301 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
302 name);
303 }
304 if (location.empty()) {
305 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
306 }
307 if (mount_point.empty()) {
308 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
309 name);
310 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700311
Tao Bao039f2da2016-11-22 16:29:50 -0800312 int64_t size;
313 if (!android::base::ParseInt(fs_size, &size)) {
314 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
315 fs_size.c_str());
316 }
317
318 if (fs_type == "ext4") {
319 int status = make_ext4fs(location.c_str(), size, mount_point.c_str(), sehandle);
320 if (status != 0) {
321 LOG(ERROR) << name << ": make_ext4fs failed (" << status << ") on " << location;
322 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700323 }
Tao Bao039f2da2016-11-22 16:29:50 -0800324 return StringValue(location);
325 } else if (fs_type == "f2fs") {
326 if (size < 0) {
327 LOG(ERROR) << name << ": fs_size can't be negative for f2fs: " << fs_size;
328 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700329 }
Tao Bao039f2da2016-11-22 16:29:50 -0800330 std::string num_sectors = std::to_string(size / 512);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700331
Tao Bao039f2da2016-11-22 16:29:50 -0800332 const char* f2fs_path = "/sbin/mkfs.f2fs";
333 const char* const f2fs_argv[] = { "mkfs.f2fs", "-t", "-d1", location.c_str(),
334 num_sectors.c_str(), nullptr };
335 int status = exec_cmd(f2fs_path, const_cast<char* const*>(f2fs_argv));
336 if (status != 0) {
337 LOG(ERROR) << name << ": mkfs.f2fs failed (" << status << ") on " << location;
338 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700339 }
Tao Bao039f2da2016-11-22 16:29:50 -0800340 return StringValue(location);
341 } else {
342 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \""
343 << partition_type << "\"";
344 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700345
Tao Bao039f2da2016-11-22 16:29:50 -0800346 return nullptr;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700347}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700348
Tianjie Xuc4447322017-03-06 14:44:59 -0800349Value* ShowProgressFn(const char* name, State* state,
350 const std::vector<std::unique_ptr<Expr>>& argv) {
351 if (argv.size() != 2) {
352 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
353 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800354 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700355
Tao Bao039f2da2016-11-22 16:29:50 -0800356 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800357 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800358 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
359 }
360 const std::string& frac_str = args[0];
361 const std::string& sec_str = args[1];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700362
Tao Bao039f2da2016-11-22 16:29:50 -0800363 double frac;
364 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
365 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
366 frac_str.c_str());
367 }
368 int sec;
369 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
370 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
371 sec_str.c_str());
372 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700373
Tao Bao039f2da2016-11-22 16:29:50 -0800374 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
375 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700376
Tao Bao039f2da2016-11-22 16:29:50 -0800377 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700378}
379
Tianjie Xuc4447322017-03-06 14:44:59 -0800380Value* SetProgressFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
381 if (argv.size() != 1) {
382 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800383 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700384
Tao Bao039f2da2016-11-22 16:29:50 -0800385 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800386 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800387 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
388 }
389 const std::string& frac_str = args[0];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700390
Tao Bao039f2da2016-11-22 16:29:50 -0800391 double frac;
392 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
393 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
394 frac_str.c_str());
395 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700396
Tao Bao039f2da2016-11-22 16:29:50 -0800397 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
398 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700399
Tao Bao039f2da2016-11-22 16:29:50 -0800400 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700401}
402
Tao Bao1036d362016-11-17 22:49:56 -0800403// package_extract_dir(package_dir, dest_dir)
404// Extracts all files from the package underneath package_dir and writes them to the
405// corresponding tree beneath dest_dir. Any existing files are overwritten.
406// Example: package_extract_dir("system", "/system")
407//
408// Note: package_dir needs to be a relative path; dest_dir needs to be an absolute path.
Tianjie Xuc4447322017-03-06 14:44:59 -0800409Value* PackageExtractDirFn(const char* name, State* state,
410 const std::vector<std::unique_ptr<Expr>>&argv) {
411 if (argv.size() != 2) {
412 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
413 argv.size());
Tao Bao1036d362016-11-17 22:49:56 -0800414 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700415
Tao Bao1036d362016-11-17 22:49:56 -0800416 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800417 if (!ReadArgs(state, argv, &args)) {
Tao Bao1036d362016-11-17 22:49:56 -0800418 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
419 }
420 const std::string& zip_path = args[0];
421 const std::string& dest_path = args[1];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700422
Tao Bao1036d362016-11-17 22:49:56 -0800423 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700424
Tao Bao1036d362016-11-17 22:49:56 -0800425 // To create a consistent system image, never use the clock for timestamps.
426 constexpr struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default
Doug Zongker9931f7f2009-06-10 14:11:53 -0700427
Tao Bao1036d362016-11-17 22:49:56 -0800428 bool success = ExtractPackageRecursive(za, zip_path, dest_path, &timestamp, sehandle);
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700429
Tao Bao1036d362016-11-17 22:49:56 -0800430 return StringValue(success ? "t" : "");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700431}
432
Tao Baoef0eb3b2016-11-14 21:29:52 -0800433// package_extract_file(package_file[, dest_file])
434// Extracts a single package_file from the update package and writes it to dest_file,
435// overwriting existing files if necessary. Without the dest_file argument, returns the
436// contents of the package file as a binary blob.
Tianjie Xuc4447322017-03-06 14:44:59 -0800437Value* PackageExtractFileFn(const char* name, State* state,
438 const std::vector<std::unique_ptr<Expr>>& argv) {
439 if (argv.size() < 1 || argv.size() > 2) {
440 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %zu", name,
441 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800442 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700443
Tianjie Xuc4447322017-03-06 14:44:59 -0800444 if (argv.size() == 2) {
Tao Baoef0eb3b2016-11-14 21:29:52 -0800445 // The two-argument version extracts to a file.
446
447 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800448 if (!ReadArgs(state, argv, &args)) {
449 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
450 argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700451 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800452 const std::string& zip_path = args[0];
453 const std::string& dest_path = args[1];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700454
Tao Baoef0eb3b2016-11-14 21:29:52 -0800455 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
456 ZipString zip_string_path(zip_path.c_str());
457 ZipEntry entry;
458 if (FindEntry(za, zip_string_path, &entry) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800459 LOG(ERROR) << name << ": no " << zip_path << " in package";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800460 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700461 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700462
Tao Bao358c2ec2016-11-28 11:48:43 -0800463 unique_fd fd(TEMP_FAILURE_RETRY(
464 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
Tao Baoef0eb3b2016-11-14 21:29:52 -0800465 if (fd == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800466 PLOG(ERROR) << name << ": can't open " << dest_path << " for write";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800467 return StringValue("");
468 }
469
470 bool success = true;
471 int32_t ret = ExtractEntryToFile(za, &entry, fd);
472 if (ret != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800473 LOG(ERROR) << name << ": Failed to extract entry \"" << zip_path << "\" ("
474 << entry.uncompressed_length << " bytes) to \"" << dest_path
475 << "\": " << ErrorCodeString(ret);
Tao Baoef0eb3b2016-11-14 21:29:52 -0800476 success = false;
477 }
478 if (ota_fsync(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800479 PLOG(ERROR) << "fsync of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800480 success = false;
481 }
482 if (ota_close(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800483 PLOG(ERROR) << "close of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800484 success = false;
485 }
486
487 return StringValue(success ? "t" : "");
488 } else {
489 // The one-argument version returns the contents of the file as the result.
490
491 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800492 if (!ReadArgs(state, argv, &args)) {
493 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
494 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800495 }
496 const std::string& zip_path = args[0];
497
498 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
499 ZipString zip_string_path(zip_path.c_str());
500 ZipEntry entry;
501 if (FindEntry(za, zip_string_path, &entry) != 0) {
502 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
503 zip_path.c_str());
504 }
505
506 std::string buffer;
507 buffer.resize(entry.uncompressed_length);
508
509 int32_t ret = ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
510 if (ret != 0) {
511 return ErrorAbort(state, kPackageExtractFileFailure,
512 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
513 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
514 }
515
516 return new Value(VAL_BLOB, buffer);
517 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700518}
519
Tianjie Xuc4447322017-03-06 14:44:59 -0800520Value* GetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
521 if (argv.size() != 1) {
522 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800523 }
524 std::string key;
525 if (!Evaluate(state, argv[0], &key)) {
526 return nullptr;
527 }
528 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700529
Tao Bao039f2da2016-11-22 16:29:50 -0800530 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700531}
532
Doug Zongker47cace92009-06-18 10:11:50 -0700533// file_getprop(file, key)
534//
535// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700536// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700537// and returns the value for 'key' (or "" if it isn't defined).
Tianjie Xuc4447322017-03-06 14:44:59 -0800538Value* FileGetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
539 if (argv.size() != 2) {
540 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
541 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800542 }
543
544 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800545 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800546 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
547 }
548 const std::string& filename = args[0];
549 const std::string& key = args[1];
550
551 struct stat st;
552 if (stat(filename.c_str(), &st) < 0) {
553 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
554 filename.c_str(), strerror(errno));
555 }
556
557 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
558 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
559 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
560 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
561 }
562
563 std::string buffer(st.st_size, '\0');
564 unique_file f(ota_fopen(filename.c_str(), "rb"));
565 if (f == nullptr) {
566 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name, filename.c_str(),
567 strerror(errno));
568 }
569
570 if (ota_fread(&buffer[0], 1, st.st_size, f.get()) != static_cast<size_t>(st.st_size)) {
571 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s", name,
572 static_cast<size_t>(st.st_size), filename.c_str());
573 return nullptr;
574 }
575
576 ota_fclose(f);
577
578 std::vector<std::string> lines = android::base::Split(buffer, "\n");
579 for (size_t i = 0; i < lines.size(); i++) {
580 std::string line = android::base::Trim(lines[i]);
581
582 // comment or blank line: skip to next line
583 if (line.empty() || line[0] == '#') {
584 continue;
585 }
586 size_t equal_pos = line.find('=');
587 if (equal_pos == std::string::npos) {
588 continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700589 }
590
Tao Bao358c2ec2016-11-28 11:48:43 -0800591 // trim whitespace between key and '='
592 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700593
Tao Bao358c2ec2016-11-28 11:48:43 -0800594 // not the key we're looking for
595 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700596
Tao Bao358c2ec2016-11-28 11:48:43 -0800597 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
598 }
Doug Zongker47cace92009-06-18 10:11:50 -0700599
Tao Bao358c2ec2016-11-28 11:48:43 -0800600 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700601}
602
Doug Zongker8edb00c2009-06-11 17:21:44 -0700603// apply_patch_space(bytes)
Tianjie Xuc4447322017-03-06 14:44:59 -0800604Value* ApplyPatchSpaceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
605 if (argv.size() != 1) {
606 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 args, got %zu", name,
607 argv.size());
608 }
Tao Bao039f2da2016-11-22 16:29:50 -0800609 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800610 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800611 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
612 }
613 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800614
Tao Bao039f2da2016-11-22 16:29:50 -0800615 size_t bytes;
616 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
617 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
618 name, bytes_str.c_str());
619 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800620
Tao Bao039f2da2016-11-22 16:29:50 -0800621 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800622}
623
Tao Bao039f2da2016-11-22 16:29:50 -0800624// apply_patch(src_file, tgt_file, tgt_sha1, tgt_size, patch1_sha1, patch1_blob, [...])
625// Applies a binary patch to the src_file to produce the tgt_file. If the desired target is the
626// same as the source, pass "-" for tgt_file. tgt_sha1 and tgt_size are the expected final SHA1
627// hash and size of the target file. The remaining arguments must come in pairs: a SHA1 hash (a
628// 40-character hex string) and a blob. The blob is the patch to be applied when the source
629// file's current contents have the given SHA1.
630//
631// The patching is done in a safe manner that guarantees the target file either has the desired
632// SHA1 hash and size, or it is untouched -- it will not be left in an unrecoverable intermediate
633// state. If the process is interrupted during patching, the target file may be in an intermediate
634// state; a copy exists in the cache partition so restarting the update can successfully update
635// the file.
Tianjie Xuc4447322017-03-06 14:44:59 -0800636Value* ApplyPatchFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
637 if (argv.size() < 6 || (argv.size() % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700638 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xuc4447322017-03-06 14:44:59 -0800639 "even number, got %zu", name, argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700640 }
641
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700642 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800643 if (!ReadArgs(state, argv, &args, 0, 4)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700644 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700645 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700646 const std::string& source_filename = args[0];
647 const std::string& target_filename = args[1];
648 const std::string& target_sha1 = args[2];
649 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700650
Tao Baob15fd222015-09-24 11:10:51 -0700651 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700652 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
653 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
654 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800655 }
656
Tianjie Xuc4447322017-03-06 14:44:59 -0800657 int patchcount = (argv.size()-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700658 std::vector<std::unique_ptr<Value>> arg_values;
Tianjie Xuc4447322017-03-06 14:44:59 -0800659 if (!ReadValueArgs(state, argv, &arg_values, 4, argv.size() - 4)) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800660 return nullptr;
661 }
662
Yabin Cui64be2132016-02-03 18:16:02 -0800663 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700664 if (arg_values[i * 2]->type != VAL_STRING) {
665 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
666 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800667 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700668 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
669 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
670 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800671 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700672 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700673
Tianjie Xuaced5d92016-10-12 10:55:04 -0700674 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700675 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800676 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700677 patch_sha_str.push_back(arg_values[i * 2]->data);
678 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700679 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800680
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700681 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
682 target_sha1.c_str(), target_size,
683 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800684
Tianjie Xuaced5d92016-10-12 10:55:04 -0700685 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800686}
687
Tao Bao039f2da2016-11-22 16:29:50 -0800688// apply_patch_check(filename, [sha1, ...])
689// Returns true if the contents of filename or the temporary copy in the cache partition (if
690// present) have a SHA-1 checksum equal to one of the given sha1 values. sha1 values are
691// specified as 40 hex digits. This function differs from sha1_check(read_file(filename),
692// sha1 [, ...]) in that it knows to check the cache partition copy, so apply_patch_check() will
693// succeed even if the file was corrupted by an interrupted apply_patch() update.
Tianjie Xuc4447322017-03-06 14:44:59 -0800694Value* ApplyPatchCheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
695 if (argv.size() < 1) {
696 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %zu", name,
697 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800698 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800699
Tao Bao039f2da2016-11-22 16:29:50 -0800700 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800701 if (!ReadArgs(state, argv, &args, 0, 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800702 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
703 }
704 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800705
Tao Bao039f2da2016-11-22 16:29:50 -0800706 std::vector<std::string> sha1s;
Tao Baodb56eb02017-03-23 06:34:20 -0700707 if (argv.size() > 1 && !ReadArgs(state, argv, &sha1s, 1, argv.size() - 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800708 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
709 }
710 int result = applypatch_check(filename.c_str(), sha1s);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800711
Tao Bao039f2da2016-11-22 16:29:50 -0800712 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700713}
714
Tao Bao1107d962015-09-09 17:16:55 -0700715// This is the updater side handler for ui_print() in edify script. Contents
716// will be sent over to the recovery side for on-screen display.
Tianjie Xuc4447322017-03-06 14:44:59 -0800717Value* UIPrintFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Bao039f2da2016-11-22 16:29:50 -0800718 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800719 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800720 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
721 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700722
Tao Bao039f2da2016-11-22 16:29:50 -0800723 std::string buffer = android::base::Join(args, "") + "\n";
724 uiPrint(state, buffer);
725 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700726}
727
Tianjie Xuc4447322017-03-06 14:44:59 -0800728Value* WipeCacheFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
729 if (!argv.empty()) {
730 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
731 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800732 }
733 fprintf(static_cast<UpdaterInfo*>(state->cookie)->cmd_pipe, "wipe_cache\n");
734 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700735}
736
Tianjie Xuc4447322017-03-06 14:44:59 -0800737Value* RunProgramFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
738 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800739 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
740 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700741
Tao Bao039f2da2016-11-22 16:29:50 -0800742 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800743 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800744 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
745 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700746
Tianjie Xuc4447322017-03-06 14:44:59 -0800747 char* args2[argv.size() + 1];
748 for (size_t i = 0; i < argv.size(); i++) {
Tao Bao039f2da2016-11-22 16:29:50 -0800749 args2[i] = &args[i][0];
750 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800751 args2[argv.size()] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700752
Tianjie Xuc4447322017-03-06 14:44:59 -0800753 LOG(INFO) << "about to run program [" << args2[0] << "] with " << argv.size() << " args";
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700754
Tao Bao039f2da2016-11-22 16:29:50 -0800755 pid_t child = fork();
756 if (child == 0) {
757 execv(args2[0], args2);
758 PLOG(ERROR) << "run_program: execv failed";
Tao Bao3da88012017-02-03 13:09:23 -0800759 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800760 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700761
Tao Bao039f2da2016-11-22 16:29:50 -0800762 int status;
763 waitpid(child, &status, 0);
764 if (WIFEXITED(status)) {
765 if (WEXITSTATUS(status) != 0) {
766 LOG(ERROR) << "run_program: child exited with status " << WEXITSTATUS(status);
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700767 }
Tao Bao039f2da2016-11-22 16:29:50 -0800768 } else if (WIFSIGNALED(status)) {
769 LOG(ERROR) << "run_program: child terminated by signal " << WTERMSIG(status);
770 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700771
Tao Bao039f2da2016-11-22 16:29:50 -0800772 return StringValue(std::to_string(status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700773}
774
Doug Zongker512536a2010-02-17 16:11:44 -0800775// sha1_check(data)
776// to return the sha1 of the data (given in the format returned by
777// read_file).
778//
779// sha1_check(data, sha1_hex, [sha1_hex, ...])
780// returns the sha1 of the file if it matches any of the hex
781// strings passed, or "" if it does not equal any of them.
782//
Tianjie Xuc4447322017-03-06 14:44:59 -0800783Value* Sha1CheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
784 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800785 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
786 }
Doug Zongker512536a2010-02-17 16:11:44 -0800787
Tao Bao039f2da2016-11-22 16:29:50 -0800788 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800789 if (!ReadValueArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800790 return nullptr;
791 }
Doug Zongker512536a2010-02-17 16:11:44 -0800792
Tao Bao039f2da2016-11-22 16:29:50 -0800793 if (args[0]->type == VAL_INVALID) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700794 return StringValue("");
Tao Bao039f2da2016-11-22 16:29:50 -0800795 }
796 uint8_t digest[SHA_DIGEST_LENGTH];
797 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
Doug Zongker512536a2010-02-17 16:11:44 -0800798
Tianjie Xuc4447322017-03-06 14:44:59 -0800799 if (argv.size() == 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800800 return StringValue(print_sha1(digest));
801 }
Doug Zongker512536a2010-02-17 16:11:44 -0800802
Tianjie Xuc4447322017-03-06 14:44:59 -0800803 for (size_t i = 1; i < argv.size(); ++i) {
Yabin Cui64be2132016-02-03 18:16:02 -0800804 uint8_t arg_digest[SHA_DIGEST_LENGTH];
Tao Bao039f2da2016-11-22 16:29:50 -0800805 if (args[i]->type != VAL_STRING) {
806 LOG(ERROR) << name << "(): arg " << i << " is not a string; skipping";
807 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
808 // Warn about bad args and skip them.
809 LOG(ERROR) << name << "(): error parsing \"" << args[i]->data << "\" as sha-1; skipping";
810 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
811 // Found a match.
812 return args[i].release();
Doug Zongker512536a2010-02-17 16:11:44 -0800813 }
Tao Bao039f2da2016-11-22 16:29:50 -0800814 }
815
816 // Didn't match any of the hex strings; return false.
817 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -0800818}
819
Hristo Bojinovdb314d62010-08-02 10:29:49 -0700820// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -0800821// is actually a FileContents*).
Tianjie Xuc4447322017-03-06 14:44:59 -0800822Value* ReadFileFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
823 if (argv.size() != 1) {
824 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800825 }
Doug Zongker512536a2010-02-17 16:11:44 -0800826
Tao Bao039f2da2016-11-22 16:29:50 -0800827 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800828 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800829 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
830 }
831 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -0800832
Tao Bao039f2da2016-11-22 16:29:50 -0800833 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -0800834
Tao Bao039f2da2016-11-22 16:29:50 -0800835 FileContents fc;
836 if (LoadFileContents(filename.c_str(), &fc) == 0) {
Doug Zongker512536a2010-02-17 16:11:44 -0800837 v->type = VAL_BLOB;
Tao Bao039f2da2016-11-22 16:29:50 -0800838 v->data = std::string(fc.data.begin(), fc.data.end());
839 }
840 return v;
Doug Zongker512536a2010-02-17 16:11:44 -0800841}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700842
Tao Bao1bf17722016-11-03 23:52:01 -0700843// write_value(value, filename)
844// Writes 'value' to 'filename'.
845// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
Tianjie Xuc4447322017-03-06 14:44:59 -0800846Value* WriteValueFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
847 if (argv.size() != 2) {
848 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
849 argv.size());
Tao Baod0f30882016-11-03 23:52:01 -0700850 }
Tao Bao1bf17722016-11-03 23:52:01 -0700851
Tao Baod0f30882016-11-03 23:52:01 -0700852 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800853 if (!ReadArgs(state, argv, &args)) {
Tao Baod0f30882016-11-03 23:52:01 -0700854 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
855 }
Tao Bao1bf17722016-11-03 23:52:01 -0700856
Tao Baod0f30882016-11-03 23:52:01 -0700857 const std::string& filename = args[1];
858 if (filename.empty()) {
859 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
860 }
Tao Bao1bf17722016-11-03 23:52:01 -0700861
Tao Baod0f30882016-11-03 23:52:01 -0700862 const std::string& value = args[0];
863 if (!android::base::WriteStringToFile(value, filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800864 PLOG(ERROR) << name << ": Failed to write to \"" << filename << "\"";
Tao Baod0f30882016-11-03 23:52:01 -0700865 return StringValue("");
866 } else {
867 return StringValue("t");
868 }
Tao Bao1bf17722016-11-03 23:52:01 -0700869}
870
Doug Zongkerc87bab12013-11-25 13:53:25 -0800871// Immediately reboot the device. Recovery is not finished normally,
872// so if you reboot into recovery it will re-start applying the
873// current package (because nothing has cleared the copy of the
874// arguments stored in the BCB).
875//
876// The argument is the partition name passed to the android reboot
877// property. It can be "recovery" to boot from the recovery
878// partition, or "" (empty string) to boot from the regular boot
879// partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800880Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
881 if (argv.size() != 2) {
882 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
883 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800884 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800885
Tao Baobedf5fc2016-11-18 12:01:26 -0800886 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800887 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800888 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
889 }
890 const std::string& filename = args[0];
891 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800892
Tao Baobedf5fc2016-11-18 12:01:26 -0800893 // Zero out the 'command' field of the bootloader message. Leave the rest intact.
894 bootloader_message boot;
895 std::string err;
896 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800897 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800898 return StringValue("");
899 }
900 memset(boot.command, 0, sizeof(boot.command));
901 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800902 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800903 return StringValue("");
904 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800905
Dmitri Plotnikoved9db0f2017-04-18 08:28:26 -0700906 std::string reboot_cmd = "reboot," + property;
907 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
908 reboot_cmd += ",quiescent";
909 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800910 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800911
Tao Baobedf5fc2016-11-18 12:01:26 -0800912 sleep(5);
913 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800914}
915
916// Store a string value somewhere that future invocations of recovery
917// can access it. This value is called the "stage" and can be used to
918// drive packages that need to do reboots in the middle of
919// installation and keep track of where they are in the multi-stage
920// install.
921//
922// The first argument is the block device for the misc partition
923// ("/misc" in the fstab), which is where this value is stored. The
924// second argument is the string to store; it should not exceed 31
925// bytes.
Tianjie Xuc4447322017-03-06 14:44:59 -0800926Value* SetStageFn(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 Baobedf5fc2016-11-18 12:01:26 -0800930 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800931
Tao Baobedf5fc2016-11-18 12:01:26 -0800932 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800933 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -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& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800938
Tao Baobedf5fc2016-11-18 12:01:26 -0800939 // Store this value in the misc partition, immediately after the
940 // bootloader message that the main recovery uses to save its
941 // arguments in case of the device restarting midway through
942 // package installation.
943 bootloader_message boot;
944 std::string err;
945 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800946 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800947 return StringValue("");
948 }
949 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage));
950 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800951 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800952 return StringValue("");
953 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800954
Tao Baobedf5fc2016-11-18 12:01:26 -0800955 return StringValue(filename);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800956}
957
958// Return the value most recently saved with SetStageFn. The argument
959// is the block device for the misc partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800960Value* GetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
961 if (argv.size() != 1) {
962 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800963 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800964
Tao Baobedf5fc2016-11-18 12:01:26 -0800965 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800966 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800967 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
968 }
969 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800970
Tao Baobedf5fc2016-11-18 12:01:26 -0800971 bootloader_message boot;
972 std::string err;
973 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800974 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800975 return StringValue("");
976 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800977
Tao Baobedf5fc2016-11-18 12:01:26 -0800978 return StringValue(boot.stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800979}
980
Tianjie Xuc4447322017-03-06 14:44:59 -0800981Value* WipeBlockDeviceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
982 if (argv.size() != 2) {
983 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
984 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800985 }
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800986
Tao Bao358c2ec2016-11-28 11:48:43 -0800987 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800988 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800989 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
990 }
991 const std::string& filename = args[0];
992 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800993
Tao Bao358c2ec2016-11-28 11:48:43 -0800994 size_t len;
995 if (!android::base::ParseUint(len_str.c_str(), &len)) {
996 return nullptr;
997 }
998 unique_fd fd(ota_open(filename.c_str(), O_WRONLY, 0644));
999 // The wipe_block_device function in ext4_utils returns 0 on success and 1
1000 // for failure.
1001 int status = wipe_block_device(fd, len);
1002 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001003}
1004
Tianjie Xuc4447322017-03-06 14:44:59 -08001005Value* EnableRebootFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
1006 if (!argv.empty()) {
1007 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
1008 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -08001009 }
1010 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
1011 fprintf(ui->cmd_pipe, "enable_reboot\n");
1012 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -07001013}
1014
Tianjie Xuc4447322017-03-06 14:44:59 -08001015Value* Tune2FsFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
Ethan Yonker7e1b9862015-03-19 14:10:01 -05001016#ifdef HAVE_LIBTUNE2FS
Tianjie Xuc4447322017-03-06 14:44:59 -08001017 if (argv.empty()) {
1018 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -08001019 }
Michael Rungeb278c252014-11-21 00:12:28 -08001020
Tao Bao039f2da2016-11-22 16:29:50 -08001021 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -08001022 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -08001023 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
1024 }
Michael Rungeb278c252014-11-21 00:12:28 -08001025
Tianjie Xuc4447322017-03-06 14:44:59 -08001026 char* args2[argv.size() + 1];
Tao Bao039f2da2016-11-22 16:29:50 -08001027 // Tune2fs expects the program name as its args[0]
1028 args2[0] = const_cast<char*>(name);
1029 if (args2[0] == nullptr) {
1030 return nullptr;
1031 }
Tianjie Xuc4447322017-03-06 14:44:59 -08001032 for (size_t i = 0; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -08001033 args2[i + 1] = &args[i][0];
1034 }
Michael Rungeb278c252014-11-21 00:12:28 -08001035
Tao Bao039f2da2016-11-22 16:29:50 -08001036 // tune2fs changes the file system parameters on an ext2 file system; it
1037 // returns 0 on success.
Tianjie Xuc4447322017-03-06 14:44:59 -08001038 int result = tune2fs_main(argv.size() + 1, args2);
Tao Bao039f2da2016-11-22 16:29:50 -08001039 if (result != 0) {
1040 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
1041 }
1042 return StringValue("t");
Ethan Yonker7e1b9862015-03-19 14:10:01 -05001043#else
Ethan Yonker8373cfe2017-09-08 06:50:54 -05001044 return ErrorAbort(state, kTune2FsFailure, "%s() support not present, no libtune2fs", name);
Ethan Yonker7e1b9862015-03-19 14:10:01 -05001045#endif // HAVE_LIBTUNE2FS
Michael Rungeb278c252014-11-21 00:12:28 -08001046}
1047
Doug Zongker9931f7f2009-06-10 14:11:53 -07001048void RegisterInstallFunctions() {
Tao Bao039f2da2016-11-22 16:29:50 -08001049 RegisterFunction("mount", MountFn);
1050 RegisterFunction("is_mounted", IsMountedFn);
1051 RegisterFunction("unmount", UnmountFn);
1052 RegisterFunction("format", FormatFn);
1053 RegisterFunction("show_progress", ShowProgressFn);
1054 RegisterFunction("set_progress", SetProgressFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001055 RegisterFunction("package_extract_dir", PackageExtractDirFn);
1056 RegisterFunction("package_extract_file", PackageExtractFileFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001057
Tao Bao039f2da2016-11-22 16:29:50 -08001058 RegisterFunction("getprop", GetPropFn);
1059 RegisterFunction("file_getprop", FileGetPropFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001060
Tao Bao039f2da2016-11-22 16:29:50 -08001061 RegisterFunction("apply_patch", ApplyPatchFn);
1062 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1063 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001064
Tao Bao039f2da2016-11-22 16:29:50 -08001065 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001066
Tao Bao039f2da2016-11-22 16:29:50 -08001067 RegisterFunction("read_file", ReadFileFn);
1068 RegisterFunction("sha1_check", Sha1CheckFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001069 RegisterFunction("write_value", WriteValueFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001070
Tao Bao039f2da2016-11-22 16:29:50 -08001071 RegisterFunction("wipe_cache", WipeCacheFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001072
Tao Bao039f2da2016-11-22 16:29:50 -08001073 RegisterFunction("ui_print", UIPrintFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001074
Tao Bao039f2da2016-11-22 16:29:50 -08001075 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001076
Tao Bao039f2da2016-11-22 16:29:50 -08001077 RegisterFunction("reboot_now", RebootNowFn);
1078 RegisterFunction("get_stage", GetStageFn);
1079 RegisterFunction("set_stage", SetStageFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001080
Tao Bao039f2da2016-11-22 16:29:50 -08001081 RegisterFunction("enable_reboot", EnableRebootFn);
1082 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001083}