blob: 59c54dd4cee608ff0727c716ea94380dd4ee9316 [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tao Bao0c7839a2016-10-10 15:48:37 -070017#include "updater/install.h"
18
Doug Zongkerfbf3c102009-06-24 09:36:20 -070019#include <ctype.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070020#include <errno.h>
Tao Bao361342c2016-02-08 11:15:50 -080021#include <fcntl.h>
22#include <ftw.h>
23#include <inttypes.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070024#include <stdarg.h>
Doug Zongkerfbf3c102009-06-24 09:36:20 -070025#include <stdio.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070026#include <stdlib.h>
27#include <string.h>
Tao Bao361342c2016-02-08 11:15:50 -080028#include <sys/capability.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070029#include <sys/mount.h>
30#include <sys/stat.h>
31#include <sys/types.h>
Doug Zongkera3f89ea2009-09-10 14:10:48 -070032#include <sys/wait.h>
Nick Kralevich5dbdef02013-09-07 14:41:06 -070033#include <sys/xattr.h>
Tao Bao361342c2016-02-08 11:15:50 -080034#include <time.h>
35#include <unistd.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070036#include <utime.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070037
Yabin Cui64be2132016-02-03 18:16:02 -080038#include <memory>
Tao Bao361342c2016-02-08 11:15:50 -080039#include <string>
Yabin Cui64be2132016-02-03 18:16:02 -080040#include <vector>
41
Elliott Hughes4b166f02015-12-04 15:30:20 -080042#include <android-base/parseint.h>
Tianjie Xu5fe280a2016-10-17 18:15:20 -070043#include <android-base/parsedouble.h>
Elliott Hughescb220402016-09-23 15:30:55 -070044#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080045#include <android-base/strings.h>
46#include <android-base/stringprintf.h>
Tao Bao0c7839a2016-10-10 15:48:37 -070047#include <cutils/android_reboot.h>
Tao Baode40ba52016-10-05 23:17:01 -070048#include <ext4_utils/make_ext4fs.h>
49#include <ext4_utils/wipe.h>
Tao Bao361342c2016-02-08 11:15:50 -080050#include <openssl/sha.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070051#include <selinux/label.h>
52#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070053#include <ziparchive/zip_archive.h>
Tao Bao1107d962015-09-09 17:16:55 -070054
Doug Zongkerc87bab12013-11-25 13:53:25 -080055#include "applypatch/applypatch.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070056#include "bootloader.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070057#include "edify/expr.h"
Tianjie Xu16255832016-04-30 11:49:59 -070058#include "error_code.h"
Elliott Hughes63a31922016-06-09 17:41:22 -070059#include "mounts.h"
Jed Estep39c1b5e2015-12-15 16:04:53 -080060#include "ota_io.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070061#include "otautil/DirUtil.h"
62#include "otautil/ZipUtil.h"
Tao Bao361342c2016-02-08 11:15:50 -080063#include "print_sha1.h"
Michael Rungeacf47db2014-11-21 00:12:28 -080064#include "tune2fs.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070065#include "updater/updater.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070066
Tao Bao1107d962015-09-09 17:16:55 -070067// Send over the buffer to recovery though the command pipe.
68static void uiPrint(State* state, const std::string& buffer) {
Tao Bao0831d0b2016-11-03 23:25:04 -070069 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070070
Tao Bao1107d962015-09-09 17:16:55 -070071 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
72 // So skip sending empty strings to UI.
73 std::vector<std::string> lines = android::base::Split(buffer, "\n");
74 for (auto& line: lines) {
75 if (!line.empty()) {
76 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
77 fprintf(ui->cmd_pipe, "ui_print\n");
78 }
79 }
80
81 // On the updater side, we need to dump the contents to stderr (which has
82 // been redirected to the log file). Because the recovery will only print
83 // the contents to screen when processing pipe command ui_print.
84 fprintf(stderr, "%s", buffer.c_str());
Michael Runged4a63422014-10-22 19:48:41 -070085}
86
Elliott Hughes83ce7552016-06-30 09:28:42 -070087void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
Tao Bao1107d962015-09-09 17:16:55 -070088 std::string error_msg;
89
Michael Runged4a63422014-10-22 19:48:41 -070090 va_list ap;
91 va_start(ap, format);
Tao Bao1107d962015-09-09 17:16:55 -070092 android::base::StringAppendV(&error_msg, format, ap);
Michael Runged4a63422014-10-22 19:48:41 -070093 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -070094
Michael Runged4a63422014-10-22 19:48:41 -070095 uiPrint(state, error_msg);
96}
97
Tianjie Xud75003d2016-11-04 11:31:29 -070098static bool is_dir(const std::string& dirpath) {
99 struct stat st;
100 return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
101}
102
Tao Bao0c7839a2016-10-10 15:48:37 -0700103// Create all parent directories of name, if necessary.
Tianjie Xud75003d2016-11-04 11:31:29 -0700104static bool make_parents(const std::string& name) {
105 size_t prev_end = 0;
106 while (prev_end < name.size()) {
107 size_t next_end = name.find('/', prev_end + 1);
108 if (next_end == std::string::npos) {
109 break;
Tao Bao0c7839a2016-10-10 15:48:37 -0700110 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700111 std::string dir_path = name.substr(0, next_end);
112 if (!is_dir(dir_path)) {
113 int result = mkdir(dir_path.c_str(), 0700);
114 if (result != 0) {
115 printf("failed to mkdir %s when make parents for %s: %s\n", dir_path.c_str(),
116 name.c_str(), strerror(errno));
117 return false;
118 }
119
120 printf("created [%s]\n", dir_path.c_str());
121 }
122 prev_end = next_end;
Tao Bao0c7839a2016-10-10 15:48:37 -0700123 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700124 return true;
Tao Bao0c7839a2016-10-10 15:48:37 -0700125}
126
Doug Zongker3d177d02010-07-01 09:18:44 -0700127// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -0700128// mount(fs_type, partition_type, location, mount_point, mount_options)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700129//
Doug Zongker3d177d02010-07-01 09:18:44 -0700130// fs_type="ext4" partition_type="EMMC" location=device
Doug Zongker512536a2010-02-17 16:11:44 -0800131Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) {
Michael Runge168f7772014-10-22 17:05:08 -0700132 if (argc != 4 && argc != 5) {
Tianjie Xu16255832016-04-30 11:49:59 -0700133 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700134 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700135
136 std::vector<std::string> args;
137 if (!ReadArgs(state, argc, argv, &args)) {
138 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
139 }
140 const std::string& fs_type = args[0];
141 const std::string& partition_type = args[1];
142 const std::string& location = args[2];
143 const std::string& mount_point = args[3];
144 std::string mount_options;
145
Michael Runge168f7772014-10-22 17:05:08 -0700146 if (argc == 5) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700147 mount_options = args[4];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700148 }
149
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700150 if (fs_type.empty()) {
151 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty",
152 name);
Doug Zongker3d177d02010-07-01 09:18:44 -0700153 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700154 if (partition_type.empty()) {
155 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
156 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700157 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700158 if (location.empty()) {
159 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty",
160 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700161 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700162 if (mount_point.empty()) {
163 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
164 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700165 }
166
Tao Baoba9a42a2015-06-23 23:23:33 -0700167 {
168 char *secontext = NULL;
Stephen Smalley779701d2012-02-09 14:13:23 -0500169
Tao Baoba9a42a2015-06-23 23:23:33 -0700170 if (sehandle) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700171 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
Tao Baoba9a42a2015-06-23 23:23:33 -0700172 setfscreatecon(secontext);
173 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500174
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700175 mkdir(mount_point.c_str(), 0755);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700176
Tao Baoba9a42a2015-06-23 23:23:33 -0700177 if (secontext) {
178 freecon(secontext);
179 setfscreatecon(NULL);
180 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500181 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500182
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700183 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
184 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
Elliott Hughes63a31922016-06-09 17:41:22 -0700185 uiPrintf(state, "%s: failed to mount %s at %s: %s\n",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700186 name, location.c_str(), mount_point.c_str(), strerror(errno));
187 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700188 }
189
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700190 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700191}
192
Doug Zongker8edb00c2009-06-11 17:21:44 -0700193
194// is_mounted(mount_point)
Doug Zongker512536a2010-02-17 16:11:44 -0800195Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700196 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700197 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700198 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700199
200 std::vector<std::string> args;
201 if (!ReadArgs(state, argc, argv, &args)) {
202 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700203 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700204 const std::string& mount_point = args[0];
205 if (mount_point.empty()) {
206 return ErrorAbort(state, kArgsParsingFailure,
207 "mount_point argument to unmount() can't be empty");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700208 }
209
210 scan_mounted_volumes();
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700211 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
212 if (vol == nullptr) {
213 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700214 }
215
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700216 return StringValue(mount_point);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700217}
218
219
Doug Zongker512536a2010-02-17 16:11:44 -0800220Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700221 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700222 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700223 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700224 std::vector<std::string> args;
225 if (!ReadArgs(state, argc, argv, &args)) {
226 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700227 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700228 const std::string& mount_point = args[0];
229 if (mount_point.empty()) {
230 return ErrorAbort(state, kArgsParsingFailure,
231 "mount_point argument to unmount() can't be empty");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700232 }
233
234 scan_mounted_volumes();
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700235 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
236 if (vol == nullptr) {
237 uiPrintf(state, "unmount of %s failed; no such volume\n", mount_point.c_str());
238 return nullptr;
239 } else {
240 int ret = unmount_mounted_volume(vol);
241 if (ret != 0) {
242 uiPrintf(state, "unmount of %s failed (%d): %s\n",
243 mount_point.c_str(), ret, strerror(errno));
Michael Runge5ddf4292014-10-24 14:14:41 -0700244 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700245 }
246
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700247 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700248}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700249
JP Abgrall37aedb32014-06-16 19:07:39 -0700250static int exec_cmd(const char* path, char* const argv[]) {
251 int status;
252 pid_t child;
253 if ((child = vfork()) == 0) {
254 execv(path, argv);
255 _exit(-1);
256 }
257 waitpid(child, &status, 0);
258 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
259 printf("%s failed with status %d\n", path, WEXITSTATUS(status));
260 }
261 return WEXITSTATUS(status);
262}
263
Stephen Smalley779701d2012-02-09 14:13:23 -0500264// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700265//
Stephen Smalley779701d2012-02-09 14:13:23 -0500266// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700267// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
268// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800269// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700270// if fs_size < 0, then reserve that many bytes at the end of the partition (not for "f2fs")
Doug Zongker512536a2010-02-17 16:11:44 -0800271Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
Stephen Smalley516e4e22012-04-03 13:35:11 -0400272 if (argc != 5) {
Tianjie Xu16255832016-04-30 11:49:59 -0700273 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700274 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500275
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700276 std::vector<std::string> args;
277 if (!ReadArgs(state, argc, argv, &args)) {
278 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
279 }
280 const std::string& fs_type = args[0];
281 const std::string& partition_type = args[1];
282 const std::string& location = args[2];
283 const std::string& fs_size = args[3];
284 const std::string& mount_point = args[4];
285
286 if (fs_type.empty()) {
287 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty",
288 name);
289 }
290 if (partition_type.empty()) {
291 return ErrorAbort(state, kArgsParsingFailure,
292 "partition_type argument to %s() can't be empty", name);
293 }
294 if (location.empty()) {
295 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty",
296 name);
297 }
298 if (mount_point.empty()) {
299 return ErrorAbort(state, kArgsParsingFailure,
300 "mount_point argument to %s() can't be empty", name);
Stephen Smalley779701d2012-02-09 14:13:23 -0500301 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700302
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700303 int64_t size;
Tao Baoa659d792016-11-03 23:25:04 -0700304 if (!android::base::ParseInt(fs_size, &size)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700305 return ErrorAbort(state, kArgsParsingFailure,
306 "%s: failed to parse int in %s\n", name, fs_size.c_str());
Doug Zongker9931f7f2009-06-10 14:11:53 -0700307 }
308
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700309 if (fs_type == "ext4") {
310 int status = make_ext4fs(location.c_str(), size, mount_point.c_str(), sehandle);
Doug Zongker3d177d02010-07-01 09:18:44 -0700311 if (status != 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700312 printf("%s: make_ext4fs failed (%d) on %s", name, status, location.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700313 return StringValue("");
Doug Zongker3d177d02010-07-01 09:18:44 -0700314 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700315 return StringValue(location);
316 } else if (fs_type == "f2fs") {
317 if (size < 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700318 printf("%s: fs_size can't be negative for f2fs: %s", name, fs_size.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700319 return StringValue("");
JP Abgrall37aedb32014-06-16 19:07:39 -0700320 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700321 std::string num_sectors = std::to_string(size / 512);
322
JP Abgrall37aedb32014-06-16 19:07:39 -0700323 const char *f2fs_path = "/sbin/mkfs.f2fs";
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700324 const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", location.c_str(),
325 num_sectors.c_str(), nullptr};
JP Abgrall37aedb32014-06-16 19:07:39 -0700326 int status = exec_cmd(f2fs_path, (char* const*)f2fs_argv);
JP Abgrall37aedb32014-06-16 19:07:39 -0700327 if (status != 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700328 printf("%s: mkfs.f2fs failed (%d) on %s", name, status, location.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700329 return StringValue("");
JP Abgrall37aedb32014-06-16 19:07:39 -0700330 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700331 return StringValue(location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700332 } else {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700333 printf("%s: unsupported fs_type \"%s\" partition_type \"%s\"",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700334 name, fs_type.c_str(), partition_type.c_str());
Doug Zongker9931f7f2009-06-10 14:11:53 -0700335 }
336
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700337 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700338}
339
Tao Baoa659d792016-11-03 23:25:04 -0700340// rename(src_name, dst_name)
341// Renames src_name to dst_name. It automatically creates the necessary directories for dst_name.
342// Example: rename("system/app/Hangouts/Hangouts.apk", "system/priv-app/Hangouts/Hangouts.apk")
Michael Rungece7ca712013-11-06 17:42:20 -0800343Value* RenameFn(const char* name, State* state, int argc, Expr* argv[]) {
Michael Rungece7ca712013-11-06 17:42:20 -0800344 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700345 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Michael Rungece7ca712013-11-06 17:42:20 -0800346 }
347
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700348 std::vector<std::string> args;
349 if (!ReadArgs(state, argc, argv, &args)) {
350 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
351 }
352 const std::string& src_name = args[0];
Tianjie Xud75003d2016-11-04 11:31:29 -0700353 const std::string& dst_name = args[1];
Michael Rungece7ca712013-11-06 17:42:20 -0800354
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700355 if (src_name.empty()) {
356 return ErrorAbort(state, kArgsParsingFailure, "src_name argument to %s() can't be empty",
357 name);
Michael Rungece7ca712013-11-06 17:42:20 -0800358 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700359 if (dst_name.empty()) {
360 return ErrorAbort(state, kArgsParsingFailure, "dst_name argument to %s() can't be empty",
361 name);
Michael Rungece7ca712013-11-06 17:42:20 -0800362 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700363 if (!make_parents(dst_name)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700364 return ErrorAbort(state, kFileRenameFailure, "Creating parent of %s failed, error %s",
365 dst_name.c_str(), strerror(errno));
366 } else if (access(dst_name.c_str(), F_OK) == 0 && access(src_name.c_str(), F_OK) != 0) {
Michael Runge2f0ef732014-10-22 14:28:23 -0700367 // File was already moved
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700368 return StringValue(dst_name);
369 } else if (rename(src_name.c_str(), dst_name.c_str()) != 0) {
370 return ErrorAbort(state, kFileRenameFailure, "Rename of %s to %s failed, error %s",
371 src_name.c_str(), dst_name.c_str(), strerror(errno));
Michael Rungece7ca712013-11-06 17:42:20 -0800372 }
373
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700374 return StringValue(dst_name);
Michael Rungece7ca712013-11-06 17:42:20 -0800375}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700376
Tao Bao0831d0b2016-11-03 23:25:04 -0700377// delete([filename, ...])
378// Deletes all the filenames listed. Returns the number of files successfully deleted.
379//
380// delete_recursive([dirname, ...])
381// Recursively deletes dirnames and all their contents. Returns the number of directories
382// successfully deleted.
Doug Zongker512536a2010-02-17 16:11:44 -0800383Value* DeleteFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700384 std::vector<std::string> paths(argc);
Tao Baoba9a42a2015-06-23 23:23:33 -0700385 for (int i = 0; i < argc; ++i) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700386 if (!Evaluate(state, argv[i], &paths[i])) {
387 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700388 }
389 }
390
391 bool recursive = (strcmp(name, "delete_recursive") == 0);
392
393 int success = 0;
Tao Baoba9a42a2015-06-23 23:23:33 -0700394 for (int i = 0; i < argc; ++i) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700395 if ((recursive ? dirUnlinkHierarchy(paths[i].c_str()) : unlink(paths[i].c_str())) == 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700396 ++success;
Tianjie Xuaced5d92016-10-12 10:55:04 -0700397 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700398 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700399
Tao Bao0831d0b2016-11-03 23:25:04 -0700400 return StringValue(std::to_string(success));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700401}
402
Doug Zongker8edb00c2009-06-11 17:21:44 -0700403
Doug Zongker512536a2010-02-17 16:11:44 -0800404Value* ShowProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700405 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700406 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700407 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700408
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700409 std::vector<std::string> args;
410 if (!ReadArgs(state, argc, argv, &args)) {
411 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
412 }
413 const std::string& frac_str = args[0];
414 const std::string& sec_str = args[1];
415
416 double frac;
417 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
418 return ErrorAbort(state, kArgsParsingFailure,
419 "%s: failed to parse double in %s\n", name, frac_str.c_str());
420 }
Tao Baob15fd222015-09-24 11:10:51 -0700421 int sec;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700422 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
423 return ErrorAbort(state, kArgsParsingFailure,
424 "%s: failed to parse int in %s\n", name, sec_str.c_str());
425 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700426
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700427 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700428 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
429
Doug Zongker512536a2010-02-17 16:11:44 -0800430 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700431}
432
Doug Zongker512536a2010-02-17 16:11:44 -0800433Value* SetProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700434 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700435 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700436 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700437
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700438 std::vector<std::string> args;
439 if (!ReadArgs(state, 1, argv, &args)) {
440 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
441 }
442 const std::string& frac_str = args[0];
443
444 double frac;
445 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
446 return ErrorAbort(state, kArgsParsingFailure,
447 "%s: failed to parse double in %s\n", name, frac_str.c_str());
448 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700449
450 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
451 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
452
Doug Zongker512536a2010-02-17 16:11:44 -0800453 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700454}
455
Doug Zongker8edb00c2009-06-11 17:21:44 -0700456// package_extract_dir(package_path, destination_path)
Doug Zongker512536a2010-02-17 16:11:44 -0800457Value* PackageExtractDirFn(const char* name, State* state,
Doug Zongker8edb00c2009-06-11 17:21:44 -0700458 int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700459 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700460 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700461 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700462
463 std::vector<std::string> args;
464 if (!ReadArgs(state, 2, argv, &args)) {
465 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
466 }
467 const std::string& zip_path = args[0];
468 const std::string& dest_path = args[1];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700469
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700470 ZipArchiveHandle za = ((UpdaterInfo*)(state->cookie))->package_zip;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700471
472 // To create a consistent system image, never use the clock for timestamps.
473 struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default
474
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700475 bool success = ExtractPackageRecursive(za, zip_path, dest_path, &timestamp, sehandle);
476
Tianjie Xuaced5d92016-10-12 10:55:04 -0700477 return StringValue(success ? "t" : "");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700478}
479
Doug Zongker8edb00c2009-06-11 17:21:44 -0700480
481// package_extract_file(package_path, destination_path)
Doug Zongker6aece332010-02-01 14:40:12 -0800482// or
483// package_extract_file(package_path)
484// to return the entire contents of the file as the result of this
Doug Zongker512536a2010-02-17 16:11:44 -0800485// function (the char* returned is actually a FileContents*).
486Value* PackageExtractFileFn(const char* name, State* state,
Doug Zongker8edb00c2009-06-11 17:21:44 -0700487 int argc, Expr* argv[]) {
Doug Zongker5f875bf2014-08-22 14:53:43 -0700488 if (argc < 1 || argc > 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700489 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %d",
Doug Zongker6aece332010-02-01 14:40:12 -0800490 name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700491 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700492 bool success = false;
Doug Zongker43772d22014-06-09 14:13:19 -0700493
Doug Zongker5f875bf2014-08-22 14:53:43 -0700494 if (argc == 2) {
495 // The two-argument version extracts to a file.
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800496
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700497 ZipArchiveHandle za = ((UpdaterInfo*)(state->cookie))->package_zip;
Doug Zongker8edb00c2009-06-11 17:21:44 -0700498
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700499 std::vector<std::string> args;
500 if (!ReadArgs(state, 2, argv, &args)) {
501 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name,
502 argc);
503 }
504 const std::string& zip_path = args[0];
505 const std::string& dest_path = args[1];
Doug Zongker6aece332010-02-01 14:40:12 -0800506
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700507 ZipString zip_string_path(zip_path.c_str());
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700508 ZipEntry entry;
509 if (FindEntry(za, zip_string_path, &entry) != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700510 printf("%s: no %s in package\n", name, zip_path.c_str());
511 return StringValue("");
Doug Zongker6aece332010-02-01 14:40:12 -0800512 }
513
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700514 int fd = TEMP_FAILURE_RETRY(ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC,
515 S_IRUSR | S_IWUSR));
516 if (fd == -1) {
517 printf("%s: can't open %s for write: %s\n", name, dest_path.c_str(), strerror(errno));
518 return StringValue("");
519 }
520 success = ExtractEntryToFile(za, &entry, fd);
521 if (ota_fsync(fd) == -1) {
522 printf("fsync of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno));
523 success = false;
524 }
525 if (ota_close(fd) == -1) {
526 printf("close of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno));
527 success = false;
Doug Zongker6aece332010-02-01 14:40:12 -0800528 }
Doug Zongker6aece332010-02-01 14:40:12 -0800529
Tianjie Xuaced5d92016-10-12 10:55:04 -0700530 return StringValue(success ? "t" : "");
Doug Zongker6aece332010-02-01 14:40:12 -0800531 } else {
532 // The one-argument version returns the contents of the file
533 // as the result.
534
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700535 std::vector<std::string> args;
536 if (!ReadArgs(state, 1, argv, &args)) {
537 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name,
538 argc);
539 }
540 const std::string& zip_path = args[0];
Yabin Cui64be2132016-02-03 18:16:02 -0800541
Tianjie Xuaced5d92016-10-12 10:55:04 -0700542 Value* v = new Value(VAL_INVALID, "");
Doug Zongker6aece332010-02-01 14:40:12 -0800543
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700544 ZipArchiveHandle za = ((UpdaterInfo*)(state->cookie))->package_zip;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700545 ZipString zip_string_path(zip_path.c_str());
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700546 ZipEntry entry;
547 if (FindEntry(za, zip_string_path, &entry) != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700548 printf("%s: no %s in package\n", name, zip_path.c_str());
549 return v;
Doug Zongker6aece332010-02-01 14:40:12 -0800550 }
551
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700552 v->data.resize(entry.uncompressed_length);
553 if (ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&v->data[0]),
554 v->data.size()) != 0) {
555 printf("%s: faled to extract %zu bytes to memory\n", name, v->data.size());
556 } else {
557 success = true;
558 }
Doug Zongker6aece332010-02-01 14:40:12 -0800559
Doug Zongker6aece332010-02-01 14:40:12 -0800560 if (!success) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700561 v->data.clear();
562 } else {
563 v->type = VAL_BLOB;
Doug Zongker6aece332010-02-01 14:40:12 -0800564 }
Doug Zongker512536a2010-02-17 16:11:44 -0800565 return v;
Doug Zongker8edb00c2009-06-11 17:21:44 -0700566 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700567}
568
Tao Bao89929022016-11-08 20:51:31 -0800569// symlink(target, [src1, src2, ...])
570// Creates all sources as symlinks to target. It unlinks any previously existing src1, src2, etc
571// before creating symlinks.
Doug Zongker512536a2010-02-17 16:11:44 -0800572Value* SymlinkFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700573 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700574 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1+ args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700575 }
Tianjie Xuaced5d92016-10-12 10:55:04 -0700576 std::string target;
577 if (!Evaluate(state, argv[0], &target)) {
578 return nullptr;
579 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700580
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700581 std::vector<std::string> srcs;
582 if (!ReadArgs(state, argc-1, argv+1, &srcs)) {
Tao Bao89929022016-11-08 20:51:31 -0800583 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)",
584 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700585 }
586
Tao Bao89929022016-11-08 20:51:31 -0800587 size_t bad = 0;
588 for (const auto& src : srcs) {
589 if (unlink(src.c_str()) == -1 && errno != ENOENT) {
590 printf("%s: failed to remove %s: %s\n", name, src.c_str(), strerror(errno));
591 ++bad;
592 } else if (!make_parents(src)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700593 printf("%s: failed to symlink %s to %s: making parents failed\n",
Tao Bao89929022016-11-08 20:51:31 -0800594 name, src.c_str(), target.c_str());
Doug Zongkera23075f2012-08-06 16:19:09 -0700595 ++bad;
Tao Bao89929022016-11-08 20:51:31 -0800596 } else if (symlink(target.c_str(), src.c_str()) == -1) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700597 printf("%s: failed to symlink %s to %s: %s\n",
Tao Bao89929022016-11-08 20:51:31 -0800598 name, src.c_str(), target.c_str(), strerror(errno));
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700599 ++bad;
Doug Zongker60babf82009-09-18 15:11:24 -0700600 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700601 }
Tao Bao89929022016-11-08 20:51:31 -0800602 if (bad != 0) {
603 return ErrorAbort(state, kSymlinkFailure, "%s: Failed to create %zu symlink(s)", name, bad);
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700604 }
Tao Bao89929022016-11-08 20:51:31 -0800605 return StringValue("t");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700606}
607
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700608struct perm_parsed_args {
609 bool has_uid;
610 uid_t uid;
611 bool has_gid;
612 gid_t gid;
613 bool has_mode;
614 mode_t mode;
615 bool has_fmode;
616 mode_t fmode;
617 bool has_dmode;
618 mode_t dmode;
619 bool has_selabel;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700620 const char* selabel;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700621 bool has_capabilities;
622 uint64_t capabilities;
623};
624
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700625static struct perm_parsed_args ParsePermArgs(State * state, int argc,
626 const std::vector<std::string>& args) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700627 int i;
628 struct perm_parsed_args parsed;
629 int bad = 0;
630 static int max_warnings = 20;
631
632 memset(&parsed, 0, sizeof(parsed));
633
634 for (i = 1; i < argc; i += 2) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700635 if (args[i] == "uid") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700636 int64_t uid;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700637 if (sscanf(args[i+1].c_str(), "%" SCNd64, &uid) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700638 parsed.uid = uid;
639 parsed.has_uid = true;
640 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700641 uiPrintf(state, "ParsePermArgs: invalid UID \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700642 bad++;
643 }
644 continue;
645 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700646 if (args[i] == "gid") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700647 int64_t gid;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700648 if (sscanf(args[i+1].c_str(), "%" SCNd64, &gid) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700649 parsed.gid = gid;
650 parsed.has_gid = true;
651 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700652 uiPrintf(state, "ParsePermArgs: invalid GID \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700653 bad++;
654 }
655 continue;
656 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700657 if (args[i] == "mode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700658 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700659 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700660 parsed.mode = mode;
661 parsed.has_mode = true;
662 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700663 uiPrintf(state, "ParsePermArgs: invalid mode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700664 bad++;
665 }
666 continue;
667 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700668 if (args[i] == "dmode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700669 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700670 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700671 parsed.dmode = mode;
672 parsed.has_dmode = true;
673 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700674 uiPrintf(state, "ParsePermArgs: invalid dmode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700675 bad++;
676 }
677 continue;
678 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700679 if (args[i] == "fmode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700680 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700681 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700682 parsed.fmode = mode;
683 parsed.has_fmode = true;
684 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700685 uiPrintf(state, "ParsePermArgs: invalid fmode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700686 bad++;
687 }
688 continue;
689 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700690 if (args[i] == "capabilities") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700691 int64_t capabilities;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700692 if (sscanf(args[i+1].c_str(), "%" SCNi64, &capabilities) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700693 parsed.capabilities = capabilities;
694 parsed.has_capabilities = true;
695 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700696 uiPrintf(state, "ParsePermArgs: invalid capabilities \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700697 bad++;
698 }
699 continue;
700 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700701 if (args[i] == "selabel") {
702 if (!args[i+1].empty()) {
703 parsed.selabel = args[i+1].c_str();
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700704 parsed.has_selabel = true;
705 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700706 uiPrintf(state, "ParsePermArgs: invalid selabel \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700707 bad++;
708 }
709 continue;
710 }
711 if (max_warnings != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700712 printf("ParsedPermArgs: unknown key \"%s\", ignoring\n", args[i].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700713 max_warnings--;
714 if (max_warnings == 0) {
715 printf("ParsedPermArgs: suppressing further warnings\n");
716 }
717 }
718 }
719 return parsed;
720}
721
722static int ApplyParsedPerms(
Michael Runged4a63422014-10-22 19:48:41 -0700723 State * state,
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700724 const char* filename,
725 const struct stat *statptr,
726 struct perm_parsed_args parsed)
727{
728 int bad = 0;
729
Nick Kralevich68802412014-10-23 20:36:42 -0700730 if (parsed.has_selabel) {
731 if (lsetfilecon(filename, parsed.selabel) != 0) {
732 uiPrintf(state, "ApplyParsedPerms: lsetfilecon of %s to %s failed: %s\n",
733 filename, parsed.selabel, strerror(errno));
734 bad++;
735 }
736 }
737
Nick Kraleviche4612512013-09-10 15:34:19 -0700738 /* ignore symlinks */
739 if (S_ISLNK(statptr->st_mode)) {
Nick Kralevich68802412014-10-23 20:36:42 -0700740 return bad;
Nick Kraleviche4612512013-09-10 15:34:19 -0700741 }
742
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700743 if (parsed.has_uid) {
744 if (chown(filename, parsed.uid, -1) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700745 uiPrintf(state, "ApplyParsedPerms: chown of %s to %d failed: %s\n",
746 filename, parsed.uid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700747 bad++;
748 }
749 }
750
751 if (parsed.has_gid) {
752 if (chown(filename, -1, parsed.gid) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700753 uiPrintf(state, "ApplyParsedPerms: chgrp of %s to %d failed: %s\n",
754 filename, parsed.gid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700755 bad++;
756 }
757 }
758
759 if (parsed.has_mode) {
760 if (chmod(filename, parsed.mode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700761 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
762 filename, parsed.mode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700763 bad++;
764 }
765 }
766
767 if (parsed.has_dmode && S_ISDIR(statptr->st_mode)) {
768 if (chmod(filename, parsed.dmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700769 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
770 filename, parsed.dmode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700771 bad++;
772 }
773 }
774
775 if (parsed.has_fmode && S_ISREG(statptr->st_mode)) {
776 if (chmod(filename, parsed.fmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700777 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700778 filename, parsed.fmode, strerror(errno));
779 bad++;
780 }
781 }
782
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700783 if (parsed.has_capabilities && S_ISREG(statptr->st_mode)) {
784 if (parsed.capabilities == 0) {
785 if ((removexattr(filename, XATTR_NAME_CAPS) == -1) && (errno != ENODATA)) {
786 // Report failure unless it's ENODATA (attribute not set)
Michael Runged4a63422014-10-22 19:48:41 -0700787 uiPrintf(state, "ApplyParsedPerms: removexattr of %s to %" PRIx64 " failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700788 filename, parsed.capabilities, strerror(errno));
789 bad++;
790 }
791 } else {
792 struct vfs_cap_data cap_data;
793 memset(&cap_data, 0, sizeof(cap_data));
794 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
795 cap_data.data[0].permitted = (uint32_t) (parsed.capabilities & 0xffffffff);
796 cap_data.data[0].inheritable = 0;
797 cap_data.data[1].permitted = (uint32_t) (parsed.capabilities >> 32);
798 cap_data.data[1].inheritable = 0;
799 if (setxattr(filename, XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700800 uiPrintf(state, "ApplyParsedPerms: setcap of %s to %" PRIx64 " failed: %s\n",
801 filename, parsed.capabilities, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700802 bad++;
803 }
804 }
805 }
806
807 return bad;
808}
809
810// nftw doesn't allow us to pass along context, so we need to use
811// global variables. *sigh*
812static struct perm_parsed_args recursive_parsed_args;
Michael Runged4a63422014-10-22 19:48:41 -0700813static State* recursive_state;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700814
815static int do_SetMetadataRecursive(const char* filename, const struct stat *statptr,
816 int fileflags, struct FTW *pfwt) {
Michael Runged4a63422014-10-22 19:48:41 -0700817 return ApplyParsedPerms(recursive_state, filename, statptr, recursive_parsed_args);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700818}
819
820static Value* SetMetadataFn(const char* name, State* state, int argc, Expr* argv[]) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700821 if ((argc % 2) != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700822 return ErrorAbort(state, kArgsParsingFailure,
823 "%s() expects an odd number of arguments, got %d", name, argc);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700824 }
825
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700826 std::vector<std::string> args;
827 if (!ReadArgs(state, argc, argv, &args)) {
828 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700829 }
830
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700831 struct stat sb;
832 if (lstat(args[0].c_str(), &sb) == -1) {
833 return ErrorAbort(state, kSetMetadataFailure, "%s: Error on lstat of \"%s\": %s",
834 name, args[0].c_str(), strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700835 }
836
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700837 struct perm_parsed_args parsed = ParsePermArgs(state, argc, args);
838 int bad = 0;
839 bool recursive = (strcmp(name, "set_metadata_recursive") == 0);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700840
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700841 if (recursive) {
842 recursive_parsed_args = parsed;
843 recursive_state = state;
844 bad += nftw(args[0].c_str(), do_SetMetadataRecursive, 30, FTW_CHDIR | FTW_DEPTH | FTW_PHYS);
845 memset(&recursive_parsed_args, 0, sizeof(recursive_parsed_args));
846 recursive_state = NULL;
847 } else {
848 bad += ApplyParsedPerms(state, args[0].c_str(), &sb, parsed);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700849 }
850
851 if (bad > 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700852 return ErrorAbort(state, kSetMetadataFailure, "%s: some changes failed", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700853 }
854
Tianjie Xuaced5d92016-10-12 10:55:04 -0700855 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700856}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700857
Doug Zongker512536a2010-02-17 16:11:44 -0800858Value* GetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700859 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700860 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700861 }
Tianjie Xuaced5d92016-10-12 10:55:04 -0700862 std::string key;
863 if (!Evaluate(state, argv[0], &key)) {
864 return nullptr;
865 }
Elliott Hughescb220402016-09-23 15:30:55 -0700866 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700867
Tianjie Xuaced5d92016-10-12 10:55:04 -0700868 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700869}
870
871
Doug Zongker47cace92009-06-18 10:11:50 -0700872// file_getprop(file, key)
873//
874// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700875// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700876// and returns the value for 'key' (or "" if it isn't defined).
Doug Zongker512536a2010-02-17 16:11:44 -0800877Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Bao51d516e2016-11-03 14:49:01 -0700878 if (argc != 2) {
879 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
880 }
881
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700882 std::vector<std::string> args;
883 if (!ReadArgs(state, 2, argv, &args)) {
884 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker47cace92009-06-18 10:11:50 -0700885 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700886 const std::string& filename = args[0];
887 const std::string& key = args[1];
Doug Zongker47cace92009-06-18 10:11:50 -0700888
889 struct stat st;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700890 if (stat(filename.c_str(), &st) < 0) {
891 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
892 filename.c_str(), strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700893 }
894
Tao Bao51d516e2016-11-03 14:49:01 -0700895 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
Doug Zongker47cace92009-06-18 10:11:50 -0700896 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
Tao Bao51d516e2016-11-03 14:49:01 -0700897 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
898 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
Doug Zongker47cace92009-06-18 10:11:50 -0700899 }
900
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700901 std::string buffer(st.st_size, '\0');
902 FILE* f = ota_fopen(filename.c_str(), "rb");
903 if (f == nullptr) {
904 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name,
905 filename.c_str(), strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700906 }
907
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700908 if (ota_fread(&buffer[0], 1, st.st_size, f) != static_cast<size_t>(st.st_size)) {
Tianjie Xu84478e82016-05-23 11:42:40 -0700909 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700910 name, static_cast<size_t>(st.st_size), filename.c_str());
Jed Estepa7b9a462015-12-15 16:04:53 -0800911 ota_fclose(f);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700912 return nullptr;
Doug Zongker47cace92009-06-18 10:11:50 -0700913 }
Doug Zongker47cace92009-06-18 10:11:50 -0700914
Jed Estepa7b9a462015-12-15 16:04:53 -0800915 ota_fclose(f);
Doug Zongker47cace92009-06-18 10:11:50 -0700916
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700917 std::vector<std::string> lines = android::base::Split(buffer, "\n");
918 for (size_t i = 0; i < lines.size(); i++) {
919 std::string line = android::base::Trim(lines[i]);
Doug Zongker47cace92009-06-18 10:11:50 -0700920
921 // comment or blank line: skip to next line
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700922 if (line.empty() || line[0] == '#') {
923 continue;
924 }
925 size_t equal_pos = line.find('=');
926 if (equal_pos == std::string::npos) {
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700927 continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700928 }
929
930 // trim whitespace between key and '='
Tao Bao51d516e2016-11-03 14:49:01 -0700931 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700932
933 // not the key we're looking for
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700934 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700935
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700936 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
937 }
Doug Zongker47cace92009-06-18 10:11:50 -0700938
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700939 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700940}
941
Doug Zongker8edb00c2009-06-11 17:21:44 -0700942// apply_patch_space(bytes)
Doug Zongkerc4351c72010-02-22 14:46:32 -0800943Value* ApplyPatchSpaceFn(const char* name, State* state,
944 int argc, Expr* argv[]) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700945 std::vector<std::string> args;
946 if (!ReadArgs(state, 1, argv, &args)) {
947 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800948 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700949 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800950
Tao Baob15fd222015-09-24 11:10:51 -0700951 size_t bytes;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700952 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
953 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
954 name, bytes_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800955 }
956
Tianjie Xuaced5d92016-10-12 10:55:04 -0700957 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800958}
959
Doug Zongker52b40362014-02-10 15:30:30 -0800960// apply_patch(file, size, init_sha1, tgt_sha1, patch)
961
Doug Zongker512536a2010-02-17 16:11:44 -0800962Value* ApplyPatchFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800963 if (argc < 6 || (argc % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700964 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700965 "even number, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700966 }
967
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700968 std::vector<std::string> args;
969 if (!ReadArgs(state, 4, argv, &args)) {
970 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700971 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700972 const std::string& source_filename = args[0];
973 const std::string& target_filename = args[1];
974 const std::string& target_sha1 = args[2];
975 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700976
Tao Baob15fd222015-09-24 11:10:51 -0700977 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700978 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
979 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
980 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800981 }
982
983 int patchcount = (argc-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700984 std::vector<std::unique_ptr<Value>> arg_values;
985 if (!ReadValueArgs(state, argc-4, argv+4, &arg_values)) {
Yabin Cui64be2132016-02-03 18:16:02 -0800986 return nullptr;
987 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700988
Yabin Cui64be2132016-02-03 18:16:02 -0800989 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700990 if (arg_values[i * 2]->type != VAL_STRING) {
991 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
992 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800993 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700994 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
995 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
996 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800997 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700998 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700999
Tianjie Xuaced5d92016-10-12 10:55:04 -07001000 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001001 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -08001002 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001003 patch_sha_str.push_back(arg_values[i * 2]->data);
1004 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -07001005 }
Doug Zongkerc4351c72010-02-22 14:46:32 -08001006
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001007 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
1008 target_sha1.c_str(), target_size,
1009 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001010
Tianjie Xuaced5d92016-10-12 10:55:04 -07001011 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -08001012}
1013
1014// apply_patch_check(file, [sha1_1, ...])
1015Value* ApplyPatchCheckFn(const char* name, State* state,
1016 int argc, Expr* argv[]) {
1017 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001018 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %d",
Doug Zongkerc4351c72010-02-22 14:46:32 -08001019 name, argc);
1020 }
1021
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001022 std::vector<std::string> args;
1023 if (!ReadArgs(state, 1, argv, &args)) {
1024 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001025 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001026 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -08001027
Tianjie Xuaced5d92016-10-12 10:55:04 -07001028 std::vector<std::string> sha1s;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001029 if (!ReadArgs(state, argc - 1, argv + 1, &sha1s)) {
1030 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001031 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001032 int result = applypatch_check(filename.c_str(), sha1s);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001033
1034 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -07001035}
1036
Tao Bao1107d962015-09-09 17:16:55 -07001037// This is the updater side handler for ui_print() in edify script. Contents
1038// will be sent over to the recovery side for on-screen display.
Doug Zongker512536a2010-02-17 16:11:44 -08001039Value* UIPrintFn(const char* name, State* state, int argc, Expr* argv[]) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001040 std::vector<std::string> args;
1041 if (!ReadArgs(state, argc, argv, &args)) {
1042 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001043 }
1044
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001045 std::string buffer = android::base::Join(args, "") + "\n";
Michael Runged4a63422014-10-22 19:48:41 -07001046 uiPrint(state, buffer);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001047 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001048}
1049
Doug Zongkerd0181b82011-10-19 10:51:12 -07001050Value* WipeCacheFn(const char* name, State* state, int argc, Expr* argv[]) {
1051 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001052 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001053 }
1054 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "wipe_cache\n");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001055 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -07001056}
1057
Doug Zongker512536a2010-02-17 16:11:44 -08001058Value* RunProgramFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001059 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001060 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001061 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001062
1063 std::vector<std::string> args;
1064 if (!ReadArgs(state, argc, argv, &args)) {
1065 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001066 }
1067
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001068 char* args2[argc+1];
1069 for (int i = 0; i < argc; i++) {
1070 args2[i] = &args[i][0];
1071 }
1072 args2[argc] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001073
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001074 printf("about to run program [%s] with %d args\n", args2[0], argc);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001075
1076 pid_t child = fork();
1077 if (child == 0) {
1078 execv(args2[0], args2);
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001079 printf("run_program: execv failed: %s\n", strerror(errno));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001080 _exit(1);
1081 }
1082 int status;
1083 waitpid(child, &status, 0);
1084 if (WIFEXITED(status)) {
1085 if (WEXITSTATUS(status) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001086 printf("run_program: child exited with status %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001087 WEXITSTATUS(status));
1088 }
1089 } else if (WIFSIGNALED(status)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001090 printf("run_program: child terminated by signal %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001091 WTERMSIG(status));
1092 }
1093
Tianjie Xuaced5d92016-10-12 10:55:04 -07001094 return StringValue(android::base::StringPrintf("%d", status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001095}
1096
Doug Zongker512536a2010-02-17 16:11:44 -08001097// sha1_check(data)
1098// to return the sha1 of the data (given in the format returned by
1099// read_file).
1100//
1101// sha1_check(data, sha1_hex, [sha1_hex, ...])
1102// returns the sha1 of the file if it matches any of the hex
1103// strings passed, or "" if it does not equal any of them.
1104//
1105Value* Sha1CheckFn(const char* name, State* state, int argc, Expr* argv[]) {
1106 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001107 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongker512536a2010-02-17 16:11:44 -08001108 }
1109
Tianjie Xuaced5d92016-10-12 10:55:04 -07001110 std::vector<std::unique_ptr<Value>> args;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001111 if (!ReadValueArgs(state, argc, argv, &args)) {
1112 return nullptr;
Doug Zongker512536a2010-02-17 16:11:44 -08001113 }
1114
Tianjie Xuaced5d92016-10-12 10:55:04 -07001115 if (args[0]->type == VAL_INVALID) {
1116 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -08001117 }
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001118 uint8_t digest[SHA_DIGEST_LENGTH];
Tianjie Xuaced5d92016-10-12 10:55:04 -07001119 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
Doug Zongker512536a2010-02-17 16:11:44 -08001120
1121 if (argc == 1) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001122 return StringValue(print_sha1(digest));
Doug Zongker512536a2010-02-17 16:11:44 -08001123 }
1124
Tao Bao361342c2016-02-08 11:15:50 -08001125 for (int i = 1; i < argc; ++i) {
1126 uint8_t arg_digest[SHA_DIGEST_LENGTH];
Doug Zongker512536a2010-02-17 16:11:44 -08001127 if (args[i]->type != VAL_STRING) {
Tao Bao361342c2016-02-08 11:15:50 -08001128 printf("%s(): arg %d is not a string; skipping", name, i);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001129 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
Doug Zongker512536a2010-02-17 16:11:44 -08001130 // Warn about bad args and skip them.
Tianjie Xuaced5d92016-10-12 10:55:04 -07001131 printf("%s(): error parsing \"%s\" as sha-1; skipping", name, args[i]->data.c_str());
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001132 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
Tao Bao361342c2016-02-08 11:15:50 -08001133 // Found a match.
1134 return args[i].release();
Doug Zongker512536a2010-02-17 16:11:44 -08001135 }
Doug Zongker512536a2010-02-17 16:11:44 -08001136 }
Tao Bao361342c2016-02-08 11:15:50 -08001137
1138 // Didn't match any of the hex strings; return false.
Tianjie Xuaced5d92016-10-12 10:55:04 -07001139 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -08001140}
1141
Hristo Bojinovdb314d62010-08-02 10:29:49 -07001142// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -08001143// is actually a FileContents*).
1144Value* ReadFileFn(const char* name, State* state, int argc, Expr* argv[]) {
1145 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001146 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker512536a2010-02-17 16:11:44 -08001147 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001148
1149 std::vector<std::string> args;
1150 if (!ReadArgs(state, 1, argv, &args)) {
1151 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1152 }
1153 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -08001154
Tianjie Xuaced5d92016-10-12 10:55:04 -07001155 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -08001156
1157 FileContents fc;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001158 if (LoadFileContents(filename.c_str(), &fc) == 0) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001159 v->type = VAL_BLOB;
1160 v->data = std::string(fc.data.begin(), fc.data.end());
Doug Zongker512536a2010-02-17 16:11:44 -08001161 }
Doug Zongker512536a2010-02-17 16:11:44 -08001162 return v;
1163}
Doug Zongker8edb00c2009-06-11 17:21:44 -07001164
Doug Zongkerc87bab12013-11-25 13:53:25 -08001165// Immediately reboot the device. Recovery is not finished normally,
1166// so if you reboot into recovery it will re-start applying the
1167// current package (because nothing has cleared the copy of the
1168// arguments stored in the BCB).
1169//
1170// The argument is the partition name passed to the android reboot
1171// property. It can be "recovery" to boot from the recovery
1172// partition, or "" (empty string) to boot from the regular boot
1173// partition.
1174Value* RebootNowFn(const char* name, State* state, int argc, Expr* argv[]) {
1175 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001176 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001177 }
1178
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001179 std::vector<std::string> args;
1180 if (!ReadArgs(state, 2, argv, &args)) {
1181 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1182 }
1183 const std::string& filename = args[0];
1184 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001185
Doug Zongkerc87bab12013-11-25 13:53:25 -08001186 // zero out the 'command' field of the bootloader message.
Elliott Hughescb220402016-09-23 15:30:55 -07001187 char buffer[80];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001188 memset(buffer, 0, sizeof(((struct bootloader_message*)0)->command));
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001189 FILE* f = ota_fopen(filename.c_str(), "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001190 fseek(f, offsetof(struct bootloader_message, command), SEEK_SET);
Jed Estepa7b9a462015-12-15 16:04:53 -08001191 ota_fwrite(buffer, sizeof(((struct bootloader_message*)0)->command), 1, f);
1192 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001193
Elliott Hughescb220402016-09-23 15:30:55 -07001194 std::string reboot_cmd = "reboot,";
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001195 reboot_cmd += property;
Elliott Hughescb220402016-09-23 15:30:55 -07001196 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001197
1198 sleep(5);
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001199 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001200}
1201
1202// Store a string value somewhere that future invocations of recovery
1203// can access it. This value is called the "stage" and can be used to
1204// drive packages that need to do reboots in the middle of
1205// installation and keep track of where they are in the multi-stage
1206// install.
1207//
1208// The first argument is the block device for the misc partition
1209// ("/misc" in the fstab), which is where this value is stored. The
1210// second argument is the string to store; it should not exceed 31
1211// bytes.
1212Value* SetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
1213 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001214 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001215 }
1216
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001217 std::vector<std::string> args;
1218 if (!ReadArgs(state, 2, argv, &args)) {
1219 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1220 }
1221 const std::string& filename = args[0];
1222 std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001223
1224 // Store this value in the misc partition, immediately after the
1225 // bootloader message that the main recovery uses to save its
1226 // arguments in case of the device restarting midway through
1227 // package installation.
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001228 FILE* f = ota_fopen(filename.c_str(), "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001229 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001230 size_t to_write = stagestr.size();
Tianjie Xuaced5d92016-10-12 10:55:04 -07001231 size_t max_size = sizeof(((struct bootloader_message*)0)->stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001232 if (to_write > max_size) {
1233 to_write = max_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001234 stagestr = stagestr.substr(0, max_size-1);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001235 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001236 size_t status = ota_fwrite(stagestr.c_str(), to_write, 1, f);
Jed Estepa7b9a462015-12-15 16:04:53 -08001237 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001238
Tianjie Xuaced5d92016-10-12 10:55:04 -07001239 if (status != to_write) {
1240 return StringValue("");
1241 }
Doug Zongkerc87bab12013-11-25 13:53:25 -08001242 return StringValue(filename);
1243}
1244
1245// Return the value most recently saved with SetStageFn. The argument
1246// is the block device for the misc partition.
1247Value* GetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001248 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001249 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001250 }
1251
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001252 std::vector<std::string> args;
1253 if (!ReadArgs(state, 1, argv, &args)) {
1254 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1255 }
1256 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001257
1258 char buffer[sizeof(((struct bootloader_message*)0)->stage)];
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001259 FILE* f = ota_fopen(filename.c_str(), "rb");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001260 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001261 size_t status = ota_fread(buffer, sizeof(buffer), 1, f);
Jed Estepa7b9a462015-12-15 16:04:53 -08001262 ota_fclose(f);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001263 if (status != sizeof(buffer)) {
1264 return StringValue("");
1265 }
Doug Zongkerc87bab12013-11-25 13:53:25 -08001266
Tianjie Xuaced5d92016-10-12 10:55:04 -07001267 buffer[sizeof(buffer)-1] = '\0';
1268 return StringValue(buffer);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001269}
1270
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001271Value* WipeBlockDeviceFn(const char* name, State* state, int argc, Expr* argv[]) {
1272 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001273 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001274 }
1275
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001276 std::vector<std::string> args;
1277 if (!ReadArgs(state, 2, argv, &args)) {
1278 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1279 }
1280 const std::string& filename = args[0];
1281 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001282
Tao Baob15fd222015-09-24 11:10:51 -07001283 size_t len;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001284 if (!android::base::ParseUint(len_str.c_str(), &len)) {
1285 return nullptr;
1286 }
1287 int fd = ota_open(filename.c_str(), O_WRONLY, 0644);
1288 // The wipe_block_device function in ext4_utils returns 0 on success and 1
1289 // for failure.
1290 int status = wipe_block_device(fd, len);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001291
Jed Estepa7b9a462015-12-15 16:04:53 -08001292 ota_close(fd);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001293
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001294 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001295}
1296
Doug Zongkerc704e062014-05-23 08:40:35 -07001297Value* EnableRebootFn(const char* name, State* state, int argc, Expr* argv[]) {
1298 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001299 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerc704e062014-05-23 08:40:35 -07001300 }
1301 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
1302 fprintf(ui->cmd_pipe, "enable_reboot\n");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001303 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -07001304}
1305
Michael Rungeacf47db2014-11-21 00:12:28 -08001306Value* Tune2FsFn(const char* name, State* state, int argc, Expr* argv[]) {
1307 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001308 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %d", name, argc);
Michael Rungeacf47db2014-11-21 00:12:28 -08001309 }
1310
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001311 std::vector<std::string> args;
1312 if (!ReadArgs(state, argc, argv, &args)) {
Tianjie Xu16255832016-04-30 11:49:59 -07001313 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
Michael Rungeacf47db2014-11-21 00:12:28 -08001314 }
1315
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001316 char* args2[argc+1];
Michael Rungeacf47db2014-11-21 00:12:28 -08001317 // Tune2fs expects the program name as its args[0]
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001318 args2[0] = const_cast<char*>(name);
1319 if (args2[0] == nullptr) {
1320 return nullptr;
Michael Rungeacf47db2014-11-21 00:12:28 -08001321 }
Tao Baoba9a42a2015-06-23 23:23:33 -07001322 for (int i = 0; i < argc; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001323 args2[i + 1] = &args[i][0];
Michael Rungeacf47db2014-11-21 00:12:28 -08001324 }
Michael Rungeacf47db2014-11-21 00:12:28 -08001325
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001326 // tune2fs changes the file system parameters on an ext2 file system; it
1327 // returns 0 on success.
1328 int result = tune2fs_main(argc + 1, args2);
1329
Michael Rungeacf47db2014-11-21 00:12:28 -08001330 if (result != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001331 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
Michael Rungeacf47db2014-11-21 00:12:28 -08001332 }
Tianjie Xuaced5d92016-10-12 10:55:04 -07001333 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -08001334}
1335
Doug Zongker9931f7f2009-06-10 14:11:53 -07001336void RegisterInstallFunctions() {
1337 RegisterFunction("mount", MountFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001338 RegisterFunction("is_mounted", IsMountedFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001339 RegisterFunction("unmount", UnmountFn);
1340 RegisterFunction("format", FormatFn);
1341 RegisterFunction("show_progress", ShowProgressFn);
Doug Zongkerfbf3c102009-06-24 09:36:20 -07001342 RegisterFunction("set_progress", SetProgressFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001343 RegisterFunction("delete", DeleteFn);
1344 RegisterFunction("delete_recursive", DeleteFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001345 RegisterFunction("package_extract_dir", PackageExtractDirFn);
1346 RegisterFunction("package_extract_file", PackageExtractFileFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001347 RegisterFunction("symlink", SymlinkFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001348
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001349 // Usage:
1350 // set_metadata("filename", "key1", "value1", "key2", "value2", ...)
1351 // Example:
1352 // set_metadata("/system/bin/netcfg", "uid", 0, "gid", 3003, "mode", 02750, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1353 RegisterFunction("set_metadata", SetMetadataFn);
1354
1355 // Usage:
1356 // set_metadata_recursive("dirname", "key1", "value1", "key2", "value2", ...)
1357 // Example:
1358 // set_metadata_recursive("/system", "uid", 0, "gid", 0, "fmode", 0644, "dmode", 0755, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1359 RegisterFunction("set_metadata_recursive", SetMetadataFn);
1360
Doug Zongker8edb00c2009-06-11 17:21:44 -07001361 RegisterFunction("getprop", GetPropFn);
Doug Zongker47cace92009-06-18 10:11:50 -07001362 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001363
1364 RegisterFunction("apply_patch", ApplyPatchFn);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001365 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1366 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001367
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001368 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001369
Doug Zongker512536a2010-02-17 16:11:44 -08001370 RegisterFunction("read_file", ReadFileFn);
1371 RegisterFunction("sha1_check", Sha1CheckFn);
Michael Rungece7ca712013-11-06 17:42:20 -08001372 RegisterFunction("rename", RenameFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001373
Doug Zongkerd0181b82011-10-19 10:51:12 -07001374 RegisterFunction("wipe_cache", WipeCacheFn);
1375
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001376 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001377
1378 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001379
1380 RegisterFunction("reboot_now", RebootNowFn);
1381 RegisterFunction("get_stage", GetStageFn);
1382 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001383
1384 RegisterFunction("enable_reboot", EnableRebootFn);
Michael Rungeacf47db2014-11-21 00:12:28 -08001385 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001386}