blob: 6c110732ae9f8536022afa3737b9496fb897639e [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
Tao Bao1036d362016-11-17 22:49:56 -0800457// package_extract_dir(package_dir, dest_dir)
458// Extracts all files from the package underneath package_dir and writes them to the
459// corresponding tree beneath dest_dir. Any existing files are overwritten.
460// Example: package_extract_dir("system", "/system")
461//
462// Note: package_dir needs to be a relative path; dest_dir needs to be an absolute path.
463Value* PackageExtractDirFn(const char* name, State* state, int argc, Expr* argv[]) {
464 if (argc != 2) {
465 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
466 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700467
Tao Bao1036d362016-11-17 22:49:56 -0800468 std::vector<std::string> args;
469 if (!ReadArgs(state, 2, argv, &args)) {
470 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
471 }
472 const std::string& zip_path = args[0];
473 const std::string& dest_path = args[1];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700474
Tao Bao1036d362016-11-17 22:49:56 -0800475 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700476
Tao Bao1036d362016-11-17 22:49:56 -0800477 // To create a consistent system image, never use the clock for timestamps.
478 constexpr struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default
Doug Zongker9931f7f2009-06-10 14:11:53 -0700479
Tao Bao1036d362016-11-17 22:49:56 -0800480 bool success = ExtractPackageRecursive(za, zip_path, dest_path, &timestamp, sehandle);
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700481
Tao Bao1036d362016-11-17 22:49:56 -0800482 return StringValue(success ? "t" : "");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700483}
484
Tao Baoef0eb3b2016-11-14 21:29:52 -0800485// package_extract_file(package_file[, dest_file])
486// Extracts a single package_file from the update package and writes it to dest_file,
487// overwriting existing files if necessary. Without the dest_file argument, returns the
488// contents of the package file as a binary blob.
489Value* PackageExtractFileFn(const char* name, State* state, int argc, Expr* argv[]) {
490 if (argc < 1 || argc > 2) {
491 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %d", name, argc);
492 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700493
Tao Baoef0eb3b2016-11-14 21:29:52 -0800494 if (argc == 2) {
495 // The two-argument version extracts to a file.
496
497 std::vector<std::string> args;
498 if (!ReadArgs(state, 2, argv, &args)) {
499 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700500 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800501 const std::string& zip_path = args[0];
502 const std::string& dest_path = args[1];
Doug Zongker43772d22014-06-09 14:13:19 -0700503
Tao Baoef0eb3b2016-11-14 21:29:52 -0800504 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
505 ZipString zip_string_path(zip_path.c_str());
506 ZipEntry entry;
507 if (FindEntry(za, zip_string_path, &entry) != 0) {
508 printf("%s: no %s in package\n", name, zip_path.c_str());
509 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700510 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800511
512 int fd = TEMP_FAILURE_RETRY(
513 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR));
514 if (fd == -1) {
515 printf("%s: can't open %s for write: %s\n", name, dest_path.c_str(), strerror(errno));
516 return StringValue("");
517 }
518
519 bool success = true;
520 int32_t ret = ExtractEntryToFile(za, &entry, fd);
521 if (ret != 0) {
522 printf("%s: Failed to extract entry \"%s\" (%u bytes) to \"%s\": %s\n", name,
523 zip_path.c_str(), entry.uncompressed_length, dest_path.c_str(), ErrorCodeString(ret));
524 success = false;
525 }
526 if (ota_fsync(fd) == -1) {
527 printf("fsync of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno));
528 success = false;
529 }
530 if (ota_close(fd) == -1) {
531 printf("close of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno));
532 success = false;
533 }
534
535 return StringValue(success ? "t" : "");
536 } else {
537 // The one-argument version returns the contents of the file as the result.
538
539 std::vector<std::string> args;
540 if (!ReadArgs(state, 1, argv, &args)) {
541 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name, argc);
542 }
543 const std::string& zip_path = args[0];
544
545 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
546 ZipString zip_string_path(zip_path.c_str());
547 ZipEntry entry;
548 if (FindEntry(za, zip_string_path, &entry) != 0) {
549 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
550 zip_path.c_str());
551 }
552
553 std::string buffer;
554 buffer.resize(entry.uncompressed_length);
555
556 int32_t ret = ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
557 if (ret != 0) {
558 return ErrorAbort(state, kPackageExtractFileFailure,
559 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
560 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
561 }
562
563 return new Value(VAL_BLOB, buffer);
564 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700565}
566
Tao Bao89929022016-11-08 20:51:31 -0800567// symlink(target, [src1, src2, ...])
568// Creates all sources as symlinks to target. It unlinks any previously existing src1, src2, etc
569// before creating symlinks.
Doug Zongker512536a2010-02-17 16:11:44 -0800570Value* SymlinkFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700571 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700572 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1+ args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700573 }
Tianjie Xuaced5d92016-10-12 10:55:04 -0700574 std::string target;
575 if (!Evaluate(state, argv[0], &target)) {
576 return nullptr;
577 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700578
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700579 std::vector<std::string> srcs;
580 if (!ReadArgs(state, argc-1, argv+1, &srcs)) {
Tao Bao89929022016-11-08 20:51:31 -0800581 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)",
582 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700583 }
584
Tao Bao89929022016-11-08 20:51:31 -0800585 size_t bad = 0;
586 for (const auto& src : srcs) {
587 if (unlink(src.c_str()) == -1 && errno != ENOENT) {
588 printf("%s: failed to remove %s: %s\n", name, src.c_str(), strerror(errno));
589 ++bad;
590 } else if (!make_parents(src)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700591 printf("%s: failed to symlink %s to %s: making parents failed\n",
Tao Bao89929022016-11-08 20:51:31 -0800592 name, src.c_str(), target.c_str());
Doug Zongkera23075f2012-08-06 16:19:09 -0700593 ++bad;
Tao Bao89929022016-11-08 20:51:31 -0800594 } else if (symlink(target.c_str(), src.c_str()) == -1) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700595 printf("%s: failed to symlink %s to %s: %s\n",
Tao Bao89929022016-11-08 20:51:31 -0800596 name, src.c_str(), target.c_str(), strerror(errno));
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700597 ++bad;
Doug Zongker60babf82009-09-18 15:11:24 -0700598 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700599 }
Tao Bao89929022016-11-08 20:51:31 -0800600 if (bad != 0) {
601 return ErrorAbort(state, kSymlinkFailure, "%s: Failed to create %zu symlink(s)", name, bad);
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700602 }
Tao Bao89929022016-11-08 20:51:31 -0800603 return StringValue("t");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700604}
605
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700606struct perm_parsed_args {
607 bool has_uid;
608 uid_t uid;
609 bool has_gid;
610 gid_t gid;
611 bool has_mode;
612 mode_t mode;
613 bool has_fmode;
614 mode_t fmode;
615 bool has_dmode;
616 mode_t dmode;
617 bool has_selabel;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700618 const char* selabel;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700619 bool has_capabilities;
620 uint64_t capabilities;
621};
622
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700623static struct perm_parsed_args ParsePermArgs(State * state, int argc,
624 const std::vector<std::string>& args) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700625 int i;
626 struct perm_parsed_args parsed;
627 int bad = 0;
628 static int max_warnings = 20;
629
630 memset(&parsed, 0, sizeof(parsed));
631
632 for (i = 1; i < argc; i += 2) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700633 if (args[i] == "uid") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700634 int64_t uid;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700635 if (sscanf(args[i+1].c_str(), "%" SCNd64, &uid) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700636 parsed.uid = uid;
637 parsed.has_uid = true;
638 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700639 uiPrintf(state, "ParsePermArgs: invalid UID \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700640 bad++;
641 }
642 continue;
643 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700644 if (args[i] == "gid") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700645 int64_t gid;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700646 if (sscanf(args[i+1].c_str(), "%" SCNd64, &gid) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700647 parsed.gid = gid;
648 parsed.has_gid = true;
649 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700650 uiPrintf(state, "ParsePermArgs: invalid GID \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700651 bad++;
652 }
653 continue;
654 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700655 if (args[i] == "mode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700656 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700657 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700658 parsed.mode = mode;
659 parsed.has_mode = true;
660 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700661 uiPrintf(state, "ParsePermArgs: invalid mode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700662 bad++;
663 }
664 continue;
665 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700666 if (args[i] == "dmode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700667 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700668 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700669 parsed.dmode = mode;
670 parsed.has_dmode = true;
671 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700672 uiPrintf(state, "ParsePermArgs: invalid dmode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700673 bad++;
674 }
675 continue;
676 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700677 if (args[i] == "fmode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700678 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700679 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700680 parsed.fmode = mode;
681 parsed.has_fmode = true;
682 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700683 uiPrintf(state, "ParsePermArgs: invalid fmode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700684 bad++;
685 }
686 continue;
687 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700688 if (args[i] == "capabilities") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700689 int64_t capabilities;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700690 if (sscanf(args[i+1].c_str(), "%" SCNi64, &capabilities) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700691 parsed.capabilities = capabilities;
692 parsed.has_capabilities = true;
693 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700694 uiPrintf(state, "ParsePermArgs: invalid capabilities \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700695 bad++;
696 }
697 continue;
698 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700699 if (args[i] == "selabel") {
700 if (!args[i+1].empty()) {
701 parsed.selabel = args[i+1].c_str();
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700702 parsed.has_selabel = true;
703 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700704 uiPrintf(state, "ParsePermArgs: invalid selabel \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700705 bad++;
706 }
707 continue;
708 }
709 if (max_warnings != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700710 printf("ParsedPermArgs: unknown key \"%s\", ignoring\n", args[i].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700711 max_warnings--;
712 if (max_warnings == 0) {
713 printf("ParsedPermArgs: suppressing further warnings\n");
714 }
715 }
716 }
717 return parsed;
718}
719
720static int ApplyParsedPerms(
Michael Runged4a63422014-10-22 19:48:41 -0700721 State * state,
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700722 const char* filename,
723 const struct stat *statptr,
724 struct perm_parsed_args parsed)
725{
726 int bad = 0;
727
Nick Kralevich68802412014-10-23 20:36:42 -0700728 if (parsed.has_selabel) {
729 if (lsetfilecon(filename, parsed.selabel) != 0) {
730 uiPrintf(state, "ApplyParsedPerms: lsetfilecon of %s to %s failed: %s\n",
731 filename, parsed.selabel, strerror(errno));
732 bad++;
733 }
734 }
735
Nick Kraleviche4612512013-09-10 15:34:19 -0700736 /* ignore symlinks */
737 if (S_ISLNK(statptr->st_mode)) {
Nick Kralevich68802412014-10-23 20:36:42 -0700738 return bad;
Nick Kraleviche4612512013-09-10 15:34:19 -0700739 }
740
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700741 if (parsed.has_uid) {
742 if (chown(filename, parsed.uid, -1) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700743 uiPrintf(state, "ApplyParsedPerms: chown of %s to %d failed: %s\n",
744 filename, parsed.uid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700745 bad++;
746 }
747 }
748
749 if (parsed.has_gid) {
750 if (chown(filename, -1, parsed.gid) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700751 uiPrintf(state, "ApplyParsedPerms: chgrp of %s to %d failed: %s\n",
752 filename, parsed.gid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700753 bad++;
754 }
755 }
756
757 if (parsed.has_mode) {
758 if (chmod(filename, parsed.mode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700759 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
760 filename, parsed.mode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700761 bad++;
762 }
763 }
764
765 if (parsed.has_dmode && S_ISDIR(statptr->st_mode)) {
766 if (chmod(filename, parsed.dmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700767 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
768 filename, parsed.dmode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700769 bad++;
770 }
771 }
772
773 if (parsed.has_fmode && S_ISREG(statptr->st_mode)) {
774 if (chmod(filename, parsed.fmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700775 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700776 filename, parsed.fmode, strerror(errno));
777 bad++;
778 }
779 }
780
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700781 if (parsed.has_capabilities && S_ISREG(statptr->st_mode)) {
782 if (parsed.capabilities == 0) {
783 if ((removexattr(filename, XATTR_NAME_CAPS) == -1) && (errno != ENODATA)) {
784 // Report failure unless it's ENODATA (attribute not set)
Michael Runged4a63422014-10-22 19:48:41 -0700785 uiPrintf(state, "ApplyParsedPerms: removexattr of %s to %" PRIx64 " failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700786 filename, parsed.capabilities, strerror(errno));
787 bad++;
788 }
789 } else {
790 struct vfs_cap_data cap_data;
791 memset(&cap_data, 0, sizeof(cap_data));
792 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
793 cap_data.data[0].permitted = (uint32_t) (parsed.capabilities & 0xffffffff);
794 cap_data.data[0].inheritable = 0;
795 cap_data.data[1].permitted = (uint32_t) (parsed.capabilities >> 32);
796 cap_data.data[1].inheritable = 0;
797 if (setxattr(filename, XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700798 uiPrintf(state, "ApplyParsedPerms: setcap of %s to %" PRIx64 " failed: %s\n",
799 filename, parsed.capabilities, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700800 bad++;
801 }
802 }
803 }
804
805 return bad;
806}
807
808// nftw doesn't allow us to pass along context, so we need to use
809// global variables. *sigh*
810static struct perm_parsed_args recursive_parsed_args;
Michael Runged4a63422014-10-22 19:48:41 -0700811static State* recursive_state;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700812
813static int do_SetMetadataRecursive(const char* filename, const struct stat *statptr,
814 int fileflags, struct FTW *pfwt) {
Michael Runged4a63422014-10-22 19:48:41 -0700815 return ApplyParsedPerms(recursive_state, filename, statptr, recursive_parsed_args);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700816}
817
818static Value* SetMetadataFn(const char* name, State* state, int argc, Expr* argv[]) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700819 if ((argc % 2) != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700820 return ErrorAbort(state, kArgsParsingFailure,
821 "%s() expects an odd number of arguments, got %d", name, argc);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700822 }
823
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700824 std::vector<std::string> args;
825 if (!ReadArgs(state, argc, argv, &args)) {
826 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700827 }
828
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700829 struct stat sb;
830 if (lstat(args[0].c_str(), &sb) == -1) {
831 return ErrorAbort(state, kSetMetadataFailure, "%s: Error on lstat of \"%s\": %s",
832 name, args[0].c_str(), strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700833 }
834
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700835 struct perm_parsed_args parsed = ParsePermArgs(state, argc, args);
836 int bad = 0;
837 bool recursive = (strcmp(name, "set_metadata_recursive") == 0);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700838
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700839 if (recursive) {
840 recursive_parsed_args = parsed;
841 recursive_state = state;
842 bad += nftw(args[0].c_str(), do_SetMetadataRecursive, 30, FTW_CHDIR | FTW_DEPTH | FTW_PHYS);
843 memset(&recursive_parsed_args, 0, sizeof(recursive_parsed_args));
844 recursive_state = NULL;
845 } else {
846 bad += ApplyParsedPerms(state, args[0].c_str(), &sb, parsed);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700847 }
848
849 if (bad > 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700850 return ErrorAbort(state, kSetMetadataFailure, "%s: some changes failed", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700851 }
852
Tianjie Xuaced5d92016-10-12 10:55:04 -0700853 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700854}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700855
Doug Zongker512536a2010-02-17 16:11:44 -0800856Value* GetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700857 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700858 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700859 }
Tianjie Xuaced5d92016-10-12 10:55:04 -0700860 std::string key;
861 if (!Evaluate(state, argv[0], &key)) {
862 return nullptr;
863 }
Elliott Hughescb220402016-09-23 15:30:55 -0700864 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700865
Tianjie Xuaced5d92016-10-12 10:55:04 -0700866 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700867}
868
Doug Zongker47cace92009-06-18 10:11:50 -0700869// file_getprop(file, key)
870//
871// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700872// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700873// and returns the value for 'key' (or "" if it isn't defined).
Doug Zongker512536a2010-02-17 16:11:44 -0800874Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Bao51d516e2016-11-03 14:49:01 -0700875 if (argc != 2) {
876 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
877 }
878
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700879 std::vector<std::string> args;
880 if (!ReadArgs(state, 2, argv, &args)) {
881 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker47cace92009-06-18 10:11:50 -0700882 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700883 const std::string& filename = args[0];
884 const std::string& key = args[1];
Doug Zongker47cace92009-06-18 10:11:50 -0700885
886 struct stat st;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700887 if (stat(filename.c_str(), &st) < 0) {
888 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
889 filename.c_str(), strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700890 }
891
Tao Bao51d516e2016-11-03 14:49:01 -0700892 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
Doug Zongker47cace92009-06-18 10:11:50 -0700893 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
Tao Bao51d516e2016-11-03 14:49:01 -0700894 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
895 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
Doug Zongker47cace92009-06-18 10:11:50 -0700896 }
897
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700898 std::string buffer(st.st_size, '\0');
899 FILE* f = ota_fopen(filename.c_str(), "rb");
900 if (f == nullptr) {
901 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name,
902 filename.c_str(), strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700903 }
904
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700905 if (ota_fread(&buffer[0], 1, st.st_size, f) != static_cast<size_t>(st.st_size)) {
Tianjie Xu84478e82016-05-23 11:42:40 -0700906 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700907 name, static_cast<size_t>(st.st_size), filename.c_str());
Jed Estepa7b9a462015-12-15 16:04:53 -0800908 ota_fclose(f);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700909 return nullptr;
Doug Zongker47cace92009-06-18 10:11:50 -0700910 }
Doug Zongker47cace92009-06-18 10:11:50 -0700911
Jed Estepa7b9a462015-12-15 16:04:53 -0800912 ota_fclose(f);
Doug Zongker47cace92009-06-18 10:11:50 -0700913
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700914 std::vector<std::string> lines = android::base::Split(buffer, "\n");
915 for (size_t i = 0; i < lines.size(); i++) {
916 std::string line = android::base::Trim(lines[i]);
Doug Zongker47cace92009-06-18 10:11:50 -0700917
918 // comment or blank line: skip to next line
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700919 if (line.empty() || line[0] == '#') {
920 continue;
921 }
922 size_t equal_pos = line.find('=');
923 if (equal_pos == std::string::npos) {
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700924 continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700925 }
926
927 // trim whitespace between key and '='
Tao Bao51d516e2016-11-03 14:49:01 -0700928 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700929
930 // not the key we're looking for
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700931 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700932
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700933 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
934 }
Doug Zongker47cace92009-06-18 10:11:50 -0700935
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700936 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700937}
938
Doug Zongker8edb00c2009-06-11 17:21:44 -0700939// apply_patch_space(bytes)
Doug Zongkerc4351c72010-02-22 14:46:32 -0800940Value* ApplyPatchSpaceFn(const char* name, State* state,
941 int argc, Expr* argv[]) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700942 std::vector<std::string> args;
943 if (!ReadArgs(state, 1, argv, &args)) {
944 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800945 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700946 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800947
Tao Baob15fd222015-09-24 11:10:51 -0700948 size_t bytes;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700949 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
950 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
951 name, bytes_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800952 }
953
Tianjie Xuaced5d92016-10-12 10:55:04 -0700954 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800955}
956
Doug Zongker52b40362014-02-10 15:30:30 -0800957// apply_patch(file, size, init_sha1, tgt_sha1, patch)
958
Doug Zongker512536a2010-02-17 16:11:44 -0800959Value* ApplyPatchFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800960 if (argc < 6 || (argc % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700961 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700962 "even number, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700963 }
964
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700965 std::vector<std::string> args;
966 if (!ReadArgs(state, 4, argv, &args)) {
967 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700968 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700969 const std::string& source_filename = args[0];
970 const std::string& target_filename = args[1];
971 const std::string& target_sha1 = args[2];
972 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700973
Tao Baob15fd222015-09-24 11:10:51 -0700974 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700975 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
976 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
977 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800978 }
979
980 int patchcount = (argc-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700981 std::vector<std::unique_ptr<Value>> arg_values;
982 if (!ReadValueArgs(state, argc-4, argv+4, &arg_values)) {
Yabin Cui64be2132016-02-03 18:16:02 -0800983 return nullptr;
984 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700985
Yabin Cui64be2132016-02-03 18:16:02 -0800986 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700987 if (arg_values[i * 2]->type != VAL_STRING) {
988 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
989 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800990 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700991 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
992 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
993 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800994 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700995 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700996
Tianjie Xuaced5d92016-10-12 10:55:04 -0700997 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700998 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800999 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001000 patch_sha_str.push_back(arg_values[i * 2]->data);
1001 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -07001002 }
Doug Zongkerc4351c72010-02-22 14:46:32 -08001003
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001004 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
1005 target_sha1.c_str(), target_size,
1006 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001007
Tianjie Xuaced5d92016-10-12 10:55:04 -07001008 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -08001009}
1010
1011// apply_patch_check(file, [sha1_1, ...])
1012Value* ApplyPatchCheckFn(const char* name, State* state,
1013 int argc, Expr* argv[]) {
1014 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001015 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %d",
Doug Zongkerc4351c72010-02-22 14:46:32 -08001016 name, argc);
1017 }
1018
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001019 std::vector<std::string> args;
1020 if (!ReadArgs(state, 1, argv, &args)) {
1021 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001022 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001023 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -08001024
Tianjie Xuaced5d92016-10-12 10:55:04 -07001025 std::vector<std::string> sha1s;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001026 if (!ReadArgs(state, argc - 1, argv + 1, &sha1s)) {
1027 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001028 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001029 int result = applypatch_check(filename.c_str(), sha1s);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001030
1031 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -07001032}
1033
Tao Bao1107d962015-09-09 17:16:55 -07001034// This is the updater side handler for ui_print() in edify script. Contents
1035// will be sent over to the recovery side for on-screen display.
Doug Zongker512536a2010-02-17 16:11:44 -08001036Value* UIPrintFn(const char* name, State* state, int argc, Expr* argv[]) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001037 std::vector<std::string> args;
1038 if (!ReadArgs(state, argc, argv, &args)) {
1039 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001040 }
1041
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001042 std::string buffer = android::base::Join(args, "") + "\n";
Michael Runged4a63422014-10-22 19:48:41 -07001043 uiPrint(state, buffer);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001044 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001045}
1046
Doug Zongkerd0181b82011-10-19 10:51:12 -07001047Value* WipeCacheFn(const char* name, State* state, int argc, Expr* argv[]) {
1048 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001049 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001050 }
1051 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "wipe_cache\n");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001052 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -07001053}
1054
Doug Zongker512536a2010-02-17 16:11:44 -08001055Value* RunProgramFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001056 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001057 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001058 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001059
1060 std::vector<std::string> args;
1061 if (!ReadArgs(state, argc, argv, &args)) {
1062 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001063 }
1064
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001065 char* args2[argc+1];
1066 for (int i = 0; i < argc; i++) {
1067 args2[i] = &args[i][0];
1068 }
1069 args2[argc] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001070
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001071 printf("about to run program [%s] with %d args\n", args2[0], argc);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001072
1073 pid_t child = fork();
1074 if (child == 0) {
1075 execv(args2[0], args2);
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001076 printf("run_program: execv failed: %s\n", strerror(errno));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001077 _exit(1);
1078 }
1079 int status;
1080 waitpid(child, &status, 0);
1081 if (WIFEXITED(status)) {
1082 if (WEXITSTATUS(status) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001083 printf("run_program: child exited with status %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001084 WEXITSTATUS(status));
1085 }
1086 } else if (WIFSIGNALED(status)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001087 printf("run_program: child terminated by signal %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001088 WTERMSIG(status));
1089 }
1090
Tianjie Xuaced5d92016-10-12 10:55:04 -07001091 return StringValue(android::base::StringPrintf("%d", status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001092}
1093
Doug Zongker512536a2010-02-17 16:11:44 -08001094// sha1_check(data)
1095// to return the sha1 of the data (given in the format returned by
1096// read_file).
1097//
1098// sha1_check(data, sha1_hex, [sha1_hex, ...])
1099// returns the sha1 of the file if it matches any of the hex
1100// strings passed, or "" if it does not equal any of them.
1101//
1102Value* Sha1CheckFn(const char* name, State* state, int argc, Expr* argv[]) {
1103 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001104 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongker512536a2010-02-17 16:11:44 -08001105 }
1106
Tianjie Xuaced5d92016-10-12 10:55:04 -07001107 std::vector<std::unique_ptr<Value>> args;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001108 if (!ReadValueArgs(state, argc, argv, &args)) {
1109 return nullptr;
Doug Zongker512536a2010-02-17 16:11:44 -08001110 }
1111
Tianjie Xuaced5d92016-10-12 10:55:04 -07001112 if (args[0]->type == VAL_INVALID) {
1113 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -08001114 }
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001115 uint8_t digest[SHA_DIGEST_LENGTH];
Tianjie Xuaced5d92016-10-12 10:55:04 -07001116 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
Doug Zongker512536a2010-02-17 16:11:44 -08001117
1118 if (argc == 1) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001119 return StringValue(print_sha1(digest));
Doug Zongker512536a2010-02-17 16:11:44 -08001120 }
1121
Tao Bao361342c2016-02-08 11:15:50 -08001122 for (int i = 1; i < argc; ++i) {
1123 uint8_t arg_digest[SHA_DIGEST_LENGTH];
Doug Zongker512536a2010-02-17 16:11:44 -08001124 if (args[i]->type != VAL_STRING) {
Tao Bao361342c2016-02-08 11:15:50 -08001125 printf("%s(): arg %d is not a string; skipping", name, i);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001126 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
Doug Zongker512536a2010-02-17 16:11:44 -08001127 // Warn about bad args and skip them.
Tianjie Xuaced5d92016-10-12 10:55:04 -07001128 printf("%s(): error parsing \"%s\" as sha-1; skipping", name, args[i]->data.c_str());
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001129 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
Tao Bao361342c2016-02-08 11:15:50 -08001130 // Found a match.
1131 return args[i].release();
Doug Zongker512536a2010-02-17 16:11:44 -08001132 }
Doug Zongker512536a2010-02-17 16:11:44 -08001133 }
Tao Bao361342c2016-02-08 11:15:50 -08001134
1135 // Didn't match any of the hex strings; return false.
Tianjie Xuaced5d92016-10-12 10:55:04 -07001136 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -08001137}
1138
Hristo Bojinovdb314d62010-08-02 10:29:49 -07001139// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -08001140// is actually a FileContents*).
1141Value* ReadFileFn(const char* name, State* state, int argc, Expr* argv[]) {
1142 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001143 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker512536a2010-02-17 16:11:44 -08001144 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001145
1146 std::vector<std::string> args;
1147 if (!ReadArgs(state, 1, argv, &args)) {
1148 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1149 }
1150 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -08001151
Tianjie Xuaced5d92016-10-12 10:55:04 -07001152 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -08001153
1154 FileContents fc;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001155 if (LoadFileContents(filename.c_str(), &fc) == 0) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001156 v->type = VAL_BLOB;
1157 v->data = std::string(fc.data.begin(), fc.data.end());
Doug Zongker512536a2010-02-17 16:11:44 -08001158 }
Doug Zongker512536a2010-02-17 16:11:44 -08001159 return v;
1160}
Doug Zongker8edb00c2009-06-11 17:21:44 -07001161
Tao Baod0f30882016-11-03 23:52:01 -07001162// write_value(value, filename)
1163// Writes 'value' to 'filename'.
1164// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
1165Value* WriteValueFn(const char* name, State* state, int argc, Expr* argv[]) {
1166 if (argc != 2) {
1167 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
1168 }
1169
1170 std::vector<std::string> args;
1171 if (!ReadArgs(state, 2, argv, &args)) {
1172 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
1173 }
1174
1175 const std::string& filename = args[1];
1176 if (filename.empty()) {
1177 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
1178 }
1179
1180 const std::string& value = args[0];
1181 if (!android::base::WriteStringToFile(value, filename)) {
1182 printf("%s: Failed to write to \"%s\": %s\n", name, filename.c_str(), strerror(errno));
1183 return StringValue("");
1184 } else {
1185 return StringValue("t");
1186 }
1187}
1188
Doug Zongkerc87bab12013-11-25 13:53:25 -08001189// Immediately reboot the device. Recovery is not finished normally,
1190// so if you reboot into recovery it will re-start applying the
1191// current package (because nothing has cleared the copy of the
1192// arguments stored in the BCB).
1193//
1194// The argument is the partition name passed to the android reboot
1195// property. It can be "recovery" to boot from the recovery
1196// partition, or "" (empty string) to boot from the regular boot
1197// partition.
1198Value* RebootNowFn(const char* name, State* state, int argc, Expr* argv[]) {
1199 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001200 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001201 }
1202
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001203 std::vector<std::string> args;
1204 if (!ReadArgs(state, 2, argv, &args)) {
1205 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1206 }
1207 const std::string& filename = args[0];
1208 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001209
Doug Zongkerc87bab12013-11-25 13:53:25 -08001210 // zero out the 'command' field of the bootloader message.
Elliott Hughescb220402016-09-23 15:30:55 -07001211 char buffer[80];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001212 memset(buffer, 0, sizeof(((struct bootloader_message*)0)->command));
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001213 FILE* f = ota_fopen(filename.c_str(), "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001214 fseek(f, offsetof(struct bootloader_message, command), SEEK_SET);
Jed Estepa7b9a462015-12-15 16:04:53 -08001215 ota_fwrite(buffer, sizeof(((struct bootloader_message*)0)->command), 1, f);
1216 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001217
Elliott Hughescb220402016-09-23 15:30:55 -07001218 std::string reboot_cmd = "reboot,";
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001219 reboot_cmd += property;
Elliott Hughescb220402016-09-23 15:30:55 -07001220 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001221
1222 sleep(5);
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001223 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001224}
1225
1226// Store a string value somewhere that future invocations of recovery
1227// can access it. This value is called the "stage" and can be used to
1228// drive packages that need to do reboots in the middle of
1229// installation and keep track of where they are in the multi-stage
1230// install.
1231//
1232// The first argument is the block device for the misc partition
1233// ("/misc" in the fstab), which is where this value is stored. The
1234// second argument is the string to store; it should not exceed 31
1235// bytes.
1236Value* SetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
1237 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001238 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001239 }
1240
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001241 std::vector<std::string> args;
1242 if (!ReadArgs(state, 2, argv, &args)) {
1243 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1244 }
1245 const std::string& filename = args[0];
1246 std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001247
1248 // Store this value in the misc partition, immediately after the
1249 // bootloader message that the main recovery uses to save its
1250 // arguments in case of the device restarting midway through
1251 // package installation.
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001252 FILE* f = ota_fopen(filename.c_str(), "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001253 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001254 size_t to_write = stagestr.size();
Tianjie Xuaced5d92016-10-12 10:55:04 -07001255 size_t max_size = sizeof(((struct bootloader_message*)0)->stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001256 if (to_write > max_size) {
1257 to_write = max_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001258 stagestr = stagestr.substr(0, max_size-1);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001259 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001260 size_t status = ota_fwrite(stagestr.c_str(), to_write, 1, f);
Jed Estepa7b9a462015-12-15 16:04:53 -08001261 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001262
Tianjie Xuaced5d92016-10-12 10:55:04 -07001263 if (status != to_write) {
1264 return StringValue("");
1265 }
Doug Zongkerc87bab12013-11-25 13:53:25 -08001266 return StringValue(filename);
1267}
1268
1269// Return the value most recently saved with SetStageFn. The argument
1270// is the block device for the misc partition.
1271Value* GetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001272 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001273 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001274 }
1275
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001276 std::vector<std::string> args;
1277 if (!ReadArgs(state, 1, argv, &args)) {
1278 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1279 }
1280 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001281
1282 char buffer[sizeof(((struct bootloader_message*)0)->stage)];
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001283 FILE* f = ota_fopen(filename.c_str(), "rb");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001284 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001285 size_t status = ota_fread(buffer, sizeof(buffer), 1, f);
Jed Estepa7b9a462015-12-15 16:04:53 -08001286 ota_fclose(f);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001287 if (status != sizeof(buffer)) {
1288 return StringValue("");
1289 }
Doug Zongkerc87bab12013-11-25 13:53:25 -08001290
Tianjie Xuaced5d92016-10-12 10:55:04 -07001291 buffer[sizeof(buffer)-1] = '\0';
1292 return StringValue(buffer);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001293}
1294
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001295Value* WipeBlockDeviceFn(const char* name, State* state, int argc, Expr* argv[]) {
1296 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001297 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001298 }
1299
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001300 std::vector<std::string> args;
1301 if (!ReadArgs(state, 2, argv, &args)) {
1302 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1303 }
1304 const std::string& filename = args[0];
1305 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001306
Tao Baob15fd222015-09-24 11:10:51 -07001307 size_t len;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001308 if (!android::base::ParseUint(len_str.c_str(), &len)) {
1309 return nullptr;
1310 }
1311 int fd = ota_open(filename.c_str(), O_WRONLY, 0644);
1312 // The wipe_block_device function in ext4_utils returns 0 on success and 1
1313 // for failure.
1314 int status = wipe_block_device(fd, len);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001315
Jed Estepa7b9a462015-12-15 16:04:53 -08001316 ota_close(fd);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001317
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001318 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001319}
1320
Doug Zongkerc704e062014-05-23 08:40:35 -07001321Value* EnableRebootFn(const char* name, State* state, int argc, Expr* argv[]) {
1322 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001323 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerc704e062014-05-23 08:40:35 -07001324 }
1325 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
1326 fprintf(ui->cmd_pipe, "enable_reboot\n");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001327 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -07001328}
1329
Michael Rungeacf47db2014-11-21 00:12:28 -08001330Value* Tune2FsFn(const char* name, State* state, int argc, Expr* argv[]) {
1331 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001332 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %d", name, argc);
Michael Rungeacf47db2014-11-21 00:12:28 -08001333 }
1334
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001335 std::vector<std::string> args;
1336 if (!ReadArgs(state, argc, argv, &args)) {
Tianjie Xu16255832016-04-30 11:49:59 -07001337 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
Michael Rungeacf47db2014-11-21 00:12:28 -08001338 }
1339
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001340 char* args2[argc+1];
Michael Rungeacf47db2014-11-21 00:12:28 -08001341 // Tune2fs expects the program name as its args[0]
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001342 args2[0] = const_cast<char*>(name);
1343 if (args2[0] == nullptr) {
1344 return nullptr;
Michael Rungeacf47db2014-11-21 00:12:28 -08001345 }
Tao Baoba9a42a2015-06-23 23:23:33 -07001346 for (int i = 0; i < argc; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001347 args2[i + 1] = &args[i][0];
Michael Rungeacf47db2014-11-21 00:12:28 -08001348 }
Michael Rungeacf47db2014-11-21 00:12:28 -08001349
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001350 // tune2fs changes the file system parameters on an ext2 file system; it
1351 // returns 0 on success.
1352 int result = tune2fs_main(argc + 1, args2);
1353
Michael Rungeacf47db2014-11-21 00:12:28 -08001354 if (result != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001355 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
Michael Rungeacf47db2014-11-21 00:12:28 -08001356 }
Tianjie Xuaced5d92016-10-12 10:55:04 -07001357 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -08001358}
1359
Doug Zongker9931f7f2009-06-10 14:11:53 -07001360void RegisterInstallFunctions() {
1361 RegisterFunction("mount", MountFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001362 RegisterFunction("is_mounted", IsMountedFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001363 RegisterFunction("unmount", UnmountFn);
1364 RegisterFunction("format", FormatFn);
1365 RegisterFunction("show_progress", ShowProgressFn);
Doug Zongkerfbf3c102009-06-24 09:36:20 -07001366 RegisterFunction("set_progress", SetProgressFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001367 RegisterFunction("delete", DeleteFn);
1368 RegisterFunction("delete_recursive", DeleteFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001369 RegisterFunction("package_extract_dir", PackageExtractDirFn);
1370 RegisterFunction("package_extract_file", PackageExtractFileFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001371 RegisterFunction("symlink", SymlinkFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001372
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001373 // Usage:
1374 // set_metadata("filename", "key1", "value1", "key2", "value2", ...)
1375 // Example:
1376 // set_metadata("/system/bin/netcfg", "uid", 0, "gid", 3003, "mode", 02750, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1377 RegisterFunction("set_metadata", SetMetadataFn);
1378
1379 // Usage:
1380 // set_metadata_recursive("dirname", "key1", "value1", "key2", "value2", ...)
1381 // Example:
1382 // set_metadata_recursive("/system", "uid", 0, "gid", 0, "fmode", 0644, "dmode", 0755, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1383 RegisterFunction("set_metadata_recursive", SetMetadataFn);
1384
Doug Zongker8edb00c2009-06-11 17:21:44 -07001385 RegisterFunction("getprop", GetPropFn);
Doug Zongker47cace92009-06-18 10:11:50 -07001386 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001387
1388 RegisterFunction("apply_patch", ApplyPatchFn);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001389 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1390 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001391
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001392 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001393
Doug Zongker512536a2010-02-17 16:11:44 -08001394 RegisterFunction("read_file", ReadFileFn);
1395 RegisterFunction("sha1_check", Sha1CheckFn);
Michael Rungece7ca712013-11-06 17:42:20 -08001396 RegisterFunction("rename", RenameFn);
Tao Baod0f30882016-11-03 23:52:01 -07001397 RegisterFunction("write_value", WriteValueFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001398
Doug Zongkerd0181b82011-10-19 10:51:12 -07001399 RegisterFunction("wipe_cache", WipeCacheFn);
1400
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001401 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001402
1403 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001404
1405 RegisterFunction("reboot_now", RebootNowFn);
1406 RegisterFunction("get_stage", GetStageFn);
1407 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001408
1409 RegisterFunction("enable_reboot", EnableRebootFn);
Michael Rungeacf47db2014-11-21 00:12:28 -08001410 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001411}