blob: f569bcedca8db65fa5d076e1bd05dd27138fec2f [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>
Tao Bao75238632015-05-27 14:46:17 -0700113#include <cutils/android_reboot.h>
Doug Zongker76adfc52014-01-13 10:04:25 -0800114#include <cutils/properties.h>
Tao Bao3a2bb592016-02-25 12:38:53 -0800115#include <cutils/sockets.h>
Doug Zongker76adfc52014-01-13 10:04:25 -0800116#include <fs_mgr.h>
117
Tao Bao383b00d2015-05-21 16:44:44 -0700118#define LOG_TAG "uncrypt"
119#include <log/log.h>
120
Yabin Cui2d46da52016-01-26 16:50:15 -0800121#include "bootloader.h"
Tao Baoc7547922015-08-06 18:35:05 -0700122
Doug Zongker76adfc52014-01-13 10:04:25 -0800123#define WINDOW_SIZE 5
Tao Bao383b00d2015-05-21 16:44:44 -0700124
Tao Bao3a2bb592016-02-25 12:38:53 -0800125// uncrypt provides three services: SETUP_BCB, CLEAR_BCB and UNCRYPT.
126//
127// SETUP_BCB and CLEAR_BCB services use socket communication and do not rely
128// on /cache partitions. They will handle requests to reboot into recovery
129// (for applying updates for non-A/B devices, or factory resets for all
130// devices).
131//
132// UNCRYPT service still needs files on /cache partition (UNCRYPT_PATH_FILE
133// and CACHE_BLOCK_MAP). It will be working (and needed) only for non-A/B
134// devices, on which /cache partitions always exist.
Yabin Cui2d46da52016-01-26 16:50:15 -0800135static const std::string CACHE_BLOCK_MAP = "/cache/recovery/block.map";
Yabin Cui2d46da52016-01-26 16:50:15 -0800136static const std::string UNCRYPT_PATH_FILE = "/cache/recovery/uncrypt_file";
Tao Bao3a2bb592016-02-25 12:38:53 -0800137static const std::string UNCRYPT_SOCKET = "uncrypt";
Doug Zongker76adfc52014-01-13 10:04:25 -0800138
Tao Bao3a2bb592016-02-25 12:38:53 -0800139static struct fstab* fstab = nullptr;
Doug Zongker2efc9d92014-08-18 15:55:28 -0700140
Tao Bao381f4552015-05-05 18:36:45 -0700141static int write_at_offset(unsigned char* buffer, size_t size, int wfd, off64_t offset) {
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700142 if (TEMP_FAILURE_RETRY(lseek64(wfd, offset, SEEK_SET)) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800143 ALOGE("error seeking to offset %" PRId64 ": %s", offset, strerror(errno));
Elliott Hughes7bad7c42015-04-28 17:24:24 -0700144 return -1;
145 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800146 if (!android::base::WriteFully(wfd, buffer, size)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800147 ALOGE("error writing offset %" PRId64 ": %s", offset, strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800148 return -1;
Doug Zongker76adfc52014-01-13 10:04:25 -0800149 }
150 return 0;
151}
152
Yabin Cui25dd0382016-02-01 11:40:37 -0800153static void add_block_to_ranges(std::vector<int>& ranges, int new_block) {
154 if (!ranges.empty() && new_block == ranges.back()) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800155 // If the new block comes immediately after the current range,
156 // all we have to do is extend the current range.
Yabin Cui25dd0382016-02-01 11:40:37 -0800157 ++ranges.back();
Doug Zongker76adfc52014-01-13 10:04:25 -0800158 } else {
159 // We need to start a new range.
Yabin Cui25dd0382016-02-01 11:40:37 -0800160 ranges.push_back(new_block);
161 ranges.push_back(new_block + 1);
Doug Zongker76adfc52014-01-13 10:04:25 -0800162 }
163}
164
Tao Bao381f4552015-05-05 18:36:45 -0700165static struct fstab* read_fstab() {
Doug Zongker2efc9d92014-08-18 15:55:28 -0700166 fstab = NULL;
167
Doug Zongker76adfc52014-01-13 10:04:25 -0800168 // The fstab path is always "/fstab.${ro.hardware}".
169 char fstab_path[PATH_MAX+1] = "/fstab.";
170 if (!property_get("ro.hardware", fstab_path+strlen(fstab_path), "")) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800171 ALOGE("failed to get ro.hardware");
Doug Zongker76adfc52014-01-13 10:04:25 -0800172 return NULL;
173 }
174
Doug Zongker2efc9d92014-08-18 15:55:28 -0700175 fstab = fs_mgr_read_fstab(fstab_path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800176 if (!fstab) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800177 ALOGE("failed to read %s", fstab_path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800178 return NULL;
179 }
180
Doug Zongker2efc9d92014-08-18 15:55:28 -0700181 return fstab;
182}
183
Tao Bao381f4552015-05-05 18:36:45 -0700184static const char* find_block_device(const char* path, bool* encryptable, bool* encrypted) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800185 // Look for a volume whose mount point is the prefix of path and
186 // return its block device. Set encrypted if it's currently
187 // encrypted.
Tao Bao381f4552015-05-05 18:36:45 -0700188 for (int i = 0; i < fstab->num_entries; ++i) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800189 struct fstab_rec* v = &fstab->recs[i];
Tao Bao381f4552015-05-05 18:36:45 -0700190 if (!v->mount_point) {
191 continue;
192 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800193 int len = strlen(v->mount_point);
194 if (strncmp(path, v->mount_point, len) == 0 &&
195 (path[len] == '/' || path[len] == 0)) {
Tao Bao381f4552015-05-05 18:36:45 -0700196 *encrypted = false;
197 *encryptable = false;
Tao Bao7cf50c62015-07-16 20:04:13 -0700198 if (fs_mgr_is_encryptable(v) || fs_mgr_is_file_encrypted(v)) {
Tao Bao381f4552015-05-05 18:36:45 -0700199 *encryptable = true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800200 char buffer[PROPERTY_VALUE_MAX+1];
201 if (property_get("ro.crypto.state", buffer, "") &&
202 strcmp(buffer, "encrypted") == 0) {
Tao Bao381f4552015-05-05 18:36:45 -0700203 *encrypted = true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800204 }
205 }
206 return v->blk_device;
207 }
208 }
209
210 return NULL;
211}
212
Tao Bao3a2bb592016-02-25 12:38:53 -0800213static bool write_status_to_socket(int status, int socket) {
214 int status_out = htonl(status);
215 return android::base::WriteFully(socket, &status_out, sizeof(int));
216}
217
Tao Bao383b00d2015-05-21 16:44:44 -0700218// Parse uncrypt_file to find the update package name.
Yabin Cui2d46da52016-01-26 16:50:15 -0800219static bool find_uncrypt_package(const std::string& uncrypt_path_file, std::string* package_name) {
220 CHECK(package_name != nullptr);
221 std::string uncrypt_path;
222 if (!android::base::ReadFileToString(uncrypt_path_file, &uncrypt_path)) {
223 ALOGE("failed to open \"%s\": %s", uncrypt_path_file.c_str(), strerror(errno));
Tao Bao383b00d2015-05-21 16:44:44 -0700224 return false;
Maxim Siniavinee7b28882014-02-13 15:48:53 -0800225 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800226
Tao Bao383b00d2015-05-21 16:44:44 -0700227 // Remove the trailing '\n' if present.
Yabin Cui2d46da52016-01-26 16:50:15 -0800228 *package_name = android::base::Trim(uncrypt_path);
Tao Bao383b00d2015-05-21 16:44:44 -0700229 return true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800230}
231
Tao Bao381f4552015-05-05 18:36:45 -0700232static int produce_block_map(const char* path, const char* map_file, const char* blk_dev,
Tao Bao3a2bb592016-02-25 12:38:53 -0800233 bool encrypted, int socket) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800234 std::string err;
235 if (!android::base::RemoveFileIfExists(map_file, &err)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800236 ALOGE("failed to remove the existing map file %s: %s", map_file, err.c_str());
Sungmin Choia72512c2014-12-10 21:57:09 +0900237 return -1;
238 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800239 std::string tmp_map_file = std::string(map_file) + ".tmp";
Elliott Hughesbcabd092016-03-22 20:19:22 -0700240 android::base::unique_fd mapfd(open(tmp_map_file.c_str(),
241 O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR));
242 if (mapfd == -1) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800243 ALOGE("failed to open %s: %s\n", tmp_map_file.c_str(), strerror(errno));
244 return -1;
245 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800246
Tao Bao3a2bb592016-02-25 12:38:53 -0800247 // Make sure we can write to the socket.
248 if (!write_status_to_socket(0, socket)) {
249 ALOGE("failed to write to socket %d\n", socket);
Tao Bao383b00d2015-05-21 16:44:44 -0700250 return -1;
251 }
252
Tao Bao381f4552015-05-05 18:36:45 -0700253 struct stat sb;
Tao Baoc7547922015-08-06 18:35:05 -0700254 if (stat(path, &sb) != 0) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800255 ALOGE("failed to stat %s", path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800256 return -1;
257 }
258
Yabin Cui2d46da52016-01-26 16:50:15 -0800259 ALOGI(" block size: %ld bytes", static_cast<long>(sb.st_blksize));
Doug Zongker76adfc52014-01-13 10:04:25 -0800260
261 int blocks = ((sb.st_size-1) / sb.st_blksize) + 1;
Yabin Cui2d46da52016-01-26 16:50:15 -0800262 ALOGI(" file size: %" PRId64 " bytes, %d blocks", sb.st_size, blocks);
Doug Zongker76adfc52014-01-13 10:04:25 -0800263
Yabin Cui25dd0382016-02-01 11:40:37 -0800264 std::vector<int> ranges;
Doug Zongker76adfc52014-01-13 10:04:25 -0800265
Yabin Cui25dd0382016-02-01 11:40:37 -0800266 std::string s = android::base::StringPrintf("%s\n%" PRId64 " %ld\n",
267 blk_dev, sb.st_size, static_cast<long>(sb.st_blksize));
Elliott Hughesbcabd092016-03-22 20:19:22 -0700268 if (!android::base::WriteStringToFd(s, mapfd)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800269 ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800270 return -1;
271 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800272
Yabin Cui25dd0382016-02-01 11:40:37 -0800273 std::vector<std::vector<unsigned char>> buffers;
Doug Zongker76adfc52014-01-13 10:04:25 -0800274 if (encrypted) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800275 buffers.resize(WINDOW_SIZE, std::vector<unsigned char>(sb.st_blksize));
Doug Zongker76adfc52014-01-13 10:04:25 -0800276 }
277 int head_block = 0;
278 int head = 0, tail = 0;
Doug Zongker76adfc52014-01-13 10:04:25 -0800279
Elliott Hughesbcabd092016-03-22 20:19:22 -0700280 android::base::unique_fd fd(open(path, O_RDONLY));
281 if (fd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800282 ALOGE("failed to open %s for reading: %s", path, strerror(errno));
Doug Zongker76adfc52014-01-13 10:04:25 -0800283 return -1;
284 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800285
Elliott Hughesbcabd092016-03-22 20:19:22 -0700286 android::base::unique_fd wfd;
Doug Zongker76adfc52014-01-13 10:04:25 -0800287 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700288 wfd.reset(open(blk_dev, O_WRONLY));
289 if (wfd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800290 ALOGE("failed to open fd for writing: %s", strerror(errno));
Doug Zongker76adfc52014-01-13 10:04:25 -0800291 return -1;
292 }
293 }
294
Tao Baob8df5fb2015-12-08 22:47:25 -0800295 off64_t pos = 0;
Tao Bao383b00d2015-05-21 16:44:44 -0700296 int last_progress = 0;
Doug Zongker76adfc52014-01-13 10:04:25 -0800297 while (pos < sb.st_size) {
Tao Bao383b00d2015-05-21 16:44:44 -0700298 // Update the status file, progress must be between [0, 99].
299 int progress = static_cast<int>(100 * (double(pos) / double(sb.st_size)));
300 if (progress > last_progress) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800301 last_progress = progress;
302 write_status_to_socket(progress, socket);
Tao Bao383b00d2015-05-21 16:44:44 -0700303 }
304
Doug Zongker76adfc52014-01-13 10:04:25 -0800305 if ((tail+1) % WINDOW_SIZE == head) {
306 // write out head buffer
307 int block = head_block;
Elliott Hughesbcabd092016-03-22 20:19:22 -0700308 if (ioctl(fd, FIBMAP, &block) != 0) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800309 ALOGE("failed to find block %d", head_block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800310 return -1;
311 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800312 add_block_to_ranges(ranges, block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800313 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700314 if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd,
315 static_cast<off64_t>(sb.st_blksize) * block) != 0) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800316 return -1;
317 }
318 }
319 head = (head + 1) % WINDOW_SIZE;
320 ++head_block;
321 }
322
323 // read next block to tail
324 if (encrypted) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800325 size_t to_read = static_cast<size_t>(
326 std::min(static_cast<off64_t>(sb.st_blksize), sb.st_size - pos));
Elliott Hughesbcabd092016-03-22 20:19:22 -0700327 if (!android::base::ReadFully(fd, buffers[tail].data(), to_read)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800328 ALOGE("failed to read: %s", strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800329 return -1;
Doug Zongker76adfc52014-01-13 10:04:25 -0800330 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800331 pos += to_read;
Doug Zongker76adfc52014-01-13 10:04:25 -0800332 } else {
333 // If we're not encrypting; we don't need to actually read
334 // anything, just skip pos forward as if we'd read a
335 // block.
336 pos += sb.st_blksize;
337 }
338 tail = (tail+1) % WINDOW_SIZE;
339 }
340
341 while (head != tail) {
342 // write out head buffer
343 int block = head_block;
Elliott Hughesbcabd092016-03-22 20:19:22 -0700344 if (ioctl(fd, FIBMAP, &block) != 0) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800345 ALOGE("failed to find block %d", head_block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800346 return -1;
347 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800348 add_block_to_ranges(ranges, block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800349 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700350 if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd,
351 static_cast<off64_t>(sb.st_blksize) * block) != 0) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800352 return -1;
353 }
354 }
355 head = (head + 1) % WINDOW_SIZE;
356 ++head_block;
357 }
358
Yabin Cui25dd0382016-02-01 11:40:37 -0800359 if (!android::base::WriteStringToFd(
Elliott Hughesbcabd092016-03-22 20:19:22 -0700360 android::base::StringPrintf("%zu\n", ranges.size() / 2), mapfd)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800361 ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno));
Tao Baofb4ccef2015-05-04 10:10:13 -0700362 return -1;
363 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800364 for (size_t i = 0; i < ranges.size(); i += 2) {
365 if (!android::base::WriteStringToFd(
Elliott Hughesbcabd092016-03-22 20:19:22 -0700366 android::base::StringPrintf("%d %d\n", ranges[i], ranges[i+1]), mapfd)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800367 ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno));
Tao Baofb4ccef2015-05-04 10:10:13 -0700368 return -1;
369 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800370 }
371
Elliott Hughesbcabd092016-03-22 20:19:22 -0700372 if (fsync(mapfd) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800373 ALOGE("failed to fsync \"%s\": %s", tmp_map_file.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800374 return -1;
375 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700376 if (close(mapfd.release()) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800377 ALOGE("failed to close %s: %s", tmp_map_file.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800378 return -1;
379 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800380
381 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700382 if (fsync(wfd) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800383 ALOGE("failed to fsync \"%s\": %s", blk_dev, strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800384 return -1;
385 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700386 if (close(wfd.release()) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800387 ALOGE("failed to close %s: %s", blk_dev, strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800388 return -1;
389 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800390 }
391
392 if (rename(tmp_map_file.c_str(), map_file) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800393 ALOGE("failed to rename %s to %s: %s", tmp_map_file.c_str(), map_file, strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800394 return -1;
395 }
396 // Sync dir to make rename() result written to disk.
397 std::string file_name = map_file;
398 std::string dir_name = dirname(&file_name[0]);
Elliott Hughesbcabd092016-03-22 20:19:22 -0700399 android::base::unique_fd dfd(open(dir_name.c_str(), O_RDONLY | O_DIRECTORY));
400 if (dfd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800401 ALOGE("failed to open dir %s: %s", dir_name.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800402 return -1;
403 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700404 if (fsync(dfd) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800405 ALOGE("failed to fsync %s: %s", dir_name.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800406 return -1;
407 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700408 if (close(dfd.release()) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800409 ALOGE("failed to close %s: %s", dir_name.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800410 return -1;
411 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800412 return 0;
413}
414
Yabin Cui2d46da52016-01-26 16:50:15 -0800415static std::string get_misc_blk_device() {
Yabin Cui2d46da52016-01-26 16:50:15 -0800416 if (fstab == nullptr) {
417 return "";
418 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800419 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab, "/misc");
420 if (rec != nullptr) {
421 return rec->blk_device;
Doug Zongker2efc9d92014-08-18 15:55:28 -0700422 }
Yabin Cui2d46da52016-01-26 16:50:15 -0800423 return "";
424}
425
Yabin Cui2d46da52016-01-26 16:50:15 -0800426static int write_bootloader_message(const bootloader_message* in) {
427 std::string misc_blk_device = get_misc_blk_device();
428 if (misc_blk_device.empty()) {
429 ALOGE("failed to find /misc partition.");
430 return -1;
431 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700432 android::base::unique_fd fd(open(misc_blk_device.c_str(), O_WRONLY | O_SYNC));
433 if (fd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800434 ALOGE("failed to open %s: %s", misc_blk_device.c_str(), strerror(errno));
435 return -1;
436 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700437 if (!android::base::WriteFully(fd, in, sizeof(*in))) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800438 ALOGE("failed to write %s: %s", misc_blk_device.c_str(), strerror(errno));
439 return -1;
440 }
441 // TODO: O_SYNC and fsync() duplicates each other?
Elliott Hughesbcabd092016-03-22 20:19:22 -0700442 if (fsync(fd) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800443 ALOGE("failed to fsync %s: %s", misc_blk_device.c_str(), strerror(errno));
444 return -1;
445 }
446 return 0;
Doug Zongker2efc9d92014-08-18 15:55:28 -0700447}
448
Tao Bao3a2bb592016-02-25 12:38:53 -0800449static int uncrypt(const char* input_path, const char* map_file, const int socket) {
Tao Bao383b00d2015-05-21 16:44:44 -0700450 ALOGI("update package is \"%s\"", input_path);
Doug Zongkerf449db22014-08-26 09:15:08 -0700451
Doug Zongker76adfc52014-01-13 10:04:25 -0800452 // Turn the name of the file we're supposed to convert into an
453 // absolute path, so we can find what filesystem it's on.
454 char path[PATH_MAX+1];
455 if (realpath(input_path, path) == NULL) {
Tao Bao383b00d2015-05-21 16:44:44 -0700456 ALOGE("failed to convert \"%s\" to absolute path: %s", input_path, strerror(errno));
Doug Zongker76adfc52014-01-13 10:04:25 -0800457 return 1;
458 }
459
Tao Bao381f4552015-05-05 18:36:45 -0700460 bool encryptable;
461 bool encrypted;
Doug Zongker76adfc52014-01-13 10:04:25 -0800462 const char* blk_dev = find_block_device(path, &encryptable, &encrypted);
463 if (blk_dev == NULL) {
Doug Zongkerf449db22014-08-26 09:15:08 -0700464 ALOGE("failed to find block device for %s", path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800465 return 1;
466 }
467
468 // If the filesystem it's on isn't encrypted, we only produce the
469 // block map, we don't rewrite the file contents (it would be
470 // pointless to do so).
Yabin Cui2d46da52016-01-26 16:50:15 -0800471 ALOGI("encryptable: %s", encryptable ? "yes" : "no");
472 ALOGI(" encrypted: %s", encrypted ? "yes" : "no");
Doug Zongker76adfc52014-01-13 10:04:25 -0800473
Doug Zongker574443d2014-09-05 08:22:12 -0700474 // Recovery supports installing packages from 3 paths: /cache,
475 // /data, and /sdcard. (On a particular device, other locations
476 // may work, but those are three we actually expect.)
477 //
478 // On /data we want to convert the file to a block map so that we
479 // can read the package without mounting the partition. On /cache
480 // and /sdcard we leave the file alone.
Tao Bao383b00d2015-05-21 16:44:44 -0700481 if (strncmp(path, "/data/", 6) == 0) {
Doug Zongkerf449db22014-08-26 09:15:08 -0700482 ALOGI("writing block map %s", map_file);
Tao Bao3a2bb592016-02-25 12:38:53 -0800483 if (produce_block_map(path, map_file, blk_dev, encrypted, socket) != 0) {
Tao Bao383b00d2015-05-21 16:44:44 -0700484 return 1;
485 }
486 }
487
488 return 0;
489}
490
Tao Bao3a2bb592016-02-25 12:38:53 -0800491static bool uncrypt_wrapper(const char* input_path, const char* map_file, const int socket) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800492 std::string package;
493 if (input_path == nullptr) {
494 if (!find_uncrypt_package(UNCRYPT_PATH_FILE, &package)) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800495 write_status_to_socket(-1, socket);
496 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800497 }
498 input_path = package.c_str();
499 }
500 CHECK(map_file != nullptr);
Tao Bao3a2bb592016-02-25 12:38:53 -0800501 int status = uncrypt(input_path, map_file, socket);
Yabin Cui2d46da52016-01-26 16:50:15 -0800502 if (status != 0) {
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 clear_bcb(const int socket) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800511 bootloader_message boot = {};
512 if (write_bootloader_message(&boot) != 0) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800513 write_status_to_socket(-1, socket);
514 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800515 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800516 write_status_to_socket(100, socket);
517 return true;
Yabin Cui2d46da52016-01-26 16:50:15 -0800518}
519
Tao Bao3a2bb592016-02-25 12:38:53 -0800520static bool setup_bcb(const int socket) {
521 // c5. receive message length
522 int length;
523 if (!android::base::ReadFully(socket, &length, 4)) {
524 ALOGE("failed to read the length: %s", strerror(errno));
525 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800526 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800527 length = ntohl(length);
528
529 // c7. receive message
Yabin Cui2d46da52016-01-26 16:50:15 -0800530 std::string content;
Tao Bao3a2bb592016-02-25 12:38:53 -0800531 content.resize(length);
532 if (!android::base::ReadFully(socket, &content[0], length)) {
533 ALOGE("failed to read the length: %s", strerror(errno));
534 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800535 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800536 ALOGI(" received command: [%s] (%zu)", content.c_str(), content.size());
537
538 // c8. setup the bcb command
Yabin Cui2d46da52016-01-26 16:50:15 -0800539 bootloader_message boot = {};
540 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
541 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
542 strlcat(boot.recovery, content.c_str(), sizeof(boot.recovery));
543 if (write_bootloader_message(&boot) != 0) {
544 ALOGE("failed to set bootloader message");
Tao Bao3a2bb592016-02-25 12:38:53 -0800545 write_status_to_socket(-1, socket);
546 return false;
Yabin Cui2d46da52016-01-26 16:50:15 -0800547 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800548 // c10. send "100" status
549 write_status_to_socket(100, socket);
550 return true;
Yabin Cui2d46da52016-01-26 16:50:15 -0800551}
552
Yabin Cui2d46da52016-01-26 16:50:15 -0800553static void usage(const char* exename) {
554 fprintf(stderr, "Usage of %s:\n", exename);
555 fprintf(stderr, "%s [<package_path> <map_file>] Uncrypt ota package.\n", exename);
Yabin Cui2d46da52016-01-26 16:50:15 -0800556 fprintf(stderr, "%s --clear-bcb Clear BCB data in misc partition.\n", exename);
557 fprintf(stderr, "%s --setup-bcb Setup BCB data by command file.\n", exename);
Yabin Cui2d46da52016-01-26 16:50:15 -0800558}
559
560int main(int argc, char** argv) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800561 enum { UNCRYPT, SETUP_BCB, CLEAR_BCB } action;
562 const char* input_path = nullptr;
563 const char* map_file = CACHE_BLOCK_MAP.c_str();
564
565 if (argc == 2 && strcmp(argv[1], "--clear-bcb") == 0) {
566 action = CLEAR_BCB;
567 } else if (argc == 2 && strcmp(argv[1], "--setup-bcb") == 0) {
568 action = SETUP_BCB;
Tao Bao3a2bb592016-02-25 12:38:53 -0800569 } else if (argc == 1) {
570 action = UNCRYPT;
571 } else if (argc == 3) {
572 input_path = argv[1];
573 map_file = argv[2];
574 action = UNCRYPT;
575 } else {
576 usage(argv[0]);
577 return 2;
Doug Zongker76adfc52014-01-13 10:04:25 -0800578 }
Tao Bao3a2bb592016-02-25 12:38:53 -0800579
580 if ((fstab = read_fstab()) == nullptr) {
581 return 1;
582 }
583
584 // c3. The socket is created by init when starting the service. uncrypt
585 // will use the socket to communicate with its caller.
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700586 android::base::unique_fd service_socket(android_get_control_socket(UNCRYPT_SOCKET.c_str()));
587 if (service_socket == -1) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800588 ALOGE("failed to open socket \"%s\": %s", UNCRYPT_SOCKET.c_str(), strerror(errno));
589 return 1;
590 }
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700591 fcntl(service_socket, F_SETFD, FD_CLOEXEC);
Tao Bao3a2bb592016-02-25 12:38:53 -0800592
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700593 if (listen(service_socket, 1) == -1) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800594 ALOGE("failed to listen on socket %d: %s", service_socket.get(), strerror(errno));
595 return 1;
596 }
597
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700598 android::base::unique_fd socket_fd(accept4(service_socket, nullptr, nullptr, SOCK_CLOEXEC));
599 if (socket_fd == -1) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800600 ALOGE("failed to accept on socket %d: %s", service_socket.get(), strerror(errno));
601 return 1;
602 }
603
604 bool success = false;
605 switch (action) {
606 case UNCRYPT:
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700607 success = uncrypt_wrapper(input_path, map_file, socket_fd);
Tao Bao3a2bb592016-02-25 12:38:53 -0800608 break;
609 case SETUP_BCB:
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700610 success = setup_bcb(socket_fd);
Tao Bao3a2bb592016-02-25 12:38:53 -0800611 break;
612 case CLEAR_BCB:
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700613 success = clear_bcb(socket_fd);
Tao Bao3a2bb592016-02-25 12:38:53 -0800614 break;
615 default: // Should never happen.
616 ALOGE("Invalid uncrypt action code: %d", action);
617 return 1;
618 }
619
620 // c13. Read a 4-byte code from the client before uncrypt exits. This is to
621 // ensure the client to receive the last status code before the socket gets
622 // destroyed.
623 int code;
Elliott Hughesd6ac6862016-03-29 12:44:09 -0700624 if (android::base::ReadFully(socket_fd, &code, 4)) {
Tao Bao3a2bb592016-02-25 12:38:53 -0800625 ALOGI(" received %d, exiting now", code);
626 } else {
627 ALOGE("failed to read the code: %s", strerror(errno));
628 }
629 return success ? 0 : 1;
Doug Zongker76adfc52014-01-13 10:04:25 -0800630}