blob: 1fba717f3e71f410b1d4997e55219ebb916d8b64 [file] [log] [blame]
Doug Zongker76adfc52014-01-13 10:04:25 -08001/*
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 Bao3a2bb592016-02-25 12:38:53 -080042/**
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 Hughesd4d4c242014-12-29 12:46:43 -080089#include <errno.h>
Tao Bao75238632015-05-27 14:46:17 -070090#include <fcntl.h>
Tao Baob8df5fb2015-12-08 22:47:25 -080091#include <inttypes.h>
Yabin Cui25dd0382016-02-01 11:40:37 -080092#include <libgen.h>
Tao Bao75238632015-05-27 14:46:17 -070093#include <linux/fs.h>
94#include <stdarg.h>
Doug Zongker76adfc52014-01-13 10:04:25 -080095#include <stdio.h>
96#include <stdlib.h>
Elliott Hughescd3c55a2015-01-29 20:50:08 -080097#include <string.h>
Doug Zongker76adfc52014-01-13 10:04:25 -080098#include <sys/mman.h>
Tao Bao3a2bb592016-02-25 12:38:53 -080099#include <sys/socket.h>
Tao Bao383b00d2015-05-21 16:44:44 -0700100#include <sys/stat.h>
101#include <sys/types.h>
Tao Bao75238632015-05-27 14:46:17 -0700102#include <unistd.h>
Doug Zongker76adfc52014-01-13 10:04:25 -0800103
Yabin Cui25dd0382016-02-01 11:40:37 -0800104#include <algorithm>
Tao Baoc7547922015-08-06 18:35:05 -0700105#include <memory>
Yabin Cui25dd0382016-02-01 11:40:37 -0800106#include <vector>
Tao Baoc7547922015-08-06 18:35:05 -0700107
Elliott Hughes4b166f02015-12-04 15:30:20 -0800108#include <android-base/file.h>
Yabin Cui2d46da52016-01-26 16:50:15 -0800109#include <android-base/logging.h>
Yabin Cui25dd0382016-02-01 11:40:37 -0800110#include <android-base/stringprintf.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -0800111#include <android-base/strings.h>
Elliott Hughesbcabd092016-03-22 20:19:22 -0700112#include <android-base/unique_fd.h>
Yabin Cui2f272c02016-06-24 18:22:02 -0700113#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -0700114#include <cutils/android_reboot.h>
Doug Zongker76adfc52014-01-13 10:04:25 -0800115#include <cutils/properties.h>
Tao Bao3a2bb592016-02-25 12:38:53 -0800116#include <cutils/sockets.h>
Doug Zongker76adfc52014-01-13 10:04:25 -0800117#include <fs_mgr.h>
118
119#define WINDOW_SIZE 5
Tao Bao383b00d2015-05-21 16:44:44 -0700120
Tao Bao3a2bb592016-02-25 12:38:53 -0800121// uncrypt provides three services: SETUP_BCB, CLEAR_BCB and UNCRYPT.
122//
123// SETUP_BCB and CLEAR_BCB services use socket communication and do not rely
124// on /cache partitions. They will handle requests to reboot into recovery
125// (for applying updates for non-A/B devices, or factory resets for all
126// devices).
127//
128// UNCRYPT service still needs files on /cache partition (UNCRYPT_PATH_FILE
129// and CACHE_BLOCK_MAP). It will be working (and needed) only for non-A/B
130// devices, on which /cache partitions always exist.
Yabin Cui2d46da52016-01-26 16:50:15 -0800131static const std::string CACHE_BLOCK_MAP = "/cache/recovery/block.map";
Yabin Cui2d46da52016-01-26 16:50:15 -0800132static const std::string UNCRYPT_PATH_FILE = "/cache/recovery/uncrypt_file";
Tianjie Xue16e7992016-09-09 10:55:44 -0700133static const std::string UNCRYPT_STATUS = "/cache/recovery/uncrypt_status";
Tao Bao3a2bb592016-02-25 12:38:53 -0800134static const std::string UNCRYPT_SOCKET = "uncrypt";
Doug Zongker76adfc52014-01-13 10:04:25 -0800135
Tao Bao3a2bb592016-02-25 12:38:53 -0800136static struct fstab* fstab = nullptr;
Doug Zongker2efc9d92014-08-18 15:55:28 -0700137
Tao Bao381f4552015-05-05 18:36:45 -0700138static int write_at_offset(unsigned char* buffer, size_t size, int wfd, off64_t offset) {
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700139 if (TEMP_FAILURE_RETRY(lseek64(wfd, offset, SEEK_SET)) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700140 PLOG(ERROR) << "error seeking to offset " << offset;
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700141 return -1;
142 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800143 if (!android::base::WriteFully(wfd, buffer, size)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700144 PLOG(ERROR) << "error writing offset " << offset;
Yabin Cui25dd0382016-02-01 11:40:37 -0800145 return -1;
Doug Zongker76adfc52014-01-13 10:04:25 -0800146 }
147 return 0;
148}
149
Yabin Cui25dd0382016-02-01 11:40:37 -0800150static void add_block_to_ranges(std::vector<int>& ranges, int new_block) {
151 if (!ranges.empty() && new_block == ranges.back()) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800152 // If the new block comes immediately after the current range,
153 // all we have to do is extend the current range.
Yabin Cui25dd0382016-02-01 11:40:37 -0800154 ++ranges.back();
Doug Zongker76adfc52014-01-13 10:04:25 -0800155 } else {
156 // We need to start a new range.
Yabin Cui25dd0382016-02-01 11:40:37 -0800157 ranges.push_back(new_block);
158 ranges.push_back(new_block + 1);
Doug Zongker76adfc52014-01-13 10:04:25 -0800159 }
160}
161
Tao Bao381f4552015-05-05 18:36:45 -0700162static struct fstab* read_fstab() {
Doug Zongker2efc9d92014-08-18 15:55:28 -0700163 fstab = NULL;
164
Doug Zongker76adfc52014-01-13 10:04:25 -0800165 // The fstab path is always "/fstab.${ro.hardware}".
166 char fstab_path[PATH_MAX+1] = "/fstab.";
167 if (!property_get("ro.hardware", fstab_path+strlen(fstab_path), "")) {
Tianjie Xu74778142016-08-05 18:00:04 -0700168 LOG(ERROR) << "failed to get ro.hardware";
Doug Zongker76adfc52014-01-13 10:04:25 -0800169 return NULL;
170 }
171
Doug Zongker2efc9d92014-08-18 15:55:28 -0700172 fstab = fs_mgr_read_fstab(fstab_path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800173 if (!fstab) {
Tianjie Xu74778142016-08-05 18:00:04 -0700174 LOG(ERROR) << "failed to read " << fstab_path;
Doug Zongker76adfc52014-01-13 10:04:25 -0800175 return NULL;
176 }
177
Doug Zongker2efc9d92014-08-18 15:55:28 -0700178 return fstab;
179}
180
Tao Bao381f4552015-05-05 18:36:45 -0700181static const char* find_block_device(const char* path, bool* encryptable, bool* encrypted) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800182 // Look for a volume whose mount point is the prefix of path and
183 // return its block device. Set encrypted if it's currently
184 // encrypted.
Tao Bao381f4552015-05-05 18:36:45 -0700185 for (int i = 0; i < fstab->num_entries; ++i) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800186 struct fstab_rec* v = &fstab->recs[i];
Tao Bao381f4552015-05-05 18:36:45 -0700187 if (!v->mount_point) {
188 continue;
189 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800190 int len = strlen(v->mount_point);
191 if (strncmp(path, v->mount_point, len) == 0 &&
192 (path[len] == '/' || path[len] == 0)) {
Tao Bao381f4552015-05-05 18:36:45 -0700193 *encrypted = false;
194 *encryptable = false;
Tao Bao7cf50c62015-07-16 20:04:13 -0700195 if (fs_mgr_is_encryptable(v) || fs_mgr_is_file_encrypted(v)) {
Tao Bao381f4552015-05-05 18:36:45 -0700196 *encryptable = true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800197 char buffer[PROPERTY_VALUE_MAX+1];
198 if (property_get("ro.crypto.state", buffer, "") &&
199 strcmp(buffer, "encrypted") == 0) {
Tao Bao381f4552015-05-05 18:36:45 -0700200 *encrypted = true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800201 }
202 }
203 return v->blk_device;
204 }
205 }
206
207 return NULL;
208}
209
Tao Bao3a2bb592016-02-25 12:38:53 -0800210static bool write_status_to_socket(int status, int socket) {
Tianjie Xu28c1e5d2016-06-30 15:31:51 -0700211 // 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 Bao3a2bb592016-02-25 12:38:53 -0800216 int status_out = htonl(status);
217 return android::base::WriteFully(socket, &status_out, sizeof(int));
218}
219
Tao Bao383b00d2015-05-21 16:44:44 -0700220// Parse uncrypt_file to find the update package name.
Yabin Cui2d46da52016-01-26 16:50:15 -0800221static 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 Xu74778142016-08-05 18:00:04 -0700225 PLOG(ERROR) << "failed to open \"" << uncrypt_path_file << "\"";
Tao Bao383b00d2015-05-21 16:44:44 -0700226 return false;
Maxim Siniavinee7b28882014-02-13 15:48:53 -0800227 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800228
Tao Bao383b00d2015-05-21 16:44:44 -0700229 // Remove the trailing '\n' if present.
Yabin Cui2d46da52016-01-26 16:50:15 -0800230 *package_name = android::base::Trim(uncrypt_path);
Tao Bao383b00d2015-05-21 16:44:44 -0700231 return true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800232}
233
Tao Bao381f4552015-05-05 18:36:45 -0700234static int produce_block_map(const char* path, const char* map_file, const char* blk_dev,
Tao Bao3a2bb592016-02-25 12:38:53 -0800235 bool encrypted, int socket) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800236 std::string err;
237 if (!android::base::RemoveFileIfExists(map_file, &err)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700238 LOG(ERROR) << "failed to remove the existing map file " << map_file << ": " << err;
Sungmin Choia72512c2014-12-10 21:57:09 +0900239 return -1;
240 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800241 std::string tmp_map_file = std::string(map_file) + ".tmp";
Elliott Hughesbcabd092016-03-22 20:19:22 -0700242 android::base::unique_fd mapfd(open(tmp_map_file.c_str(),
243 O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR));
244 if (mapfd == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700245 PLOG(ERROR) << "failed to open " << tmp_map_file;
Yabin Cui25dd0382016-02-01 11:40:37 -0800246 return -1;
247 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800248
Tao Bao3a2bb592016-02-25 12:38:53 -0800249 // Make sure we can write to the socket.
250 if (!write_status_to_socket(0, socket)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700251 LOG(ERROR) << "failed to write to socket " << socket;
Tao Bao383b00d2015-05-21 16:44:44 -0700252 return -1;
253 }
254
Tao Bao381f4552015-05-05 18:36:45 -0700255 struct stat sb;
Tao Baoc7547922015-08-06 18:35:05 -0700256 if (stat(path, &sb) != 0) {
Tianjie Xu74778142016-08-05 18:00:04 -0700257 LOG(ERROR) << "failed to stat " << path;
Doug Zongker76adfc52014-01-13 10:04:25 -0800258 return -1;
259 }
260
Tianjie Xu74778142016-08-05 18:00:04 -0700261 LOG(INFO) << " block size: " << sb.st_blksize << " bytes";
Doug Zongker76adfc52014-01-13 10:04:25 -0800262
263 int blocks = ((sb.st_size-1) / sb.st_blksize) + 1;
Tianjie Xu74778142016-08-05 18:00:04 -0700264 LOG(INFO) << " file size: " << sb.st_size << " bytes, " << blocks << " blocks";
Doug Zongker76adfc52014-01-13 10:04:25 -0800265
Yabin Cui25dd0382016-02-01 11:40:37 -0800266 std::vector<int> ranges;
Doug Zongker76adfc52014-01-13 10:04:25 -0800267
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700268 std::string s = android::base::StringPrintf("%s\n%" PRId64 " %" PRId64 "\n",
269 blk_dev, static_cast<int64_t>(sb.st_size),
270 static_cast<int64_t>(sb.st_blksize));
Elliott Hughesbcabd092016-03-22 20:19:22 -0700271 if (!android::base::WriteStringToFd(s, mapfd)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700272 PLOG(ERROR) << "failed to write " << tmp_map_file;
Yabin Cui25dd0382016-02-01 11:40:37 -0800273 return -1;
274 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800275
Yabin Cui25dd0382016-02-01 11:40:37 -0800276 std::vector<std::vector<unsigned char>> buffers;
Doug Zongker76adfc52014-01-13 10:04:25 -0800277 if (encrypted) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800278 buffers.resize(WINDOW_SIZE, std::vector<unsigned char>(sb.st_blksize));
Doug Zongker76adfc52014-01-13 10:04:25 -0800279 }
280 int head_block = 0;
281 int head = 0, tail = 0;
Doug Zongker76adfc52014-01-13 10:04:25 -0800282
Elliott Hughesbcabd092016-03-22 20:19:22 -0700283 android::base::unique_fd fd(open(path, O_RDONLY));
284 if (fd == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700285 PLOG(ERROR) << "failed to open " << path << " for reading";
Doug Zongker76adfc52014-01-13 10:04:25 -0800286 return -1;
287 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800288
Elliott Hughesbcabd092016-03-22 20:19:22 -0700289 android::base::unique_fd wfd;
Doug Zongker76adfc52014-01-13 10:04:25 -0800290 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700291 wfd.reset(open(blk_dev, O_WRONLY));
292 if (wfd == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700293 PLOG(ERROR) << "failed to open " << blk_dev << " for writing";
Doug Zongker76adfc52014-01-13 10:04:25 -0800294 return -1;
295 }
296 }
297
Tao Baob8df5fb2015-12-08 22:47:25 -0800298 off64_t pos = 0;
Tao Bao383b00d2015-05-21 16:44:44 -0700299 int last_progress = 0;
Doug Zongker76adfc52014-01-13 10:04:25 -0800300 while (pos < sb.st_size) {
Tao Bao383b00d2015-05-21 16:44:44 -0700301 // Update the status file, progress must be between [0, 99].
302 int progress = static_cast<int>(100 * (double(pos) / double(sb.st_size)));
303 if (progress > last_progress) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800304 last_progress = progress;
305 write_status_to_socket(progress, socket);
Tao Bao383b00d2015-05-21 16:44:44 -0700306 }
307
Doug Zongker76adfc52014-01-13 10:04:25 -0800308 if ((tail+1) % WINDOW_SIZE == head) {
309 // write out head buffer
310 int block = head_block;
Elliott Hughesbcabd092016-03-22 20:19:22 -0700311 if (ioctl(fd, FIBMAP, &block) != 0) {
Tianjie Xu74778142016-08-05 18:00:04 -0700312 LOG(ERROR) << "failed to find block " << head_block;
Doug Zongker76adfc52014-01-13 10:04:25 -0800313 return -1;
314 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800315 add_block_to_ranges(ranges, block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800316 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700317 if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd,
318 static_cast<off64_t>(sb.st_blksize) * block) != 0) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800319 return -1;
320 }
321 }
322 head = (head + 1) % WINDOW_SIZE;
323 ++head_block;
324 }
325
326 // read next block to tail
327 if (encrypted) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800328 size_t to_read = static_cast<size_t>(
329 std::min(static_cast<off64_t>(sb.st_blksize), sb.st_size - pos));
Elliott Hughesbcabd092016-03-22 20:19:22 -0700330 if (!android::base::ReadFully(fd, buffers[tail].data(), to_read)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700331 PLOG(ERROR) << "failed to read " << path;
Yabin Cui25dd0382016-02-01 11:40:37 -0800332 return -1;
Doug Zongker76adfc52014-01-13 10:04:25 -0800333 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800334 pos += to_read;
Doug Zongker76adfc52014-01-13 10:04:25 -0800335 } else {
336 // If we're not encrypting; we don't need to actually read
337 // anything, just skip pos forward as if we'd read a
338 // block.
339 pos += sb.st_blksize;
340 }
341 tail = (tail+1) % WINDOW_SIZE;
342 }
343
344 while (head != tail) {
345 // write out head buffer
346 int block = head_block;
Elliott Hughesbcabd092016-03-22 20:19:22 -0700347 if (ioctl(fd, FIBMAP, &block) != 0) {
Tianjie Xu74778142016-08-05 18:00:04 -0700348 LOG(ERROR) << "failed to find block " << head_block;
Doug Zongker76adfc52014-01-13 10:04:25 -0800349 return -1;
350 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800351 add_block_to_ranges(ranges, block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800352 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700353 if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd,
354 static_cast<off64_t>(sb.st_blksize) * block) != 0) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800355 return -1;
356 }
357 }
358 head = (head + 1) % WINDOW_SIZE;
359 ++head_block;
360 }
361
Yabin Cui25dd0382016-02-01 11:40:37 -0800362 if (!android::base::WriteStringToFd(
Elliott Hughesbcabd092016-03-22 20:19:22 -0700363 android::base::StringPrintf("%zu\n", ranges.size() / 2), mapfd)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700364 PLOG(ERROR) << "failed to write " << tmp_map_file;
Tao Baofb4ccef2015-05-04 10:10:13 -0700365 return -1;
366 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800367 for (size_t i = 0; i < ranges.size(); i += 2) {
368 if (!android::base::WriteStringToFd(
Elliott Hughesbcabd092016-03-22 20:19:22 -0700369 android::base::StringPrintf("%d %d\n", ranges[i], ranges[i+1]), mapfd)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700370 PLOG(ERROR) << "failed to write " << tmp_map_file;
Tao Baofb4ccef2015-05-04 10:10:13 -0700371 return -1;
372 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800373 }
374
Elliott Hughesbcabd092016-03-22 20:19:22 -0700375 if (fsync(mapfd) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700376 PLOG(ERROR) << "failed to fsync \"" << tmp_map_file << "\"";
Yabin Cui25dd0382016-02-01 11:40:37 -0800377 return -1;
378 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700379 if (close(mapfd.release()) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700380 PLOG(ERROR) << "failed to close " << tmp_map_file;
Yabin Cui25dd0382016-02-01 11:40:37 -0800381 return -1;
382 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800383
384 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700385 if (fsync(wfd) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700386 PLOG(ERROR) << "failed to fsync \"" << blk_dev << "\"";
Yabin Cui25dd0382016-02-01 11:40:37 -0800387 return -1;
388 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700389 if (close(wfd.release()) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700390 PLOG(ERROR) << "failed to close " << blk_dev;
Yabin Cui25dd0382016-02-01 11:40:37 -0800391 return -1;
392 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800393 }
394
395 if (rename(tmp_map_file.c_str(), map_file) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700396 PLOG(ERROR) << "failed to rename " << tmp_map_file << " to " << map_file;
Yabin Cui25dd0382016-02-01 11:40:37 -0800397 return -1;
398 }
399 // Sync dir to make rename() result written to disk.
400 std::string file_name = map_file;
401 std::string dir_name = dirname(&file_name[0]);
Elliott Hughesbcabd092016-03-22 20:19:22 -0700402 android::base::unique_fd dfd(open(dir_name.c_str(), O_RDONLY | O_DIRECTORY));
403 if (dfd == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700404 PLOG(ERROR) << "failed to open dir " << dir_name;
Yabin Cui25dd0382016-02-01 11:40:37 -0800405 return -1;
406 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700407 if (fsync(dfd) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700408 PLOG(ERROR) << "failed to fsync " << dir_name;
Yabin Cui25dd0382016-02-01 11:40:37 -0800409 return -1;
410 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700411 if (close(dfd.release()) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700412 PLOG(ERROR) << "failed to close " << dir_name;
Yabin Cui25dd0382016-02-01 11:40:37 -0800413 return -1;
414 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800415 return 0;
416}
417
Tao Bao3a2bb592016-02-25 12:38:53 -0800418static int uncrypt(const char* input_path, const char* map_file, const int socket) {
Tianjie Xu74778142016-08-05 18:00:04 -0700419 LOG(INFO) << "update package is \"" << input_path << "\"";
Doug Zongkerf449db22014-08-26 09:15:08 -0700420
Doug Zongker76adfc52014-01-13 10:04:25 -0800421 // Turn the name of the file we're supposed to convert into an
422 // absolute path, so we can find what filesystem it's on.
423 char path[PATH_MAX+1];
424 if (realpath(input_path, path) == NULL) {
Tianjie Xu74778142016-08-05 18:00:04 -0700425 PLOG(ERROR) << "failed to convert \"" << input_path << "\" to absolute path";
Doug Zongker76adfc52014-01-13 10:04:25 -0800426 return 1;
427 }
428
Tao Bao381f4552015-05-05 18:36:45 -0700429 bool encryptable;
430 bool encrypted;
Doug Zongker76adfc52014-01-13 10:04:25 -0800431 const char* blk_dev = find_block_device(path, &encryptable, &encrypted);
432 if (blk_dev == NULL) {
Tianjie Xu74778142016-08-05 18:00:04 -0700433 LOG(ERROR) << "failed to find block device for " << path;
Doug Zongker76adfc52014-01-13 10:04:25 -0800434 return 1;
435 }
436
437 // If the filesystem it's on isn't encrypted, we only produce the
438 // block map, we don't rewrite the file contents (it would be
439 // pointless to do so).
Tianjie Xu74778142016-08-05 18:00:04 -0700440 LOG(INFO) << "encryptable: " << (encryptable ? "yes" : "no");
441 LOG(INFO) << " encrypted: " << (encrypted ? "yes" : "no");
Doug Zongker76adfc52014-01-13 10:04:25 -0800442
Doug Zongker574443d2014-09-05 08:22:12 -0700443 // Recovery supports installing packages from 3 paths: /cache,
444 // /data, and /sdcard. (On a particular device, other locations
445 // may work, but those are three we actually expect.)
446 //
447 // On /data we want to convert the file to a block map so that we
448 // can read the package without mounting the partition. On /cache
449 // and /sdcard we leave the file alone.
Tao Bao383b00d2015-05-21 16:44:44 -0700450 if (strncmp(path, "/data/", 6) == 0) {
Tianjie Xu74778142016-08-05 18:00:04 -0700451 LOG(INFO) << "writing block map " << map_file;
Tao Bao3a2bb592016-02-25 12:38:53 -0800452 if (produce_block_map(path, map_file, blk_dev, encrypted, socket) != 0) {
Tao Bao383b00d2015-05-21 16:44:44 -0700453 return 1;
454 }
455 }
456
457 return 0;
458}
459
Tao Bao3a2bb592016-02-25 12:38:53 -0800460static bool uncrypt_wrapper(const char* input_path, const char* map_file, const int socket) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800461 std::string package;
462 if (input_path == nullptr) {
463 if (!find_uncrypt_package(UNCRYPT_PATH_FILE, &package)) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800464 write_status_to_socket(-1, socket);
465 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800466 }
467 input_path = package.c_str();
468 }
469 CHECK(map_file != nullptr);
Tianjie Xue16e7992016-09-09 10:55:44 -0700470
471#define UNCRYPT_TIME_HOLDER 0x7FFFFFFF
472 // Intialize the uncrypt time cost to a huge number so that we can tell from
473 // the statistics if an uncrypt fails to finish.
474 if (!android::base::WriteStringToFile(android::base::StringPrintf(
475 "uncrypt_time: %d\n", UNCRYPT_TIME_HOLDER), UNCRYPT_STATUS)) {
476 PLOG(WARNING) << "failed to write to " << UNCRYPT_STATUS;
477 }
478
479 auto start = std::chrono::system_clock::now();
Tao Bao3a2bb592016-02-25 12:38:53 -0800480 int status = uncrypt(input_path, map_file, socket);
Yabin Cui2d46da52016-01-26 16:50:15 -0800481 if (status != 0) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800482 write_status_to_socket(-1, socket);
483 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800484 }
Tianjie Xue16e7992016-09-09 10:55:44 -0700485
486 std::chrono::duration<double> duration = std::chrono::system_clock::now() - start;
487 int count = static_cast<int>(duration.count());
488 // Overwrite the uncrypt_time if uncrypt finishes successfully.
489 if (!android::base::WriteStringToFile(
490 android::base::StringPrintf("uncrypt_time: %d\n", count), UNCRYPT_STATUS)) {
491 PLOG(WARNING) << "failed to write to " << UNCRYPT_STATUS;
492 }
493
Tao Bao3a2bb592016-02-25 12:38:53 -0800494 write_status_to_socket(100, socket);
Tianjie Xue16e7992016-09-09 10:55:44 -0700495
Tao Bao3a2bb592016-02-25 12:38:53 -0800496 return true;
Yabin Cui2d46da52016-01-26 16:50:15 -0800497}
498
Tao Bao3a2bb592016-02-25 12:38:53 -0800499static bool clear_bcb(const int socket) {
Yabin Cuia58a6db2016-04-06 15:52:18 -0700500 std::string err;
501 if (!clear_bootloader_message(&err)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700502 LOG(ERROR) << "failed to clear bootloader message: " << err;
Tao Bao3a2bb592016-02-25 12:38:53 -0800503 write_status_to_socket(-1, socket);
504 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800505 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800506 write_status_to_socket(100, socket);
507 return true;
Yabin Cui2d46da52016-01-26 16:50:15 -0800508}
509
Tao Bao3a2bb592016-02-25 12:38:53 -0800510static bool setup_bcb(const int socket) {
511 // c5. receive message length
512 int length;
513 if (!android::base::ReadFully(socket, &length, 4)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700514 PLOG(ERROR) << "failed to read the length";
Tao Bao3a2bb592016-02-25 12:38:53 -0800515 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800516 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800517 length = ntohl(length);
518
519 // c7. receive message
Yabin Cui2d46da52016-01-26 16:50:15 -0800520 std::string content;
Tao Bao3a2bb592016-02-25 12:38:53 -0800521 content.resize(length);
522 if (!android::base::ReadFully(socket, &content[0], length)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700523 PLOG(ERROR) << "failed to read the length";
Tao Bao3a2bb592016-02-25 12:38:53 -0800524 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800525 }
Tianjie Xu74778142016-08-05 18:00:04 -0700526 LOG(INFO) << " received command: [" << content << "] (" << content.size() << ")";
Yabin Cui6faf0262016-06-09 14:09:39 -0700527 std::vector<std::string> options = android::base::Split(content, "\n");
528 std::string wipe_package;
529 for (auto& option : options) {
530 if (android::base::StartsWith(option, "--wipe_package=")) {
531 std::string path = option.substr(strlen("--wipe_package="));
532 if (!android::base::ReadFileToString(path, &wipe_package)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700533 PLOG(ERROR) << "failed to read " << path;
Yabin Cui6faf0262016-06-09 14:09:39 -0700534 return false;
535 }
536 option = android::base::StringPrintf("--wipe_package_size=%zu", wipe_package.size());
537 }
538 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800539
540 // c8. setup the bcb command
Yabin Cuia58a6db2016-04-06 15:52:18 -0700541 std::string err;
Yabin Cui6faf0262016-06-09 14:09:39 -0700542 if (!write_bootloader_message(options, &err)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700543 LOG(ERROR) << "failed to set bootloader message: " << err;
Tao Bao3a2bb592016-02-25 12:38:53 -0800544 write_status_to_socket(-1, socket);
545 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800546 }
Yabin Cui6faf0262016-06-09 14:09:39 -0700547 if (!wipe_package.empty() && !write_wipe_package(wipe_package, &err)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700548 PLOG(ERROR) << "failed to set wipe package: " << err;
Yabin Cui6faf0262016-06-09 14:09:39 -0700549 write_status_to_socket(-1, socket);
550 return false;
551 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800552 // c10. send "100" status
553 write_status_to_socket(100, socket);
554 return true;
Yabin Cui2d46da52016-01-26 16:50:15 -0800555}
556
Yabin Cui2d46da52016-01-26 16:50:15 -0800557static void usage(const char* exename) {
558 fprintf(stderr, "Usage of %s:\n", exename);
559 fprintf(stderr, "%s [<package_path> <map_file>] Uncrypt ota package.\n", exename);
Yabin Cui2d46da52016-01-26 16:50:15 -0800560 fprintf(stderr, "%s --clear-bcb Clear BCB data in misc partition.\n", exename);
561 fprintf(stderr, "%s --setup-bcb Setup BCB data by command file.\n", exename);
Yabin Cui2d46da52016-01-26 16:50:15 -0800562}
563
564int main(int argc, char** argv) {
Tianjie Xu28c1e5d2016-06-30 15:31:51 -0700565 enum { UNCRYPT, SETUP_BCB, CLEAR_BCB, UNCRYPT_DEBUG } action;
Tao Bao3a2bb592016-02-25 12:38:53 -0800566 const char* input_path = nullptr;
567 const char* map_file = CACHE_BLOCK_MAP.c_str();
568
569 if (argc == 2 && strcmp(argv[1], "--clear-bcb") == 0) {
570 action = CLEAR_BCB;
571 } else if (argc == 2 && strcmp(argv[1], "--setup-bcb") == 0) {
572 action = SETUP_BCB;
Tao Bao3a2bb592016-02-25 12:38:53 -0800573 } else if (argc == 1) {
574 action = UNCRYPT;
575 } else if (argc == 3) {
576 input_path = argv[1];
577 map_file = argv[2];
Tianjie Xu28c1e5d2016-06-30 15:31:51 -0700578 action = UNCRYPT_DEBUG;
Tao Bao3a2bb592016-02-25 12:38:53 -0800579 } else {
580 usage(argv[0]);
581 return 2;
Doug Zongker76adfc52014-01-13 10:04:25 -0800582 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800583
584 if ((fstab = read_fstab()) == nullptr) {
585 return 1;
586 }
587
Tianjie Xu28c1e5d2016-06-30 15:31:51 -0700588 if (action == UNCRYPT_DEBUG) {
Tianjie Xu74778142016-08-05 18:00:04 -0700589 LOG(INFO) << "uncrypt called in debug mode, skip socket communication";
Tianjie Xu28c1e5d2016-06-30 15:31:51 -0700590 bool success = uncrypt_wrapper(input_path, map_file, -1);
591 if (success) {
Tianjie Xu74778142016-08-05 18:00:04 -0700592 LOG(INFO) << "uncrypt succeeded";
Tianjie Xu28c1e5d2016-06-30 15:31:51 -0700593 } else{
Tianjie Xu74778142016-08-05 18:00:04 -0700594 LOG(INFO) << "uncrypt failed";
Tianjie Xu28c1e5d2016-06-30 15:31:51 -0700595 }
596 return success ? 0 : 1;
597 }
598
Tao Bao3a2bb592016-02-25 12:38:53 -0800599 // c3. The socket is created by init when starting the service. uncrypt
600 // will use the socket to communicate with its caller.
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700601 android::base::unique_fd service_socket(android_get_control_socket(UNCRYPT_SOCKET.c_str()));
602 if (service_socket == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700603 PLOG(ERROR) << "failed to open socket \"" << UNCRYPT_SOCKET << "\"";
Tao Bao3a2bb592016-02-25 12:38:53 -0800604 return 1;
605 }
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700606 fcntl(service_socket, F_SETFD, FD_CLOEXEC);
Tao Bao3a2bb592016-02-25 12:38:53 -0800607
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700608 if (listen(service_socket, 1) == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700609 PLOG(ERROR) << "failed to listen on socket " << service_socket.get();
Tao Bao3a2bb592016-02-25 12:38:53 -0800610 return 1;
611 }
612
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700613 android::base::unique_fd socket_fd(accept4(service_socket, nullptr, nullptr, SOCK_CLOEXEC));
614 if (socket_fd == -1) {
Tianjie Xu74778142016-08-05 18:00:04 -0700615 PLOG(ERROR) << "failed to accept on socket " << service_socket.get();
Tao Bao3a2bb592016-02-25 12:38:53 -0800616 return 1;
617 }
618
619 bool success = false;
620 switch (action) {
621 case UNCRYPT:
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700622 success = uncrypt_wrapper(input_path, map_file, socket_fd);
Tao Bao3a2bb592016-02-25 12:38:53 -0800623 break;
624 case SETUP_BCB:
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700625 success = setup_bcb(socket_fd);
Tao Bao3a2bb592016-02-25 12:38:53 -0800626 break;
627 case CLEAR_BCB:
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700628 success = clear_bcb(socket_fd);
Tao Bao3a2bb592016-02-25 12:38:53 -0800629 break;
630 default: // Should never happen.
Tianjie Xu74778142016-08-05 18:00:04 -0700631 LOG(ERROR) << "Invalid uncrypt action code: " << action;
Tao Bao3a2bb592016-02-25 12:38:53 -0800632 return 1;
633 }
634
635 // c13. Read a 4-byte code from the client before uncrypt exits. This is to
636 // ensure the client to receive the last status code before the socket gets
637 // destroyed.
638 int code;
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700639 if (android::base::ReadFully(socket_fd, &code, 4)) {
Tianjie Xu74778142016-08-05 18:00:04 -0700640 LOG(INFO) << " received " << code << ", exiting now";
Tao Bao3a2bb592016-02-25 12:38:53 -0800641 } else {
Tianjie Xu74778142016-08-05 18:00:04 -0700642 PLOG(ERROR) << "failed to read the code";
Tao Bao3a2bb592016-02-25 12:38:53 -0800643 }
644 return success ? 0 : 1;
Doug Zongker76adfc52014-01-13 10:04:25 -0800645}