Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 | |
| 17 | // This program takes a file on an ext4 filesystem and produces a list |
| 18 | // of the blocks that file occupies, which enables the file contents |
| 19 | // to be read directly from the block device without mounting the |
| 20 | // filesystem. |
| 21 | // |
| 22 | // If the filesystem is using an encrypted block device, it will also |
| 23 | // read the file and rewrite it to the same blocks of the underlying |
| 24 | // (unencrypted) block device, so the file contents can be read |
| 25 | // without the need for the decryption key. |
| 26 | // |
| 27 | // The output of this program is a "block map" which looks like this: |
| 28 | // |
| 29 | // /dev/block/platform/msm_sdcc.1/by-name/userdata # block device |
| 30 | // 49652 4096 # file size in bytes, block size |
| 31 | // 3 # count of block ranges |
| 32 | // 1000 1008 # block range 0 |
| 33 | // 2100 2102 # ... block range 1 |
| 34 | // 30 33 # ... block range 2 |
| 35 | // |
| 36 | // Each block range represents a half-open interval; the line "30 33" |
| 37 | // reprents the blocks [30, 31, 32]. |
| 38 | // |
| 39 | // Recovery can take this block map file and retrieve the underlying |
| 40 | // file data to use as an update package. |
| 41 | |
Elliott Hughes | d4d4c24 | 2014-12-29 12:46:43 -0800 | [diff] [blame] | 42 | #include <errno.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 43 | #include <fcntl.h> |
Tao Bao | b8df5fb | 2015-12-08 22:47:25 -0800 | [diff] [blame] | 44 | #include <inttypes.h> |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 45 | #include <libgen.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 46 | #include <linux/fs.h> |
| 47 | #include <stdarg.h> |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 48 | #include <stdio.h> |
| 49 | #include <stdlib.h> |
Elliott Hughes | cd3c55a | 2015-01-29 20:50:08 -0800 | [diff] [blame] | 50 | #include <string.h> |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 51 | #include <sys/mman.h> |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 52 | #include <sys/stat.h> |
| 53 | #include <sys/types.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 54 | #include <unistd.h> |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 55 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 56 | #include <algorithm> |
Tao Bao | c754792 | 2015-08-06 18:35:05 -0700 | [diff] [blame] | 57 | #include <memory> |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 58 | #include <vector> |
Tao Bao | c754792 | 2015-08-06 18:35:05 -0700 | [diff] [blame] | 59 | |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 60 | #include <android-base/file.h> |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 61 | #include <android-base/logging.h> |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 62 | #include <android-base/stringprintf.h> |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 63 | #include <android-base/strings.h> |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 64 | #include <android-base/unique_fd.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 65 | #include <cutils/android_reboot.h> |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 66 | #include <cutils/properties.h> |
| 67 | #include <fs_mgr.h> |
| 68 | |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 69 | #define LOG_TAG "uncrypt" |
| 70 | #include <log/log.h> |
| 71 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 72 | #include "bootloader.h" |
Tao Bao | c754792 | 2015-08-06 18:35:05 -0700 | [diff] [blame] | 73 | |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 74 | #define WINDOW_SIZE 5 |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 75 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 76 | static const std::string CACHE_BLOCK_MAP = "/cache/recovery/block.map"; |
| 77 | static const std::string COMMAND_FILE = "/cache/recovery/command"; |
| 78 | static const std::string STATUS_FILE = "/cache/recovery/uncrypt_status"; |
| 79 | static const std::string UNCRYPT_PATH_FILE = "/cache/recovery/uncrypt_file"; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 80 | |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 81 | static struct fstab* fstab = NULL; |
| 82 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 83 | static int write_at_offset(unsigned char* buffer, size_t size, int wfd, off64_t offset) { |
Elliott Hughes | 7bad7c4 | 2015-04-28 17:24:24 -0700 | [diff] [blame] | 84 | if (TEMP_FAILURE_RETRY(lseek64(wfd, offset, SEEK_SET)) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 85 | ALOGE("error seeking to offset %" PRId64 ": %s", offset, strerror(errno)); |
Elliott Hughes | 7bad7c4 | 2015-04-28 17:24:24 -0700 | [diff] [blame] | 86 | return -1; |
| 87 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 88 | if (!android::base::WriteFully(wfd, buffer, size)) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 89 | ALOGE("error writing offset %" PRId64 ": %s", offset, strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 90 | return -1; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 91 | } |
| 92 | return 0; |
| 93 | } |
| 94 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 95 | static void add_block_to_ranges(std::vector<int>& ranges, int new_block) { |
| 96 | if (!ranges.empty() && new_block == ranges.back()) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 97 | // If the new block comes immediately after the current range, |
| 98 | // all we have to do is extend the current range. |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 99 | ++ranges.back(); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 100 | } else { |
| 101 | // We need to start a new range. |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 102 | ranges.push_back(new_block); |
| 103 | ranges.push_back(new_block + 1); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 104 | } |
| 105 | } |
| 106 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 107 | static struct fstab* read_fstab() { |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 108 | fstab = NULL; |
| 109 | |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 110 | // The fstab path is always "/fstab.${ro.hardware}". |
| 111 | char fstab_path[PATH_MAX+1] = "/fstab."; |
| 112 | if (!property_get("ro.hardware", fstab_path+strlen(fstab_path), "")) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 113 | ALOGE("failed to get ro.hardware"); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 114 | return NULL; |
| 115 | } |
| 116 | |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 117 | fstab = fs_mgr_read_fstab(fstab_path); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 118 | if (!fstab) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 119 | ALOGE("failed to read %s", fstab_path); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 120 | return NULL; |
| 121 | } |
| 122 | |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 123 | return fstab; |
| 124 | } |
| 125 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 126 | static const char* find_block_device(const char* path, bool* encryptable, bool* encrypted) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 127 | // Look for a volume whose mount point is the prefix of path and |
| 128 | // return its block device. Set encrypted if it's currently |
| 129 | // encrypted. |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 130 | for (int i = 0; i < fstab->num_entries; ++i) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 131 | struct fstab_rec* v = &fstab->recs[i]; |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 132 | if (!v->mount_point) { |
| 133 | continue; |
| 134 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 135 | int len = strlen(v->mount_point); |
| 136 | if (strncmp(path, v->mount_point, len) == 0 && |
| 137 | (path[len] == '/' || path[len] == 0)) { |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 138 | *encrypted = false; |
| 139 | *encryptable = false; |
Tao Bao | 7cf50c6 | 2015-07-16 20:04:13 -0700 | [diff] [blame] | 140 | if (fs_mgr_is_encryptable(v) || fs_mgr_is_file_encrypted(v)) { |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 141 | *encryptable = true; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 142 | char buffer[PROPERTY_VALUE_MAX+1]; |
| 143 | if (property_get("ro.crypto.state", buffer, "") && |
| 144 | strcmp(buffer, "encrypted") == 0) { |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 145 | *encrypted = true; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 146 | } |
| 147 | } |
| 148 | return v->blk_device; |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | return NULL; |
| 153 | } |
| 154 | |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 155 | // Parse uncrypt_file to find the update package name. |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 156 | static bool find_uncrypt_package(const std::string& uncrypt_path_file, std::string* package_name) { |
| 157 | CHECK(package_name != nullptr); |
| 158 | std::string uncrypt_path; |
| 159 | if (!android::base::ReadFileToString(uncrypt_path_file, &uncrypt_path)) { |
| 160 | ALOGE("failed to open \"%s\": %s", uncrypt_path_file.c_str(), strerror(errno)); |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 161 | return false; |
Maxim Siniavine | e7b2888 | 2014-02-13 15:48:53 -0800 | [diff] [blame] | 162 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 163 | |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 164 | // Remove the trailing '\n' if present. |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 165 | *package_name = android::base::Trim(uncrypt_path); |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 166 | return true; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 167 | } |
| 168 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 169 | static int produce_block_map(const char* path, const char* map_file, const char* blk_dev, |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 170 | bool encrypted, int status_fd) { |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 171 | std::string err; |
| 172 | if (!android::base::RemoveFileIfExists(map_file, &err)) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 173 | ALOGE("failed to remove the existing map file %s: %s", map_file, err.c_str()); |
Sungmin Choi | a72512c | 2014-12-10 21:57:09 +0900 | [diff] [blame] | 174 | return -1; |
| 175 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 176 | std::string tmp_map_file = std::string(map_file) + ".tmp"; |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 177 | android::base::unique_fd mapfd(open(tmp_map_file.c_str(), |
| 178 | O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR)); |
| 179 | if (mapfd == -1) { |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 180 | ALOGE("failed to open %s: %s\n", tmp_map_file.c_str(), strerror(errno)); |
| 181 | return -1; |
| 182 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 183 | |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 184 | // Make sure we can write to the status_file. |
| 185 | if (!android::base::WriteStringToFd("0\n", status_fd)) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 186 | ALOGE("failed to update \"%s\"\n", STATUS_FILE.c_str()); |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 187 | return -1; |
| 188 | } |
| 189 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 190 | struct stat sb; |
Tao Bao | c754792 | 2015-08-06 18:35:05 -0700 | [diff] [blame] | 191 | if (stat(path, &sb) != 0) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 192 | ALOGE("failed to stat %s", path); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 193 | return -1; |
| 194 | } |
| 195 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 196 | ALOGI(" block size: %ld bytes", static_cast<long>(sb.st_blksize)); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 197 | |
| 198 | int blocks = ((sb.st_size-1) / sb.st_blksize) + 1; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 199 | ALOGI(" file size: %" PRId64 " bytes, %d blocks", sb.st_size, blocks); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 200 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 201 | std::vector<int> ranges; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 202 | |
Chih-Hung Hsieh | 54a2747 | 2016-04-18 11:30:55 -0700 | [diff] [blame] | 203 | std::string s = android::base::StringPrintf("%s\n%" PRId64 " %" PRId64 "\n", |
| 204 | blk_dev, static_cast<int64_t>(sb.st_size), |
| 205 | static_cast<int64_t>(sb.st_blksize)); |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 206 | if (!android::base::WriteStringToFd(s, mapfd)) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 207 | ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 208 | return -1; |
| 209 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 210 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 211 | std::vector<std::vector<unsigned char>> buffers; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 212 | if (encrypted) { |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 213 | buffers.resize(WINDOW_SIZE, std::vector<unsigned char>(sb.st_blksize)); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 214 | } |
| 215 | int head_block = 0; |
| 216 | int head = 0, tail = 0; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 217 | |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 218 | android::base::unique_fd fd(open(path, O_RDONLY)); |
| 219 | if (fd == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 220 | ALOGE("failed to open %s for reading: %s", path, strerror(errno)); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 221 | return -1; |
| 222 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 223 | |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 224 | android::base::unique_fd wfd; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 225 | if (encrypted) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 226 | wfd.reset(open(blk_dev, O_WRONLY)); |
| 227 | if (wfd == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 228 | ALOGE("failed to open fd for writing: %s", strerror(errno)); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 229 | return -1; |
| 230 | } |
| 231 | } |
| 232 | |
Tao Bao | b8df5fb | 2015-12-08 22:47:25 -0800 | [diff] [blame] | 233 | off64_t pos = 0; |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 234 | int last_progress = 0; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 235 | while (pos < sb.st_size) { |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 236 | // Update the status file, progress must be between [0, 99]. |
| 237 | int progress = static_cast<int>(100 * (double(pos) / double(sb.st_size))); |
| 238 | if (progress > last_progress) { |
| 239 | last_progress = progress; |
| 240 | android::base::WriteStringToFd(std::to_string(progress) + "\n", status_fd); |
| 241 | } |
| 242 | |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 243 | if ((tail+1) % WINDOW_SIZE == head) { |
| 244 | // write out head buffer |
| 245 | int block = head_block; |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 246 | if (ioctl(fd, FIBMAP, &block) != 0) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 247 | ALOGE("failed to find block %d", head_block); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 248 | return -1; |
| 249 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 250 | add_block_to_ranges(ranges, block); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 251 | if (encrypted) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 252 | if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd, |
| 253 | static_cast<off64_t>(sb.st_blksize) * block) != 0) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 254 | return -1; |
| 255 | } |
| 256 | } |
| 257 | head = (head + 1) % WINDOW_SIZE; |
| 258 | ++head_block; |
| 259 | } |
| 260 | |
| 261 | // read next block to tail |
| 262 | if (encrypted) { |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 263 | size_t to_read = static_cast<size_t>( |
| 264 | std::min(static_cast<off64_t>(sb.st_blksize), sb.st_size - pos)); |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 265 | if (!android::base::ReadFully(fd, buffers[tail].data(), to_read)) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 266 | ALOGE("failed to read: %s", strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 267 | return -1; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 268 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 269 | pos += to_read; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 270 | } else { |
| 271 | // If we're not encrypting; we don't need to actually read |
| 272 | // anything, just skip pos forward as if we'd read a |
| 273 | // block. |
| 274 | pos += sb.st_blksize; |
| 275 | } |
| 276 | tail = (tail+1) % WINDOW_SIZE; |
| 277 | } |
| 278 | |
| 279 | while (head != tail) { |
| 280 | // write out head buffer |
| 281 | int block = head_block; |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 282 | if (ioctl(fd, FIBMAP, &block) != 0) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 283 | ALOGE("failed to find block %d", head_block); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 284 | return -1; |
| 285 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 286 | add_block_to_ranges(ranges, block); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 287 | if (encrypted) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 288 | if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd, |
| 289 | static_cast<off64_t>(sb.st_blksize) * block) != 0) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 290 | return -1; |
| 291 | } |
| 292 | } |
| 293 | head = (head + 1) % WINDOW_SIZE; |
| 294 | ++head_block; |
| 295 | } |
| 296 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 297 | if (!android::base::WriteStringToFd( |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 298 | android::base::StringPrintf("%zu\n", ranges.size() / 2), mapfd)) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 299 | ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno)); |
Tao Bao | fb4ccef | 2015-05-04 10:10:13 -0700 | [diff] [blame] | 300 | return -1; |
| 301 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 302 | for (size_t i = 0; i < ranges.size(); i += 2) { |
| 303 | if (!android::base::WriteStringToFd( |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 304 | android::base::StringPrintf("%d %d\n", ranges[i], ranges[i+1]), mapfd)) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 305 | ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno)); |
Tao Bao | fb4ccef | 2015-05-04 10:10:13 -0700 | [diff] [blame] | 306 | return -1; |
| 307 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 308 | } |
| 309 | |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 310 | if (fsync(mapfd) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 311 | ALOGE("failed to fsync \"%s\": %s", tmp_map_file.c_str(), strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 312 | return -1; |
| 313 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 314 | if (close(mapfd.release()) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 315 | ALOGE("failed to close %s: %s", tmp_map_file.c_str(), strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 316 | return -1; |
| 317 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 318 | |
| 319 | if (encrypted) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 320 | if (fsync(wfd) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 321 | ALOGE("failed to fsync \"%s\": %s", blk_dev, strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 322 | return -1; |
| 323 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 324 | if (close(wfd.release()) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 325 | ALOGE("failed to close %s: %s", blk_dev, strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 326 | return -1; |
| 327 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | if (rename(tmp_map_file.c_str(), map_file) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 331 | ALOGE("failed to rename %s to %s: %s", tmp_map_file.c_str(), map_file, strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 332 | return -1; |
| 333 | } |
| 334 | // Sync dir to make rename() result written to disk. |
| 335 | std::string file_name = map_file; |
| 336 | std::string dir_name = dirname(&file_name[0]); |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 337 | android::base::unique_fd dfd(open(dir_name.c_str(), O_RDONLY | O_DIRECTORY)); |
| 338 | if (dfd == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 339 | ALOGE("failed to open dir %s: %s", dir_name.c_str(), strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 340 | return -1; |
| 341 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 342 | if (fsync(dfd) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 343 | ALOGE("failed to fsync %s: %s", dir_name.c_str(), strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 344 | return -1; |
| 345 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 346 | if (close(dfd.release()) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 347 | ALOGE("failed to close %s: %s", dir_name.c_str(), strerror(errno)); |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 348 | return -1; |
| 349 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 350 | return 0; |
| 351 | } |
| 352 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 353 | static std::string get_misc_blk_device() { |
| 354 | struct fstab* fstab = read_fstab(); |
| 355 | if (fstab == nullptr) { |
| 356 | return ""; |
| 357 | } |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 358 | for (int i = 0; i < fstab->num_entries; ++i) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 359 | fstab_rec* v = &fstab->recs[i]; |
| 360 | if (v->mount_point != nullptr && strcmp(v->mount_point, "/misc") == 0) { |
| 361 | return v->blk_device; |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 362 | } |
| 363 | } |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 364 | return ""; |
| 365 | } |
| 366 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 367 | static int write_bootloader_message(const bootloader_message* in) { |
| 368 | std::string misc_blk_device = get_misc_blk_device(); |
| 369 | if (misc_blk_device.empty()) { |
| 370 | ALOGE("failed to find /misc partition."); |
| 371 | return -1; |
| 372 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 373 | android::base::unique_fd fd(open(misc_blk_device.c_str(), O_WRONLY | O_SYNC)); |
| 374 | if (fd == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 375 | ALOGE("failed to open %s: %s", misc_blk_device.c_str(), strerror(errno)); |
| 376 | return -1; |
| 377 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 378 | if (!android::base::WriteFully(fd, in, sizeof(*in))) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 379 | ALOGE("failed to write %s: %s", misc_blk_device.c_str(), strerror(errno)); |
| 380 | return -1; |
| 381 | } |
| 382 | // TODO: O_SYNC and fsync() duplicates each other? |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 383 | if (fsync(fd) == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 384 | ALOGE("failed to fsync %s: %s", misc_blk_device.c_str(), strerror(errno)); |
| 385 | return -1; |
| 386 | } |
| 387 | return 0; |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 388 | } |
| 389 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 390 | static void reboot_to_recovery() { |
Doug Zongker | f449db2 | 2014-08-26 09:15:08 -0700 | [diff] [blame] | 391 | ALOGI("rebooting to recovery"); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 392 | property_set("sys.powerctl", "reboot,recovery"); |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 393 | while (true) { |
| 394 | pause(); |
| 395 | } |
Doug Zongker | f449db2 | 2014-08-26 09:15:08 -0700 | [diff] [blame] | 396 | ALOGE("reboot didn't succeed?"); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 397 | } |
| 398 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 399 | static int uncrypt(const char* input_path, const char* map_file, int status_fd) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 400 | |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 401 | ALOGI("update package is \"%s\"", input_path); |
Doug Zongker | f449db2 | 2014-08-26 09:15:08 -0700 | [diff] [blame] | 402 | |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 403 | // Turn the name of the file we're supposed to convert into an |
| 404 | // absolute path, so we can find what filesystem it's on. |
| 405 | char path[PATH_MAX+1]; |
| 406 | if (realpath(input_path, path) == NULL) { |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 407 | ALOGE("failed to convert \"%s\" to absolute path: %s", input_path, strerror(errno)); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 408 | return 1; |
| 409 | } |
| 410 | |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 411 | if (read_fstab() == NULL) { |
| 412 | return 1; |
| 413 | } |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 414 | |
| 415 | bool encryptable; |
| 416 | bool encrypted; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 417 | const char* blk_dev = find_block_device(path, &encryptable, &encrypted); |
| 418 | if (blk_dev == NULL) { |
Doug Zongker | f449db2 | 2014-08-26 09:15:08 -0700 | [diff] [blame] | 419 | ALOGE("failed to find block device for %s", path); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 420 | return 1; |
| 421 | } |
| 422 | |
| 423 | // If the filesystem it's on isn't encrypted, we only produce the |
| 424 | // block map, we don't rewrite the file contents (it would be |
| 425 | // pointless to do so). |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 426 | ALOGI("encryptable: %s", encryptable ? "yes" : "no"); |
| 427 | ALOGI(" encrypted: %s", encrypted ? "yes" : "no"); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 428 | |
Doug Zongker | 574443d | 2014-09-05 08:22:12 -0700 | [diff] [blame] | 429 | // Recovery supports installing packages from 3 paths: /cache, |
| 430 | // /data, and /sdcard. (On a particular device, other locations |
| 431 | // may work, but those are three we actually expect.) |
| 432 | // |
| 433 | // On /data we want to convert the file to a block map so that we |
| 434 | // can read the package without mounting the partition. On /cache |
| 435 | // and /sdcard we leave the file alone. |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 436 | if (strncmp(path, "/data/", 6) == 0) { |
Doug Zongker | f449db2 | 2014-08-26 09:15:08 -0700 | [diff] [blame] | 437 | ALOGI("writing block map %s", map_file); |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 438 | if (produce_block_map(path, map_file, blk_dev, encrypted, status_fd) != 0) { |
| 439 | return 1; |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | return 0; |
| 444 | } |
| 445 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 446 | static int uncrypt_wrapper(const char* input_path, const char* map_file, |
| 447 | const std::string& status_file) { |
| 448 | // The pipe has been created by the system server. |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 449 | android::base::unique_fd status_fd(open(status_file.c_str(), |
| 450 | O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR)); |
| 451 | if (status_fd == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 452 | ALOGE("failed to open pipe \"%s\": %s", status_file.c_str(), strerror(errno)); |
| 453 | return 1; |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 454 | } |
| 455 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 456 | std::string package; |
| 457 | if (input_path == nullptr) { |
| 458 | if (!find_uncrypt_package(UNCRYPT_PATH_FILE, &package)) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 459 | android::base::WriteStringToFd("-1\n", status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 460 | return 1; |
| 461 | } |
| 462 | input_path = package.c_str(); |
| 463 | } |
| 464 | CHECK(map_file != nullptr); |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 465 | int status = uncrypt(input_path, map_file, status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 466 | if (status != 0) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 467 | android::base::WriteStringToFd("-1\n", status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 468 | return 1; |
| 469 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 470 | android::base::WriteStringToFd("100\n", status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 471 | return 0; |
| 472 | } |
| 473 | |
| 474 | static int clear_bcb(const std::string& status_file) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 475 | android::base::unique_fd status_fd(open(status_file.c_str(), |
| 476 | O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR)); |
| 477 | if (status_fd == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 478 | ALOGE("failed to open pipe \"%s\": %s", status_file.c_str(), strerror(errno)); |
| 479 | return 1; |
| 480 | } |
| 481 | bootloader_message boot = {}; |
| 482 | if (write_bootloader_message(&boot) != 0) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 483 | android::base::WriteStringToFd("-1\n", status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 484 | return 1; |
| 485 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 486 | android::base::WriteStringToFd("100\n", status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 487 | return 0; |
| 488 | } |
| 489 | |
| 490 | static int setup_bcb(const std::string& command_file, const std::string& status_file) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 491 | android::base::unique_fd status_fd(open(status_file.c_str(), |
| 492 | O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR)); |
| 493 | if (status_fd == -1) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 494 | ALOGE("failed to open pipe \"%s\": %s", status_file.c_str(), strerror(errno)); |
| 495 | return 1; |
| 496 | } |
| 497 | std::string content; |
| 498 | if (!android::base::ReadFileToString(command_file, &content)) { |
| 499 | ALOGE("failed to read \"%s\": %s", command_file.c_str(), strerror(errno)); |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 500 | android::base::WriteStringToFd("-1\n", status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 501 | return 1; |
| 502 | } |
| 503 | bootloader_message boot = {}; |
| 504 | strlcpy(boot.command, "boot-recovery", sizeof(boot.command)); |
| 505 | strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery)); |
| 506 | strlcat(boot.recovery, content.c_str(), sizeof(boot.recovery)); |
| 507 | if (write_bootloader_message(&boot) != 0) { |
| 508 | ALOGE("failed to set bootloader message"); |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 509 | android::base::WriteStringToFd("-1\n", status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 510 | return 1; |
| 511 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 512 | android::base::WriteStringToFd("100\n", status_fd); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 513 | return 0; |
| 514 | } |
| 515 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 516 | static void usage(const char* exename) { |
| 517 | fprintf(stderr, "Usage of %s:\n", exename); |
| 518 | fprintf(stderr, "%s [<package_path> <map_file>] Uncrypt ota package.\n", exename); |
| 519 | fprintf(stderr, "%s --reboot Clear BCB data and reboot to recovery.\n", exename); |
| 520 | fprintf(stderr, "%s --clear-bcb Clear BCB data in misc partition.\n", exename); |
| 521 | fprintf(stderr, "%s --setup-bcb Setup BCB data by command file.\n", exename); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | int main(int argc, char** argv) { |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 525 | if (argc == 2) { |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 526 | if (strcmp(argv[1], "--reboot") == 0) { |
| 527 | reboot_to_recovery(); |
| 528 | } else if (strcmp(argv[1], "--clear-bcb") == 0) { |
| 529 | return clear_bcb(STATUS_FILE); |
| 530 | } else if (strcmp(argv[1], "--setup-bcb") == 0) { |
| 531 | return setup_bcb(COMMAND_FILE, STATUS_FILE); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 532 | } |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 533 | } else if (argc == 1 || argc == 3) { |
| 534 | const char* input_path = nullptr; |
| 535 | const char* map_file = CACHE_BLOCK_MAP.c_str(); |
Tao Bao | ac6aa7e | 2015-05-29 14:24:02 -0700 | [diff] [blame] | 536 | if (argc == 3) { |
Tao Bao | ac6aa7e | 2015-05-29 14:24:02 -0700 | [diff] [blame] | 537 | input_path = argv[1]; |
| 538 | map_file = argv[2]; |
Tao Bao | ac6aa7e | 2015-05-29 14:24:02 -0700 | [diff] [blame] | 539 | } |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 540 | return uncrypt_wrapper(input_path, map_file, STATUS_FILE); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 541 | } |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 542 | usage(argv[0]); |
| 543 | return 2; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 544 | } |