blob: ccde409dfb4dfd266223d90c13a021d3c5417dca [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tao Bao0c7839a2016-10-10 15:48:37 -070017#include "updater/install.h"
18
Doug Zongkerfbf3c102009-06-24 09:36:20 -070019#include <ctype.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070020#include <errno.h>
Tao Bao361342c2016-02-08 11:15:50 -080021#include <fcntl.h>
22#include <ftw.h>
23#include <inttypes.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070024#include <stdarg.h>
Doug Zongkerfbf3c102009-06-24 09:36:20 -070025#include <stdio.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070026#include <stdlib.h>
27#include <string.h>
Tao Bao361342c2016-02-08 11:15:50 -080028#include <sys/capability.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070029#include <sys/mount.h>
30#include <sys/stat.h>
31#include <sys/types.h>
Doug Zongkera3f89ea2009-09-10 14:10:48 -070032#include <sys/wait.h>
Nick Kralevich5dbdef02013-09-07 14:41:06 -070033#include <sys/xattr.h>
Tao Bao361342c2016-02-08 11:15:50 -080034#include <time.h>
35#include <unistd.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070036#include <utime.h>
Doug Zongker9931f7f2009-06-10 14:11:53 -070037
Yabin Cui64be2132016-02-03 18:16:02 -080038#include <memory>
Tao Bao361342c2016-02-08 11:15:50 -080039#include <string>
Yabin Cui64be2132016-02-03 18:16:02 -080040#include <vector>
41
Tao Baod0f30882016-11-03 23:52:01 -070042#include <android-base/file.h>
Tao Bao039f2da2016-11-22 16:29:50 -080043#include <android-base/logging.h>
Tianjie Xu5fe280a2016-10-17 18:15:20 -070044#include <android-base/parsedouble.h>
Tao Baod0f30882016-11-03 23:52:01 -070045#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070046#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080047#include <android-base/stringprintf.h>
Tao Baod0f30882016-11-03 23:52:01 -070048#include <android-base/strings.h>
Tianjie Xu22f11202018-08-27 10:50:31 -070049#include <android-base/unique_fd.h>
Tao Bao0d3f84f2016-12-28 15:09:20 -080050#include <applypatch/applypatch.h>
51#include <bootloader_message/bootloader_message.h>
Tao Baode40ba52016-10-05 23:17:01 -070052#include <ext4_utils/wipe.h>
Tao Bao361342c2016-02-08 11:15:50 -080053#include <openssl/sha.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070054#include <selinux/label.h>
55#include <selinux/selinux.h>
Tao Bao09e468f2017-09-29 14:39:33 -070056#include <tune2fs.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"
Tao Bao17054c02018-05-03 22:41:23 -070060#include "otautil/dirutil.h"
Tao Bao1fc5bf32017-10-06 07:43:41 -070061#include "otautil/error_code.h"
Tao Bao9a319f02018-01-04 13:19:11 -080062#include "otautil/mounts.h"
Tao Bao09e468f2017-09-29 14:39:33 -070063#include "otautil/print_sha1.h"
Tao Bao2c526392018-05-03 23:01:13 -070064#include "otautil/sysutil.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 Bao039f2da2016-11-22 16:29:50 -080069 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
Tao Baob6918c72015-05-19 17:02:16 -070070
Tao Bao039f2da2016-11-22 16:29:50 -080071 // "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());
Tao Bao1107d962015-09-09 17:16:55 -070077 }
Tao Bao039f2da2016-11-22 16:29:50 -080078 }
Tao Bao1107d962015-09-09 17:16:55 -070079
Tao Bao039f2da2016-11-22 16:29:50 -080080 // On the updater side, we need to dump the contents to stderr (which has
81 // been redirected to the log file). Because the recovery will only print
82 // the contents to screen when processing pipe command ui_print.
83 LOG(INFO) << buffer;
Michael Runged4a63422014-10-22 19:48:41 -070084}
85
Elliott Hughes83ce7552016-06-30 09:28:42 -070086void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) {
Tao Bao039f2da2016-11-22 16:29:50 -080087 std::string error_msg;
Tao Bao1107d962015-09-09 17:16:55 -070088
Tao Bao039f2da2016-11-22 16:29:50 -080089 va_list ap;
90 va_start(ap, format);
91 android::base::StringAppendV(&error_msg, format, ap);
92 va_end(ap);
Tao Bao1107d962015-09-09 17:16:55 -070093
Tao Bao039f2da2016-11-22 16:29:50 -080094 uiPrint(state, error_msg);
Michael Runged4a63422014-10-22 19:48:41 -070095}
96
Tianjie Xu5419ad32018-02-02 16:49:15 -080097// This is the updater side handler for ui_print() in edify script. Contents will be sent over to
98// the recovery side for on-screen display.
99Value* UIPrintFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
100 std::vector<std::string> args;
101 if (!ReadArgs(state, argv, &args)) {
102 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
103 }
104
105 std::string buffer = android::base::Join(args, "");
106 uiPrint(state, buffer);
107 return StringValue(buffer);
108}
109
110// package_extract_file(package_file[, dest_file])
111// Extracts a single package_file from the update package and writes it to dest_file,
112// overwriting existing files if necessary. Without the dest_file argument, returns the
113// contents of the package file as a binary blob.
114Value* PackageExtractFileFn(const char* name, State* state,
115 const std::vector<std::unique_ptr<Expr>>& argv) {
116 if (argv.size() < 1 || argv.size() > 2) {
117 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %zu", name,
118 argv.size());
119 }
120
121 if (argv.size() == 2) {
122 // The two-argument version extracts to a file.
123
124 std::vector<std::string> args;
125 if (!ReadArgs(state, argv, &args)) {
126 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
127 argv.size());
128 }
129 const std::string& zip_path = args[0];
130 const std::string& dest_path = args[1];
131
132 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
133 ZipString zip_string_path(zip_path.c_str());
134 ZipEntry entry;
135 if (FindEntry(za, zip_string_path, &entry) != 0) {
136 LOG(ERROR) << name << ": no " << zip_path << " in package";
137 return StringValue("");
138 }
139
Tianjie Xu22f11202018-08-27 10:50:31 -0700140 android::base::unique_fd fd(TEMP_FAILURE_RETRY(
141 open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
Tianjie Xu5419ad32018-02-02 16:49:15 -0800142 if (fd == -1) {
143 PLOG(ERROR) << name << ": can't open " << dest_path << " for write";
144 return StringValue("");
145 }
146
147 bool success = true;
148 int32_t ret = ExtractEntryToFile(za, &entry, fd);
149 if (ret != 0) {
150 LOG(ERROR) << name << ": Failed to extract entry \"" << zip_path << "\" ("
151 << entry.uncompressed_length << " bytes) to \"" << dest_path
152 << "\": " << ErrorCodeString(ret);
153 success = false;
154 }
Tianjie Xu22f11202018-08-27 10:50:31 -0700155 if (fsync(fd) == -1) {
Tianjie Xu5419ad32018-02-02 16:49:15 -0800156 PLOG(ERROR) << "fsync of \"" << dest_path << "\" failed";
157 success = false;
158 }
Tianjie Xu22f11202018-08-27 10:50:31 -0700159
160 if (close(fd.release()) != 0) {
Tianjie Xu5419ad32018-02-02 16:49:15 -0800161 PLOG(ERROR) << "close of \"" << dest_path << "\" failed";
162 success = false;
163 }
164
165 return StringValue(success ? "t" : "");
166 } else {
167 // The one-argument version returns the contents of the file as the result.
168
169 std::vector<std::string> args;
170 if (!ReadArgs(state, argv, &args)) {
171 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
172 argv.size());
173 }
174 const std::string& zip_path = args[0];
175
176 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
177 ZipString zip_string_path(zip_path.c_str());
178 ZipEntry entry;
179 if (FindEntry(za, zip_string_path, &entry) != 0) {
180 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
181 zip_path.c_str());
182 }
183
184 std::string buffer;
185 buffer.resize(entry.uncompressed_length);
186
187 int32_t ret =
188 ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
189 if (ret != 0) {
190 return ErrorAbort(state, kPackageExtractFileFailure,
191 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
192 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
193 }
194
Tao Bao511d7592018-06-19 15:56:49 -0700195 return new Value(Value::Type::BLOB, buffer);
Tianjie Xu5419ad32018-02-02 16:49:15 -0800196 }
197}
198
Tao Bao5609bc82018-06-20 00:30:48 -0700199// patch_partition_check(target_partition, source_partition)
200// Checks if the target and source partitions have the desired checksums to be patched. It returns
201// directly, if the target partition already has the expected checksum. Otherwise it in turn
202// checks the integrity of the source partition and the backup file on /cache.
Tianjie Xu5419ad32018-02-02 16:49:15 -0800203//
Tao Bao5609bc82018-06-20 00:30:48 -0700204// For example, patch_partition_check(
205// "EMMC:/dev/block/boot:12342568:8aaacf187a6929d0e9c3e9e46ea7ff495b43424d",
206// "EMMC:/dev/block/boot:12363048:06b0b16299dcefc94900efed01e0763ff644ffa4")
207Value* PatchPartitionCheckFn(const char* name, State* state,
208 const std::vector<std::unique_ptr<Expr>>& argv) {
209 if (argv.size() != 2) {
Tianjie Xu5419ad32018-02-02 16:49:15 -0800210 return ErrorAbort(state, kArgsParsingFailure,
Tao Bao5609bc82018-06-20 00:30:48 -0700211 "%s(): Invalid number of args (expected 2, got %zu)", name, argv.size());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800212 }
213
214 std::vector<std::string> args;
Tao Bao5609bc82018-06-20 00:30:48 -0700215 if (!ReadArgs(state, argv, &args, 0, 2)) {
216 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tianjie Xu5419ad32018-02-02 16:49:15 -0800217 }
218
Tao Bao5609bc82018-06-20 00:30:48 -0700219 std::string err;
220 auto target = Partition::Parse(args[0], &err);
221 if (!target) {
222 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse target \"%s\": %s", name,
223 args[0].c_str(), err.c_str());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800224 }
225
Tao Bao5609bc82018-06-20 00:30:48 -0700226 auto source = Partition::Parse(args[1], &err);
227 if (!source) {
228 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse source \"%s\": %s", name,
229 args[1].c_str(), err.c_str());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800230 }
231
Tao Bao5609bc82018-06-20 00:30:48 -0700232 bool result = PatchPartitionCheck(target, source);
233 return StringValue(result ? "t" : "");
Tianjie Xu5419ad32018-02-02 16:49:15 -0800234}
235
Tao Bao5609bc82018-06-20 00:30:48 -0700236// patch_partition(target, source, patch)
237// Applies the given patch to the source partition, and writes the result to the target partition.
238//
239// For example, patch_partition(
240// "EMMC:/dev/block/boot:12342568:8aaacf187a6929d0e9c3e9e46ea7ff495b43424d",
241// "EMMC:/dev/block/boot:12363048:06b0b16299dcefc94900efed01e0763ff644ffa4",
242// package_extract_file("boot.img.p"))
243Value* PatchPartitionFn(const char* name, State* state,
244 const std::vector<std::unique_ptr<Expr>>& argv) {
245 if (argv.size() != 3) {
246 return ErrorAbort(state, kArgsParsingFailure,
247 "%s(): Invalid number of args (expected 3, got %zu)", name, argv.size());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800248 }
249
250 std::vector<std::string> args;
Tao Bao5609bc82018-06-20 00:30:48 -0700251 if (!ReadArgs(state, argv, &args, 0, 2)) {
252 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tianjie Xu5419ad32018-02-02 16:49:15 -0800253 }
Tianjie Xu5419ad32018-02-02 16:49:15 -0800254
Tao Bao5609bc82018-06-20 00:30:48 -0700255 std::string err;
256 auto target = Partition::Parse(args[0], &err);
257 if (!target) {
258 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse target \"%s\": %s", name,
259 args[0].c_str(), err.c_str());
Tianjie Xu5419ad32018-02-02 16:49:15 -0800260 }
Tianjie Xu5419ad32018-02-02 16:49:15 -0800261
Tao Bao5609bc82018-06-20 00:30:48 -0700262 auto source = Partition::Parse(args[1], &err);
263 if (!source) {
264 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse source \"%s\": %s", name,
265 args[1].c_str(), err.c_str());
266 }
267
268 std::vector<std::unique_ptr<Value>> values;
269 if (!ReadValueArgs(state, argv, &values, 2, 1) || values[0]->type != Value::Type::BLOB) {
270 return ErrorAbort(state, kArgsParsingFailure, "%s(): Invalid patch arg", name);
271 }
272
273 bool result = PatchPartition(target, source, *values[0], nullptr);
274 return StringValue(result ? "t" : "");
Tianjie Xu5419ad32018-02-02 16:49:15 -0800275}
276
Doug Zongker3d177d02010-07-01 09:18:44 -0700277// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -0700278// mount(fs_type, partition_type, location, mount_point, mount_options)
Tianjie Xuc4447322017-03-06 14:44:59 -0800279
Doug Zongker3d177d02010-07-01 09:18:44 -0700280// fs_type="ext4" partition_type="EMMC" location=device
Tianjie Xuc4447322017-03-06 14:44:59 -0800281Value* MountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
282 if (argv.size() != 4 && argv.size() != 5) {
283 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %zu", name,
284 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800285 }
286
287 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800288 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800289 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
290 }
291 const std::string& fs_type = args[0];
292 const std::string& partition_type = args[1];
293 const std::string& location = args[2];
294 const std::string& mount_point = args[3];
295 std::string mount_options;
296
Tianjie Xuc4447322017-03-06 14:44:59 -0800297 if (argv.size() == 5) {
Tao Bao039f2da2016-11-22 16:29:50 -0800298 mount_options = args[4];
299 }
300
301 if (fs_type.empty()) {
302 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
303 }
304 if (partition_type.empty()) {
305 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
306 name);
307 }
308 if (location.empty()) {
309 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
310 }
311 if (mount_point.empty()) {
312 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
313 name);
314 }
315
316 {
317 char* secontext = nullptr;
318
319 if (sehandle) {
320 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
321 setfscreatecon(secontext);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700322 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700323
Tao Bao039f2da2016-11-22 16:29:50 -0800324 mkdir(mount_point.c_str(), 0755);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700325
Tao Bao039f2da2016-11-22 16:29:50 -0800326 if (secontext) {
327 freecon(secontext);
328 setfscreatecon(nullptr);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700329 }
Tao Bao039f2da2016-11-22 16:29:50 -0800330 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700331
Tao Bao039f2da2016-11-22 16:29:50 -0800332 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
333 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700334 uiPrintf(state, "%s: Failed to mount %s at %s: %s", name, location.c_str(), mount_point.c_str(),
335 strerror(errno));
Tao Bao039f2da2016-11-22 16:29:50 -0800336 return StringValue("");
337 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700338
Tao Bao039f2da2016-11-22 16:29:50 -0800339 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700340}
341
Doug Zongker8edb00c2009-06-11 17:21:44 -0700342// is_mounted(mount_point)
Tianjie Xuc4447322017-03-06 14:44:59 -0800343Value* IsMountedFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
344 if (argv.size() != 1) {
345 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800346 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700347
Tao Bao039f2da2016-11-22 16:29:50 -0800348 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800349 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800350 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
351 }
352 const std::string& mount_point = args[0];
353 if (mount_point.empty()) {
354 return ErrorAbort(state, kArgsParsingFailure,
355 "mount_point argument to unmount() can't be empty");
356 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700357
Tao Bao039f2da2016-11-22 16:29:50 -0800358 scan_mounted_volumes();
359 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
360 if (vol == nullptr) {
361 return StringValue("");
362 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700363
Tao Bao039f2da2016-11-22 16:29:50 -0800364 return StringValue(mount_point);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700365}
366
Tianjie Xuc4447322017-03-06 14:44:59 -0800367Value* UnmountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
368 if (argv.size() != 1) {
369 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800370 }
371 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800372 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800373 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
374 }
375 const std::string& mount_point = args[0];
376 if (mount_point.empty()) {
377 return ErrorAbort(state, kArgsParsingFailure,
378 "mount_point argument to unmount() can't be empty");
379 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700380
Tao Bao039f2da2016-11-22 16:29:50 -0800381 scan_mounted_volumes();
382 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
383 if (vol == nullptr) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700384 uiPrintf(state, "Failed to unmount %s: No such volume", mount_point.c_str());
Tao Bao039f2da2016-11-22 16:29:50 -0800385 return nullptr;
386 } else {
387 int ret = unmount_mounted_volume(vol);
388 if (ret != 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700389 uiPrintf(state, "Failed to unmount %s: %s", mount_point.c_str(), strerror(errno));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700390 }
Tao Bao039f2da2016-11-22 16:29:50 -0800391 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700392
Tao Bao039f2da2016-11-22 16:29:50 -0800393 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700394}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700395
JP Abgrall37aedb32014-06-16 19:07:39 -0700396static int exec_cmd(const char* path, char* const argv[]) {
Tao Bao039f2da2016-11-22 16:29:50 -0800397 pid_t child;
398 if ((child = vfork()) == 0) {
399 execv(path, argv);
Tao Bao3da88012017-02-03 13:09:23 -0800400 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800401 }
402
403 int status;
404 waitpid(child, &status, 0);
405 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
406 LOG(ERROR) << path << " failed with status " << WEXITSTATUS(status);
407 }
408 return WEXITSTATUS(status);
JP Abgrall37aedb32014-06-16 19:07:39 -0700409}
410
Stephen Smalley779701d2012-02-09 14:13:23 -0500411// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700412//
Tao Bao039f2da2016-11-22 16:29:50 -0800413// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
414// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700415// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800416// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700417// 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 -0800418Value* FormatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
419 if (argv.size() != 5) {
420 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %zu", name,
421 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800422 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500423
Tao Bao039f2da2016-11-22 16:29:50 -0800424 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800425 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800426 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
427 }
428 const std::string& fs_type = args[0];
429 const std::string& partition_type = args[1];
430 const std::string& location = args[2];
431 const std::string& fs_size = args[3];
432 const std::string& mount_point = args[4];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700433
Tao Bao039f2da2016-11-22 16:29:50 -0800434 if (fs_type.empty()) {
435 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
436 }
437 if (partition_type.empty()) {
438 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
439 name);
440 }
441 if (location.empty()) {
442 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
443 }
444 if (mount_point.empty()) {
445 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
446 name);
447 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700448
Tao Bao039f2da2016-11-22 16:29:50 -0800449 int64_t size;
450 if (!android::base::ParseInt(fs_size, &size)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800451 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s", name,
Tao Bao039f2da2016-11-22 16:29:50 -0800452 fs_size.c_str());
453 }
454
455 if (fs_type == "ext4") {
Jiyong Park69364fe2018-06-20 14:18:18 +0900456 const char* mke2fs_argv[] = { "/system/bin/mke2fs", "-t", "ext4", "-b", "4096",
457 location.c_str(), nullptr, nullptr };
Jin Qianded2dac2017-04-21 14:36:12 -0700458 std::string size_str;
459 if (size != 0) {
460 size_str = std::to_string(size / 4096LL);
461 mke2fs_argv[6] = size_str.c_str();
462 }
463
464 int status = exec_cmd(mke2fs_argv[0], const_cast<char**>(mke2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800465 if (status != 0) {
Jin Qian502fd1c2017-11-02 11:58:12 -0700466 LOG(ERROR) << name << ": mke2fs failed (" << status << ") on " << location;
467 return StringValue("");
Jin Qianded2dac2017-04-21 14:36:12 -0700468 }
469
Jiyong Park69364fe2018-06-20 14:18:18 +0900470 const char* e2fsdroid_argv[] = { "/system/bin/e2fsdroid", "-e", "-a", mount_point.c_str(),
471 location.c_str(), nullptr };
Jin Qianded2dac2017-04-21 14:36:12 -0700472 status = exec_cmd(e2fsdroid_argv[0], const_cast<char**>(e2fsdroid_argv));
473 if (status != 0) {
474 LOG(ERROR) << name << ": e2fsdroid failed (" << status << ") on " << location;
Tao Bao039f2da2016-11-22 16:29:50 -0800475 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700476 }
Tao Bao039f2da2016-11-22 16:29:50 -0800477 return StringValue(location);
478 } else if (fs_type == "f2fs") {
479 if (size < 0) {
480 LOG(ERROR) << name << ": fs_size can't be negative for f2fs: " << fs_size;
481 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700482 }
Tao Bao039f2da2016-11-22 16:29:50 -0800483 std::string num_sectors = std::to_string(size / 512);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700484
Tao Bao039f2da2016-11-22 16:29:50 -0800485 const char* f2fs_path = "/sbin/mkfs.f2fs";
Jaegeuk Kim1a8bb0f2017-11-01 13:24:43 -0700486 const char* f2fs_argv[] = { "mkfs.f2fs",
Jaegeuk Kim91e631d2018-11-21 11:12:54 -0800487 "-g", "android",
Jaegeuk Kim2e5dc842018-04-05 22:42:13 -0700488 "-w", "512",
Jaegeuk Kim1a8bb0f2017-11-01 13:24:43 -0700489 location.c_str(),
490 (size < 512) ? nullptr : num_sectors.c_str(),
491 nullptr };
Tao Bao397a8132017-05-12 11:02:27 -0700492 int status = exec_cmd(f2fs_path, const_cast<char**>(f2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800493 if (status != 0) {
494 LOG(ERROR) << name << ": mkfs.f2fs failed (" << status << ") on " << location;
495 return StringValue("");
496 }
Jaegeuk Kimc1c73112017-11-28 19:48:05 -0800497
498 const char* sload_argv[] = { "/sbin/sload.f2fs", "-t", mount_point.c_str(), location.c_str(),
499 nullptr };
500 status = exec_cmd(sload_argv[0], const_cast<char**>(sload_argv));
501 if (status != 0) {
502 LOG(ERROR) << name << ": sload.f2fs failed (" << status << ") on " << location;
503 return StringValue("");
504 }
505
Tao Bao039f2da2016-11-22 16:29:50 -0800506 return StringValue(location);
507 } else {
508 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \""
509 << partition_type << "\"";
510 }
511
512 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700513}
514
Tianjie Xuc4447322017-03-06 14:44:59 -0800515Value* ShowProgressFn(const char* name, State* state,
516 const std::vector<std::unique_ptr<Expr>>& argv) {
517 if (argv.size() != 2) {
518 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
519 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800520 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700521
Tao Bao039f2da2016-11-22 16:29:50 -0800522 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800523 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800524 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
525 }
526 const std::string& frac_str = args[0];
527 const std::string& sec_str = args[1];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700528
Tao Bao039f2da2016-11-22 16:29:50 -0800529 double frac;
530 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800531 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s", name,
Tao Bao039f2da2016-11-22 16:29:50 -0800532 frac_str.c_str());
533 }
534 int sec;
535 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800536 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s", name,
Tao Bao039f2da2016-11-22 16:29:50 -0800537 sec_str.c_str());
538 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700539
Tao Bao039f2da2016-11-22 16:29:50 -0800540 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
541 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700542
Tao Bao039f2da2016-11-22 16:29:50 -0800543 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700544}
545
Tianjie Xu5419ad32018-02-02 16:49:15 -0800546Value* SetProgressFn(const char* name, State* state,
547 const std::vector<std::unique_ptr<Expr>>& argv) {
Tianjie Xuc4447322017-03-06 14:44:59 -0800548 if (argv.size() != 1) {
549 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800550 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700551
Tao Bao039f2da2016-11-22 16:29:50 -0800552 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800553 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800554 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
555 }
556 const std::string& frac_str = args[0];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700557
Tao Bao039f2da2016-11-22 16:29:50 -0800558 double frac;
559 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800560 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s", name,
Tao Bao039f2da2016-11-22 16:29:50 -0800561 frac_str.c_str());
562 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700563
Tao Bao039f2da2016-11-22 16:29:50 -0800564 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
565 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700566
Tao Bao039f2da2016-11-22 16:29:50 -0800567 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700568}
569
Tianjie Xuc4447322017-03-06 14:44:59 -0800570Value* GetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
571 if (argv.size() != 1) {
572 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800573 }
574 std::string key;
575 if (!Evaluate(state, argv[0], &key)) {
576 return nullptr;
577 }
578 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700579
Tao Bao039f2da2016-11-22 16:29:50 -0800580 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700581}
582
Doug Zongker47cace92009-06-18 10:11:50 -0700583// file_getprop(file, key)
584//
585// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700586// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700587// and returns the value for 'key' (or "" if it isn't defined).
Tianjie Xu5419ad32018-02-02 16:49:15 -0800588Value* FileGetPropFn(const char* name, State* state,
589 const std::vector<std::unique_ptr<Expr>>& argv) {
Tianjie Xuc4447322017-03-06 14:44:59 -0800590 if (argv.size() != 2) {
591 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
592 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800593 }
594
595 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800596 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800597 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
598 }
599 const std::string& filename = args[0];
600 const std::string& key = args[1];
601
Tianjie Xu22f11202018-08-27 10:50:31 -0700602 std::string buffer;
603 if (!android::base::ReadFileToString(filename, &buffer)) {
604 ErrorAbort(state, kFreadFailure, "%s: failed to read %s", name, filename.c_str());
Tao Bao358c2ec2016-11-28 11:48:43 -0800605 return nullptr;
606 }
607
Tao Bao358c2ec2016-11-28 11:48:43 -0800608 std::vector<std::string> lines = android::base::Split(buffer, "\n");
609 for (size_t i = 0; i < lines.size(); i++) {
610 std::string line = android::base::Trim(lines[i]);
611
612 // comment or blank line: skip to next line
613 if (line.empty() || line[0] == '#') {
614 continue;
615 }
616 size_t equal_pos = line.find('=');
617 if (equal_pos == std::string::npos) {
618 continue;
Tao Bao51d516e2016-11-03 14:49:01 -0700619 }
620
Tao Bao358c2ec2016-11-28 11:48:43 -0800621 // trim whitespace between key and '='
622 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700623
Tao Bao358c2ec2016-11-28 11:48:43 -0800624 // not the key we're looking for
625 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700626
Tao Bao358c2ec2016-11-28 11:48:43 -0800627 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
628 }
Doug Zongker47cace92009-06-18 10:11:50 -0700629
Tao Bao358c2ec2016-11-28 11:48:43 -0800630 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700631}
632
Doug Zongker8edb00c2009-06-11 17:21:44 -0700633// apply_patch_space(bytes)
Tianjie Xu5419ad32018-02-02 16:49:15 -0800634Value* ApplyPatchSpaceFn(const char* name, State* state,
635 const std::vector<std::unique_ptr<Expr>>& argv) {
Tianjie Xuc4447322017-03-06 14:44:59 -0800636 if (argv.size() != 1) {
637 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 args, got %zu", name,
638 argv.size());
639 }
Tao Bao039f2da2016-11-22 16:29:50 -0800640 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800641 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800642 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
643 }
644 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800645
Tao Bao039f2da2016-11-22 16:29:50 -0800646 size_t bytes;
647 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
Tianjie Xu5ad80282018-01-28 15:37:48 -0800648 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count", name,
649 bytes_str.c_str());
Tao Bao039f2da2016-11-22 16:29:50 -0800650 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800651
Tianjie Xu99b73be2017-11-28 17:23:06 -0800652 // Skip the cache size check if the update is a retry.
Tao Bao5ee25662018-07-11 15:55:32 -0700653 if (state->is_retry || CheckAndFreeSpaceOnCache(bytes)) {
Tianjie Xu99b73be2017-11-28 17:23:06 -0800654 return StringValue("t");
655 }
656 return StringValue("");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800657}
658
Tianjie Xuc4447322017-03-06 14:44:59 -0800659Value* WipeCacheFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
660 if (!argv.empty()) {
661 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
662 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800663 }
664 fprintf(static_cast<UpdaterInfo*>(state->cookie)->cmd_pipe, "wipe_cache\n");
665 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700666}
667
Tianjie Xuc4447322017-03-06 14:44:59 -0800668Value* RunProgramFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
669 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800670 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
671 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700672
Tao Bao039f2da2016-11-22 16:29:50 -0800673 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800674 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800675 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
676 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700677
Tianjie Xuc4447322017-03-06 14:44:59 -0800678 char* args2[argv.size() + 1];
679 for (size_t i = 0; i < argv.size(); i++) {
Tao Bao039f2da2016-11-22 16:29:50 -0800680 args2[i] = &args[i][0];
681 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800682 args2[argv.size()] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700683
Tianjie Xuc4447322017-03-06 14:44:59 -0800684 LOG(INFO) << "about to run program [" << args2[0] << "] with " << argv.size() << " args";
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700685
Tao Bao039f2da2016-11-22 16:29:50 -0800686 pid_t child = fork();
687 if (child == 0) {
688 execv(args2[0], args2);
689 PLOG(ERROR) << "run_program: execv failed";
Tao Bao3da88012017-02-03 13:09:23 -0800690 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800691 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700692
Tao Bao039f2da2016-11-22 16:29:50 -0800693 int status;
694 waitpid(child, &status, 0);
695 if (WIFEXITED(status)) {
696 if (WEXITSTATUS(status) != 0) {
697 LOG(ERROR) << "run_program: child exited with status " << WEXITSTATUS(status);
698 }
699 } else if (WIFSIGNALED(status)) {
700 LOG(ERROR) << "run_program: child terminated by signal " << WTERMSIG(status);
701 }
702
703 return StringValue(std::to_string(status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700704}
705
Tao Bao511d7592018-06-19 15:56:49 -0700706// read_file(filename)
Tao Baobafd6c72018-07-09 15:08:50 -0700707// Reads a local file 'filename' and returns its contents as a string Value.
Tianjie Xuc4447322017-03-06 14:44:59 -0800708Value* ReadFileFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
709 if (argv.size() != 1) {
710 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800711 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700712
Tao Bao039f2da2016-11-22 16:29:50 -0800713 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800714 if (!ReadArgs(state, argv, &args)) {
Tao Bao511d7592018-06-19 15:56:49 -0700715 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tao Bao039f2da2016-11-22 16:29:50 -0800716 }
717 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -0800718
Tao Baobafd6c72018-07-09 15:08:50 -0700719 std::string contents;
720 if (android::base::ReadFileToString(filename, &contents)) {
721 return new Value(Value::Type::STRING, std::move(contents));
Tao Bao039f2da2016-11-22 16:29:50 -0800722 }
Tao Bao511d7592018-06-19 15:56:49 -0700723
724 // Leave it to caller to handle the failure.
Tao Baobafd6c72018-07-09 15:08:50 -0700725 PLOG(ERROR) << name << ": Failed to read " << filename;
Tao Bao511d7592018-06-19 15:56:49 -0700726 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -0800727}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700728
Tao Baod0f30882016-11-03 23:52:01 -0700729// write_value(value, filename)
730// Writes 'value' to 'filename'.
731// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
Tianjie Xuc4447322017-03-06 14:44:59 -0800732Value* WriteValueFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
733 if (argv.size() != 2) {
734 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
735 argv.size());
Tao Baod0f30882016-11-03 23:52:01 -0700736 }
737
738 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800739 if (!ReadArgs(state, argv, &args)) {
Tao Baod0f30882016-11-03 23:52:01 -0700740 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
741 }
742
743 const std::string& filename = args[1];
744 if (filename.empty()) {
745 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
746 }
747
748 const std::string& value = args[0];
749 if (!android::base::WriteStringToFile(value, filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800750 PLOG(ERROR) << name << ": Failed to write to \"" << filename << "\"";
Tao Baod0f30882016-11-03 23:52:01 -0700751 return StringValue("");
752 } else {
753 return StringValue("t");
754 }
755}
756
Doug Zongkerc87bab12013-11-25 13:53:25 -0800757// Immediately reboot the device. Recovery is not finished normally,
758// so if you reboot into recovery it will re-start applying the
759// current package (because nothing has cleared the copy of the
760// arguments stored in the BCB).
761//
762// The argument is the partition name passed to the android reboot
763// property. It can be "recovery" to boot from the recovery
764// partition, or "" (empty string) to boot from the regular boot
765// partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800766Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
767 if (argv.size() != 2) {
768 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
769 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800770 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800771
Tao Baobedf5fc2016-11-18 12:01:26 -0800772 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800773 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800774 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
775 }
776 const std::string& filename = args[0];
777 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800778
Tao Baobedf5fc2016-11-18 12:01:26 -0800779 // Zero out the 'command' field of the bootloader message. Leave the rest intact.
780 bootloader_message boot;
781 std::string err;
782 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800783 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800784 return StringValue("");
785 }
786 memset(boot.command, 0, sizeof(boot.command));
787 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800788 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800789 return StringValue("");
790 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800791
Tao Bao2c526392018-05-03 23:01:13 -0700792 reboot("reboot," + property);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800793
Tao Baobedf5fc2016-11-18 12:01:26 -0800794 sleep(5);
795 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800796}
797
798// Store a string value somewhere that future invocations of recovery
799// can access it. This value is called the "stage" and can be used to
800// drive packages that need to do reboots in the middle of
801// installation and keep track of where they are in the multi-stage
802// install.
803//
804// The first argument is the block device for the misc partition
805// ("/misc" in the fstab), which is where this value is stored. The
806// second argument is the string to store; it should not exceed 31
807// bytes.
Tianjie Xuc4447322017-03-06 14:44:59 -0800808Value* SetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
809 if (argv.size() != 2) {
810 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
811 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800812 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800813
Tao Baobedf5fc2016-11-18 12:01:26 -0800814 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800815 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800816 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
817 }
818 const std::string& filename = args[0];
819 const std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800820
Tao Baobedf5fc2016-11-18 12:01:26 -0800821 // Store this value in the misc partition, immediately after the
822 // bootloader message that the main recovery uses to save its
823 // arguments in case of the device restarting midway through
824 // package installation.
825 bootloader_message boot;
826 std::string err;
827 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800828 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800829 return StringValue("");
830 }
831 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage));
832 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800833 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800834 return StringValue("");
835 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800836
Tao Baobedf5fc2016-11-18 12:01:26 -0800837 return StringValue(filename);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800838}
839
840// Return the value most recently saved with SetStageFn. The argument
841// is the block device for the misc partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800842Value* GetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
843 if (argv.size() != 1) {
844 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800845 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800846
Tao Baobedf5fc2016-11-18 12:01:26 -0800847 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800848 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800849 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
850 }
851 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800852
Tao Baobedf5fc2016-11-18 12:01:26 -0800853 bootloader_message boot;
854 std::string err;
855 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800856 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800857 return StringValue("");
858 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800859
Tao Baobedf5fc2016-11-18 12:01:26 -0800860 return StringValue(boot.stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800861}
862
Tianjie Xuc4447322017-03-06 14:44:59 -0800863Value* WipeBlockDeviceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
864 if (argv.size() != 2) {
865 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
866 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800867 }
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800868
Tao Bao358c2ec2016-11-28 11:48:43 -0800869 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800870 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800871 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
872 }
873 const std::string& filename = args[0];
874 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800875
Tao Bao358c2ec2016-11-28 11:48:43 -0800876 size_t len;
877 if (!android::base::ParseUint(len_str.c_str(), &len)) {
878 return nullptr;
879 }
Tianjie Xu22f11202018-08-27 10:50:31 -0700880 android::base::unique_fd fd(open(filename.c_str(), O_WRONLY));
881 if (fd == -1) {
882 PLOG(ERROR) << "Failed to open " << filename;
883 return StringValue("");
884 }
885
Tao Bao358c2ec2016-11-28 11:48:43 -0800886 // The wipe_block_device function in ext4_utils returns 0 on success and 1
887 // for failure.
888 int status = wipe_block_device(fd, len);
889 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800890}
891
Tianjie Xuc4447322017-03-06 14:44:59 -0800892Value* EnableRebootFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
893 if (!argv.empty()) {
894 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
895 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800896 }
897 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
898 fprintf(ui->cmd_pipe, "enable_reboot\n");
899 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -0700900}
901
Tianjie Xuc4447322017-03-06 14:44:59 -0800902Value* Tune2FsFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
903 if (argv.empty()) {
904 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800905 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800906
Tao Bao039f2da2016-11-22 16:29:50 -0800907 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800908 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800909 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
910 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800911
Tianjie Xuc4447322017-03-06 14:44:59 -0800912 char* args2[argv.size() + 1];
Tao Bao039f2da2016-11-22 16:29:50 -0800913 // Tune2fs expects the program name as its args[0]
914 args2[0] = const_cast<char*>(name);
915 if (args2[0] == nullptr) {
916 return nullptr;
917 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800918 for (size_t i = 0; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -0800919 args2[i + 1] = &args[i][0];
920 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800921
Tao Bao039f2da2016-11-22 16:29:50 -0800922 // tune2fs changes the file system parameters on an ext2 file system; it
923 // returns 0 on success.
Tianjie Xuc4447322017-03-06 14:44:59 -0800924 int result = tune2fs_main(argv.size() + 1, args2);
Tao Bao039f2da2016-11-22 16:29:50 -0800925 if (result != 0) {
926 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
927 }
928 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -0800929}
930
Doug Zongker9931f7f2009-06-10 14:11:53 -0700931void RegisterInstallFunctions() {
Tao Bao039f2da2016-11-22 16:29:50 -0800932 RegisterFunction("mount", MountFn);
933 RegisterFunction("is_mounted", IsMountedFn);
934 RegisterFunction("unmount", UnmountFn);
935 RegisterFunction("format", FormatFn);
936 RegisterFunction("show_progress", ShowProgressFn);
937 RegisterFunction("set_progress", SetProgressFn);
Tao Bao039f2da2016-11-22 16:29:50 -0800938 RegisterFunction("package_extract_file", PackageExtractFileFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -0700939
Tao Bao039f2da2016-11-22 16:29:50 -0800940 RegisterFunction("getprop", GetPropFn);
941 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700942
Tao Bao039f2da2016-11-22 16:29:50 -0800943 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Tao Bao5609bc82018-06-20 00:30:48 -0700944 RegisterFunction("patch_partition", PatchPartitionFn);
945 RegisterFunction("patch_partition_check", PatchPartitionCheckFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700946
Tao Bao039f2da2016-11-22 16:29:50 -0800947 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -0800948
Tao Bao039f2da2016-11-22 16:29:50 -0800949 RegisterFunction("read_file", ReadFileFn);
Tao Bao039f2da2016-11-22 16:29:50 -0800950 RegisterFunction("write_value", WriteValueFn);
Doug Zongker512536a2010-02-17 16:11:44 -0800951
Tao Bao039f2da2016-11-22 16:29:50 -0800952 RegisterFunction("wipe_cache", WipeCacheFn);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700953
Tao Bao039f2da2016-11-22 16:29:50 -0800954 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700955
Tao Bao039f2da2016-11-22 16:29:50 -0800956 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800957
Tao Bao039f2da2016-11-22 16:29:50 -0800958 RegisterFunction("reboot_now", RebootNowFn);
959 RegisterFunction("get_stage", GetStageFn);
960 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -0700961
Tao Bao039f2da2016-11-22 16:29:50 -0800962 RegisterFunction("enable_reboot", EnableRebootFn);
963 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700964}