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 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 42 | /** |
| 43 | * In addition to the uncrypt work, uncrypt also takes care of setting and |
| 44 | * clearing the bootloader control block (BCB) at /misc partition. |
| 45 | * |
| 46 | * uncrypt is triggered as init services on demand. It uses socket to |
| 47 | * communicate with its caller (i.e. system_server). The socket is managed by |
| 48 | * init (i.e. created prior to the service starts, and destroyed when uncrypt |
| 49 | * exits). |
| 50 | * |
| 51 | * Below is the uncrypt protocol. |
| 52 | * |
| 53 | * a. caller b. init c. uncrypt |
| 54 | * --------------- ------------ -------------- |
| 55 | * a1. ctl.start: |
| 56 | * setup-bcb / |
| 57 | * clear-bcb / |
| 58 | * uncrypt |
| 59 | * |
| 60 | * b2. create socket at |
| 61 | * /dev/socket/uncrypt |
| 62 | * |
| 63 | * c3. listen and accept |
| 64 | * |
| 65 | * a4. send a 4-byte int |
| 66 | * (message length) |
| 67 | * c5. receive message length |
| 68 | * a6. send message |
| 69 | * c7. receive message |
| 70 | * c8. <do the work; may send |
| 71 | * the progress> |
| 72 | * a9. <may handle progress> |
| 73 | * c10. <upon finishing> |
| 74 | * send "100" or "-1" |
| 75 | * |
| 76 | * a11. receive status code |
| 77 | * a12. send a 4-byte int to |
| 78 | * ack the receive of the |
| 79 | * final status code |
| 80 | * c13. receive and exit |
| 81 | * |
| 82 | * b14. destroy the socket |
| 83 | * |
| 84 | * Note that a12 and c13 are necessary to ensure a11 happens before the socket |
| 85 | * gets destroyed in b14. |
| 86 | */ |
| 87 | |
| 88 | #include <arpa/inet.h> |
Elliott Hughes | d4d4c24 | 2014-12-29 12:46:43 -0800 | [diff] [blame] | 89 | #include <errno.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 90 | #include <fcntl.h> |
Tao Bao | b8df5fb | 2015-12-08 22:47:25 -0800 | [diff] [blame] | 91 | #include <inttypes.h> |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 92 | #include <libgen.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 93 | #include <linux/fs.h> |
| 94 | #include <stdarg.h> |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 95 | #include <stdio.h> |
| 96 | #include <stdlib.h> |
Elliott Hughes | cd3c55a | 2015-01-29 20:50:08 -0800 | [diff] [blame] | 97 | #include <string.h> |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 98 | #include <sys/mman.h> |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 99 | #include <sys/socket.h> |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 100 | #include <sys/stat.h> |
| 101 | #include <sys/types.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 102 | #include <unistd.h> |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 103 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 104 | #include <algorithm> |
Tao Bao | c754792 | 2015-08-06 18:35:05 -0700 | [diff] [blame] | 105 | #include <memory> |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 106 | #include <vector> |
Tao Bao | c754792 | 2015-08-06 18:35:05 -0700 | [diff] [blame] | 107 | |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 108 | #include <android-base/file.h> |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 109 | #include <android-base/logging.h> |
Elliott Hughes | 91e3aee | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 110 | #include <android-base/properties.h> |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 111 | #include <android-base/stringprintf.h> |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 112 | #include <android-base/strings.h> |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 113 | #include <android-base/unique_fd.h> |
Yabin Cui | 2f272c0 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 114 | #include <bootloader_message/bootloader_message.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 115 | #include <cutils/android_reboot.h> |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 116 | #include <cutils/sockets.h> |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 117 | #include <fs_mgr.h> |
| 118 | |
Tao Bao | 1fc5bf3 | 2017-10-06 07:43:41 -0700 | [diff] [blame] | 119 | #include "otautil/error_code.h" |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 120 | |
Tianjie Xu | bc42603 | 2016-11-11 13:53:25 -0800 | [diff] [blame] | 121 | static constexpr int WINDOW_SIZE = 5; |
| 122 | static constexpr int FIBMAP_RETRY_LIMIT = 3; |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 123 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 124 | // uncrypt provides three services: SETUP_BCB, CLEAR_BCB and UNCRYPT. |
| 125 | // |
| 126 | // SETUP_BCB and CLEAR_BCB services use socket communication and do not rely |
| 127 | // on /cache partitions. They will handle requests to reboot into recovery |
| 128 | // (for applying updates for non-A/B devices, or factory resets for all |
| 129 | // devices). |
| 130 | // |
| 131 | // UNCRYPT service still needs files on /cache partition (UNCRYPT_PATH_FILE |
| 132 | // and CACHE_BLOCK_MAP). It will be working (and needed) only for non-A/B |
| 133 | // devices, on which /cache partitions always exist. |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 134 | static const std::string CACHE_BLOCK_MAP = "/cache/recovery/block.map"; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 135 | static const std::string UNCRYPT_PATH_FILE = "/cache/recovery/uncrypt_file"; |
Tianjie Xu | e16e799 | 2016-09-09 10:55:44 -0700 | [diff] [blame] | 136 | static const std::string UNCRYPT_STATUS = "/cache/recovery/uncrypt_status"; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 137 | static const std::string UNCRYPT_SOCKET = "uncrypt"; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 138 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 139 | static struct fstab* fstab = nullptr; |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 140 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 141 | 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] | 142 | if (TEMP_FAILURE_RETRY(lseek64(wfd, offset, SEEK_SET)) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 143 | PLOG(ERROR) << "error seeking to offset " << offset; |
Elliott Hughes | 7bad7c4 | 2015-04-28 17:24:24 -0700 | [diff] [blame] | 144 | return -1; |
| 145 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 146 | if (!android::base::WriteFully(wfd, buffer, size)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 147 | PLOG(ERROR) << "error writing offset " << offset; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 148 | return -1; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 149 | } |
| 150 | return 0; |
| 151 | } |
| 152 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 153 | static void add_block_to_ranges(std::vector<int>& ranges, int new_block) { |
| 154 | if (!ranges.empty() && new_block == ranges.back()) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 155 | // If the new block comes immediately after the current range, |
| 156 | // all we have to do is extend the current range. |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 157 | ++ranges.back(); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 158 | } else { |
| 159 | // We need to start a new range. |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 160 | ranges.push_back(new_block); |
| 161 | ranges.push_back(new_block + 1); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 165 | static struct fstab* read_fstab() { |
Bowgo Tsai | d13b6cf | 2017-03-10 16:00:40 +0800 | [diff] [blame] | 166 | fstab = fs_mgr_read_fstab_default(); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 167 | if (!fstab) { |
Bowgo Tsai | d13b6cf | 2017-03-10 16:00:40 +0800 | [diff] [blame] | 168 | LOG(ERROR) << "failed to read default fstab"; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 169 | return NULL; |
| 170 | } |
| 171 | |
Doug Zongker | 2efc9d9 | 2014-08-18 15:55:28 -0700 | [diff] [blame] | 172 | return fstab; |
| 173 | } |
| 174 | |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 175 | static const char* find_block_device(const char* path, bool* encryptable, |
| 176 | bool* encrypted, bool* f2fs_fs) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 177 | // Look for a volume whose mount point is the prefix of path and |
| 178 | // return its block device. Set encrypted if it's currently |
| 179 | // encrypted. |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 180 | |
| 181 | // ensure f2fs_fs is set to false first. |
| 182 | *f2fs_fs = false; |
| 183 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 184 | for (int i = 0; i < fstab->num_entries; ++i) { |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 185 | struct fstab_rec* v = &fstab->recs[i]; |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 186 | if (!v->mount_point) { |
| 187 | continue; |
| 188 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 189 | int len = strlen(v->mount_point); |
| 190 | if (strncmp(path, v->mount_point, len) == 0 && |
| 191 | (path[len] == '/' || path[len] == 0)) { |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 192 | *encrypted = false; |
| 193 | *encryptable = false; |
Tao Bao | 7cf50c6 | 2015-07-16 20:04:13 -0700 | [diff] [blame] | 194 | if (fs_mgr_is_encryptable(v) || fs_mgr_is_file_encrypted(v)) { |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 195 | *encryptable = true; |
Elliott Hughes | 91e3aee | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 196 | if (android::base::GetProperty("ro.crypto.state", "") == "encrypted") { |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 197 | *encrypted = true; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 198 | } |
| 199 | } |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 200 | if (strcmp(v->fs_type, "f2fs") == 0) { |
| 201 | *f2fs_fs = true; |
| 202 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 203 | return v->blk_device; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | return NULL; |
| 208 | } |
| 209 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 210 | static bool write_status_to_socket(int status, int socket) { |
Tianjie Xu | 28c1e5d | 2016-06-30 15:31:51 -0700 | [diff] [blame] | 211 | // If socket equals -1, uncrypt is in debug mode without socket communication. |
| 212 | // Skip writing and return success. |
| 213 | if (socket == -1) { |
| 214 | return true; |
| 215 | } |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 216 | int status_out = htonl(status); |
| 217 | return android::base::WriteFully(socket, &status_out, sizeof(int)); |
| 218 | } |
| 219 | |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 220 | // Parse uncrypt_file to find the update package name. |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 221 | static bool find_uncrypt_package(const std::string& uncrypt_path_file, std::string* package_name) { |
| 222 | CHECK(package_name != nullptr); |
| 223 | std::string uncrypt_path; |
| 224 | if (!android::base::ReadFileToString(uncrypt_path_file, &uncrypt_path)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 225 | PLOG(ERROR) << "failed to open \"" << uncrypt_path_file << "\""; |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 226 | return false; |
Maxim Siniavine | e7b2888 | 2014-02-13 15:48:53 -0800 | [diff] [blame] | 227 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 228 | |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 229 | // Remove the trailing '\n' if present. |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 230 | *package_name = android::base::Trim(uncrypt_path); |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 231 | return true; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 232 | } |
| 233 | |
Tianjie Xu | bc42603 | 2016-11-11 13:53:25 -0800 | [diff] [blame] | 234 | static int retry_fibmap(const int fd, const char* name, int* block, const int head_block) { |
| 235 | CHECK(block != nullptr); |
| 236 | for (size_t i = 0; i < FIBMAP_RETRY_LIMIT; i++) { |
| 237 | if (fsync(fd) == -1) { |
| 238 | PLOG(ERROR) << "failed to fsync \"" << name << "\""; |
| 239 | return kUncryptFileSyncError; |
| 240 | } |
| 241 | if (ioctl(fd, FIBMAP, block) != 0) { |
| 242 | PLOG(ERROR) << "failed to find block " << head_block; |
| 243 | return kUncryptIoctlError; |
| 244 | } |
| 245 | if (*block != 0) { |
| 246 | return kUncryptNoError; |
| 247 | } |
| 248 | sleep(1); |
| 249 | } |
| 250 | LOG(ERROR) << "fibmap of " << head_block << "always returns 0"; |
| 251 | return kUncryptIoctlError; |
| 252 | } |
| 253 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 254 | static int produce_block_map(const char* path, const char* map_file, const char* blk_dev, |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 255 | bool encrypted, bool f2fs_fs, int socket) { |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 256 | std::string err; |
| 257 | if (!android::base::RemoveFileIfExists(map_file, &err)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 258 | LOG(ERROR) << "failed to remove the existing map file " << map_file << ": " << err; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 259 | return kUncryptFileRemoveError; |
Sungmin Choi | a72512c | 2014-12-10 21:57:09 +0900 | [diff] [blame] | 260 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 261 | std::string tmp_map_file = std::string(map_file) + ".tmp"; |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 262 | android::base::unique_fd mapfd(open(tmp_map_file.c_str(), |
| 263 | O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR)); |
| 264 | if (mapfd == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 265 | PLOG(ERROR) << "failed to open " << tmp_map_file; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 266 | return kUncryptFileOpenError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 267 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 268 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 269 | // Make sure we can write to the socket. |
| 270 | if (!write_status_to_socket(0, socket)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 271 | LOG(ERROR) << "failed to write to socket " << socket; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 272 | return kUncryptSocketWriteError; |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 273 | } |
| 274 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 275 | struct stat sb; |
Tao Bao | c754792 | 2015-08-06 18:35:05 -0700 | [diff] [blame] | 276 | if (stat(path, &sb) != 0) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 277 | LOG(ERROR) << "failed to stat " << path; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 278 | return kUncryptFileStatError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 279 | } |
| 280 | |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 281 | LOG(INFO) << " block size: " << sb.st_blksize << " bytes"; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 282 | |
| 283 | int blocks = ((sb.st_size-1) / sb.st_blksize) + 1; |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 284 | LOG(INFO) << " file size: " << sb.st_size << " bytes, " << blocks << " blocks"; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 285 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 286 | std::vector<int> ranges; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 287 | |
Chih-Hung Hsieh | 54a2747 | 2016-04-18 11:30:55 -0700 | [diff] [blame] | 288 | std::string s = android::base::StringPrintf("%s\n%" PRId64 " %" PRId64 "\n", |
| 289 | blk_dev, static_cast<int64_t>(sb.st_size), |
| 290 | static_cast<int64_t>(sb.st_blksize)); |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 291 | if (!android::base::WriteStringToFd(s, mapfd)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 292 | PLOG(ERROR) << "failed to write " << tmp_map_file; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 293 | return kUncryptWriteError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 294 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 295 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 296 | std::vector<std::vector<unsigned char>> buffers; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 297 | if (encrypted) { |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 298 | buffers.resize(WINDOW_SIZE, std::vector<unsigned char>(sb.st_blksize)); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 299 | } |
| 300 | int head_block = 0; |
| 301 | int head = 0, tail = 0; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 302 | |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 303 | android::base::unique_fd fd(open(path, O_RDONLY)); |
| 304 | if (fd == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 305 | PLOG(ERROR) << "failed to open " << path << " for reading"; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 306 | return kUncryptFileOpenError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 307 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 308 | |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 309 | android::base::unique_fd wfd; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 310 | if (encrypted) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 311 | wfd.reset(open(blk_dev, O_WRONLY)); |
| 312 | if (wfd == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 313 | PLOG(ERROR) << "failed to open " << blk_dev << " for writing"; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 314 | return kUncryptBlockOpenError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 318 | // F2FS-specific ioctl |
| 319 | // It requires the below kernel commit merged in v4.16-rc1. |
| 320 | // 1ad71a27124c ("f2fs: add an ioctl to disable GC for specific file") |
| 321 | // In android-4.4, |
| 322 | // 56ee1e817908 ("f2fs: updates on v4.16-rc1") |
| 323 | // In android-4.9, |
| 324 | // 2f17e34672a8 ("f2fs: updates on v4.16-rc1") |
| 325 | // In android-4.14, |
| 326 | // ce767d9a55bc ("f2fs: updates on v4.16-rc1") |
| 327 | #ifndef F2FS_IOC_SET_PIN_FILE |
| 328 | #ifndef F2FS_IOCTL_MAGIC |
| 329 | #define F2FS_IOCTL_MAGIC 0xf5 |
| 330 | #endif |
| 331 | #define F2FS_IOC_SET_PIN_FILE _IOW(F2FS_IOCTL_MAGIC, 13, __u32) |
Devin Kim | 29472c7 | 2018-09-12 08:42:49 -0700 | [diff] [blame] | 332 | #define F2FS_IOC_GET_PIN_FILE _IOR(F2FS_IOCTL_MAGIC, 14, __u32) |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 333 | #endif |
| 334 | if (f2fs_fs) { |
Jaegeuk Kim | 2669da0 | 2018-07-23 15:38:35 -0700 | [diff] [blame] | 335 | __u32 set = 1; |
| 336 | int error = ioctl(fd, F2FS_IOC_SET_PIN_FILE, &set); |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 337 | // Don't break the old kernels which don't support it. |
| 338 | if (error && errno != ENOTTY && errno != ENOTSUP) { |
| 339 | PLOG(ERROR) << "Failed to set pin_file for f2fs: " << path << " on " << blk_dev; |
| 340 | return kUncryptIoctlError; |
| 341 | } |
| 342 | } |
| 343 | |
Tao Bao | b8df5fb | 2015-12-08 22:47:25 -0800 | [diff] [blame] | 344 | off64_t pos = 0; |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 345 | int last_progress = 0; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 346 | while (pos < sb.st_size) { |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 347 | // Update the status file, progress must be between [0, 99]. |
| 348 | int progress = static_cast<int>(100 * (double(pos) / double(sb.st_size))); |
| 349 | if (progress > last_progress) { |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 350 | last_progress = progress; |
| 351 | write_status_to_socket(progress, socket); |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 352 | } |
| 353 | |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 354 | if ((tail+1) % WINDOW_SIZE == head) { |
| 355 | // write out head buffer |
| 356 | int block = head_block; |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 357 | if (ioctl(fd, FIBMAP, &block) != 0) { |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 358 | PLOG(ERROR) << "failed to find block " << head_block; |
| 359 | return kUncryptIoctlError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 360 | } |
Tianjie Xu | bc42603 | 2016-11-11 13:53:25 -0800 | [diff] [blame] | 361 | |
| 362 | if (block == 0) { |
| 363 | LOG(ERROR) << "failed to find block " << head_block << ", retrying"; |
| 364 | int error = retry_fibmap(fd, path, &block, head_block); |
| 365 | if (error != kUncryptNoError) { |
| 366 | return error; |
| 367 | } |
| 368 | } |
| 369 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 370 | add_block_to_ranges(ranges, block); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 371 | if (encrypted) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 372 | if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd, |
| 373 | static_cast<off64_t>(sb.st_blksize) * block) != 0) { |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 374 | return kUncryptWriteError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | head = (head + 1) % WINDOW_SIZE; |
| 378 | ++head_block; |
| 379 | } |
| 380 | |
| 381 | // read next block to tail |
| 382 | if (encrypted) { |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 383 | size_t to_read = static_cast<size_t>( |
| 384 | 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] | 385 | if (!android::base::ReadFully(fd, buffers[tail].data(), to_read)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 386 | PLOG(ERROR) << "failed to read " << path; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 387 | return kUncryptReadError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 388 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 389 | pos += to_read; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 390 | } else { |
| 391 | // If we're not encrypting; we don't need to actually read |
| 392 | // anything, just skip pos forward as if we'd read a |
| 393 | // block. |
| 394 | pos += sb.st_blksize; |
| 395 | } |
| 396 | tail = (tail+1) % WINDOW_SIZE; |
| 397 | } |
| 398 | |
| 399 | while (head != tail) { |
| 400 | // write out head buffer |
| 401 | int block = head_block; |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 402 | if (ioctl(fd, FIBMAP, &block) != 0) { |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 403 | PLOG(ERROR) << "failed to find block " << head_block; |
| 404 | return kUncryptIoctlError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 405 | } |
Tianjie Xu | bc42603 | 2016-11-11 13:53:25 -0800 | [diff] [blame] | 406 | |
| 407 | if (block == 0) { |
| 408 | LOG(ERROR) << "failed to find block " << head_block << ", retrying"; |
| 409 | int error = retry_fibmap(fd, path, &block, head_block); |
| 410 | if (error != kUncryptNoError) { |
| 411 | return error; |
| 412 | } |
| 413 | } |
| 414 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 415 | add_block_to_ranges(ranges, block); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 416 | if (encrypted) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 417 | if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd, |
| 418 | static_cast<off64_t>(sb.st_blksize) * block) != 0) { |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 419 | return kUncryptWriteError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 420 | } |
| 421 | } |
| 422 | head = (head + 1) % WINDOW_SIZE; |
| 423 | ++head_block; |
| 424 | } |
| 425 | |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 426 | if (!android::base::WriteStringToFd( |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 427 | android::base::StringPrintf("%zu\n", ranges.size() / 2), mapfd)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 428 | PLOG(ERROR) << "failed to write " << tmp_map_file; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 429 | return kUncryptWriteError; |
Tao Bao | fb4ccef | 2015-05-04 10:10:13 -0700 | [diff] [blame] | 430 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 431 | for (size_t i = 0; i < ranges.size(); i += 2) { |
| 432 | if (!android::base::WriteStringToFd( |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 433 | android::base::StringPrintf("%d %d\n", ranges[i], ranges[i+1]), mapfd)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 434 | PLOG(ERROR) << "failed to write " << tmp_map_file; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 435 | return kUncryptWriteError; |
Tao Bao | fb4ccef | 2015-05-04 10:10:13 -0700 | [diff] [blame] | 436 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 437 | } |
| 438 | |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 439 | if (fsync(mapfd) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 440 | PLOG(ERROR) << "failed to fsync \"" << tmp_map_file << "\""; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 441 | return kUncryptFileSyncError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 442 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 443 | if (close(mapfd.release()) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 444 | PLOG(ERROR) << "failed to close " << tmp_map_file; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 445 | return kUncryptFileCloseError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 446 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 447 | |
| 448 | if (encrypted) { |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 449 | if (fsync(wfd) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 450 | PLOG(ERROR) << "failed to fsync \"" << blk_dev << "\""; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 451 | return kUncryptFileSyncError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 452 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 453 | if (close(wfd.release()) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 454 | PLOG(ERROR) << "failed to close " << blk_dev; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 455 | return kUncryptFileCloseError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 456 | } |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | if (rename(tmp_map_file.c_str(), map_file) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 460 | PLOG(ERROR) << "failed to rename " << tmp_map_file << " to " << map_file; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 461 | return kUncryptFileRenameError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 462 | } |
| 463 | // Sync dir to make rename() result written to disk. |
| 464 | std::string file_name = map_file; |
| 465 | std::string dir_name = dirname(&file_name[0]); |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 466 | android::base::unique_fd dfd(open(dir_name.c_str(), O_RDONLY | O_DIRECTORY)); |
| 467 | if (dfd == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 468 | PLOG(ERROR) << "failed to open dir " << dir_name; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 469 | return kUncryptFileOpenError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 470 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 471 | if (fsync(dfd) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 472 | PLOG(ERROR) << "failed to fsync " << dir_name; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 473 | return kUncryptFileSyncError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 474 | } |
Elliott Hughes | bcabd09 | 2016-03-22 20:19:22 -0700 | [diff] [blame] | 475 | if (close(dfd.release()) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 476 | PLOG(ERROR) << "failed to close " << dir_name; |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 477 | return kUncryptFileCloseError; |
Yabin Cui | 25dd038 | 2016-02-01 11:40:37 -0800 | [diff] [blame] | 478 | } |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 479 | return 0; |
| 480 | } |
| 481 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 482 | static int uncrypt(const char* input_path, const char* map_file, const int socket) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 483 | LOG(INFO) << "update package is \"" << input_path << "\""; |
Doug Zongker | f449db2 | 2014-08-26 09:15:08 -0700 | [diff] [blame] | 484 | |
Tianjie Xu | 8b8e23d | 2017-07-27 11:42:17 -0700 | [diff] [blame] | 485 | // Turn the name of the file we're supposed to convert into an absolute path, so we can find |
| 486 | // what filesystem it's on. |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 487 | char path[PATH_MAX+1]; |
Tianjie Xu | 8b8e23d | 2017-07-27 11:42:17 -0700 | [diff] [blame] | 488 | if (realpath(input_path, path) == nullptr) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 489 | PLOG(ERROR) << "failed to convert \"" << input_path << "\" to absolute path"; |
Tianjie Xu | 8b8e23d | 2017-07-27 11:42:17 -0700 | [diff] [blame] | 490 | return kUncryptRealpathFindError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 491 | } |
| 492 | |
Tao Bao | 381f455 | 2015-05-05 18:36:45 -0700 | [diff] [blame] | 493 | bool encryptable; |
| 494 | bool encrypted; |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 495 | bool f2fs_fs; |
| 496 | const char* blk_dev = find_block_device(path, &encryptable, &encrypted, &f2fs_fs); |
Tianjie Xu | 8b8e23d | 2017-07-27 11:42:17 -0700 | [diff] [blame] | 497 | if (blk_dev == nullptr) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 498 | LOG(ERROR) << "failed to find block device for " << path; |
Tianjie Xu | 8b8e23d | 2017-07-27 11:42:17 -0700 | [diff] [blame] | 499 | return kUncryptBlockDeviceFindError; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | // If the filesystem it's on isn't encrypted, we only produce the |
| 503 | // block map, we don't rewrite the file contents (it would be |
| 504 | // pointless to do so). |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 505 | LOG(INFO) << "encryptable: " << (encryptable ? "yes" : "no"); |
| 506 | LOG(INFO) << " encrypted: " << (encrypted ? "yes" : "no"); |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 507 | |
Doug Zongker | 574443d | 2014-09-05 08:22:12 -0700 | [diff] [blame] | 508 | // Recovery supports installing packages from 3 paths: /cache, |
| 509 | // /data, and /sdcard. (On a particular device, other locations |
| 510 | // may work, but those are three we actually expect.) |
| 511 | // |
| 512 | // On /data we want to convert the file to a block map so that we |
| 513 | // can read the package without mounting the partition. On /cache |
| 514 | // and /sdcard we leave the file alone. |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 515 | if (strncmp(path, "/data/", 6) == 0) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 516 | LOG(INFO) << "writing block map " << map_file; |
Jaegeuk Kim | b6e6ee7 | 2017-12-08 13:19:23 -0800 | [diff] [blame] | 517 | return produce_block_map(path, map_file, blk_dev, encrypted, f2fs_fs, socket); |
Tao Bao | 383b00d | 2015-05-21 16:44:44 -0700 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
Tianjie Xu | 68fc81e | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 523 | static void log_uncrypt_error_code(UncryptErrorCode error_code) { |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 524 | if (!android::base::WriteStringToFile(android::base::StringPrintf( |
Tianjie Xu | 68fc81e | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 525 | "uncrypt_error: %d\n", error_code), UNCRYPT_STATUS)) { |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 526 | PLOG(WARNING) << "failed to write to " << UNCRYPT_STATUS; |
| 527 | } |
Tianjie Xu | 68fc81e | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | static bool uncrypt_wrapper(const char* input_path, const char* map_file, const int socket) { |
| 531 | // Initialize the uncrypt error to kUncryptErrorPlaceholder. |
| 532 | log_uncrypt_error_code(kUncryptErrorPlaceholder); |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 533 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 534 | std::string package; |
| 535 | if (input_path == nullptr) { |
| 536 | if (!find_uncrypt_package(UNCRYPT_PATH_FILE, &package)) { |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 537 | write_status_to_socket(-1, socket); |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 538 | // Overwrite the error message. |
Tianjie Xu | 68fc81e | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 539 | log_uncrypt_error_code(kUncryptPackageMissingError); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 540 | return false; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 541 | } |
| 542 | input_path = package.c_str(); |
| 543 | } |
| 544 | CHECK(map_file != nullptr); |
Tianjie Xu | e16e799 | 2016-09-09 10:55:44 -0700 | [diff] [blame] | 545 | |
Tianjie Xu | e16e799 | 2016-09-09 10:55:44 -0700 | [diff] [blame] | 546 | auto start = std::chrono::system_clock::now(); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 547 | int status = uncrypt(input_path, map_file, socket); |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 548 | std::chrono::duration<double> duration = std::chrono::system_clock::now() - start; |
| 549 | int count = static_cast<int>(duration.count()); |
| 550 | |
| 551 | std::string uncrypt_message = android::base::StringPrintf("uncrypt_time: %d\n", count); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 552 | if (status != 0) { |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 553 | // Log the time cost and error code if uncrypt fails. |
| 554 | uncrypt_message += android::base::StringPrintf("uncrypt_error: %d\n", status); |
| 555 | if (!android::base::WriteStringToFile(uncrypt_message, UNCRYPT_STATUS)) { |
| 556 | PLOG(WARNING) << "failed to write to " << UNCRYPT_STATUS; |
| 557 | } |
| 558 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 559 | write_status_to_socket(-1, socket); |
| 560 | return false; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 561 | } |
Tianjie Xu | e16e799 | 2016-09-09 10:55:44 -0700 | [diff] [blame] | 562 | |
Tianjie Xu | da44cf1 | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 563 | if (!android::base::WriteStringToFile(uncrypt_message, UNCRYPT_STATUS)) { |
Tianjie Xu | e16e799 | 2016-09-09 10:55:44 -0700 | [diff] [blame] | 564 | PLOG(WARNING) << "failed to write to " << UNCRYPT_STATUS; |
| 565 | } |
| 566 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 567 | write_status_to_socket(100, socket); |
Tianjie Xu | e16e799 | 2016-09-09 10:55:44 -0700 | [diff] [blame] | 568 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 569 | return true; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 570 | } |
| 571 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 572 | static bool clear_bcb(const int socket) { |
Yabin Cui | a58a6db | 2016-04-06 15:52:18 -0700 | [diff] [blame] | 573 | std::string err; |
| 574 | if (!clear_bootloader_message(&err)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 575 | LOG(ERROR) << "failed to clear bootloader message: " << err; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 576 | write_status_to_socket(-1, socket); |
| 577 | return false; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 578 | } |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 579 | write_status_to_socket(100, socket); |
| 580 | return true; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 581 | } |
| 582 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 583 | static bool setup_bcb(const int socket) { |
| 584 | // c5. receive message length |
| 585 | int length; |
| 586 | if (!android::base::ReadFully(socket, &length, 4)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 587 | PLOG(ERROR) << "failed to read the length"; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 588 | return false; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 589 | } |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 590 | length = ntohl(length); |
| 591 | |
| 592 | // c7. receive message |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 593 | std::string content; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 594 | content.resize(length); |
| 595 | if (!android::base::ReadFully(socket, &content[0], length)) { |
Tao Bao | 1033408 | 2016-12-12 17:10:20 -0800 | [diff] [blame] | 596 | PLOG(ERROR) << "failed to read the message"; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 597 | return false; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 598 | } |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 599 | LOG(INFO) << " received command: [" << content << "] (" << content.size() << ")"; |
Yabin Cui | 6faf026 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 600 | std::vector<std::string> options = android::base::Split(content, "\n"); |
| 601 | std::string wipe_package; |
| 602 | for (auto& option : options) { |
| 603 | if (android::base::StartsWith(option, "--wipe_package=")) { |
| 604 | std::string path = option.substr(strlen("--wipe_package=")); |
| 605 | if (!android::base::ReadFileToString(path, &wipe_package)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 606 | PLOG(ERROR) << "failed to read " << path; |
Yabin Cui | 6faf026 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 607 | return false; |
| 608 | } |
| 609 | option = android::base::StringPrintf("--wipe_package_size=%zu", wipe_package.size()); |
| 610 | } |
| 611 | } |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 612 | |
| 613 | // c8. setup the bcb command |
Yabin Cui | a58a6db | 2016-04-06 15:52:18 -0700 | [diff] [blame] | 614 | std::string err; |
Yabin Cui | 6faf026 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 615 | if (!write_bootloader_message(options, &err)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 616 | LOG(ERROR) << "failed to set bootloader message: " << err; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 617 | write_status_to_socket(-1, socket); |
| 618 | return false; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 619 | } |
Yabin Cui | 6faf026 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 620 | if (!wipe_package.empty() && !write_wipe_package(wipe_package, &err)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 621 | PLOG(ERROR) << "failed to set wipe package: " << err; |
Yabin Cui | 6faf026 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 622 | write_status_to_socket(-1, socket); |
| 623 | return false; |
| 624 | } |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 625 | // c10. send "100" status |
| 626 | write_status_to_socket(100, socket); |
| 627 | return true; |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 628 | } |
| 629 | |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 630 | static void usage(const char* exename) { |
| 631 | fprintf(stderr, "Usage of %s:\n", exename); |
| 632 | fprintf(stderr, "%s [<package_path> <map_file>] Uncrypt ota package.\n", exename); |
Yabin Cui | 2d46da5 | 2016-01-26 16:50:15 -0800 | [diff] [blame] | 633 | fprintf(stderr, "%s --clear-bcb Clear BCB data in misc partition.\n", exename); |
| 634 | 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] | 635 | } |
| 636 | |
| 637 | int main(int argc, char** argv) { |
Tianjie Xu | 28c1e5d | 2016-06-30 15:31:51 -0700 | [diff] [blame] | 638 | enum { UNCRYPT, SETUP_BCB, CLEAR_BCB, UNCRYPT_DEBUG } action; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 639 | const char* input_path = nullptr; |
| 640 | const char* map_file = CACHE_BLOCK_MAP.c_str(); |
| 641 | |
| 642 | if (argc == 2 && strcmp(argv[1], "--clear-bcb") == 0) { |
| 643 | action = CLEAR_BCB; |
| 644 | } else if (argc == 2 && strcmp(argv[1], "--setup-bcb") == 0) { |
| 645 | action = SETUP_BCB; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 646 | } else if (argc == 1) { |
| 647 | action = UNCRYPT; |
| 648 | } else if (argc == 3) { |
| 649 | input_path = argv[1]; |
| 650 | map_file = argv[2]; |
Tianjie Xu | 28c1e5d | 2016-06-30 15:31:51 -0700 | [diff] [blame] | 651 | action = UNCRYPT_DEBUG; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 652 | } else { |
| 653 | usage(argv[0]); |
| 654 | return 2; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 655 | } |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 656 | |
| 657 | if ((fstab = read_fstab()) == nullptr) { |
Tianjie Xu | 68fc81e | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 658 | log_uncrypt_error_code(kUncryptFstabReadError); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 659 | return 1; |
| 660 | } |
| 661 | |
Tianjie Xu | 28c1e5d | 2016-06-30 15:31:51 -0700 | [diff] [blame] | 662 | if (action == UNCRYPT_DEBUG) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 663 | LOG(INFO) << "uncrypt called in debug mode, skip socket communication"; |
Tianjie Xu | 28c1e5d | 2016-06-30 15:31:51 -0700 | [diff] [blame] | 664 | bool success = uncrypt_wrapper(input_path, map_file, -1); |
| 665 | if (success) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 666 | LOG(INFO) << "uncrypt succeeded"; |
Tianjie Xu | 28c1e5d | 2016-06-30 15:31:51 -0700 | [diff] [blame] | 667 | } else{ |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 668 | LOG(INFO) << "uncrypt failed"; |
Tianjie Xu | 28c1e5d | 2016-06-30 15:31:51 -0700 | [diff] [blame] | 669 | } |
| 670 | return success ? 0 : 1; |
| 671 | } |
| 672 | |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 673 | // c3. The socket is created by init when starting the service. uncrypt |
| 674 | // will use the socket to communicate with its caller. |
Elliott Hughes | d6ac686 | 2016-03-29 12:44:09 -0700 | [diff] [blame] | 675 | android::base::unique_fd service_socket(android_get_control_socket(UNCRYPT_SOCKET.c_str())); |
| 676 | if (service_socket == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 677 | PLOG(ERROR) << "failed to open socket \"" << UNCRYPT_SOCKET << "\""; |
Tianjie Xu | 68fc81e | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 678 | log_uncrypt_error_code(kUncryptSocketOpenError); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 679 | return 1; |
| 680 | } |
Elliott Hughes | d6ac686 | 2016-03-29 12:44:09 -0700 | [diff] [blame] | 681 | fcntl(service_socket, F_SETFD, FD_CLOEXEC); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 682 | |
Elliott Hughes | d6ac686 | 2016-03-29 12:44:09 -0700 | [diff] [blame] | 683 | if (listen(service_socket, 1) == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 684 | PLOG(ERROR) << "failed to listen on socket " << service_socket.get(); |
Tianjie Xu | 68fc81e | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 685 | log_uncrypt_error_code(kUncryptSocketListenError); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 686 | return 1; |
| 687 | } |
| 688 | |
Elliott Hughes | d6ac686 | 2016-03-29 12:44:09 -0700 | [diff] [blame] | 689 | android::base::unique_fd socket_fd(accept4(service_socket, nullptr, nullptr, SOCK_CLOEXEC)); |
| 690 | if (socket_fd == -1) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 691 | PLOG(ERROR) << "failed to accept on socket " << service_socket.get(); |
Tianjie Xu | 68fc81e | 2016-09-24 15:31:34 -0700 | [diff] [blame] | 692 | log_uncrypt_error_code(kUncryptSocketAcceptError); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 693 | return 1; |
| 694 | } |
| 695 | |
| 696 | bool success = false; |
| 697 | switch (action) { |
| 698 | case UNCRYPT: |
Elliott Hughes | d6ac686 | 2016-03-29 12:44:09 -0700 | [diff] [blame] | 699 | success = uncrypt_wrapper(input_path, map_file, socket_fd); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 700 | break; |
| 701 | case SETUP_BCB: |
Elliott Hughes | d6ac686 | 2016-03-29 12:44:09 -0700 | [diff] [blame] | 702 | success = setup_bcb(socket_fd); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 703 | break; |
| 704 | case CLEAR_BCB: |
Elliott Hughes | d6ac686 | 2016-03-29 12:44:09 -0700 | [diff] [blame] | 705 | success = clear_bcb(socket_fd); |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 706 | break; |
| 707 | default: // Should never happen. |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 708 | LOG(ERROR) << "Invalid uncrypt action code: " << action; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 709 | return 1; |
| 710 | } |
| 711 | |
| 712 | // c13. Read a 4-byte code from the client before uncrypt exits. This is to |
| 713 | // ensure the client to receive the last status code before the socket gets |
| 714 | // destroyed. |
| 715 | int code; |
Elliott Hughes | d6ac686 | 2016-03-29 12:44:09 -0700 | [diff] [blame] | 716 | if (android::base::ReadFully(socket_fd, &code, 4)) { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 717 | LOG(INFO) << " received " << code << ", exiting now"; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 718 | } else { |
Tianjie Xu | 7477814 | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 719 | PLOG(ERROR) << "failed to read the code"; |
Tao Bao | 3a2bb59 | 2016-02-25 12:38:53 -0800 | [diff] [blame] | 720 | } |
| 721 | return success ? 0 : 1; |
Doug Zongker | 76adfc5 | 2014-01-13 10:04:25 -0800 | [diff] [blame] | 722 | } |