blob: be97355953032a201ed3890bba5638c3700898b2 [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 <selinux/selinux.h>
31#include <ftw.h>
32#include <sys/capability.h>
33#include <sys/xattr.h>
34#include <linux/xattr.h>
35#include <inttypes.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070036
Elliott Hughes4b166f02015-12-04 15:30:20 -080037#include <android-base/parseint.h>
38#include <android-base/strings.h>
39#include <android-base/stringprintf.h>
Tao Bao1107d962015-09-09 17:16:55 -070040
Doug Zongkerc87bab12013-11-25 13:53:25 -080041#include "bootloader.h"
42#include "applypatch/applypatch.h"
43#include "cutils/android_reboot.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070044#include "cutils/misc.h"
45#include "cutils/properties.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070046#include "edify/expr.h"
Doug Zongker512536a2010-02-17 16:11:44 -080047#include "mincrypt/sha.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070048#include "minzip/DirUtil.h"
49#include "mtdutils/mounts.h"
50#include "mtdutils/mtdutils.h"
Jed Estepf1fc48c2015-12-15 16:04:53 -080051#include "otafault/ota_io.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070052#include "updater.h"
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -080053#include "install.h"
Michael Rungeacf47db2014-11-21 00:12:28 -080054#include "tune2fs.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070055
Doug Zongker3d177d02010-07-01 09:18:44 -070056#ifdef USE_EXT4
57#include "make_ext4fs.h"
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -080058#include "wipe.h"
Doug Zongker3d177d02010-07-01 09:18:44 -070059#endif
60
Tao Bao1107d962015-09-09 17:16:55 -070061// Send over the buffer to recovery though the command pipe.
62static void uiPrint(State* state, const std::string& buffer) {
63 UpdaterInfo* ui = reinterpret_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070064
Tao Bao1107d962015-09-09 17:16:55 -070065 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
66 // So skip sending empty strings to UI.
67 std::vector<std::string> lines = android::base::Split(buffer, "\n");
68 for (auto& line: lines) {
69 if (!line.empty()) {
70 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
71 fprintf(ui->cmd_pipe, "ui_print\n");
72 }
73 }
74
75 // On the updater side, we need to dump the contents to stderr (which has
76 // been redirected to the log file). Because the recovery will only print
77 // the contents to screen when processing pipe command ui_print.
78 fprintf(stderr, "%s", buffer.c_str());
Michael Runged4a63422014-10-22 19:48:41 -070079}
80
81__attribute__((__format__(printf, 2, 3))) __nonnull((2))
82void uiPrintf(State* state, const char* format, ...) {
Tao Bao1107d962015-09-09 17:16:55 -070083 std::string error_msg;
84
Michael Runged4a63422014-10-22 19:48:41 -070085 va_list ap;
86 va_start(ap, format);
Tao Bao1107d962015-09-09 17:16:55 -070087 android::base::StringAppendV(&error_msg, format, ap);
Michael Runged4a63422014-10-22 19:48:41 -070088 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -070089
Michael Runged4a63422014-10-22 19:48:41 -070090 uiPrint(state, error_msg);
91}
92
Doug Zongker52b40362014-02-10 15:30:30 -080093// Take a sha-1 digest and return it as a newly-allocated hex string.
Doug Zongkerbc7ffed2014-08-15 14:31:52 -070094char* PrintSha1(const uint8_t* digest) {
Tao Baoba9a42a2015-06-23 23:23:33 -070095 char* buffer = reinterpret_cast<char*>(malloc(SHA_DIGEST_SIZE*2 + 1));
Doug Zongker52b40362014-02-10 15:30:30 -080096 const char* alphabet = "0123456789abcdef";
Tao Baoba9a42a2015-06-23 23:23:33 -070097 size_t i;
Doug Zongker52b40362014-02-10 15:30:30 -080098 for (i = 0; i < SHA_DIGEST_SIZE; ++i) {
99 buffer[i*2] = alphabet[(digest[i] >> 4) & 0xf];
100 buffer[i*2+1] = alphabet[digest[i] & 0xf];
101 }
102 buffer[i*2] = '\0';
103 return buffer;
104}
105
Doug Zongker3d177d02010-07-01 09:18:44 -0700106// mount(fs_type, partition_type, location, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700107//
Doug Zongker3d177d02010-07-01 09:18:44 -0700108// fs_type="yaffs2" partition_type="MTD" location=partition
109// fs_type="ext4" partition_type="EMMC" location=device
Doug Zongker512536a2010-02-17 16:11:44 -0800110Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700111 char* result = NULL;
Michael Runge168f7772014-10-22 17:05:08 -0700112 if (argc != 4 && argc != 5) {
113 return ErrorAbort(state, "%s() expects 4-5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700114 }
Doug Zongker3d177d02010-07-01 09:18:44 -0700115 char* fs_type;
116 char* partition_type;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700117 char* location;
118 char* mount_point;
Michael Runge168f7772014-10-22 17:05:08 -0700119 char* mount_options;
120 bool has_mount_options;
121 if (argc == 5) {
122 has_mount_options = true;
123 if (ReadArgs(state, argv, 5, &fs_type, &partition_type,
124 &location, &mount_point, &mount_options) < 0) {
125 return NULL;
126 }
127 } else {
128 has_mount_options = false;
129 if (ReadArgs(state, argv, 4, &fs_type, &partition_type,
Doug Zongker3d177d02010-07-01 09:18:44 -0700130 &location, &mount_point) < 0) {
Michael Runge168f7772014-10-22 17:05:08 -0700131 return NULL;
132 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700133 }
134
Doug Zongker3d177d02010-07-01 09:18:44 -0700135 if (strlen(fs_type) == 0) {
136 ErrorAbort(state, "fs_type argument to %s() can't be empty", name);
137 goto done;
138 }
139 if (strlen(partition_type) == 0) {
140 ErrorAbort(state, "partition_type argument to %s() can't be empty",
141 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700142 goto done;
143 }
144 if (strlen(location) == 0) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700145 ErrorAbort(state, "location argument to %s() can't be empty", name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700146 goto done;
147 }
148 if (strlen(mount_point) == 0) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700149 ErrorAbort(state, "mount_point argument to %s() can't be empty", name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700150 goto done;
151 }
152
Tao Baoba9a42a2015-06-23 23:23:33 -0700153 {
154 char *secontext = NULL;
Stephen Smalley779701d2012-02-09 14:13:23 -0500155
Tao Baoba9a42a2015-06-23 23:23:33 -0700156 if (sehandle) {
157 selabel_lookup(sehandle, &secontext, mount_point, 0755);
158 setfscreatecon(secontext);
159 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500160
Tao Baoba9a42a2015-06-23 23:23:33 -0700161 mkdir(mount_point, 0755);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700162
Tao Baoba9a42a2015-06-23 23:23:33 -0700163 if (secontext) {
164 freecon(secontext);
165 setfscreatecon(NULL);
166 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500167 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500168
Doug Zongker3d177d02010-07-01 09:18:44 -0700169 if (strcmp(partition_type, "MTD") == 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700170 mtd_scan_partitions();
171 const MtdPartition* mtd;
172 mtd = mtd_find_partition_by_name(location);
173 if (mtd == NULL) {
Tao Bao1107d962015-09-09 17:16:55 -0700174 uiPrintf(state, "%s: no mtd partition named \"%s\"\n",
Doug Zongker9931f7f2009-06-10 14:11:53 -0700175 name, location);
176 result = strdup("");
177 goto done;
178 }
Doug Zongker3d177d02010-07-01 09:18:44 -0700179 if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) {
Michael Runge5ddf4292014-10-24 14:14:41 -0700180 uiPrintf(state, "mtd mount of %s failed: %s\n",
Doug Zongker9931f7f2009-06-10 14:11:53 -0700181 location, strerror(errno));
182 result = strdup("");
183 goto done;
184 }
185 result = mount_point;
186 } else {
Doug Zongker3d177d02010-07-01 09:18:44 -0700187 if (mount(location, mount_point, fs_type,
Michael Runge168f7772014-10-22 17:05:08 -0700188 MS_NOATIME | MS_NODEV | MS_NODIRATIME,
189 has_mount_options ? mount_options : "") < 0) {
Michael Runge5ddf4292014-10-24 14:14:41 -0700190 uiPrintf(state, "%s: failed to mount %s at %s: %s\n",
Doug Zongker60babf82009-09-18 15:11:24 -0700191 name, location, mount_point, strerror(errno));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700192 result = strdup("");
193 } else {
194 result = mount_point;
195 }
196 }
197
198done:
Doug Zongker3d177d02010-07-01 09:18:44 -0700199 free(fs_type);
200 free(partition_type);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700201 free(location);
202 if (result != mount_point) free(mount_point);
Michael Runge168f7772014-10-22 17:05:08 -0700203 if (has_mount_options) free(mount_options);
Doug Zongker512536a2010-02-17 16:11:44 -0800204 return StringValue(result);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700205}
206
Doug Zongker8edb00c2009-06-11 17:21:44 -0700207
208// is_mounted(mount_point)
Doug Zongker512536a2010-02-17 16:11:44 -0800209Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700210 char* result = NULL;
211 if (argc != 1) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700212 return ErrorAbort(state, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700213 }
214 char* mount_point;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700215 if (ReadArgs(state, argv, 1, &mount_point) < 0) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700216 return NULL;
217 }
218 if (strlen(mount_point) == 0) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700219 ErrorAbort(state, "mount_point argument to unmount() can't be empty");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700220 goto done;
221 }
222
223 scan_mounted_volumes();
Tao Baoba9a42a2015-06-23 23:23:33 -0700224 {
225 const MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point);
226 if (vol == NULL) {
227 result = strdup("");
228 } else {
229 result = mount_point;
230 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700231 }
232
233done:
234 if (result != mount_point) free(mount_point);
Doug Zongker512536a2010-02-17 16:11:44 -0800235 return StringValue(result);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700236}
237
238
Doug Zongker512536a2010-02-17 16:11:44 -0800239Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700240 char* result = NULL;
241 if (argc != 1) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700242 return ErrorAbort(state, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700243 }
244 char* mount_point;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700245 if (ReadArgs(state, argv, 1, &mount_point) < 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700246 return NULL;
247 }
248 if (strlen(mount_point) == 0) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700249 ErrorAbort(state, "mount_point argument to unmount() can't be empty");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700250 goto done;
251 }
252
253 scan_mounted_volumes();
Tao Baoba9a42a2015-06-23 23:23:33 -0700254 {
255 const MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point);
256 if (vol == NULL) {
257 uiPrintf(state, "unmount of %s failed; no such volume\n", mount_point);
258 result = strdup("");
259 } else {
260 int ret = unmount_mounted_volume(vol);
261 if (ret != 0) {
262 uiPrintf(state, "unmount of %s failed (%d): %s\n",
263 mount_point, ret, strerror(errno));
264 }
265 result = mount_point;
Michael Runge5ddf4292014-10-24 14:14:41 -0700266 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700267 }
268
269done:
270 if (result != mount_point) free(mount_point);
Doug Zongker512536a2010-02-17 16:11:44 -0800271 return StringValue(result);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700272}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700273
JP Abgrall37aedb32014-06-16 19:07:39 -0700274static int exec_cmd(const char* path, char* const argv[]) {
275 int status;
276 pid_t child;
277 if ((child = vfork()) == 0) {
278 execv(path, argv);
279 _exit(-1);
280 }
281 waitpid(child, &status, 0);
282 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
283 printf("%s failed with status %d\n", path, WEXITSTATUS(status));
284 }
285 return WEXITSTATUS(status);
286}
287
Doug Zongker8edb00c2009-06-11 17:21:44 -0700288
Stephen Smalley779701d2012-02-09 14:13:23 -0500289// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700290//
Stephen Smalley779701d2012-02-09 14:13:23 -0500291// fs_type="yaffs2" partition_type="MTD" location=partition fs_size=<bytes> mount_point=<location>
292// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700293// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
294// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800295// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700296// 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 -0800297Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700298 char* result = NULL;
Stephen Smalley516e4e22012-04-03 13:35:11 -0400299 if (argc != 5) {
300 return ErrorAbort(state, "%s() expects 5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700301 }
Doug Zongker3d177d02010-07-01 09:18:44 -0700302 char* fs_type;
303 char* partition_type;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700304 char* location;
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800305 char* fs_size;
Stephen Smalley516e4e22012-04-03 13:35:11 -0400306 char* mount_point;
Stephen Smalley779701d2012-02-09 14:13:23 -0500307
Stephen Smalley779701d2012-02-09 14:13:23 -0500308 if (ReadArgs(state, argv, 5, &fs_type, &partition_type, &location, &fs_size, &mount_point) < 0) {
309 return NULL;
310 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700311
Doug Zongker3d177d02010-07-01 09:18:44 -0700312 if (strlen(fs_type) == 0) {
313 ErrorAbort(state, "fs_type argument to %s() can't be empty", name);
314 goto done;
315 }
316 if (strlen(partition_type) == 0) {
317 ErrorAbort(state, "partition_type argument to %s() can't be empty",
318 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700319 goto done;
320 }
321 if (strlen(location) == 0) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700322 ErrorAbort(state, "location argument to %s() can't be empty", name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700323 goto done;
324 }
325
Stephen Smalley516e4e22012-04-03 13:35:11 -0400326 if (strlen(mount_point) == 0) {
Stephen Smalley779701d2012-02-09 14:13:23 -0500327 ErrorAbort(state, "mount_point argument to %s() can't be empty", name);
328 goto done;
329 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500330
Doug Zongker3d177d02010-07-01 09:18:44 -0700331 if (strcmp(partition_type, "MTD") == 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700332 mtd_scan_partitions();
333 const MtdPartition* mtd = mtd_find_partition_by_name(location);
334 if (mtd == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700335 printf("%s: no mtd partition named \"%s\"",
Doug Zongker9931f7f2009-06-10 14:11:53 -0700336 name, location);
337 result = strdup("");
338 goto done;
339 }
340 MtdWriteContext* ctx = mtd_write_partition(mtd);
341 if (ctx == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700342 printf("%s: can't write \"%s\"", name, location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700343 result = strdup("");
344 goto done;
345 }
346 if (mtd_erase_blocks(ctx, -1) == -1) {
347 mtd_write_close(ctx);
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700348 printf("%s: failed to erase \"%s\"", name, location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700349 result = strdup("");
350 goto done;
351 }
352 if (mtd_write_close(ctx) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700353 printf("%s: failed to close \"%s\"", name, location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700354 result = strdup("");
355 goto done;
356 }
357 result = location;
Doug Zongker3d177d02010-07-01 09:18:44 -0700358#ifdef USE_EXT4
359 } else if (strcmp(fs_type, "ext4") == 0) {
Stephen Smalley779701d2012-02-09 14:13:23 -0500360 int status = make_ext4fs(location, atoll(fs_size), mount_point, sehandle);
Doug Zongker3d177d02010-07-01 09:18:44 -0700361 if (status != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700362 printf("%s: make_ext4fs failed (%d) on %s",
Doug Zongker3d177d02010-07-01 09:18:44 -0700363 name, status, location);
364 result = strdup("");
365 goto done;
366 }
367 result = location;
JP Abgrall37aedb32014-06-16 19:07:39 -0700368 } else if (strcmp(fs_type, "f2fs") == 0) {
369 char *num_sectors;
370 if (asprintf(&num_sectors, "%lld", atoll(fs_size) / 512) <= 0) {
371 printf("format_volume: failed to create %s command for %s\n", fs_type, location);
372 result = strdup("");
373 goto done;
374 }
375 const char *f2fs_path = "/sbin/mkfs.f2fs";
376 const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", location, num_sectors, NULL};
377 int status = exec_cmd(f2fs_path, (char* const*)f2fs_argv);
378 free(num_sectors);
379 if (status != 0) {
380 printf("%s: mkfs.f2fs failed (%d) on %s",
381 name, status, location);
382 result = strdup("");
383 goto done;
384 }
385 result = location;
Doug Zongker3d177d02010-07-01 09:18:44 -0700386#endif
Doug Zongker9931f7f2009-06-10 14:11:53 -0700387 } else {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700388 printf("%s: unsupported fs_type \"%s\" partition_type \"%s\"",
Doug Zongker3d177d02010-07-01 09:18:44 -0700389 name, fs_type, partition_type);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700390 }
391
392done:
Doug Zongker3d177d02010-07-01 09:18:44 -0700393 free(fs_type);
394 free(partition_type);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700395 if (result != location) free(location);
Doug Zongker512536a2010-02-17 16:11:44 -0800396 return StringValue(result);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700397}
398
Michael Rungece7ca712013-11-06 17:42:20 -0800399Value* RenameFn(const char* name, State* state, int argc, Expr* argv[]) {
400 char* result = NULL;
401 if (argc != 2) {
402 return ErrorAbort(state, "%s() expects 2 args, got %d", name, argc);
403 }
404
405 char* src_name;
406 char* dst_name;
407
408 if (ReadArgs(state, argv, 2, &src_name, &dst_name) < 0) {
409 return NULL;
410 }
411 if (strlen(src_name) == 0) {
412 ErrorAbort(state, "src_name argument to %s() can't be empty", name);
413 goto done;
414 }
415 if (strlen(dst_name) == 0) {
Doug Zongker2b5f0e02014-08-06 08:25:03 -0700416 ErrorAbort(state, "dst_name argument to %s() can't be empty", name);
Michael Rungece7ca712013-11-06 17:42:20 -0800417 goto done;
418 }
Michael Rungea91ecc52014-07-21 17:40:02 -0700419 if (make_parents(dst_name) != 0) {
Doug Zongker2b5f0e02014-08-06 08:25:03 -0700420 ErrorAbort(state, "Creating parent of %s failed, error %s",
Michael Rungea91ecc52014-07-21 17:40:02 -0700421 dst_name, strerror(errno));
Michael Runge2f0ef732014-10-22 14:28:23 -0700422 } else if (access(dst_name, F_OK) == 0 && access(src_name, F_OK) != 0) {
423 // File was already moved
424 result = dst_name;
Michael Rungea91ecc52014-07-21 17:40:02 -0700425 } else if (rename(src_name, dst_name) != 0) {
Doug Zongker2b5f0e02014-08-06 08:25:03 -0700426 ErrorAbort(state, "Rename of %s to %s failed, error %s",
Michael Rungece7ca712013-11-06 17:42:20 -0800427 src_name, dst_name, strerror(errno));
428 } else {
429 result = dst_name;
430 }
431
432done:
433 free(src_name);
434 if (result != dst_name) free(dst_name);
435 return StringValue(result);
436}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700437
Doug Zongker512536a2010-02-17 16:11:44 -0800438Value* DeleteFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700439 char** paths = reinterpret_cast<char**>(malloc(argc * sizeof(char*)));
440 for (int i = 0; i < argc; ++i) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700441 paths[i] = Evaluate(state, argv[i]);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700442 if (paths[i] == NULL) {
443 int j;
444 for (j = 0; j < i; ++i) {
445 free(paths[j]);
446 }
447 free(paths);
448 return NULL;
449 }
450 }
451
452 bool recursive = (strcmp(name, "delete_recursive") == 0);
453
454 int success = 0;
Tao Baoba9a42a2015-06-23 23:23:33 -0700455 for (int i = 0; i < argc; ++i) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700456 if ((recursive ? dirUnlinkHierarchy(paths[i]) : unlink(paths[i])) == 0)
457 ++success;
458 free(paths[i]);
459 }
460 free(paths);
461
462 char buffer[10];
463 sprintf(buffer, "%d", success);
Doug Zongker512536a2010-02-17 16:11:44 -0800464 return StringValue(strdup(buffer));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700465}
466
Doug Zongker8edb00c2009-06-11 17:21:44 -0700467
Doug Zongker512536a2010-02-17 16:11:44 -0800468Value* ShowProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700469 if (argc != 2) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700470 return ErrorAbort(state, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700471 }
472 char* frac_str;
473 char* sec_str;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700474 if (ReadArgs(state, argv, 2, &frac_str, &sec_str) < 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700475 return NULL;
476 }
477
478 double frac = strtod(frac_str, NULL);
Tao Baob15fd222015-09-24 11:10:51 -0700479 int sec;
480 android::base::ParseInt(sec_str, &sec);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700481
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700482 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700483 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
484
Doug Zongker9931f7f2009-06-10 14:11:53 -0700485 free(sec_str);
Doug Zongker512536a2010-02-17 16:11:44 -0800486 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700487}
488
Doug Zongker512536a2010-02-17 16:11:44 -0800489Value* SetProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700490 if (argc != 1) {
491 return ErrorAbort(state, "%s() expects 1 arg, got %d", name, argc);
492 }
493 char* frac_str;
494 if (ReadArgs(state, argv, 1, &frac_str) < 0) {
495 return NULL;
496 }
497
498 double frac = strtod(frac_str, NULL);
499
500 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
501 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
502
Doug Zongker512536a2010-02-17 16:11:44 -0800503 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700504}
505
Doug Zongker8edb00c2009-06-11 17:21:44 -0700506// package_extract_dir(package_path, destination_path)
Doug Zongker512536a2010-02-17 16:11:44 -0800507Value* PackageExtractDirFn(const char* name, State* state,
Doug Zongker8edb00c2009-06-11 17:21:44 -0700508 int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700509 if (argc != 2) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700510 return ErrorAbort(state, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700511 }
512 char* zip_path;
513 char* dest_path;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700514 if (ReadArgs(state, argv, 2, &zip_path, &dest_path) < 0) return NULL;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700515
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700516 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700517
518 // To create a consistent system image, never use the clock for timestamps.
519 struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default
520
521 bool success = mzExtractRecursive(za, zip_path, dest_path,
Narayan Kamath9c0f5d62015-02-23 14:09:31 +0000522 &timestamp,
Stephen Smalley779701d2012-02-09 14:13:23 -0500523 NULL, NULL, sehandle);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700524 free(zip_path);
525 free(dest_path);
Doug Zongker512536a2010-02-17 16:11:44 -0800526 return StringValue(strdup(success ? "t" : ""));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700527}
528
Doug Zongker8edb00c2009-06-11 17:21:44 -0700529
530// package_extract_file(package_path, destination_path)
Doug Zongker6aece332010-02-01 14:40:12 -0800531// or
532// package_extract_file(package_path)
533// to return the entire contents of the file as the result of this
Doug Zongker512536a2010-02-17 16:11:44 -0800534// function (the char* returned is actually a FileContents*).
535Value* PackageExtractFileFn(const char* name, State* state,
Doug Zongker8edb00c2009-06-11 17:21:44 -0700536 int argc, Expr* argv[]) {
Doug Zongker5f875bf2014-08-22 14:53:43 -0700537 if (argc < 1 || argc > 2) {
538 return ErrorAbort(state, "%s() expects 1 or 2 args, got %d",
Doug Zongker6aece332010-02-01 14:40:12 -0800539 name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700540 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700541 bool success = false;
Doug Zongker43772d22014-06-09 14:13:19 -0700542
Doug Zongker5f875bf2014-08-22 14:53:43 -0700543 if (argc == 2) {
544 // The two-argument version extracts to a file.
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800545
546 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
Doug Zongker8edb00c2009-06-11 17:21:44 -0700547
Doug Zongker6aece332010-02-01 14:40:12 -0800548 char* zip_path;
549 char* dest_path;
Doug Zongker5f875bf2014-08-22 14:53:43 -0700550 if (ReadArgs(state, argv, 2, &zip_path, &dest_path) < 0) return NULL;
Doug Zongker6aece332010-02-01 14:40:12 -0800551
Doug Zongker6aece332010-02-01 14:40:12 -0800552 const ZipEntry* entry = mzFindZipEntry(za, zip_path);
553 if (entry == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700554 printf("%s: no %s in package\n", name, zip_path);
Doug Zongker6aece332010-02-01 14:40:12 -0800555 goto done2;
556 }
557
Tao Baoba9a42a2015-06-23 23:23:33 -0700558 {
Jed Estepf1fc48c2015-12-15 16:04:53 -0800559 int fd = TEMP_FAILURE_RETRY(ota_open(dest_path, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC,
Tao Baod3cac342015-12-14 15:53:25 -0800560 S_IRUSR | S_IWUSR));
561 if (fd == -1) {
562 printf("%s: can't open %s for write: %s\n", name, dest_path, strerror(errno));
Tao Baoba9a42a2015-06-23 23:23:33 -0700563 goto done2;
564 }
Tao Baod3cac342015-12-14 15:53:25 -0800565 success = mzExtractZipEntryToFile(za, entry, fd);
Jed Estepf1fc48c2015-12-15 16:04:53 -0800566 if (ota_fsync(fd) == -1) {
Tao Baod3cac342015-12-14 15:53:25 -0800567 printf("fsync of \"%s\" failed: %s\n", dest_path, strerror(errno));
568 success = false;
569 }
Jed Estepf1fc48c2015-12-15 16:04:53 -0800570 if (ota_close(fd) == -1) {
Tao Baod3cac342015-12-14 15:53:25 -0800571 printf("close of \"%s\" failed: %s\n", dest_path, strerror(errno));
572 success = false;
573 }
Doug Zongker6aece332010-02-01 14:40:12 -0800574 }
Doug Zongker6aece332010-02-01 14:40:12 -0800575
576 done2:
577 free(zip_path);
578 free(dest_path);
Doug Zongker512536a2010-02-17 16:11:44 -0800579 return StringValue(strdup(success ? "t" : ""));
Doug Zongker6aece332010-02-01 14:40:12 -0800580 } else {
581 // The one-argument version returns the contents of the file
582 // as the result.
583
584 char* zip_path;
Tao Baoba9a42a2015-06-23 23:23:33 -0700585 Value* v = reinterpret_cast<Value*>(malloc(sizeof(Value)));
Doug Zongker512536a2010-02-17 16:11:44 -0800586 v->type = VAL_BLOB;
587 v->size = -1;
588 v->data = NULL;
Doug Zongker6aece332010-02-01 14:40:12 -0800589
590 if (ReadArgs(state, argv, 1, &zip_path) < 0) return NULL;
591
592 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
593 const ZipEntry* entry = mzFindZipEntry(za, zip_path);
594 if (entry == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700595 printf("%s: no %s in package\n", name, zip_path);
Doug Zongker6aece332010-02-01 14:40:12 -0800596 goto done1;
597 }
598
Doug Zongker512536a2010-02-17 16:11:44 -0800599 v->size = mzGetZipEntryUncompLen(entry);
Tao Baoba9a42a2015-06-23 23:23:33 -0700600 v->data = reinterpret_cast<char*>(malloc(v->size));
Doug Zongker512536a2010-02-17 16:11:44 -0800601 if (v->data == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700602 printf("%s: failed to allocate %ld bytes for %s\n",
Doug Zongker512536a2010-02-17 16:11:44 -0800603 name, (long)v->size, zip_path);
Doug Zongker6aece332010-02-01 14:40:12 -0800604 goto done1;
605 }
606
Doug Zongker512536a2010-02-17 16:11:44 -0800607 success = mzExtractZipEntryToBuffer(za, entry,
608 (unsigned char *)v->data);
Doug Zongker6aece332010-02-01 14:40:12 -0800609
610 done1:
611 free(zip_path);
612 if (!success) {
Doug Zongker512536a2010-02-17 16:11:44 -0800613 free(v->data);
614 v->data = NULL;
615 v->size = -1;
Doug Zongker6aece332010-02-01 14:40:12 -0800616 }
Doug Zongker512536a2010-02-17 16:11:44 -0800617 return v;
Doug Zongker8edb00c2009-06-11 17:21:44 -0700618 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700619}
620
Doug Zongkera23075f2012-08-06 16:19:09 -0700621// Create all parent directories of name, if necessary.
622static int make_parents(char* name) {
623 char* p;
624 for (p = name + (strlen(name)-1); p > name; --p) {
625 if (*p != '/') continue;
626 *p = '\0';
627 if (make_parents(name) < 0) return -1;
628 int result = mkdir(name, 0700);
Michael Rungea91ecc52014-07-21 17:40:02 -0700629 if (result == 0) printf("created [%s]\n", name);
Doug Zongkera23075f2012-08-06 16:19:09 -0700630 *p = '/';
631 if (result == 0 || errno == EEXIST) {
632 // successfully created or already existed; we're done
633 return 0;
634 } else {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700635 printf("failed to mkdir %s: %s\n", name, strerror(errno));
Doug Zongkera23075f2012-08-06 16:19:09 -0700636 return -1;
637 }
638 }
639 return 0;
640}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700641
Doug Zongker9931f7f2009-06-10 14:11:53 -0700642// symlink target src1 src2 ...
Doug Zongker60babf82009-09-18 15:11:24 -0700643// unlinks any previously existing src1, src2, etc before creating symlinks.
Doug Zongker512536a2010-02-17 16:11:44 -0800644Value* SymlinkFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700645 if (argc == 0) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700646 return ErrorAbort(state, "%s() expects 1+ args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700647 }
648 char* target;
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700649 target = Evaluate(state, argv[0]);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700650 if (target == NULL) return NULL;
651
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700652 char** srcs = ReadVarArgs(state, argc-1, argv+1);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700653 if (srcs == NULL) {
654 free(target);
655 return NULL;
656 }
657
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700658 int bad = 0;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700659 int i;
660 for (i = 0; i < argc-1; ++i) {
Doug Zongker60babf82009-09-18 15:11:24 -0700661 if (unlink(srcs[i]) < 0) {
662 if (errno != ENOENT) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700663 printf("%s: failed to remove %s: %s\n",
Doug Zongker60babf82009-09-18 15:11:24 -0700664 name, srcs[i], strerror(errno));
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700665 ++bad;
Doug Zongker60babf82009-09-18 15:11:24 -0700666 }
667 }
Doug Zongkera23075f2012-08-06 16:19:09 -0700668 if (make_parents(srcs[i])) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700669 printf("%s: failed to symlink %s to %s: making parents failed\n",
Doug Zongkera23075f2012-08-06 16:19:09 -0700670 name, srcs[i], target);
671 ++bad;
672 }
Doug Zongker60babf82009-09-18 15:11:24 -0700673 if (symlink(target, srcs[i]) < 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700674 printf("%s: failed to symlink %s to %s: %s\n",
Doug Zongker60babf82009-09-18 15:11:24 -0700675 name, srcs[i], target, strerror(errno));
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700676 ++bad;
Doug Zongker60babf82009-09-18 15:11:24 -0700677 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700678 free(srcs[i]);
679 }
680 free(srcs);
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700681 if (bad) {
682 return ErrorAbort(state, "%s: some symlinks failed", name);
683 }
Doug Zongker512536a2010-02-17 16:11:44 -0800684 return StringValue(strdup(""));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700685}
686
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700687struct perm_parsed_args {
688 bool has_uid;
689 uid_t uid;
690 bool has_gid;
691 gid_t gid;
692 bool has_mode;
693 mode_t mode;
694 bool has_fmode;
695 mode_t fmode;
696 bool has_dmode;
697 mode_t dmode;
698 bool has_selabel;
699 char* selabel;
700 bool has_capabilities;
701 uint64_t capabilities;
702};
703
Michael Runged4a63422014-10-22 19:48:41 -0700704static struct perm_parsed_args ParsePermArgs(State * state, int argc, char** args) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700705 int i;
706 struct perm_parsed_args parsed;
707 int bad = 0;
708 static int max_warnings = 20;
709
710 memset(&parsed, 0, sizeof(parsed));
711
712 for (i = 1; i < argc; i += 2) {
713 if (strcmp("uid", args[i]) == 0) {
714 int64_t uid;
715 if (sscanf(args[i+1], "%" SCNd64, &uid) == 1) {
716 parsed.uid = uid;
717 parsed.has_uid = true;
718 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700719 uiPrintf(state, "ParsePermArgs: invalid UID \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700720 bad++;
721 }
722 continue;
723 }
724 if (strcmp("gid", args[i]) == 0) {
725 int64_t gid;
726 if (sscanf(args[i+1], "%" SCNd64, &gid) == 1) {
727 parsed.gid = gid;
728 parsed.has_gid = true;
729 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700730 uiPrintf(state, "ParsePermArgs: invalid GID \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700731 bad++;
732 }
733 continue;
734 }
735 if (strcmp("mode", args[i]) == 0) {
736 int32_t mode;
737 if (sscanf(args[i+1], "%" SCNi32, &mode) == 1) {
738 parsed.mode = mode;
739 parsed.has_mode = true;
740 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700741 uiPrintf(state, "ParsePermArgs: invalid mode \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700742 bad++;
743 }
744 continue;
745 }
746 if (strcmp("dmode", args[i]) == 0) {
747 int32_t mode;
748 if (sscanf(args[i+1], "%" SCNi32, &mode) == 1) {
749 parsed.dmode = mode;
750 parsed.has_dmode = true;
751 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700752 uiPrintf(state, "ParsePermArgs: invalid dmode \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700753 bad++;
754 }
755 continue;
756 }
757 if (strcmp("fmode", args[i]) == 0) {
758 int32_t mode;
759 if (sscanf(args[i+1], "%" SCNi32, &mode) == 1) {
760 parsed.fmode = mode;
761 parsed.has_fmode = true;
762 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700763 uiPrintf(state, "ParsePermArgs: invalid fmode \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700764 bad++;
765 }
766 continue;
767 }
768 if (strcmp("capabilities", args[i]) == 0) {
769 int64_t capabilities;
770 if (sscanf(args[i+1], "%" SCNi64, &capabilities) == 1) {
771 parsed.capabilities = capabilities;
772 parsed.has_capabilities = true;
773 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700774 uiPrintf(state, "ParsePermArgs: invalid capabilities \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700775 bad++;
776 }
777 continue;
778 }
779 if (strcmp("selabel", args[i]) == 0) {
780 if (args[i+1][0] != '\0') {
781 parsed.selabel = args[i+1];
782 parsed.has_selabel = true;
783 } else {
Michael Runged4a63422014-10-22 19:48:41 -0700784 uiPrintf(state, "ParsePermArgs: invalid selabel \"%s\"\n", args[i + 1]);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700785 bad++;
786 }
787 continue;
788 }
789 if (max_warnings != 0) {
790 printf("ParsedPermArgs: unknown key \"%s\", ignoring\n", args[i]);
791 max_warnings--;
792 if (max_warnings == 0) {
793 printf("ParsedPermArgs: suppressing further warnings\n");
794 }
795 }
796 }
797 return parsed;
798}
799
800static int ApplyParsedPerms(
Michael Runged4a63422014-10-22 19:48:41 -0700801 State * state,
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700802 const char* filename,
803 const struct stat *statptr,
804 struct perm_parsed_args parsed)
805{
806 int bad = 0;
807
Nick Kralevich68802412014-10-23 20:36:42 -0700808 if (parsed.has_selabel) {
809 if (lsetfilecon(filename, parsed.selabel) != 0) {
810 uiPrintf(state, "ApplyParsedPerms: lsetfilecon of %s to %s failed: %s\n",
811 filename, parsed.selabel, strerror(errno));
812 bad++;
813 }
814 }
815
Nick Kraleviche4612512013-09-10 15:34:19 -0700816 /* ignore symlinks */
817 if (S_ISLNK(statptr->st_mode)) {
Nick Kralevich68802412014-10-23 20:36:42 -0700818 return bad;
Nick Kraleviche4612512013-09-10 15:34:19 -0700819 }
820
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700821 if (parsed.has_uid) {
822 if (chown(filename, parsed.uid, -1) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700823 uiPrintf(state, "ApplyParsedPerms: chown of %s to %d failed: %s\n",
824 filename, parsed.uid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700825 bad++;
826 }
827 }
828
829 if (parsed.has_gid) {
830 if (chown(filename, -1, parsed.gid) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700831 uiPrintf(state, "ApplyParsedPerms: chgrp of %s to %d failed: %s\n",
832 filename, parsed.gid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700833 bad++;
834 }
835 }
836
837 if (parsed.has_mode) {
838 if (chmod(filename, parsed.mode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700839 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
840 filename, parsed.mode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700841 bad++;
842 }
843 }
844
845 if (parsed.has_dmode && S_ISDIR(statptr->st_mode)) {
846 if (chmod(filename, parsed.dmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700847 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
848 filename, parsed.dmode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700849 bad++;
850 }
851 }
852
853 if (parsed.has_fmode && S_ISREG(statptr->st_mode)) {
854 if (chmod(filename, parsed.fmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700855 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700856 filename, parsed.fmode, strerror(errno));
857 bad++;
858 }
859 }
860
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700861 if (parsed.has_capabilities && S_ISREG(statptr->st_mode)) {
862 if (parsed.capabilities == 0) {
863 if ((removexattr(filename, XATTR_NAME_CAPS) == -1) && (errno != ENODATA)) {
864 // Report failure unless it's ENODATA (attribute not set)
Michael Runged4a63422014-10-22 19:48:41 -0700865 uiPrintf(state, "ApplyParsedPerms: removexattr of %s to %" PRIx64 " failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700866 filename, parsed.capabilities, strerror(errno));
867 bad++;
868 }
869 } else {
870 struct vfs_cap_data cap_data;
871 memset(&cap_data, 0, sizeof(cap_data));
872 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
873 cap_data.data[0].permitted = (uint32_t) (parsed.capabilities & 0xffffffff);
874 cap_data.data[0].inheritable = 0;
875 cap_data.data[1].permitted = (uint32_t) (parsed.capabilities >> 32);
876 cap_data.data[1].inheritable = 0;
877 if (setxattr(filename, XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700878 uiPrintf(state, "ApplyParsedPerms: setcap of %s to %" PRIx64 " failed: %s\n",
879 filename, parsed.capabilities, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700880 bad++;
881 }
882 }
883 }
884
885 return bad;
886}
887
888// nftw doesn't allow us to pass along context, so we need to use
889// global variables. *sigh*
890static struct perm_parsed_args recursive_parsed_args;
Michael Runged4a63422014-10-22 19:48:41 -0700891static State* recursive_state;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700892
893static int do_SetMetadataRecursive(const char* filename, const struct stat *statptr,
894 int fileflags, struct FTW *pfwt) {
Michael Runged4a63422014-10-22 19:48:41 -0700895 return ApplyParsedPerms(recursive_state, filename, statptr, recursive_parsed_args);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700896}
897
898static Value* SetMetadataFn(const char* name, State* state, int argc, Expr* argv[]) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700899 int bad = 0;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700900 struct stat sb;
901 Value* result = NULL;
902
903 bool recursive = (strcmp(name, "set_metadata_recursive") == 0);
904
905 if ((argc % 2) != 1) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700906 return ErrorAbort(state, "%s() expects an odd number of arguments, got %d", name, argc);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700907 }
908
909 char** args = ReadVarArgs(state, argc, argv);
910 if (args == NULL) return NULL;
911
912 if (lstat(args[0], &sb) == -1) {
913 result = ErrorAbort(state, "%s: Error on lstat of \"%s\": %s", name, args[0], strerror(errno));
914 goto done;
915 }
916
Tao Baoba9a42a2015-06-23 23:23:33 -0700917 {
918 struct perm_parsed_args parsed = ParsePermArgs(state, argc, args);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700919
Tao Baoba9a42a2015-06-23 23:23:33 -0700920 if (recursive) {
921 recursive_parsed_args = parsed;
922 recursive_state = state;
923 bad += nftw(args[0], do_SetMetadataRecursive, 30, FTW_CHDIR | FTW_DEPTH | FTW_PHYS);
924 memset(&recursive_parsed_args, 0, sizeof(recursive_parsed_args));
925 recursive_state = NULL;
926 } else {
927 bad += ApplyParsedPerms(state, args[0], &sb, parsed);
928 }
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700929 }
930
931done:
Tao Baoba9a42a2015-06-23 23:23:33 -0700932 for (int i = 0; i < argc; ++i) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700933 free(args[i]);
934 }
935 free(args);
936
937 if (result != NULL) {
938 return result;
939 }
940
941 if (bad > 0) {
942 return ErrorAbort(state, "%s: some changes failed", name);
943 }
944
945 return StringValue(strdup(""));
946}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700947
Doug Zongker512536a2010-02-17 16:11:44 -0800948Value* GetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700949 if (argc != 1) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700950 return ErrorAbort(state, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700951 }
Tao Baoba9a42a2015-06-23 23:23:33 -0700952 char* key = Evaluate(state, argv[0]);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700953 if (key == NULL) return NULL;
954
955 char value[PROPERTY_VALUE_MAX];
956 property_get(key, value, "");
957 free(key);
958
Doug Zongker512536a2010-02-17 16:11:44 -0800959 return StringValue(strdup(value));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700960}
961
962
Doug Zongker47cace92009-06-18 10:11:50 -0700963// file_getprop(file, key)
964//
965// interprets 'file' as a getprop-style file (key=value pairs, one
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700966// per line. # comment lines,blank lines, lines without '=' ignored),
967// and returns the value for 'key' (or "" if it isn't defined).
Doug Zongker512536a2010-02-17 16:11:44 -0800968Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker47cace92009-06-18 10:11:50 -0700969 char* result = NULL;
970 char* buffer = NULL;
971 char* filename;
972 char* key;
973 if (ReadArgs(state, argv, 2, &filename, &key) < 0) {
974 return NULL;
975 }
976
977 struct stat st;
978 if (stat(filename, &st) < 0) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700979 ErrorAbort(state, "%s: failed to stat \"%s\": %s", name, filename, strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700980 goto done;
981 }
982
983#define MAX_FILE_GETPROP_SIZE 65536
984
985 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700986 ErrorAbort(state, "%s too large for %s (max %d)", filename, name, MAX_FILE_GETPROP_SIZE);
Doug Zongker47cace92009-06-18 10:11:50 -0700987 goto done;
988 }
989
Tao Baoba9a42a2015-06-23 23:23:33 -0700990 buffer = reinterpret_cast<char*>(malloc(st.st_size+1));
Doug Zongker47cace92009-06-18 10:11:50 -0700991 if (buffer == NULL) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700992 ErrorAbort(state, "%s: failed to alloc %lld bytes", name, (long long)st.st_size+1);
Doug Zongker47cace92009-06-18 10:11:50 -0700993 goto done;
994 }
995
Tao Baoba9a42a2015-06-23 23:23:33 -0700996 FILE* f;
997 f = fopen(filename, "rb");
Doug Zongker47cace92009-06-18 10:11:50 -0700998 if (f == NULL) {
Tao Baoba9a42a2015-06-23 23:23:33 -0700999 ErrorAbort(state, "%s: failed to open %s: %s", name, filename, strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -07001000 goto done;
1001 }
1002
Jed Estepf1fc48c2015-12-15 16:04:53 -08001003 if (ota_fread(buffer, 1, st.st_size, f) != static_cast<size_t>(st.st_size)) {
Doug Zongkera23075f2012-08-06 16:19:09 -07001004 ErrorAbort(state, "%s: failed to read %lld bytes from %s",
Mark Salyzynf3bb31c2014-03-14 09:39:48 -07001005 name, (long long)st.st_size+1, filename);
Doug Zongker47cace92009-06-18 10:11:50 -07001006 fclose(f);
1007 goto done;
1008 }
1009 buffer[st.st_size] = '\0';
1010
1011 fclose(f);
1012
Tao Baoba9a42a2015-06-23 23:23:33 -07001013 char* line;
1014 line = strtok(buffer, "\n");
Doug Zongker47cace92009-06-18 10:11:50 -07001015 do {
1016 // skip whitespace at start of line
1017 while (*line && isspace(*line)) ++line;
1018
1019 // comment or blank line: skip to next line
1020 if (*line == '\0' || *line == '#') continue;
1021
1022 char* equal = strchr(line, '=');
1023 if (equal == NULL) {
Michael Rungeaa1a31e2014-04-25 18:47:18 -07001024 continue;
Doug Zongker47cace92009-06-18 10:11:50 -07001025 }
1026
1027 // trim whitespace between key and '='
1028 char* key_end = equal-1;
1029 while (key_end > line && isspace(*key_end)) --key_end;
1030 key_end[1] = '\0';
1031
1032 // not the key we're looking for
1033 if (strcmp(key, line) != 0) continue;
1034
1035 // skip whitespace after the '=' to the start of the value
1036 char* val_start = equal+1;
1037 while(*val_start && isspace(*val_start)) ++val_start;
1038
1039 // trim trailing whitespace
1040 char* val_end = val_start + strlen(val_start)-1;
1041 while (val_end > val_start && isspace(*val_end)) --val_end;
1042 val_end[1] = '\0';
1043
1044 result = strdup(val_start);
1045 break;
1046
1047 } while ((line = strtok(NULL, "\n")));
1048
1049 if (result == NULL) result = strdup("");
1050
1051 done:
1052 free(filename);
1053 free(key);
1054 free(buffer);
Doug Zongker512536a2010-02-17 16:11:44 -08001055 return StringValue(result);
Doug Zongker47cace92009-06-18 10:11:50 -07001056}
1057
Doug Zongker179b2d92011-04-12 15:49:04 -07001058// write_raw_image(filename_or_blob, partition)
Doug Zongker512536a2010-02-17 16:11:44 -08001059Value* WriteRawImageFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -07001060 char* result = NULL;
1061
Doug Zongker179b2d92011-04-12 15:49:04 -07001062 Value* partition_value;
1063 Value* contents;
1064 if (ReadValueArgs(state, argv, 2, &contents, &partition_value) < 0) {
Doug Zongker8edb00c2009-06-11 17:21:44 -07001065 return NULL;
1066 }
1067
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001068 char* partition = NULL;
Doug Zongker179b2d92011-04-12 15:49:04 -07001069 if (partition_value->type != VAL_STRING) {
1070 ErrorAbort(state, "partition argument to %s must be string", name);
1071 goto done;
1072 }
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001073 partition = partition_value->data;
Doug Zongker8edb00c2009-06-11 17:21:44 -07001074 if (strlen(partition) == 0) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001075 ErrorAbort(state, "partition argument to %s can't be empty", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001076 goto done;
1077 }
Doug Zongker179b2d92011-04-12 15:49:04 -07001078 if (contents->type == VAL_STRING && strlen((char*) contents->data) == 0) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001079 ErrorAbort(state, "file argument to %s can't be empty", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001080 goto done;
1081 }
1082
1083 mtd_scan_partitions();
Tao Baoba9a42a2015-06-23 23:23:33 -07001084 const MtdPartition* mtd;
1085 mtd = mtd_find_partition_by_name(partition);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001086 if (mtd == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001087 printf("%s: no mtd partition named \"%s\"\n", name, partition);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001088 result = strdup("");
1089 goto done;
1090 }
1091
Tao Baoba9a42a2015-06-23 23:23:33 -07001092 MtdWriteContext* ctx;
1093 ctx = mtd_write_partition(mtd);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001094 if (ctx == NULL) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001095 printf("%s: can't write mtd partition \"%s\"\n",
Doug Zongker8edb00c2009-06-11 17:21:44 -07001096 name, partition);
1097 result = strdup("");
1098 goto done;
1099 }
1100
1101 bool success;
1102
Doug Zongker179b2d92011-04-12 15:49:04 -07001103 if (contents->type == VAL_STRING) {
1104 // we're given a filename as the contents
1105 char* filename = contents->data;
Jed Estepf1fc48c2015-12-15 16:04:53 -08001106 FILE* f = ota_fopen(filename, "rb");
Doug Zongker179b2d92011-04-12 15:49:04 -07001107 if (f == NULL) {
Tao Baoba9a42a2015-06-23 23:23:33 -07001108 printf("%s: can't open %s: %s\n", name, filename, strerror(errno));
Doug Zongker179b2d92011-04-12 15:49:04 -07001109 result = strdup("");
1110 goto done;
Doug Zongker8edb00c2009-06-11 17:21:44 -07001111 }
Doug Zongker179b2d92011-04-12 15:49:04 -07001112
1113 success = true;
Tao Baoba9a42a2015-06-23 23:23:33 -07001114 char* buffer = reinterpret_cast<char*>(malloc(BUFSIZ));
Doug Zongker179b2d92011-04-12 15:49:04 -07001115 int read;
Jed Estepf1fc48c2015-12-15 16:04:53 -08001116 while (success && (read = ota_fread(buffer, 1, BUFSIZ, f)) > 0) {
Doug Zongker179b2d92011-04-12 15:49:04 -07001117 int wrote = mtd_write_data(ctx, buffer, read);
1118 success = success && (wrote == read);
1119 }
1120 free(buffer);
Jed Estepf1fc48c2015-12-15 16:04:53 -08001121 ota_fclose(f);
Doug Zongker179b2d92011-04-12 15:49:04 -07001122 } else {
1123 // we're given a blob as the contents
1124 ssize_t wrote = mtd_write_data(ctx, contents->data, contents->size);
1125 success = (wrote == contents->size);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001126 }
Doug Zongker179b2d92011-04-12 15:49:04 -07001127 if (!success) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001128 printf("mtd_write_data to %s failed: %s\n",
Doug Zongker179b2d92011-04-12 15:49:04 -07001129 partition, strerror(errno));
1130 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001131
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001132 if (mtd_erase_blocks(ctx, -1) == -1) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001133 printf("%s: error erasing blocks of %s\n", name, partition);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001134 }
1135 if (mtd_write_close(ctx) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001136 printf("%s: error closing write of %s\n", name, partition);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001137 }
1138
Doug Zongker179b2d92011-04-12 15:49:04 -07001139 printf("%s %s partition\n",
1140 success ? "wrote" : "failed to write", partition);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001141
1142 result = success ? partition : strdup("");
1143
1144done:
Doug Zongker179b2d92011-04-12 15:49:04 -07001145 if (result != partition) FreeValue(partition_value);
1146 FreeValue(contents);
Doug Zongker512536a2010-02-17 16:11:44 -08001147 return StringValue(result);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001148}
1149
Doug Zongker8edb00c2009-06-11 17:21:44 -07001150// apply_patch_space(bytes)
Doug Zongkerc4351c72010-02-22 14:46:32 -08001151Value* ApplyPatchSpaceFn(const char* name, State* state,
1152 int argc, Expr* argv[]) {
1153 char* bytes_str;
1154 if (ReadArgs(state, argv, 1, &bytes_str) < 0) {
1155 return NULL;
1156 }
1157
Tao Baob15fd222015-09-24 11:10:51 -07001158 size_t bytes;
1159 if (!android::base::ParseUint(bytes_str, &bytes)) {
Tao Baoba9a42a2015-06-23 23:23:33 -07001160 ErrorAbort(state, "%s(): can't parse \"%s\" as byte count\n\n", name, bytes_str);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001161 free(bytes_str);
Tao Baob15fd222015-09-24 11:10:51 -07001162 return nullptr;
Doug Zongkerc4351c72010-02-22 14:46:32 -08001163 }
1164
1165 return StringValue(strdup(CacheSizeCheck(bytes) ? "" : "t"));
1166}
1167
Doug Zongker52b40362014-02-10 15:30:30 -08001168// apply_patch(file, size, init_sha1, tgt_sha1, patch)
1169
Doug Zongker512536a2010-02-17 16:11:44 -08001170Value* ApplyPatchFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc4351c72010-02-22 14:46:32 -08001171 if (argc < 6 || (argc % 2) == 1) {
1172 return ErrorAbort(state, "%s(): expected at least 6 args and an "
1173 "even number, got %d",
1174 name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001175 }
1176
Doug Zongkerc4351c72010-02-22 14:46:32 -08001177 char* source_filename;
1178 char* target_filename;
1179 char* target_sha1;
1180 char* target_size_str;
1181 if (ReadArgs(state, argv, 4, &source_filename, &target_filename,
1182 &target_sha1, &target_size_str) < 0) {
1183 return NULL;
Doug Zongker8edb00c2009-06-11 17:21:44 -07001184 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001185
Tao Baob15fd222015-09-24 11:10:51 -07001186 size_t target_size;
1187 if (!android::base::ParseUint(target_size_str, &target_size)) {
1188 ErrorAbort(state, "%s(): can't parse \"%s\" as byte count", name, target_size_str);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001189 free(source_filename);
1190 free(target_filename);
1191 free(target_sha1);
1192 free(target_size_str);
Tao Baob15fd222015-09-24 11:10:51 -07001193 return nullptr;
Doug Zongkerc4351c72010-02-22 14:46:32 -08001194 }
1195
1196 int patchcount = (argc-4) / 2;
1197 Value** patches = ReadValueVarArgs(state, argc-4, argv+4);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001198
1199 int i;
Doug Zongkerc4351c72010-02-22 14:46:32 -08001200 for (i = 0; i < patchcount; ++i) {
1201 if (patches[i*2]->type != VAL_STRING) {
1202 ErrorAbort(state, "%s(): sha-1 #%d is not string", name, i);
1203 break;
1204 }
1205 if (patches[i*2+1]->type != VAL_BLOB) {
1206 ErrorAbort(state, "%s(): patch #%d is not blob", name, i);
1207 break;
1208 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001209 }
Doug Zongkerc4351c72010-02-22 14:46:32 -08001210 if (i != patchcount) {
1211 for (i = 0; i < patchcount*2; ++i) {
1212 FreeValue(patches[i]);
1213 }
1214 free(patches);
1215 return NULL;
1216 }
Doug Zongker8edb00c2009-06-11 17:21:44 -07001217
Tao Baoba9a42a2015-06-23 23:23:33 -07001218 char** patch_sha_str = reinterpret_cast<char**>(malloc(patchcount * sizeof(char*)));
Doug Zongkerc4351c72010-02-22 14:46:32 -08001219 for (i = 0; i < patchcount; ++i) {
1220 patch_sha_str[i] = patches[i*2]->data;
1221 patches[i*2]->data = NULL;
1222 FreeValue(patches[i*2]);
1223 patches[i] = patches[i*2+1];
Doug Zongker8edb00c2009-06-11 17:21:44 -07001224 }
Doug Zongkerc4351c72010-02-22 14:46:32 -08001225
1226 int result = applypatch(source_filename, target_filename,
1227 target_sha1, target_size,
Doug Zongkera3ccba62012-08-20 15:28:02 -07001228 patchcount, patch_sha_str, patches, NULL);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001229
1230 for (i = 0; i < patchcount; ++i) {
1231 FreeValue(patches[i]);
1232 }
1233 free(patch_sha_str);
1234 free(patches);
1235
1236 return StringValue(strdup(result == 0 ? "t" : ""));
1237}
1238
1239// apply_patch_check(file, [sha1_1, ...])
1240Value* ApplyPatchCheckFn(const char* name, State* state,
1241 int argc, Expr* argv[]) {
1242 if (argc < 1) {
1243 return ErrorAbort(state, "%s(): expected at least 1 arg, got %d",
1244 name, argc);
1245 }
1246
1247 char* filename;
1248 if (ReadArgs(state, argv, 1, &filename) < 0) {
1249 return NULL;
1250 }
1251
1252 int patchcount = argc-1;
1253 char** sha1s = ReadVarArgs(state, argc-1, argv+1);
1254
1255 int result = applypatch_check(filename, patchcount, sha1s);
1256
1257 int i;
1258 for (i = 0; i < patchcount; ++i) {
1259 free(sha1s[i]);
1260 }
1261 free(sha1s);
1262
1263 return StringValue(strdup(result == 0 ? "t" : ""));
Doug Zongker8edb00c2009-06-11 17:21:44 -07001264}
1265
Tao Bao1107d962015-09-09 17:16:55 -07001266// This is the updater side handler for ui_print() in edify script. Contents
1267// will be sent over to the recovery side for on-screen display.
Doug Zongker512536a2010-02-17 16:11:44 -08001268Value* UIPrintFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001269 char** args = ReadVarArgs(state, argc, argv);
1270 if (args == NULL) {
1271 return NULL;
1272 }
1273
Tao Bao1107d962015-09-09 17:16:55 -07001274 std::string buffer;
1275 for (int i = 0; i < argc; ++i) {
1276 buffer += args[i];
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001277 free(args[i]);
1278 }
1279 free(args);
Tao Bao1107d962015-09-09 17:16:55 -07001280
1281 buffer += "\n";
Michael Runged4a63422014-10-22 19:48:41 -07001282 uiPrint(state, buffer);
Tao Bao1107d962015-09-09 17:16:55 -07001283 return StringValue(strdup(buffer.c_str()));
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001284}
1285
Doug Zongkerd0181b82011-10-19 10:51:12 -07001286Value* WipeCacheFn(const char* name, State* state, int argc, Expr* argv[]) {
1287 if (argc != 0) {
1288 return ErrorAbort(state, "%s() expects no args, got %d", name, argc);
1289 }
1290 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "wipe_cache\n");
1291 return StringValue(strdup("t"));
1292}
1293
Doug Zongker512536a2010-02-17 16:11:44 -08001294Value* RunProgramFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001295 if (argc < 1) {
1296 return ErrorAbort(state, "%s() expects at least 1 arg", name);
1297 }
1298 char** args = ReadVarArgs(state, argc, argv);
1299 if (args == NULL) {
1300 return NULL;
1301 }
1302
Tao Baoba9a42a2015-06-23 23:23:33 -07001303 char** args2 = reinterpret_cast<char**>(malloc(sizeof(char*) * (argc+1)));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001304 memcpy(args2, args, sizeof(char*) * argc);
1305 args2[argc] = NULL;
1306
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001307 printf("about to run program [%s] with %d args\n", args2[0], argc);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001308
1309 pid_t child = fork();
1310 if (child == 0) {
1311 execv(args2[0], args2);
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001312 printf("run_program: execv failed: %s\n", strerror(errno));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001313 _exit(1);
1314 }
1315 int status;
1316 waitpid(child, &status, 0);
1317 if (WIFEXITED(status)) {
1318 if (WEXITSTATUS(status) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001319 printf("run_program: child exited with status %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001320 WEXITSTATUS(status));
1321 }
1322 } else if (WIFSIGNALED(status)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001323 printf("run_program: child terminated by signal %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001324 WTERMSIG(status));
1325 }
1326
1327 int i;
1328 for (i = 0; i < argc; ++i) {
1329 free(args[i]);
1330 }
1331 free(args);
1332 free(args2);
1333
1334 char buffer[20];
1335 sprintf(buffer, "%d", status);
1336
Doug Zongker512536a2010-02-17 16:11:44 -08001337 return StringValue(strdup(buffer));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001338}
1339
Doug Zongker512536a2010-02-17 16:11:44 -08001340// sha1_check(data)
1341// to return the sha1 of the data (given in the format returned by
1342// read_file).
1343//
1344// sha1_check(data, sha1_hex, [sha1_hex, ...])
1345// returns the sha1 of the file if it matches any of the hex
1346// strings passed, or "" if it does not equal any of them.
1347//
1348Value* Sha1CheckFn(const char* name, State* state, int argc, Expr* argv[]) {
1349 if (argc < 1) {
1350 return ErrorAbort(state, "%s() expects at least 1 arg", name);
1351 }
1352
1353 Value** args = ReadValueVarArgs(state, argc, argv);
1354 if (args == NULL) {
1355 return NULL;
1356 }
1357
1358 if (args[0]->size < 0) {
Doug Zongker512536a2010-02-17 16:11:44 -08001359 return StringValue(strdup(""));
1360 }
1361 uint8_t digest[SHA_DIGEST_SIZE];
Doug Zongkerbac7fba2013-04-10 11:32:17 -07001362 SHA_hash(args[0]->data, args[0]->size, digest);
Doug Zongker512536a2010-02-17 16:11:44 -08001363 FreeValue(args[0]);
1364
1365 if (argc == 1) {
1366 return StringValue(PrintSha1(digest));
1367 }
1368
1369 int i;
Tao Baoba9a42a2015-06-23 23:23:33 -07001370 uint8_t* arg_digest = reinterpret_cast<uint8_t*>(malloc(SHA_DIGEST_SIZE));
Doug Zongker512536a2010-02-17 16:11:44 -08001371 for (i = 1; i < argc; ++i) {
1372 if (args[i]->type != VAL_STRING) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001373 printf("%s(): arg %d is not a string; skipping",
Doug Zongker512536a2010-02-17 16:11:44 -08001374 name, i);
1375 } else if (ParseSha1(args[i]->data, arg_digest) != 0) {
1376 // Warn about bad args and skip them.
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001377 printf("%s(): error parsing \"%s\" as sha-1; skipping",
1378 name, args[i]->data);
Doug Zongker512536a2010-02-17 16:11:44 -08001379 } else if (memcmp(digest, arg_digest, SHA_DIGEST_SIZE) == 0) {
1380 break;
1381 }
1382 FreeValue(args[i]);
1383 }
1384 if (i >= argc) {
1385 // Didn't match any of the hex strings; return false.
1386 return StringValue(strdup(""));
1387 }
1388 // Found a match; free all the remaining arguments and return the
1389 // matched one.
1390 int j;
1391 for (j = i+1; j < argc; ++j) {
1392 FreeValue(args[j]);
1393 }
1394 return args[i];
1395}
1396
Hristo Bojinovdb314d62010-08-02 10:29:49 -07001397// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -08001398// is actually a FileContents*).
1399Value* ReadFileFn(const char* name, State* state, int argc, Expr* argv[]) {
1400 if (argc != 1) {
1401 return ErrorAbort(state, "%s() expects 1 arg, got %d", name, argc);
1402 }
1403 char* filename;
1404 if (ReadArgs(state, argv, 1, &filename) < 0) return NULL;
1405
Tao Baoba9a42a2015-06-23 23:23:33 -07001406 Value* v = reinterpret_cast<Value*>(malloc(sizeof(Value)));
Doug Zongker512536a2010-02-17 16:11:44 -08001407 v->type = VAL_BLOB;
1408
1409 FileContents fc;
Doug Zongkera1bc1482014-02-13 15:18:19 -08001410 if (LoadFileContents(filename, &fc) != 0) {
Doug Zongker512536a2010-02-17 16:11:44 -08001411 free(filename);
Michael Runge6eed2242013-12-13 17:13:11 -08001412 v->size = -1;
1413 v->data = NULL;
Doug Zongker512536a2010-02-17 16:11:44 -08001414 free(fc.data);
Michael Runge6eed2242013-12-13 17:13:11 -08001415 return v;
Doug Zongker512536a2010-02-17 16:11:44 -08001416 }
1417
1418 v->size = fc.size;
1419 v->data = (char*)fc.data;
1420
1421 free(filename);
1422 return v;
1423}
Doug Zongker8edb00c2009-06-11 17:21:44 -07001424
Doug Zongkerc87bab12013-11-25 13:53:25 -08001425// Immediately reboot the device. Recovery is not finished normally,
1426// so if you reboot into recovery it will re-start applying the
1427// current package (because nothing has cleared the copy of the
1428// arguments stored in the BCB).
1429//
1430// The argument is the partition name passed to the android reboot
1431// property. It can be "recovery" to boot from the recovery
1432// partition, or "" (empty string) to boot from the regular boot
1433// partition.
1434Value* RebootNowFn(const char* name, State* state, int argc, Expr* argv[]) {
1435 if (argc != 2) {
1436 return ErrorAbort(state, "%s() expects 2 args, got %d", name, argc);
1437 }
1438
1439 char* filename;
1440 char* property;
1441 if (ReadArgs(state, argv, 2, &filename, &property) < 0) return NULL;
1442
1443 char buffer[80];
1444
1445 // zero out the 'command' field of the bootloader message.
1446 memset(buffer, 0, sizeof(((struct bootloader_message*)0)->command));
1447 FILE* f = fopen(filename, "r+b");
1448 fseek(f, offsetof(struct bootloader_message, command), SEEK_SET);
Jed Estepf1fc48c2015-12-15 16:04:53 -08001449 ota_fwrite(buffer, sizeof(((struct bootloader_message*)0)->command), 1, f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001450 fclose(f);
1451 free(filename);
1452
1453 strcpy(buffer, "reboot,");
1454 if (property != NULL) {
1455 strncat(buffer, property, sizeof(buffer)-10);
1456 }
1457
1458 property_set(ANDROID_RB_PROPERTY, buffer);
1459
1460 sleep(5);
1461 free(property);
1462 ErrorAbort(state, "%s() failed to reboot", name);
1463 return NULL;
1464}
1465
1466// Store a string value somewhere that future invocations of recovery
1467// can access it. This value is called the "stage" and can be used to
1468// drive packages that need to do reboots in the middle of
1469// installation and keep track of where they are in the multi-stage
1470// install.
1471//
1472// The first argument is the block device for the misc partition
1473// ("/misc" in the fstab), which is where this value is stored. The
1474// second argument is the string to store; it should not exceed 31
1475// bytes.
1476Value* SetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
1477 if (argc != 2) {
1478 return ErrorAbort(state, "%s() expects 2 args, got %d", name, argc);
1479 }
1480
1481 char* filename;
1482 char* stagestr;
1483 if (ReadArgs(state, argv, 2, &filename, &stagestr) < 0) return NULL;
1484
1485 // Store this value in the misc partition, immediately after the
1486 // bootloader message that the main recovery uses to save its
1487 // arguments in case of the device restarting midway through
1488 // package installation.
1489 FILE* f = fopen(filename, "r+b");
1490 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
1491 int to_write = strlen(stagestr)+1;
1492 int max_size = sizeof(((struct bootloader_message*)0)->stage);
1493 if (to_write > max_size) {
1494 to_write = max_size;
1495 stagestr[max_size-1] = 0;
1496 }
Jed Estepf1fc48c2015-12-15 16:04:53 -08001497 ota_fwrite(stagestr, to_write, 1, f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001498 fclose(f);
1499
1500 free(stagestr);
1501 return StringValue(filename);
1502}
1503
1504// Return the value most recently saved with SetStageFn. The argument
1505// is the block device for the misc partition.
1506Value* GetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001507 if (argc != 1) {
Doug Zongkerc87bab12013-11-25 13:53:25 -08001508 return ErrorAbort(state, "%s() expects 1 arg, got %d", name, argc);
1509 }
1510
1511 char* filename;
1512 if (ReadArgs(state, argv, 1, &filename) < 0) return NULL;
1513
1514 char buffer[sizeof(((struct bootloader_message*)0)->stage)];
1515 FILE* f = fopen(filename, "rb");
1516 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Jed Estepf1fc48c2015-12-15 16:04:53 -08001517 ota_fread(buffer, sizeof(buffer), 1, f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001518 fclose(f);
1519 buffer[sizeof(buffer)-1] = '\0';
1520
1521 return StringValue(strdup(buffer));
1522}
1523
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001524Value* WipeBlockDeviceFn(const char* name, State* state, int argc, Expr* argv[]) {
1525 if (argc != 2) {
1526 return ErrorAbort(state, "%s() expects 2 args, got %d", name, argc);
1527 }
1528
1529 char* filename;
1530 char* len_str;
1531 if (ReadArgs(state, argv, 2, &filename, &len_str) < 0) return NULL;
1532
Tao Baob15fd222015-09-24 11:10:51 -07001533 size_t len;
1534 android::base::ParseUint(len_str, &len);
Jed Estepf1fc48c2015-12-15 16:04:53 -08001535 int fd = ota_open(filename, O_WRONLY, 0644);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001536 int success = wipe_block_device(fd, len);
1537
1538 free(filename);
1539 free(len_str);
1540
Jed Estepf1fc48c2015-12-15 16:04:53 -08001541 ota_close(fd);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001542
1543 return StringValue(strdup(success ? "t" : ""));
1544}
1545
Doug Zongkerc704e062014-05-23 08:40:35 -07001546Value* EnableRebootFn(const char* name, State* state, int argc, Expr* argv[]) {
1547 if (argc != 0) {
1548 return ErrorAbort(state, "%s() expects no args, got %d", name, argc);
1549 }
1550 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
1551 fprintf(ui->cmd_pipe, "enable_reboot\n");
1552 return StringValue(strdup("t"));
1553}
1554
Michael Rungeacf47db2014-11-21 00:12:28 -08001555Value* Tune2FsFn(const char* name, State* state, int argc, Expr* argv[]) {
1556 if (argc == 0) {
1557 return ErrorAbort(state, "%s() expects args, got %d", name, argc);
1558 }
1559
1560 char** args = ReadVarArgs(state, argc, argv);
1561 if (args == NULL) {
1562 return ErrorAbort(state, "%s() could not read args", name);
1563 }
1564
Tao Baoba9a42a2015-06-23 23:23:33 -07001565 char** args2 = reinterpret_cast<char**>(malloc(sizeof(char*) * (argc+1)));
Michael Rungeacf47db2014-11-21 00:12:28 -08001566 // Tune2fs expects the program name as its args[0]
1567 args2[0] = strdup(name);
Tao Baoba9a42a2015-06-23 23:23:33 -07001568 for (int i = 0; i < argc; ++i) {
Michael Rungeacf47db2014-11-21 00:12:28 -08001569 args2[i + 1] = args[i];
1570 }
1571 int result = tune2fs_main(argc + 1, args2);
Tao Baoba9a42a2015-06-23 23:23:33 -07001572 for (int i = 0; i < argc; ++i) {
Michael Rungeacf47db2014-11-21 00:12:28 -08001573 free(args[i]);
1574 }
1575 free(args);
1576
1577 free(args2[0]);
1578 free(args2);
1579 if (result != 0) {
1580 return ErrorAbort(state, "%s() returned error code %d", name, result);
1581 }
1582 return StringValue(strdup("t"));
1583}
1584
Doug Zongker9931f7f2009-06-10 14:11:53 -07001585void RegisterInstallFunctions() {
1586 RegisterFunction("mount", MountFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001587 RegisterFunction("is_mounted", IsMountedFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001588 RegisterFunction("unmount", UnmountFn);
1589 RegisterFunction("format", FormatFn);
1590 RegisterFunction("show_progress", ShowProgressFn);
Doug Zongkerfbf3c102009-06-24 09:36:20 -07001591 RegisterFunction("set_progress", SetProgressFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001592 RegisterFunction("delete", DeleteFn);
1593 RegisterFunction("delete_recursive", DeleteFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001594 RegisterFunction("package_extract_dir", PackageExtractDirFn);
1595 RegisterFunction("package_extract_file", PackageExtractFileFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001596 RegisterFunction("symlink", SymlinkFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001597
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001598 // Usage:
1599 // set_metadata("filename", "key1", "value1", "key2", "value2", ...)
1600 // Example:
1601 // set_metadata("/system/bin/netcfg", "uid", 0, "gid", 3003, "mode", 02750, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1602 RegisterFunction("set_metadata", SetMetadataFn);
1603
1604 // Usage:
1605 // set_metadata_recursive("dirname", "key1", "value1", "key2", "value2", ...)
1606 // Example:
1607 // set_metadata_recursive("/system", "uid", 0, "gid", 0, "fmode", 0644, "dmode", 0755, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1608 RegisterFunction("set_metadata_recursive", SetMetadataFn);
1609
Doug Zongker8edb00c2009-06-11 17:21:44 -07001610 RegisterFunction("getprop", GetPropFn);
Doug Zongker47cace92009-06-18 10:11:50 -07001611 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001612 RegisterFunction("write_raw_image", WriteRawImageFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001613
1614 RegisterFunction("apply_patch", ApplyPatchFn);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001615 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1616 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001617
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001618 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001619
Doug Zongker512536a2010-02-17 16:11:44 -08001620 RegisterFunction("read_file", ReadFileFn);
1621 RegisterFunction("sha1_check", Sha1CheckFn);
Michael Rungece7ca712013-11-06 17:42:20 -08001622 RegisterFunction("rename", RenameFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001623
Doug Zongkerd0181b82011-10-19 10:51:12 -07001624 RegisterFunction("wipe_cache", WipeCacheFn);
1625
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001626 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001627
1628 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001629
1630 RegisterFunction("reboot_now", RebootNowFn);
1631 RegisterFunction("get_stage", GetStageFn);
1632 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001633
1634 RegisterFunction("enable_reboot", EnableRebootFn);
Michael Rungeacf47db2014-11-21 00:12:28 -08001635 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001636}