blob: dc27561411ddab864dd5db2fe68a7c53714fb1ec [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
Doug Zongkerfbf3c102009-06-24 09:36:20 -070017#include <ctype.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070018#include <errno.h>
19#include <stdarg.h>
Doug Zongkerfbf3c102009-06-24 09:36:20 -070020#include <stdio.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070021#include <stdlib.h>
22#include <string.h>
23#include <sys/mount.h>
24#include <sys/stat.h>
25#include <sys/types.h>
Doug Zongkera3f89ea2009-09-10 14:10:48 -070026#include <sys/wait.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070027#include <unistd.h>
Hristo Bojinovdb314d62010-08-02 10:29:49 -070028#include <fcntl.h>
29#include <time.h>
Nick Kralevich5dbdef02013-09-07 14:41:06 -070030#include <ftw.h>
31#include <sys/capability.h>
32#include <sys/xattr.h>
33#include <linux/xattr.h>
34#include <inttypes.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070035
Yabin Cui64be2132016-02-03 18:16:02 -080036#include <memory>
37#include <vector>
38
Elliott Hughes4b166f02015-12-04 15:30:20 -080039#include <android-base/parseint.h>
40#include <android-base/strings.h>
41#include <android-base/stringprintf.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070042#include <selinux/label.h>
43#include <selinux/selinux.h>
Tao Bao1107d962015-09-09 17:16:55 -070044
Doug Zongkerc87bab12013-11-25 13:53:25 -080045#include "bootloader.h"
46#include "applypatch/applypatch.h"
47#include "cutils/android_reboot.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070048#include "cutils/misc.h"
49#include "cutils/properties.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070050#include "edify/expr.h"
Tianjie Xu16255832016-04-30 11:49:59 -070051#include "error_code.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070052#include "minzip/DirUtil.h"
53#include "mtdutils/mounts.h"
54#include "mtdutils/mtdutils.h"
Tianjie Xu16255832016-04-30 11:49:59 -070055#include "openssl/sha.h"
Jed Estep39c1b5e2015-12-15 16:04:53 -080056#include "ota_io.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070057#include "updater.h"
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -080058#include "install.h"
Michael Rungeacf47db2014-11-21 00:12:28 -080059#include "tune2fs.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070060
Doug Zongker3d177d02010-07-01 09:18:44 -070061#ifdef USE_EXT4
62#include "make_ext4fs.h"
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -080063#include "wipe.h"
Doug Zongker3d177d02010-07-01 09:18:44 -070064#endif
65
Tao Bao1107d962015-09-09 17:16:55 -070066// Send over the buffer to recovery though the command pipe.
67static void uiPrint(State* state, const std::string& buffer) {
68 UpdaterInfo* ui = reinterpret_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070069
Tao Bao1107d962015-09-09 17:16:55 -070070 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
71 // So skip sending empty strings to UI.
72 std::vector<std::string> lines = android::base::Split(buffer, "\n");
73 for (auto& line: lines) {
74 if (!line.empty()) {
75 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
76 fprintf(ui->cmd_pipe, "ui_print\n");
77 }
78 }
79
80 // On the updater side, we need to dump the contents to stderr (which has
81 // been redirected to the log file). Because the recovery will only print
82 // the contents to screen when processing pipe command ui_print.
83 fprintf(stderr, "%s", buffer.c_str());
Michael Runged4a63422014-10-22 19:48:41 -070084}
85
86__attribute__((__format__(printf, 2, 3))) __nonnull((2))
87void uiPrintf(State* state, const char* format, ...) {
Tao Bao1107d962015-09-09 17:16:55 -070088 std::string error_msg;
89
Michael Runged4a63422014-10-22 19:48:41 -070090 va_list ap;
91 va_start(ap, format);
Tao Bao1107d962015-09-09 17:16:55 -070092 android::base::StringAppendV(&error_msg, format, ap);
Michael Runged4a63422014-10-22 19:48:41 -070093 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -070094
Michael Runged4a63422014-10-22 19:48:41 -070095 uiPrint(state, error_msg);
96}
97
Doug Zongker52b40362014-02-10 15:30:30 -080098// Take a sha-1 digest and return it as a newly-allocated hex string.
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070099char* PrintSha1(const uint8_t* digest) {
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800100 char* buffer = reinterpret_cast<char*>(malloc(SHA_DIGEST_LENGTH*2 + 1));
Doug Zongker52b40362014-02-10 15:30:30 -0800101 const char* alphabet = "0123456789abcdef";
Tao Baoba9a42a2015-06-23 23:23:33 -0700102 size_t i;
Sen Jiangc48cb5e2016-02-04 16:23:21 +0800103 for (i = 0; i < SHA_DIGEST_LENGTH; ++i) {
Doug Zongker52b40362014-02-10 15:30:30 -0800104 buffer[i*2] = alphabet[(digest[i] >> 4) & 0xf];
105 buffer[i*2+1] = alphabet[digest[i] & 0xf];
106 }
107 buffer[i*2] = '\0';
108 return buffer;
109}
110
Doug Zongker3d177d02010-07-01 09:18:44 -0700111// mount(fs_type, partition_type, location, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700112//
Doug Zongker3d177d02010-07-01 09:18:44 -0700113// fs_type="yaffs2" partition_type="MTD" location=partition
114// fs_type="ext4" partition_type="EMMC" location=device
Doug Zongker512536a2010-02-17 16:11:44 -0800115Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700116 char* result = NULL;
Michael Runge168f7772014-10-22 17:05:08 -0700117 if (argc != 4 && argc != 5) {
Tianjie Xu16255832016-04-30 11:49:59 -0700118 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700119 }
Doug Zongker3d177d02010-07-01 09:18:44 -0700120 char* fs_type;
121 char* partition_type;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700122 char* location;
123 char* mount_point;
Michael Runge168f7772014-10-22 17:05:08 -0700124 char* mount_options;
125 bool has_mount_options;
126 if (argc == 5) {
127 has_mount_options = true;
128 if (ReadArgs(state, argv, 5, &fs_type, &partition_type,
129 &location, &mount_point, &mount_options) < 0) {
130 return NULL;
131 }
132 } else {
133 has_mount_options = false;
134 if (ReadArgs(state, argv, 4, &fs_type, &partition_type,
Doug Zongker3d177d02010-07-01 09:18:44 -0700135 &location, &mount_point) < 0) {
Michael Runge168f7772014-10-22 17:05:08 -0700136 return NULL;
137 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700138 }
139
Doug Zongker3d177d02010-07-01 09:18:44 -0700140 if (strlen(fs_type) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700141 ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
Doug Zongker3d177d02010-07-01 09:18:44 -0700142 goto done;
143 }
144 if (strlen(partition_type) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700145 ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
Doug Zongker3d177d02010-07-01 09:18:44 -0700146 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700147 goto done;
148 }
149 if (strlen(location) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700150 ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700151 goto done;
152 }
153 if (strlen(mount_point) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700154 ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
155 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700156 goto done;
157 }
158
Tao Baoba9a42a2015-06-23 23:23:33 -0700159 {
160 char *secontext = NULL;
Stephen Smalley779701d2012-02-09 14:13:23 -0500161
Tao Baoba9a42a2015-06-23 23:23:33 -0700162 if (sehandle) {
163 selabel_lookup(sehandle, &secontext, mount_point, 0755);
164 setfscreatecon(secontext);
165 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500166
Tao Baoba9a42a2015-06-23 23:23:33 -0700167 mkdir(mount_point, 0755);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700168
Tao Baoba9a42a2015-06-23 23:23:33 -0700169 if (secontext) {
170 freecon(secontext);
171 setfscreatecon(NULL);
172 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500173 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500174
Doug Zongker3d177d02010-07-01 09:18:44 -0700175 if (strcmp(partition_type, "MTD") == 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700176 mtd_scan_partitions();
177 const MtdPartition* mtd;
178 mtd = mtd_find_partition_by_name(location);
179 if (mtd == NULL) {
Tao Bao1107d962015-09-09 17:16:55 -0700180 uiPrintf(state, "%s: no mtd partition named \"%s\"\n",
Doug Zongker9931f7f2009-06-10 14:11:53 -0700181 name, location);
182 result = strdup("");
183 goto done;
184 }
Doug Zongker3d177d02010-07-01 09:18:44 -0700185 if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) {
Michael Runge5ddf4292014-10-24 14:14:41 -0700186 uiPrintf(state, "mtd mount of %s failed: %s\n",
Doug Zongker9931f7f2009-06-10 14:11:53 -0700187 location, strerror(errno));
188 result = strdup("");
189 goto done;
190 }
191 result = mount_point;
192 } else {
Doug Zongker3d177d02010-07-01 09:18:44 -0700193 if (mount(location, mount_point, fs_type,
Michael Runge168f7772014-10-22 17:05:08 -0700194 MS_NOATIME | MS_NODEV | MS_NODIRATIME,
195 has_mount_options ? mount_options : "") < 0) {
Michael Runge5ddf4292014-10-24 14:14:41 -0700196 uiPrintf(state, "%s: failed to mount %s at %s: %s\n",
Doug Zongker60babf82009-09-18 15:11:24 -0700197 name, location, mount_point, strerror(errno));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700198 result = strdup("");
199 } else {
200 result = mount_point;
201 }
202 }
203
204done:
Doug Zongker3d177d02010-07-01 09:18:44 -0700205 free(fs_type);
206 free(partition_type);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700207 free(location);
208 if (result != mount_point) free(mount_point);
Michael Runge168f7772014-10-22 17:05:08 -0700209 if (has_mount_options) free(mount_options);
Doug Zongker512536a2010-02-17 16:11:44 -0800210 return StringValue(result);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700211}
212
Doug Zongker8edb00c2009-06-11 17:21:44 -0700213
214// is_mounted(mount_point)
Doug Zongker512536a2010-02-17 16:11:44 -0800215Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700216 char* result = NULL;
217 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700218 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700219 }
220 char* mount_point;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700221 if (ReadArgs(state, argv, 1, &mount_point) < 0) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700222 return NULL;
223 }
224 if (strlen(mount_point) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700225 ErrorAbort(state, kArgsParsingFailure, "mount_point argument to unmount() can't be empty");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700226 goto done;
227 }
228
229 scan_mounted_volumes();
Tao Baoba9a42a2015-06-23 23:23:33 -0700230 {
231 const MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point);
232 if (vol == NULL) {
233 result = strdup("");
234 } else {
235 result = mount_point;
236 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700237 }
238
239done:
240 if (result != mount_point) free(mount_point);
Doug Zongker512536a2010-02-17 16:11:44 -0800241 return StringValue(result);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700242}
243
244
Doug Zongker512536a2010-02-17 16:11:44 -0800245Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700246 char* result = NULL;
247 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700248 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700249 }
250 char* mount_point;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700251 if (ReadArgs(state, argv, 1, &mount_point) < 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700252 return NULL;
253 }
254 if (strlen(mount_point) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700255 ErrorAbort(state, kArgsParsingFailure, "mount_point argument to unmount() can't be empty");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700256 goto done;
257 }
258
259 scan_mounted_volumes();
Tao Baoba9a42a2015-06-23 23:23:33 -0700260 {
261 const MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point);
262 if (vol == NULL) {
263 uiPrintf(state, "unmount of %s failed; no such volume\n", mount_point);
264 result = strdup("");
265 } else {
266 int ret = unmount_mounted_volume(vol);
267 if (ret != 0) {
268 uiPrintf(state, "unmount of %s failed (%d): %s\n",
269 mount_point, ret, strerror(errno));
270 }
271 result = mount_point;
Michael Runge5ddf4292014-10-24 14:14:41 -0700272 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700273 }
274
275done:
276 if (result != mount_point) free(mount_point);
Doug Zongker512536a2010-02-17 16:11:44 -0800277 return StringValue(result);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700278}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700279
JP Abgrall37aedb32014-06-16 19:07:39 -0700280static int exec_cmd(const char* path, char* const argv[]) {
281 int status;
282 pid_t child;
283 if ((child = vfork()) == 0) {
284 execv(path, argv);
285 _exit(-1);
286 }
287 waitpid(child, &status, 0);
288 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
289 printf("%s failed with status %d\n", path, WEXITSTATUS(status));
290 }
291 return WEXITSTATUS(status);
292}
293
Doug Zongker8edb00c2009-06-11 17:21:44 -0700294
Stephen Smalley779701d2012-02-09 14:13:23 -0500295// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700296//
Stephen Smalley779701d2012-02-09 14:13:23 -0500297// fs_type="yaffs2" partition_type="MTD" location=partition fs_size=<bytes> mount_point=<location>
298// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700299// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
300// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800301// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700302// 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 -0800303Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700304 char* result = NULL;
Stephen Smalley516e4e22012-04-03 13:35:11 -0400305 if (argc != 5) {
Tianjie Xu16255832016-04-30 11:49:59 -0700306 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700307 }
Doug Zongker3d177d02010-07-01 09:18:44 -0700308 char* fs_type;
309 char* partition_type;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700310 char* location;
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800311 char* fs_size;
Stephen Smalley516e4e22012-04-03 13:35:11 -0400312 char* mount_point;
Stephen Smalley779701d2012-02-09 14:13:23 -0500313
Stephen Smalley779701d2012-02-09 14:13:23 -0500314 if (ReadArgs(state, argv, 5, &fs_type, &partition_type, &location, &fs_size, &mount_point) < 0) {
315 return NULL;
316 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700317
Doug Zongker3d177d02010-07-01 09:18:44 -0700318 if (strlen(fs_type) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700319 ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
Doug Zongker3d177d02010-07-01 09:18:44 -0700320 goto done;
321 }
322 if (strlen(partition_type) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700323 ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
Doug Zongker3d177d02010-07-01 09:18:44 -0700324 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700325 goto done;
326 }
327 if (strlen(location) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700328 ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700329 goto done;
330 }
331
Stephen Smalley516e4e22012-04-03 13:35:11 -0400332 if (strlen(mount_point) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700333 ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
334 name);
Stephen Smalley779701d2012-02-09 14:13:23 -0500335 goto done;
336 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500337
Doug Zongker3d177d02010-07-01 09:18:44 -0700338 if (strcmp(partition_type, "MTD") == 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700339 mtd_scan_partitions();
340 const MtdPartition* mtd = mtd_find_partition_by_name(location);
341 if (mtd == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700342 printf("%s: no mtd partition named \"%s\"",
Doug Zongker9931f7f2009-06-10 14:11:53 -0700343 name, location);
344 result = strdup("");
345 goto done;
346 }
347 MtdWriteContext* ctx = mtd_write_partition(mtd);
348 if (ctx == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700349 printf("%s: can't write \"%s\"", name, location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700350 result = strdup("");
351 goto done;
352 }
353 if (mtd_erase_blocks(ctx, -1) == -1) {
354 mtd_write_close(ctx);
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700355 printf("%s: failed to erase \"%s\"", name, location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700356 result = strdup("");
357 goto done;
358 }
359 if (mtd_write_close(ctx) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700360 printf("%s: failed to close \"%s\"", name, location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700361 result = strdup("");
362 goto done;
363 }
364 result = location;
Doug Zongker3d177d02010-07-01 09:18:44 -0700365#ifdef USE_EXT4
366 } else if (strcmp(fs_type, "ext4") == 0) {
Stephen Smalley779701d2012-02-09 14:13:23 -0500367 int status = make_ext4fs(location, atoll(fs_size), mount_point, sehandle);
Doug Zongker3d177d02010-07-01 09:18:44 -0700368 if (status != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700369 printf("%s: make_ext4fs failed (%d) on %s",
Doug Zongker3d177d02010-07-01 09:18:44 -0700370 name, status, location);
371 result = strdup("");
372 goto done;
373 }
374 result = location;
JP Abgrall37aedb32014-06-16 19:07:39 -0700375 } else if (strcmp(fs_type, "f2fs") == 0) {
376 char *num_sectors;
377 if (asprintf(&num_sectors, "%lld", atoll(fs_size) / 512) <= 0) {
378 printf("format_volume: failed to create %s command for %s\n", fs_type, location);
379 result = strdup("");
380 goto done;
381 }
382 const char *f2fs_path = "/sbin/mkfs.f2fs";
383 const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", location, num_sectors, NULL};
384 int status = exec_cmd(f2fs_path, (char* const*)f2fs_argv);
385 free(num_sectors);
386 if (status != 0) {
387 printf("%s: mkfs.f2fs failed (%d) on %s",
388 name, status, location);
389 result = strdup("");
390 goto done;
391 }
392 result = location;
Doug Zongker3d177d02010-07-01 09:18:44 -0700393#endif
Doug Zongker9931f7f2009-06-10 14:11:53 -0700394 } else {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700395 printf("%s: unsupported fs_type \"%s\" partition_type \"%s\"",
Doug Zongker3d177d02010-07-01 09:18:44 -0700396 name, fs_type, partition_type);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700397 }
398
399done:
Doug Zongker3d177d02010-07-01 09:18:44 -0700400 free(fs_type);
401 free(partition_type);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700402 if (result != location) free(location);
Doug Zongker512536a2010-02-17 16:11:44 -0800403 return StringValue(result);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700404}
405
Michael Rungece7ca712013-11-06 17:42:20 -0800406Value* RenameFn(const char* name, State* state, int argc, Expr* argv[]) {
407 char* result = NULL;
408 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700409 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Michael Rungece7ca712013-11-06 17:42:20 -0800410 }
411
412 char* src_name;
413 char* dst_name;
414
415 if (ReadArgs(state, argv, 2, &src_name, &dst_name) < 0) {
416 return NULL;
417 }
418 if (strlen(src_name) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700419 ErrorAbort(state, kArgsParsingFailure, "src_name argument to %s() can't be empty", name);
Michael Rungece7ca712013-11-06 17:42:20 -0800420 goto done;
421 }
422 if (strlen(dst_name) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700423 ErrorAbort(state, kArgsParsingFailure, "dst_name argument to %s() can't be empty", name);
Michael Rungece7ca712013-11-06 17:42:20 -0800424 goto done;
425 }
Michael Rungea91ecc52014-07-21 17:40:02 -0700426 if (make_parents(dst_name) != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700427 ErrorAbort(state, kFileRenameFailure, "Creating parent of %s failed, error %s",
Michael Rungea91ecc52014-07-21 17:40:02 -0700428 dst_name, strerror(errno));
Michael Runge2f0ef732014-10-22 14:28:23 -0700429 } else if (access(dst_name, F_OK) == 0 && access(src_name, F_OK) != 0) {
430 // File was already moved
431 result = dst_name;
Michael Rungea91ecc52014-07-21 17:40:02 -0700432 } else if (rename(src_name, dst_name) != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700433 ErrorAbort(state, kFileRenameFailure, "Rename of %s to %s failed, error %s",
Michael Rungece7ca712013-11-06 17:42:20 -0800434 src_name, dst_name, strerror(errno));
435 } else {
436 result = dst_name;
437 }
438
439done:
440 free(src_name);
441 if (result != dst_name) free(dst_name);
442 return StringValue(result);
443}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700444
Doug Zongker512536a2010-02-17 16:11:44 -0800445Value* DeleteFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700446 char** paths = reinterpret_cast<char**>(malloc(argc * sizeof(char*)));
447 for (int i = 0; i < argc; ++i) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700448 paths[i] = Evaluate(state, argv[i]);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700449 if (paths[i] == NULL) {
Yabin Cui64be2132016-02-03 18:16:02 -0800450 for (int j = 0; j < i; ++j) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700451 free(paths[j]);
452 }
453 free(paths);
454 return NULL;
455 }
456 }
457
458 bool recursive = (strcmp(name, "delete_recursive") == 0);
459
460 int success = 0;
Tao Baoba9a42a2015-06-23 23:23:33 -0700461 for (int i = 0; i < argc; ++i) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700462 if ((recursive ? dirUnlinkHierarchy(paths[i]) : unlink(paths[i])) == 0)
463 ++success;
464 free(paths[i]);
465 }
466 free(paths);
467
468 char buffer[10];
469 sprintf(buffer, "%d", success);
Doug Zongker512536a2010-02-17 16:11:44 -0800470 return StringValue(strdup(buffer));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700471}
472
Doug Zongker8edb00c2009-06-11 17:21:44 -0700473
Doug Zongker512536a2010-02-17 16:11:44 -0800474Value* ShowProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700475 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700476 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700477 }
478 char* frac_str;
479 char* sec_str;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700480 if (ReadArgs(state, argv, 2, &frac_str, &sec_str) < 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700481 return NULL;
482 }
483
484 double frac = strtod(frac_str, NULL);
Tao Baob15fd222015-09-24 11:10:51 -0700485 int sec;
486 android::base::ParseInt(sec_str, &sec);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700487
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700488 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700489 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
490
Doug Zongker9931f7f2009-06-10 14:11:53 -0700491 free(sec_str);
Doug Zongker512536a2010-02-17 16:11:44 -0800492 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700493}
494
Doug Zongker512536a2010-02-17 16:11:44 -0800495Value* SetProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700496 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700497 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700498 }
499 char* frac_str;
500 if (ReadArgs(state, argv, 1, &frac_str) < 0) {
501 return NULL;
502 }
503
504 double frac = strtod(frac_str, NULL);
505
506 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
507 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
508
Doug Zongker512536a2010-02-17 16:11:44 -0800509 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700510}
511
Doug Zongker8edb00c2009-06-11 17:21:44 -0700512// package_extract_dir(package_path, destination_path)
Doug Zongker512536a2010-02-17 16:11:44 -0800513Value* PackageExtractDirFn(const char* name, State* state,
Doug Zongker8edb00c2009-06-11 17:21:44 -0700514 int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700515 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700516 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700517 }
518 char* zip_path;
519 char* dest_path;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700520 if (ReadArgs(state, argv, 2, &zip_path, &dest_path) < 0) return NULL;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700521
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700522 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700523
524 // To create a consistent system image, never use the clock for timestamps.
525 struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default
526
527 bool success = mzExtractRecursive(za, zip_path, dest_path,
Narayan Kamath9c0f5d62015-02-23 14:09:31 +0000528 &timestamp,
Stephen Smalley779701d2012-02-09 14:13:23 -0500529 NULL, NULL, sehandle);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700530 free(zip_path);
531 free(dest_path);
Doug Zongker512536a2010-02-17 16:11:44 -0800532 return StringValue(strdup(success ? "t" : ""));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700533}
534
Doug Zongker8edb00c2009-06-11 17:21:44 -0700535
536// package_extract_file(package_path, destination_path)
Doug Zongker6aece332010-02-01 14:40:12 -0800537// or
538// package_extract_file(package_path)
539// to return the entire contents of the file as the result of this
Doug Zongker512536a2010-02-17 16:11:44 -0800540// function (the char* returned is actually a FileContents*).
541Value* PackageExtractFileFn(const char* name, State* state,
Doug Zongker8edb00c2009-06-11 17:21:44 -0700542 int argc, Expr* argv[]) {
Doug Zongker5f875bf2014-08-22 14:53:43 -0700543 if (argc < 1 || argc > 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700544 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %d",
Doug Zongker6aece332010-02-01 14:40:12 -0800545 name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700546 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700547 bool success = false;
Doug Zongker43772d22014-06-09 14:13:19 -0700548
Doug Zongker5f875bf2014-08-22 14:53:43 -0700549 if (argc == 2) {
550 // The two-argument version extracts to a file.
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800551
552 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
Doug Zongker8edb00c2009-06-11 17:21:44 -0700553
Doug Zongker6aece332010-02-01 14:40:12 -0800554 char* zip_path;
555 char* dest_path;
Doug Zongker5f875bf2014-08-22 14:53:43 -0700556 if (ReadArgs(state, argv, 2, &zip_path, &dest_path) < 0) return NULL;
Doug Zongker6aece332010-02-01 14:40:12 -0800557
Doug Zongker6aece332010-02-01 14:40:12 -0800558 const ZipEntry* entry = mzFindZipEntry(za, zip_path);
559 if (entry == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700560 printf("%s: no %s in package\n", name, zip_path);
Doug Zongker6aece332010-02-01 14:40:12 -0800561 goto done2;
562 }
563
Tao Baoba9a42a2015-06-23 23:23:33 -0700564 {
Alistair Strachan733285f2016-05-05 16:04:32 -0700565 int fd = TEMP_FAILURE_RETRY(ota_open(dest_path, O_WRONLY | O_CREAT | O_TRUNC,
Tao Baod3cac342015-12-14 15:53:25 -0800566 S_IRUSR | S_IWUSR));
567 if (fd == -1) {
568 printf("%s: can't open %s for write: %s\n", name, dest_path, strerror(errno));
Tao Baoba9a42a2015-06-23 23:23:33 -0700569 goto done2;
570 }
Tao Baod3cac342015-12-14 15:53:25 -0800571 success = mzExtractZipEntryToFile(za, entry, fd);
Jed Estepa7b9a462015-12-15 16:04:53 -0800572 if (ota_fsync(fd) == -1) {
Tao Baod3cac342015-12-14 15:53:25 -0800573 printf("fsync of \"%s\" failed: %s\n", dest_path, strerror(errno));
574 success = false;
575 }
Jed Estepa7b9a462015-12-15 16:04:53 -0800576 if (ota_close(fd) == -1) {
Tao Baod3cac342015-12-14 15:53:25 -0800577 printf("close of \"%s\" failed: %s\n", dest_path, strerror(errno));
578 success = false;
579 }
Doug Zongker6aece332010-02-01 14:40:12 -0800580 }
Doug Zongker6aece332010-02-01 14:40:12 -0800581
582 done2:
583 free(zip_path);
584 free(dest_path);
Doug Zongker512536a2010-02-17 16:11:44 -0800585 return StringValue(strdup(success ? "t" : ""));
Doug Zongker6aece332010-02-01 14:40:12 -0800586 } else {
587 // The one-argument version returns the contents of the file
588 // as the result.
589
590 char* zip_path;
Yabin Cui64be2132016-02-03 18:16:02 -0800591 if (ReadArgs(state, argv, 1, &zip_path) < 0) return NULL;
592
Tao Baoba9a42a2015-06-23 23:23:33 -0700593 Value* v = reinterpret_cast<Value*>(malloc(sizeof(Value)));
Doug Zongker512536a2010-02-17 16:11:44 -0800594 v->type = VAL_BLOB;
595 v->size = -1;
596 v->data = NULL;
Doug Zongker6aece332010-02-01 14:40:12 -0800597
Doug Zongker6aece332010-02-01 14:40:12 -0800598 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
599 const ZipEntry* entry = mzFindZipEntry(za, zip_path);
600 if (entry == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700601 printf("%s: no %s in package\n", name, zip_path);
Doug Zongker6aece332010-02-01 14:40:12 -0800602 goto done1;
603 }
604
Doug Zongker512536a2010-02-17 16:11:44 -0800605 v->size = mzGetZipEntryUncompLen(entry);
Tao Baoba9a42a2015-06-23 23:23:33 -0700606 v->data = reinterpret_cast<char*>(malloc(v->size));
Doug Zongker512536a2010-02-17 16:11:44 -0800607 if (v->data == NULL) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700608 printf("%s: failed to allocate %zd bytes for %s\n",
609 name, v->size, zip_path);
Doug Zongker6aece332010-02-01 14:40:12 -0800610 goto done1;
611 }
612
Doug Zongker512536a2010-02-17 16:11:44 -0800613 success = mzExtractZipEntryToBuffer(za, entry,
614 (unsigned char *)v->data);
Doug Zongker6aece332010-02-01 14:40:12 -0800615
616 done1:
617 free(zip_path);
618 if (!success) {
Doug Zongker512536a2010-02-17 16:11:44 -0800619 free(v->data);
620 v->data = NULL;
621 v->size = -1;
Doug Zongker6aece332010-02-01 14:40:12 -0800622 }
Doug Zongker512536a2010-02-17 16:11:44 -0800623 return v;
Doug Zongker8edb00c2009-06-11 17:21:44 -0700624 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700625}
626
Doug Zongkera23075f2012-08-06 16:19:09 -0700627// Create all parent directories of name, if necessary.
628static int make_parents(char* name) {
629 char* p;
630 for (p = name + (strlen(name)-1); p > name; --p) {
631 if (*p != '/') continue;
632 *p = '\0';
633 if (make_parents(name) < 0) return -1;
634 int result = mkdir(name, 0700);
Michael Rungea91ecc52014-07-21 17:40:02 -0700635 if (result == 0) printf("created [%s]\n", name);
Doug Zongkera23075f2012-08-06 16:19:09 -0700636 *p = '/';
637 if (result == 0 || errno == EEXIST) {
638 // successfully created or already existed; we're done
639 return 0;
640 } else {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700641 printf("failed to mkdir %s: %s\n", name, strerror(errno));
Doug Zongkera23075f2012-08-06 16:19:09 -0700642 return -1;
643 }
644 }
645 return 0;
646}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700647
Doug Zongker9931f7f2009-06-10 14:11:53 -0700648// symlink target src1 src2 ...
Doug Zongker60babf82009-09-18 15:11:24 -0700649// unlinks any previously existing src1, src2, etc before creating symlinks.
Doug Zongker512536a2010-02-17 16:11:44 -0800650Value* SymlinkFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700651 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700652 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1+ args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700653 }
654 char* target;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700655 target = Evaluate(state, argv[0]);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700656 if (target == NULL) return NULL;
657
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700658 char** srcs = ReadVarArgs(state, argc-1, argv+1);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700659 if (srcs == NULL) {
660 free(target);
661 return NULL;
662 }
663
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700664 int bad = 0;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700665 int i;
666 for (i = 0; i < argc-1; ++i) {
Doug Zongker60babf82009-09-18 15:11:24 -0700667 if (unlink(srcs[i]) < 0) {
668 if (errno != ENOENT) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700669 printf("%s: failed to remove %s: %s\n",
Doug Zongker60babf82009-09-18 15:11:24 -0700670 name, srcs[i], strerror(errno));
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700671 ++bad;
Doug Zongker60babf82009-09-18 15:11:24 -0700672 }
673 }
Doug Zongkera23075f2012-08-06 16:19:09 -0700674 if (make_parents(srcs[i])) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700675 printf("%s: failed to symlink %s to %s: making parents failed\n",
Doug Zongkera23075f2012-08-06 16:19:09 -0700676 name, srcs[i], target);
677 ++bad;
678 }
Doug Zongker60babf82009-09-18 15:11:24 -0700679 if (symlink(target, srcs[i]) < 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700680 printf("%s: failed to symlink %s to %s: %s\n",
Doug Zongker60babf82009-09-18 15:11:24 -0700681 name, srcs[i], target, strerror(errno));
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700682 ++bad;
Doug Zongker60babf82009-09-18 15:11:24 -0700683 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700684 free(srcs[i]);
685 }
686 free(srcs);
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700687 if (bad) {
Tianjie Xu16255832016-04-30 11:49:59 -0700688 return ErrorAbort(state, kSymlinkFailure, "%s: some symlinks failed", name);
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700689 }
Doug Zongker512536a2010-02-17 16:11:44 -0800690 return StringValue(strdup(""));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700691}
692
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700693struct perm_parsed_args {
694 bool has_uid;
695 uid_t uid;
696 bool has_gid;
697 gid_t gid;
698 bool has_mode;
699 mode_t mode;
700 bool has_fmode;
701 mode_t fmode;
702 bool has_dmode;
703 mode_t dmode;
704 bool has_selabel;
705 char* selabel;
706 bool has_capabilities;
707 uint64_t capabilities;
708};
709
Michael Runged4a63422014-10-22 19:48:41 -0700710static struct perm_parsed_args ParsePermArgs(State * state, int argc, char** args) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700711 int i;
712 struct perm_parsed_args parsed;
713 int bad = 0;
714 static int max_warnings = 20;
715
716 memset(&parsed, 0, sizeof(parsed));
717
718 for (i = 1; i < argc; i += 2) {
719 if (strcmp("uid", args[i]) == 0) {
720 int64_t uid;
721 if (sscanf(args[i+1], "%" SCNd64, &uid) == 1) {
722 parsed.uid = uid;
723 parsed.has_uid = true;
724 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700725 uiPrintf(state, "ParsePermArgs: invalid UID \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700726 bad++;
727 }
728 continue;
729 }
730 if (strcmp("gid", args[i]) == 0) {
731 int64_t gid;
732 if (sscanf(args[i+1], "%" SCNd64, &gid) == 1) {
733 parsed.gid = gid;
734 parsed.has_gid = true;
735 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700736 uiPrintf(state, "ParsePermArgs: invalid GID \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700737 bad++;
738 }
739 continue;
740 }
741 if (strcmp("mode", args[i]) == 0) {
742 int32_t mode;
743 if (sscanf(args[i+1], "%" SCNi32, &mode) == 1) {
744 parsed.mode = mode;
745 parsed.has_mode = true;
746 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700747 uiPrintf(state, "ParsePermArgs: invalid mode \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700748 bad++;
749 }
750 continue;
751 }
752 if (strcmp("dmode", args[i]) == 0) {
753 int32_t mode;
754 if (sscanf(args[i+1], "%" SCNi32, &mode) == 1) {
755 parsed.dmode = mode;
756 parsed.has_dmode = true;
757 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700758 uiPrintf(state, "ParsePermArgs: invalid dmode \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700759 bad++;
760 }
761 continue;
762 }
763 if (strcmp("fmode", args[i]) == 0) {
764 int32_t mode;
765 if (sscanf(args[i+1], "%" SCNi32, &mode) == 1) {
766 parsed.fmode = mode;
767 parsed.has_fmode = true;
768 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700769 uiPrintf(state, "ParsePermArgs: invalid fmode \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700770 bad++;
771 }
772 continue;
773 }
774 if (strcmp("capabilities", args[i]) == 0) {
775 int64_t capabilities;
776 if (sscanf(args[i+1], "%" SCNi64, &capabilities) == 1) {
777 parsed.capabilities = capabilities;
778 parsed.has_capabilities = true;
779 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700780 uiPrintf(state, "ParsePermArgs: invalid capabilities \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700781 bad++;
782 }
783 continue;
784 }
785 if (strcmp("selabel", args[i]) == 0) {
786 if (args[i+1][0] != '\0') {
787 parsed.selabel = args[i+1];
788 parsed.has_selabel = true;
789 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700790 uiPrintf(state, "ParsePermArgs: invalid selabel \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700791 bad++;
792 }
793 continue;
794 }
795 if (max_warnings != 0) {
796 printf("ParsedPermArgs: unknown key \"%s\", ignoring\n", args[i]);
797 max_warnings--;
798 if (max_warnings == 0) {
799 printf("ParsedPermArgs: suppressing further warnings\n");
800 }
801 }
802 }
803 return parsed;
804}
805
806static int ApplyParsedPerms(
Michael Runged4a63422014-10-22 19:48:41 -0700807 State * state,
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700808 const char* filename,
809 const struct stat *statptr,
810 struct perm_parsed_args parsed)
811{
812 int bad = 0;
813
Nick Kralevich68802412014-10-23 20:36:42 -0700814 if (parsed.has_selabel) {
815 if (lsetfilecon(filename, parsed.selabel) != 0) {
816 uiPrintf(state, "ApplyParsedPerms: lsetfilecon of %s to %s failed: %s\n",
817 filename, parsed.selabel, strerror(errno));
818 bad++;
819 }
820 }
821
Nick Kraleviche4612512013-09-10 15:34:19 -0700822 /* ignore symlinks */
823 if (S_ISLNK(statptr->st_mode)) {
Nick Kralevich68802412014-10-23 20:36:42 -0700824 return bad;
Nick Kraleviche4612512013-09-10 15:34:19 -0700825 }
826
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700827 if (parsed.has_uid) {
828 if (chown(filename, parsed.uid, -1) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700829 uiPrintf(state, "ApplyParsedPerms: chown of %s to %d failed: %s\n",
830 filename, parsed.uid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700831 bad++;
832 }
833 }
834
835 if (parsed.has_gid) {
836 if (chown(filename, -1, parsed.gid) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700837 uiPrintf(state, "ApplyParsedPerms: chgrp of %s to %d failed: %s\n",
838 filename, parsed.gid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700839 bad++;
840 }
841 }
842
843 if (parsed.has_mode) {
844 if (chmod(filename, parsed.mode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700845 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
846 filename, parsed.mode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700847 bad++;
848 }
849 }
850
851 if (parsed.has_dmode && S_ISDIR(statptr->st_mode)) {
852 if (chmod(filename, parsed.dmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700853 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
854 filename, parsed.dmode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700855 bad++;
856 }
857 }
858
859 if (parsed.has_fmode && S_ISREG(statptr->st_mode)) {
860 if (chmod(filename, parsed.fmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700861 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700862 filename, parsed.fmode, strerror(errno));
863 bad++;
864 }
865 }
866
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700867 if (parsed.has_capabilities && S_ISREG(statptr->st_mode)) {
868 if (parsed.capabilities == 0) {
869 if ((removexattr(filename, XATTR_NAME_CAPS) == -1) && (errno != ENODATA)) {
870 // Report failure unless it's ENODATA (attribute not set)
Michael Runged4a63422014-10-22 19:48:41 -0700871 uiPrintf(state, "ApplyParsedPerms: removexattr of %s to %" PRIx64 " failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700872 filename, parsed.capabilities, strerror(errno));
873 bad++;
874 }
875 } else {
876 struct vfs_cap_data cap_data;
877 memset(&cap_data, 0, sizeof(cap_data));
878 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
879 cap_data.data[0].permitted = (uint32_t) (parsed.capabilities & 0xffffffff);
880 cap_data.data[0].inheritable = 0;
881 cap_data.data[1].permitted = (uint32_t) (parsed.capabilities >> 32);
882 cap_data.data[1].inheritable = 0;
883 if (setxattr(filename, XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700884 uiPrintf(state, "ApplyParsedPerms: setcap of %s to %" PRIx64 " failed: %s\n",
885 filename, parsed.capabilities, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700886 bad++;
887 }
888 }
889 }
890
891 return bad;
892}
893
894// nftw doesn't allow us to pass along context, so we need to use
895// global variables. *sigh*
896static struct perm_parsed_args recursive_parsed_args;
Michael Runged4a63422014-10-22 19:48:41 -0700897static State* recursive_state;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700898
899static int do_SetMetadataRecursive(const char* filename, const struct stat *statptr,
900 int fileflags, struct FTW *pfwt) {
Michael Runged4a63422014-10-22 19:48:41 -0700901 return ApplyParsedPerms(recursive_state, filename, statptr, recursive_parsed_args);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700902}
903
904static Value* SetMetadataFn(const char* name, State* state, int argc, Expr* argv[]) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700905 int bad = 0;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700906 struct stat sb;
907 Value* result = NULL;
908
909 bool recursive = (strcmp(name, "set_metadata_recursive") == 0);
910
911 if ((argc % 2) != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700912 return ErrorAbort(state, kArgsParsingFailure,
913 "%s() expects an odd number of arguments, got %d", name, argc);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700914 }
915
916 char** args = ReadVarArgs(state, argc, argv);
917 if (args == NULL) return NULL;
918
919 if (lstat(args[0], &sb) == -1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700920 result = ErrorAbort(state, kSetMetadataFailure, "%s: Error on lstat of \"%s\": %s",
921 name, args[0], strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700922 goto done;
923 }
924
Tao Baoba9a42a2015-06-23 23:23:33 -0700925 {
926 struct perm_parsed_args parsed = ParsePermArgs(state, argc, args);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700927
Tao Baoba9a42a2015-06-23 23:23:33 -0700928 if (recursive) {
929 recursive_parsed_args = parsed;
930 recursive_state = state;
931 bad += nftw(args[0], do_SetMetadataRecursive, 30, FTW_CHDIR | FTW_DEPTH | FTW_PHYS);
932 memset(&recursive_parsed_args, 0, sizeof(recursive_parsed_args));
933 recursive_state = NULL;
934 } else {
935 bad += ApplyParsedPerms(state, args[0], &sb, parsed);
936 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700937 }
938
939done:
Tao Baoba9a42a2015-06-23 23:23:33 -0700940 for (int i = 0; i < argc; ++i) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700941 free(args[i]);
942 }
943 free(args);
944
945 if (result != NULL) {
946 return result;
947 }
948
949 if (bad > 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700950 return ErrorAbort(state, kSetMetadataFailure, "%s: some changes failed", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700951 }
952
953 return StringValue(strdup(""));
954}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700955
Doug Zongker512536a2010-02-17 16:11:44 -0800956Value* GetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700957 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700958 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700959 }
Tao Baoba9a42a2015-06-23 23:23:33 -0700960 char* key = Evaluate(state, argv[0]);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700961 if (key == NULL) return NULL;
962
963 char value[PROPERTY_VALUE_MAX];
964 property_get(key, value, "");
965 free(key);
966
Doug Zongker512536a2010-02-17 16:11:44 -0800967 return StringValue(strdup(value));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700968}
969
970
Doug Zongker47cace92009-06-18 10:11:50 -0700971// file_getprop(file, key)
972//
973// interprets 'file' as a getprop-style file (key=value pairs, one
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700974// per line. # comment lines,blank lines, lines without '=' ignored),
975// and returns the value for 'key' (or "" if it isn't defined).
Doug Zongker512536a2010-02-17 16:11:44 -0800976Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker47cace92009-06-18 10:11:50 -0700977 char* result = NULL;
978 char* buffer = NULL;
979 char* filename;
980 char* key;
981 if (ReadArgs(state, argv, 2, &filename, &key) < 0) {
982 return NULL;
983 }
984
985 struct stat st;
986 if (stat(filename, &st) < 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700987 ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name, filename,
988 strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700989 goto done;
990 }
991
992#define MAX_FILE_GETPROP_SIZE 65536
993
994 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
Tianjie Xu16255832016-04-30 11:49:59 -0700995 ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %d)", filename, name,
996 MAX_FILE_GETPROP_SIZE);
Doug Zongker47cace92009-06-18 10:11:50 -0700997 goto done;
998 }
999
Tao Baoba9a42a2015-06-23 23:23:33 -07001000 buffer = reinterpret_cast<char*>(malloc(st.st_size+1));
Doug Zongker47cace92009-06-18 10:11:50 -07001001 if (buffer == NULL) {
Tianjie Xu84478e82016-05-23 11:42:40 -07001002 ErrorAbort(state, kFileGetPropFailure, "%s: failed to alloc %zu bytes", name,
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001003 static_cast<size_t>(st.st_size+1));
Doug Zongker47cace92009-06-18 10:11:50 -07001004 goto done;
1005 }
1006
Tao Baoba9a42a2015-06-23 23:23:33 -07001007 FILE* f;
Jed Estepa7b9a462015-12-15 16:04:53 -08001008 f = ota_fopen(filename, "rb");
Doug Zongker47cace92009-06-18 10:11:50 -07001009 if (f == NULL) {
Tianjie Xu16255832016-04-30 11:49:59 -07001010 ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name, filename,
1011 strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -07001012 goto done;
1013 }
1014
Jed Estepa7b9a462015-12-15 16:04:53 -08001015 if (ota_fread(buffer, 1, st.st_size, f) != static_cast<size_t>(st.st_size)) {
Tianjie Xu84478e82016-05-23 11:42:40 -07001016 ota_fclose(f);
1017 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s",
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001018 name, static_cast<size_t>(st.st_size), filename);
Jed Estepa7b9a462015-12-15 16:04:53 -08001019 ota_fclose(f);
Doug Zongker47cace92009-06-18 10:11:50 -07001020 goto done;
1021 }
1022 buffer[st.st_size] = '\0';
1023
Jed Estepa7b9a462015-12-15 16:04:53 -08001024 ota_fclose(f);
Doug Zongker47cace92009-06-18 10:11:50 -07001025
Tao Baoba9a42a2015-06-23 23:23:33 -07001026 char* line;
1027 line = strtok(buffer, "\n");
Doug Zongker47cace92009-06-18 10:11:50 -07001028 do {
1029 // skip whitespace at start of line
1030 while (*line && isspace(*line)) ++line;
1031
1032 // comment or blank line: skip to next line
1033 if (*line == '\0' || *line == '#') continue;
1034
1035 char* equal = strchr(line, '=');
1036 if (equal == NULL) {
Michael Rungeaa1a31e2014-04-25 18:47:18 -07001037 continue;
Doug Zongker47cace92009-06-18 10:11:50 -07001038 }
1039
1040 // trim whitespace between key and '='
1041 char* key_end = equal-1;
1042 while (key_end > line && isspace(*key_end)) --key_end;
1043 key_end[1] = '\0';
1044
1045 // not the key we're looking for
1046 if (strcmp(key, line) != 0) continue;
1047
1048 // skip whitespace after the '=' to the start of the value
1049 char* val_start = equal+1;
1050 while(*val_start && isspace(*val_start)) ++val_start;
1051
1052 // trim trailing whitespace
1053 char* val_end = val_start + strlen(val_start)-1;
1054 while (val_end > val_start && isspace(*val_end)) --val_end;
1055 val_end[1] = '\0';
1056
1057 result = strdup(val_start);
1058 break;
1059
1060 } while ((line = strtok(NULL, "\n")));
1061
1062 if (result == NULL) result = strdup("");
1063
1064 done:
1065 free(filename);
1066 free(key);
1067 free(buffer);
Doug Zongker512536a2010-02-17 16:11:44 -08001068 return StringValue(result);
Doug Zongker47cace92009-06-18 10:11:50 -07001069}
1070
Doug Zongker179b2d92011-04-12 15:49:04 -07001071// write_raw_image(filename_or_blob, partition)
Doug Zongker512536a2010-02-17 16:11:44 -08001072Value* WriteRawImageFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -07001073 char* result = NULL;
1074
Doug Zongker179b2d92011-04-12 15:49:04 -07001075 Value* partition_value;
1076 Value* contents;
1077 if (ReadValueArgs(state, argv, 2, &contents, &partition_value) < 0) {
Doug Zongker8edb00c2009-06-11 17:21:44 -07001078 return NULL;
1079 }
1080
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001081 char* partition = NULL;
Doug Zongker179b2d92011-04-12 15:49:04 -07001082 if (partition_value->type != VAL_STRING) {
Tianjie Xu16255832016-04-30 11:49:59 -07001083 ErrorAbort(state, kArgsParsingFailure, "partition argument to %s must be string", name);
Doug Zongker179b2d92011-04-12 15:49:04 -07001084 goto done;
1085 }
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001086 partition = partition_value->data;
Doug Zongker8edb00c2009-06-11 17:21:44 -07001087 if (strlen(partition) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001088 ErrorAbort(state, kArgsParsingFailure, "partition argument to %s can't be empty", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001089 goto done;
1090 }
Doug Zongker179b2d92011-04-12 15:49:04 -07001091 if (contents->type == VAL_STRING && strlen((char*) contents->data) == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001092 ErrorAbort(state, kArgsParsingFailure, "file argument to %s can't be empty", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001093 goto done;
1094 }
1095
1096 mtd_scan_partitions();
Tao Baoba9a42a2015-06-23 23:23:33 -07001097 const MtdPartition* mtd;
1098 mtd = mtd_find_partition_by_name(partition);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001099 if (mtd == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001100 printf("%s: no mtd partition named \"%s\"\n", name, partition);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001101 result = strdup("");
1102 goto done;
1103 }
1104
Tao Baoba9a42a2015-06-23 23:23:33 -07001105 MtdWriteContext* ctx;
1106 ctx = mtd_write_partition(mtd);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001107 if (ctx == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001108 printf("%s: can't write mtd partition \"%s\"\n",
Doug Zongker8edb00c2009-06-11 17:21:44 -07001109 name, partition);
1110 result = strdup("");
1111 goto done;
1112 }
1113
1114 bool success;
1115
Doug Zongker179b2d92011-04-12 15:49:04 -07001116 if (contents->type == VAL_STRING) {
1117 // we're given a filename as the contents
1118 char* filename = contents->data;
Jed Estepa7b9a462015-12-15 16:04:53 -08001119 FILE* f = ota_fopen(filename, "rb");
Doug Zongker179b2d92011-04-12 15:49:04 -07001120 if (f == NULL) {
Tao Baoba9a42a2015-06-23 23:23:33 -07001121 printf("%s: can't open %s: %s\n", name, filename, strerror(errno));
Doug Zongker179b2d92011-04-12 15:49:04 -07001122 result = strdup("");
1123 goto done;
Doug Zongker8edb00c2009-06-11 17:21:44 -07001124 }
Doug Zongker179b2d92011-04-12 15:49:04 -07001125
1126 success = true;
Tao Baoba9a42a2015-06-23 23:23:33 -07001127 char* buffer = reinterpret_cast<char*>(malloc(BUFSIZ));
Doug Zongker179b2d92011-04-12 15:49:04 -07001128 int read;
Jed Estepa7b9a462015-12-15 16:04:53 -08001129 while (success && (read = ota_fread(buffer, 1, BUFSIZ, f)) > 0) {
Doug Zongker179b2d92011-04-12 15:49:04 -07001130 int wrote = mtd_write_data(ctx, buffer, read);
1131 success = success && (wrote == read);
1132 }
1133 free(buffer);
Jed Estepa7b9a462015-12-15 16:04:53 -08001134 ota_fclose(f);
Doug Zongker179b2d92011-04-12 15:49:04 -07001135 } else {
1136 // we're given a blob as the contents
1137 ssize_t wrote = mtd_write_data(ctx, contents->data, contents->size);
1138 success = (wrote == contents->size);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001139 }
Doug Zongker179b2d92011-04-12 15:49:04 -07001140 if (!success) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001141 printf("mtd_write_data to %s failed: %s\n",
Doug Zongker179b2d92011-04-12 15:49:04 -07001142 partition, strerror(errno));
1143 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001144
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001145 if (mtd_erase_blocks(ctx, -1) == -1) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001146 printf("%s: error erasing blocks of %s\n", name, partition);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001147 }
1148 if (mtd_write_close(ctx) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001149 printf("%s: error closing write of %s\n", name, partition);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001150 }
1151
Doug Zongker179b2d92011-04-12 15:49:04 -07001152 printf("%s %s partition\n",
1153 success ? "wrote" : "failed to write", partition);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001154
1155 result = success ? partition : strdup("");
1156
1157done:
Doug Zongker179b2d92011-04-12 15:49:04 -07001158 if (result != partition) FreeValue(partition_value);
1159 FreeValue(contents);
Doug Zongker512536a2010-02-17 16:11:44 -08001160 return StringValue(result);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001161}
1162
Doug Zongker8edb00c2009-06-11 17:21:44 -07001163// apply_patch_space(bytes)
Doug Zongkerc4351c72010-02-22 14:46:32 -08001164Value* ApplyPatchSpaceFn(const char* name, State* state,
1165 int argc, Expr* argv[]) {
1166 char* bytes_str;
1167 if (ReadArgs(state, argv, 1, &bytes_str) < 0) {
1168 return NULL;
1169 }
1170
Tao Baob15fd222015-09-24 11:10:51 -07001171 size_t bytes;
1172 if (!android::base::ParseUint(bytes_str, &bytes)) {
Tianjie Xu16255832016-04-30 11:49:59 -07001173 ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
1174 name, bytes_str);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001175 free(bytes_str);
Tao Baob15fd222015-09-24 11:10:51 -07001176 return nullptr;
Doug Zongkerc4351c72010-02-22 14:46:32 -08001177 }
1178
1179 return StringValue(strdup(CacheSizeCheck(bytes) ? "" : "t"));
1180}
1181
Doug Zongker52b40362014-02-10 15:30:30 -08001182// apply_patch(file, size, init_sha1, tgt_sha1, patch)
1183
Doug Zongker512536a2010-02-17 16:11:44 -08001184Value* ApplyPatchFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc4351c72010-02-22 14:46:32 -08001185 if (argc < 6 || (argc % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001186 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
1187 "even number, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001188 }
1189
Doug Zongkerc4351c72010-02-22 14:46:32 -08001190 char* source_filename;
1191 char* target_filename;
1192 char* target_sha1;
1193 char* target_size_str;
1194 if (ReadArgs(state, argv, 4, &source_filename, &target_filename,
1195 &target_sha1, &target_size_str) < 0) {
1196 return NULL;
Doug Zongker8edb00c2009-06-11 17:21:44 -07001197 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001198
Tao Baob15fd222015-09-24 11:10:51 -07001199 size_t target_size;
1200 if (!android::base::ParseUint(target_size_str, &target_size)) {
Tianjie Xu16255832016-04-30 11:49:59 -07001201 ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
1202 name, target_size_str);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001203 free(source_filename);
1204 free(target_filename);
1205 free(target_sha1);
1206 free(target_size_str);
Tao Baob15fd222015-09-24 11:10:51 -07001207 return nullptr;
Doug Zongkerc4351c72010-02-22 14:46:32 -08001208 }
1209
1210 int patchcount = (argc-4) / 2;
Yabin Cui64be2132016-02-03 18:16:02 -08001211 std::unique_ptr<Value*, decltype(&free)> arg_values(ReadValueVarArgs(state, argc-4, argv+4),
1212 free);
1213 if (!arg_values) {
1214 return nullptr;
1215 }
1216 std::vector<std::unique_ptr<Value, decltype(&FreeValue)>> patch_shas;
1217 std::vector<std::unique_ptr<Value, decltype(&FreeValue)>> patches;
1218 // Protect values by unique_ptrs first to get rid of memory leak.
1219 for (int i = 0; i < patchcount * 2; i += 2) {
1220 patch_shas.emplace_back(arg_values.get()[i], FreeValue);
1221 patches.emplace_back(arg_values.get()[i+1], FreeValue);
1222 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001223
Yabin Cui64be2132016-02-03 18:16:02 -08001224 for (int i = 0; i < patchcount; ++i) {
1225 if (patch_shas[i]->type != VAL_STRING) {
Tianjie Xu16255832016-04-30 11:49:59 -07001226 ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name, i);
Yabin Cui64be2132016-02-03 18:16:02 -08001227 return nullptr;
Doug Zongkerc4351c72010-02-22 14:46:32 -08001228 }
Yabin Cui64be2132016-02-03 18:16:02 -08001229 if (patches[i]->type != VAL_BLOB) {
Tianjie Xu16255832016-04-30 11:49:59 -07001230 ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name, i);
Yabin Cui64be2132016-02-03 18:16:02 -08001231 return nullptr;
Doug Zongkerc4351c72010-02-22 14:46:32 -08001232 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001233 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001234
Yabin Cui64be2132016-02-03 18:16:02 -08001235 std::vector<char*> patch_sha_str;
1236 std::vector<Value*> patch_ptrs;
1237 for (int i = 0; i < patchcount; ++i) {
1238 patch_sha_str.push_back(patch_shas[i]->data);
1239 patch_ptrs.push_back(patches[i].get());
Doug Zongker8edb00c2009-06-11 17:21:44 -07001240 }
Doug Zongkerc4351c72010-02-22 14:46:32 -08001241
1242 int result = applypatch(source_filename, target_filename,
1243 target_sha1, target_size,
Yabin Cui64be2132016-02-03 18:16:02 -08001244 patchcount, patch_sha_str.data(), patch_ptrs.data(), NULL);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001245
1246 return StringValue(strdup(result == 0 ? "t" : ""));
1247}
1248
1249// apply_patch_check(file, [sha1_1, ...])
1250Value* ApplyPatchCheckFn(const char* name, State* state,
1251 int argc, Expr* argv[]) {
1252 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001253 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %d",
Doug Zongkerc4351c72010-02-22 14:46:32 -08001254 name, argc);
1255 }
1256
1257 char* filename;
1258 if (ReadArgs(state, argv, 1, &filename) < 0) {
1259 return NULL;
1260 }
1261
1262 int patchcount = argc-1;
1263 char** sha1s = ReadVarArgs(state, argc-1, argv+1);
1264
1265 int result = applypatch_check(filename, patchcount, sha1s);
1266
1267 int i;
1268 for (i = 0; i < patchcount; ++i) {
1269 free(sha1s[i]);
1270 }
1271 free(sha1s);
1272
1273 return StringValue(strdup(result == 0 ? "t" : ""));
Doug Zongker8edb00c2009-06-11 17:21:44 -07001274}
1275
Tao Bao1107d962015-09-09 17:16:55 -07001276// This is the updater side handler for ui_print() in edify script. Contents
1277// will be sent over to the recovery side for on-screen display.
Doug Zongker512536a2010-02-17 16:11:44 -08001278Value* UIPrintFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001279 char** args = ReadVarArgs(state, argc, argv);
1280 if (args == NULL) {
1281 return NULL;
1282 }
1283
Tao Bao1107d962015-09-09 17:16:55 -07001284 std::string buffer;
1285 for (int i = 0; i < argc; ++i) {
1286 buffer += args[i];
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001287 free(args[i]);
1288 }
1289 free(args);
Tao Bao1107d962015-09-09 17:16:55 -07001290
1291 buffer += "\n";
Michael Runged4a63422014-10-22 19:48:41 -07001292 uiPrint(state, buffer);
Tao Bao1107d962015-09-09 17:16:55 -07001293 return StringValue(strdup(buffer.c_str()));
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001294}
1295
Doug Zongkerd0181b82011-10-19 10:51:12 -07001296Value* WipeCacheFn(const char* name, State* state, int argc, Expr* argv[]) {
1297 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001298 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001299 }
1300 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "wipe_cache\n");
1301 return StringValue(strdup("t"));
1302}
1303
Doug Zongker512536a2010-02-17 16:11:44 -08001304Value* RunProgramFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001305 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001306 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001307 }
1308 char** args = ReadVarArgs(state, argc, argv);
1309 if (args == NULL) {
1310 return NULL;
1311 }
1312
Tao Baoba9a42a2015-06-23 23:23:33 -07001313 char** args2 = reinterpret_cast<char**>(malloc(sizeof(char*) * (argc+1)));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001314 memcpy(args2, args, sizeof(char*) * argc);
1315 args2[argc] = NULL;
1316
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001317 printf("about to run program [%s] with %d args\n", args2[0], argc);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001318
1319 pid_t child = fork();
1320 if (child == 0) {
1321 execv(args2[0], args2);
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001322 printf("run_program: execv failed: %s\n", strerror(errno));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001323 _exit(1);
1324 }
1325 int status;
1326 waitpid(child, &status, 0);
1327 if (WIFEXITED(status)) {
1328 if (WEXITSTATUS(status) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001329 printf("run_program: child exited with status %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001330 WEXITSTATUS(status));
1331 }
1332 } else if (WIFSIGNALED(status)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001333 printf("run_program: child terminated by signal %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001334 WTERMSIG(status));
1335 }
1336
1337 int i;
1338 for (i = 0; i < argc; ++i) {
1339 free(args[i]);
1340 }
1341 free(args);
1342 free(args2);
1343
1344 char buffer[20];
1345 sprintf(buffer, "%d", status);
1346
Doug Zongker512536a2010-02-17 16:11:44 -08001347 return StringValue(strdup(buffer));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001348}
1349
Doug Zongker512536a2010-02-17 16:11:44 -08001350// sha1_check(data)
1351// to return the sha1 of the data (given in the format returned by
1352// read_file).
1353//
1354// sha1_check(data, sha1_hex, [sha1_hex, ...])
1355// returns the sha1 of the file if it matches any of the hex
1356// strings passed, or "" if it does not equal any of them.
1357//
1358Value* Sha1CheckFn(const char* name, State* state, int argc, Expr* argv[]) {
1359 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001360 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongker512536a2010-02-17 16:11:44 -08001361 }
1362
Yabin Cui64be2132016-02-03 18:16:02 -08001363 std::unique_ptr<Value*, decltype(&free)> arg_values(ReadValueVarArgs(state, argc, argv), free);
1364 if (arg_values == nullptr) {
1365 return nullptr;
1366 }
1367 std::vector<std::unique_ptr<Value, decltype(&FreeValue)>> args;
1368 for (int i = 0; i < argc; ++i) {
1369 args.emplace_back(arg_values.get()[i], FreeValue);
Doug Zongker512536a2010-02-17 16:11:44 -08001370 }
1371
1372 if (args[0]->size < 0) {
Doug Zongker512536a2010-02-17 16:11:44 -08001373 return StringValue(strdup(""));
1374 }
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001375 uint8_t digest[SHA_DIGEST_LENGTH];
1376 SHA1(reinterpret_cast<uint8_t*>(args[0]->data), args[0]->size, digest);
Doug Zongker512536a2010-02-17 16:11:44 -08001377
1378 if (argc == 1) {
1379 return StringValue(PrintSha1(digest));
1380 }
1381
1382 int i;
Yabin Cui64be2132016-02-03 18:16:02 -08001383 uint8_t arg_digest[SHA_DIGEST_LENGTH];
Doug Zongker512536a2010-02-17 16:11:44 -08001384 for (i = 1; i < argc; ++i) {
1385 if (args[i]->type != VAL_STRING) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001386 printf("%s(): arg %d is not a string; skipping",
Doug Zongker512536a2010-02-17 16:11:44 -08001387 name, i);
1388 } else if (ParseSha1(args[i]->data, arg_digest) != 0) {
1389 // Warn about bad args and skip them.
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001390 printf("%s(): error parsing \"%s\" as sha-1; skipping",
1391 name, args[i]->data);
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001392 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
Doug Zongker512536a2010-02-17 16:11:44 -08001393 break;
1394 }
Doug Zongker512536a2010-02-17 16:11:44 -08001395 }
1396 if (i >= argc) {
1397 // Didn't match any of the hex strings; return false.
1398 return StringValue(strdup(""));
1399 }
Yabin Cui64be2132016-02-03 18:16:02 -08001400 // Found a match.
1401 return args[i].release();
Doug Zongker512536a2010-02-17 16:11:44 -08001402}
1403
Hristo Bojinovdb314d62010-08-02 10:29:49 -07001404// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -08001405// is actually a FileContents*).
1406Value* ReadFileFn(const char* name, State* state, int argc, Expr* argv[]) {
1407 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001408 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker512536a2010-02-17 16:11:44 -08001409 }
1410 char* filename;
1411 if (ReadArgs(state, argv, 1, &filename) < 0) return NULL;
1412
Yabin Cuid6c93af2016-02-10 16:41:10 -08001413 Value* v = static_cast<Value*>(malloc(sizeof(Value)));
1414 if (v == nullptr) {
1415 return nullptr;
1416 }
Doug Zongker512536a2010-02-17 16:11:44 -08001417 v->type = VAL_BLOB;
Yabin Cuid6c93af2016-02-10 16:41:10 -08001418 v->size = -1;
1419 v->data = nullptr;
Doug Zongker512536a2010-02-17 16:11:44 -08001420
1421 FileContents fc;
Doug Zongkera1bc1482014-02-13 15:18:19 -08001422 if (LoadFileContents(filename, &fc) != 0) {
Yabin Cuid6c93af2016-02-10 16:41:10 -08001423 v->data = static_cast<char*>(malloc(fc.data.size()));
1424 if (v->data != nullptr) {
1425 memcpy(v->data, fc.data.data(), fc.data.size());
1426 v->size = fc.data.size();
1427 }
Doug Zongker512536a2010-02-17 16:11:44 -08001428 }
Doug Zongker512536a2010-02-17 16:11:44 -08001429 free(filename);
1430 return v;
1431}
Doug Zongker8edb00c2009-06-11 17:21:44 -07001432
Doug Zongkerc87bab12013-11-25 13:53:25 -08001433// Immediately reboot the device. Recovery is not finished normally,
1434// so if you reboot into recovery it will re-start applying the
1435// current package (because nothing has cleared the copy of the
1436// arguments stored in the BCB).
1437//
1438// The argument is the partition name passed to the android reboot
1439// property. It can be "recovery" to boot from the recovery
1440// partition, or "" (empty string) to boot from the regular boot
1441// partition.
1442Value* RebootNowFn(const char* name, State* state, int argc, Expr* argv[]) {
1443 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001444 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001445 }
1446
1447 char* filename;
1448 char* property;
1449 if (ReadArgs(state, argv, 2, &filename, &property) < 0) return NULL;
1450
1451 char buffer[80];
1452
1453 // zero out the 'command' field of the bootloader message.
1454 memset(buffer, 0, sizeof(((struct bootloader_message*)0)->command));
Jed Estepa7b9a462015-12-15 16:04:53 -08001455 FILE* f = ota_fopen(filename, "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001456 fseek(f, offsetof(struct bootloader_message, command), SEEK_SET);
Jed Estepa7b9a462015-12-15 16:04:53 -08001457 ota_fwrite(buffer, sizeof(((struct bootloader_message*)0)->command), 1, f);
1458 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001459 free(filename);
1460
1461 strcpy(buffer, "reboot,");
1462 if (property != NULL) {
1463 strncat(buffer, property, sizeof(buffer)-10);
1464 }
1465
1466 property_set(ANDROID_RB_PROPERTY, buffer);
1467
1468 sleep(5);
1469 free(property);
Tianjie Xu16255832016-04-30 11:49:59 -07001470 ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001471 return NULL;
1472}
1473
1474// Store a string value somewhere that future invocations of recovery
1475// can access it. This value is called the "stage" and can be used to
1476// drive packages that need to do reboots in the middle of
1477// installation and keep track of where they are in the multi-stage
1478// install.
1479//
1480// The first argument is the block device for the misc partition
1481// ("/misc" in the fstab), which is where this value is stored. The
1482// second argument is the string to store; it should not exceed 31
1483// bytes.
1484Value* SetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
1485 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001486 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001487 }
1488
1489 char* filename;
1490 char* stagestr;
1491 if (ReadArgs(state, argv, 2, &filename, &stagestr) < 0) return NULL;
1492
1493 // Store this value in the misc partition, immediately after the
1494 // bootloader message that the main recovery uses to save its
1495 // arguments in case of the device restarting midway through
1496 // package installation.
Jed Estepa7b9a462015-12-15 16:04:53 -08001497 FILE* f = ota_fopen(filename, "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001498 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
1499 int to_write = strlen(stagestr)+1;
1500 int max_size = sizeof(((struct bootloader_message*)0)->stage);
1501 if (to_write > max_size) {
1502 to_write = max_size;
1503 stagestr[max_size-1] = 0;
1504 }
Jed Estepa7b9a462015-12-15 16:04:53 -08001505 ota_fwrite(stagestr, to_write, 1, f);
1506 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001507
1508 free(stagestr);
1509 return StringValue(filename);
1510}
1511
1512// Return the value most recently saved with SetStageFn. The argument
1513// is the block device for the misc partition.
1514Value* GetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001515 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001516 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001517 }
1518
1519 char* filename;
1520 if (ReadArgs(state, argv, 1, &filename) < 0) return NULL;
1521
1522 char buffer[sizeof(((struct bootloader_message*)0)->stage)];
Jed Estepa7b9a462015-12-15 16:04:53 -08001523 FILE* f = ota_fopen(filename, "rb");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001524 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Jed Estepa7b9a462015-12-15 16:04:53 -08001525 ota_fread(buffer, sizeof(buffer), 1, f);
1526 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001527 buffer[sizeof(buffer)-1] = '\0';
1528
1529 return StringValue(strdup(buffer));
1530}
1531
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001532Value* WipeBlockDeviceFn(const char* name, State* state, int argc, Expr* argv[]) {
1533 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001534 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001535 }
1536
1537 char* filename;
1538 char* len_str;
1539 if (ReadArgs(state, argv, 2, &filename, &len_str) < 0) return NULL;
1540
Tao Baob15fd222015-09-24 11:10:51 -07001541 size_t len;
1542 android::base::ParseUint(len_str, &len);
Jed Estepa7b9a462015-12-15 16:04:53 -08001543 int fd = ota_open(filename, O_WRONLY, 0644);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001544 int success = wipe_block_device(fd, len);
1545
1546 free(filename);
1547 free(len_str);
1548
Jed Estepa7b9a462015-12-15 16:04:53 -08001549 ota_close(fd);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001550
1551 return StringValue(strdup(success ? "t" : ""));
1552}
1553
Doug Zongkerc704e062014-05-23 08:40:35 -07001554Value* EnableRebootFn(const char* name, State* state, int argc, Expr* argv[]) {
1555 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001556 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerc704e062014-05-23 08:40:35 -07001557 }
1558 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
1559 fprintf(ui->cmd_pipe, "enable_reboot\n");
1560 return StringValue(strdup("t"));
1561}
1562
Michael Rungeacf47db2014-11-21 00:12:28 -08001563Value* Tune2FsFn(const char* name, State* state, int argc, Expr* argv[]) {
1564 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001565 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %d", name, argc);
Michael Rungeacf47db2014-11-21 00:12:28 -08001566 }
1567
1568 char** args = ReadVarArgs(state, argc, argv);
1569 if (args == NULL) {
Tianjie Xu16255832016-04-30 11:49:59 -07001570 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
Michael Rungeacf47db2014-11-21 00:12:28 -08001571 }
1572
Tao Baoba9a42a2015-06-23 23:23:33 -07001573 char** args2 = reinterpret_cast<char**>(malloc(sizeof(char*) * (argc+1)));
Michael Rungeacf47db2014-11-21 00:12:28 -08001574 // Tune2fs expects the program name as its args[0]
1575 args2[0] = strdup(name);
Tao Baoba9a42a2015-06-23 23:23:33 -07001576 for (int i = 0; i < argc; ++i) {
Michael Rungeacf47db2014-11-21 00:12:28 -08001577 args2[i + 1] = args[i];
1578 }
1579 int result = tune2fs_main(argc + 1, args2);
Tao Baoba9a42a2015-06-23 23:23:33 -07001580 for (int i = 0; i < argc; ++i) {
Michael Rungeacf47db2014-11-21 00:12:28 -08001581 free(args[i]);
1582 }
1583 free(args);
1584
1585 free(args2[0]);
1586 free(args2);
1587 if (result != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001588 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d",
1589 name, result);
Michael Rungeacf47db2014-11-21 00:12:28 -08001590 }
1591 return StringValue(strdup("t"));
1592}
1593
Doug Zongker9931f7f2009-06-10 14:11:53 -07001594void RegisterInstallFunctions() {
1595 RegisterFunction("mount", MountFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001596 RegisterFunction("is_mounted", IsMountedFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001597 RegisterFunction("unmount", UnmountFn);
1598 RegisterFunction("format", FormatFn);
1599 RegisterFunction("show_progress", ShowProgressFn);
Doug Zongkerfbf3c102009-06-24 09:36:20 -07001600 RegisterFunction("set_progress", SetProgressFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001601 RegisterFunction("delete", DeleteFn);
1602 RegisterFunction("delete_recursive", DeleteFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001603 RegisterFunction("package_extract_dir", PackageExtractDirFn);
1604 RegisterFunction("package_extract_file", PackageExtractFileFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001605 RegisterFunction("symlink", SymlinkFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001606
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001607 // Usage:
1608 // set_metadata("filename", "key1", "value1", "key2", "value2", ...)
1609 // Example:
1610 // set_metadata("/system/bin/netcfg", "uid", 0, "gid", 3003, "mode", 02750, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1611 RegisterFunction("set_metadata", SetMetadataFn);
1612
1613 // Usage:
1614 // set_metadata_recursive("dirname", "key1", "value1", "key2", "value2", ...)
1615 // Example:
1616 // set_metadata_recursive("/system", "uid", 0, "gid", 0, "fmode", 0644, "dmode", 0755, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1617 RegisterFunction("set_metadata_recursive", SetMetadataFn);
1618
Doug Zongker8edb00c2009-06-11 17:21:44 -07001619 RegisterFunction("getprop", GetPropFn);
Doug Zongker47cace92009-06-18 10:11:50 -07001620 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001621 RegisterFunction("write_raw_image", WriteRawImageFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001622
1623 RegisterFunction("apply_patch", ApplyPatchFn);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001624 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1625 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001626
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001627 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001628
Doug Zongker512536a2010-02-17 16:11:44 -08001629 RegisterFunction("read_file", ReadFileFn);
1630 RegisterFunction("sha1_check", Sha1CheckFn);
Michael Rungece7ca712013-11-06 17:42:20 -08001631 RegisterFunction("rename", RenameFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001632
Doug Zongkerd0181b82011-10-19 10:51:12 -07001633 RegisterFunction("wipe_cache", WipeCacheFn);
1634
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001635 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001636
1637 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001638
1639 RegisterFunction("reboot_now", RebootNowFn);
1640 RegisterFunction("get_stage", GetStageFn);
1641 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001642
1643 RegisterFunction("enable_reboot", EnableRebootFn);
Michael Rungeacf47db2014-11-21 00:12:28 -08001644 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001645}