Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1 | /* |
| 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 Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 17 | #include "updater/install.h" |
| 18 | |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 19 | #include <ctype.h> |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 20 | #include <errno.h> |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 21 | #include <fcntl.h> |
| 22 | #include <ftw.h> |
| 23 | #include <inttypes.h> |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 24 | #include <stdarg.h> |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 25 | #include <stdio.h> |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 26 | #include <stdlib.h> |
| 27 | #include <string.h> |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 28 | #include <sys/capability.h> |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 29 | #include <sys/mount.h> |
| 30 | #include <sys/stat.h> |
| 31 | #include <sys/types.h> |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 32 | #include <sys/wait.h> |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 33 | #include <sys/xattr.h> |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 34 | #include <time.h> |
| 35 | #include <unistd.h> |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 36 | #include <utime.h> |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 37 | |
Yabin Cui | 64be213 | 2016-02-03 18:16:02 -0800 | [diff] [blame] | 38 | #include <memory> |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 39 | #include <string> |
Yabin Cui | 64be213 | 2016-02-03 18:16:02 -0800 | [diff] [blame] | 40 | #include <vector> |
| 41 | |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 42 | #include <android-base/parseint.h> |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 43 | #include <android-base/parsedouble.h> |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 44 | #include <android-base/properties.h> |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 45 | #include <android-base/strings.h> |
| 46 | #include <android-base/stringprintf.h> |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 47 | #include <cutils/android_reboot.h> |
Tao Bao | de40ba5 | 2016-10-05 23:17:01 -0700 | [diff] [blame] | 48 | #include <ext4_utils/make_ext4fs.h> |
| 49 | #include <ext4_utils/wipe.h> |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 50 | #include <openssl/sha.h> |
Elliott Hughes | 4bbd5bf | 2016-04-01 18:24:39 -0700 | [diff] [blame] | 51 | #include <selinux/label.h> |
| 52 | #include <selinux/selinux.h> |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 53 | #include <ziparchive/zip_archive.h> |
Tao Bao | 1107d96 | 2015-09-09 17:16:55 -0700 | [diff] [blame] | 54 | |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 55 | #include "applypatch/applypatch.h" |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 56 | #include "bootloader.h" |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 57 | #include "edify/expr.h" |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 58 | #include "error_code.h" |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 59 | #include "mounts.h" |
Jed Estep | 39c1b5e | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 60 | #include "ota_io.h" |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 61 | #include "otautil/DirUtil.h" |
| 62 | #include "otautil/ZipUtil.h" |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 63 | #include "print_sha1.h" |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 64 | #include "tune2fs.h" |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 65 | #include "updater/updater.h" |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 66 | |
Tao Bao | 1107d96 | 2015-09-09 17:16:55 -0700 | [diff] [blame] | 67 | // Send over the buffer to recovery though the command pipe. |
| 68 | static void uiPrint(State* state, const std::string& buffer) { |
Tao Bao | 0831d0b | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 69 | UpdaterInfo* ui = static_cast<UpdaterInfo*>(state->cookie); |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 70 | |
Tao Bao | 1107d96 | 2015-09-09 17:16:55 -0700 | [diff] [blame] | 71 | // "line1\nline2\n" will be split into 3 tokens: "line1", "line2" and "". |
| 72 | // So skip sending empty strings to UI. |
| 73 | std::vector<std::string> lines = android::base::Split(buffer, "\n"); |
| 74 | for (auto& line: lines) { |
| 75 | if (!line.empty()) { |
| 76 | fprintf(ui->cmd_pipe, "ui_print %s\n", line.c_str()); |
| 77 | fprintf(ui->cmd_pipe, "ui_print\n"); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | // On the updater side, we need to dump the contents to stderr (which has |
| 82 | // been redirected to the log file). Because the recovery will only print |
| 83 | // the contents to screen when processing pipe command ui_print. |
| 84 | fprintf(stderr, "%s", buffer.c_str()); |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Elliott Hughes | 83ce755 | 2016-06-30 09:28:42 -0700 | [diff] [blame] | 87 | void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) { |
Tao Bao | 1107d96 | 2015-09-09 17:16:55 -0700 | [diff] [blame] | 88 | std::string error_msg; |
| 89 | |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 90 | va_list ap; |
| 91 | va_start(ap, format); |
Tao Bao | 1107d96 | 2015-09-09 17:16:55 -0700 | [diff] [blame] | 92 | android::base::StringAppendV(&error_msg, format, ap); |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 93 | va_end(ap); |
Tao Bao | 1107d96 | 2015-09-09 17:16:55 -0700 | [diff] [blame] | 94 | |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 95 | uiPrint(state, error_msg); |
| 96 | } |
| 97 | |
Tianjie Xu | d75003d | 2016-11-04 11:31:29 -0700 | [diff] [blame] | 98 | static bool is_dir(const std::string& dirpath) { |
| 99 | struct stat st; |
| 100 | return stat(dirpath.c_str(), &st) == 0 && S_ISDIR(st.st_mode); |
| 101 | } |
| 102 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 103 | // Create all parent directories of name, if necessary. |
Tianjie Xu | d75003d | 2016-11-04 11:31:29 -0700 | [diff] [blame] | 104 | static bool make_parents(const std::string& name) { |
| 105 | size_t prev_end = 0; |
| 106 | while (prev_end < name.size()) { |
| 107 | size_t next_end = name.find('/', prev_end + 1); |
| 108 | if (next_end == std::string::npos) { |
| 109 | break; |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 110 | } |
Tianjie Xu | d75003d | 2016-11-04 11:31:29 -0700 | [diff] [blame] | 111 | std::string dir_path = name.substr(0, next_end); |
| 112 | if (!is_dir(dir_path)) { |
| 113 | int result = mkdir(dir_path.c_str(), 0700); |
| 114 | if (result != 0) { |
| 115 | printf("failed to mkdir %s when make parents for %s: %s\n", dir_path.c_str(), |
| 116 | name.c_str(), strerror(errno)); |
| 117 | return false; |
| 118 | } |
| 119 | |
| 120 | printf("created [%s]\n", dir_path.c_str()); |
| 121 | } |
| 122 | prev_end = next_end; |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 123 | } |
Tianjie Xu | d75003d | 2016-11-04 11:31:29 -0700 | [diff] [blame] | 124 | return true; |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 127 | // mount(fs_type, partition_type, location, mount_point) |
Tao Bao | 0831d0b | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 128 | // mount(fs_type, partition_type, location, mount_point, mount_options) |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 129 | // |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 130 | // fs_type="ext4" partition_type="EMMC" location=device |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 131 | Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) { |
Michael Runge | 168f777 | 2014-10-22 17:05:08 -0700 | [diff] [blame] | 132 | if (argc != 4 && argc != 5) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 133 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 4-5 args, got %d", name, argc); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 134 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 135 | |
| 136 | std::vector<std::string> args; |
| 137 | if (!ReadArgs(state, argc, argv, &args)) { |
| 138 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 139 | } |
| 140 | const std::string& fs_type = args[0]; |
| 141 | const std::string& partition_type = args[1]; |
| 142 | const std::string& location = args[2]; |
| 143 | const std::string& mount_point = args[3]; |
| 144 | std::string mount_options; |
| 145 | |
Michael Runge | 168f777 | 2014-10-22 17:05:08 -0700 | [diff] [blame] | 146 | if (argc == 5) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 147 | mount_options = args[4]; |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 150 | if (fs_type.empty()) { |
| 151 | return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", |
| 152 | name); |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 153 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 154 | if (partition_type.empty()) { |
| 155 | return ErrorAbort(state, kArgsParsingFailure, "partition_type argument to %s() can't be empty", |
| 156 | name); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 157 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 158 | if (location.empty()) { |
| 159 | return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", |
| 160 | name); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 161 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 162 | if (mount_point.empty()) { |
| 163 | return ErrorAbort(state, kArgsParsingFailure, "mount_point argument to %s() can't be empty", |
| 164 | name); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 167 | { |
| 168 | char *secontext = NULL; |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 169 | |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 170 | if (sehandle) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 171 | selabel_lookup(sehandle, &secontext, mount_point.c_str(), 0755); |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 172 | setfscreatecon(secontext); |
| 173 | } |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 174 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 175 | mkdir(mount_point.c_str(), 0755); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 176 | |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 177 | if (secontext) { |
| 178 | freecon(secontext); |
| 179 | setfscreatecon(NULL); |
| 180 | } |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 181 | } |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 182 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 183 | if (mount(location.c_str(), mount_point.c_str(), fs_type.c_str(), |
| 184 | MS_NOATIME | MS_NODEV | MS_NODIRATIME, mount_options.c_str()) < 0) { |
Elliott Hughes | 63a3192 | 2016-06-09 17:41:22 -0700 | [diff] [blame] | 185 | uiPrintf(state, "%s: failed to mount %s at %s: %s\n", |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 186 | name, location.c_str(), mount_point.c_str(), strerror(errno)); |
| 187 | return StringValue(""); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 190 | return StringValue(mount_point); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 193 | |
| 194 | // is_mounted(mount_point) |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 195 | Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 196 | if (argc != 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 197 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 198 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 199 | |
| 200 | std::vector<std::string> args; |
| 201 | if (!ReadArgs(state, argc, argv, &args)) { |
| 202 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 203 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 204 | const std::string& mount_point = args[0]; |
| 205 | if (mount_point.empty()) { |
| 206 | return ErrorAbort(state, kArgsParsingFailure, |
| 207 | "mount_point argument to unmount() can't be empty"); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | scan_mounted_volumes(); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 211 | MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str()); |
| 212 | if (vol == nullptr) { |
| 213 | return StringValue(""); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 216 | return StringValue(mount_point); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 220 | Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 221 | if (argc != 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 222 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 223 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 224 | std::vector<std::string> args; |
| 225 | if (!ReadArgs(state, argc, argv, &args)) { |
| 226 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 227 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 228 | const std::string& mount_point = args[0]; |
| 229 | if (mount_point.empty()) { |
| 230 | return ErrorAbort(state, kArgsParsingFailure, |
| 231 | "mount_point argument to unmount() can't be empty"); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | scan_mounted_volumes(); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 235 | MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point.c_str()); |
| 236 | if (vol == nullptr) { |
| 237 | uiPrintf(state, "unmount of %s failed; no such volume\n", mount_point.c_str()); |
| 238 | return nullptr; |
| 239 | } else { |
| 240 | int ret = unmount_mounted_volume(vol); |
| 241 | if (ret != 0) { |
| 242 | uiPrintf(state, "unmount of %s failed (%d): %s\n", |
| 243 | mount_point.c_str(), ret, strerror(errno)); |
Michael Runge | 5ddf429 | 2014-10-24 14:14:41 -0700 | [diff] [blame] | 244 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 247 | return StringValue(mount_point); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 248 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 249 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 250 | static int exec_cmd(const char* path, char* const argv[]) { |
| 251 | int status; |
| 252 | pid_t child; |
| 253 | if ((child = vfork()) == 0) { |
| 254 | execv(path, argv); |
| 255 | _exit(-1); |
| 256 | } |
| 257 | waitpid(child, &status, 0); |
| 258 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
| 259 | printf("%s failed with status %d\n", path, WEXITSTATUS(status)); |
| 260 | } |
| 261 | return WEXITSTATUS(status); |
| 262 | } |
| 263 | |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 264 | // format(fs_type, partition_type, location, fs_size, mount_point) |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 265 | // |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 266 | // fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location> |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 267 | // fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location> |
| 268 | // if fs_size == 0, then make fs uses the entire partition. |
Ken Sumrall | 8f132ed | 2011-01-14 18:55:05 -0800 | [diff] [blame] | 269 | // if fs_size > 0, that is the size to use |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 270 | // if fs_size < 0, then reserve that many bytes at the end of the partition (not for "f2fs") |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 271 | Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) { |
Stephen Smalley | 516e4e2 | 2012-04-03 13:35:11 -0400 | [diff] [blame] | 272 | if (argc != 5) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 273 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 5 args, got %d", name, argc); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 274 | } |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 275 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 276 | std::vector<std::string> args; |
| 277 | if (!ReadArgs(state, argc, argv, &args)) { |
| 278 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 279 | } |
| 280 | const std::string& fs_type = args[0]; |
| 281 | const std::string& partition_type = args[1]; |
| 282 | const std::string& location = args[2]; |
| 283 | const std::string& fs_size = args[3]; |
| 284 | const std::string& mount_point = args[4]; |
| 285 | |
| 286 | if (fs_type.empty()) { |
| 287 | return ErrorAbort(state, kArgsParsingFailure, "fs_type argument to %s() can't be empty", |
| 288 | name); |
| 289 | } |
| 290 | if (partition_type.empty()) { |
| 291 | return ErrorAbort(state, kArgsParsingFailure, |
| 292 | "partition_type argument to %s() can't be empty", name); |
| 293 | } |
| 294 | if (location.empty()) { |
| 295 | return ErrorAbort(state, kArgsParsingFailure, "location argument to %s() can't be empty", |
| 296 | name); |
| 297 | } |
| 298 | if (mount_point.empty()) { |
| 299 | return ErrorAbort(state, kArgsParsingFailure, |
| 300 | "mount_point argument to %s() can't be empty", name); |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 301 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 302 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 303 | int64_t size; |
Tao Bao | a659d79 | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 304 | if (!android::base::ParseInt(fs_size, &size)) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 305 | return ErrorAbort(state, kArgsParsingFailure, |
| 306 | "%s: failed to parse int in %s\n", name, fs_size.c_str()); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 307 | } |
| 308 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 309 | if (fs_type == "ext4") { |
| 310 | int status = make_ext4fs(location.c_str(), size, mount_point.c_str(), sehandle); |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 311 | if (status != 0) { |
Tao Bao | 0831d0b | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 312 | printf("%s: make_ext4fs failed (%d) on %s", name, status, location.c_str()); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 313 | return StringValue(""); |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 314 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 315 | return StringValue(location); |
| 316 | } else if (fs_type == "f2fs") { |
| 317 | if (size < 0) { |
Tao Bao | 0831d0b | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 318 | printf("%s: fs_size can't be negative for f2fs: %s", name, fs_size.c_str()); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 319 | return StringValue(""); |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 320 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 321 | std::string num_sectors = std::to_string(size / 512); |
| 322 | |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 323 | const char *f2fs_path = "/sbin/mkfs.f2fs"; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 324 | const char* const f2fs_argv[] = {"mkfs.f2fs", "-t", "-d1", location.c_str(), |
| 325 | num_sectors.c_str(), nullptr}; |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 326 | int status = exec_cmd(f2fs_path, (char* const*)f2fs_argv); |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 327 | if (status != 0) { |
Tao Bao | 0831d0b | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 328 | printf("%s: mkfs.f2fs failed (%d) on %s", name, status, location.c_str()); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 329 | return StringValue(""); |
JP Abgrall | 37aedb3 | 2014-06-16 19:07:39 -0700 | [diff] [blame] | 330 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 331 | return StringValue(location); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 332 | } else { |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 333 | printf("%s: unsupported fs_type \"%s\" partition_type \"%s\"", |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 334 | name, fs_type.c_str(), partition_type.c_str()); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 335 | } |
| 336 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 337 | return nullptr; |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Tao Bao | a659d79 | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 340 | // rename(src_name, dst_name) |
| 341 | // Renames src_name to dst_name. It automatically creates the necessary directories for dst_name. |
| 342 | // Example: rename("system/app/Hangouts/Hangouts.apk", "system/priv-app/Hangouts/Hangouts.apk") |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 343 | Value* RenameFn(const char* name, State* state, int argc, Expr* argv[]) { |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 344 | if (argc != 2) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 345 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc); |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 346 | } |
| 347 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 348 | std::vector<std::string> args; |
| 349 | if (!ReadArgs(state, argc, argv, &args)) { |
| 350 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 351 | } |
| 352 | const std::string& src_name = args[0]; |
Tianjie Xu | d75003d | 2016-11-04 11:31:29 -0700 | [diff] [blame] | 353 | const std::string& dst_name = args[1]; |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 354 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 355 | if (src_name.empty()) { |
| 356 | return ErrorAbort(state, kArgsParsingFailure, "src_name argument to %s() can't be empty", |
| 357 | name); |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 358 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 359 | if (dst_name.empty()) { |
| 360 | return ErrorAbort(state, kArgsParsingFailure, "dst_name argument to %s() can't be empty", |
| 361 | name); |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 362 | } |
Tianjie Xu | d75003d | 2016-11-04 11:31:29 -0700 | [diff] [blame] | 363 | if (!make_parents(dst_name)) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 364 | return ErrorAbort(state, kFileRenameFailure, "Creating parent of %s failed, error %s", |
| 365 | dst_name.c_str(), strerror(errno)); |
| 366 | } else if (access(dst_name.c_str(), F_OK) == 0 && access(src_name.c_str(), F_OK) != 0) { |
Michael Runge | 2f0ef73 | 2014-10-22 14:28:23 -0700 | [diff] [blame] | 367 | // File was already moved |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 368 | return StringValue(dst_name); |
| 369 | } else if (rename(src_name.c_str(), dst_name.c_str()) != 0) { |
| 370 | return ErrorAbort(state, kFileRenameFailure, "Rename of %s to %s failed, error %s", |
| 371 | src_name.c_str(), dst_name.c_str(), strerror(errno)); |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 372 | } |
| 373 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 374 | return StringValue(dst_name); |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 375 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 376 | |
Tao Bao | 0831d0b | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 377 | // delete([filename, ...]) |
| 378 | // Deletes all the filenames listed. Returns the number of files successfully deleted. |
| 379 | // |
| 380 | // delete_recursive([dirname, ...]) |
| 381 | // Recursively deletes dirnames and all their contents. Returns the number of directories |
| 382 | // successfully deleted. |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 383 | Value* DeleteFn(const char* name, State* state, int argc, Expr* argv[]) { |
Tao Bao | 0831d0b | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 384 | std::vector<std::string> paths(argc); |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 385 | for (int i = 0; i < argc; ++i) { |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 386 | if (!Evaluate(state, argv[i], &paths[i])) { |
| 387 | return nullptr; |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 388 | } |
| 389 | } |
| 390 | |
| 391 | bool recursive = (strcmp(name, "delete_recursive") == 0); |
| 392 | |
| 393 | int success = 0; |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 394 | for (int i = 0; i < argc; ++i) { |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 395 | if ((recursive ? dirUnlinkHierarchy(paths[i].c_str()) : unlink(paths[i].c_str())) == 0) { |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 396 | ++success; |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 397 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 398 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 399 | |
Tao Bao | 0831d0b | 2016-11-03 23:25:04 -0700 | [diff] [blame] | 400 | return StringValue(std::to_string(success)); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 401 | } |
| 402 | |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 403 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 404 | Value* ShowProgressFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 405 | if (argc != 2) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 406 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 407 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 408 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 409 | std::vector<std::string> args; |
| 410 | if (!ReadArgs(state, argc, argv, &args)) { |
| 411 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 412 | } |
| 413 | const std::string& frac_str = args[0]; |
| 414 | const std::string& sec_str = args[1]; |
| 415 | |
| 416 | double frac; |
| 417 | if (!android::base::ParseDouble(frac_str.c_str(), &frac)) { |
| 418 | return ErrorAbort(state, kArgsParsingFailure, |
| 419 | "%s: failed to parse double in %s\n", name, frac_str.c_str()); |
| 420 | } |
Tao Bao | b15fd22 | 2015-09-24 11:10:51 -0700 | [diff] [blame] | 421 | int sec; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 422 | if (!android::base::ParseInt(sec_str.c_str(), &sec)) { |
| 423 | return ErrorAbort(state, kArgsParsingFailure, |
| 424 | "%s: failed to parse int in %s\n", name, sec_str.c_str()); |
| 425 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 426 | |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 427 | UpdaterInfo* ui = (UpdaterInfo*)(state->cookie); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 428 | fprintf(ui->cmd_pipe, "progress %f %d\n", frac, sec); |
| 429 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 430 | return StringValue(frac_str); |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 433 | Value* SetProgressFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 434 | if (argc != 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 435 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc); |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 436 | } |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 437 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 438 | std::vector<std::string> args; |
| 439 | if (!ReadArgs(state, 1, argv, &args)) { |
| 440 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 441 | } |
| 442 | const std::string& frac_str = args[0]; |
| 443 | |
| 444 | double frac; |
| 445 | if (!android::base::ParseDouble(frac_str.c_str(), &frac)) { |
| 446 | return ErrorAbort(state, kArgsParsingFailure, |
| 447 | "%s: failed to parse double in %s\n", name, frac_str.c_str()); |
| 448 | } |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 449 | |
| 450 | UpdaterInfo* ui = (UpdaterInfo*)(state->cookie); |
| 451 | fprintf(ui->cmd_pipe, "set_progress %f\n", frac); |
| 452 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 453 | return StringValue(frac_str); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 454 | } |
| 455 | |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 456 | // package_extract_dir(package_path, destination_path) |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 457 | Value* PackageExtractDirFn(const char* name, State* state, |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 458 | int argc, Expr* argv[]) { |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 459 | if (argc != 2) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 460 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 461 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 462 | |
| 463 | std::vector<std::string> args; |
| 464 | if (!ReadArgs(state, 2, argv, &args)) { |
| 465 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 466 | } |
| 467 | const std::string& zip_path = args[0]; |
| 468 | const std::string& dest_path = args[1]; |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 469 | |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 470 | ZipArchiveHandle za = ((UpdaterInfo*)(state->cookie))->package_zip; |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 471 | |
| 472 | // To create a consistent system image, never use the clock for timestamps. |
| 473 | struct utimbuf timestamp = { 1217592000, 1217592000 }; // 8/1/2008 default |
| 474 | |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 475 | bool success = ExtractPackageRecursive(za, zip_path, dest_path, ×tamp, sehandle); |
| 476 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 477 | return StringValue(success ? "t" : ""); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 478 | } |
| 479 | |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 480 | |
| 481 | // package_extract_file(package_path, destination_path) |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 482 | // or |
| 483 | // package_extract_file(package_path) |
| 484 | // to return the entire contents of the file as the result of this |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 485 | // function (the char* returned is actually a FileContents*). |
| 486 | Value* PackageExtractFileFn(const char* name, State* state, |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 487 | int argc, Expr* argv[]) { |
Doug Zongker | 5f875bf | 2014-08-22 14:53:43 -0700 | [diff] [blame] | 488 | if (argc < 1 || argc > 2) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 489 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 or 2 args, got %d", |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 490 | name, argc); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 491 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 492 | bool success = false; |
Doug Zongker | 43772d2 | 2014-06-09 14:13:19 -0700 | [diff] [blame] | 493 | |
Doug Zongker | 5f875bf | 2014-08-22 14:53:43 -0700 | [diff] [blame] | 494 | if (argc == 2) { |
| 495 | // The two-argument version extracts to a file. |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 496 | |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 497 | ZipArchiveHandle za = ((UpdaterInfo*)(state->cookie))->package_zip; |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 498 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 499 | std::vector<std::string> args; |
| 500 | if (!ReadArgs(state, 2, argv, &args)) { |
| 501 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name, |
| 502 | argc); |
| 503 | } |
| 504 | const std::string& zip_path = args[0]; |
| 505 | const std::string& dest_path = args[1]; |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 506 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 507 | ZipString zip_string_path(zip_path.c_str()); |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 508 | ZipEntry entry; |
| 509 | if (FindEntry(za, zip_string_path, &entry) != 0) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 510 | printf("%s: no %s in package\n", name, zip_path.c_str()); |
| 511 | return StringValue(""); |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 512 | } |
| 513 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 514 | int fd = TEMP_FAILURE_RETRY(ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, |
| 515 | S_IRUSR | S_IWUSR)); |
| 516 | if (fd == -1) { |
| 517 | printf("%s: can't open %s for write: %s\n", name, dest_path.c_str(), strerror(errno)); |
| 518 | return StringValue(""); |
| 519 | } |
| 520 | success = ExtractEntryToFile(za, &entry, fd); |
| 521 | if (ota_fsync(fd) == -1) { |
| 522 | printf("fsync of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno)); |
| 523 | success = false; |
| 524 | } |
| 525 | if (ota_close(fd) == -1) { |
| 526 | printf("close of \"%s\" failed: %s\n", dest_path.c_str(), strerror(errno)); |
| 527 | success = false; |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 528 | } |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 529 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 530 | return StringValue(success ? "t" : ""); |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 531 | } else { |
| 532 | // The one-argument version returns the contents of the file |
| 533 | // as the result. |
| 534 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 535 | std::vector<std::string> args; |
| 536 | if (!ReadArgs(state, 1, argv, &args)) { |
| 537 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse %d args", name, |
| 538 | argc); |
| 539 | } |
| 540 | const std::string& zip_path = args[0]; |
Yabin Cui | 64be213 | 2016-02-03 18:16:02 -0800 | [diff] [blame] | 541 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 542 | Value* v = new Value(VAL_INVALID, ""); |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 543 | |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 544 | ZipArchiveHandle za = ((UpdaterInfo*)(state->cookie))->package_zip; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 545 | ZipString zip_string_path(zip_path.c_str()); |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 546 | ZipEntry entry; |
| 547 | if (FindEntry(za, zip_string_path, &entry) != 0) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 548 | printf("%s: no %s in package\n", name, zip_path.c_str()); |
| 549 | return v; |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 550 | } |
| 551 | |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 552 | v->data.resize(entry.uncompressed_length); |
| 553 | if (ExtractToMemory(za, &entry, reinterpret_cast<uint8_t*>(&v->data[0]), |
| 554 | v->data.size()) != 0) { |
| 555 | printf("%s: faled to extract %zu bytes to memory\n", name, v->data.size()); |
| 556 | } else { |
| 557 | success = true; |
| 558 | } |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 559 | |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 560 | if (!success) { |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 561 | v->data.clear(); |
| 562 | } else { |
| 563 | v->type = VAL_BLOB; |
Doug Zongker | 6aece33 | 2010-02-01 14:40:12 -0800 | [diff] [blame] | 564 | } |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 565 | return v; |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 566 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Tao Bao | 8992902 | 2016-11-08 20:51:31 -0800 | [diff] [blame] | 569 | // symlink(target, [src1, src2, ...]) |
| 570 | // Creates all sources as symlinks to target. It unlinks any previously existing src1, src2, etc |
| 571 | // before creating symlinks. |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 572 | Value* SymlinkFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 573 | if (argc == 0) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 574 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1+ args, got %d", name, argc); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 575 | } |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 576 | std::string target; |
| 577 | if (!Evaluate(state, argv[0], &target)) { |
| 578 | return nullptr; |
| 579 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 580 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 581 | std::vector<std::string> srcs; |
| 582 | if (!ReadArgs(state, argc-1, argv+1, &srcs)) { |
Tao Bao | 8992902 | 2016-11-08 20:51:31 -0800 | [diff] [blame] | 583 | return ErrorAbort(state, kArgsParsingFailure, "%s(): Failed to parse the argument(s)", |
| 584 | name); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 585 | } |
| 586 | |
Tao Bao | 8992902 | 2016-11-08 20:51:31 -0800 | [diff] [blame] | 587 | size_t bad = 0; |
| 588 | for (const auto& src : srcs) { |
| 589 | if (unlink(src.c_str()) == -1 && errno != ENOENT) { |
| 590 | printf("%s: failed to remove %s: %s\n", name, src.c_str(), strerror(errno)); |
| 591 | ++bad; |
| 592 | } else if (!make_parents(src)) { |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 593 | printf("%s: failed to symlink %s to %s: making parents failed\n", |
Tao Bao | 8992902 | 2016-11-08 20:51:31 -0800 | [diff] [blame] | 594 | name, src.c_str(), target.c_str()); |
Doug Zongker | a23075f | 2012-08-06 16:19:09 -0700 | [diff] [blame] | 595 | ++bad; |
Tao Bao | 8992902 | 2016-11-08 20:51:31 -0800 | [diff] [blame] | 596 | } else if (symlink(target.c_str(), src.c_str()) == -1) { |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 597 | printf("%s: failed to symlink %s to %s: %s\n", |
Tao Bao | 8992902 | 2016-11-08 20:51:31 -0800 | [diff] [blame] | 598 | name, src.c_str(), target.c_str(), strerror(errno)); |
Doug Zongker | acd73ed | 2012-03-22 14:32:52 -0700 | [diff] [blame] | 599 | ++bad; |
Doug Zongker | 60babf8 | 2009-09-18 15:11:24 -0700 | [diff] [blame] | 600 | } |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 601 | } |
Tao Bao | 8992902 | 2016-11-08 20:51:31 -0800 | [diff] [blame] | 602 | if (bad != 0) { |
| 603 | return ErrorAbort(state, kSymlinkFailure, "%s: Failed to create %zu symlink(s)", name, bad); |
Doug Zongker | acd73ed | 2012-03-22 14:32:52 -0700 | [diff] [blame] | 604 | } |
Tao Bao | 8992902 | 2016-11-08 20:51:31 -0800 | [diff] [blame] | 605 | return StringValue("t"); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 606 | } |
| 607 | |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 608 | struct perm_parsed_args { |
| 609 | bool has_uid; |
| 610 | uid_t uid; |
| 611 | bool has_gid; |
| 612 | gid_t gid; |
| 613 | bool has_mode; |
| 614 | mode_t mode; |
| 615 | bool has_fmode; |
| 616 | mode_t fmode; |
| 617 | bool has_dmode; |
| 618 | mode_t dmode; |
| 619 | bool has_selabel; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 620 | const char* selabel; |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 621 | bool has_capabilities; |
| 622 | uint64_t capabilities; |
| 623 | }; |
| 624 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 625 | static struct perm_parsed_args ParsePermArgs(State * state, int argc, |
| 626 | const std::vector<std::string>& args) { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 627 | int i; |
| 628 | struct perm_parsed_args parsed; |
| 629 | int bad = 0; |
| 630 | static int max_warnings = 20; |
| 631 | |
| 632 | memset(&parsed, 0, sizeof(parsed)); |
| 633 | |
| 634 | for (i = 1; i < argc; i += 2) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 635 | if (args[i] == "uid") { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 636 | int64_t uid; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 637 | if (sscanf(args[i+1].c_str(), "%" SCNd64, &uid) == 1) { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 638 | parsed.uid = uid; |
| 639 | parsed.has_uid = true; |
| 640 | } else { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 641 | uiPrintf(state, "ParsePermArgs: invalid UID \"%s\"\n", args[i + 1].c_str()); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 642 | bad++; |
| 643 | } |
| 644 | continue; |
| 645 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 646 | if (args[i] == "gid") { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 647 | int64_t gid; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 648 | if (sscanf(args[i+1].c_str(), "%" SCNd64, &gid) == 1) { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 649 | parsed.gid = gid; |
| 650 | parsed.has_gid = true; |
| 651 | } else { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 652 | uiPrintf(state, "ParsePermArgs: invalid GID \"%s\"\n", args[i + 1].c_str()); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 653 | bad++; |
| 654 | } |
| 655 | continue; |
| 656 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 657 | if (args[i] == "mode") { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 658 | int32_t mode; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 659 | if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 660 | parsed.mode = mode; |
| 661 | parsed.has_mode = true; |
| 662 | } else { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 663 | uiPrintf(state, "ParsePermArgs: invalid mode \"%s\"\n", args[i + 1].c_str()); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 664 | bad++; |
| 665 | } |
| 666 | continue; |
| 667 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 668 | if (args[i] == "dmode") { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 669 | int32_t mode; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 670 | if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 671 | parsed.dmode = mode; |
| 672 | parsed.has_dmode = true; |
| 673 | } else { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 674 | uiPrintf(state, "ParsePermArgs: invalid dmode \"%s\"\n", args[i + 1].c_str()); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 675 | bad++; |
| 676 | } |
| 677 | continue; |
| 678 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 679 | if (args[i] == "fmode") { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 680 | int32_t mode; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 681 | if (sscanf(args[i+1].c_str(), "%" SCNi32, &mode) == 1) { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 682 | parsed.fmode = mode; |
| 683 | parsed.has_fmode = true; |
| 684 | } else { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 685 | uiPrintf(state, "ParsePermArgs: invalid fmode \"%s\"\n", args[i + 1].c_str()); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 686 | bad++; |
| 687 | } |
| 688 | continue; |
| 689 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 690 | if (args[i] == "capabilities") { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 691 | int64_t capabilities; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 692 | if (sscanf(args[i+1].c_str(), "%" SCNi64, &capabilities) == 1) { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 693 | parsed.capabilities = capabilities; |
| 694 | parsed.has_capabilities = true; |
| 695 | } else { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 696 | uiPrintf(state, "ParsePermArgs: invalid capabilities \"%s\"\n", args[i + 1].c_str()); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 697 | bad++; |
| 698 | } |
| 699 | continue; |
| 700 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 701 | if (args[i] == "selabel") { |
| 702 | if (!args[i+1].empty()) { |
| 703 | parsed.selabel = args[i+1].c_str(); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 704 | parsed.has_selabel = true; |
| 705 | } else { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 706 | uiPrintf(state, "ParsePermArgs: invalid selabel \"%s\"\n", args[i + 1].c_str()); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 707 | bad++; |
| 708 | } |
| 709 | continue; |
| 710 | } |
| 711 | if (max_warnings != 0) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 712 | printf("ParsedPermArgs: unknown key \"%s\", ignoring\n", args[i].c_str()); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 713 | max_warnings--; |
| 714 | if (max_warnings == 0) { |
| 715 | printf("ParsedPermArgs: suppressing further warnings\n"); |
| 716 | } |
| 717 | } |
| 718 | } |
| 719 | return parsed; |
| 720 | } |
| 721 | |
| 722 | static int ApplyParsedPerms( |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 723 | State * state, |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 724 | const char* filename, |
| 725 | const struct stat *statptr, |
| 726 | struct perm_parsed_args parsed) |
| 727 | { |
| 728 | int bad = 0; |
| 729 | |
Nick Kralevich | 6880241 | 2014-10-23 20:36:42 -0700 | [diff] [blame] | 730 | if (parsed.has_selabel) { |
| 731 | if (lsetfilecon(filename, parsed.selabel) != 0) { |
| 732 | uiPrintf(state, "ApplyParsedPerms: lsetfilecon of %s to %s failed: %s\n", |
| 733 | filename, parsed.selabel, strerror(errno)); |
| 734 | bad++; |
| 735 | } |
| 736 | } |
| 737 | |
Nick Kralevich | e461251 | 2013-09-10 15:34:19 -0700 | [diff] [blame] | 738 | /* ignore symlinks */ |
| 739 | if (S_ISLNK(statptr->st_mode)) { |
Nick Kralevich | 6880241 | 2014-10-23 20:36:42 -0700 | [diff] [blame] | 740 | return bad; |
Nick Kralevich | e461251 | 2013-09-10 15:34:19 -0700 | [diff] [blame] | 741 | } |
| 742 | |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 743 | if (parsed.has_uid) { |
| 744 | if (chown(filename, parsed.uid, -1) < 0) { |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 745 | uiPrintf(state, "ApplyParsedPerms: chown of %s to %d failed: %s\n", |
| 746 | filename, parsed.uid, strerror(errno)); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 747 | bad++; |
| 748 | } |
| 749 | } |
| 750 | |
| 751 | if (parsed.has_gid) { |
| 752 | if (chown(filename, -1, parsed.gid) < 0) { |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 753 | uiPrintf(state, "ApplyParsedPerms: chgrp of %s to %d failed: %s\n", |
| 754 | filename, parsed.gid, strerror(errno)); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 755 | bad++; |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | if (parsed.has_mode) { |
| 760 | if (chmod(filename, parsed.mode) < 0) { |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 761 | uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n", |
| 762 | filename, parsed.mode, strerror(errno)); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 763 | bad++; |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | if (parsed.has_dmode && S_ISDIR(statptr->st_mode)) { |
| 768 | if (chmod(filename, parsed.dmode) < 0) { |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 769 | uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n", |
| 770 | filename, parsed.dmode, strerror(errno)); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 771 | bad++; |
| 772 | } |
| 773 | } |
| 774 | |
| 775 | if (parsed.has_fmode && S_ISREG(statptr->st_mode)) { |
| 776 | if (chmod(filename, parsed.fmode) < 0) { |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 777 | uiPrintf(state, "ApplyParsedPerms: chmod of %s to %d failed: %s\n", |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 778 | filename, parsed.fmode, strerror(errno)); |
| 779 | bad++; |
| 780 | } |
| 781 | } |
| 782 | |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 783 | if (parsed.has_capabilities && S_ISREG(statptr->st_mode)) { |
| 784 | if (parsed.capabilities == 0) { |
| 785 | if ((removexattr(filename, XATTR_NAME_CAPS) == -1) && (errno != ENODATA)) { |
| 786 | // Report failure unless it's ENODATA (attribute not set) |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 787 | uiPrintf(state, "ApplyParsedPerms: removexattr of %s to %" PRIx64 " failed: %s\n", |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 788 | filename, parsed.capabilities, strerror(errno)); |
| 789 | bad++; |
| 790 | } |
| 791 | } else { |
| 792 | struct vfs_cap_data cap_data; |
| 793 | memset(&cap_data, 0, sizeof(cap_data)); |
| 794 | cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE; |
| 795 | cap_data.data[0].permitted = (uint32_t) (parsed.capabilities & 0xffffffff); |
| 796 | cap_data.data[0].inheritable = 0; |
| 797 | cap_data.data[1].permitted = (uint32_t) (parsed.capabilities >> 32); |
| 798 | cap_data.data[1].inheritable = 0; |
| 799 | if (setxattr(filename, XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) { |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 800 | uiPrintf(state, "ApplyParsedPerms: setcap of %s to %" PRIx64 " failed: %s\n", |
| 801 | filename, parsed.capabilities, strerror(errno)); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 802 | bad++; |
| 803 | } |
| 804 | } |
| 805 | } |
| 806 | |
| 807 | return bad; |
| 808 | } |
| 809 | |
| 810 | // nftw doesn't allow us to pass along context, so we need to use |
| 811 | // global variables. *sigh* |
| 812 | static struct perm_parsed_args recursive_parsed_args; |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 813 | static State* recursive_state; |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 814 | |
| 815 | static int do_SetMetadataRecursive(const char* filename, const struct stat *statptr, |
| 816 | int fileflags, struct FTW *pfwt) { |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 817 | return ApplyParsedPerms(recursive_state, filename, statptr, recursive_parsed_args); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | static Value* SetMetadataFn(const char* name, State* state, int argc, Expr* argv[]) { |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 821 | if ((argc % 2) != 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 822 | return ErrorAbort(state, kArgsParsingFailure, |
| 823 | "%s() expects an odd number of arguments, got %d", name, argc); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 824 | } |
| 825 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 826 | std::vector<std::string> args; |
| 827 | if (!ReadArgs(state, argc, argv, &args)) { |
| 828 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 829 | } |
| 830 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 831 | struct stat sb; |
| 832 | if (lstat(args[0].c_str(), &sb) == -1) { |
| 833 | return ErrorAbort(state, kSetMetadataFailure, "%s: Error on lstat of \"%s\": %s", |
| 834 | name, args[0].c_str(), strerror(errno)); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 835 | } |
| 836 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 837 | struct perm_parsed_args parsed = ParsePermArgs(state, argc, args); |
| 838 | int bad = 0; |
| 839 | bool recursive = (strcmp(name, "set_metadata_recursive") == 0); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 840 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 841 | if (recursive) { |
| 842 | recursive_parsed_args = parsed; |
| 843 | recursive_state = state; |
| 844 | bad += nftw(args[0].c_str(), do_SetMetadataRecursive, 30, FTW_CHDIR | FTW_DEPTH | FTW_PHYS); |
| 845 | memset(&recursive_parsed_args, 0, sizeof(recursive_parsed_args)); |
| 846 | recursive_state = NULL; |
| 847 | } else { |
| 848 | bad += ApplyParsedPerms(state, args[0].c_str(), &sb, parsed); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | if (bad > 0) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 852 | return ErrorAbort(state, kSetMetadataFailure, "%s: some changes failed", name); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 853 | } |
| 854 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 855 | return StringValue(""); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 856 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 857 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 858 | Value* GetPropFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 859 | if (argc != 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 860 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 861 | } |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 862 | std::string key; |
| 863 | if (!Evaluate(state, argv[0], &key)) { |
| 864 | return nullptr; |
| 865 | } |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 866 | std::string value = android::base::GetProperty(key, ""); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 867 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 868 | return StringValue(value); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 872 | // file_getprop(file, key) |
| 873 | // |
| 874 | // interprets 'file' as a getprop-style file (key=value pairs, one |
Tao Bao | 51d516e | 2016-11-03 14:49:01 -0700 | [diff] [blame] | 875 | // per line. # comment lines, blank lines, lines without '=' ignored), |
Michael Runge | aa1a31e | 2014-04-25 18:47:18 -0700 | [diff] [blame] | 876 | // and returns the value for 'key' (or "" if it isn't defined). |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 877 | Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) { |
Tao Bao | 51d516e | 2016-11-03 14:49:01 -0700 | [diff] [blame] | 878 | if (argc != 2) { |
| 879 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc); |
| 880 | } |
| 881 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 882 | std::vector<std::string> args; |
| 883 | if (!ReadArgs(state, 2, argv, &args)) { |
| 884 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 885 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 886 | const std::string& filename = args[0]; |
| 887 | const std::string& key = args[1]; |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 888 | |
| 889 | struct stat st; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 890 | if (stat(filename.c_str(), &st) < 0) { |
| 891 | return ErrorAbort(state, kFileGetPropFailure, "%s: failed to stat \"%s\": %s", name, |
| 892 | filename.c_str(), strerror(errno)); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Tao Bao | 51d516e | 2016-11-03 14:49:01 -0700 | [diff] [blame] | 895 | constexpr off_t MAX_FILE_GETPROP_SIZE = 65536; |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 896 | if (st.st_size > MAX_FILE_GETPROP_SIZE) { |
Tao Bao | 51d516e | 2016-11-03 14:49:01 -0700 | [diff] [blame] | 897 | return ErrorAbort(state, kFileGetPropFailure, "%s too large for %s (max %lld)", |
| 898 | filename.c_str(), name, static_cast<long long>(MAX_FILE_GETPROP_SIZE)); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 899 | } |
| 900 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 901 | std::string buffer(st.st_size, '\0'); |
| 902 | FILE* f = ota_fopen(filename.c_str(), "rb"); |
| 903 | if (f == nullptr) { |
| 904 | return ErrorAbort(state, kFileOpenFailure, "%s: failed to open %s: %s", name, |
| 905 | filename.c_str(), strerror(errno)); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 906 | } |
| 907 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 908 | if (ota_fread(&buffer[0], 1, st.st_size, f) != static_cast<size_t>(st.st_size)) { |
Tianjie Xu | 84478e8 | 2016-05-23 11:42:40 -0700 | [diff] [blame] | 909 | ErrorAbort(state, kFreadFailure, "%s: failed to read %zu bytes from %s", |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 910 | name, static_cast<size_t>(st.st_size), filename.c_str()); |
Jed Estep | a7b9a46 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 911 | ota_fclose(f); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 912 | return nullptr; |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 913 | } |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 914 | |
Jed Estep | a7b9a46 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 915 | ota_fclose(f); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 916 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 917 | std::vector<std::string> lines = android::base::Split(buffer, "\n"); |
| 918 | for (size_t i = 0; i < lines.size(); i++) { |
| 919 | std::string line = android::base::Trim(lines[i]); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 920 | |
| 921 | // comment or blank line: skip to next line |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 922 | if (line.empty() || line[0] == '#') { |
| 923 | continue; |
| 924 | } |
| 925 | size_t equal_pos = line.find('='); |
| 926 | if (equal_pos == std::string::npos) { |
Michael Runge | aa1a31e | 2014-04-25 18:47:18 -0700 | [diff] [blame] | 927 | continue; |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 928 | } |
| 929 | |
| 930 | // trim whitespace between key and '=' |
Tao Bao | 51d516e | 2016-11-03 14:49:01 -0700 | [diff] [blame] | 931 | std::string str = android::base::Trim(line.substr(0, equal_pos)); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 932 | |
| 933 | // not the key we're looking for |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 934 | if (key != str) continue; |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 935 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 936 | return StringValue(android::base::Trim(line.substr(equal_pos + 1))); |
| 937 | } |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 938 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 939 | return StringValue(""); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 940 | } |
| 941 | |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 942 | // apply_patch_space(bytes) |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 943 | Value* ApplyPatchSpaceFn(const char* name, State* state, |
| 944 | int argc, Expr* argv[]) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 945 | std::vector<std::string> args; |
| 946 | if (!ReadArgs(state, 1, argv, &args)) { |
| 947 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 948 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 949 | const std::string& bytes_str = args[0]; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 950 | |
Tao Bao | b15fd22 | 2015-09-24 11:10:51 -0700 | [diff] [blame] | 951 | size_t bytes; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 952 | if (!android::base::ParseUint(bytes_str.c_str(), &bytes)) { |
| 953 | return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count\n\n", |
| 954 | name, bytes_str.c_str()); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 955 | } |
| 956 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 957 | return StringValue(CacheSizeCheck(bytes) ? "" : "t"); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 958 | } |
| 959 | |
Doug Zongker | 52b4036 | 2014-02-10 15:30:30 -0800 | [diff] [blame] | 960 | // apply_patch(file, size, init_sha1, tgt_sha1, patch) |
| 961 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 962 | Value* ApplyPatchFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 963 | if (argc < 6 || (argc % 2) == 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 964 | return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 6 args and an " |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 965 | "even number, got %d", name, argc); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 966 | } |
| 967 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 968 | std::vector<std::string> args; |
| 969 | if (!ReadArgs(state, 4, argv, &args)) { |
| 970 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 971 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 972 | const std::string& source_filename = args[0]; |
| 973 | const std::string& target_filename = args[1]; |
| 974 | const std::string& target_sha1 = args[2]; |
| 975 | const std::string& target_size_str = args[3]; |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 976 | |
Tao Bao | b15fd22 | 2015-09-24 11:10:51 -0700 | [diff] [blame] | 977 | size_t target_size; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 978 | if (!android::base::ParseUint(target_size_str.c_str(), &target_size)) { |
| 979 | return ErrorAbort(state, kArgsParsingFailure, "%s(): can't parse \"%s\" as byte count", |
| 980 | name, target_size_str.c_str()); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 981 | } |
| 982 | |
| 983 | int patchcount = (argc-4) / 2; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 984 | std::vector<std::unique_ptr<Value>> arg_values; |
| 985 | if (!ReadValueArgs(state, argc-4, argv+4, &arg_values)) { |
Yabin Cui | 64be213 | 2016-02-03 18:16:02 -0800 | [diff] [blame] | 986 | return nullptr; |
| 987 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 988 | |
Yabin Cui | 64be213 | 2016-02-03 18:16:02 -0800 | [diff] [blame] | 989 | for (int i = 0; i < patchcount; ++i) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 990 | if (arg_values[i * 2]->type != VAL_STRING) { |
| 991 | return ErrorAbort(state, kArgsParsingFailure, "%s(): sha-1 #%d is not string", name, |
| 992 | i * 2); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 993 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 994 | if (arg_values[i * 2 + 1]->type != VAL_BLOB) { |
| 995 | return ErrorAbort(state, kArgsParsingFailure, "%s(): patch #%d is not blob", name, |
| 996 | i * 2 + 1); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 997 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 998 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 999 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1000 | std::vector<std::string> patch_sha_str; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1001 | std::vector<std::unique_ptr<Value>> patches; |
Yabin Cui | 64be213 | 2016-02-03 18:16:02 -0800 | [diff] [blame] | 1002 | for (int i = 0; i < patchcount; ++i) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1003 | patch_sha_str.push_back(arg_values[i * 2]->data); |
| 1004 | patches.push_back(std::move(arg_values[i * 2 + 1])); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 1005 | } |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 1006 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1007 | int result = applypatch(source_filename.c_str(), target_filename.c_str(), |
| 1008 | target_sha1.c_str(), target_size, |
| 1009 | patch_sha_str, patches, nullptr); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 1010 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1011 | return StringValue(result == 0 ? "t" : ""); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 1012 | } |
| 1013 | |
| 1014 | // apply_patch_check(file, [sha1_1, ...]) |
| 1015 | Value* ApplyPatchCheckFn(const char* name, State* state, |
| 1016 | int argc, Expr* argv[]) { |
| 1017 | if (argc < 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1018 | return ErrorAbort(state, kArgsParsingFailure, "%s(): expected at least 1 arg, got %d", |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 1019 | name, argc); |
| 1020 | } |
| 1021 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1022 | std::vector<std::string> args; |
| 1023 | if (!ReadArgs(state, 1, argv, &args)) { |
| 1024 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 1025 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1026 | const std::string& filename = args[0]; |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 1027 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1028 | std::vector<std::string> sha1s; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1029 | if (!ReadArgs(state, argc - 1, argv + 1, &sha1s)) { |
| 1030 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 1031 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1032 | int result = applypatch_check(filename.c_str(), sha1s); |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1033 | |
| 1034 | return StringValue(result == 0 ? "t" : ""); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
Tao Bao | 1107d96 | 2015-09-09 17:16:55 -0700 | [diff] [blame] | 1037 | // This is the updater side handler for ui_print() in edify script. Contents |
| 1038 | // will be sent over to the recovery side for on-screen display. |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1039 | Value* UIPrintFn(const char* name, State* state, int argc, Expr* argv[]) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1040 | std::vector<std::string> args; |
| 1041 | if (!ReadArgs(state, argc, argv, &args)) { |
| 1042 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1045 | std::string buffer = android::base::Join(args, "") + "\n"; |
Michael Runge | d4a6342 | 2014-10-22 19:48:41 -0700 | [diff] [blame] | 1046 | uiPrint(state, buffer); |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1047 | return StringValue(buffer); |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 1048 | } |
| 1049 | |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 1050 | Value* WipeCacheFn(const char* name, State* state, int argc, Expr* argv[]) { |
| 1051 | if (argc != 0) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1052 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 1053 | } |
| 1054 | fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "wipe_cache\n"); |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1055 | return StringValue("t"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1058 | Value* RunProgramFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1059 | if (argc < 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1060 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name); |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1061 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1062 | |
| 1063 | std::vector<std::string> args; |
| 1064 | if (!ReadArgs(state, argc, argv, &args)) { |
| 1065 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1066 | } |
| 1067 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1068 | char* args2[argc+1]; |
| 1069 | for (int i = 0; i < argc; i++) { |
| 1070 | args2[i] = &args[i][0]; |
| 1071 | } |
| 1072 | args2[argc] = nullptr; |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1073 | |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 1074 | printf("about to run program [%s] with %d args\n", args2[0], argc); |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1075 | |
| 1076 | pid_t child = fork(); |
| 1077 | if (child == 0) { |
| 1078 | execv(args2[0], args2); |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 1079 | printf("run_program: execv failed: %s\n", strerror(errno)); |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1080 | _exit(1); |
| 1081 | } |
| 1082 | int status; |
| 1083 | waitpid(child, &status, 0); |
| 1084 | if (WIFEXITED(status)) { |
| 1085 | if (WEXITSTATUS(status) != 0) { |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 1086 | printf("run_program: child exited with status %d\n", |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1087 | WEXITSTATUS(status)); |
| 1088 | } |
| 1089 | } else if (WIFSIGNALED(status)) { |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 1090 | printf("run_program: child terminated by signal %d\n", |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1091 | WTERMSIG(status)); |
| 1092 | } |
| 1093 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1094 | return StringValue(android::base::StringPrintf("%d", status)); |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1095 | } |
| 1096 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1097 | // sha1_check(data) |
| 1098 | // to return the sha1 of the data (given in the format returned by |
| 1099 | // read_file). |
| 1100 | // |
| 1101 | // sha1_check(data, sha1_hex, [sha1_hex, ...]) |
| 1102 | // returns the sha1 of the file if it matches any of the hex |
| 1103 | // strings passed, or "" if it does not equal any of them. |
| 1104 | // |
| 1105 | Value* Sha1CheckFn(const char* name, State* state, int argc, Expr* argv[]) { |
| 1106 | if (argc < 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1107 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects at least 1 arg", name); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1108 | } |
| 1109 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1110 | std::vector<std::unique_ptr<Value>> args; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1111 | if (!ReadValueArgs(state, argc, argv, &args)) { |
| 1112 | return nullptr; |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1113 | } |
| 1114 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1115 | if (args[0]->type == VAL_INVALID) { |
| 1116 | return StringValue(""); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1117 | } |
Sen Jiang | c48cb5e | 2016-02-04 16:23:21 +0800 | [diff] [blame] | 1118 | uint8_t digest[SHA_DIGEST_LENGTH]; |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1119 | SHA1(reinterpret_cast<const uint8_t*>(args[0]->data.c_str()), args[0]->data.size(), digest); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1120 | |
| 1121 | if (argc == 1) { |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1122 | return StringValue(print_sha1(digest)); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1123 | } |
| 1124 | |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 1125 | for (int i = 1; i < argc; ++i) { |
| 1126 | uint8_t arg_digest[SHA_DIGEST_LENGTH]; |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1127 | if (args[i]->type != VAL_STRING) { |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 1128 | printf("%s(): arg %d is not a string; skipping", name, i); |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1129 | } else if (ParseSha1(args[i]->data.c_str(), arg_digest) != 0) { |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1130 | // Warn about bad args and skip them. |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1131 | printf("%s(): error parsing \"%s\" as sha-1; skipping", name, args[i]->data.c_str()); |
Sen Jiang | c48cb5e | 2016-02-04 16:23:21 +0800 | [diff] [blame] | 1132 | } else if (memcmp(digest, arg_digest, SHA_DIGEST_LENGTH) == 0) { |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 1133 | // Found a match. |
| 1134 | return args[i].release(); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1135 | } |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1136 | } |
Tao Bao | 361342c | 2016-02-08 11:15:50 -0800 | [diff] [blame] | 1137 | |
| 1138 | // Didn't match any of the hex strings; return false. |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1139 | return StringValue(""); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1140 | } |
| 1141 | |
Hristo Bojinov | db314d6 | 2010-08-02 10:29:49 -0700 | [diff] [blame] | 1142 | // Read a local file and return its contents (the Value* returned |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1143 | // is actually a FileContents*). |
| 1144 | Value* ReadFileFn(const char* name, State* state, int argc, Expr* argv[]) { |
| 1145 | if (argc != 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1146 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1147 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1148 | |
| 1149 | std::vector<std::string> args; |
| 1150 | if (!ReadArgs(state, 1, argv, &args)) { |
| 1151 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 1152 | } |
| 1153 | const std::string& filename = args[0]; |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1154 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1155 | Value* v = new Value(VAL_INVALID, ""); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1156 | |
| 1157 | FileContents fc; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1158 | if (LoadFileContents(filename.c_str(), &fc) == 0) { |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1159 | v->type = VAL_BLOB; |
| 1160 | v->data = std::string(fc.data.begin(), fc.data.end()); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1161 | } |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1162 | return v; |
| 1163 | } |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 1164 | |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1165 | // Immediately reboot the device. Recovery is not finished normally, |
| 1166 | // so if you reboot into recovery it will re-start applying the |
| 1167 | // current package (because nothing has cleared the copy of the |
| 1168 | // arguments stored in the BCB). |
| 1169 | // |
| 1170 | // The argument is the partition name passed to the android reboot |
| 1171 | // property. It can be "recovery" to boot from the recovery |
| 1172 | // partition, or "" (empty string) to boot from the regular boot |
| 1173 | // partition. |
| 1174 | Value* RebootNowFn(const char* name, State* state, int argc, Expr* argv[]) { |
| 1175 | if (argc != 2) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1176 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1177 | } |
| 1178 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1179 | std::vector<std::string> args; |
| 1180 | if (!ReadArgs(state, 2, argv, &args)) { |
| 1181 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 1182 | } |
| 1183 | const std::string& filename = args[0]; |
| 1184 | const std::string& property = args[1]; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1185 | |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1186 | // zero out the 'command' field of the bootloader message. |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 1187 | char buffer[80]; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1188 | memset(buffer, 0, sizeof(((struct bootloader_message*)0)->command)); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1189 | FILE* f = ota_fopen(filename.c_str(), "r+b"); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1190 | fseek(f, offsetof(struct bootloader_message, command), SEEK_SET); |
Jed Estep | a7b9a46 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 1191 | ota_fwrite(buffer, sizeof(((struct bootloader_message*)0)->command), 1, f); |
| 1192 | ota_fclose(f); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1193 | |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 1194 | std::string reboot_cmd = "reboot,"; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1195 | reboot_cmd += property; |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 1196 | android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_cmd); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1197 | |
| 1198 | sleep(5); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1199 | return ErrorAbort(state, kRebootFailure, "%s() failed to reboot", name); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1200 | } |
| 1201 | |
| 1202 | // Store a string value somewhere that future invocations of recovery |
| 1203 | // can access it. This value is called the "stage" and can be used to |
| 1204 | // drive packages that need to do reboots in the middle of |
| 1205 | // installation and keep track of where they are in the multi-stage |
| 1206 | // install. |
| 1207 | // |
| 1208 | // The first argument is the block device for the misc partition |
| 1209 | // ("/misc" in the fstab), which is where this value is stored. The |
| 1210 | // second argument is the string to store; it should not exceed 31 |
| 1211 | // bytes. |
| 1212 | Value* SetStageFn(const char* name, State* state, int argc, Expr* argv[]) { |
| 1213 | if (argc != 2) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1214 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1215 | } |
| 1216 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1217 | std::vector<std::string> args; |
| 1218 | if (!ReadArgs(state, 2, argv, &args)) { |
| 1219 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 1220 | } |
| 1221 | const std::string& filename = args[0]; |
| 1222 | std::string& stagestr = args[1]; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1223 | |
| 1224 | // Store this value in the misc partition, immediately after the |
| 1225 | // bootloader message that the main recovery uses to save its |
| 1226 | // arguments in case of the device restarting midway through |
| 1227 | // package installation. |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1228 | FILE* f = ota_fopen(filename.c_str(), "r+b"); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1229 | fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET); |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1230 | size_t to_write = stagestr.size(); |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1231 | size_t max_size = sizeof(((struct bootloader_message*)0)->stage); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1232 | if (to_write > max_size) { |
| 1233 | to_write = max_size; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1234 | stagestr = stagestr.substr(0, max_size-1); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1235 | } |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1236 | size_t status = ota_fwrite(stagestr.c_str(), to_write, 1, f); |
Jed Estep | a7b9a46 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 1237 | ota_fclose(f); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1238 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1239 | if (status != to_write) { |
| 1240 | return StringValue(""); |
| 1241 | } |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1242 | return StringValue(filename); |
| 1243 | } |
| 1244 | |
| 1245 | // Return the value most recently saved with SetStageFn. The argument |
| 1246 | // is the block device for the misc partition. |
| 1247 | Value* GetStageFn(const char* name, State* state, int argc, Expr* argv[]) { |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 1248 | if (argc != 1) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1249 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 1 arg, got %d", name, argc); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1250 | } |
| 1251 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1252 | std::vector<std::string> args; |
| 1253 | if (!ReadArgs(state, 1, argv, &args)) { |
| 1254 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 1255 | } |
| 1256 | const std::string& filename = args[0]; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1257 | |
| 1258 | char buffer[sizeof(((struct bootloader_message*)0)->stage)]; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1259 | FILE* f = ota_fopen(filename.c_str(), "rb"); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1260 | fseek(f, offsetof(struct bootloader_message, stage), SEEK_SET); |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1261 | size_t status = ota_fread(buffer, sizeof(buffer), 1, f); |
Jed Estep | a7b9a46 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 1262 | ota_fclose(f); |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1263 | if (status != sizeof(buffer)) { |
| 1264 | return StringValue(""); |
| 1265 | } |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1266 | |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1267 | buffer[sizeof(buffer)-1] = '\0'; |
| 1268 | return StringValue(buffer); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1269 | } |
| 1270 | |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 1271 | Value* WipeBlockDeviceFn(const char* name, State* state, int argc, Expr* argv[]) { |
| 1272 | if (argc != 2) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1273 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects 2 args, got %d", name, argc); |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 1274 | } |
| 1275 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1276 | std::vector<std::string> args; |
| 1277 | if (!ReadArgs(state, 2, argv, &args)) { |
| 1278 | return ErrorAbort(state, kArgsParsingFailure, "%s() Failed to parse the argument(s)", name); |
| 1279 | } |
| 1280 | const std::string& filename = args[0]; |
| 1281 | const std::string& len_str = args[1]; |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 1282 | |
Tao Bao | b15fd22 | 2015-09-24 11:10:51 -0700 | [diff] [blame] | 1283 | size_t len; |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1284 | if (!android::base::ParseUint(len_str.c_str(), &len)) { |
| 1285 | return nullptr; |
| 1286 | } |
| 1287 | int fd = ota_open(filename.c_str(), O_WRONLY, 0644); |
| 1288 | // The wipe_block_device function in ext4_utils returns 0 on success and 1 |
| 1289 | // for failure. |
| 1290 | int status = wipe_block_device(fd, len); |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 1291 | |
Jed Estep | a7b9a46 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 1292 | ota_close(fd); |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 1293 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1294 | return StringValue((status == 0) ? "t" : ""); |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 1295 | } |
| 1296 | |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 1297 | Value* EnableRebootFn(const char* name, State* state, int argc, Expr* argv[]) { |
| 1298 | if (argc != 0) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1299 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects no args, got %d", name, argc); |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 1300 | } |
| 1301 | UpdaterInfo* ui = (UpdaterInfo*)(state->cookie); |
| 1302 | fprintf(ui->cmd_pipe, "enable_reboot\n"); |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1303 | return StringValue("t"); |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 1304 | } |
| 1305 | |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1306 | Value* Tune2FsFn(const char* name, State* state, int argc, Expr* argv[]) { |
| 1307 | if (argc == 0) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1308 | return ErrorAbort(state, kArgsParsingFailure, "%s() expects args, got %d", name, argc); |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1309 | } |
| 1310 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1311 | std::vector<std::string> args; |
| 1312 | if (!ReadArgs(state, argc, argv, &args)) { |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1313 | return ErrorAbort(state, kArgsParsingFailure, "%s() could not read args", name); |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1314 | } |
| 1315 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1316 | char* args2[argc+1]; |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1317 | // Tune2fs expects the program name as its args[0] |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1318 | args2[0] = const_cast<char*>(name); |
| 1319 | if (args2[0] == nullptr) { |
| 1320 | return nullptr; |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1321 | } |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 1322 | for (int i = 0; i < argc; ++i) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1323 | args2[i + 1] = &args[i][0]; |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1324 | } |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1325 | |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1326 | // tune2fs changes the file system parameters on an ext2 file system; it |
| 1327 | // returns 0 on success. |
| 1328 | int result = tune2fs_main(argc + 1, args2); |
| 1329 | |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1330 | if (result != 0) { |
Tianjie Xu | 5fe280a | 2016-10-17 18:15:20 -0700 | [diff] [blame] | 1331 | return ErrorAbort(state, kTune2FsFailure, "%s() returned error code %d", name, result); |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1332 | } |
Tianjie Xu | aced5d9 | 2016-10-12 10:55:04 -0700 | [diff] [blame] | 1333 | return StringValue("t"); |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1334 | } |
| 1335 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1336 | void RegisterInstallFunctions() { |
| 1337 | RegisterFunction("mount", MountFn); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 1338 | RegisterFunction("is_mounted", IsMountedFn); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1339 | RegisterFunction("unmount", UnmountFn); |
| 1340 | RegisterFunction("format", FormatFn); |
| 1341 | RegisterFunction("show_progress", ShowProgressFn); |
Doug Zongker | fbf3c10 | 2009-06-24 09:36:20 -0700 | [diff] [blame] | 1342 | RegisterFunction("set_progress", SetProgressFn); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1343 | RegisterFunction("delete", DeleteFn); |
| 1344 | RegisterFunction("delete_recursive", DeleteFn); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 1345 | RegisterFunction("package_extract_dir", PackageExtractDirFn); |
| 1346 | RegisterFunction("package_extract_file", PackageExtractFileFn); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1347 | RegisterFunction("symlink", SymlinkFn); |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 1348 | |
Nick Kralevich | 5dbdef0 | 2013-09-07 14:41:06 -0700 | [diff] [blame] | 1349 | // Usage: |
| 1350 | // set_metadata("filename", "key1", "value1", "key2", "value2", ...) |
| 1351 | // Example: |
| 1352 | // set_metadata("/system/bin/netcfg", "uid", 0, "gid", 3003, "mode", 02750, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0); |
| 1353 | RegisterFunction("set_metadata", SetMetadataFn); |
| 1354 | |
| 1355 | // Usage: |
| 1356 | // set_metadata_recursive("dirname", "key1", "value1", "key2", "value2", ...) |
| 1357 | // Example: |
| 1358 | // set_metadata_recursive("/system", "uid", 0, "gid", 0, "fmode", 0644, "dmode", 0755, "selabel", "u:object_r:system_file:s0", "capabilities", 0x0); |
| 1359 | RegisterFunction("set_metadata_recursive", SetMetadataFn); |
| 1360 | |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 1361 | RegisterFunction("getprop", GetPropFn); |
Doug Zongker | 47cace9 | 2009-06-18 10:11:50 -0700 | [diff] [blame] | 1362 | RegisterFunction("file_getprop", FileGetPropFn); |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 1363 | |
| 1364 | RegisterFunction("apply_patch", ApplyPatchFn); |
Doug Zongker | c4351c7 | 2010-02-22 14:46:32 -0800 | [diff] [blame] | 1365 | RegisterFunction("apply_patch_check", ApplyPatchCheckFn); |
| 1366 | RegisterFunction("apply_patch_space", ApplyPatchSpaceFn); |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 1367 | |
Doug Zongker | c9d6e4f | 2014-02-24 16:02:50 -0800 | [diff] [blame] | 1368 | RegisterFunction("wipe_block_device", WipeBlockDeviceFn); |
Doug Zongker | 52b4036 | 2014-02-10 15:30:30 -0800 | [diff] [blame] | 1369 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1370 | RegisterFunction("read_file", ReadFileFn); |
| 1371 | RegisterFunction("sha1_check", Sha1CheckFn); |
Michael Runge | ce7ca71 | 2013-11-06 17:42:20 -0800 | [diff] [blame] | 1372 | RegisterFunction("rename", RenameFn); |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1373 | |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 1374 | RegisterFunction("wipe_cache", WipeCacheFn); |
| 1375 | |
Doug Zongker | d9c9d10 | 2009-06-12 12:24:39 -0700 | [diff] [blame] | 1376 | RegisterFunction("ui_print", UIPrintFn); |
Doug Zongker | a3f89ea | 2009-09-10 14:10:48 -0700 | [diff] [blame] | 1377 | |
| 1378 | RegisterFunction("run_program", RunProgramFn); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1379 | |
| 1380 | RegisterFunction("reboot_now", RebootNowFn); |
| 1381 | RegisterFunction("get_stage", GetStageFn); |
| 1382 | RegisterFunction("set_stage", SetStageFn); |
Doug Zongker | c704e06 | 2014-05-23 08:40:35 -0700 | [diff] [blame] | 1383 | |
| 1384 | RegisterFunction("enable_reboot", EnableRebootFn); |
Michael Runge | acf47db | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 1385 | RegisterFunction("tune2fs", Tune2FsFn); |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1386 | } |