blob: a111f4b796ba2c2d08b505813f5c8d1099564e93 [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>
Tao Bao0d3f84f2016-12-28 15:09:20 -080049#include <applypatch/applypatch.h>
50#include <bootloader_message/bootloader_message.h>
Tao Bao0c7839a2016-10-10 15:48:37 -070051#include <cutils/android_reboot.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"
Elliott Hughes63a31922016-06-09 17:41:22 -070060#include "mounts.h"
Tao Baod33b2f82017-09-28 21:29:11 -070061#include "otafault/ota_io.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -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 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
Doug Zongker3d177d02010-07-01 09:18:44 -070097// mount(fs_type, partition_type, location, mount_point)
Tao Bao0831d0b2016-11-03 23:25:04 -070098// mount(fs_type, partition_type, location, mount_point, mount_options)
Tianjie Xuc4447322017-03-06 14:44:59 -080099
Doug Zongker3d177d02010-07-01 09:18:44 -0700100// fs_type="ext4" partition_type="EMMC" location=device
Tianjie Xuc4447322017-03-06 14:44:59 -0800101Value* MountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
102 if (argv.size() != 4 && argv.size() != 5) {
103 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %zu", name,
104 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800105 }
106
107 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800108 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800109 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
110 }
111 const std::string& fs_type = args[0];
112 const std::string& partition_type = args[1];
113 const std::string& location = args[2];
114 const std::string& mount_point = args[3];
115 std::string mount_options;
116
Tianjie Xuc4447322017-03-06 14:44:59 -0800117 if (argv.size() == 5) {
Tao Bao039f2da2016-11-22 16:29:50 -0800118 mount_options = args[4];
119 }
120
121 if (fs_type.empty()) {
122 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
123 }
124 if (partition_type.empty()) {
125 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
126 name);
127 }
128 if (location.empty()) {
129 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
130 }
131 if (mount_point.empty()) {
132 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
133 name);
134 }
135
136 {
137 char* secontext = nullptr;
138
139 if (sehandle) {
140 selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755);
141 setfscreatecon(secontext);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700142 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700143
Tao Bao039f2da2016-11-22 16:29:50 -0800144 mkdir(mount_point.c_str(), 0755);
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700145
Tao Bao039f2da2016-11-22 16:29:50 -0800146 if (secontext) {
147 freecon(secontext);
148 setfscreatecon(nullptr);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700149 }
Tao Bao039f2da2016-11-22 16:29:50 -0800150 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700151
Tao Bao039f2da2016-11-22 16:29:50 -0800152 if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(),
153 MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700154 uiPrintf(state, "%s: Failed to mount %s at %s: %s", name, location.c_str(), mount_point.c_str(),
155 strerror(errno));
Tao Bao039f2da2016-11-22 16:29:50 -0800156 return StringValue("");
157 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700158
Tao Bao039f2da2016-11-22 16:29:50 -0800159 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700160}
161
Doug Zongker8edb00c2009-06-11 17:21:44 -0700162// is_mounted(mount_point)
Tianjie Xuc4447322017-03-06 14:44:59 -0800163Value* IsMountedFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
164 if (argv.size() != 1) {
165 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800166 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700167
Tao Bao039f2da2016-11-22 16:29:50 -0800168 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800169 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800170 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
171 }
172 const std::string& mount_point = args[0];
173 if (mount_point.empty()) {
174 return ErrorAbort(state, kArgsParsingFailure,
175 "mount_point argument to unmount() can't be empty");
176 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700177
Tao Bao039f2da2016-11-22 16:29:50 -0800178 scan_mounted_volumes();
179 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
180 if (vol == nullptr) {
181 return StringValue("");
182 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700183
Tao Bao039f2da2016-11-22 16:29:50 -0800184 return StringValue(mount_point);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700185}
186
Tianjie Xuc4447322017-03-06 14:44:59 -0800187Value* UnmountFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
188 if (argv.size() != 1) {
189 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800190 }
191 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800192 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800193 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
194 }
195 const std::string& mount_point = args[0];
196 if (mount_point.empty()) {
197 return ErrorAbort(state, kArgsParsingFailure,
198 "mount_point argument to unmount() can't be empty");
199 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700200
Tao Bao039f2da2016-11-22 16:29:50 -0800201 scan_mounted_volumes();
202 MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str());
203 if (vol == nullptr) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700204 uiPrintf(state, "Failed to unmount %s: No such volume", mount_point.c_str());
Tao Bao039f2da2016-11-22 16:29:50 -0800205 return nullptr;
206 } else {
207 int ret = unmount_mounted_volume(vol);
208 if (ret != 0) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700209 uiPrintf(state, "Failed to unmount %s: %s", mount_point.c_str(), strerror(errno));
Doug Zongker9931f7f2009-06-10 14:11:53 -0700210 }
Tao Bao039f2da2016-11-22 16:29:50 -0800211 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700212
Tao Bao039f2da2016-11-22 16:29:50 -0800213 return StringValue(mount_point);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700214}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700215
JP Abgrall37aedb32014-06-16 19:07:39 -0700216static int exec_cmd(const char* path, char* const argv[]) {
Tao Bao039f2da2016-11-22 16:29:50 -0800217 pid_t child;
218 if ((child = vfork()) == 0) {
219 execv(path, argv);
Tao Bao3da88012017-02-03 13:09:23 -0800220 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800221 }
222
223 int status;
224 waitpid(child, &status, 0);
225 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
226 LOG(ERROR) << path << " failed with status " << WEXITSTATUS(status);
227 }
228 return WEXITSTATUS(status);
JP Abgrall37aedb32014-06-16 19:07:39 -0700229}
230
Stephen Smalley779701d2012-02-09 14:13:23 -0500231// format(fs_type, partition_type, location, fs_size, mount_point)
Doug Zongker9931f7f2009-06-10 14:11:53 -0700232//
Tao Bao039f2da2016-11-22 16:29:50 -0800233// fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
234// fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
JP Abgrall37aedb32014-06-16 19:07:39 -0700235// if fs_size == 0, then make fs uses the entire partition.
Ken Sumrall8f132ed2011-01-14 18:55:05 -0800236// if fs_size > 0, that is the size to use
JP Abgrall37aedb32014-06-16 19:07:39 -0700237// 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 -0800238Value* FormatFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
239 if (argv.size() != 5) {
240 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %zu", name,
241 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800242 }
Stephen Smalley779701d2012-02-09 14:13:23 -0500243
Tao Bao039f2da2016-11-22 16:29:50 -0800244 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800245 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800246 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
247 }
248 const std::string& fs_type = args[0];
249 const std::string& partition_type = args[1];
250 const std::string& location = args[2];
251 const std::string& fs_size = args[3];
252 const std::string& mount_point = args[4];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700253
Tao Bao039f2da2016-11-22 16:29:50 -0800254 if (fs_type.empty()) {
255 return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", name);
256 }
257 if (partition_type.empty()) {
258 return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty",
259 name);
260 }
261 if (location.empty()) {
262 return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", name);
263 }
264 if (mount_point.empty()) {
265 return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty",
266 name);
267 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700268
Tao Bao039f2da2016-11-22 16:29:50 -0800269 int64_t size;
270 if (!android::base::ParseInt(fs_size, &size)) {
271 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
272 fs_size.c_str());
273 }
274
275 if (fs_type == "ext4") {
Jin Qianded2dac2017-04-21 14:36:12 -0700276 const char* mke2fs_argv[] = { "/sbin/mke2fs_static", "-t", "ext4", "-b", "4096",
277 location.c_str(), nullptr, nullptr };
278 std::string size_str;
279 if (size != 0) {
280 size_str = std::to_string(size / 4096LL);
281 mke2fs_argv[6] = size_str.c_str();
282 }
283
284 int status = exec_cmd(mke2fs_argv[0], const_cast<char**>(mke2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800285 if (status != 0) {
Jin Qian502fd1c2017-11-02 11:58:12 -0700286 LOG(ERROR) << name << ": mke2fs failed (" << status << ") on " << location;
287 return StringValue("");
Jin Qianded2dac2017-04-21 14:36:12 -0700288 }
289
Tao Bao338be532017-07-11 16:45:04 -0700290 const char* e2fsdroid_argv[] = { "/sbin/e2fsdroid_static", "-e", "-a", mount_point.c_str(),
Jin Qianded2dac2017-04-21 14:36:12 -0700291 location.c_str(), nullptr };
292 status = exec_cmd(e2fsdroid_argv[0], const_cast<char**>(e2fsdroid_argv));
293 if (status != 0) {
294 LOG(ERROR) << name << ": e2fsdroid failed (" << status << ") on " << location;
Tao Bao039f2da2016-11-22 16:29:50 -0800295 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700296 }
Tao Bao039f2da2016-11-22 16:29:50 -0800297 return StringValue(location);
298 } else if (fs_type == "f2fs") {
299 if (size < 0) {
300 LOG(ERROR) << name << ": fs_size can't be negative for f2fs: " << fs_size;
301 return StringValue("");
Doug Zongker9931f7f2009-06-10 14:11:53 -0700302 }
Tao Bao039f2da2016-11-22 16:29:50 -0800303 std::string num_sectors = std::to_string(size / 512);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700304
Tao Bao039f2da2016-11-22 16:29:50 -0800305 const char* f2fs_path = "/sbin/mkfs.f2fs";
Jaegeuk Kim1a8bb0f2017-11-01 13:24:43 -0700306 const char* f2fs_argv[] = { "mkfs.f2fs",
307 "-d1",
308 "-f",
309 "-O",
310 "encrypt",
311 "-O",
312 "quota",
313 location.c_str(),
314 (size < 512) ? nullptr : num_sectors.c_str(),
315 nullptr };
Tao Bao397a8132017-05-12 11:02:27 -0700316 int status = exec_cmd(f2fs_path, const_cast<char**>(f2fs_argv));
Tao Bao039f2da2016-11-22 16:29:50 -0800317 if (status != 0) {
318 LOG(ERROR) << name << ": mkfs.f2fs failed (" << status << ") on " << location;
319 return StringValue("");
320 }
321 return StringValue(location);
322 } else {
323 LOG(ERROR) << name << ": unsupported fs_type \"" << fs_type << "\" partition_type \""
324 << partition_type << "\"";
325 }
326
327 return nullptr;
Doug Zongker9931f7f2009-06-10 14:11:53 -0700328}
329
Tianjie Xuc4447322017-03-06 14:44:59 -0800330Value* ShowProgressFn(const char* name, State* state,
331 const std::vector<std::unique_ptr<Expr>>& argv) {
332 if (argv.size() != 2) {
333 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
334 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800335 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700336
Tao Bao039f2da2016-11-22 16:29:50 -0800337 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800338 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800339 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
340 }
341 const std::string& frac_str = args[0];
342 const std::string& sec_str = args[1];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700343
Tao Bao039f2da2016-11-22 16:29:50 -0800344 double frac;
345 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
346 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
347 frac_str.c_str());
348 }
349 int sec;
350 if (!android::base::ParseInt(sec_str.c_str(), &sec)) {
351 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse int in %s\n", name,
352 sec_str.c_str());
353 }
Doug Zongker9931f7f2009-06-10 14:11:53 -0700354
Tao Bao039f2da2016-11-22 16:29:50 -0800355 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
356 fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700357
Tao Bao039f2da2016-11-22 16:29:50 -0800358 return StringValue(frac_str);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700359}
360
Tianjie Xuc4447322017-03-06 14:44:59 -0800361Value* SetProgressFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
362 if (argv.size() != 1) {
363 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800364 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700365
Tao Bao039f2da2016-11-22 16:29:50 -0800366 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800367 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800368 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
369 }
370 const std::string& frac_str = args[0];
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700371
Tao Bao039f2da2016-11-22 16:29:50 -0800372 double frac;
373 if (!android::base::ParseDouble(frac_str.c_str(), &frac)) {
374 return ErrorAbort(state, kArgsParsingFailure, "%s: failed to parse double in %s\n", name,
375 frac_str.c_str());
376 }
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700377
Tao Bao039f2da2016-11-22 16:29:50 -0800378 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
379 fprintf(ui->cmd_pipe, "set_progress %f\n", frac);
Doug Zongkerfbf3c102009-06-24 09:36:20 -0700380
Tao Bao039f2da2016-11-22 16:29:50 -0800381 return StringValue(frac_str);
Doug Zongker9931f7f2009-06-10 14:11:53 -0700382}
383
Tao Baoef0eb3b2016-11-14 21:29:52 -0800384// package_extract_file(package_file[, dest_file])
385// Extracts a single package_file from the update package and writes it to dest_file,
386// overwriting existing files if necessary. Without the dest_file argument, returns the
387// contents of the package file as a binary blob.
Tianjie Xuc4447322017-03-06 14:44:59 -0800388Value* PackageExtractFileFn(const char* name, State* state,
389 const std::vector<std::unique_ptr<Expr>>& argv) {
390 if (argv.size() < 1 || argv.size() > 2) {
391 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %zu", name,
392 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800393 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700394
Tianjie Xuc4447322017-03-06 14:44:59 -0800395 if (argv.size() == 2) {
Tao Baoef0eb3b2016-11-14 21:29:52 -0800396 // The two-argument version extracts to a file.
397
398 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800399 if (!ReadArgs(state, argv, &args)) {
400 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
401 argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700402 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800403 const std::string& zip_path = args[0];
404 const std::string& dest_path = args[1];
Doug Zongker43772d22014-06-09 14:13:19 -0700405
Tao Baoef0eb3b2016-11-14 21:29:52 -0800406 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
407 ZipString zip_string_path(zip_path.c_str());
408 ZipEntry entry;
409 if (FindEntry(za, zip_string_path, &entry) != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800410 LOG(ERROR) << name << ": no " << zip_path << " in package";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800411 return StringValue("");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700412 }
Tao Baoef0eb3b2016-11-14 21:29:52 -0800413
Tao Bao358c2ec2016-11-28 11:48:43 -0800414 unique_fd fd(TEMP_FAILURE_RETRY(
415 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
Tao Baoef0eb3b2016-11-14 21:29:52 -0800416 if (fd == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800417 PLOG(ERROR) << name << ": can't open " << dest_path << " for write";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800418 return StringValue("");
419 }
420
421 bool success = true;
422 int32_t ret = ExtractEntryToFile(za, &entry, fd);
423 if (ret != 0) {
Tao Bao039f2da2016-11-22 16:29:50 -0800424 LOG(ERROR) << name << ": Failed to extract entry \"" << zip_path << "\" ("
425 << entry.uncompressed_length << " bytes) to \"" << dest_path
426 << "\": " << ErrorCodeString(ret);
Tao Baoef0eb3b2016-11-14 21:29:52 -0800427 success = false;
428 }
429 if (ota_fsync(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800430 PLOG(ERROR) << "fsync of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800431 success = false;
432 }
433 if (ota_close(fd) == -1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800434 PLOG(ERROR) << "close of \"" << dest_path << "\" failed";
Tao Baoef0eb3b2016-11-14 21:29:52 -0800435 success = false;
436 }
437
438 return StringValue(success ? "t" : "");
439 } else {
440 // The one-argument version returns the contents of the file as the result.
441
442 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800443 if (!ReadArgs(state, argv, &args)) {
444 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %zu args", name,
445 argv.size());
Tao Baoef0eb3b2016-11-14 21:29:52 -0800446 }
447 const std::string& zip_path = args[0];
448
449 ZipArchiveHandle za = static_cast<UpdaterInfo*>(state->cookie)->package_zip;
450 ZipString zip_string_path(zip_path.c_str());
451 ZipEntry entry;
452 if (FindEntry(za, zip_string_path, &entry) != 0) {
453 return ErrorAbort(state, kPackageExtractFileFailure, "%s(): no %s in package", name,
454 zip_path.c_str());
455 }
456
457 std::string buffer;
458 buffer.resize(entry.uncompressed_length);
459
460 int32_t ret = ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&buffer[0]), buffer.size());
461 if (ret != 0) {
462 return ErrorAbort(state, kPackageExtractFileFailure,
463 "%s: Failed to extract entry \"%s\" (%zu bytes) to memory: %s", name,
464 zip_path.c_str(), buffer.size(), ErrorCodeString(ret));
465 }
466
467 return new Value(VAL_BLOB, buffer);
468 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700469}
470
Tianjie Xuc4447322017-03-06 14:44:59 -0800471Value* GetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
472 if (argv.size() != 1) {
473 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800474 }
475 std::string key;
476 if (!Evaluate(state, argv[0], &key)) {
477 return nullptr;
478 }
479 std::string value = android::base::GetProperty(key, "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700480
Tao Bao039f2da2016-11-22 16:29:50 -0800481 return StringValue(value);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700482}
483
Doug Zongker47cace92009-06-18 10:11:50 -0700484// file_getprop(file, key)
485//
486// interprets 'file' as a getprop-style file (key=value pairs, one
Tao Bao51d516e2016-11-03 14:49:01 -0700487// per line. # comment lines, blank lines, lines without '=' ignored),
Michael Rungeaa1a31e2014-04-25 18:47:18 -0700488// and returns the value for 'key' (or "" if it isn't defined).
Tianjie Xuc4447322017-03-06 14:44:59 -0800489Value* FileGetPropFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
490 if (argv.size() != 2) {
491 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
492 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800493 }
494
495 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800496 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800497 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
498 }
499 const std::string& filename = args[0];
500 const std::string& key = args[1];
501
502 struct stat st;
503 if (stat(filename.c_str(), &st) < 0) {
504 return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name,
505 filename.c_str(), strerror(errno));
506 }
507
508 constexpr off_t MAX_FILE_GETPROP_SIZE = 65536;
509 if (st.st_size > MAX_FILE_GETPROP_SIZE) {
510 return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)",
511 filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE));
512 }
513
514 std::string buffer(st.st_size, '\0');
515 unique_file f(ota_fopen(filename.c_str(), "rb"));
516 if (f == nullptr) {
517 return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name, filename.c_str(),
518 strerror(errno));
519 }
520
521 if (ota_fread(&buffer[0], 1, st.st_size, f.get()) != static_cast<size_t>(st.st_size)) {
522 ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s", name,
523 static_cast<size_t>(st.st_size), filename.c_str());
524 return nullptr;
525 }
526
527 ota_fclose(f);
528
529 std::vector<std::string> lines = android::base::Split(buffer, "\n");
530 for (size_t i = 0; i < lines.size(); i++) {
531 std::string line = android::base::Trim(lines[i]);
532
533 // comment or blank line: skip to next line
534 if (line.empty() || line[0] == '#') {
535 continue;
536 }
537 size_t equal_pos = line.find('=');
538 if (equal_pos == std::string::npos) {
539 continue;
Tao Bao51d516e2016-11-03 14:49:01 -0700540 }
541
Tao Bao358c2ec2016-11-28 11:48:43 -0800542 // trim whitespace between key and '='
543 std::string str = android::base::Trim(line.substr(0, equal_pos));
Doug Zongker47cace92009-06-18 10:11:50 -0700544
Tao Bao358c2ec2016-11-28 11:48:43 -0800545 // not the key we're looking for
546 if (key != str) continue;
Doug Zongker47cace92009-06-18 10:11:50 -0700547
Tao Bao358c2ec2016-11-28 11:48:43 -0800548 return StringValue(android::base::Trim(line.substr(equal_pos + 1)));
549 }
Doug Zongker47cace92009-06-18 10:11:50 -0700550
Tao Bao358c2ec2016-11-28 11:48:43 -0800551 return StringValue("");
Doug Zongker47cace92009-06-18 10:11:50 -0700552}
553
Doug Zongker8edb00c2009-06-11 17:21:44 -0700554// apply_patch_space(bytes)
Tianjie Xuc4447322017-03-06 14:44:59 -0800555Value* ApplyPatchSpaceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
556 if (argv.size() != 1) {
557 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 args, got %zu", name,
558 argv.size());
559 }
Tao Bao039f2da2016-11-22 16:29:50 -0800560 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800561 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800562 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
563 }
564 const std::string& bytes_str = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800565
Tao Bao039f2da2016-11-22 16:29:50 -0800566 size_t bytes;
567 if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) {
568 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n",
569 name, bytes_str.c_str());
570 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800571
Tao Bao039f2da2016-11-22 16:29:50 -0800572 return StringValue(CacheSizeCheck(bytes) ? "" : "t");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800573}
574
Tao Bao039f2da2016-11-22 16:29:50 -0800575// apply_patch(src_file, tgt_file, tgt_sha1, tgt_size, patch1_sha1, patch1_blob, [...])
576// Applies a binary patch to the src_file to produce the tgt_file. If the desired target is the
577// same as the source, pass "-" for tgt_file. tgt_sha1 and tgt_size are the expected final SHA1
578// hash and size of the target file. The remaining arguments must come in pairs: a SHA1 hash (a
579// 40-character hex string) and a blob. The blob is the patch to be applied when the source
580// file's current contents have the given SHA1.
581//
582// The patching is done in a safe manner that guarantees the target file either has the desired
583// SHA1 hash and size, or it is untouched -- it will not be left in an unrecoverable intermediate
584// state. If the process is interrupted during patching, the target file may be in an intermediate
585// state; a copy exists in the cache partition so restarting the update can successfully update
586// the file.
Tianjie Xuc4447322017-03-06 14:44:59 -0800587Value* ApplyPatchFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
588 if (argv.size() < 6 || (argv.size() % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700589 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xuc4447322017-03-06 14:44:59 -0800590 "even number, got %zu", name, argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700591 }
592
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700593 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800594 if (!ReadArgs(state, argv, &args, 0, 4)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700595 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700596 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700597 const std::string& source_filename = args[0];
598 const std::string& target_filename = args[1];
599 const std::string& target_sha1 = args[2];
600 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700601
Tao Baob15fd222015-09-24 11:10:51 -0700602 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700603 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
604 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
605 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800606 }
607
Tianjie Xuc4447322017-03-06 14:44:59 -0800608 int patchcount = (argv.size()-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700609 std::vector<std::unique_ptr<Value>> arg_values;
Tianjie Xuc4447322017-03-06 14:44:59 -0800610 if (!ReadValueArgs(state, argv, &arg_values, 4, argv.size() - 4)) {
Yabin Cui64be2132016-02-03 18:16:02 -0800611 return nullptr;
612 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700613
Yabin Cui64be2132016-02-03 18:16:02 -0800614 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700615 if (arg_values[i * 2]->type != VAL_STRING) {
616 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
617 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800618 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700619 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
620 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
621 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800622 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700623 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700624
Tianjie Xuaced5d92016-10-12 10:55:04 -0700625 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700626 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800627 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700628 patch_sha_str.push_back(arg_values[i * 2]->data);
629 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700630 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800631
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700632 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
633 target_sha1.c_str(), target_size,
634 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800635
Tianjie Xuaced5d92016-10-12 10:55:04 -0700636 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800637}
638
Tao Bao039f2da2016-11-22 16:29:50 -0800639// apply_patch_check(filename, [sha1, ...])
640// Returns true if the contents of filename or the temporary copy in the cache partition (if
641// present) have a SHA-1 checksum equal to one of the given sha1 values. sha1 values are
642// specified as 40 hex digits. This function differs from sha1_check(read_file(filename),
643// sha1 [, ...]) in that it knows to check the cache partition copy, so apply_patch_check() will
644// succeed even if the file was corrupted by an interrupted apply_patch() update.
Tianjie Xuc4447322017-03-06 14:44:59 -0800645Value* ApplyPatchCheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
646 if (argv.size() < 1) {
647 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %zu", name,
648 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800649 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800650
Tao Bao039f2da2016-11-22 16:29:50 -0800651 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800652 if (!ReadArgs(state, argv, &args, 0, 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800653 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
654 }
655 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800656
Tao Bao039f2da2016-11-22 16:29:50 -0800657 std::vector<std::string> sha1s;
Tao Baodb56eb02017-03-23 06:34:20 -0700658 if (argv.size() > 1 && !ReadArgs(state, argv, &sha1s, 1, argv.size() - 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800659 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
660 }
661 int result = applypatch_check(filename.c_str(), sha1s);
Tianjie Xuaced5d92016-10-12 10:55:04 -0700662
Tao Bao039f2da2016-11-22 16:29:50 -0800663 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700664}
665
Tao Bao0bbc7642017-03-29 23:57:47 -0700666// This is the updater side handler for ui_print() in edify script. Contents will be sent over to
667// the recovery side for on-screen display.
Tianjie Xuc4447322017-03-06 14:44:59 -0800668Value* UIPrintFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
Tao Bao039f2da2016-11-22 16:29:50 -0800669 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800670 if (!ReadArgs(state, argv, &args)) {
Tao Bao0bbc7642017-03-29 23:57:47 -0700671 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tao Bao039f2da2016-11-22 16:29:50 -0800672 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700673
Tao Bao0bbc7642017-03-29 23:57:47 -0700674 std::string buffer = android::base::Join(args, "");
Tao Bao039f2da2016-11-22 16:29:50 -0800675 uiPrint(state, buffer);
676 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700677}
678
Tianjie Xuc4447322017-03-06 14:44:59 -0800679Value* WipeCacheFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
680 if (!argv.empty()) {
681 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
682 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800683 }
684 fprintf(static_cast<UpdaterInfo*>(state->cookie)->cmd_pipe, "wipe_cache\n");
685 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700686}
687
Tianjie Xuc4447322017-03-06 14:44:59 -0800688Value* RunProgramFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
689 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800690 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
691 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700692
Tao Bao039f2da2016-11-22 16:29:50 -0800693 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800694 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800695 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
696 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700697
Tianjie Xuc4447322017-03-06 14:44:59 -0800698 char* args2[argv.size() + 1];
699 for (size_t i = 0; i < argv.size(); i++) {
Tao Bao039f2da2016-11-22 16:29:50 -0800700 args2[i] = &args[i][0];
701 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800702 args2[argv.size()] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700703
Tianjie Xuc4447322017-03-06 14:44:59 -0800704 LOG(INFO) << "about to run program [" << args2[0] << "] with " << argv.size() << " args";
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700705
Tao Bao039f2da2016-11-22 16:29:50 -0800706 pid_t child = fork();
707 if (child == 0) {
708 execv(args2[0], args2);
709 PLOG(ERROR) << "run_program: execv failed";
Tao Bao3da88012017-02-03 13:09:23 -0800710 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800711 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700712
Tao Bao039f2da2016-11-22 16:29:50 -0800713 int status;
714 waitpid(child, &status, 0);
715 if (WIFEXITED(status)) {
716 if (WEXITSTATUS(status) != 0) {
717 LOG(ERROR) << "run_program: child exited with status " << WEXITSTATUS(status);
718 }
719 } else if (WIFSIGNALED(status)) {
720 LOG(ERROR) << "run_program: child terminated by signal " << WTERMSIG(status);
721 }
722
723 return StringValue(std::to_string(status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700724}
725
Doug Zongker512536a2010-02-17 16:11:44 -0800726// sha1_check(data)
727// to return the sha1 of the data (given in the format returned by
728// read_file).
729//
730// sha1_check(data, sha1_hex, [sha1_hex, ...])
731// returns the sha1 of the file if it matches any of the hex
732// strings passed, or "" if it does not equal any of them.
733//
Tianjie Xuc4447322017-03-06 14:44:59 -0800734Value* Sha1CheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
735 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800736 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
737 }
Doug Zongker512536a2010-02-17 16:11:44 -0800738
Tao Bao039f2da2016-11-22 16:29:50 -0800739 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800740 if (!ReadValueArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800741 return nullptr;
742 }
Doug Zongker512536a2010-02-17 16:11:44 -0800743
Tao Bao039f2da2016-11-22 16:29:50 -0800744 if (args[0]->type == VAL_INVALID) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700745 return StringValue("");
Tao Bao039f2da2016-11-22 16:29:50 -0800746 }
747 uint8_t digest[SHA_DIGEST_LENGTH];
748 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
749
Tianjie Xuc4447322017-03-06 14:44:59 -0800750 if (argv.size() == 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800751 return StringValue(print_sha1(digest));
752 }
753
Tianjie Xuc4447322017-03-06 14:44:59 -0800754 for (size_t i = 1; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -0800755 uint8_t arg_digest[SHA_DIGEST_LENGTH];
756 if (args[i]->type != VAL_STRING) {
757 LOG(ERROR) << name << "(): arg " << i << " is not a string; skipping";
758 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
759 // Warn about bad args and skip them.
760 LOG(ERROR) << name << "(): error parsing \"" << args[i]->data << "\" as sha-1; skipping";
761 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
762 // Found a match.
763 return args[i].release();
764 }
765 }
766
767 // Didn't match any of the hex strings; return false.
768 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -0800769}
770
Hristo Bojinovdb314d62010-08-02 10:29:49 -0700771// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -0800772// is actually a FileContents*).
Tianjie Xuc4447322017-03-06 14:44:59 -0800773Value* ReadFileFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
774 if (argv.size() != 1) {
775 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800776 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700777
Tao Bao039f2da2016-11-22 16:29:50 -0800778 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800779 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800780 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
781 }
782 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -0800783
Tao Bao039f2da2016-11-22 16:29:50 -0800784 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -0800785
Tao Bao039f2da2016-11-22 16:29:50 -0800786 FileContents fc;
787 if (LoadFileContents(filename.c_str(), &fc) == 0) {
788 v->type = VAL_BLOB;
789 v->data = std::string(fc.data.begin(), fc.data.end());
790 }
791 return v;
Doug Zongker512536a2010-02-17 16:11:44 -0800792}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700793
Tao Baod0f30882016-11-03 23:52:01 -0700794// write_value(value, filename)
795// Writes 'value' to 'filename'.
796// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
Tianjie Xuc4447322017-03-06 14:44:59 -0800797Value* WriteValueFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
798 if (argv.size() != 2) {
799 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
800 argv.size());
Tao Baod0f30882016-11-03 23:52:01 -0700801 }
802
803 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800804 if (!ReadArgs(state, argv, &args)) {
Tao Baod0f30882016-11-03 23:52:01 -0700805 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
806 }
807
808 const std::string& filename = args[1];
809 if (filename.empty()) {
810 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
811 }
812
813 const std::string& value = args[0];
814 if (!android::base::WriteStringToFile(value, filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800815 PLOG(ERROR) << name << ": Failed to write to \"" << filename << "\"";
Tao Baod0f30882016-11-03 23:52:01 -0700816 return StringValue("");
817 } else {
818 return StringValue("t");
819 }
820}
821
Doug Zongkerc87bab12013-11-25 13:53:25 -0800822// Immediately reboot the device. Recovery is not finished normally,
823// so if you reboot into recovery it will re-start applying the
824// current package (because nothing has cleared the copy of the
825// arguments stored in the BCB).
826//
827// The argument is the partition name passed to the android reboot
828// property. It can be "recovery" to boot from the recovery
829// partition, or "" (empty string) to boot from the regular boot
830// partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800831Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
832 if (argv.size() != 2) {
833 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
834 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800835 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800836
Tao Baobedf5fc2016-11-18 12:01:26 -0800837 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800838 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800839 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
840 }
841 const std::string& filename = args[0];
842 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800843
Tao Baobedf5fc2016-11-18 12:01:26 -0800844 // Zero out the 'command' field of the bootloader message. Leave the rest intact.
845 bootloader_message boot;
846 std::string err;
847 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800848 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800849 return StringValue("");
850 }
851 memset(boot.command, 0, sizeof(boot.command));
852 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800853 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800854 return StringValue("");
855 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800856
Dmitri Plotnikov8706a982017-04-18 08:28:26 -0700857 std::string reboot_cmd = "reboot," + property;
858 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
859 reboot_cmd += ",quiescent";
860 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800861 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800862
Tao Baobedf5fc2016-11-18 12:01:26 -0800863 sleep(5);
864 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800865}
866
867// Store a string value somewhere that future invocations of recovery
868// can access it. This value is called the "stage" and can be used to
869// drive packages that need to do reboots in the middle of
870// installation and keep track of where they are in the multi-stage
871// install.
872//
873// The first argument is the block device for the misc partition
874// ("/misc" in the fstab), which is where this value is stored. The
875// second argument is the string to store; it should not exceed 31
876// bytes.
Tianjie Xuc4447322017-03-06 14:44:59 -0800877Value* SetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
878 if (argv.size() != 2) {
879 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
880 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800881 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800882
Tao Baobedf5fc2016-11-18 12:01:26 -0800883 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800884 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800885 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
886 }
887 const std::string& filename = args[0];
888 const std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800889
Tao Baobedf5fc2016-11-18 12:01:26 -0800890 // Store this value in the misc partition, immediately after the
891 // bootloader message that the main recovery uses to save its
892 // arguments in case of the device restarting midway through
893 // package installation.
894 bootloader_message boot;
895 std::string err;
896 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800897 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800898 return StringValue("");
899 }
900 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage));
901 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800902 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800903 return StringValue("");
904 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800905
Tao Baobedf5fc2016-11-18 12:01:26 -0800906 return StringValue(filename);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800907}
908
909// Return the value most recently saved with SetStageFn. The argument
910// is the block device for the misc partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800911Value* GetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
912 if (argv.size() != 1) {
913 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800914 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800915
Tao Baobedf5fc2016-11-18 12:01:26 -0800916 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800917 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800918 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
919 }
920 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800921
Tao Baobedf5fc2016-11-18 12:01:26 -0800922 bootloader_message boot;
923 std::string err;
924 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800925 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800926 return StringValue("");
927 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800928
Tao Baobedf5fc2016-11-18 12:01:26 -0800929 return StringValue(boot.stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800930}
931
Tianjie Xuc4447322017-03-06 14:44:59 -0800932Value* WipeBlockDeviceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
933 if (argv.size() != 2) {
934 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
935 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800936 }
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800937
Tao Bao358c2ec2016-11-28 11:48:43 -0800938 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800939 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800940 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
941 }
942 const std::string& filename = args[0];
943 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800944
Tao Bao358c2ec2016-11-28 11:48:43 -0800945 size_t len;
946 if (!android::base::ParseUint(len_str.c_str(), &len)) {
947 return nullptr;
948 }
949 unique_fd fd(ota_open(filename.c_str(), O_WRONLY, 0644));
950 // The wipe_block_device function in ext4_utils returns 0 on success and 1
951 // for failure.
952 int status = wipe_block_device(fd, len);
953 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800954}
955
Tianjie Xuc4447322017-03-06 14:44:59 -0800956Value* EnableRebootFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
957 if (!argv.empty()) {
958 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
959 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800960 }
961 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
962 fprintf(ui->cmd_pipe, "enable_reboot\n");
963 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -0700964}
965
Tianjie Xuc4447322017-03-06 14:44:59 -0800966Value* Tune2FsFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
967 if (argv.empty()) {
968 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800969 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800970
Tao Bao039f2da2016-11-22 16:29:50 -0800971 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800972 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800973 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
974 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800975
Tianjie Xuc4447322017-03-06 14:44:59 -0800976 char* args2[argv.size() + 1];
Tao Bao039f2da2016-11-22 16:29:50 -0800977 // Tune2fs expects the program name as its args[0]
978 args2[0] = const_cast<char*>(name);
979 if (args2[0] == nullptr) {
980 return nullptr;
981 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800982 for (size_t i = 0; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -0800983 args2[i + 1] = &args[i][0];
984 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800985
Tao Bao039f2da2016-11-22 16:29:50 -0800986 // tune2fs changes the file system parameters on an ext2 file system; it
987 // returns 0 on success.
Tianjie Xuc4447322017-03-06 14:44:59 -0800988 int result = tune2fs_main(argv.size() + 1, args2);
Tao Bao039f2da2016-11-22 16:29:50 -0800989 if (result != 0) {
990 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
991 }
992 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -0800993}
994
Doug Zongker9931f7f2009-06-10 14:11:53 -0700995void RegisterInstallFunctions() {
Tao Bao039f2da2016-11-22 16:29:50 -0800996 RegisterFunction("mount", MountFn);
997 RegisterFunction("is_mounted", IsMountedFn);
998 RegisterFunction("unmount", UnmountFn);
999 RegisterFunction("format", FormatFn);
1000 RegisterFunction("show_progress", ShowProgressFn);
1001 RegisterFunction("set_progress", SetProgressFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001002 RegisterFunction("package_extract_file", PackageExtractFileFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001003
Tao Bao039f2da2016-11-22 16:29:50 -08001004 RegisterFunction("getprop", GetPropFn);
1005 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001006
Tao Bao039f2da2016-11-22 16:29:50 -08001007 RegisterFunction("apply_patch", ApplyPatchFn);
1008 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1009 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001010
Tao Bao039f2da2016-11-22 16:29:50 -08001011 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001012
Tao Bao039f2da2016-11-22 16:29:50 -08001013 RegisterFunction("read_file", ReadFileFn);
1014 RegisterFunction("sha1_check", Sha1CheckFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001015 RegisterFunction("write_value", WriteValueFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001016
Tao Bao039f2da2016-11-22 16:29:50 -08001017 RegisterFunction("wipe_cache", WipeCacheFn);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001018
Tao Bao039f2da2016-11-22 16:29:50 -08001019 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001020
Tao Bao039f2da2016-11-22 16:29:50 -08001021 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001022
Tao Bao039f2da2016-11-22 16:29:50 -08001023 RegisterFunction("reboot_now", RebootNowFn);
1024 RegisterFunction("get_stage", GetStageFn);
1025 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001026
Tao Bao039f2da2016-11-22 16:29:50 -08001027 RegisterFunction("enable_reboot", EnableRebootFn);
1028 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001029}