blob: 0d473fce48a7c795542ef9e1733c744b7e96d496 [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"
Tao Bao361342c2016-02-08 11:15:50 -080077#include "print_sha1.h"
Michael Rungeacf47db2014-11-21 00:12:28 -080078#include "tune2fs.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070079#include "updater/updater.h"
Doug Zongker52b40362014-02-10 15:30:30 -080080
Tao Bao1107d962015-09-09 17:16:55 -070081// Send over the buffer to recovery though the command pipe.
82static void uiPrint(State* state, const std::string& buffer) {
Tao Bao039f2da2016-11-22 16:29:50 -080083 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070084
Tao Bao039f2da2016-11-22 16:29:50 -080085 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
86 // So skip sending empty strings to UI.
87 std::vector<std::string> lines = android::base::Split(buffer, "\n");
88 for (auto& line : lines) {
89 if (!line.empty()) {
90 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
Michael Runge75480252014-10-22 19:48:41 -070091 }
Tao Bao039f2da2016-11-22 16:29:50 -080092 }
Tao Bao1107d962015-09-09 17:16:55 -070093
Tao Bao039f2da2016-11-22 16:29:50 -080094 // On the updater side, we need to dump the contents to stderr (which has
95 // been redirected to the log file). Because the recovery will only print
96 // the contents to screen when processing pipe command ui_print.
97 LOG(INFO) << buffer;
Michael Runge75480252014-10-22 19:48:41 -070098}
99
Elliott Hughes83ce7552016-06-30 09:28:42 -0700100void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
Tao Bao039f2da2016-11-22 16:29:50 -0800101 std::string error_msg;
Tao Bao1107d962015-09-09 17:16:55 -0700102
Tao Bao039f2da2016-11-22 16:29:50 -0800103 va_list ap;
104 va_start(ap, format);
105 android::base::StringAppendV(&error_msg, format, ap);
106 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -0700107
Tao Bao039f2da2016-11-22 16:29:50 -0800108 uiPrint(state, error_msg);
Michael Runge75480252014-10-22 19:48:41 -0700109}
110
Tianjie Xud75003d2016-11-04 11:31:29 -0700111static bool is_dir(const std::string& dirpath) {
112 struct stat st;
113 return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700114}
115
Doug Zongkera23075f2012-08-06 16:19:09 -0700116// Create all parent directories of name, if necessary.
Tianjie Xud75003d2016-11-04 11:31:29 -0700117static bool make_parents(const std::string& name) {
Tao Bao039f2da2016-11-22 16:29:50 -0800118 size_t prev_end = 0;
119 while (prev_end < name.size()) {
120 size_t next_end = name.find('/', prev_end + 1);
121 if (next_end == std::string::npos) {
122 break;
Doug Zongkera23075f2012-08-06 16:19:09 -0700123 }
Tao Bao039f2da2016-11-22 16:29:50 -0800124 std::string dir_path = name.substr(0, next_end);
125 if (!is_dir(dir_path)) {
126 int result = mkdir(dir_path.c_str(), 0700);
127 if (result != 0) {
128 PLOG(ERROR) << "failed to mkdir " << dir_path << " when make parents for " << name;
129 return false;
130 }
131
132 LOG(INFO) << "created [" << dir_path << "]";
133 }
134 prev_end = next_end;
135 }
136 return true;
Doug Zongkera23075f2012-08-06 16:19:09 -0700137}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700138
Doug Zongker9931f7f2009-06-10 14:11:53 -0700139// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -0700140// mount(fs_type, partition_type, location, mount_point, mount_options)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700141
Doug Zongker9931f7f2009-06-10 14:11:53 -0700142// fs_type="ext4" partition_type="EMMC" location=device
Tianjie Xuc4447322017-03-06 14:44:59 -0800143Value* MountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
144 if (argv.size() != 4 && argv.size() != 5) {
145 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %zu", name,
146 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800147 }
148
149 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800150 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800151 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
152 }
153 const std::string& fs_type = args[0];
154 const std::string& partition_type = args[1];
155 const std::string& location = args[2];
156 const std::string& mount_point = args[3];
157 std::string mount_options;
158
Tianjie Xuc4447322017-03-06 14:44:59 -0800159 if (argv.size() == 5) {
Tao Bao039f2da2016-11-22 16:29:50 -0800160 mount_options = args[4];
161 }
162
163 if (fs_type.empty()) {
164 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
165 }
166 if (partition_type.empty()) {
167 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
168 name);
169 }
170 if (location.empty()) {
171 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
172 }
173 if (mount_point.empty()) {
174 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
175 name);
176 }
177
178 {
179 char* secontext = nullptr;
180
181 if (sehandle) {
182 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
183 setfscreatecon(secontext);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700184 }
185
Tao Bao039f2da2016-11-22 16:29:50 -0800186 mkdir(mount_point.c_str(), 0755);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700187
Tao Bao039f2da2016-11-22 16:29:50 -0800188 if (secontext) {
189 freecon(secontext);
190 setfscreatecon(nullptr);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700191 }
Tao Bao039f2da2016-11-22 16:29:50 -0800192 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700193
Tao Bao039f2da2016-11-22 16:29:50 -0800194 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
195 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700196 uiPrintf(state, "%s: Failed to mount %s at %s: %s", name, location.c_str(), mount_point.c_str(),
197 strerror(errno));
Tao Bao039f2da2016-11-22 16:29:50 -0800198 return StringValue("");
199 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700200
Tao Bao039f2da2016-11-22 16:29:50 -0800201 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700202}
203
Doug Zongker9931f7f2009-06-10 14:11:53 -0700204// is_mounted(mount_point)
Tianjie Xuc4447322017-03-06 14:44:59 -0800205Value* IsMountedFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
206 if (argv.size() != 1) {
207 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800208 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700209
Tao Bao039f2da2016-11-22 16:29:50 -0800210 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800211 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800212 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
213 }
214 const std::string& mount_point = args[0];
215 if (mount_point.empty()) {
216 return ErrorAbort(state, kArgsParsingFailure,
217 "mount_point argument to unmount() can't be empty");
218 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700219
Tao Bao039f2da2016-11-22 16:29:50 -0800220 scan_mounted_volumes();
221 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
222 if (vol == nullptr) {
223 return StringValue("");
224 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700225
Tao Bao039f2da2016-11-22 16:29:50 -0800226 return StringValue(mount_point);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700227}
228
Tianjie Xuc4447322017-03-06 14:44:59 -0800229Value* UnmountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
230 if (argv.size() != 1) {
231 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800232 }
233 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800234 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800235 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
236 }
237 const std::string& mount_point = args[0];
238 if (mount_point.empty()) {
239 return ErrorAbort(state, kArgsParsingFailure,
240 "mount_point argument to unmount() can't be empty");
241 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700242
Tao Bao039f2da2016-11-22 16:29:50 -0800243 scan_mounted_volumes();
244 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
245 if (vol == nullptr) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700246 uiPrintf(state, "Failed to unmount %s: No such volume", mount_point.c_str());
Tao Bao039f2da2016-11-22 16:29:50 -0800247 return nullptr;
248 } else {
249 int ret = unmount_mounted_volume(vol);
250 if (ret != 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700251 uiPrintf(state, "Failed to unmount %s: %s", mount_point.c_str(), strerror(errno));
Nick Kralevich6a821fe2014-10-23 20:36:42 -0700252 }
Tao Bao039f2da2016-11-22 16:29:50 -0800253 }
Nick Kralevich6a821fe2014-10-23 20:36:42 -0700254
Tao Bao039f2da2016-11-22 16:29:50 -0800255 return StringValue(mount_point);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700256}
257
JP Abgrall37aedb32014-06-16 19:07:39 -0700258static int exec_cmd(const char* path, char* const argv[]) {
Tao Bao039f2da2016-11-22 16:29:50 -0800259 pid_t child;
260 if ((child = vfork()) == 0) {
261 execv(path, argv);
Tao Bao3da88012017-02-03 13:09:23 -0800262 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800263 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700264
Tao Bao039f2da2016-11-22 16:29:50 -0800265 int status;
266 waitpid(child, &status, 0);
267 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
268 LOG(ERROR) << path << " failed with status " << WEXITSTATUS(status);
269 }
270 return WEXITSTATUS(status);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700271}
272
Doug Zongker9931f7f2009-06-10 14:11:53 -0700273// format(fs_type, partition_type, location, fs_size, mount_point)
274//
Tao Bao039f2da2016-11-22 16:29:50 -0800275// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
276// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700277// if fs_size == 0, then make fs uses the entire partition.
Doug Zongker9931f7f2009-06-10 14:11:53 -0700278// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700279// 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 -0800280Value* FormatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
281 if (argv.size() != 5) {
282 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %zu", name,
283 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800284 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700285
Tao Bao039f2da2016-11-22 16:29:50 -0800286 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800287 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800288 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
289 }
290 const std::string& fs_type = args[0];
291 const std::string& partition_type = args[1];
292 const std::string& location = args[2];
293 const std::string& fs_size = args[3];
294 const std::string& mount_point = args[4];
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700295
Tao Bao039f2da2016-11-22 16:29:50 -0800296 if (fs_type.empty()) {
297 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
298 }
299 if (partition_type.empty()) {
300 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
301 name);
302 }
303 if (location.empty()) {
304 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
305 }
306 if (mount_point.empty()) {
307 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
308 name);
309 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700310
Tao Bao039f2da2016-11-22 16:29:50 -0800311 int64_t size;
312 if (!android::base::ParseInt(fs_size, &size)) {
313 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
314 fs_size.c_str());
315 }
316
317 if (fs_type == "ext4") {
Jin Qianac318082017-04-21 14:36:12 -0700318 const char* mke2fs_argv[] = { "/sbin/mke2fs_static", "-t", "ext4", "-b", "4096",
319 location.c_str(), nullptr, nullptr };
320 std::string size_str;
321 if (size != 0) {
322 size_str = std::to_string(size / 4096LL);
323 mke2fs_argv[6] = size_str.c_str();
324 }
325
326 int status = exec_cmd(mke2fs_argv[0], const_cast<char**>(mke2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800327 if (status != 0) {
Jin Qianac318082017-04-21 14:36:12 -0700328 LOG(WARNING) << name << ": mke2fs failed (" << status << ") on " << location
329 << ", falling back to make_ext4fs";
330 status = make_ext4fs(location.c_str(), size, mount_point.c_str(), sehandle);
331 if (status != 0) {
332 LOG(ERROR) << name << ": make_ext4fs failed (" << status << ") on " << location;
333 return StringValue("");
334 }
335 return StringValue(location);
336 }
337
Tao Bao7af933b2017-07-11 16:45:04 -0700338 const char* e2fsdroid_argv[] = { "/sbin/e2fsdroid_static", "-e", "-a", mount_point.c_str(),
Jin Qianac318082017-04-21 14:36:12 -0700339 location.c_str(), nullptr };
340 status = exec_cmd(e2fsdroid_argv[0], const_cast<char**>(e2fsdroid_argv));
341 if (status != 0) {
342 LOG(ERROR) << name << ": e2fsdroid failed (" << status << ") on " << location;
Tao Bao039f2da2016-11-22 16:29:50 -0800343 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700344 }
Tao Bao039f2da2016-11-22 16:29:50 -0800345 return StringValue(location);
346 } else if (fs_type == "f2fs") {
347 if (size < 0) {
348 LOG(ERROR) << name << ": fs_size can't be negative for f2fs: " << fs_size;
349 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700350 }
Tao Bao039f2da2016-11-22 16:29:50 -0800351 std::string num_sectors = std::to_string(size / 512);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700352
Tao Bao039f2da2016-11-22 16:29:50 -0800353 const char* f2fs_path = "/sbin/mkfs.f2fs";
Tao Bao397a8132017-05-12 11:02:27 -0700354 const char* f2fs_argv[] = {
355 "mkfs.f2fs", "-t", "-d1", location.c_str(), (size < 512) ? nullptr : num_sectors.c_str(),
356 nullptr
357 };
358 int status = exec_cmd(f2fs_path, const_cast<char**>(f2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800359 if (status != 0) {
360 LOG(ERROR) << name << ": mkfs.f2fs failed (" << status << ") on " << location;
361 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700362 }
Tao Bao039f2da2016-11-22 16:29:50 -0800363 return StringValue(location);
364 } else {
365 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \""
366 << partition_type << "\"";
367 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700368
Tao Bao039f2da2016-11-22 16:29:50 -0800369 return nullptr;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700370}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700371
Tianjie Xuc4447322017-03-06 14:44:59 -0800372Value* ShowProgressFn(const char* name, State* state,
373 const std::vector<std::unique_ptr<Expr>>& argv) {
374 if (argv.size() != 2) {
375 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
376 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800377 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700378
Tao Bao039f2da2016-11-22 16:29:50 -0800379 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800380 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800381 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
382 }
383 const std::string& frac_str = args[0];
384 const std::string& sec_str = args[1];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700385
Tao Bao039f2da2016-11-22 16:29:50 -0800386 double frac;
387 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
388 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
389 frac_str.c_str());
390 }
391 int sec;
392 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
393 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
394 sec_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, "progress %f %d\n", frac, sec);
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
Tianjie Xuc4447322017-03-06 14:44:59 -0800403Value* SetProgressFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
404 if (argv.size() != 1) {
405 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800406 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700407
Tao Bao039f2da2016-11-22 16:29:50 -0800408 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800409 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800410 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
411 }
412 const std::string& frac_str = args[0];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700413
Tao Bao039f2da2016-11-22 16:29:50 -0800414 double frac;
415 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
416 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
417 frac_str.c_str());
418 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700419
Tao Bao039f2da2016-11-22 16:29:50 -0800420 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
421 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700422
Tao Bao039f2da2016-11-22 16:29:50 -0800423 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700424}
425
Tao Baoef0eb3b2016-11-14 21:29:52 -0800426// package_extract_file(package_file[, dest_file])
427// Extracts a single package_file from the update package and writes it to dest_file,
428// overwriting existing files if necessary. Without the dest_file argument, returns the
429// contents of the package file as a binary blob.
Tianjie Xuc4447322017-03-06 14:44:59 -0800430Value* PackageExtractFileFn(const char* name, State* state,
431 const std::vector<std::unique_ptr<Expr>>& argv) {
432 if (argv.size() < 1 || argv.size() > 2) {
433 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %zu", name,
434 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800435 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700436
Tianjie Xuc4447322017-03-06 14:44:59 -0800437 if (argv.size() == 2) {
Tao Baoef0eb3b2016-11-14 21:29:52 -0800438 // The two-argument version extracts to a file.
439
440 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800441 if (!ReadArgs(state, argv, &args)) {
442 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
443 argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700444 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800445 const std::string& zip_path = args[0];
446 const std::string& dest_path = args[1];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700447
Tao Baoef0eb3b2016-11-14 21:29:52 -0800448 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
449 ZipString zip_string_path(zip_path.c_str());
450 ZipEntry entry;
451 if (FindEntry(za, zip_string_path, &entry) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800452 LOG(ERROR) << name << ": no " << zip_path << " in package";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800453 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700454 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700455
Tao Bao358c2ec2016-11-28 11:48:43 -0800456 unique_fd fd(TEMP_FAILURE_RETRY(
457 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
Tao Baoef0eb3b2016-11-14 21:29:52 -0800458 if (fd == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800459 PLOG(ERROR) << name << ": can't open " << dest_path << " for write";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800460 return StringValue("");
461 }
462
463 bool success = true;
464 int32_t ret = ExtractEntryToFile(za, &entry, fd);
465 if (ret != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800466 LOG(ERROR) << name << ": Failed to extract entry \"" << zip_path << "\" ("
467 << entry.uncompressed_length << " bytes) to \"" << dest_path
468 << "\": " << ErrorCodeString(ret);
Tao Baoef0eb3b2016-11-14 21:29:52 -0800469 success = false;
470 }
471 if (ota_fsync(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800472 PLOG(ERROR) << "fsync of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800473 success = false;
474 }
475 if (ota_close(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800476 PLOG(ERROR) << "close of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800477 success = false;
478 }
479
480 return StringValue(success ? "t" : "");
481 } else {
482 // The one-argument version returns the contents of the file as the result.
483
484 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800485 if (!ReadArgs(state, argv, &args)) {
486 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
487 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800488 }
489 const std::string& zip_path = args[0];
490
491 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
492 ZipString zip_string_path(zip_path.c_str());
493 ZipEntry entry;
494 if (FindEntry(za, zip_string_path, &entry) != 0) {
495 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
496 zip_path.c_str());
497 }
498
499 std::string buffer;
500 buffer.resize(entry.uncompressed_length);
501
502 int32_t ret = ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
503 if (ret != 0) {
504 return ErrorAbort(state, kPackageExtractFileFailure,
505 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
506 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
507 }
508
509 return new Value(VAL_BLOB, buffer);
510 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700511}
512
Tianjie Xuc4447322017-03-06 14:44:59 -0800513Value* GetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
514 if (argv.size() != 1) {
515 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800516 }
517 std::string key;
518 if (!Evaluate(state, argv[0], &key)) {
519 return nullptr;
520 }
521 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700522
Tao Bao039f2da2016-11-22 16:29:50 -0800523 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700524}
525
Doug Zongker47cace92009-06-18 10:11:50 -0700526// file_getprop(file, key)
527//
528// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700529// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700530// and returns the value for 'key' (or "" if it isn't defined).
Tianjie Xuc4447322017-03-06 14:44:59 -0800531Value* FileGetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
532 if (argv.size() != 2) {
533 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
534 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800535 }
536
537 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800538 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800539 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
540 }
541 const std::string& filename = args[0];
542 const std::string& key = args[1];
543
544 struct stat st;
545 if (stat(filename.c_str(), &st) < 0) {
546 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
547 filename.c_str(), strerror(errno));
548 }
549
550 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
551 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
552 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
553 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
554 }
555
556 std::string buffer(st.st_size, '\0');
557 unique_file f(ota_fopen(filename.c_str(), "rb"));
558 if (f == nullptr) {
559 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name, filename.c_str(),
560 strerror(errno));
561 }
562
563 if (ota_fread(&buffer[0], 1, st.st_size, f.get()) != static_cast<size_t>(st.st_size)) {
564 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s", name,
565 static_cast<size_t>(st.st_size), filename.c_str());
566 return nullptr;
567 }
568
569 ota_fclose(f);
570
571 std::vector<std::string> lines = android::base::Split(buffer, "\n");
572 for (size_t i = 0; i < lines.size(); i++) {
573 std::string line = android::base::Trim(lines[i]);
574
575 // comment or blank line: skip to next line
576 if (line.empty() || line[0] == '#') {
577 continue;
578 }
579 size_t equal_pos = line.find('=');
580 if (equal_pos == std::string::npos) {
581 continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700582 }
583
Tao Bao358c2ec2016-11-28 11:48:43 -0800584 // trim whitespace between key and '='
585 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700586
Tao Bao358c2ec2016-11-28 11:48:43 -0800587 // not the key we're looking for
588 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700589
Tao Bao358c2ec2016-11-28 11:48:43 -0800590 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
591 }
Doug Zongker47cace92009-06-18 10:11:50 -0700592
Tao Bao358c2ec2016-11-28 11:48:43 -0800593 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700594}
595
Doug Zongker8edb00c2009-06-11 17:21:44 -0700596// apply_patch_space(bytes)
Tianjie Xuc4447322017-03-06 14:44:59 -0800597Value* ApplyPatchSpaceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
598 if (argv.size() != 1) {
599 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 args, got %zu", name,
600 argv.size());
601 }
Tao Bao039f2da2016-11-22 16:29:50 -0800602 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800603 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800604 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
605 }
606 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800607
Tao Bao039f2da2016-11-22 16:29:50 -0800608 size_t bytes;
609 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
610 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
611 name, bytes_str.c_str());
612 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800613
Tao Bao039f2da2016-11-22 16:29:50 -0800614 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800615}
616
Tao Bao039f2da2016-11-22 16:29:50 -0800617// apply_patch(src_file, tgt_file, tgt_sha1, tgt_size, patch1_sha1, patch1_blob, [...])
618// Applies a binary patch to the src_file to produce the tgt_file. If the desired target is the
619// same as the source, pass "-" for tgt_file. tgt_sha1 and tgt_size are the expected final SHA1
620// hash and size of the target file. The remaining arguments must come in pairs: a SHA1 hash (a
621// 40-character hex string) and a blob. The blob is the patch to be applied when the source
622// file's current contents have the given SHA1.
623//
624// The patching is done in a safe manner that guarantees the target file either has the desired
625// SHA1 hash and size, or it is untouched -- it will not be left in an unrecoverable intermediate
626// state. If the process is interrupted during patching, the target file may be in an intermediate
627// state; a copy exists in the cache partition so restarting the update can successfully update
628// the file.
Tianjie Xuc4447322017-03-06 14:44:59 -0800629Value* ApplyPatchFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
630 if (argv.size() < 6 || (argv.size() % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700631 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xuc4447322017-03-06 14:44:59 -0800632 "even number, got %zu", name, argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700633 }
634
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700635 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800636 if (!ReadArgs(state, argv, &args, 0, 4)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700637 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700638 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700639 const std::string& source_filename = args[0];
640 const std::string& target_filename = args[1];
641 const std::string& target_sha1 = args[2];
642 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700643
Tao Baob15fd222015-09-24 11:10:51 -0700644 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700645 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
646 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
647 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800648 }
649
Tianjie Xuc4447322017-03-06 14:44:59 -0800650 int patchcount = (argv.size()-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700651 std::vector<std::unique_ptr<Value>> arg_values;
Tianjie Xuc4447322017-03-06 14:44:59 -0800652 if (!ReadValueArgs(state, argv, &arg_values, 4, argv.size() - 4)) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800653 return nullptr;
654 }
655
Yabin Cui64be2132016-02-03 18:16:02 -0800656 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700657 if (arg_values[i * 2]->type != VAL_STRING) {
658 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
659 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800660 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700661 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
662 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
663 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800664 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700665 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700666
Tianjie Xuaced5d92016-10-12 10:55:04 -0700667 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700668 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800669 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700670 patch_sha_str.push_back(arg_values[i * 2]->data);
671 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700672 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800673
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700674 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
675 target_sha1.c_str(), target_size,
676 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800677
Tianjie Xuaced5d92016-10-12 10:55:04 -0700678 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800679}
680
Tao Bao039f2da2016-11-22 16:29:50 -0800681// apply_patch_check(filename, [sha1, ...])
682// Returns true if the contents of filename or the temporary copy in the cache partition (if
683// present) have a SHA-1 checksum equal to one of the given sha1 values. sha1 values are
684// specified as 40 hex digits. This function differs from sha1_check(read_file(filename),
685// sha1 [, ...]) in that it knows to check the cache partition copy, so apply_patch_check() will
686// succeed even if the file was corrupted by an interrupted apply_patch() update.
Tianjie Xuc4447322017-03-06 14:44:59 -0800687Value* ApplyPatchCheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
688 if (argv.size() < 1) {
689 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %zu", name,
690 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800691 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800692
Tao Bao039f2da2016-11-22 16:29:50 -0800693 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800694 if (!ReadArgs(state, argv, &args, 0, 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800695 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
696 }
697 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800698
Tao Bao039f2da2016-11-22 16:29:50 -0800699 std::vector<std::string> sha1s;
Tao Baodb56eb02017-03-23 06:34:20 -0700700 if (argv.size() > 1 && !ReadArgs(state, argv, &sha1s, 1, argv.size() - 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800701 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
702 }
703 int result = applypatch_check(filename.c_str(), sha1s);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800704
Tao Bao039f2da2016-11-22 16:29:50 -0800705 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700706}
707
Tao Bao0bbc7642017-03-29 23:57:47 -0700708// This is the updater side handler for ui_print() in edify script. Contents will be sent over to
709// the recovery side for on-screen display.
Tianjie Xuc4447322017-03-06 14:44:59 -0800710Value* UIPrintFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Bao039f2da2016-11-22 16:29:50 -0800711 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800712 if (!ReadArgs(state, argv, &args)) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700713 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tao Bao039f2da2016-11-22 16:29:50 -0800714 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700715
Tao Bao0bbc7642017-03-29 23:57:47 -0700716 std::string buffer = android::base::Join(args, "");
Tao Bao039f2da2016-11-22 16:29:50 -0800717 uiPrint(state, buffer);
718 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700719}
720
Tianjie Xuc4447322017-03-06 14:44:59 -0800721Value* WipeCacheFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
722 if (!argv.empty()) {
723 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
724 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800725 }
726 fprintf(static_cast<UpdaterInfo*>(state->cookie)->cmd_pipe, "wipe_cache\n");
727 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700728}
729
Tianjie Xuc4447322017-03-06 14:44:59 -0800730Value* RunProgramFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
731 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800732 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
733 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700734
Tao Bao039f2da2016-11-22 16:29:50 -0800735 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800736 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800737 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
738 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700739
Tianjie Xuc4447322017-03-06 14:44:59 -0800740 char* args2[argv.size() + 1];
741 for (size_t i = 0; i < argv.size(); i++) {
Tao Bao039f2da2016-11-22 16:29:50 -0800742 args2[i] = &args[i][0];
743 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800744 args2[argv.size()] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700745
Tianjie Xuc4447322017-03-06 14:44:59 -0800746 LOG(INFO) << "about to run program [" << args2[0] << "] with " << argv.size() << " args";
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700747
Tao Bao039f2da2016-11-22 16:29:50 -0800748 pid_t child = fork();
749 if (child == 0) {
750 execv(args2[0], args2);
751 PLOG(ERROR) << "run_program: execv failed";
Tao Bao3da88012017-02-03 13:09:23 -0800752 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800753 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700754
Tao Bao039f2da2016-11-22 16:29:50 -0800755 int status;
756 waitpid(child, &status, 0);
757 if (WIFEXITED(status)) {
758 if (WEXITSTATUS(status) != 0) {
759 LOG(ERROR) << "run_program: child exited with status " << WEXITSTATUS(status);
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700760 }
Tao Bao039f2da2016-11-22 16:29:50 -0800761 } else if (WIFSIGNALED(status)) {
762 LOG(ERROR) << "run_program: child terminated by signal " << WTERMSIG(status);
763 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700764
Tao Bao039f2da2016-11-22 16:29:50 -0800765 return StringValue(std::to_string(status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700766}
767
Doug Zongker512536a2010-02-17 16:11:44 -0800768// sha1_check(data)
769// to return the sha1 of the data (given in the format returned by
770// read_file).
771//
772// sha1_check(data, sha1_hex, [sha1_hex, ...])
773// returns the sha1 of the file if it matches any of the hex
774// strings passed, or "" if it does not equal any of them.
775//
Tianjie Xuc4447322017-03-06 14:44:59 -0800776Value* Sha1CheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
777 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800778 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
779 }
Doug Zongker512536a2010-02-17 16:11:44 -0800780
Tao Bao039f2da2016-11-22 16:29:50 -0800781 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800782 if (!ReadValueArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800783 return nullptr;
784 }
Doug Zongker512536a2010-02-17 16:11:44 -0800785
Tao Bao039f2da2016-11-22 16:29:50 -0800786 if (args[0]->type == VAL_INVALID) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700787 return StringValue("");
Tao Bao039f2da2016-11-22 16:29:50 -0800788 }
789 uint8_t digest[SHA_DIGEST_LENGTH];
790 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
Doug Zongker512536a2010-02-17 16:11:44 -0800791
Tianjie Xuc4447322017-03-06 14:44:59 -0800792 if (argv.size() == 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800793 return StringValue(print_sha1(digest));
794 }
Doug Zongker512536a2010-02-17 16:11:44 -0800795
Tianjie Xuc4447322017-03-06 14:44:59 -0800796 for (size_t i = 1; i < argv.size(); ++i) {
Yabin Cui64be2132016-02-03 18:16:02 -0800797 uint8_t arg_digest[SHA_DIGEST_LENGTH];
Tao Bao039f2da2016-11-22 16:29:50 -0800798 if (args[i]->type != VAL_STRING) {
799 LOG(ERROR) << name << "(): arg " << i << " is not a string; skipping";
800 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
801 // Warn about bad args and skip them.
802 LOG(ERROR) << name << "(): error parsing \"" << args[i]->data << "\" as sha-1; skipping";
803 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
804 // Found a match.
805 return args[i].release();
Doug Zongker512536a2010-02-17 16:11:44 -0800806 }
Tao Bao039f2da2016-11-22 16:29:50 -0800807 }
808
809 // Didn't match any of the hex strings; return false.
810 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -0800811}
812
Hristo Bojinovdb314d62010-08-02 10:29:49 -0700813// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -0800814// is actually a FileContents*).
Tianjie Xuc4447322017-03-06 14:44:59 -0800815Value* ReadFileFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
816 if (argv.size() != 1) {
817 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800818 }
Doug Zongker512536a2010-02-17 16:11:44 -0800819
Tao Bao039f2da2016-11-22 16:29:50 -0800820 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800821 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800822 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
823 }
824 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -0800825
Tao Bao039f2da2016-11-22 16:29:50 -0800826 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -0800827
Tao Bao039f2da2016-11-22 16:29:50 -0800828 FileContents fc;
829 if (LoadFileContents(filename.c_str(), &fc) == 0) {
Doug Zongker512536a2010-02-17 16:11:44 -0800830 v->type = VAL_BLOB;
Tao Bao039f2da2016-11-22 16:29:50 -0800831 v->data = std::string(fc.data.begin(), fc.data.end());
832 }
833 return v;
Doug Zongker512536a2010-02-17 16:11:44 -0800834}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700835
Tao Bao1bf17722016-11-03 23:52:01 -0700836// write_value(value, filename)
837// Writes 'value' to 'filename'.
838// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
Tianjie Xuc4447322017-03-06 14:44:59 -0800839Value* WriteValueFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
840 if (argv.size() != 2) {
841 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
842 argv.size());
Tao Baod0f30882016-11-03 23:52:01 -0700843 }
Tao Bao1bf17722016-11-03 23:52:01 -0700844
Tao Baod0f30882016-11-03 23:52:01 -0700845 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800846 if (!ReadArgs(state, argv, &args)) {
Tao Baod0f30882016-11-03 23:52:01 -0700847 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
848 }
Tao Bao1bf17722016-11-03 23:52:01 -0700849
Tao Baod0f30882016-11-03 23:52:01 -0700850 const std::string& filename = args[1];
851 if (filename.empty()) {
852 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
853 }
Tao Bao1bf17722016-11-03 23:52:01 -0700854
Tao Baod0f30882016-11-03 23:52:01 -0700855 const std::string& value = args[0];
856 if (!android::base::WriteStringToFile(value, filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800857 PLOG(ERROR) << name << ": Failed to write to \"" << filename << "\"";
Tao Baod0f30882016-11-03 23:52:01 -0700858 return StringValue("");
859 } else {
860 return StringValue("t");
861 }
Tao Bao1bf17722016-11-03 23:52:01 -0700862}
863
Doug Zongkerc87bab12013-11-25 13:53:25 -0800864// Immediately reboot the device. Recovery is not finished normally,
865// so if you reboot into recovery it will re-start applying the
866// current package (because nothing has cleared the copy of the
867// arguments stored in the BCB).
868//
869// The argument is the partition name passed to the android reboot
870// property. It can be "recovery" to boot from the recovery
871// partition, or "" (empty string) to boot from the regular boot
872// partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800873Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
874 if (argv.size() != 2) {
875 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
876 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800877 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800878
Tao Baobedf5fc2016-11-18 12:01:26 -0800879 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800880 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800881 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
882 }
883 const std::string& filename = args[0];
884 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800885
Tao Baobedf5fc2016-11-18 12:01:26 -0800886 // Zero out the 'command' field of the bootloader message. Leave the rest intact.
887 bootloader_message boot;
888 std::string err;
889 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800890 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800891 return StringValue("");
892 }
893 memset(boot.command, 0, sizeof(boot.command));
894 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800895 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800896 return StringValue("");
897 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800898
Dmitri Plotnikoved9db0f2017-04-18 08:28:26 -0700899 std::string reboot_cmd = "reboot," + property;
900 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
901 reboot_cmd += ",quiescent";
902 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800903 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800904
Tao Baobedf5fc2016-11-18 12:01:26 -0800905 sleep(5);
906 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800907}
908
909// Store a string value somewhere that future invocations of recovery
910// can access it. This value is called the "stage" and can be used to
911// drive packages that need to do reboots in the middle of
912// installation and keep track of where they are in the multi-stage
913// install.
914//
915// The first argument is the block device for the misc partition
916// ("/misc" in the fstab), which is where this value is stored. The
917// second argument is the string to store; it should not exceed 31
918// bytes.
Tianjie Xuc4447322017-03-06 14:44:59 -0800919Value* SetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
920 if (argv.size() != 2) {
921 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
922 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800923 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800924
Tao Baobedf5fc2016-11-18 12:01:26 -0800925 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800926 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800927 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
928 }
929 const std::string& filename = args[0];
930 const std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800931
Tao Baobedf5fc2016-11-18 12:01:26 -0800932 // Store this value in the misc partition, immediately after the
933 // bootloader message that the main recovery uses to save its
934 // arguments in case of the device restarting midway through
935 // package installation.
936 bootloader_message boot;
937 std::string err;
938 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800939 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800940 return StringValue("");
941 }
942 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage));
943 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800944 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800945 return StringValue("");
946 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800947
Tao Baobedf5fc2016-11-18 12:01:26 -0800948 return StringValue(filename);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800949}
950
951// Return the value most recently saved with SetStageFn. The argument
952// is the block device for the misc partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800953Value* GetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
954 if (argv.size() != 1) {
955 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800956 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800957
Tao Baobedf5fc2016-11-18 12:01:26 -0800958 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800959 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800960 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
961 }
962 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800963
Tao Baobedf5fc2016-11-18 12:01:26 -0800964 bootloader_message boot;
965 std::string err;
966 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800967 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800968 return StringValue("");
969 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800970
Tao Baobedf5fc2016-11-18 12:01:26 -0800971 return StringValue(boot.stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800972}
973
Tianjie Xuc4447322017-03-06 14:44:59 -0800974Value* WipeBlockDeviceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
975 if (argv.size() != 2) {
976 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
977 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800978 }
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800979
Tao Bao358c2ec2016-11-28 11:48:43 -0800980 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800981 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800982 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
983 }
984 const std::string& filename = args[0];
985 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800986
Tao Bao358c2ec2016-11-28 11:48:43 -0800987 size_t len;
988 if (!android::base::ParseUint(len_str.c_str(), &len)) {
989 return nullptr;
990 }
991 unique_fd fd(ota_open(filename.c_str(), O_WRONLY, 0644));
992 // The wipe_block_device function in ext4_utils returns 0 on success and 1
993 // for failure.
994 int status = wipe_block_device(fd, len);
995 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800996}
997
Tianjie Xuc4447322017-03-06 14:44:59 -0800998Value* EnableRebootFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
999 if (!argv.empty()) {
1000 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
1001 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -08001002 }
1003 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
1004 fprintf(ui->cmd_pipe, "enable_reboot\n");
1005 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -07001006}
1007
Tianjie Xuc4447322017-03-06 14:44:59 -08001008Value* Tune2FsFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
Ethan Yonker7e1b9862015-03-19 14:10:01 -05001009#ifdef HAVE_LIBTUNE2FS
Tianjie Xuc4447322017-03-06 14:44:59 -08001010 if (argv.empty()) {
1011 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -08001012 }
Michael Rungeb278c252014-11-21 00:12:28 -08001013
Tao Bao039f2da2016-11-22 16:29:50 -08001014 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -08001015 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -08001016 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
1017 }
Michael Rungeb278c252014-11-21 00:12:28 -08001018
Tianjie Xuc4447322017-03-06 14:44:59 -08001019 char* args2[argv.size() + 1];
Tao Bao039f2da2016-11-22 16:29:50 -08001020 // Tune2fs expects the program name as its args[0]
1021 args2[0] = const_cast<char*>(name);
1022 if (args2[0] == nullptr) {
1023 return nullptr;
1024 }
Tianjie Xuc4447322017-03-06 14:44:59 -08001025 for (size_t i = 0; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -08001026 args2[i + 1] = &args[i][0];
1027 }
Michael Rungeb278c252014-11-21 00:12:28 -08001028
Tao Bao039f2da2016-11-22 16:29:50 -08001029 // tune2fs changes the file system parameters on an ext2 file system; it
1030 // returns 0 on success.
Tianjie Xuc4447322017-03-06 14:44:59 -08001031 int result = tune2fs_main(argv.size() + 1, args2);
Tao Bao039f2da2016-11-22 16:29:50 -08001032 if (result != 0) {
1033 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
1034 }
1035 return StringValue("t");
Ethan Yonker7e1b9862015-03-19 14:10:01 -05001036#else
Ethan Yonker8373cfe2017-09-08 06:50:54 -05001037 return ErrorAbort(state, kTune2FsFailure, "%s() support not present, no libtune2fs", name);
Ethan Yonker7e1b9862015-03-19 14:10:01 -05001038#endif // HAVE_LIBTUNE2FS
Michael Rungeb278c252014-11-21 00:12:28 -08001039}
1040
Doug Zongker9931f7f2009-06-10 14:11:53 -07001041void RegisterInstallFunctions() {
Tao Bao039f2da2016-11-22 16:29:50 -08001042 RegisterFunction("mount", MountFn);
1043 RegisterFunction("is_mounted", IsMountedFn);
1044 RegisterFunction("unmount", UnmountFn);
1045 RegisterFunction("format", FormatFn);
1046 RegisterFunction("show_progress", ShowProgressFn);
1047 RegisterFunction("set_progress", SetProgressFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001048 RegisterFunction("package_extract_file", PackageExtractFileFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001049
Tao Bao039f2da2016-11-22 16:29:50 -08001050 RegisterFunction("getprop", GetPropFn);
1051 RegisterFunction("file_getprop", FileGetPropFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001052
Tao Bao039f2da2016-11-22 16:29:50 -08001053 RegisterFunction("apply_patch", ApplyPatchFn);
1054 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1055 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001056
Tao Bao039f2da2016-11-22 16:29:50 -08001057 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001058
Tao Bao039f2da2016-11-22 16:29:50 -08001059 RegisterFunction("read_file", ReadFileFn);
1060 RegisterFunction("sha1_check", Sha1CheckFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001061 RegisterFunction("write_value", WriteValueFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001062
Tao Bao039f2da2016-11-22 16:29:50 -08001063 RegisterFunction("wipe_cache", WipeCacheFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001064
Tao Bao039f2da2016-11-22 16:29:50 -08001065 RegisterFunction("ui_print", UIPrintFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001066
Tao Bao039f2da2016-11-22 16:29:50 -08001067 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001068
Tao Bao039f2da2016-11-22 16:29:50 -08001069 RegisterFunction("reboot_now", RebootNowFn);
1070 RegisterFunction("get_stage", GetStageFn);
1071 RegisterFunction("set_stage", SetStageFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001072
Tao Bao039f2da2016-11-22 16:29:50 -08001073 RegisterFunction("enable_reboot", EnableRebootFn);
1074 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001075}