blob: b885f864ed9a37785aa0b76af56b89c02b72d1fd [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tao Bao0c7839a2016-10-10 15:48:37 -070017#include "updater/install.h"
18
Doug Zongkerfbf3c102009-06-24 09:36:20 -070019#include <ctype.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070020#include <errno.h>
Tao Bao361342c2016-02-08 11:15:50 -080021#include <fcntl.h>
22#include <ftw.h>
23#include <inttypes.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070024#include <stdarg.h>
Doug Zongkerfbf3c102009-06-24 09:36:20 -070025#include <stdio.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070026#include <stdlib.h>
27#include <string.h>
Tao Bao361342c2016-02-08 11:15:50 -080028#include <sys/capability.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070029#include <sys/mount.h>
30#include <sys/stat.h>
31#include <sys/types.h>
Doug Zongkera3f89ea2009-09-10 14:10:48 -070032#include <sys/wait.h>
Nick Kralevich5dbdef02013-09-07 14:41:06 -070033#include <sys/xattr.h>
Tao Bao361342c2016-02-08 11:15:50 -080034#include <time.h>
35#include <unistd.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070036#include <utime.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070037
Yabin Cui64be2132016-02-03 18:16:02 -080038#include <memory>
Tao Bao361342c2016-02-08 11:15:50 -080039#include <string>
Yabin Cui64be2132016-02-03 18:16:02 -080040#include <vector>
41
Elliott Hughes4b166f02015-12-04 15:30:20 -080042#include <android-base/parseint.h>
Tianjie Xu5fe280a2016-10-17 18:15:20 -070043#include <android-base/parsedouble.h>
Elliott Hughescb220402016-09-23 15:30:55 -070044#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080045#include <android-base/strings.h>
46#include <android-base/stringprintf.h>
Tao Bao0c7839a2016-10-10 15:48:37 -070047#include <cutils/android_reboot.h>
Tao Baode40ba52016-10-05 23:17:01 -070048#include <ext4_utils/make_ext4fs.h>
49#include <ext4_utils/wipe.h>
Tao Bao361342c2016-02-08 11:15:50 -080050#include <openssl/sha.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070051#include <selinux/label.h>
52#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070053#include <ziparchive/zip_archive.h>
Tao Bao1107d962015-09-09 17:16:55 -070054
Doug Zongkerc87bab12013-11-25 13:53:25 -080055#include "applypatch/applypatch.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070056#include "bootloader.h"
Doug Zongker9931f7f2009-06-10 14:11:53 -070057#include "edify/expr.h"
Tianjie Xu16255832016-04-30 11:49:59 -070058#include "error_code.h"
Elliott Hughes63a31922016-06-09 17:41:22 -070059#include "mounts.h"
Jed Estep39c1b5e2015-12-15 16:04:53 -080060#include "ota_io.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070061#include "otautil/DirUtil.h"
62#include "otautil/ZipUtil.h"
Tao Bao361342c2016-02-08 11:15:50 -080063#include "print_sha1.h"
Michael Rungeacf47db2014-11-21 00:12:28 -080064#include "tune2fs.h"
Tao Bao0c7839a2016-10-10 15:48:37 -070065#include "updater/updater.h"
Doug Zongker8edb00c2009-06-11 17:21:44 -070066
Tao Bao1107d962015-09-09 17:16:55 -070067// Send over the buffer to recovery though the command pipe.
68static void uiPrint(State* state, const std::string& buffer) {
Tao Bao0831d0b2016-11-03 23:25:04 -070069 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070070
Tao Bao1107d962015-09-09 17:16:55 -070071 // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "".
72 // So skip sending empty strings to UI.
73 std::vector<std::string> lines = android::base::Split(buffer, "\n");
74 for (auto& line: lines) {
75 if (!line.empty()) {
76 fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str());
77 fprintf(ui->cmd_pipe, "ui_print\n");
78 }
79 }
80
81 // On the updater side, we need to dump the contents to stderr (which has
82 // been redirected to the log file). Because the recovery will only print
83 // the contents to screen when processing pipe command ui_print.
84 fprintf(stderr, "%s", buffer.c_str());
Michael Runged4a63422014-10-22 19:48:41 -070085}
86
Elliott Hughes83ce7552016-06-30 09:28:42 -070087void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
Tao Bao1107d962015-09-09 17:16:55 -070088 std::string error_msg;
89
Michael Runged4a63422014-10-22 19:48:41 -070090 va_list ap;
91 va_start(ap, format);
Tao Bao1107d962015-09-09 17:16:55 -070092 android::base::StringAppendV(&error_msg, format, ap);
Michael Runged4a63422014-10-22 19:48:41 -070093 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -070094
Michael Runged4a63422014-10-22 19:48:41 -070095 uiPrint(state, error_msg);
96}
97
Tianjie Xud75003d2016-11-04 11:31:29 -070098static bool is_dir(const std::string& dirpath) {
99 struct stat st;
100 return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode);
101}
102
Tao Bao0c7839a2016-10-10 15:48:37 -0700103// Create all parent directories of name, if necessary.
Tianjie Xud75003d2016-11-04 11:31:29 -0700104static bool make_parents(const std::string& name) {
105 size_t prev_end = 0;
106 while (prev_end < name.size()) {
107 size_t next_end = name.find('/', prev_end + 1);
108 if (next_end == std::string::npos) {
109 break;
Tao Bao0c7839a2016-10-10 15:48:37 -0700110 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700111 std::string dir_path = name.substr(0, next_end);
112 if (!is_dir(dir_path)) {
113 int result = mkdir(dir_path.c_str(), 0700);
114 if (result != 0) {
115 printf("failed to mkdir %s when make parents for %s: %s\n", dir_path.c_str(),
116 name.c_str(), strerror(errno));
117 return false;
118 }
119
120 printf("created [%s]\n", dir_path.c_str());
121 }
122 prev_end = next_end;
Tao Bao0c7839a2016-10-10 15:48:37 -0700123 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700124 return true;
Tao Bao0c7839a2016-10-10 15:48:37 -0700125}
126
Doug Zongker3d177d02010-07-01 09:18:44 -0700127// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -0700128// mount(fs_type, partition_type, location, mount_point, mount_options)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700129//
Doug Zongker3d177d02010-07-01 09:18:44 -0700130// fs_type="ext4" partition_type="EMMC" location=device
Doug Zongker512536a2010-02-17 16:11:44 -0800131Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) {
Michael Runge168f7772014-10-22 17:05:08 -0700132 if (argc != 4 && argc != 5) {
Tianjie Xu16255832016-04-30 11:49:59 -0700133 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700134 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700135
136 std::vector<std::string> args;
137 if (!ReadArgs(state, argc, argv, &args)) {
138 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
139 }
140 const std::string& fs_type = args[0];
141 const std::string& partition_type = args[1];
142 const std::string& location = args[2];
143 const std::string& mount_point = args[3];
144 std::string mount_options;
145
Michael Runge168f7772014-10-22 17:05:08 -0700146 if (argc == 5) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700147 mount_options = args[4];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700148 }
149
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700150 if (fs_type.empty()) {
151 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty",
152 name);
Doug Zongker3d177d02010-07-01 09:18:44 -0700153 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700154 if (partition_type.empty()) {
155 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
156 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700157 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700158 if (location.empty()) {
159 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty",
160 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700161 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700162 if (mount_point.empty()) {
163 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
164 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700165 }
166
Tao Baoba9a42a2015-06-23 23:23:33 -0700167 {
168 char *secontext = NULL;
Stephen Smalley779701d2012-02-09 14:13:23 -0500169
Tao Baoba9a42a2015-06-23 23:23:33 -0700170 if (sehandle) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700171 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
Tao Baoba9a42a2015-06-23 23:23:33 -0700172 setfscreatecon(secontext);
173 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500174
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700175 mkdir(mount_point.c_str(), 0755);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700176
Tao Baoba9a42a2015-06-23 23:23:33 -0700177 if (secontext) {
178 freecon(secontext);
179 setfscreatecon(NULL);
180 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500181 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500182
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700183 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
184 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
Elliott Hughes63a31922016-06-09 17:41:22 -0700185 uiPrintf(state, "%s: failed to mount %s at %s: %s\n",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700186 name, location.c_str(), mount_point.c_str(), strerror(errno));
187 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700188 }
189
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700190 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700191}
192
Doug Zongker8edb00c2009-06-11 17:21:44 -0700193
194// is_mounted(mount_point)
Doug Zongker512536a2010-02-17 16:11:44 -0800195Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700196 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700197 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700198 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700199
200 std::vector<std::string> args;
201 if (!ReadArgs(state, argc, argv, &args)) {
202 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700203 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700204 const std::string& mount_point = args[0];
205 if (mount_point.empty()) {
206 return ErrorAbort(state, kArgsParsingFailure,
207 "mount_point argument to unmount() can't be empty");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700208 }
209
210 scan_mounted_volumes();
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700211 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
212 if (vol == nullptr) {
213 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700214 }
215
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700216 return StringValue(mount_point);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700217}
218
219
Doug Zongker512536a2010-02-17 16:11:44 -0800220Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700221 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700222 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700223 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700224 std::vector<std::string> args;
225 if (!ReadArgs(state, argc, argv, &args)) {
226 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700227 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700228 const std::string& mount_point = args[0];
229 if (mount_point.empty()) {
230 return ErrorAbort(state, kArgsParsingFailure,
231 "mount_point argument to unmount() can't be empty");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700232 }
233
234 scan_mounted_volumes();
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700235 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
236 if (vol == nullptr) {
237 uiPrintf(state, "unmount of %s failed; no such volume\n", mount_point.c_str());
238 return nullptr;
239 } else {
240 int ret = unmount_mounted_volume(vol);
241 if (ret != 0) {
242 uiPrintf(state, "unmount of %s failed (%d): %s\n",
243 mount_point.c_str(), ret, strerror(errno));
Michael Runge5ddf4292014-10-24 14:14:41 -0700244 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700245 }
246
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700247 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700248}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700249
JP Abgrall37aedb32014-06-16 19:07:39 -0700250static int exec_cmd(const char* path, char* const argv[]) {
251 int status;
252 pid_t child;
253 if ((child = vfork()) == 0) {
254 execv(path, argv);
255 _exit(-1);
256 }
257 waitpid(child, &status, 0);
258 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
259 printf("%s failed with status %d\n", path, WEXITSTATUS(status));
260 }
261 return WEXITSTATUS(status);
262}
263
Stephen Smalley779701d2012-02-09 14:13:23 -0500264// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700265//
Stephen Smalley779701d2012-02-09 14:13:23 -0500266// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700267// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
268// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800269// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700270// if fs_size < 0, then reserve that many bytes at the end of the partition (not for "f2fs")
Doug Zongker512536a2010-02-17 16:11:44 -0800271Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
Stephen Smalley516e4e22012-04-03 13:35:11 -0400272 if (argc != 5) {
Tianjie Xu16255832016-04-30 11:49:59 -0700273 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700274 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500275
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700276 std::vector<std::string> args;
277 if (!ReadArgs(state, argc, argv, &args)) {
278 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
279 }
280 const std::string& fs_type = args[0];
281 const std::string& partition_type = args[1];
282 const std::string& location = args[2];
283 const std::string& fs_size = args[3];
284 const std::string& mount_point = args[4];
285
286 if (fs_type.empty()) {
287 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty",
288 name);
289 }
290 if (partition_type.empty()) {
291 return ErrorAbort(state, kArgsParsingFailure,
292 "partition_type argument to %s() can't be empty", name);
293 }
294 if (location.empty()) {
295 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty",
296 name);
297 }
298 if (mount_point.empty()) {
299 return ErrorAbort(state, kArgsParsingFailure,
300 "mount_point argument to %s() can't be empty", name);
Stephen Smalley779701d2012-02-09 14:13:23 -0500301 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700302
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700303 int64_t size;
Tao Baoa659d792016-11-03 23:25:04 -0700304 if (!android::base::ParseInt(fs_size, &size)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700305 return ErrorAbort(state, kArgsParsingFailure,
306 "%s: failed to parse int in %s\n", name, fs_size.c_str());
Doug Zongker9931f7f2009-06-10 14:11:53 -0700307 }
308
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700309 if (fs_type == "ext4") {
310 int status = make_ext4fs(location.c_str(), size, mount_point.c_str(), sehandle);
Doug Zongker3d177d02010-07-01 09:18:44 -0700311 if (status != 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700312 printf("%s: make_ext4fs failed (%d) on %s", name, status, location.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700313 return StringValue("");
Doug Zongker3d177d02010-07-01 09:18:44 -0700314 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700315 return StringValue(location);
316 } else if (fs_type == "f2fs") {
317 if (size < 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700318 printf("%s: fs_size can't be negative for f2fs: %s", name, fs_size.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700319 return StringValue("");
JP Abgrall37aedb32014-06-16 19:07:39 -0700320 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700321 std::string num_sectors = std::to_string(size / 512);
322
JP Abgrall37aedb32014-06-16 19:07:39 -0700323 const char *f2fs_path = "/sbin/mkfs.f2fs";
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700324 const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", location.c_str(),
325 num_sectors.c_str(), nullptr};
JP Abgrall37aedb32014-06-16 19:07:39 -0700326 int status = exec_cmd(f2fs_path, (char* const*)f2fs_argv);
JP Abgrall37aedb32014-06-16 19:07:39 -0700327 if (status != 0) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700328 printf("%s: mkfs.f2fs failed (%d) on %s", name, status, location.c_str());
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700329 return StringValue("");
JP Abgrall37aedb32014-06-16 19:07:39 -0700330 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700331 return StringValue(location);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700332 } else {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700333 printf("%s: unsupported fs_type \"%s\" partition_type \"%s\"",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700334 name, fs_type.c_str(), partition_type.c_str());
Doug Zongker9931f7f2009-06-10 14:11:53 -0700335 }
336
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700337 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700338}
339
Tao Baoa659d792016-11-03 23:25:04 -0700340// rename(src_name, dst_name)
341// Renames src_name to dst_name. It automatically creates the necessary directories for dst_name.
342// Example: rename("system/app/Hangouts/Hangouts.apk", "system/priv-app/Hangouts/Hangouts.apk")
Michael Rungece7ca712013-11-06 17:42:20 -0800343Value* RenameFn(const char* name, State* state, int argc, Expr* argv[]) {
Michael Rungece7ca712013-11-06 17:42:20 -0800344 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700345 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Michael Rungece7ca712013-11-06 17:42:20 -0800346 }
347
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700348 std::vector<std::string> args;
349 if (!ReadArgs(state, argc, argv, &args)) {
350 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
351 }
352 const std::string& src_name = args[0];
Tianjie Xud75003d2016-11-04 11:31:29 -0700353 const std::string& dst_name = args[1];
Michael Rungece7ca712013-11-06 17:42:20 -0800354
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700355 if (src_name.empty()) {
356 return ErrorAbort(state, kArgsParsingFailure, "src_name argument to %s() can't be empty",
357 name);
Michael Rungece7ca712013-11-06 17:42:20 -0800358 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700359 if (dst_name.empty()) {
360 return ErrorAbort(state, kArgsParsingFailure, "dst_name argument to %s() can't be empty",
361 name);
Michael Rungece7ca712013-11-06 17:42:20 -0800362 }
Tianjie Xud75003d2016-11-04 11:31:29 -0700363 if (!make_parents(dst_name)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700364 return ErrorAbort(state, kFileRenameFailure, "Creating parent of %s failed, error %s",
365 dst_name.c_str(), strerror(errno));
366 } else if (access(dst_name.c_str(), F_OK) == 0 && access(src_name.c_str(), F_OK) != 0) {
Michael Runge2f0ef732014-10-22 14:28:23 -0700367 // File was already moved
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700368 return StringValue(dst_name);
369 } else if (rename(src_name.c_str(), dst_name.c_str()) != 0) {
370 return ErrorAbort(state, kFileRenameFailure, "Rename of %s to %s failed, error %s",
371 src_name.c_str(), dst_name.c_str(), strerror(errno));
Michael Rungece7ca712013-11-06 17:42:20 -0800372 }
373
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700374 return StringValue(dst_name);
Michael Rungece7ca712013-11-06 17:42:20 -0800375}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700376
Tao Bao0831d0b2016-11-03 23:25:04 -0700377// delete([filename, ...])
378// Deletes all the filenames listed. Returns the number of files successfully deleted.
379//
380// delete_recursive([dirname, ...])
381// Recursively deletes dirnames and all their contents. Returns the number of directories
382// successfully deleted.
Doug Zongker512536a2010-02-17 16:11:44 -0800383Value* DeleteFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Bao0831d0b2016-11-03 23:25:04 -0700384 std::vector<std::string> paths(argc);
Tao Baoba9a42a2015-06-23 23:23:33 -0700385 for (int i = 0; i < argc; ++i) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700386 if (!Evaluate(state, argv[i], &paths[i])) {
387 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700388 }
389 }
390
391 bool recursive = (strcmp(name, "delete_recursive") == 0);
392
393 int success = 0;
Tao Baoba9a42a2015-06-23 23:23:33 -0700394 for (int i = 0; i < argc; ++i) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700395 if ((recursive ? dirUnlinkHierarchy(paths[i].c_str()) : unlink(paths[i].c_str())) == 0) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700396 ++success;
Tianjie Xuaced5d92016-10-12 10:55:04 -0700397 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700398 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700399
Tao Bao0831d0b2016-11-03 23:25:04 -0700400 return StringValue(std::to_string(success));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700401}
402
Doug Zongker8edb00c2009-06-11 17:21:44 -0700403
Doug Zongker512536a2010-02-17 16:11:44 -0800404Value* ShowProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700405 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700406 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700407 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700408
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700409 std::vector<std::string> args;
410 if (!ReadArgs(state, argc, argv, &args)) {
411 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
412 }
413 const std::string& frac_str = args[0];
414 const std::string& sec_str = args[1];
415
416 double frac;
417 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
418 return ErrorAbort(state, kArgsParsingFailure,
419 "%s: failed to parse double in %s\n", name, frac_str.c_str());
420 }
Tao Baob15fd222015-09-24 11:10:51 -0700421 int sec;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700422 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
423 return ErrorAbort(state, kArgsParsingFailure,
424 "%s: failed to parse int in %s\n", name, sec_str.c_str());
425 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700426
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700427 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700428 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
429
Doug Zongker512536a2010-02-17 16:11:44 -0800430 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700431}
432
Doug Zongker512536a2010-02-17 16:11:44 -0800433Value* SetProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700434 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700435 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700436 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700437
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700438 std::vector<std::string> args;
439 if (!ReadArgs(state, 1, argv, &args)) {
440 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
441 }
442 const std::string& frac_str = args[0];
443
444 double frac;
445 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
446 return ErrorAbort(state, kArgsParsingFailure,
447 "%s: failed to parse double in %s\n", name, frac_str.c_str());
448 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700449
450 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
451 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
452
Doug Zongker512536a2010-02-17 16:11:44 -0800453 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700454}
455
Doug Zongker8edb00c2009-06-11 17:21:44 -0700456// package_extract_dir(package_path, destination_path)
Doug Zongker512536a2010-02-17 16:11:44 -0800457Value* PackageExtractDirFn(const char* name, State* state,
Doug Zongker8edb00c2009-06-11 17:21:44 -0700458 int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700459 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -0700460 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700461 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700462
463 std::vector<std::string> args;
464 if (!ReadArgs(state, 2, argv, &args)) {
465 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
466 }
467 const std::string& zip_path = args[0];
468 const std::string& dest_path = args[1];
Doug Zongker9931f7f2009-06-10 14:11:53 -0700469
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700470 ZipArchiveHandle za = ((UpdaterInfo*)(state->cookie))->package_zip;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700471
472 // To create a consistent system image, never use the clock for timestamps.
473 struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default
474
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -0700475 bool success = ExtractPackageRecursive(za, zip_path, dest_path, &timestamp, sehandle);
476
Tianjie Xuaced5d92016-10-12 10:55:04 -0700477 return StringValue(success ? "t" : "");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700478}
479
Tao Baoef0eb3b2016-11-14 21:29:52 -0800480// package_extract_file(package_file[, dest_file])
481// Extracts a single package_file from the update package and writes it to dest_file,
482// overwriting existing files if necessary. Without the dest_file argument, returns the
483// contents of the package file as a binary blob.
484Value* PackageExtractFileFn(const char* name, State* state, int argc, Expr* argv[]) {
485 if (argc < 1 || argc > 2) {
486 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %d", name, argc);
487 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700488
Tao Baoef0eb3b2016-11-14 21:29:52 -0800489 if (argc == 2) {
490 // The two-argument version extracts to a file.
491
492 std::vector<std::string> args;
493 if (!ReadArgs(state, 2, argv, &args)) {
494 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700495 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800496 const std::string& zip_path = args[0];
497 const std::string& dest_path = args[1];
Doug Zongker43772d22014-06-09 14:13:19 -0700498
Tao Baoef0eb3b2016-11-14 21:29:52 -0800499 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
500 ZipString zip_string_path(zip_path.c_str());
501 ZipEntry entry;
502 if (FindEntry(za, zip_string_path, &entry) != 0) {
503 printf("%s: no %s in package\n", name, zip_path.c_str());
504 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700505 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800506
507 int fd = TEMP_FAILURE_RETRY(
508 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR));
509 if (fd == -1) {
510 printf("%s: can't open %s for write: %s\n", name, dest_path.c_str(), strerror(errno));
511 return StringValue("");
512 }
513
514 bool success = true;
515 int32_t ret = ExtractEntryToFile(za, &entry, fd);
516 if (ret != 0) {
517 printf("%s: Failed to extract entry \"%s\" (%u bytes) to \"%s\": %s\n", name,
518 zip_path.c_str(), entry.uncompressed_length, dest_path.c_str(), ErrorCodeString(ret));
519 success = false;
520 }
521 if (ota_fsync(fd) == -1) {
522 printf("fsync of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno));
523 success = false;
524 }
525 if (ota_close(fd) == -1) {
526 printf("close of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno));
527 success = false;
528 }
529
530 return StringValue(success ? "t" : "");
531 } else {
532 // The one-argument version returns the contents of the file as the result.
533
534 std::vector<std::string> args;
535 if (!ReadArgs(state, 1, argv, &args)) {
536 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name, argc);
537 }
538 const std::string& zip_path = args[0];
539
540 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
541 ZipString zip_string_path(zip_path.c_str());
542 ZipEntry entry;
543 if (FindEntry(za, zip_string_path, &entry) != 0) {
544 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
545 zip_path.c_str());
546 }
547
548 std::string buffer;
549 buffer.resize(entry.uncompressed_length);
550
551 int32_t ret = ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
552 if (ret != 0) {
553 return ErrorAbort(state, kPackageExtractFileFailure,
554 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
555 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
556 }
557
558 return new Value(VAL_BLOB, buffer);
559 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700560}
561
Tao Bao89929022016-11-08 20:51:31 -0800562// symlink(target, [src1, src2, ...])
563// Creates all sources as symlinks to target. It unlinks any previously existing src1, src2, etc
564// before creating symlinks.
Doug Zongker512536a2010-02-17 16:11:44 -0800565Value* SymlinkFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker9931f7f2009-06-10 14:11:53 -0700566 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700567 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1+ args, got %d", name, argc);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700568 }
Tianjie Xuaced5d92016-10-12 10:55:04 -0700569 std::string target;
570 if (!Evaluate(state, argv[0], &target)) {
571 return nullptr;
572 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700573
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700574 std::vector<std::string> srcs;
575 if (!ReadArgs(state, argc-1, argv+1, &srcs)) {
Tao Bao89929022016-11-08 20:51:31 -0800576 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)",
577 name);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700578 }
579
Tao Bao89929022016-11-08 20:51:31 -0800580 size_t bad = 0;
581 for (const auto& src : srcs) {
582 if (unlink(src.c_str()) == -1 && errno != ENOENT) {
583 printf("%s: failed to remove %s: %s\n", name, src.c_str(), strerror(errno));
584 ++bad;
585 } else if (!make_parents(src)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700586 printf("%s: failed to symlink %s to %s: making parents failed\n",
Tao Bao89929022016-11-08 20:51:31 -0800587 name, src.c_str(), target.c_str());
Doug Zongkera23075f2012-08-06 16:19:09 -0700588 ++bad;
Tao Bao89929022016-11-08 20:51:31 -0800589 } else if (symlink(target.c_str(), src.c_str()) == -1) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -0700590 printf("%s: failed to symlink %s to %s: %s\n",
Tao Bao89929022016-11-08 20:51:31 -0800591 name, src.c_str(), target.c_str(), strerror(errno));
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700592 ++bad;
Doug Zongker60babf82009-09-18 15:11:24 -0700593 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700594 }
Tao Bao89929022016-11-08 20:51:31 -0800595 if (bad != 0) {
596 return ErrorAbort(state, kSymlinkFailure, "%s: Failed to create %zu symlink(s)", name, bad);
Doug Zongkeracd73ed2012-03-22 14:32:52 -0700597 }
Tao Bao89929022016-11-08 20:51:31 -0800598 return StringValue("t");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700599}
600
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700601struct perm_parsed_args {
602 bool has_uid;
603 uid_t uid;
604 bool has_gid;
605 gid_t gid;
606 bool has_mode;
607 mode_t mode;
608 bool has_fmode;
609 mode_t fmode;
610 bool has_dmode;
611 mode_t dmode;
612 bool has_selabel;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700613 const char* selabel;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700614 bool has_capabilities;
615 uint64_t capabilities;
616};
617
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700618static struct perm_parsed_args ParsePermArgs(State * state, int argc,
619 const std::vector<std::string>& args) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700620 int i;
621 struct perm_parsed_args parsed;
622 int bad = 0;
623 static int max_warnings = 20;
624
625 memset(&parsed, 0, sizeof(parsed));
626
627 for (i = 1; i < argc; i += 2) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700628 if (args[i] == "uid") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700629 int64_t uid;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700630 if (sscanf(args[i+1].c_str(), "%" SCNd64, &uid) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700631 parsed.uid = uid;
632 parsed.has_uid = true;
633 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700634 uiPrintf(state, "ParsePermArgs: invalid UID \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700635 bad++;
636 }
637 continue;
638 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700639 if (args[i] == "gid") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700640 int64_t gid;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700641 if (sscanf(args[i+1].c_str(), "%" SCNd64, &gid) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700642 parsed.gid = gid;
643 parsed.has_gid = true;
644 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700645 uiPrintf(state, "ParsePermArgs: invalid GID \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700646 bad++;
647 }
648 continue;
649 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700650 if (args[i] == "mode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700651 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700652 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700653 parsed.mode = mode;
654 parsed.has_mode = true;
655 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700656 uiPrintf(state, "ParsePermArgs: invalid mode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700657 bad++;
658 }
659 continue;
660 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700661 if (args[i] == "dmode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700662 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700663 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700664 parsed.dmode = mode;
665 parsed.has_dmode = true;
666 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700667 uiPrintf(state, "ParsePermArgs: invalid dmode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700668 bad++;
669 }
670 continue;
671 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700672 if (args[i] == "fmode") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700673 int32_t mode;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700674 if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700675 parsed.fmode = mode;
676 parsed.has_fmode = true;
677 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700678 uiPrintf(state, "ParsePermArgs: invalid fmode \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700679 bad++;
680 }
681 continue;
682 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700683 if (args[i] == "capabilities") {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700684 int64_t capabilities;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700685 if (sscanf(args[i+1].c_str(), "%" SCNi64, &capabilities) == 1) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700686 parsed.capabilities = capabilities;
687 parsed.has_capabilities = true;
688 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700689 uiPrintf(state, "ParsePermArgs: invalid capabilities \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700690 bad++;
691 }
692 continue;
693 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700694 if (args[i] == "selabel") {
695 if (!args[i+1].empty()) {
696 parsed.selabel = args[i+1].c_str();
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700697 parsed.has_selabel = true;
698 } else {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700699 uiPrintf(state, "ParsePermArgs: invalid selabel \"%s\"\n", args[i + 1].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700700 bad++;
701 }
702 continue;
703 }
704 if (max_warnings != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700705 printf("ParsedPermArgs: unknown key \"%s\", ignoring\n", args[i].c_str());
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700706 max_warnings--;
707 if (max_warnings == 0) {
708 printf("ParsedPermArgs: suppressing further warnings\n");
709 }
710 }
711 }
712 return parsed;
713}
714
715static int ApplyParsedPerms(
Michael Runged4a63422014-10-22 19:48:41 -0700716 State * state,
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700717 const char* filename,
718 const struct stat *statptr,
719 struct perm_parsed_args parsed)
720{
721 int bad = 0;
722
Nick Kralevich68802412014-10-23 20:36:42 -0700723 if (parsed.has_selabel) {
724 if (lsetfilecon(filename, parsed.selabel) != 0) {
725 uiPrintf(state, "ApplyParsedPerms: lsetfilecon of %s to %s failed: %s\n",
726 filename, parsed.selabel, strerror(errno));
727 bad++;
728 }
729 }
730
Nick Kraleviche4612512013-09-10 15:34:19 -0700731 /* ignore symlinks */
732 if (S_ISLNK(statptr->st_mode)) {
Nick Kralevich68802412014-10-23 20:36:42 -0700733 return bad;
Nick Kraleviche4612512013-09-10 15:34:19 -0700734 }
735
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700736 if (parsed.has_uid) {
737 if (chown(filename, parsed.uid, -1) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700738 uiPrintf(state, "ApplyParsedPerms: chown of %s to %d failed: %s\n",
739 filename, parsed.uid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700740 bad++;
741 }
742 }
743
744 if (parsed.has_gid) {
745 if (chown(filename, -1, parsed.gid) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700746 uiPrintf(state, "ApplyParsedPerms: chgrp of %s to %d failed: %s\n",
747 filename, parsed.gid, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700748 bad++;
749 }
750 }
751
752 if (parsed.has_mode) {
753 if (chmod(filename, parsed.mode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700754 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
755 filename, parsed.mode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700756 bad++;
757 }
758 }
759
760 if (parsed.has_dmode && S_ISDIR(statptr->st_mode)) {
761 if (chmod(filename, parsed.dmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700762 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
763 filename, parsed.dmode, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700764 bad++;
765 }
766 }
767
768 if (parsed.has_fmode && S_ISREG(statptr->st_mode)) {
769 if (chmod(filename, parsed.fmode) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700770 uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700771 filename, parsed.fmode, strerror(errno));
772 bad++;
773 }
774 }
775
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700776 if (parsed.has_capabilities && S_ISREG(statptr->st_mode)) {
777 if (parsed.capabilities == 0) {
778 if ((removexattr(filename, XATTR_NAME_CAPS) == -1) && (errno != ENODATA)) {
779 // Report failure unless it's ENODATA (attribute not set)
Michael Runged4a63422014-10-22 19:48:41 -0700780 uiPrintf(state, "ApplyParsedPerms: removexattr of %s to %" PRIx64 " failed: %s\n",
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700781 filename, parsed.capabilities, strerror(errno));
782 bad++;
783 }
784 } else {
785 struct vfs_cap_data cap_data;
786 memset(&cap_data, 0, sizeof(cap_data));
787 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
788 cap_data.data[0].permitted = (uint32_t) (parsed.capabilities & 0xffffffff);
789 cap_data.data[0].inheritable = 0;
790 cap_data.data[1].permitted = (uint32_t) (parsed.capabilities >> 32);
791 cap_data.data[1].inheritable = 0;
792 if (setxattr(filename, XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
Michael Runged4a63422014-10-22 19:48:41 -0700793 uiPrintf(state, "ApplyParsedPerms: setcap of %s to %" PRIx64 " failed: %s\n",
794 filename, parsed.capabilities, strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700795 bad++;
796 }
797 }
798 }
799
800 return bad;
801}
802
803// nftw doesn't allow us to pass along context, so we need to use
804// global variables. *sigh*
805static struct perm_parsed_args recursive_parsed_args;
Michael Runged4a63422014-10-22 19:48:41 -0700806static State* recursive_state;
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700807
808static int do_SetMetadataRecursive(const char* filename, const struct stat *statptr,
809 int fileflags, struct FTW *pfwt) {
Michael Runged4a63422014-10-22 19:48:41 -0700810 return ApplyParsedPerms(recursive_state, filename, statptr, recursive_parsed_args);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700811}
812
813static Value* SetMetadataFn(const char* name, State* state, int argc, Expr* argv[]) {
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700814 if ((argc % 2) != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700815 return ErrorAbort(state, kArgsParsingFailure,
816 "%s() expects an odd number of arguments, got %d", name, argc);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700817 }
818
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700819 std::vector<std::string> args;
820 if (!ReadArgs(state, argc, argv, &args)) {
821 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700822 }
823
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700824 struct stat sb;
825 if (lstat(args[0].c_str(), &sb) == -1) {
826 return ErrorAbort(state, kSetMetadataFailure, "%s: Error on lstat of \"%s\": %s",
827 name, args[0].c_str(), strerror(errno));
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700828 }
829
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700830 struct perm_parsed_args parsed = ParsePermArgs(state, argc, args);
831 int bad = 0;
832 bool recursive = (strcmp(name, "set_metadata_recursive") == 0);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700833
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700834 if (recursive) {
835 recursive_parsed_args = parsed;
836 recursive_state = state;
837 bad += nftw(args[0].c_str(), do_SetMetadataRecursive, 30, FTW_CHDIR | FTW_DEPTH | FTW_PHYS);
838 memset(&recursive_parsed_args, 0, sizeof(recursive_parsed_args));
839 recursive_state = NULL;
840 } else {
841 bad += ApplyParsedPerms(state, args[0].c_str(), &sb, parsed);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700842 }
843
844 if (bad > 0) {
Tianjie Xu16255832016-04-30 11:49:59 -0700845 return ErrorAbort(state, kSetMetadataFailure, "%s: some changes failed", name);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700846 }
847
Tianjie Xuaced5d92016-10-12 10:55:04 -0700848 return StringValue("");
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700849}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700850
Doug Zongker512536a2010-02-17 16:11:44 -0800851Value* GetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongker8edb00c2009-06-11 17:21:44 -0700852 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700853 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700854 }
Tianjie Xuaced5d92016-10-12 10:55:04 -0700855 std::string key;
856 if (!Evaluate(state, argv[0], &key)) {
857 return nullptr;
858 }
Elliott Hughescb220402016-09-23 15:30:55 -0700859 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700860
Tianjie Xuaced5d92016-10-12 10:55:04 -0700861 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700862}
863
864
Doug Zongker47cace92009-06-18 10:11:50 -0700865// file_getprop(file, key)
866//
867// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700868// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700869// and returns the value for 'key' (or "" if it isn't defined).
Doug Zongker512536a2010-02-17 16:11:44 -0800870Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
Tao Bao51d516e2016-11-03 14:49:01 -0700871 if (argc != 2) {
872 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
873 }
874
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700875 std::vector<std::string> args;
876 if (!ReadArgs(state, 2, argv, &args)) {
877 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker47cace92009-06-18 10:11:50 -0700878 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700879 const std::string& filename = args[0];
880 const std::string& key = args[1];
Doug Zongker47cace92009-06-18 10:11:50 -0700881
882 struct stat st;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700883 if (stat(filename.c_str(), &st) < 0) {
884 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
885 filename.c_str(), strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700886 }
887
Tao Bao51d516e2016-11-03 14:49:01 -0700888 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
Doug Zongker47cace92009-06-18 10:11:50 -0700889 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
Tao Bao51d516e2016-11-03 14:49:01 -0700890 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
891 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
Doug Zongker47cace92009-06-18 10:11:50 -0700892 }
893
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700894 std::string buffer(st.st_size, '\0');
895 FILE* f = ota_fopen(filename.c_str(), "rb");
896 if (f == nullptr) {
897 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name,
898 filename.c_str(), strerror(errno));
Doug Zongker47cace92009-06-18 10:11:50 -0700899 }
900
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700901 if (ota_fread(&buffer[0], 1, st.st_size, f) != static_cast<size_t>(st.st_size)) {
Tianjie Xu84478e82016-05-23 11:42:40 -0700902 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s",
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700903 name, static_cast<size_t>(st.st_size), filename.c_str());
Jed Estepa7b9a462015-12-15 16:04:53 -0800904 ota_fclose(f);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700905 return nullptr;
Doug Zongker47cace92009-06-18 10:11:50 -0700906 }
Doug Zongker47cace92009-06-18 10:11:50 -0700907
Jed Estepa7b9a462015-12-15 16:04:53 -0800908 ota_fclose(f);
Doug Zongker47cace92009-06-18 10:11:50 -0700909
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700910 std::vector<std::string> lines = android::base::Split(buffer, "\n");
911 for (size_t i = 0; i < lines.size(); i++) {
912 std::string line = android::base::Trim(lines[i]);
Doug Zongker47cace92009-06-18 10:11:50 -0700913
914 // comment or blank line: skip to next line
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700915 if (line.empty() || line[0] == '#') {
916 continue;
917 }
918 size_t equal_pos = line.find('=');
919 if (equal_pos == std::string::npos) {
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700920 continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700921 }
922
923 // trim whitespace between key and '='
Tao Bao51d516e2016-11-03 14:49:01 -0700924 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700925
926 // not the key we're looking for
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700927 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700928
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700929 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
930 }
Doug Zongker47cace92009-06-18 10:11:50 -0700931
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700932 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700933}
934
Doug Zongker8edb00c2009-06-11 17:21:44 -0700935// apply_patch_space(bytes)
Doug Zongkerc4351c72010-02-22 14:46:32 -0800936Value* ApplyPatchSpaceFn(const char* name, State* state,
937 int argc, Expr* argv[]) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700938 std::vector<std::string> args;
939 if (!ReadArgs(state, 1, argv, &args)) {
940 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800941 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700942 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800943
Tao Baob15fd222015-09-24 11:10:51 -0700944 size_t bytes;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700945 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
946 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
947 name, bytes_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800948 }
949
Tianjie Xuaced5d92016-10-12 10:55:04 -0700950 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800951}
952
Doug Zongker52b40362014-02-10 15:30:30 -0800953// apply_patch(file, size, init_sha1, tgt_sha1, patch)
954
Doug Zongker512536a2010-02-17 16:11:44 -0800955Value* ApplyPatchFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc4351c72010-02-22 14:46:32 -0800956 if (argc < 6 || (argc % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700957 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700958 "even number, got %d", name, argc);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700959 }
960
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700961 std::vector<std::string> args;
962 if (!ReadArgs(state, 4, argv, &args)) {
963 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700964 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700965 const std::string& source_filename = args[0];
966 const std::string& target_filename = args[1];
967 const std::string& target_sha1 = args[2];
968 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700969
Tao Baob15fd222015-09-24 11:10:51 -0700970 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700971 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
972 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
973 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800974 }
975
976 int patchcount = (argc-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700977 std::vector<std::unique_ptr<Value>> arg_values;
978 if (!ReadValueArgs(state, argc-4, argv+4, &arg_values)) {
Yabin Cui64be2132016-02-03 18:16:02 -0800979 return nullptr;
980 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700981
Yabin Cui64be2132016-02-03 18:16:02 -0800982 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700983 if (arg_values[i * 2]->type != VAL_STRING) {
984 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
985 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800986 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700987 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
988 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
989 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800990 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700991 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700992
Tianjie Xuaced5d92016-10-12 10:55:04 -0700993 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700994 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800995 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700996 patch_sha_str.push_back(arg_values[i * 2]->data);
997 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700998 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800999
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001000 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
1001 target_sha1.c_str(), target_size,
1002 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001003
Tianjie Xuaced5d92016-10-12 10:55:04 -07001004 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -08001005}
1006
1007// apply_patch_check(file, [sha1_1, ...])
1008Value* ApplyPatchCheckFn(const char* name, State* state,
1009 int argc, Expr* argv[]) {
1010 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001011 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %d",
Doug Zongkerc4351c72010-02-22 14:46:32 -08001012 name, argc);
1013 }
1014
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001015 std::vector<std::string> args;
1016 if (!ReadArgs(state, 1, argv, &args)) {
1017 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001018 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001019 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -08001020
Tianjie Xuaced5d92016-10-12 10:55:04 -07001021 std::vector<std::string> sha1s;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001022 if (!ReadArgs(state, argc - 1, argv + 1, &sha1s)) {
1023 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001024 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001025 int result = applypatch_check(filename.c_str(), sha1s);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001026
1027 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -07001028}
1029
Tao Bao1107d962015-09-09 17:16:55 -07001030// This is the updater side handler for ui_print() in edify script. Contents
1031// will be sent over to the recovery side for on-screen display.
Doug Zongker512536a2010-02-17 16:11:44 -08001032Value* UIPrintFn(const char* name, State* state, int argc, Expr* argv[]) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001033 std::vector<std::string> args;
1034 if (!ReadArgs(state, argc, argv, &args)) {
1035 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001036 }
1037
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001038 std::string buffer = android::base::Join(args, "") + "\n";
Michael Runged4a63422014-10-22 19:48:41 -07001039 uiPrint(state, buffer);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001040 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001041}
1042
Doug Zongkerd0181b82011-10-19 10:51:12 -07001043Value* WipeCacheFn(const char* name, State* state, int argc, Expr* argv[]) {
1044 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001045 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001046 }
1047 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "wipe_cache\n");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001048 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -07001049}
1050
Doug Zongker512536a2010-02-17 16:11:44 -08001051Value* RunProgramFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001052 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001053 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001054 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001055
1056 std::vector<std::string> args;
1057 if (!ReadArgs(state, argc, argv, &args)) {
1058 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001059 }
1060
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001061 char* args2[argc+1];
1062 for (int i = 0; i < argc; i++) {
1063 args2[i] = &args[i][0];
1064 }
1065 args2[argc] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001066
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001067 printf("about to run program [%s] with %d args\n", args2[0], argc);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001068
1069 pid_t child = fork();
1070 if (child == 0) {
1071 execv(args2[0], args2);
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001072 printf("run_program: execv failed: %s\n", strerror(errno));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001073 _exit(1);
1074 }
1075 int status;
1076 waitpid(child, &status, 0);
1077 if (WIFEXITED(status)) {
1078 if (WEXITSTATUS(status) != 0) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001079 printf("run_program: child exited with status %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001080 WEXITSTATUS(status));
1081 }
1082 } else if (WIFSIGNALED(status)) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001083 printf("run_program: child terminated by signal %d\n",
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001084 WTERMSIG(status));
1085 }
1086
Tianjie Xuaced5d92016-10-12 10:55:04 -07001087 return StringValue(android::base::StringPrintf("%d", status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001088}
1089
Doug Zongker512536a2010-02-17 16:11:44 -08001090// sha1_check(data)
1091// to return the sha1 of the data (given in the format returned by
1092// read_file).
1093//
1094// sha1_check(data, sha1_hex, [sha1_hex, ...])
1095// returns the sha1 of the file if it matches any of the hex
1096// strings passed, or "" if it does not equal any of them.
1097//
1098Value* Sha1CheckFn(const char* name, State* state, int argc, Expr* argv[]) {
1099 if (argc < 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001100 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
Doug Zongker512536a2010-02-17 16:11:44 -08001101 }
1102
Tianjie Xuaced5d92016-10-12 10:55:04 -07001103 std::vector<std::unique_ptr<Value>> args;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001104 if (!ReadValueArgs(state, argc, argv, &args)) {
1105 return nullptr;
Doug Zongker512536a2010-02-17 16:11:44 -08001106 }
1107
Tianjie Xuaced5d92016-10-12 10:55:04 -07001108 if (args[0]->type == VAL_INVALID) {
1109 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -08001110 }
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001111 uint8_t digest[SHA_DIGEST_LENGTH];
Tianjie Xuaced5d92016-10-12 10:55:04 -07001112 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
Doug Zongker512536a2010-02-17 16:11:44 -08001113
1114 if (argc == 1) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001115 return StringValue(print_sha1(digest));
Doug Zongker512536a2010-02-17 16:11:44 -08001116 }
1117
Tao Bao361342c2016-02-08 11:15:50 -08001118 for (int i = 1; i < argc; ++i) {
1119 uint8_t arg_digest[SHA_DIGEST_LENGTH];
Doug Zongker512536a2010-02-17 16:11:44 -08001120 if (args[i]->type != VAL_STRING) {
Tao Bao361342c2016-02-08 11:15:50 -08001121 printf("%s(): arg %d is not a string; skipping", name, i);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001122 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
Doug Zongker512536a2010-02-17 16:11:44 -08001123 // Warn about bad args and skip them.
Tianjie Xuaced5d92016-10-12 10:55:04 -07001124 printf("%s(): error parsing \"%s\" as sha-1; skipping", name, args[i]->data.c_str());
Sen Jiangc48cb5e2016-02-04 16:23:21 +08001125 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
Tao Bao361342c2016-02-08 11:15:50 -08001126 // Found a match.
1127 return args[i].release();
Doug Zongker512536a2010-02-17 16:11:44 -08001128 }
Doug Zongker512536a2010-02-17 16:11:44 -08001129 }
Tao Bao361342c2016-02-08 11:15:50 -08001130
1131 // Didn't match any of the hex strings; return false.
Tianjie Xuaced5d92016-10-12 10:55:04 -07001132 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -08001133}
1134
Hristo Bojinovdb314d62010-08-02 10:29:49 -07001135// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -08001136// is actually a FileContents*).
1137Value* ReadFileFn(const char* name, State* state, int argc, Expr* argv[]) {
1138 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001139 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongker512536a2010-02-17 16:11:44 -08001140 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001141
1142 std::vector<std::string> args;
1143 if (!ReadArgs(state, 1, argv, &args)) {
1144 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1145 }
1146 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -08001147
Tianjie Xuaced5d92016-10-12 10:55:04 -07001148 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -08001149
1150 FileContents fc;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001151 if (LoadFileContents(filename.c_str(), &fc) == 0) {
Tianjie Xuaced5d92016-10-12 10:55:04 -07001152 v->type = VAL_BLOB;
1153 v->data = std::string(fc.data.begin(), fc.data.end());
Doug Zongker512536a2010-02-17 16:11:44 -08001154 }
Doug Zongker512536a2010-02-17 16:11:44 -08001155 return v;
1156}
Doug Zongker8edb00c2009-06-11 17:21:44 -07001157
Doug Zongkerc87bab12013-11-25 13:53:25 -08001158// Immediately reboot the device. Recovery is not finished normally,
1159// so if you reboot into recovery it will re-start applying the
1160// current package (because nothing has cleared the copy of the
1161// arguments stored in the BCB).
1162//
1163// The argument is the partition name passed to the android reboot
1164// property. It can be "recovery" to boot from the recovery
1165// partition, or "" (empty string) to boot from the regular boot
1166// partition.
1167Value* RebootNowFn(const char* name, State* state, int argc, Expr* argv[]) {
1168 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001169 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001170 }
1171
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001172 std::vector<std::string> args;
1173 if (!ReadArgs(state, 2, argv, &args)) {
1174 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1175 }
1176 const std::string& filename = args[0];
1177 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001178
Doug Zongkerc87bab12013-11-25 13:53:25 -08001179 // zero out the 'command' field of the bootloader message.
Elliott Hughescb220402016-09-23 15:30:55 -07001180 char buffer[80];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001181 memset(buffer, 0, sizeof(((struct bootloader_message*)0)->command));
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001182 FILE* f = ota_fopen(filename.c_str(), "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001183 fseek(f, offsetof(struct bootloader_message, command), SEEK_SET);
Jed Estepa7b9a462015-12-15 16:04:53 -08001184 ota_fwrite(buffer, sizeof(((struct bootloader_message*)0)->command), 1, f);
1185 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001186
Elliott Hughescb220402016-09-23 15:30:55 -07001187 std::string reboot_cmd = "reboot,";
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001188 reboot_cmd += property;
Elliott Hughescb220402016-09-23 15:30:55 -07001189 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001190
1191 sleep(5);
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001192 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001193}
1194
1195// Store a string value somewhere that future invocations of recovery
1196// can access it. This value is called the "stage" and can be used to
1197// drive packages that need to do reboots in the middle of
1198// installation and keep track of where they are in the multi-stage
1199// install.
1200//
1201// The first argument is the block device for the misc partition
1202// ("/misc" in the fstab), which is where this value is stored. The
1203// second argument is the string to store; it should not exceed 31
1204// bytes.
1205Value* SetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
1206 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001207 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001208 }
1209
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001210 std::vector<std::string> args;
1211 if (!ReadArgs(state, 2, argv, &args)) {
1212 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1213 }
1214 const std::string& filename = args[0];
1215 std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001216
1217 // Store this value in the misc partition, immediately after the
1218 // bootloader message that the main recovery uses to save its
1219 // arguments in case of the device restarting midway through
1220 // package installation.
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001221 FILE* f = ota_fopen(filename.c_str(), "r+b");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001222 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001223 size_t to_write = stagestr.size();
Tianjie Xuaced5d92016-10-12 10:55:04 -07001224 size_t max_size = sizeof(((struct bootloader_message*)0)->stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001225 if (to_write > max_size) {
1226 to_write = max_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001227 stagestr = stagestr.substr(0, max_size-1);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001228 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001229 size_t status = ota_fwrite(stagestr.c_str(), to_write, 1, f);
Jed Estepa7b9a462015-12-15 16:04:53 -08001230 ota_fclose(f);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001231
Tianjie Xuaced5d92016-10-12 10:55:04 -07001232 if (status != to_write) {
1233 return StringValue("");
1234 }
Doug Zongkerc87bab12013-11-25 13:53:25 -08001235 return StringValue(filename);
1236}
1237
1238// Return the value most recently saved with SetStageFn. The argument
1239// is the block device for the misc partition.
1240Value* GetStageFn(const char* name, State* state, int argc, Expr* argv[]) {
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001241 if (argc != 1) {
Tianjie Xu16255832016-04-30 11:49:59 -07001242 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001243 }
1244
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001245 std::vector<std::string> args;
1246 if (!ReadArgs(state, 1, argv, &args)) {
1247 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1248 }
1249 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -08001250
1251 char buffer[sizeof(((struct bootloader_message*)0)->stage)];
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001252 FILE* f = ota_fopen(filename.c_str(), "rb");
Doug Zongkerc87bab12013-11-25 13:53:25 -08001253 fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001254 size_t status = ota_fread(buffer, sizeof(buffer), 1, f);
Jed Estepa7b9a462015-12-15 16:04:53 -08001255 ota_fclose(f);
Tianjie Xuaced5d92016-10-12 10:55:04 -07001256 if (status != sizeof(buffer)) {
1257 return StringValue("");
1258 }
Doug Zongkerc87bab12013-11-25 13:53:25 -08001259
Tianjie Xuaced5d92016-10-12 10:55:04 -07001260 buffer[sizeof(buffer)-1] = '\0';
1261 return StringValue(buffer);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001262}
1263
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001264Value* WipeBlockDeviceFn(const char* name, State* state, int argc, Expr* argv[]) {
1265 if (argc != 2) {
Tianjie Xu16255832016-04-30 11:49:59 -07001266 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001267 }
1268
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001269 std::vector<std::string> args;
1270 if (!ReadArgs(state, 2, argv, &args)) {
1271 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
1272 }
1273 const std::string& filename = args[0];
1274 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001275
Tao Baob15fd222015-09-24 11:10:51 -07001276 size_t len;
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001277 if (!android::base::ParseUint(len_str.c_str(), &len)) {
1278 return nullptr;
1279 }
1280 int fd = ota_open(filename.c_str(), O_WRONLY, 0644);
1281 // The wipe_block_device function in ext4_utils returns 0 on success and 1
1282 // for failure.
1283 int status = wipe_block_device(fd, len);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001284
Jed Estepa7b9a462015-12-15 16:04:53 -08001285 ota_close(fd);
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001286
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001287 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001288}
1289
Doug Zongkerc704e062014-05-23 08:40:35 -07001290Value* EnableRebootFn(const char* name, State* state, int argc, Expr* argv[]) {
1291 if (argc != 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001292 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc);
Doug Zongkerc704e062014-05-23 08:40:35 -07001293 }
1294 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
1295 fprintf(ui->cmd_pipe, "enable_reboot\n");
Tianjie Xuaced5d92016-10-12 10:55:04 -07001296 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -07001297}
1298
Michael Rungeacf47db2014-11-21 00:12:28 -08001299Value* Tune2FsFn(const char* name, State* state, int argc, Expr* argv[]) {
1300 if (argc == 0) {
Tianjie Xu16255832016-04-30 11:49:59 -07001301 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %d", name, argc);
Michael Rungeacf47db2014-11-21 00:12:28 -08001302 }
1303
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001304 std::vector<std::string> args;
1305 if (!ReadArgs(state, argc, argv, &args)) {
Tianjie Xu16255832016-04-30 11:49:59 -07001306 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
Michael Rungeacf47db2014-11-21 00:12:28 -08001307 }
1308
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001309 char* args2[argc+1];
Michael Rungeacf47db2014-11-21 00:12:28 -08001310 // Tune2fs expects the program name as its args[0]
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001311 args2[0] = const_cast<char*>(name);
1312 if (args2[0] == nullptr) {
1313 return nullptr;
Michael Rungeacf47db2014-11-21 00:12:28 -08001314 }
Tao Baoba9a42a2015-06-23 23:23:33 -07001315 for (int i = 0; i < argc; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001316 args2[i + 1] = &args[i][0];
Michael Rungeacf47db2014-11-21 00:12:28 -08001317 }
Michael Rungeacf47db2014-11-21 00:12:28 -08001318
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001319 // tune2fs changes the file system parameters on an ext2 file system; it
1320 // returns 0 on success.
1321 int result = tune2fs_main(argc + 1, args2);
1322
Michael Rungeacf47db2014-11-21 00:12:28 -08001323 if (result != 0) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -07001324 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
Michael Rungeacf47db2014-11-21 00:12:28 -08001325 }
Tianjie Xuaced5d92016-10-12 10:55:04 -07001326 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -08001327}
1328
Doug Zongker9931f7f2009-06-10 14:11:53 -07001329void RegisterInstallFunctions() {
1330 RegisterFunction("mount", MountFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001331 RegisterFunction("is_mounted", IsMountedFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001332 RegisterFunction("unmount", UnmountFn);
1333 RegisterFunction("format", FormatFn);
1334 RegisterFunction("show_progress", ShowProgressFn);
Doug Zongkerfbf3c102009-06-24 09:36:20 -07001335 RegisterFunction("set_progress", SetProgressFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001336 RegisterFunction("delete", DeleteFn);
1337 RegisterFunction("delete_recursive", DeleteFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001338 RegisterFunction("package_extract_dir", PackageExtractDirFn);
1339 RegisterFunction("package_extract_file", PackageExtractFileFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001340 RegisterFunction("symlink", SymlinkFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001341
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001342 // Usage:
1343 // set_metadata("filename", "key1", "value1", "key2", "value2", ...)
1344 // Example:
1345 // set_metadata("/system/bin/netcfg", "uid", 0, "gid", 3003, "mode", 02750, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1346 RegisterFunction("set_metadata", SetMetadataFn);
1347
1348 // Usage:
1349 // set_metadata_recursive("dirname", "key1", "value1", "key2", "value2", ...)
1350 // Example:
1351 // set_metadata_recursive("/system", "uid", 0, "gid", 0, "fmode", 0644, "dmode", 0755, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0);
1352 RegisterFunction("set_metadata_recursive", SetMetadataFn);
1353
Doug Zongker8edb00c2009-06-11 17:21:44 -07001354 RegisterFunction("getprop", GetPropFn);
Doug Zongker47cace92009-06-18 10:11:50 -07001355 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001356
1357 RegisterFunction("apply_patch", ApplyPatchFn);
Doug Zongkerc4351c72010-02-22 14:46:32 -08001358 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1359 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001360
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -08001361 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001362
Doug Zongker512536a2010-02-17 16:11:44 -08001363 RegisterFunction("read_file", ReadFileFn);
1364 RegisterFunction("sha1_check", Sha1CheckFn);
Michael Rungece7ca712013-11-06 17:42:20 -08001365 RegisterFunction("rename", RenameFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001366
Doug Zongkerd0181b82011-10-19 10:51:12 -07001367 RegisterFunction("wipe_cache", WipeCacheFn);
1368
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001369 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001370
1371 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001372
1373 RegisterFunction("reboot_now", RebootNowFn);
1374 RegisterFunction("get_stage", GetStageFn);
1375 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001376
1377 RegisterFunction("enable_reboot", EnableRebootFn);
Michael Rungeacf47db2014-11-21 00:12:28 -08001378 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001379}