blob: 295965047e7ab6dd5f31e66804c8e02fe8e8843c [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
Kelvin Zhangd1ba38f2020-09-17 11:32:29 -040038#include <limits>
Yabin Cui64be2132016-02-03 18:16:02 -080039#include <memory>
Tao Bao361342c2016-02-08 11:15:50 -080040#include <string>
Yabin Cui64be2132016-02-03 18:16:02 -080041#include <vector>
42
Tao Baod0f30882016-11-03 23:52:01 -070043#include <android-base/file.h>
Tao Bao039f2da2016-11-22 16:29:50 -080044#include <android-base/logging.h>
Tianjie Xu5fe280a2016-10-17 18:15:20 -070045#include <android-base/parsedouble.h>
Tao Baod0f30882016-11-03 23:52:01 -070046#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070047#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080048#include <android-base/stringprintf.h>
Tao Baod0f30882016-11-03 23:52:01 -070049#include <android-base/strings.h>
Tianjie Xu22f11202018-08-27 10:50:31 -070050#include <android-base/unique_fd.h>
Tao Bao0d3f84f2016-12-28 15:09:20 -080051#include <applypatch/applypatch.h>
52#include <bootloader_message/bootloader_message.h>
Tao Baode40ba52016-10-05 23:17:01 -070053#include <ext4_utils/wipe.h>
Tao Bao361342c2016-02-08 11:15:50 -080054#include <openssl/sha.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070055#include <selinux/label.h>
56#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070057#include <ziparchive/zip_archive.h>
Tao Bao1107d962015-09-09 17:16:55 -070058
Doug Zongker9931f7f2009-06-10 14:11:53 -070059#include "edify/expr.h"
Tianjie Xu1536db82019-05-14 10:54:43 -070060#include "edify/updater_interface.h"
61#include "edify/updater_runtime_interface.h"
Tao Bao17054c02018-05-03 22:41:23 -070062#include "otautil/dirutil.h"
Tao Bao1fc5bf32017-10-06 07:43:41 -070063#include "otautil/error_code.h"
Tao Bao09e468f2017-09-29 14:39:33 -070064#include "otautil/print_sha1.h"
Tao Bao2c526392018-05-03 23:01:13 -070065#include "otautil/sysutil.h"
Tianjie Xu1536db82019-05-14 10:54:43 -070066
Tianjie Xu27556d02019-05-22 14:48:35 -070067#ifndef __ANDROID__
68#include <cutils/memory.h> // for strlcpy
69#endif
70
Tianjie Xu1536db82019-05-14 10:54:43 -070071static bool UpdateBlockDeviceNameForPartition(UpdaterInterface* updater, Partition* partition) {
72 CHECK(updater);
73 std::string name = updater->FindBlockDeviceName(partition->name);
74 if (name.empty()) {
75 LOG(ERROR) << "Failed to find the block device " << partition->name;
76 return false;
77 }
78
79 partition->name = std::move(name);
80 return true;
81}
Doug Zongker8edb00c2009-06-11 17:21:44 -070082
Tianjie Xu5419ad32018-02-02 16:49:15 -080083// This is the updater side handler for ui_print() in edify script. Contents will be sent over to
84// the recovery side for on-screen display.
85Value* UIPrintFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
86 std::vector<std::string> args;
87 if (!ReadArgs(state, argv, &args)) {
88 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
89 }
90
91 std::string buffer = android::base::Join(args, "");
Tianjie Xu1536db82019-05-14 10:54:43 -070092 state->updater->UiPrint(buffer);
Tianjie Xu5419ad32018-02-02 16:49:15 -080093 return StringValue(buffer);
94}
95
96// package_extract_file(package_file[, dest_file])
97// Extracts a single package_file from the update package and writes it to dest_file,
98// overwriting existing files if necessary. Without the dest_file argument, returns the
99// contents of the package file as a binary blob.
100Value* PackageExtractFileFn(const char* name, State* state,
101 const std::vector<std::unique_ptr<Expr>>& argv) {
102 if (argv.size() < 1 || argv.size() > 2) {
103 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %zu", name,
104 argv.size());
105 }
106
107 if (argv.size() == 2) {
108 // The two-argument version extracts to a file.
109
110 std::vector<std::string> args;
111 if (!ReadArgs(state, argv, &args)) {
112 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
113 argv.size());
114 }
115 const std::string& zip_path = args[0];
Tianjie Xu60b242c2019-07-30 16:48:52 -0700116 std::string dest_path = args[1];
Tianjie Xu5419ad32018-02-02 16:49:15 -0800117
Tianjie Xu1536db82019-05-14 10:54:43 -0700118 ZipArchiveHandle za = state->updater->GetPackageHandle();
Kelvin Zhang4f811302020-09-16 14:06:12 -0400119 ZipEntry64 entry;
Elliott Hughesa86dddb2019-05-03 22:52:37 -0700120 if (FindEntry(za, zip_path, &entry) != 0) {
Tianjie Xu5419ad32018-02-02 16:49:15 -0800121 LOG(ERROR) << name << ": no " << zip_path << " in package";
122 return StringValue("");
123 }
124
Tianjie Xu60b242c2019-07-30 16:48:52 -0700125 // Update the destination of package_extract_file if it's a block device. During simulation the
126 // destination will map to a fake file.
127 if (std::string block_device_name = state->updater->FindBlockDeviceName(dest_path);
128 !block_device_name.empty()) {
129 dest_path = block_device_name;
130 }
131
Tianjie Xu22f11202018-08-27 10:50:31 -0700132 android::base::unique_fd fd(TEMP_FAILURE_RETRY(
133 open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
Tianjie Xu5419ad32018-02-02 16:49:15 -0800134 if (fd == -1) {
135 PLOG(ERROR) << name << ": can't open " << dest_path << " for write";
136 return StringValue("");
137 }
138
139 bool success = true;
140 int32_t ret = ExtractEntryToFile(za, &entry, fd);
141 if (ret != 0) {
142 LOG(ERROR) << name << ": Failed to extract entry \"" << zip_path << "\" ("
143 << entry.uncompressed_length << " bytes) to \"" << dest_path
144 << "\": " << ErrorCodeString(ret);
145 success = false;
146 }
Tianjie Xu22f11202018-08-27 10:50:31 -0700147 if (fsync(fd) == -1) {
Tianjie Xu5419ad32018-02-02 16:49:15 -0800148 PLOG(ERROR) << "fsync of \"" << dest_path << "\" failed";
149 success = false;
150 }
Tianjie Xu22f11202018-08-27 10:50:31 -0700151
152 if (close(fd.release()) != 0) {
Tianjie Xu5419ad32018-02-02 16:49:15 -0800153 PLOG(ERROR) << "close of \"" << dest_path << "\" failed";
154 success = false;
155 }
156
157 return StringValue(success ? "t" : "");
158 } else {
159 // The one-argument version returns the contents of the file as the result.
160
161 std::vector<std::string> args;
162 if (!ReadArgs(state, argv, &args)) {
163 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
164 argv.size());
165 }
166 const std::string& zip_path = args[0];
167
Tianjie Xu1536db82019-05-14 10:54:43 -0700168 ZipArchiveHandle za = state->updater->GetPackageHandle();
Kelvin Zhang4f811302020-09-16 14:06:12 -0400169 ZipEntry64 entry;
Elliott Hughesa86dddb2019-05-03 22:52:37 -0700170 if (FindEntry(za, zip_path, &entry) != 0) {
Tianjie Xu5419ad32018-02-02 16:49:15 -0800171 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
172 zip_path.c_str());
173 }
174
175 std::string buffer;
Kelvin Zhangd1ba38f2020-09-17 11:32:29 -0400176 if (entry.uncompressed_length > std::numeric_limits<size_t>::max()) {
177 return ErrorAbort(state, kPackageExtractFileFailure,
178 "%s(): Entry `%s` Uncompressed size exceeds size of address space.", name,
179 zip_path.c_str());
180 }
Tianjie Xu5419ad32018-02-02 16:49:15 -0800181 buffer.resize(entry.uncompressed_length);
182
183 int32_t ret =
184 ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
185 if (ret != 0) {
186 return ErrorAbort(state, kPackageExtractFileFailure,
187 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
188 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
189 }
190
Tao Bao511d7592018-06-19 15:56:49 -0700191 return new Value(Value::Type::BLOB, buffer);
Tianjie Xu5419ad32018-02-02 16:49:15 -0800192 }
193}
194
Tao Bao5609bc82018-06-20 00:30:48 -0700195// patch_partition_check(target_partition, source_partition)
196// Checks if the target and source partitions have the desired checksums to be patched. It returns
197// directly, if the target partition already has the expected checksum. Otherwise it in turn
198// checks the integrity of the source partition and the backup file on /cache.
Tianjie Xu5419ad32018-02-02 16:49:15 -0800199//
Tao Bao5609bc82018-06-20 00:30:48 -0700200// For example, patch_partition_check(
201// "EMMC:/dev/block/boot:12342568:8aaacf187a6929d0e9c3e9e46ea7ff495b43424d",
202// "EMMC:/dev/block/boot:12363048:06b0b16299dcefc94900efed01e0763ff644ffa4")
203Value* PatchPartitionCheckFn(const char* name, State* state,
204 const std::vector<std::unique_ptr<Expr>>& argv) {
205 if (argv.size() != 2) {
Tianjie Xu5419ad32018-02-02 16:49:15 -0800206 return ErrorAbort(state, kArgsParsingFailure,
Tao Bao5609bc82018-06-20 00:30:48 -0700207 "%s(): Invalid number of args (expected 2, got %zu)", name, argv.size());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800208 }
209
210 std::vector<std::string> args;
Tao Bao5609bc82018-06-20 00:30:48 -0700211 if (!ReadArgs(state, argv, &args, 0, 2)) {
212 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tianjie Xu5419ad32018-02-02 16:49:15 -0800213 }
214
Tao Bao5609bc82018-06-20 00:30:48 -0700215 std::string err;
216 auto target = Partition::Parse(args[0], &err);
217 if (!target) {
218 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse target \"%s\": %s", name,
219 args[0].c_str(), err.c_str());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800220 }
221
Tao Bao5609bc82018-06-20 00:30:48 -0700222 auto source = Partition::Parse(args[1], &err);
223 if (!source) {
224 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse source \"%s\": %s", name,
225 args[1].c_str(), err.c_str());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800226 }
227
Tianjie Xu1536db82019-05-14 10:54:43 -0700228 if (!UpdateBlockDeviceNameForPartition(state->updater, &source) ||
229 !UpdateBlockDeviceNameForPartition(state->updater, &target)) {
230 return StringValue("");
231 }
232
Tao Bao5609bc82018-06-20 00:30:48 -0700233 bool result = PatchPartitionCheck(target, source);
234 return StringValue(result ? "t" : "");
Tianjie Xu5419ad32018-02-02 16:49:15 -0800235}
236
Tao Bao5609bc82018-06-20 00:30:48 -0700237// patch_partition(target, source, patch)
238// Applies the given patch to the source partition, and writes the result to the target partition.
239//
240// For example, patch_partition(
241// "EMMC:/dev/block/boot:12342568:8aaacf187a6929d0e9c3e9e46ea7ff495b43424d",
242// "EMMC:/dev/block/boot:12363048:06b0b16299dcefc94900efed01e0763ff644ffa4",
243// package_extract_file("boot.img.p"))
244Value* PatchPartitionFn(const char* name, State* state,
245 const std::vector<std::unique_ptr<Expr>>& argv) {
246 if (argv.size() != 3) {
247 return ErrorAbort(state, kArgsParsingFailure,
248 "%s(): Invalid number of args (expected 3, got %zu)", name, argv.size());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800249 }
250
251 std::vector<std::string> args;
Tao Bao5609bc82018-06-20 00:30:48 -0700252 if (!ReadArgs(state, argv, &args, 0, 2)) {
253 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tianjie Xu5419ad32018-02-02 16:49:15 -0800254 }
Tianjie Xu5419ad32018-02-02 16:49:15 -0800255
Tao Bao5609bc82018-06-20 00:30:48 -0700256 std::string err;
257 auto target = Partition::Parse(args[0], &err);
258 if (!target) {
259 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse target \"%s\": %s", name,
260 args[0].c_str(), err.c_str());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800261 }
Tianjie Xu5419ad32018-02-02 16:49:15 -0800262
Tao Bao5609bc82018-06-20 00:30:48 -0700263 auto source = Partition::Parse(args[1], &err);
264 if (!source) {
265 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse source \"%s\": %s", name,
266 args[1].c_str(), err.c_str());
267 }
268
269 std::vector<std::unique_ptr<Value>> values;
270 if (!ReadValueArgs(state, argv, &values, 2, 1) || values[0]->type != Value::Type::BLOB) {
271 return ErrorAbort(state, kArgsParsingFailure, "%s(): Invalid patch arg", name);
272 }
273
Tianjie Xu1536db82019-05-14 10:54:43 -0700274 if (!UpdateBlockDeviceNameForPartition(state->updater, &source) ||
275 !UpdateBlockDeviceNameForPartition(state->updater, &target)) {
276 return StringValue("");
277 }
278
Tao Bao5234ad42019-09-23 10:28:54 -0700279 bool result = PatchPartition(target, source, *values[0], nullptr, true);
Tao Bao5609bc82018-06-20 00:30:48 -0700280 return StringValue(result ? "t" : "");
Tianjie Xu5419ad32018-02-02 16:49:15 -0800281}
282
Doug Zongker3d177d02010-07-01 09:18:44 -0700283// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -0700284// mount(fs_type, partition_type, location, mount_point, mount_options)
Tianjie Xuc4447322017-03-06 14:44:59 -0800285
Doug Zongker3d177d02010-07-01 09:18:44 -0700286// fs_type="ext4" partition_type="EMMC" location=device
Tianjie Xuc4447322017-03-06 14:44:59 -0800287Value* MountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
288 if (argv.size() != 4 && argv.size() != 5) {
289 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %zu", name,
290 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800291 }
292
293 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800294 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800295 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
296 }
297 const std::string& fs_type = args[0];
298 const std::string& partition_type = args[1];
299 const std::string& location = args[2];
300 const std::string& mount_point = args[3];
301 std::string mount_options;
302
Tianjie Xuc4447322017-03-06 14:44:59 -0800303 if (argv.size() == 5) {
Tao Bao039f2da2016-11-22 16:29:50 -0800304 mount_options = args[4];
305 }
306
307 if (fs_type.empty()) {
308 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
309 }
310 if (partition_type.empty()) {
311 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
312 name);
313 }
314 if (location.empty()) {
315 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
316 }
317 if (mount_point.empty()) {
318 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
319 name);
320 }
321
Tianjie Xu1536db82019-05-14 10:54:43 -0700322 auto updater = state->updater;
323 if (updater->GetRuntime()->Mount(location, mount_point, fs_type, mount_options) != 0) {
Tianjie Xu58d59122019-05-03 01:05:04 -0700324 updater->UiPrint(android::base::StringPrintf("%s: Failed to mount %s at %s: %s", name,
325 location.c_str(), mount_point.c_str(),
326 strerror(errno)));
Tao Bao039f2da2016-11-22 16:29:50 -0800327 return StringValue("");
328 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700329
Tao Bao039f2da2016-11-22 16:29:50 -0800330 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700331}
332
Doug Zongker8edb00c2009-06-11 17:21:44 -0700333// is_mounted(mount_point)
Tianjie Xuc4447322017-03-06 14:44:59 -0800334Value* IsMountedFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
335 if (argv.size() != 1) {
336 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800337 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700338
Tao Bao039f2da2016-11-22 16:29:50 -0800339 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800340 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800341 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
342 }
343 const std::string& mount_point = args[0];
344 if (mount_point.empty()) {
345 return ErrorAbort(state, kArgsParsingFailure,
346 "mount_point argument to unmount() can't be empty");
347 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700348
Tianjie Xu1536db82019-05-14 10:54:43 -0700349 auto updater_runtime = state->updater->GetRuntime();
350 if (!updater_runtime->IsMounted(mount_point)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800351 return StringValue("");
352 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700353
Tao Bao039f2da2016-11-22 16:29:50 -0800354 return StringValue(mount_point);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700355}
356
Tianjie Xuc4447322017-03-06 14:44:59 -0800357Value* UnmountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
358 if (argv.size() != 1) {
359 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800360 }
361 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800362 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800363 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
364 }
365 const std::string& mount_point = args[0];
366 if (mount_point.empty()) {
367 return ErrorAbort(state, kArgsParsingFailure,
368 "mount_point argument to unmount() can't be empty");
369 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700370
Tianjie Xu1536db82019-05-14 10:54:43 -0700371 auto updater = state->updater;
372 auto [mounted, result] = updater->GetRuntime()->Unmount(mount_point);
373 if (!mounted) {
Tianjie Xu58d59122019-05-03 01:05:04 -0700374 updater->UiPrint(
375 android::base::StringPrintf("Failed to unmount %s: No such volume", mount_point.c_str()));
Tao Bao039f2da2016-11-22 16:29:50 -0800376 return nullptr;
Tianjie Xu1536db82019-05-14 10:54:43 -0700377 } else if (result != 0) {
378 updater->UiPrint(android::base::StringPrintf("Failed to unmount %s: %s", mount_point.c_str(),
379 strerror(errno)));
Tao Bao039f2da2016-11-22 16:29:50 -0800380 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700381
Tao Bao039f2da2016-11-22 16:29:50 -0800382 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700383}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700384
Stephen Smalley779701d2012-02-09 14:13:23 -0500385// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700386//
Tao Bao039f2da2016-11-22 16:29:50 -0800387// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
388// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700389// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800390// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700391// if fs_size < 0, then reserve that many bytes at the end of the partition (not for "f2fs")
Tianjie Xuc4447322017-03-06 14:44:59 -0800392Value* FormatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
393 if (argv.size() != 5) {
394 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %zu", name,
395 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800396 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500397
Tao Bao039f2da2016-11-22 16:29:50 -0800398 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800399 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800400 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
401 }
402 const std::string& fs_type = args[0];
403 const std::string& partition_type = args[1];
404 const std::string& location = args[2];
405 const std::string& fs_size = args[3];
406 const std::string& mount_point = args[4];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700407
Tao Bao039f2da2016-11-22 16:29:50 -0800408 if (fs_type.empty()) {
409 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
410 }
411 if (partition_type.empty()) {
412 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
413 name);
414 }
415 if (location.empty()) {
416 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
417 }
418 if (mount_point.empty()) {
419 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
420 name);
421 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700422
Tao Bao039f2da2016-11-22 16:29:50 -0800423 int64_t size;
424 if (!android::base::ParseInt(fs_size, &size)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800425 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s", name,
Tao Bao039f2da2016-11-22 16:29:50 -0800426 fs_size.c_str());
427 }
428
Tianjie Xu1536db82019-05-14 10:54:43 -0700429 auto updater_runtime = state->updater->GetRuntime();
Tao Bao039f2da2016-11-22 16:29:50 -0800430 if (fs_type == "ext4") {
Tao Bao3d69f0d2018-12-20 09:44:06 -0800431 std::vector<std::string> mke2fs_args = {
432 "/system/bin/mke2fs", "-t", "ext4", "-b", "4096", location
433 };
Jin Qianded2dac2017-04-21 14:36:12 -0700434 if (size != 0) {
Tao Bao3d69f0d2018-12-20 09:44:06 -0800435 mke2fs_args.push_back(std::to_string(size / 4096LL));
Jin Qianded2dac2017-04-21 14:36:12 -0700436 }
437
Tianjie Xu1536db82019-05-14 10:54:43 -0700438 if (auto status = updater_runtime->RunProgram(mke2fs_args, true); status != 0) {
Jin Qian502fd1c2017-11-02 11:58:12 -0700439 LOG(ERROR) << name << ": mke2fs failed (" << status << ") on " << location;
440 return StringValue("");
Jin Qianded2dac2017-04-21 14:36:12 -0700441 }
442
Tianjie Xu1536db82019-05-14 10:54:43 -0700443 if (auto status = updater_runtime->RunProgram(
444 { "/system/bin/e2fsdroid", "-e", "-a", mount_point, location }, true);
Tao Bao3d69f0d2018-12-20 09:44:06 -0800445 status != 0) {
Jin Qianded2dac2017-04-21 14:36:12 -0700446 LOG(ERROR) << name << ": e2fsdroid failed (" << status << ") on " << location;
Tao Bao039f2da2016-11-22 16:29:50 -0800447 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700448 }
Tao Bao039f2da2016-11-22 16:29:50 -0800449 return StringValue(location);
Tao Bao3d69f0d2018-12-20 09:44:06 -0800450 }
451
452 if (fs_type == "f2fs") {
Tao Bao039f2da2016-11-22 16:29:50 -0800453 if (size < 0) {
454 LOG(ERROR) << name << ": fs_size can't be negative for f2fs: " << fs_size;
455 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700456 }
Tao Bao3d69f0d2018-12-20 09:44:06 -0800457 std::vector<std::string> f2fs_args = {
Tao Baoc674dfb2018-12-20 14:25:15 -0800458 "/system/bin/make_f2fs", "-g", "android", "-w", "512", location
Tao Bao3d69f0d2018-12-20 09:44:06 -0800459 };
460 if (size >= 512) {
461 f2fs_args.push_back(std::to_string(size / 512));
462 }
Tianjie Xu1536db82019-05-14 10:54:43 -0700463 if (auto status = updater_runtime->RunProgram(f2fs_args, true); status != 0) {
Tao Baoc674dfb2018-12-20 14:25:15 -0800464 LOG(ERROR) << name << ": make_f2fs failed (" << status << ") on " << location;
Tao Bao039f2da2016-11-22 16:29:50 -0800465 return StringValue("");
466 }
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800467
Tianjie Xu1536db82019-05-14 10:54:43 -0700468 if (auto status = updater_runtime->RunProgram(
469 { "/system/bin/sload_f2fs", "-t", mount_point, location }, true);
Tao Baoc674dfb2018-12-20 14:25:15 -0800470 status != 0) {
471 LOG(ERROR) << name << ": sload_f2fs failed (" << status << ") on " << location;
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800472 return StringValue("");
473 }
474
Tao Bao039f2da2016-11-22 16:29:50 -0800475 return StringValue(location);
Tao Bao039f2da2016-11-22 16:29:50 -0800476 }
477
Tao Bao3d69f0d2018-12-20 09:44:06 -0800478 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \""
479 << partition_type << "\"";
Tao Bao039f2da2016-11-22 16:29:50 -0800480 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700481}
482
Tianjie Xuc4447322017-03-06 14:44:59 -0800483Value* ShowProgressFn(const char* name, State* state,
484 const std::vector<std::unique_ptr<Expr>>& argv) {
485 if (argv.size() != 2) {
486 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
487 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800488 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700489
Tao Bao039f2da2016-11-22 16:29:50 -0800490 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800491 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800492 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
493 }
494 const std::string& frac_str = args[0];
495 const std::string& sec_str = args[1];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700496
Tao Bao039f2da2016-11-22 16:29:50 -0800497 double frac;
498 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800499 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s", name,
Tao Bao039f2da2016-11-22 16:29:50 -0800500 frac_str.c_str());
501 }
502 int sec;
503 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800504 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s", name,
Tao Bao039f2da2016-11-22 16:29:50 -0800505 sec_str.c_str());
506 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700507
Tianjie Xu1536db82019-05-14 10:54:43 -0700508 state->updater->WriteToCommandPipe(android::base::StringPrintf("progress %f %d", frac, sec));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700509
Tao Bao039f2da2016-11-22 16:29:50 -0800510 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700511}
512
Tianjie Xu5419ad32018-02-02 16:49:15 -0800513Value* SetProgressFn(const char* name, State* state,
514 const std::vector<std::unique_ptr<Expr>>& argv) {
Tianjie Xuc4447322017-03-06 14:44:59 -0800515 if (argv.size() != 1) {
516 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800517 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700518
Tao Bao039f2da2016-11-22 16:29:50 -0800519 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800520 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800521 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
522 }
523 const std::string& frac_str = args[0];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700524
Tao Bao039f2da2016-11-22 16:29:50 -0800525 double frac;
526 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800527 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s", name,
Tao Bao039f2da2016-11-22 16:29:50 -0800528 frac_str.c_str());
529 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700530
Tianjie Xu1536db82019-05-14 10:54:43 -0700531 state->updater->WriteToCommandPipe(android::base::StringPrintf("set_progress %f", frac));
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700532
Tao Bao039f2da2016-11-22 16:29:50 -0800533 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700534}
535
Tianjie Xuc4447322017-03-06 14:44:59 -0800536Value* GetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
537 if (argv.size() != 1) {
538 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800539 }
540 std::string key;
541 if (!Evaluate(state, argv[0], &key)) {
542 return nullptr;
543 }
Tianjie Xu1536db82019-05-14 10:54:43 -0700544
545 auto updater_runtime = state->updater->GetRuntime();
546 std::string value = updater_runtime->GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700547
Tao Bao039f2da2016-11-22 16:29:50 -0800548 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700549}
550
Doug Zongker47cace92009-06-18 10:11:50 -0700551// file_getprop(file, key)
552//
553// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700554// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700555// and returns the value for 'key' (or "" if it isn't defined).
Tianjie Xu5419ad32018-02-02 16:49:15 -0800556Value* FileGetPropFn(const char* name, State* state,
557 const std::vector<std::unique_ptr<Expr>>& argv) {
Tianjie Xuc4447322017-03-06 14:44:59 -0800558 if (argv.size() != 2) {
559 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
560 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800561 }
562
563 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800564 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800565 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
566 }
567 const std::string& filename = args[0];
568 const std::string& key = args[1];
569
Tianjie Xu22f11202018-08-27 10:50:31 -0700570 std::string buffer;
Tianjie Xu1536db82019-05-14 10:54:43 -0700571 auto updater_runtime = state->updater->GetRuntime();
572 if (!updater_runtime->ReadFileToString(filename, &buffer)) {
Tianjie Xu22f11202018-08-27 10:50:31 -0700573 ErrorAbort(state, kFreadFailure, "%s: failed to read %s", name, filename.c_str());
Tao Bao358c2ec2016-11-28 11:48:43 -0800574 return nullptr;
575 }
576
Tao Bao358c2ec2016-11-28 11:48:43 -0800577 std::vector<std::string> lines = android::base::Split(buffer, "\n");
578 for (size_t i = 0; i < lines.size(); i++) {
579 std::string line = android::base::Trim(lines[i]);
580
581 // comment or blank line: skip to next line
582 if (line.empty() || line[0] == '#') {
583 continue;
584 }
585 size_t equal_pos = line.find('=');
586 if (equal_pos == std::string::npos) {
587 continue;
Tao Bao51d516e2016-11-03 14:49:01 -0700588 }
589
Tao Bao358c2ec2016-11-28 11:48:43 -0800590 // trim whitespace between key and '='
591 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700592
Tao Bao358c2ec2016-11-28 11:48:43 -0800593 // not the key we're looking for
594 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700595
Tao Bao358c2ec2016-11-28 11:48:43 -0800596 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
597 }
Doug Zongker47cace92009-06-18 10:11:50 -0700598
Tao Bao358c2ec2016-11-28 11:48:43 -0800599 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700600}
601
Doug Zongker8edb00c2009-06-11 17:21:44 -0700602// apply_patch_space(bytes)
Tianjie Xu5419ad32018-02-02 16:49:15 -0800603Value* ApplyPatchSpaceFn(const char* name, State* state,
604 const std::vector<std::unique_ptr<Expr>>& argv) {
Tianjie Xuc4447322017-03-06 14:44:59 -0800605 if (argv.size() != 1) {
606 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 args, got %zu", name,
607 argv.size());
608 }
Tao Bao039f2da2016-11-22 16:29:50 -0800609 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800610 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800611 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
612 }
613 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800614
Tao Bao039f2da2016-11-22 16:29:50 -0800615 size_t bytes;
616 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800617 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count", name,
618 bytes_str.c_str());
Tao Bao039f2da2016-11-22 16:29:50 -0800619 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800620
Tianjie Xu99b73be2017-11-28 17:23:06 -0800621 // Skip the cache size check if the update is a retry.
Tao Bao5ee25662018-07-11 15:55:32 -0700622 if (state->is_retry || CheckAndFreeSpaceOnCache(bytes)) {
Tianjie Xu99b73be2017-11-28 17:23:06 -0800623 return StringValue("t");
624 }
625 return StringValue("");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800626}
627
Tianjie Xuc4447322017-03-06 14:44:59 -0800628Value* WipeCacheFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
629 if (!argv.empty()) {
630 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
631 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800632 }
Tianjie Xu58d59122019-05-03 01:05:04 -0700633
Tianjie Xu1536db82019-05-14 10:54:43 -0700634 state->updater->WriteToCommandPipe("wipe_cache");
Tao Bao039f2da2016-11-22 16:29:50 -0800635 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700636}
637
Tianjie Xuc4447322017-03-06 14:44:59 -0800638Value* RunProgramFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
639 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800640 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
641 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700642
Tao Bao039f2da2016-11-22 16:29:50 -0800643 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800644 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800645 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
646 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700647
Tianjie Xu1536db82019-05-14 10:54:43 -0700648 auto updater_runtime = state->updater->GetRuntime();
649 auto status = updater_runtime->RunProgram(args, false);
Tao Bao039f2da2016-11-22 16:29:50 -0800650 return StringValue(std::to_string(status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700651}
652
Tao Bao511d7592018-06-19 15:56:49 -0700653// read_file(filename)
Tao Baobafd6c72018-07-09 15:08:50 -0700654// Reads a local file 'filename' and returns its contents as a string Value.
Tianjie Xuc4447322017-03-06 14:44:59 -0800655Value* ReadFileFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
656 if (argv.size() != 1) {
657 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800658 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700659
Tao Bao039f2da2016-11-22 16:29:50 -0800660 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800661 if (!ReadArgs(state, argv, &args)) {
Tao Bao511d7592018-06-19 15:56:49 -0700662 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tao Bao039f2da2016-11-22 16:29:50 -0800663 }
664 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -0800665
Tao Baobafd6c72018-07-09 15:08:50 -0700666 std::string contents;
Tianjie Xu1536db82019-05-14 10:54:43 -0700667 auto updater_runtime = state->updater->GetRuntime();
668 if (updater_runtime->ReadFileToString(filename, &contents)) {
Tao Baobafd6c72018-07-09 15:08:50 -0700669 return new Value(Value::Type::STRING, std::move(contents));
Tao Bao039f2da2016-11-22 16:29:50 -0800670 }
Tao Bao511d7592018-06-19 15:56:49 -0700671
672 // Leave it to caller to handle the failure.
Tao Baobafd6c72018-07-09 15:08:50 -0700673 PLOG(ERROR) << name << ": Failed to read " << filename;
Tao Bao511d7592018-06-19 15:56:49 -0700674 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -0800675}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700676
Tao Baod0f30882016-11-03 23:52:01 -0700677// write_value(value, filename)
678// Writes 'value' to 'filename'.
679// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
Tianjie Xuc4447322017-03-06 14:44:59 -0800680Value* WriteValueFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
681 if (argv.size() != 2) {
682 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
683 argv.size());
Tao Baod0f30882016-11-03 23:52:01 -0700684 }
685
686 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800687 if (!ReadArgs(state, argv, &args)) {
Tao Baod0f30882016-11-03 23:52:01 -0700688 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
689 }
690
691 const std::string& filename = args[1];
692 if (filename.empty()) {
693 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
694 }
695
696 const std::string& value = args[0];
Tianjie Xu1536db82019-05-14 10:54:43 -0700697 auto updater_runtime = state->updater->GetRuntime();
698 if (!updater_runtime->WriteStringToFile(value, filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800699 PLOG(ERROR) << name << ": Failed to write to \"" << filename << "\"";
Tao Baod0f30882016-11-03 23:52:01 -0700700 return StringValue("");
Tao Baod0f30882016-11-03 23:52:01 -0700701 }
Tianjie Xu1536db82019-05-14 10:54:43 -0700702 return StringValue("t");
Tao Baod0f30882016-11-03 23:52:01 -0700703}
704
Doug Zongkerc87bab12013-11-25 13:53:25 -0800705// Immediately reboot the device. Recovery is not finished normally,
706// so if you reboot into recovery it will re-start applying the
707// current package (because nothing has cleared the copy of the
708// arguments stored in the BCB).
709//
710// The argument is the partition name passed to the android reboot
711// property. It can be "recovery" to boot from the recovery
712// partition, or "" (empty string) to boot from the regular boot
713// partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800714Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
715 if (argv.size() != 2) {
716 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
717 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800718 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800719
Tao Baobedf5fc2016-11-18 12:01:26 -0800720 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800721 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800722 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
723 }
724 const std::string& filename = args[0];
725 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800726
Tao Baobedf5fc2016-11-18 12:01:26 -0800727 // Zero out the 'command' field of the bootloader message. Leave the rest intact.
728 bootloader_message boot;
729 std::string err;
730 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800731 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800732 return StringValue("");
733 }
734 memset(boot.command, 0, sizeof(boot.command));
735 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800736 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800737 return StringValue("");
738 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800739
Tao Bao782dcc12019-04-29 11:23:16 -0700740 Reboot(property);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800741
Tao Baobedf5fc2016-11-18 12:01:26 -0800742 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800743}
744
745// Store a string value somewhere that future invocations of recovery
746// can access it. This value is called the "stage" and can be used to
747// drive packages that need to do reboots in the middle of
748// installation and keep track of where they are in the multi-stage
749// install.
750//
751// The first argument is the block device for the misc partition
752// ("/misc" in the fstab), which is where this value is stored. The
753// second argument is the string to store; it should not exceed 31
754// bytes.
Tianjie Xuc4447322017-03-06 14:44:59 -0800755Value* SetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
756 if (argv.size() != 2) {
757 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
758 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800759 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800760
Tao Baobedf5fc2016-11-18 12:01:26 -0800761 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800762 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800763 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
764 }
765 const std::string& filename = args[0];
766 const std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800767
Tao Baobedf5fc2016-11-18 12:01:26 -0800768 // Store this value in the misc partition, immediately after the
769 // bootloader message that the main recovery uses to save its
770 // arguments in case of the device restarting midway through
771 // package installation.
772 bootloader_message boot;
773 std::string err;
774 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800775 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800776 return StringValue("");
777 }
778 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage));
779 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800780 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800781 return StringValue("");
782 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800783
Tao Baobedf5fc2016-11-18 12:01:26 -0800784 return StringValue(filename);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800785}
786
787// Return the value most recently saved with SetStageFn. The argument
788// is the block device for the misc partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800789Value* GetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
790 if (argv.size() != 1) {
791 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800792 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800793
Tao Baobedf5fc2016-11-18 12:01:26 -0800794 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800795 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800796 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
797 }
798 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800799
Tao Baobedf5fc2016-11-18 12:01:26 -0800800 bootloader_message boot;
801 std::string err;
802 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800803 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800804 return StringValue("");
805 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800806
Tao Baobedf5fc2016-11-18 12:01:26 -0800807 return StringValue(boot.stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800808}
809
Tianjie Xuc4447322017-03-06 14:44:59 -0800810Value* WipeBlockDeviceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
811 if (argv.size() != 2) {
812 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
813 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800814 }
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800815
Tao Bao358c2ec2016-11-28 11:48:43 -0800816 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800817 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800818 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
819 }
820 const std::string& filename = args[0];
821 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800822
Tao Bao358c2ec2016-11-28 11:48:43 -0800823 size_t len;
824 if (!android::base::ParseUint(len_str.c_str(), &len)) {
825 return nullptr;
826 }
Tianjie Xu22f11202018-08-27 10:50:31 -0700827
Tianjie Xu1536db82019-05-14 10:54:43 -0700828 auto updater_runtime = state->updater->GetRuntime();
829 int status = updater_runtime->WipeBlockDevice(filename, len);
830 return StringValue(status == 0 ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800831}
832
Tianjie Xuc4447322017-03-06 14:44:59 -0800833Value* EnableRebootFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
834 if (!argv.empty()) {
835 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
836 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800837 }
Tianjie Xu1536db82019-05-14 10:54:43 -0700838 state->updater->WriteToCommandPipe("enable_reboot");
Tao Bao039f2da2016-11-22 16:29:50 -0800839 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -0700840}
841
Tianjie Xuc4447322017-03-06 14:44:59 -0800842Value* Tune2FsFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
843 if (argv.empty()) {
844 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800845 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800846
Tao Bao039f2da2016-11-22 16:29:50 -0800847 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800848 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800849 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
850 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800851
Tao Bao3d69f0d2018-12-20 09:44:06 -0800852 // tune2fs expects the program name as its first arg.
853 args.insert(args.begin(), "tune2fs");
Tianjie Xu1536db82019-05-14 10:54:43 -0700854 auto updater_runtime = state->updater->GetRuntime();
855 if (auto result = updater_runtime->Tune2Fs(args); result != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800856 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
857 }
858 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -0800859}
860
Yifan Hong0c328d02020-04-28 13:31:11 -0700861Value* AddSlotSuffixFn(const char* name, State* state,
862 const std::vector<std::unique_ptr<Expr>>& argv) {
863 if (argv.size() != 1) {
864 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
865 }
866 std::vector<std::string> args;
867 if (!ReadArgs(state, argv, &args)) {
868 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
869 }
870 const std::string& arg = args[0];
871 auto updater_runtime = state->updater->GetRuntime();
872 return StringValue(updater_runtime->AddSlotSuffix(arg));
873}
874
Doug Zongker9931f7f2009-06-10 14:11:53 -0700875void RegisterInstallFunctions() {
Tao Bao039f2da2016-11-22 16:29:50 -0800876 RegisterFunction("mount", MountFn);
877 RegisterFunction("is_mounted", IsMountedFn);
878 RegisterFunction("unmount", UnmountFn);
879 RegisterFunction("format", FormatFn);
880 RegisterFunction("show_progress", ShowProgressFn);
881 RegisterFunction("set_progress", SetProgressFn);
Tao Bao039f2da2016-11-22 16:29:50 -0800882 RegisterFunction("package_extract_file", PackageExtractFileFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700883
Tao Bao039f2da2016-11-22 16:29:50 -0800884 RegisterFunction("getprop", GetPropFn);
885 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700886
Tao Bao039f2da2016-11-22 16:29:50 -0800887 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Tao Bao5609bc82018-06-20 00:30:48 -0700888 RegisterFunction("patch_partition", PatchPartitionFn);
889 RegisterFunction("patch_partition_check", PatchPartitionCheckFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700890
Tao Bao039f2da2016-11-22 16:29:50 -0800891 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -0800892
Tao Bao039f2da2016-11-22 16:29:50 -0800893 RegisterFunction("read_file", ReadFileFn);
Tao Bao039f2da2016-11-22 16:29:50 -0800894 RegisterFunction("write_value", WriteValueFn);
Doug Zongker512536a2010-02-17 16:11:44 -0800895
Tao Bao039f2da2016-11-22 16:29:50 -0800896 RegisterFunction("wipe_cache", WipeCacheFn);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700897
Tao Bao039f2da2016-11-22 16:29:50 -0800898 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700899
Tao Bao039f2da2016-11-22 16:29:50 -0800900 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800901
Tao Bao039f2da2016-11-22 16:29:50 -0800902 RegisterFunction("reboot_now", RebootNowFn);
903 RegisterFunction("get_stage", GetStageFn);
904 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -0700905
Tao Bao039f2da2016-11-22 16:29:50 -0800906 RegisterFunction("enable_reboot", EnableRebootFn);
907 RegisterFunction("tune2fs", Tune2FsFn);
Yifan Hong0c328d02020-04-28 13:31:11 -0700908
909 RegisterFunction("add_slot_suffix", AddSlotSuffixFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700910}