blob: 870b857915b71ac850d97f105990f3209633bb2b [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
Tianjie Xu99b73be2017-11-28 17:23:06 -0800572 // Skip the cache size check if the update is a retry.
573 if (state->is_retry || CacheSizeCheck(bytes) == 0) {
574 return StringValue("t");
575 }
576 return StringValue("");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800577}
578
Tao Bao039f2da2016-11-22 16:29:50 -0800579// apply_patch(src_file, tgt_file, tgt_sha1, tgt_size, patch1_sha1, patch1_blob, [...])
580// Applies a binary patch to the src_file to produce the tgt_file. If the desired target is the
581// same as the source, pass "-" for tgt_file. tgt_sha1 and tgt_size are the expected final SHA1
582// hash and size of the target file. The remaining arguments must come in pairs: a SHA1 hash (a
583// 40-character hex string) and a blob. The blob is the patch to be applied when the source
584// file's current contents have the given SHA1.
585//
586// The patching is done in a safe manner that guarantees the target file either has the desired
587// SHA1 hash and size, or it is untouched -- it will not be left in an unrecoverable intermediate
588// state. If the process is interrupted during patching, the target file may be in an intermediate
589// state; a copy exists in the cache partition so restarting the update can successfully update
590// the file.
Tianjie Xuc4447322017-03-06 14:44:59 -0800591Value* ApplyPatchFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
592 if (argv.size() < 6 || (argv.size() % 2) == 1) {
Tianjie Xu16255832016-04-30 11:49:59 -0700593 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an "
Tianjie Xuc4447322017-03-06 14:44:59 -0800594 "even number, got %zu", name, argv.size());
Doug Zongker8edb00c2009-06-11 17:21:44 -0700595 }
596
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700597 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800598 if (!ReadArgs(state, argv, &args, 0, 4)) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700599 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
Doug Zongker8edb00c2009-06-11 17:21:44 -0700600 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700601 const std::string& source_filename = args[0];
602 const std::string& target_filename = args[1];
603 const std::string& target_sha1 = args[2];
604 const std::string& target_size_str = args[3];
Doug Zongker8edb00c2009-06-11 17:21:44 -0700605
Tao Baob15fd222015-09-24 11:10:51 -0700606 size_t target_size;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700607 if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) {
608 return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count",
609 name, target_size_str.c_str());
Doug Zongkerc4351c72010-02-22 14:46:32 -0800610 }
611
Tianjie Xuc4447322017-03-06 14:44:59 -0800612 int patchcount = (argv.size()-4) / 2;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700613 std::vector<std::unique_ptr<Value>> arg_values;
Tianjie Xuc4447322017-03-06 14:44:59 -0800614 if (!ReadValueArgs(state, argv, &arg_values, 4, argv.size() - 4)) {
Yabin Cui64be2132016-02-03 18:16:02 -0800615 return nullptr;
616 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700617
Yabin Cui64be2132016-02-03 18:16:02 -0800618 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700619 if (arg_values[i * 2]->type != VAL_STRING) {
620 return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name,
621 i * 2);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800622 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700623 if (arg_values[i * 2 + 1]->type != VAL_BLOB) {
624 return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name,
625 i * 2 + 1);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800626 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700627 }
Doug Zongker8edb00c2009-06-11 17:21:44 -0700628
Tianjie Xuaced5d92016-10-12 10:55:04 -0700629 std::vector<std::string> patch_sha_str;
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700630 std::vector<std::unique_ptr<Value>> patches;
Yabin Cui64be2132016-02-03 18:16:02 -0800631 for (int i = 0; i < patchcount; ++i) {
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700632 patch_sha_str.push_back(arg_values[i * 2]->data);
633 patches.push_back(std::move(arg_values[i * 2 + 1]));
Doug Zongker8edb00c2009-06-11 17:21:44 -0700634 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800635
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700636 int result = applypatch(source_filename.c_str(), target_filename.c_str(),
637 target_sha1.c_str(), target_size,
638 patch_sha_str, patches, nullptr);
Doug Zongkerc4351c72010-02-22 14:46:32 -0800639
Tianjie Xuaced5d92016-10-12 10:55:04 -0700640 return StringValue(result == 0 ? "t" : "");
Doug Zongkerc4351c72010-02-22 14:46:32 -0800641}
642
Tao Bao039f2da2016-11-22 16:29:50 -0800643// apply_patch_check(filename, [sha1, ...])
644// Returns true if the contents of filename or the temporary copy in the cache partition (if
645// present) have a SHA-1 checksum equal to one of the given sha1 values. sha1 values are
646// specified as 40 hex digits. This function differs from sha1_check(read_file(filename),
647// sha1 [, ...]) in that it knows to check the cache partition copy, so apply_patch_check() will
648// succeed even if the file was corrupted by an interrupted apply_patch() update.
Tianjie Xuc4447322017-03-06 14:44:59 -0800649Value* ApplyPatchCheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
650 if (argv.size() < 1) {
651 return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %zu", name,
652 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800653 }
Doug Zongkerc4351c72010-02-22 14:46:32 -0800654
Tao Bao039f2da2016-11-22 16:29:50 -0800655 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800656 if (!ReadArgs(state, argv, &args, 0, 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800657 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
658 }
659 const std::string& filename = args[0];
Doug Zongkerc4351c72010-02-22 14:46:32 -0800660
Tao Bao039f2da2016-11-22 16:29:50 -0800661 std::vector<std::string> sha1s;
Tao Baodb56eb02017-03-23 06:34:20 -0700662 if (argv.size() > 1 && !ReadArgs(state, argv, &sha1s, 1, argv.size() - 1)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800663 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
664 }
665 int result = applypatch_check(filename.c_str(), sha1s);
Tianjie Xuaced5d92016-10-12 10:55:04 -0700666
Tao Bao039f2da2016-11-22 16:29:50 -0800667 return StringValue(result == 0 ? "t" : "");
Doug Zongker8edb00c2009-06-11 17:21:44 -0700668}
669
Tao Bao0bbc7642017-03-29 23:57:47 -0700670// This is the updater side handler for ui_print() in edify script. Contents will be sent over to
671// the recovery side for on-screen display.
Tianjie Xuc4447322017-03-06 14:44:59 -0800672Value* UIPrintFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
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 Bao0bbc7642017-03-29 23:57:47 -0700675 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
Tao Bao039f2da2016-11-22 16:29:50 -0800676 }
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700677
Tao Bao0bbc7642017-03-29 23:57:47 -0700678 std::string buffer = android::base::Join(args, "");
Tao Bao039f2da2016-11-22 16:29:50 -0800679 uiPrint(state, buffer);
680 return StringValue(buffer);
Doug Zongkerd9c9d102009-06-12 12:24:39 -0700681}
682
Tianjie Xuc4447322017-03-06 14:44:59 -0800683Value* WipeCacheFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
684 if (!argv.empty()) {
685 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
686 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800687 }
688 fprintf(static_cast<UpdaterInfo*>(state->cookie)->cmd_pipe, "wipe_cache\n");
689 return StringValue("t");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700690}
691
Tianjie Xuc4447322017-03-06 14:44:59 -0800692Value* RunProgramFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
693 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800694 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
695 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700696
Tao Bao039f2da2016-11-22 16:29:50 -0800697 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800698 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800699 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
700 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700701
Tianjie Xuc4447322017-03-06 14:44:59 -0800702 char* args2[argv.size() + 1];
703 for (size_t i = 0; i < argv.size(); i++) {
Tao Bao039f2da2016-11-22 16:29:50 -0800704 args2[i] = &args[i][0];
705 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800706 args2[argv.size()] = nullptr;
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700707
Tianjie Xuc4447322017-03-06 14:44:59 -0800708 LOG(INFO) << "about to run program [" << args2[0] << "] with " << argv.size() << " args";
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700709
Tao Bao039f2da2016-11-22 16:29:50 -0800710 pid_t child = fork();
711 if (child == 0) {
712 execv(args2[0], args2);
713 PLOG(ERROR) << "run_program: execv failed";
Tao Bao3da88012017-02-03 13:09:23 -0800714 _exit(EXIT_FAILURE);
Tao Bao039f2da2016-11-22 16:29:50 -0800715 }
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700716
Tao Bao039f2da2016-11-22 16:29:50 -0800717 int status;
718 waitpid(child, &status, 0);
719 if (WIFEXITED(status)) {
720 if (WEXITSTATUS(status) != 0) {
721 LOG(ERROR) << "run_program: child exited with status " << WEXITSTATUS(status);
722 }
723 } else if (WIFSIGNALED(status)) {
724 LOG(ERROR) << "run_program: child terminated by signal " << WTERMSIG(status);
725 }
726
727 return StringValue(std::to_string(status));
Doug Zongkera3f89ea2009-09-10 14:10:48 -0700728}
729
Doug Zongker512536a2010-02-17 16:11:44 -0800730// sha1_check(data)
731// to return the sha1 of the data (given in the format returned by
732// read_file).
733//
734// sha1_check(data, sha1_hex, [sha1_hex, ...])
735// returns the sha1 of the file if it matches any of the hex
736// strings passed, or "" if it does not equal any of them.
737//
Tianjie Xuc4447322017-03-06 14:44:59 -0800738Value* Sha1CheckFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
739 if (argv.size() < 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800740 return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name);
741 }
Doug Zongker512536a2010-02-17 16:11:44 -0800742
Tao Bao039f2da2016-11-22 16:29:50 -0800743 std::vector<std::unique_ptr<Value>> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800744 if (!ReadValueArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800745 return nullptr;
746 }
Doug Zongker512536a2010-02-17 16:11:44 -0800747
Tao Bao039f2da2016-11-22 16:29:50 -0800748 if (args[0]->type == VAL_INVALID) {
Tianjie Xuaced5d92016-10-12 10:55:04 -0700749 return StringValue("");
Tao Bao039f2da2016-11-22 16:29:50 -0800750 }
751 uint8_t digest[SHA_DIGEST_LENGTH];
752 SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest);
753
Tianjie Xuc4447322017-03-06 14:44:59 -0800754 if (argv.size() == 1) {
Tao Bao039f2da2016-11-22 16:29:50 -0800755 return StringValue(print_sha1(digest));
756 }
757
Tianjie Xuc4447322017-03-06 14:44:59 -0800758 for (size_t i = 1; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -0800759 uint8_t arg_digest[SHA_DIGEST_LENGTH];
760 if (args[i]->type != VAL_STRING) {
761 LOG(ERROR) << name << "(): arg " << i << " is not a string; skipping";
762 } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) {
763 // Warn about bad args and skip them.
764 LOG(ERROR) << name << "(): error parsing \"" << args[i]->data << "\" as sha-1; skipping";
765 } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) {
766 // Found a match.
767 return args[i].release();
768 }
769 }
770
771 // Didn't match any of the hex strings; return false.
772 return StringValue("");
Doug Zongker512536a2010-02-17 16:11:44 -0800773}
774
Hristo Bojinovdb314d62010-08-02 10:29:49 -0700775// Read a local file and return its contents (the Value* returned
Doug Zongker512536a2010-02-17 16:11:44 -0800776// is actually a FileContents*).
Tianjie Xuc4447322017-03-06 14:44:59 -0800777Value* ReadFileFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
778 if (argv.size() != 1) {
779 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800780 }
Tianjie Xu5fe280a2016-10-17 18:15:20 -0700781
Tao Bao039f2da2016-11-22 16:29:50 -0800782 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800783 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800784 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
785 }
786 const std::string& filename = args[0];
Doug Zongker512536a2010-02-17 16:11:44 -0800787
Tao Bao039f2da2016-11-22 16:29:50 -0800788 Value* v = new Value(VAL_INVALID, "");
Doug Zongker512536a2010-02-17 16:11:44 -0800789
Tao Bao039f2da2016-11-22 16:29:50 -0800790 FileContents fc;
791 if (LoadFileContents(filename.c_str(), &fc) == 0) {
792 v->type = VAL_BLOB;
793 v->data = std::string(fc.data.begin(), fc.data.end());
794 }
795 return v;
Doug Zongker512536a2010-02-17 16:11:44 -0800796}
Doug Zongker8edb00c2009-06-11 17:21:44 -0700797
Tao Baod0f30882016-11-03 23:52:01 -0700798// write_value(value, filename)
799// Writes 'value' to 'filename'.
800// Example: write_value("960000", "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq")
Tianjie Xuc4447322017-03-06 14:44:59 -0800801Value* WriteValueFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
802 if (argv.size() != 2) {
803 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
804 argv.size());
Tao Baod0f30882016-11-03 23:52:01 -0700805 }
806
807 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800808 if (!ReadArgs(state, argv, &args)) {
Tao Baod0f30882016-11-03 23:52:01 -0700809 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
810 }
811
812 const std::string& filename = args[1];
813 if (filename.empty()) {
814 return ErrorAbort(state, kArgsParsingFailure, "%s(): Filename cannot be empty", name);
815 }
816
817 const std::string& value = args[0];
818 if (!android::base::WriteStringToFile(value, filename)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800819 PLOG(ERROR) << name << ": Failed to write to \"" << filename << "\"";
Tao Baod0f30882016-11-03 23:52:01 -0700820 return StringValue("");
821 } else {
822 return StringValue("t");
823 }
824}
825
Doug Zongkerc87bab12013-11-25 13:53:25 -0800826// Immediately reboot the device. Recovery is not finished normally,
827// so if you reboot into recovery it will re-start applying the
828// current package (because nothing has cleared the copy of the
829// arguments stored in the BCB).
830//
831// The argument is the partition name passed to the android reboot
832// property. It can be "recovery" to boot from the recovery
833// partition, or "" (empty string) to boot from the regular boot
834// partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800835Value* RebootNowFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
836 if (argv.size() != 2) {
837 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
838 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800839 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800840
Tao Baobedf5fc2016-11-18 12:01:26 -0800841 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800842 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800843 return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", name);
844 }
845 const std::string& filename = args[0];
846 const std::string& property = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800847
Tao Baobedf5fc2016-11-18 12:01:26 -0800848 // Zero out the 'command' field of the bootloader message. Leave the rest intact.
849 bootloader_message boot;
850 std::string err;
851 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800852 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800853 return StringValue("");
854 }
855 memset(boot.command, 0, sizeof(boot.command));
856 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800857 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800858 return StringValue("");
859 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800860
Dmitri Plotnikov8706a982017-04-18 08:28:26 -0700861 std::string reboot_cmd = "reboot," + property;
862 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
863 reboot_cmd += ",quiescent";
864 }
Tao Baobedf5fc2016-11-18 12:01:26 -0800865 android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800866
Tao Baobedf5fc2016-11-18 12:01:26 -0800867 sleep(5);
868 return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800869}
870
871// Store a string value somewhere that future invocations of recovery
872// can access it. This value is called the "stage" and can be used to
873// drive packages that need to do reboots in the middle of
874// installation and keep track of where they are in the multi-stage
875// install.
876//
877// The first argument is the block device for the misc partition
878// ("/misc" in the fstab), which is where this value is stored. The
879// second argument is the string to store; it should not exceed 31
880// bytes.
Tianjie Xuc4447322017-03-06 14:44:59 -0800881Value* SetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
882 if (argv.size() != 2) {
883 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
884 argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800885 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800886
Tao Baobedf5fc2016-11-18 12:01:26 -0800887 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800888 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800889 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
890 }
891 const std::string& filename = args[0];
892 const std::string& stagestr = args[1];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800893
Tao Baobedf5fc2016-11-18 12:01:26 -0800894 // Store this value in the misc partition, immediately after the
895 // bootloader message that the main recovery uses to save its
896 // arguments in case of the device restarting midway through
897 // package installation.
898 bootloader_message boot;
899 std::string err;
900 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800901 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800902 return StringValue("");
903 }
904 strlcpy(boot.stage, stagestr.c_str(), sizeof(boot.stage));
905 if (!write_bootloader_message_to(boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800906 LOG(ERROR) << name << "(): Failed to write to \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800907 return StringValue("");
908 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800909
Tao Baobedf5fc2016-11-18 12:01:26 -0800910 return StringValue(filename);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800911}
912
913// Return the value most recently saved with SetStageFn. The argument
914// is the block device for the misc partition.
Tianjie Xuc4447322017-03-06 14:44:59 -0800915Value* GetStageFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
916 if (argv.size() != 1) {
917 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %zu", name, argv.size());
Tao Baobedf5fc2016-11-18 12:01:26 -0800918 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800919
Tao Baobedf5fc2016-11-18 12:01:26 -0800920 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800921 if (!ReadArgs(state, argv, &args)) {
Tao Baobedf5fc2016-11-18 12:01:26 -0800922 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
923 }
924 const std::string& filename = args[0];
Doug Zongkerc87bab12013-11-25 13:53:25 -0800925
Tao Baobedf5fc2016-11-18 12:01:26 -0800926 bootloader_message boot;
927 std::string err;
928 if (!read_bootloader_message_from(&boot, filename, &err)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800929 LOG(ERROR) << name << "(): Failed to read from \"" << filename << "\": " << err;
Tao Baobedf5fc2016-11-18 12:01:26 -0800930 return StringValue("");
931 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800932
Tao Baobedf5fc2016-11-18 12:01:26 -0800933 return StringValue(boot.stage);
Doug Zongkerc87bab12013-11-25 13:53:25 -0800934}
935
Tianjie Xuc4447322017-03-06 14:44:59 -0800936Value* WipeBlockDeviceFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
937 if (argv.size() != 2) {
938 return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %zu", name,
939 argv.size());
Tao Bao358c2ec2016-11-28 11:48:43 -0800940 }
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800941
Tao Bao358c2ec2016-11-28 11:48:43 -0800942 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800943 if (!ReadArgs(state, argv, &args)) {
Tao Bao358c2ec2016-11-28 11:48:43 -0800944 return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name);
945 }
946 const std::string& filename = args[0];
947 const std::string& len_str = args[1];
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800948
Tao Bao358c2ec2016-11-28 11:48:43 -0800949 size_t len;
950 if (!android::base::ParseUint(len_str.c_str(), &len)) {
951 return nullptr;
952 }
953 unique_fd fd(ota_open(filename.c_str(), O_WRONLY, 0644));
954 // The wipe_block_device function in ext4_utils returns 0 on success and 1
955 // for failure.
956 int status = wipe_block_device(fd, len);
957 return StringValue((status == 0) ? "t" : "");
Doug Zongkerc9d6e4f2014-02-24 16:02:50 -0800958}
959
Tianjie Xuc4447322017-03-06 14:44:59 -0800960Value* EnableRebootFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
961 if (!argv.empty()) {
962 return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %zu", name,
963 argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800964 }
965 UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie);
966 fprintf(ui->cmd_pipe, "enable_reboot\n");
967 return StringValue("t");
Doug Zongkerc704e062014-05-23 08:40:35 -0700968}
969
Tianjie Xuc4447322017-03-06 14:44:59 -0800970Value* Tune2FsFn(const char* name, State* state, const std::vector<std::unique_ptr<Expr>>& argv) {
971 if (argv.empty()) {
972 return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %zu", name, argv.size());
Tao Bao039f2da2016-11-22 16:29:50 -0800973 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800974
Tao Bao039f2da2016-11-22 16:29:50 -0800975 std::vector<std::string> args;
Tianjie Xuc4447322017-03-06 14:44:59 -0800976 if (!ReadArgs(state, argv, &args)) {
Tao Bao039f2da2016-11-22 16:29:50 -0800977 return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name);
978 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800979
Tianjie Xuc4447322017-03-06 14:44:59 -0800980 char* args2[argv.size() + 1];
Tao Bao039f2da2016-11-22 16:29:50 -0800981 // Tune2fs expects the program name as its args[0]
982 args2[0] = const_cast<char*>(name);
983 if (args2[0] == nullptr) {
984 return nullptr;
985 }
Tianjie Xuc4447322017-03-06 14:44:59 -0800986 for (size_t i = 0; i < argv.size(); ++i) {
Tao Bao039f2da2016-11-22 16:29:50 -0800987 args2[i + 1] = &args[i][0];
988 }
Michael Rungeacf47db2014-11-21 00:12:28 -0800989
Tao Bao039f2da2016-11-22 16:29:50 -0800990 // tune2fs changes the file system parameters on an ext2 file system; it
991 // returns 0 on success.
Tianjie Xuc4447322017-03-06 14:44:59 -0800992 int result = tune2fs_main(argv.size() + 1, args2);
Tao Bao039f2da2016-11-22 16:29:50 -0800993 if (result != 0) {
994 return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result);
995 }
996 return StringValue("t");
Michael Rungeacf47db2014-11-21 00:12:28 -0800997}
998
Doug Zongker9931f7f2009-06-10 14:11:53 -0700999void RegisterInstallFunctions() {
Tao Bao039f2da2016-11-22 16:29:50 -08001000 RegisterFunction("mount", MountFn);
1001 RegisterFunction("is_mounted", IsMountedFn);
1002 RegisterFunction("unmount", UnmountFn);
1003 RegisterFunction("format", FormatFn);
1004 RegisterFunction("show_progress", ShowProgressFn);
1005 RegisterFunction("set_progress", SetProgressFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001006 RegisterFunction("package_extract_file", PackageExtractFileFn);
Nick Kralevich5dbdef02013-09-07 14:41:06 -07001007
Tao Bao039f2da2016-11-22 16:29:50 -08001008 RegisterFunction("getprop", GetPropFn);
1009 RegisterFunction("file_getprop", FileGetPropFn);
Doug Zongker8edb00c2009-06-11 17:21:44 -07001010
Tao Bao039f2da2016-11-22 16:29:50 -08001011 RegisterFunction("apply_patch", ApplyPatchFn);
1012 RegisterFunction("apply_patch_check", ApplyPatchCheckFn);
1013 RegisterFunction("apply_patch_space", ApplyPatchSpaceFn);
Doug Zongkerd9c9d102009-06-12 12:24:39 -07001014
Tao Bao039f2da2016-11-22 16:29:50 -08001015 RegisterFunction("wipe_block_device", WipeBlockDeviceFn);
Doug Zongker52b40362014-02-10 15:30:30 -08001016
Tao Bao039f2da2016-11-22 16:29:50 -08001017 RegisterFunction("read_file", ReadFileFn);
1018 RegisterFunction("sha1_check", Sha1CheckFn);
Tao Bao039f2da2016-11-22 16:29:50 -08001019 RegisterFunction("write_value", WriteValueFn);
Doug Zongker512536a2010-02-17 16:11:44 -08001020
Tao Bao039f2da2016-11-22 16:29:50 -08001021 RegisterFunction("wipe_cache", WipeCacheFn);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001022
Tao Bao039f2da2016-11-22 16:29:50 -08001023 RegisterFunction("ui_print", UIPrintFn);
Doug Zongkera3f89ea2009-09-10 14:10:48 -07001024
Tao Bao039f2da2016-11-22 16:29:50 -08001025 RegisterFunction("run_program", RunProgramFn);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001026
Tao Bao039f2da2016-11-22 16:29:50 -08001027 RegisterFunction("reboot_now", RebootNowFn);
1028 RegisterFunction("get_stage", GetStageFn);
1029 RegisterFunction("set_stage", SetStageFn);
Doug Zongkerc704e062014-05-23 08:40:35 -07001030
Tao Bao039f2da2016-11-22 16:29:50 -08001031 RegisterFunction("enable_reboot", EnableRebootFn);
1032 RegisterFunction("tune2fs", Tune2FsFn);
Doug Zongker9931f7f2009-06-10 14:11:53 -07001033}