blob: da68420e835472e91806ab4804e2310a60e3df08 [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tao Bao0c7839a2016-10-10 15:48:37 -070017#include "updater/install.h"
18
Doug Zongkerfbf3c102009-06-24 09:36:20 -070019#include <ctype.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070020#include <errno.h>
Tao Bao361342c2016-02-08 11:15:50 -080021#include <fcntl.h>
22#include <ftw.h>
23#include <inttypes.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070024#include <stdarg.h>
Doug Zongkerfbf3c102009-06-24 09:36:20 -070025#include <stdio.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070026#include <stdlib.h>
27#include <string.h>
Tao Bao361342c2016-02-08 11:15:50 -080028#include <sys/capability.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070029#include <sys/mount.h>
30#include <sys/stat.h>
31#include <sys/types.h>
Doug Zongkera3f89ea2009-09-10 14:10:48 -070032#include <sys/wait.h>
Nick Kralevich5dbdef02013-09-07 14:41:06 -070033#include <sys/xattr.h>
Tao Bao361342c2016-02-08 11:15:50 -080034#include <time.h>
35#include <unistd.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070036#include <utime.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070037
Yabin Cui64be2132016-02-03 18:16:02 -080038#include <memory>
Tao Bao361342c2016-02-08 11:15:50 -080039#include <string>
Yabin Cui64be2132016-02-03 18:16:02 -080040#include <vector>
41
Tao Baod0f30882016-11-03 23:52:01 -070042#include <android-base/file.h>
Tianjie Xu5fe280a2016-10-17 18:15:20 -070043#include <android-base/parsedouble.h>
Tao Baod0f30882016-11-03 23:52:01 -070044#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070045#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080046#include <android-base/stringprintf.h>
Tao Baod0f30882016-11-03 23:52:01 -070047#include <android-base/strings.h>
Tao Bao0c7839a2016-10-10 15:48:37 -070048#include <cutils/android_reboot.h>
Tao Baode40ba52016-10-05 23:17:01 -070049#include <ext4_utils/make_ext4fs.h>
50#include <ext4_utils/wipe.h>
Tao Bao361342c2016-02-08 11:15:50 -080051#include <openssl/sha.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070052#include <selinux/label.h>
53#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070054#include <ziparchive/zip_archive.h>
Tao Bao1107d962015-09-09 17:16:55 -070055
Doug Zongkerc87bab12013-11-25 13:53:25 -080056#include "applypatch/applypatch.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070057#include "bootloader.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070058#include "edify/expr.h"
Tianjie Xu16255832016-04-30 11:49:59 -070059#include "error_code.h"
Elliott Hughes63a31922016-06-09 17:41:22 -070060#include "mounts.h"
Jed Estep39c1b5e2015-12-15 16:04:53 -080061#include "ota_io.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070062#include "otautil/DirUtil.h"
63#include "otautil/ZipUtil.h"
Tao Bao361342c2016-02-08 11:15:50 -080064#include "print_sha1.h"
Michael Rungeacf47db2014-11-21 00:12:28 -080065#include "tune2fs.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070066#include "updater/updater.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070067
Tao Bao1107d962015-09-09 17:16:55 -070068// Send over the buffer to recovery though the command pipe.
69static void uiPrint(State* state, const std::string& buffer) {
Tao Bao0831d0b2016-11-03 23:25:04 -070070 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070071
Tao Bao1107d962015-09-09 17:16:55 -070072 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
73 // So skip sending empty strings to UI.
74 std::vector<std::string> lines = android::base::Split(buffer, "\n");
75 for (auto& line: lines) {
76 if (!line.empty()) {
77 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
78 fprintf(ui->cmd_pipe, "ui_print\n");
79 }
80 }
81
82 // On the updater side, we need to dump the contents to stderr (which has
83 // been redirected to the log file). Because the recovery will only print
84 // the contents to screen when processing pipe command ui_print.
85 fprintf(stderr, "%s", buffer.c_str());
Michael Runged4a63422014-10-22 19:48:41 -070086}
87
Elliott Hughes83ce7552016-06-30 09:28:42 -070088void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
Tao Bao1107d962015-09-09 17:16:55 -070089 std::string error_msg;
90
Michael Runged4a63422014-10-22 19:48:41 -070091 va_list ap;
92 va_start(ap, format);
Tao Bao1107d962015-09-09 17:16:55 -070093 android::base::StringAppendV(&error_msg, format, ap);
Michael Runged4a63422014-10-22 19:48:41 -070094 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -070095
Michael Runged4a63422014-10-22 19:48:41 -070096 uiPrint(state, error_msg);
97}
98
Tianjie Xud75003d2016-11-04 11:31:29 -070099static bool is_dir(const std::string& dirpath) {
100 struct stat st;
101 return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
102}
103
Tao Bao0c7839a2016-10-10 15:48:37 -0700104// Create all parent directories of name, if necessary.
Tianjie Xud75003d2016-11-04 11:31:29 -0700105static bool make_parents(const std::string& name) {
106 size_t prev_end = 0;
107 while (prev_end < name.size()) {
108 size_t next_end = name.find('/', prev_end + 1);
109 if (next_end == std::string::npos) {
110 break;
Tao Bao0c7839a2016-10-10 15:48:37 -0700111 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700112 std::string dir_path = name.substr(0, next_end);
113 if (!is_dir(dir_path)) {
114 int result = mkdir(dir_path.c_str(), 0700);
115 if (result != 0) {
116 printf("failed to mkdir %s when make parents for %s: %s\n", dir_path.c_str(),
117 name.c_str(), strerror(errno));
118 return false;
119 }
120
121 printf("created [%s]\n", dir_path.c_str());
122 }
123 prev_end = next_end;
Tao Bao0c7839a2016-10-10 15:48:37 -0700124 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700125 return true;
Tao Bao0c7839a2016-10-10 15:48:37 -0700126}
127
Doug Zongker3d177d02010-07-01 09:18:44 -0700128// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -0700129// mount(fs_type, partition_type, location, mount_point, mount_options)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700130//
Doug Zongker3d177d02010-07-01 09:18:44 -0700131// fs_type="ext4" partition_type="EMMC" location=device
Doug Zongker512536a2010-02-17 16:11:44 -0800132Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) {
Michael Runge168f7772014-10-22 17:05:08 -0700133 if (argc != 4 && argc != 5) {
Tianjie Xu16255832016-04-30 11:49:59 -0700134 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700135 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700136
137 std::vector<std::string> args;
138 if (!ReadArgs(state, argc, argv, &args)) {
139 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
140 }
141 const std::string& fs_type = args[0];
142 const std::string& partition_type = args[1];
143 const std::string& location = args[2];
144 const std::string& mount_point = args[3];
145 std::string mount_options;
146
Michael Runge168f7772014-10-22 17:05:08 -0700147 if (argc == 5) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700148 mount_options = args[4];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700149 }
150
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700151 if (fs_type.empty()) {
152 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty",
153 name);
Doug Zongker3d177d02010-07-01 09:18:44 -0700154 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700155 if (partition_type.empty()) {
156 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
157 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700158 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700159 if (location.empty()) {
160 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty",
161 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700162 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700163 if (mount_point.empty()) {
164 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
165 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700166 }
167
Tao Baoba9a42a2015-06-23 23:23:33 -0700168 {
169 char *secontext = NULL;
Stephen Smalley779701d2012-02-09 14:13:23 -0500170
Tao Baoba9a42a2015-06-23 23:23:33 -0700171 if (sehandle) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700172 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
Tao Baoba9a42a2015-06-23 23:23:33 -0700173 setfscreatecon(secontext);
174 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500175
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700176 mkdir(mount_point.c_str(), 0755);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700177
Tao Baoba9a42a2015-06-23 23:23:33 -0700178 if (secontext) {
179 freecon(secontext);
180 setfscreatecon(NULL);
181 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500182 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500183
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700184 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
185 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
Elliott Hughes63a31922016-06-09 17:41:22 -0700186 uiPrintf(state, "%s: failed to mount %s at %s: %s\n",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700187 name, location.c_str(), mount_point.c_str(), strerror(errno));
188 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700189 }
190
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700191 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700192}
193
Doug Zongker8edb00c2009-06-11 17:21:44 -0700194
195// is_mounted(mount_point)
Doug Zongker512536a2010-02-17 16:11:44 -0800196Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700197 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700198 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700199 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700200
201 std::vector<std::string> args;
202 if (!ReadArgs(state, argc, argv, &args)) {
203 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700204 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700205 const std::string& mount_point = args[0];
206 if (mount_point.empty()) {
207 return ErrorAbort(state, kArgsParsingFailure,
208 "mount_point argument to unmount() can't be empty");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700209 }
210
211 scan_mounted_volumes();
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700212 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
213 if (vol == nullptr) {
214 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700215 }
216
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700217 return StringValue(mount_point);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700218}
219
220
Doug Zongker512536a2010-02-17 16:11:44 -0800221Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700222 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700223 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700224 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700225 std::vector<std::string> args;
226 if (!ReadArgs(state, argc, argv, &args)) {
227 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700228 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700229 const std::string& mount_point = args[0];
230 if (mount_point.empty()) {
231 return ErrorAbort(state, kArgsParsingFailure,
232 "mount_point argument to unmount() can't be empty");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700233 }
234
235 scan_mounted_volumes();
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700236 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
237 if (vol == nullptr) {
238 uiPrintf(state, "unmount of %s failed; no such volume\n", mount_point.c_str());
239 return nullptr;
240 } else {
241 int ret = unmount_mounted_volume(vol);
242 if (ret != 0) {
243 uiPrintf(state, "unmount of %s failed (%d): %s\n",
244 mount_point.c_str(), ret, strerror(errno));
Michael Runge5ddf4292014-10-24 14:14:41 -0700245 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700246 }
247
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700248 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700249}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700250
JP Abgrall37aedb32014-06-16 19:07:39 -0700251static int exec_cmd(const char* path, char* const argv[]) {
252 int status;
253 pid_t child;
254 if ((child = vfork()) == 0) {
255 execv(path, argv);
256 _exit(-1);
257 }
258 waitpid(child, &status, 0);
259 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
260 printf("%s failed with status %d\n", path, WEXITSTATUS(status));
261 }
262 return WEXITSTATUS(status);
263}
264
Stephen Smalley779701d2012-02-09 14:13:23 -0500265// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700266//
Stephen Smalley779701d2012-02-09 14:13:23 -0500267// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700268// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
269// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800270// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700271// 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 -0800272Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
Stephen Smalley516e4e22012-04-03 13:35:11 -0400273 if (argc != 5) {
Tianjie Xu16255832016-04-30 11:49:59 -0700274 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700275 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500276
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700277 std::vector<std::string> args;
278 if (!ReadArgs(state, argc, argv, &args)) {
279 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
280 }
281 const std::string& fs_type = args[0];
282 const std::string& partition_type = args[1];
283 const std::string& location = args[2];
284 const std::string& fs_size = args[3];
285 const std::string& mount_point = args[4];
286
287 if (fs_type.empty()) {
288 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty",
289 name);
290 }
291 if (partition_type.empty()) {
292 return ErrorAbort(state, kArgsParsingFailure,
293 "partition_type argument to %s() can't be empty", name);
294 }
295 if (location.empty()) {
296 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty",
297 name);
298 }
299 if (mount_point.empty()) {
300 return ErrorAbort(state, kArgsParsingFailure,
301 "mount_point argument to %s() can't be empty", name);
Stephen Smalley779701d2012-02-09 14:13:23 -0500302 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700303
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700304 int64_t size;
Tao Baoa659d792016-11-03 23:25:04 -0700305 if (!android::base::ParseInt(fs_size, &size)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700306 return ErrorAbort(state, kArgsParsingFailure,
307 "%s: failed to parse int in %s\n", name, fs_size.c_str());
Doug Zongker9931f7f2009-06-10 14:11:53 -0700308 }
309
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700310 if (fs_type == "ext4") {
311 int status = make_ext4fs(location.c_str(), size, mount_point.c_str(), sehandle);
Doug Zongker3d177d02010-07-01 09:18:44 -0700312 if (status != 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700313 printf("%s: make_ext4fs failed (%d) on %s", name, status, location.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700314 return StringValue("");
Doug Zongker3d177d02010-07-01 09:18:44 -0700315 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700316 return StringValue(location);
317 } else if (fs_type == "f2fs") {
318 if (size < 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700319 printf("%s: fs_size can't be negative for f2fs: %s", name, fs_size.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700320 return StringValue("");
JP Abgrall37aedb32014-06-16 19:07:39 -0700321 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700322 std::string num_sectors = std::to_string(size / 512);
323
JP Abgrall37aedb32014-06-16 19:07:39 -0700324 const char *f2fs_path = "/sbin/mkfs.f2fs";
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700325 const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", location.c_str(),
326 num_sectors.c_str(), nullptr};
JP Abgrall37aedb32014-06-16 19:07:39 -0700327 int status = exec_cmd(f2fs_path, (char* const*)f2fs_argv);
JP Abgrall37aedb32014-06-16 19:07:39 -0700328 if (status != 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700329 printf("%s: mkfs.f2fs failed (%d) on %s", name, status, location.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700330 return StringValue("");
JP Abgrall37aedb32014-06-16 19:07:39 -0700331 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700332 return StringValue(location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700333 } else {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700334 printf("%s: unsupported fs_type \"%s\" partition_type \"%s\"",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700335 name, fs_type.c_str(), partition_type.c_str());
Doug Zongker9931f7f2009-06-10 14:11:53 -0700336 }
337
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700338 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700339}
340
Tao Baoa659d792016-11-03 23:25:04 -0700341// rename(src_name, dst_name)
342// Renames src_name to dst_name. It automatically creates the necessary directories for dst_name.
343// Example: rename("system/app/Hangouts/Hangouts.apk", "system/priv-app/Hangouts/Hangouts.apk")
Michael Rungece7ca712013-11-06 17:42:20 -0800344Value* RenameFn(const char* name, State* state, int argc, Expr* argv[]) {
Michael Rungece7ca712013-11-06 17:42:20 -0800345 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700346 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Michael Rungece7ca712013-11-06 17:42:20 -0800347 }
348
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700349 std::vector<std::string> args;
350 if (!ReadArgs(state, argc, argv, &args)) {
351 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
352 }
353 const std::string& src_name = args[0];
Tianjie Xud75003d2016-11-04 11:31:29 -0700354 const std::string& dst_name = args[1];
Michael Rungece7ca712013-11-06 17:42:20 -0800355
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700356 if (src_name.empty()) {
357 return ErrorAbort(state, kArgsParsingFailure, "src_name argument to %s() can't be empty",
358 name);
Michael Rungece7ca712013-11-06 17:42:20 -0800359 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700360 if (dst_name.empty()) {
361 return ErrorAbort(state, kArgsParsingFailure, "dst_name argument to %s() can't be empty",
362 name);
Michael Rungece7ca712013-11-06 17:42:20 -0800363 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700364 if (!make_parents(dst_name)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700365 return ErrorAbort(state, kFileRenameFailure, "Creating parent of %s failed, error %s",
366 dst_name.c_str(), strerror(errno));
367 } 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 -0700368 // File was already moved
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700369 return StringValue(dst_name);
370 } else if (rename(src_name.c_str(), dst_name.c_str()) != 0) {
371 return ErrorAbort(state, kFileRenameFailure, "Rename of %s to %s failed, error %s",
372 src_name.c_str(), dst_name.c_str(), strerror(errno));
Michael Rungece7ca712013-11-06 17:42:20 -0800373 }
374
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700375 return StringValue(dst_name);
Michael Rungece7ca712013-11-06 17:42:20 -0800376}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700377
Tao Bao0831d0b2016-11-03 23:25:04 -0700378// delete([filename, ...])
379// Deletes all the filenames listed. Returns the number of files successfully deleted.
380//
381// delete_recursive([dirname, ...])
382// Recursively deletes dirnames and all their contents. Returns the number of directories
383// successfully deleted.
Doug Zongker512536a2010-02-17 16:11:44 -0800384Value* DeleteFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700385 std::vector<std::string> paths(argc);
Tao Baoba9a42a2015-06-23 23:23:33 -0700386 for (int i = 0; i < argc; ++i) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700387 if (!Evaluate(state, argv[i], &paths[i])) {
388 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700389 }
390 }
391
392 bool recursive = (strcmp(name, "delete_recursive") == 0);
393
394 int success = 0;
Tao Baoba9a42a2015-06-23 23:23:33 -0700395 for (int i = 0; i < argc; ++i) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700396 if ((recursive ? dirUnlinkHierarchy(paths[i].c_str()) : unlink(paths[i].c_str())) == 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700397 ++success;
Tianjie Xuaced5d92016-10-12 10:55:04 -0700398 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700399 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700400
Tao Bao0831d0b2016-11-03 23:25:04 -0700401 return StringValue(std::to_string(success));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700402}
403
Doug Zongker8edb00c2009-06-11 17:21:44 -0700404
Doug Zongker512536a2010-02-17 16:11:44 -0800405Value* ShowProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700406 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700407 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700408 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700409
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700410 std::vector<std::string> args;
411 if (!ReadArgs(state, argc, argv, &args)) {
412 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
413 }
414 const std::string& frac_str = args[0];
415 const std::string& sec_str = args[1];
416
417 double frac;
418 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
419 return ErrorAbort(state, kArgsParsingFailure,
420 "%s: failed to parse double in %s\n", name, frac_str.c_str());
421 }
Tao Baob15fd222015-09-24 11:10:51 -0700422 int sec;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700423 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
424 return ErrorAbort(state, kArgsParsingFailure,
425 "%s: failed to parse int in %s\n", name, sec_str.c_str());
426 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700427
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700428 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700429 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
430
Doug Zongker512536a2010-02-17 16:11:44 -0800431 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700432}
433
Doug Zongker512536a2010-02-17 16:11:44 -0800434Value* SetProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700435 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700436 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700437 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700438
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700439 std::vector<std::string> args;
440 if (!ReadArgs(state, 1, argv, &args)) {
441 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
442 }
443 const std::string& frac_str = args[0];
444
445 double frac;
446 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
447 return ErrorAbort(state, kArgsParsingFailure,
448 "%s: failed to parse double in %s\n", name, frac_str.c_str());
449 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700450
451 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
452 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
453
Doug Zongker512536a2010-02-17 16:11:44 -0800454 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700455}
456
Doug Zongker8edb00c2009-06-11 17:21:44 -0700457// package_extract_dir(package_path, destination_path)
Doug Zongker512536a2010-02-17 16:11:44 -0800458Value* PackageExtractDirFn(const char* name, State* state,
Doug Zongker8edb00c2009-06-11 17:21:44 -0700459 int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700460 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700461 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700462 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700463
464 std::vector<std::string> args;
465 if (!ReadArgs(state, 2, argv, &args)) {
466 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
467 }
468 const std::string& zip_path = args[0];
469 const std::string& dest_path = args[1];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700470
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700471 ZipArchiveHandle za = ((UpdaterInfo*)(state->cookie))->package_zip;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700472
473 // To create a consistent system image, never use the clock for timestamps.
474 struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default
475
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700476 bool success = ExtractPackageRecursive(za, zip_path, dest_path, &timestamp, sehandle);
477
Tianjie Xuaced5d92016-10-12 10:55:04 -0700478 return StringValue(success ? "t" : "");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700479}
480
Tao Baoef0eb3b2016-11-14 21:29:52 -0800481// package_extract_file(package_file[, dest_file])
482// Extracts a single package_file from the update package and writes it to dest_file,
483// overwriting existing files if necessary. Without the dest_file argument, returns the
484// contents of the package file as a binary blob.
485Value* PackageExtractFileFn(const char* name, State* state, int argc, Expr* argv[]) {
486 if (argc < 1 || argc > 2) {
487 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %d", name, argc);
488 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700489
Tao Baoef0eb3b2016-11-14 21:29:52 -0800490 if (argc == 2) {
491 // The two-argument version extracts to a file.
492
493 std::vector<std::string> args;
494 if (!ReadArgs(state, 2, argv, &args)) {
495 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700496 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800497 const std::string& zip_path = args[0];
498 const std::string& dest_path = args[1];
Doug Zongker43772d22014-06-09 14:13:19 -0700499
Tao Baoef0eb3b2016-11-14 21:29:52 -0800500 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
501 ZipString zip_string_path(zip_path.c_str());
502 ZipEntry entry;
503 if (FindEntry(za, zip_string_path, &entry) != 0) {
504 printf("%s: no %s in package\n", name, zip_path.c_str());
505 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700506 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800507
508 int fd = TEMP_FAILURE_RETRY(
509 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR));
510 if (fd == -1) {
511 printf("%s: can't open %s for write: %s\n", name, dest_path.c_str(), strerror(errno));
512 return StringValue("");
513 }
514
515 bool success = true;
516 int32_t ret = ExtractEntryToFile(za, &entry, fd);
517 if (ret != 0) {
518 printf("%s: Failed to extract entry \"%s\" (%u bytes) to \"%s\": %s\n", name,
519 zip_path.c_str(), entry.uncompressed_length, dest_path.c_str(), ErrorCodeString(ret));
520 success = false;
521 }
522 if (ota_fsync(fd) == -1) {
523 printf("fsync of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno));
524 success = false;
525 }
526 if (ota_close(fd) == -1) {
527 printf("close of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno));
528 success = false;
529 }
530
531 return StringValue(success ? "t" : "");
532 } else {
533 // The one-argument version returns the contents of the file as the result.
534
535 std::vector<std::string> args;
536 if (!ReadArgs(state, 1, argv, &args)) {
537 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name, argc);
538 }
539 const std::string& zip_path = args[0];
540
541 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
542 ZipString zip_string_path(zip_path.c_str());
543 ZipEntry entry;
544 if (FindEntry(za, zip_string_path, &entry) != 0) {
545 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
546 zip_path.c_str());
547 }
548
549 std::string buffer;
550 buffer.resize(entry.uncompressed_length);
551
552 int32_t ret = ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
553 if (ret != 0) {
554 return ErrorAbort(state, kPackageExtractFileFailure,
555 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
556 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
557 }
558
559 return new Value(VAL_BLOB, buffer);
560 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700561}
562
Tao Bao89929022016-11-08 20:51:31 -0800563// symlink(target, [src1, src2, ...])
564// Creates all sources as symlinks to target. It unlinks any previously existing src1, src2, etc
565// before creating symlinks.
Doug Zongker512536a2010-02-17 16:11:44 -0800566Value* SymlinkFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700567 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700568 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1+ args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700569 }
Tianjie Xuaced5d92016-10-12 10:55:04 -0700570 std::string target;
571 if (!Evaluate(state, argv[0], &target)) {
572 return nullptr;
573 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700574
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700575 std::vector<std::string> srcs;
576 if (!ReadArgs(state, argc-1, argv+1, &srcs)) {
Tao Bao89929022016-11-08 20:51:31 -0800577 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)",
578 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700579 }
580
Tao Bao89929022016-11-08 20:51:31 -0800581 size_t bad = 0;
582 for (const auto& src : srcs) {
583 if (unlink(src.c_str()) == -1 && errno != ENOENT) {
584 printf("%s: failed to remove %s: %s\n", name, src.c_str(), strerror(errno));
585 ++bad;
586 } else if (!make_parents(src)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700587 printf("%s: failed to symlink %s to %s: making parents failed\n",
Tao Bao89929022016-11-08 20:51:31 -0800588 name, src.c_str(), target.c_str());
Doug Zongkera23075f2012-08-06 16:19:09 -0700589 ++bad;
Tao Bao89929022016-11-08 20:51:31 -0800590 } else if (symlink(target.c_str(), src.c_str()) == -1) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700591 printf("%s: failed to symlink %s to %s: %s\n",
Tao Bao89929022016-11-08 20:51:31 -0800592 name, src.c_str(), target.c_str(), strerror(errno));
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700593 ++bad;
Doug Zongker60babf82009-09-18 15:11:24 -0700594 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700595 }
Tao Bao89929022016-11-08 20:51:31 -0800596 if (bad != 0) {
597 return ErrorAbort(state, kSymlinkFailure, "%s: Failed to create %zu symlink(s)", name, bad);
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700598 }
Tao Bao89929022016-11-08 20:51:31 -0800599 return StringValue("t");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700600}
601
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700602struct perm_parsed_args {
603 bool has_uid;
604 uid_t uid;
605 bool has_gid;
606 gid_t gid;
607 bool has_mode;
608 mode_t mode;
609 bool has_fmode;
610 mode_t fmode;
611 bool has_dmode;
612 mode_t dmode;
613 bool has_selabel;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700614 const char* selabel;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700615 bool has_capabilities;
616 uint64_t capabilities;
617};
618
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700619static struct perm_parsed_args ParsePermArgs(State * state, int argc,
620 const std::vector<std::string>& args) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700621 int i;
622 struct perm_parsed_args parsed;
623 int bad = 0;
624 static int max_warnings = 20;
625
626 memset(&parsed, 0, sizeof(parsed));
627
628 for (i = 1; i < argc; i += 2) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700629 if (args[i] == "uid") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700630 int64_t uid;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700631 if (sscanf(args[i+1].c_str(), "%" SCNd64, &uid) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700632 parsed.uid = uid;
633 parsed.has_uid = true;
634 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700635 uiPrintf(state, "ParsePermArgs: invalid UID \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700636 bad++;
637 }
638 continue;
639 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700640 if (args[i] == "gid") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700641 int64_t gid;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700642 if (sscanf(args[i+1].c_str(), "%" SCNd64, &gid) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700643 parsed.gid = gid;
644 parsed.has_gid = true;
645 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700646 uiPrintf(state, "ParsePermArgs: invalid GID \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700647 bad++;
648 }
649 continue;
650 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700651 if (args[i] == "mode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700652 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700653 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700654 parsed.mode = mode;
655 parsed.has_mode = true;
656 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700657 uiPrintf(state, "ParsePermArgs: invalid mode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700658 bad++;
659 }
660 continue;
661 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700662 if (args[i] == "dmode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700663 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700664 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700665 parsed.dmode = mode;
666 parsed.has_dmode = true;
667 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700668 uiPrintf(state, "ParsePermArgs: invalid dmode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700669 bad++;
670 }
671 continue;
672 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700673 if (args[i] == "fmode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700674 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700675 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700676 parsed.fmode = mode;
677 parsed.has_fmode = true;
678 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700679 uiPrintf(state, "ParsePermArgs: invalid fmode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700680 bad++;
681 }
682 continue;
683 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700684 if (args[i] == "capabilities") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700685 int64_t capabilities;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700686 if (sscanf(args[i+1].c_str(), "%" SCNi64, &capabilities) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700687 parsed.capabilities = capabilities;
688 parsed.has_capabilities = true;
689 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700690 uiPrintf(state, "ParsePermArgs: invalid capabilities \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700691 bad++;
692 }
693 continue;
694 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700695 if (args[i] == "selabel") {
696 if (!args[i+1].empty()) {
697 parsed.selabel = args[i+1].c_str();
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700698 parsed.has_selabel = true;
699 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700700 uiPrintf(state, "ParsePermArgs: invalid selabel \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700701 bad++;
702 }
703 continue;
704 }
705 if (max_warnings != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700706 printf("ParsedPermArgs: unknown key \"%s\", ignoring\n", args[i].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700707 max_warnings--;
708 if (max_warnings == 0) {
709 printf("ParsedPermArgs: suppressing further warnings\n");
710 }
711 }
712 }
713 return parsed;
714}
715
716static int ApplyParsedPerms(
Michael Runged4a63422014-10-22 19:48:41 -0700717 State * state,
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700718 const char* filename,
719 const struct stat *statptr,
720 struct perm_parsed_args parsed)
721{
722 int bad = 0;
723
Nick Kralevich68802412014-10-23 20:36:42 -0700724 if (parsed.has_selabel) {
725 if (lsetfilecon(filename, parsed.selabel) != 0) {
726 uiPrintf(state, "ApplyParsedPerms: lsetfilecon of %s to %s failed: %s\n",
727 filename, parsed.selabel, strerror(errno));
728 bad++;
729 }
730 }
731
Nick Kraleviche4612512013-09-10 15:34:19 -0700732 /* ignore symlinks */
733 if (S_ISLNK(statptr->st_mode)) {
Nick Kralevich68802412014-10-23 20:36:42 -0700734 return bad;
Nick Kraleviche4612512013-09-10 15:34:19 -0700735 }
736
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700737 if (parsed.has_uid) {
738 if (chown(filename, parsed.uid, -1) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700739 uiPrintf(state, "ApplyParsedPerms: chown of %s to %d failed: %s\n",
740 filename, parsed.uid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700741 bad++;
742 }
743 }
744
745 if (parsed.has_gid) {
746 if (chown(filename, -1, parsed.gid) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700747 uiPrintf(state, "ApplyParsedPerms: chgrp of %s to %d failed: %s\n",
748 filename, parsed.gid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700749 bad++;
750 }
751 }
752
753 if (parsed.has_mode) {
754 if (chmod(filename, parsed.mode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700755 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
756 filename, parsed.mode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700757 bad++;
758 }
759 }
760
761 if (parsed.has_dmode && S_ISDIR(statptr->st_mode)) {
762 if (chmod(filename, parsed.dmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700763 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
764 filename, parsed.dmode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700765 bad++;
766 }
767 }
768
769 if (parsed.has_fmode && S_ISREG(statptr->st_mode)) {
770 if (chmod(filename, parsed.fmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700771 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700772 filename, parsed.fmode, strerror(errno));
773 bad++;
774 }
775 }
776
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700777 if (parsed.has_capabilities && S_ISREG(statptr->st_mode)) {
778 if (parsed.capabilities == 0) {
779 if ((removexattr(filename, XATTR_NAME_CAPS) == -1) && (errno != ENODATA)) {
780 // Report failure unless it's ENODATA (attribute not set)
Michael Runged4a63422014-10-22 19:48:41 -0700781 uiPrintf(state, "ApplyParsedPerms: removexattr of %s to %" PRIx64 " failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700782 filename, parsed.capabilities, strerror(errno));
783 bad++;
784 }
785 } else {
786 struct vfs_cap_data cap_data;
787 memset(&cap_data, 0, sizeof(cap_data));
788 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
789 cap_data.data[0].permitted = (uint32_t) (parsed.capabilities & 0xffffffff);
790 cap_data.data[0].inheritable = 0;
791 cap_data.data[1].permitted = (uint32_t) (parsed.capabilities >> 32);
792 cap_data.data[1].inheritable = 0;
793 if (setxattr(filename, XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700794 uiPrintf(state, "ApplyParsedPerms: setcap of %s to %" PRIx64 " failed: %s\n",
795 filename, parsed.capabilities, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700796 bad++;
797 }
798 }
799 }
800
801 return bad;
802}
803
804// nftw doesn't allow us to pass along context, so we need to use
805// global variables. *sigh*
806static struct perm_parsed_args recursive_parsed_args;
Michael Runged4a63422014-10-22 19:48:41 -0700807static State* recursive_state;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700808
809static int do_SetMetadataRecursive(const char* filename, const struct stat *statptr,
810 int fileflags, struct FTW *pfwt) {
Michael Runged4a63422014-10-22 19:48:41 -0700811 return ApplyParsedPerms(recursive_state, filename, statptr, recursive_parsed_args);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700812}
813
814static Value* SetMetadataFn(const char* name, State* state, int argc, Expr* argv[]) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700815 if ((argc % 2) != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700816 return ErrorAbort(state, kArgsParsingFailure,
817 "%s() expects an odd number of arguments, got %d", name, argc);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700818 }
819
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700820 std::vector<std::string> args;
821 if (!ReadArgs(state, argc, argv, &args)) {
822 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700823 }
824
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700825 struct stat sb;
826 if (lstat(args[0].c_str(), &sb) == -1) {
827 return ErrorAbort(state, kSetMetadataFailure, "%s: Error on lstat of \"%s\": %s",
828 name, args[0].c_str(), strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700829 }
830
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700831 struct perm_parsed_args parsed = ParsePermArgs(state, argc, args);
832 int bad = 0;
833 bool recursive = (strcmp(name, "set_metadata_recursive") == 0);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700834
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700835 if (recursive) {
836 recursive_parsed_args = parsed;
837 recursive_state = state;
838 bad += nftw(args[0].c_str(), do_SetMetadataRecursive, 30, FTW_CHDIR | FTW_DEPTH | FTW_PHYS);
839 memset(&recursive_parsed_args, 0, sizeof(recursive_parsed_args));
840 recursive_state = NULL;
841 } else {
842 bad += ApplyParsedPerms(state, args[0].c_str(), &sb, parsed);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700843 }
844
845 if (bad > 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700846 return ErrorAbort(state, kSetMetadataFailure, "%s: some changes failed", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700847 }
848
Tianjie Xuaced5d92016-10-12 10:55:04 -0700849 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700850}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700851
Doug Zongker512536a2010-02-17 16:11:44 -0800852Value* GetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700853 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700854 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700855 }
Tianjie Xuaced5d92016-10-12 10:55:04 -0700856 std::string key;
857 if (!Evaluate(state, argv[0], &key)) {
858 return nullptr;
859 }
Elliott Hughescb220402016-09-23 15:30:55 -0700860 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700861
Tianjie Xuaced5d92016-10-12 10:55:04 -0700862 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700863}
864
Doug Zongker47cace92009-06-18 10:11:50 -0700865// file_getprop(file, key)
866//
867// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700868// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700869// and returns the value for 'key' (or "" if it isn't defined).
Doug Zongker512536a2010-02-17 16:11:44 -0800870Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Bao51d516e2016-11-03 14:49:01 -0700871 if (argc != 2) {
872 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
873 }
874
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700875 std::vector<std::string> args;
876 if (!ReadArgs(state, 2, argv, &args)) {
877 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker47cace92009-06-18 10:11:50 -0700878 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700879 const std::string& filename = args[0];
880 const std::string& key = args[1];
Doug Zongker47cace92009-06-18 10:11:50 -0700881
882 struct stat st;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700883 if (stat(filename.c_str(), &st) < 0) {
884 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
885 filename.c_str(), strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700886 }
887
Tao Bao51d516e2016-11-03 14:49:01 -0700888 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
Doug Zongker47cace92009-06-18 10:11:50 -0700889 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
Tao Bao51d516e2016-11-03 14:49:01 -0700890 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
891 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
Doug Zongker47cace92009-06-18 10:11:50 -0700892 }
893
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700894 std::string buffer(st.st_size, '\0');
895 FILE* f = ota_fopen(filename.c_str(), "rb");
896 if (f == nullptr) {
897 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name,
898 filename.c_str(), strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700899 }
900
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700901 if (ota_fread(&buffer[0], 1, st.st_size, f) != static_cast<size_t>(st.st_size)) {
Tianjie Xu84478e82016-05-23 11:42:40 -0700902 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700903 name, static_cast<size_t>(st.st_size), filename.c_str());
Jed Estepa7b9a462015-12-15 16:04:53 -0800904 ota_fclose(f);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700905 return nullptr;
Doug Zongker47cace92009-06-18 10:11:50 -0700906 }
Doug Zongker47cace92009-06-18 10:11:50 -0700907
Jed Estepa7b9a462015-12-15 16:04:53 -0800908 ota_fclose(f);
Doug Zongker47cace92009-06-18 10:11:50 -0700909
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700910 std::vector<std::string> lines = android::base::Split(buffer, "\n");
911 for (size_t i = 0; i < lines.size(); i++) {
912 std::string line = android::base::Trim(lines[i]);
Doug Zongker47cace92009-06-18 10:11:50 -0700913
914 // comment or blank line: skip to next line
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700915 if (line.empty() || line[0] == '#') {
916 continue;
917 }
918 size_t equal_pos = line.find('=');
919 if (equal_pos == std::string::npos) {
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700920 continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700921 }
922
923 // trim whitespace between key and '='
Tao Bao51d516e2016-11-03 14:49:01 -0700924 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700925
926 // not the key we're looking for
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700927 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700928
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700929 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
930 }
Doug Zongker47cace92009-06-18 10:11:50 -0700931
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700932 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700933}
934
Doug Zongker8edb00c2009-06-11 17:21:44 -0700935// apply_patch_space(bytes)
Doug Zongkerc4351c72010-02-22 14:46:32 -0800936Value* ApplyPatchSpaceFn(const char* name, State* state,
937 int argc, Expr* argv[]) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700938 std::vector<std::string> args;
939 if (!ReadArgs(state, 1, argv, &args)) {
940 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800941 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700942 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800943
Tao Baob15fd222015-09-24 11:10:51 -0700944 size_t bytes;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700945 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
946 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
947 name, bytes_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800948 }
949
Tianjie Xuaced5d92016-10-12 10:55:04 -0700950 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800951}
952
Doug Zongker52b40362014-02-10 15:30:30 -0800953// apply_patch(file, size, init_sha1, tgt_sha1, patch)
954
Doug Zongker512536a2010-02-17 16:11:44 -0800955Value* ApplyPatchFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800956 if (argc < 6 || (argc % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700957 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700958 "even number, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700959 }
960
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700961 std::vector<std::string> args;
962 if (!ReadArgs(state, 4, argv, &args)) {
963 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700964 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700965 const std::string& source_filename = args[0];
966 const std::string& target_filename = args[1];
967 const std::string& target_sha1 = args[2];
968 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700969
Tao Baob15fd222015-09-24 11:10:51 -0700970 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700971 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
972 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
973 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800974 }
975
976 int patchcount = (argc-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700977 std::vector<std::unique_ptr<Value>> arg_values;
978 if (!ReadValueArgs(state, argc-4, argv+4, &arg_values)) {
Yabin Cui64be2132016-02-03 18:16:02 -0800979 return nullptr;
980 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700981
Yabin Cui64be2132016-02-03 18:16:02 -0800982 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700983 if (arg_values[i * 2]->type != VAL_STRING) {
984 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
985 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800986 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700987 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
988 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
989 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800990 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700991 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700992
Tianjie Xuaced5d92016-10-12 10:55:04 -0700993 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700994 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800995 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700996 patch_sha_str.push_back(arg_values[i * 2]->data);
997 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700998 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800999
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001000 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
1001 target_sha1.c_str(), target_size,
1002 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001003
Tianjie Xuaced5d92016-10-12 10:55:04 -07001004 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -08001005}
1006
1007// apply_patch_check(file, [sha1_1, ...])
1008Value* ApplyPatchCheckFn(const char* name, State* state,
1009 int argc, Expr* argv[]) {
1010 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001011 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %d",
Doug Zongkerc4351c72010-02-22 14:46:32 -08001012 name, argc);
1013 }
1014
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001015 std::vector<std::string> args;
1016 if (!ReadArgs(state, 1, argv, &args)) {
1017 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001018 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001019 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -08001020
Tianjie Xuaced5d92016-10-12 10:55:04 -07001021 std::vector<std::string> sha1s;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001022 if (!ReadArgs(state, argc - 1, argv + 1, &sha1s)) {
1023 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001024 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001025 int result = applypatch_check(filename.c_str(), sha1s);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001026
1027 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -07001028}
1029
Tao Bao1107d962015-09-09 17:16:55 -07001030// This is the updater side handler for ui_print() in edify script. Contents
1031// will be sent over to the recovery side for on-screen display.
Doug Zongker512536a2010-02-17 16:11:44 -08001032Value* UIPrintFn(const char* name, State* state, int argc, Expr* argv[]) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001033 std::vector<std::string> args;
1034 if (!ReadArgs(state, argc, argv, &args)) {
1035 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001036 }
1037
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001038 std::string buffer = android::base::Join(args, "") + "\n";
Michael Runged4a63422014-10-22 19:48:41 -07001039 uiPrint(state, buffer);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001040 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001041}
1042
Doug Zongkerd0181b82011-10-19 10:51:12 -07001043Value* WipeCacheFn(const char* name, State* state, int argc, Expr* argv[]) {
1044 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001045 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001046 }
1047 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "wipe_cache\n");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001048 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -07001049}
1050
Doug Zongker512536a2010-02-17 16:11:44 -08001051Value* RunProgramFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001052 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001053 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001054 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001055
1056 std::vector<std::string> args;
1057 if (!ReadArgs(state, argc, argv, &args)) {
1058 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001059 }
1060
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001061 char* args2[argc+1];
1062 for (int i = 0; i < argc; i++) {
1063 args2[i] = &args[i][0];
1064 }
1065 args2[argc] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001066
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001067 printf("about to run program [%s] with %d args\n", args2[0], argc);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001068
1069 pid_t child = fork();
1070 if (child == 0) {
1071 execv(args2[0], args2);
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001072 printf("run_program: execv failed: %s\n", strerror(errno));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001073 _exit(1);
1074 }
1075 int status;
1076 waitpid(child, &status, 0);
1077 if (WIFEXITED(status)) {
1078 if (WEXITSTATUS(status) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001079 printf("run_program: child exited with status %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001080 WEXITSTATUS(status));
1081 }
1082 } else if (WIFSIGNALED(status)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001083 printf("run_program: child terminated by signal %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001084 WTERMSIG(status));
1085 }
1086
Tianjie Xuaced5d92016-10-12 10:55:04 -07001087 return StringValue(android::base::StringPrintf("%d", status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001088}
1089
Doug Zongker512536a2010-02-17 16:11:44 -08001090// sha1_check(data)
1091// to return the sha1 of the data (given in the format returned by
1092// read_file).
1093//
1094// sha1_check(data, sha1_hex, [sha1_hex, ...])
1095// returns the sha1 of the file if it matches any of the hex
1096// strings passed, or "" if it does not equal any of them.
1097//
1098Value* Sha1CheckFn(const char* name, State* state, int argc, Expr* argv[]) {
1099 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001100 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongker512536a2010-02-17 16:11:44 -08001101 }
1102
Tianjie Xuaced5d92016-10-12 10:55:04 -07001103 std::vector<std::unique_ptr<Value>> args;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001104 if (!ReadValueArgs(state, argc, argv, &args)) {
1105 return nullptr;
Doug Zongker512536a2010-02-17 16:11:44 -08001106 }
1107
Tianjie Xuaced5d92016-10-12 10:55:04 -07001108 if (args[0]->type == VAL_INVALID) {
1109 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -08001110 }
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001111 uint8_t digest[SHA_DIGEST_LENGTH];
Tianjie Xuaced5d92016-10-12 10:55:04 -07001112 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
Doug Zongker512536a2010-02-17 16:11:44 -08001113
1114 if (argc == 1) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001115 return StringValue(print_sha1(digest));
Doug Zongker512536a2010-02-17 16:11:44 -08001116 }
1117
Tao Bao361342c2016-02-08 11:15:50 -08001118 for (int i = 1; i < argc; ++i) {
1119 uint8_t arg_digest[SHA_DIGEST_LENGTH];
Doug Zongker512536a2010-02-17 16:11:44 -08001120 if (args[i]->type != VAL_STRING) {
Tao Bao361342c2016-02-08 11:15:50 -08001121 printf("%s(): arg %d is not a string; skipping", name, i);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001122 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
Doug Zongker512536a2010-02-17 16:11:44 -08001123 // Warn about bad args and skip them.
Tianjie Xuaced5d92016-10-12 10:55:04 -07001124 printf("%s(): error parsing \"%s\" as sha-1; skipping", name, args[i]->data.c_str());
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001125 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
Tao Bao361342c2016-02-08 11:15:50 -08001126 // Found a match.
1127 return args[i].release();
Doug Zongker512536a2010-02-17 16:11:44 -08001128 }
Doug Zongker512536a2010-02-17 16:11:44 -08001129 }
Tao Bao361342c2016-02-08 11:15:50 -08001130
1131 // Didn't match any of the hex strings; return false.
Tianjie Xuaced5d92016-10-12 10:55:04 -07001132 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -08001133}
1134
Hristo Bojinovdb314d62010-08-02 10:29:49 -07001135// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -08001136// is actually a FileContents*).
1137Value* ReadFileFn(const char* name, State* state, int argc, Expr* argv[]) {
1138 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001139 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker512536a2010-02-17 16:11:44 -08001140 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001141
1142 std::vector<std::string> args;
1143 if (!ReadArgs(state, 1, argv, &args)) {
1144 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1145 }
1146 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -08001147
Tianjie Xuaced5d92016-10-12 10:55:04 -07001148 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -08001149
1150 FileContents fc;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001151 if (LoadFileContents(filename.c_str(), &fc) == 0) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001152 v->type = VAL_BLOB;
1153 v->data = std::string(fc.data.begin(), fc.data.end());
Doug Zongker512536a2010-02-17 16:11:44 -08001154 }
Doug Zongker512536a2010-02-17 16:11:44 -08001155 return v;
1156}
Doug Zongker8edb00c2009-06-11 17:21:44 -07001157
Tao Baod0f30882016-11-03 23:52:01 -07001158// write_value(value, filename)
1159// Writes 'value' to 'filename'.
1160// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
1161Value* WriteValueFn(const char* name, State* state, int argc, Expr* argv[]) {
1162 if (argc != 2) {
1163 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
1164 }
1165
1166 std::vector<std::string> args;
1167 if (!ReadArgs(state, 2, argv, &args)) {
1168 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
1169 }
1170
1171 const std::string& filename = args[1];
1172 if (filename.empty()) {
1173 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
1174 }
1175
1176 const std::string& value = args[0];
1177 if (!android::base::WriteStringToFile(value, filename)) {
1178 printf("%s: Failed to write to \"%s\": %s\n", name, filename.c_str(), strerror(errno));
1179 return StringValue("");
1180 } else {
1181 return StringValue("t");
1182 }
1183}
1184
Doug Zongkerc87bab12013-11-25 13:53:25 -08001185// Immediately reboot the device. Recovery is not finished normally,
1186// so if you reboot into recovery it will re-start applying the
1187// current package (because nothing has cleared the copy of the
1188// arguments stored in the BCB).
1189//
1190// The argument is the partition name passed to the android reboot
1191// property. It can be "recovery" to boot from the recovery
1192// partition, or "" (empty string) to boot from the regular boot
1193// partition.
1194Value* RebootNowFn(const char* name, State* state, int argc, Expr* argv[]) {
1195 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001196 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001197 }
1198
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001199 std::vector<std::string> args;
1200 if (!ReadArgs(state, 2, argv, &args)) {
1201 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1202 }
1203 const std::string& filename = args[0];
1204 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001205
Doug Zongkerc87bab12013-11-25 13:53:25 -08001206 // zero out the 'command' field of the bootloader message.
Elliott Hughescb220402016-09-23 15:30:55 -07001207 char buffer[80];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001208 memset(buffer, 0, sizeof(((struct bootloader_message*)0)->command));
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001209 FILE* f = ota_fopen(filename.c_str(), "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001210 fseek(f, offsetof(struct bootloader_message, command), SEEK_SET);
Jed Estepa7b9a462015-12-15 16:04:53 -08001211 ota_fwrite(buffer, sizeof(((struct bootloader_message*)0)->command), 1, f);
1212 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001213
Elliott Hughescb220402016-09-23 15:30:55 -07001214 std::string reboot_cmd = "reboot,";
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001215 reboot_cmd += property;
Elliott Hughescb220402016-09-23 15:30:55 -07001216 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001217
1218 sleep(5);
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001219 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001220}
1221
1222// Store a string value somewhere that future invocations of recovery
1223// can access it. This value is called the "stage" and can be used to
1224// drive packages that need to do reboots in the middle of
1225// installation and keep track of where they are in the multi-stage
1226// install.
1227//
1228// The first argument is the block device for the misc partition
1229// ("/misc" in the fstab), which is where this value is stored. The
1230// second argument is the string to store; it should not exceed 31
1231// bytes.
1232Value* SetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
1233 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001234 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001235 }
1236
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001237 std::vector<std::string> args;
1238 if (!ReadArgs(state, 2, argv, &args)) {
1239 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1240 }
1241 const std::string& filename = args[0];
1242 std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001243
1244 // Store this value in the misc partition, immediately after the
1245 // bootloader message that the main recovery uses to save its
1246 // arguments in case of the device restarting midway through
1247 // package installation.
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001248 FILE* f = ota_fopen(filename.c_str(), "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001249 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001250 size_t to_write = stagestr.size();
Tianjie Xuaced5d92016-10-12 10:55:04 -07001251 size_t max_size = sizeof(((struct bootloader_message*)0)->stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001252 if (to_write > max_size) {
1253 to_write = max_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001254 stagestr = stagestr.substr(0, max_size-1);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001255 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001256 size_t status = ota_fwrite(stagestr.c_str(), to_write, 1, f);
Jed Estepa7b9a462015-12-15 16:04:53 -08001257 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001258
Tianjie Xuaced5d92016-10-12 10:55:04 -07001259 if (status != to_write) {
1260 return StringValue("");
1261 }
Doug Zongkerc87bab12013-11-25 13:53:25 -08001262 return StringValue(filename);
1263}
1264
1265// Return the value most recently saved with SetStageFn. The argument
1266// is the block device for the misc partition.
1267Value* GetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001268 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001269 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001270 }
1271
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001272 std::vector<std::string> args;
1273 if (!ReadArgs(state, 1, argv, &args)) {
1274 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1275 }
1276 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001277
1278 char buffer[sizeof(((struct bootloader_message*)0)->stage)];
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001279 FILE* f = ota_fopen(filename.c_str(), "rb");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001280 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001281 size_t status = ota_fread(buffer, sizeof(buffer), 1, f);
Jed Estepa7b9a462015-12-15 16:04:53 -08001282 ota_fclose(f);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001283 if (status != sizeof(buffer)) {
1284 return StringValue("");
1285 }
Doug Zongkerc87bab12013-11-25 13:53:25 -08001286
Tianjie Xuaced5d92016-10-12 10:55:04 -07001287 buffer[sizeof(buffer)-1] = '\0';
1288 return StringValue(buffer);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001289}
1290
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001291Value* WipeBlockDeviceFn(const char* name, State* state, int argc, Expr* argv[]) {
1292 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001293 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001294 }
1295
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001296 std::vector<std::string> args;
1297 if (!ReadArgs(state, 2, argv, &args)) {
1298 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1299 }
1300 const std::string& filename = args[0];
1301 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001302
Tao Baob15fd222015-09-24 11:10:51 -07001303 size_t len;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001304 if (!android::base::ParseUint(len_str.c_str(), &len)) {
1305 return nullptr;
1306 }
1307 int fd = ota_open(filename.c_str(), O_WRONLY, 0644);
1308 // The wipe_block_device function in ext4_utils returns 0 on success and 1
1309 // for failure.
1310 int status = wipe_block_device(fd, len);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001311
Jed Estepa7b9a462015-12-15 16:04:53 -08001312 ota_close(fd);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001313
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001314 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001315}
1316
Doug Zongkerc704e062014-05-23 08:40:35 -07001317Value* EnableRebootFn(const char* name, State* state, int argc, Expr* argv[]) {
1318 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001319 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerc704e062014-05-23 08:40:35 -07001320 }
1321 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
1322 fprintf(ui->cmd_pipe, "enable_reboot\n");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001323 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -07001324}
1325
Michael Rungeacf47db2014-11-21 00:12:28 -08001326Value* Tune2FsFn(const char* name, State* state, int argc, Expr* argv[]) {
1327 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001328 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %d", name, argc);
Michael Rungeacf47db2014-11-21 00:12:28 -08001329 }
1330
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001331 std::vector<std::string> args;
1332 if (!ReadArgs(state, argc, argv, &args)) {
Tianjie Xu16255832016-04-30 11:49:59 -07001333 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
Michael Rungeacf47db2014-11-21 00:12:28 -08001334 }
1335
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001336 char* args2[argc+1];
Michael Rungeacf47db2014-11-21 00:12:28 -08001337 // Tune2fs expects the program name as its args[0]
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001338 args2[0] = const_cast<char*>(name);
1339 if (args2[0] == nullptr) {
1340 return nullptr;
Michael Rungeacf47db2014-11-21 00:12:28 -08001341 }
Tao Baoba9a42a2015-06-23 23:23:33 -07001342 for (int i = 0; i < argc; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001343 args2[i + 1] = &args[i][0];
Michael Rungeacf47db2014-11-21 00:12:28 -08001344 }
Michael Rungeacf47db2014-11-21 00:12:28 -08001345
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001346 // tune2fs changes the file system parameters on an ext2 file system; it
1347 // returns 0 on success.
1348 int result = tune2fs_main(argc + 1, args2);
1349
Michael Rungeacf47db2014-11-21 00:12:28 -08001350 if (result != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001351 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
Michael Rungeacf47db2014-11-21 00:12:28 -08001352 }
Tianjie Xuaced5d92016-10-12 10:55:04 -07001353 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -08001354}
1355
Doug Zongker9931f7f2009-06-10 14:11:53 -07001356void RegisterInstallFunctions() {
1357 RegisterFunction("mount", MountFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001358 RegisterFunction("is_mounted", IsMountedFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001359 RegisterFunction("unmount", UnmountFn);
1360 RegisterFunction("format", FormatFn);
1361 RegisterFunction("show_progress", ShowProgressFn);
Doug Zongkerfbf3c102009-06-24 09:36:20 -07001362 RegisterFunction("set_progress", SetProgressFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001363 RegisterFunction("delete", DeleteFn);
1364 RegisterFunction("delete_recursive", DeleteFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001365 RegisterFunction("package_extract_dir", PackageExtractDirFn);
1366 RegisterFunction("package_extract_file", PackageExtractFileFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001367 RegisterFunction("symlink", SymlinkFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001368
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001369 // Usage:
1370 // set_metadata("filename", "key1", "value1", "key2", "value2", ...)
1371 // Example:
1372 // set_metadata("/system/bin/netcfg", "uid", 0, "gid", 3003, "mode", 02750, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1373 RegisterFunction("set_metadata", SetMetadataFn);
1374
1375 // Usage:
1376 // set_metadata_recursive("dirname", "key1", "value1", "key2", "value2", ...)
1377 // Example:
1378 // set_metadata_recursive("/system", "uid", 0, "gid", 0, "fmode", 0644, "dmode", 0755, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1379 RegisterFunction("set_metadata_recursive", SetMetadataFn);
1380
Doug Zongker8edb00c2009-06-11 17:21:44 -07001381 RegisterFunction("getprop", GetPropFn);
Doug Zongker47cace92009-06-18 10:11:50 -07001382 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001383
1384 RegisterFunction("apply_patch", ApplyPatchFn);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001385 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1386 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001387
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001388 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001389
Doug Zongker512536a2010-02-17 16:11:44 -08001390 RegisterFunction("read_file", ReadFileFn);
1391 RegisterFunction("sha1_check", Sha1CheckFn);
Michael Rungece7ca712013-11-06 17:42:20 -08001392 RegisterFunction("rename", RenameFn);
Tao Baod0f30882016-11-03 23:52:01 -07001393 RegisterFunction("write_value", WriteValueFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001394
Doug Zongkerd0181b82011-10-19 10:51:12 -07001395 RegisterFunction("wipe_cache", WipeCacheFn);
1396
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001397 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001398
1399 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001400
1401 RegisterFunction("reboot_now", RebootNowFn);
1402 RegisterFunction("get_stage", GetStageFn);
1403 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001404
1405 RegisterFunction("enable_reboot", EnableRebootFn);
Michael Rungeacf47db2014-11-21 00:12:28 -08001406 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001407}