blob: 43a2c2ab4abffe4e9c60702f47c8b643ffc2bbcf [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
Elliott Hughesd4d4c242014-12-29 12:46:43 -080042#include <errno.h>
Tao Bao75238632015-05-27 14:46:17 -070043#include <fcntl.h>
Tao Baob8df5fb2015-12-08 22:47:25 -080044#include <inttypes.h>
Yabin Cui25dd0382016-02-01 11:40:37 -080045#include <libgen.h>
Tao Bao75238632015-05-27 14:46:17 -070046#include <linux/fs.h>
47#include <stdarg.h>
Doug Zongker76adfc52014-01-13 10:04:25 -080048#include <stdio.h>
49#include <stdlib.h>
Elliott Hughescd3c55a2015-01-29 20:50:08 -080050#include <string.h>
Doug Zongker76adfc52014-01-13 10:04:25 -080051#include <sys/mman.h>
Tao Bao383b00d2015-05-21 16:44:44 -070052#include <sys/stat.h>
53#include <sys/types.h>
Tao Bao75238632015-05-27 14:46:17 -070054#include <unistd.h>
Doug Zongker76adfc52014-01-13 10:04:25 -080055
Yabin Cui25dd0382016-02-01 11:40:37 -080056#include <algorithm>
Tao Baoc7547922015-08-06 18:35:05 -070057#include <memory>
Yabin Cui25dd0382016-02-01 11:40:37 -080058#include <vector>
Tao Baoc7547922015-08-06 18:35:05 -070059
Elliott Hughes4b166f02015-12-04 15:30:20 -080060#include <android-base/file.h>
Yabin Cui2d46da52016-01-26 16:50:15 -080061#include <android-base/logging.h>
Yabin Cui25dd0382016-02-01 11:40:37 -080062#include <android-base/stringprintf.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080063#include <android-base/strings.h>
Elliott Hughesbcabd092016-03-22 20:19:22 -070064#include <android-base/unique_fd.h>
Tao Bao75238632015-05-27 14:46:17 -070065#include <cutils/android_reboot.h>
Doug Zongker76adfc52014-01-13 10:04:25 -080066#include <cutils/properties.h>
67#include <fs_mgr.h>
68
Tao Bao383b00d2015-05-21 16:44:44 -070069#define LOG_TAG "uncrypt"
70#include <log/log.h>
71
Yabin Cui2d46da52016-01-26 16:50:15 -080072#include "bootloader.h"
Tao Baoc7547922015-08-06 18:35:05 -070073
Doug Zongker76adfc52014-01-13 10:04:25 -080074#define WINDOW_SIZE 5
Tao Bao383b00d2015-05-21 16:44:44 -070075
Yabin Cui2d46da52016-01-26 16:50:15 -080076static const std::string CACHE_BLOCK_MAP = "/cache/recovery/block.map";
77static const std::string COMMAND_FILE = "/cache/recovery/command";
78static const std::string STATUS_FILE = "/cache/recovery/uncrypt_status";
79static const std::string UNCRYPT_PATH_FILE = "/cache/recovery/uncrypt_file";
Doug Zongker76adfc52014-01-13 10:04:25 -080080
Doug Zongker2efc9d92014-08-18 15:55:28 -070081static struct fstab* fstab = NULL;
82
Tao Bao381f4552015-05-05 18:36:45 -070083static int write_at_offset(unsigned char* buffer, size_t size, int wfd, off64_t offset) {
Elliott Hughes7bad7c42015-04-28 17:24:24 -070084 if (TEMP_FAILURE_RETRY(lseek64(wfd, offset, SEEK_SET)) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -080085 ALOGE("error seeking to offset %" PRId64 ": %s", offset, strerror(errno));
Elliott Hughes7bad7c42015-04-28 17:24:24 -070086 return -1;
87 }
Yabin Cui25dd0382016-02-01 11:40:37 -080088 if (!android::base::WriteFully(wfd, buffer, size)) {
Yabin Cui2d46da52016-01-26 16:50:15 -080089 ALOGE("error writing offset %" PRId64 ": %s", offset, strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -080090 return -1;
Doug Zongker76adfc52014-01-13 10:04:25 -080091 }
92 return 0;
93}
94
Yabin Cui25dd0382016-02-01 11:40:37 -080095static void add_block_to_ranges(std::vector<int>& ranges, int new_block) {
96 if (!ranges.empty() && new_block == ranges.back()) {
Doug Zongker76adfc52014-01-13 10:04:25 -080097 // If the new block comes immediately after the current range,
98 // all we have to do is extend the current range.
Yabin Cui25dd0382016-02-01 11:40:37 -080099 ++ranges.back();
Doug Zongker76adfc52014-01-13 10:04:25 -0800100 } else {
101 // We need to start a new range.
Yabin Cui25dd0382016-02-01 11:40:37 -0800102 ranges.push_back(new_block);
103 ranges.push_back(new_block + 1);
Doug Zongker76adfc52014-01-13 10:04:25 -0800104 }
105}
106
Tao Bao381f4552015-05-05 18:36:45 -0700107static struct fstab* read_fstab() {
Doug Zongker2efc9d92014-08-18 15:55:28 -0700108 fstab = NULL;
109
Doug Zongker76adfc52014-01-13 10:04:25 -0800110 // The fstab path is always "/fstab.${ro.hardware}".
111 char fstab_path[PATH_MAX+1] = "/fstab.";
112 if (!property_get("ro.hardware", fstab_path+strlen(fstab_path), "")) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800113 ALOGE("failed to get ro.hardware");
Doug Zongker76adfc52014-01-13 10:04:25 -0800114 return NULL;
115 }
116
Doug Zongker2efc9d92014-08-18 15:55:28 -0700117 fstab = fs_mgr_read_fstab(fstab_path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800118 if (!fstab) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800119 ALOGE("failed to read %s", fstab_path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800120 return NULL;
121 }
122
Doug Zongker2efc9d92014-08-18 15:55:28 -0700123 return fstab;
124}
125
Tao Bao381f4552015-05-05 18:36:45 -0700126static const char* find_block_device(const char* path, bool* encryptable, bool* encrypted) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800127 // Look for a volume whose mount point is the prefix of path and
128 // return its block device. Set encrypted if it's currently
129 // encrypted.
Tao Bao381f4552015-05-05 18:36:45 -0700130 for (int i = 0; i < fstab->num_entries; ++i) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800131 struct fstab_rec* v = &fstab->recs[i];
Tao Bao381f4552015-05-05 18:36:45 -0700132 if (!v->mount_point) {
133 continue;
134 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800135 int len = strlen(v->mount_point);
136 if (strncmp(path, v->mount_point, len) == 0 &&
137 (path[len] == '/' || path[len] == 0)) {
Tao Bao381f4552015-05-05 18:36:45 -0700138 *encrypted = false;
139 *encryptable = false;
Tao Bao7cf50c62015-07-16 20:04:13 -0700140 if (fs_mgr_is_encryptable(v) || fs_mgr_is_file_encrypted(v)) {
Tao Bao381f4552015-05-05 18:36:45 -0700141 *encryptable = true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800142 char buffer[PROPERTY_VALUE_MAX+1];
143 if (property_get("ro.crypto.state", buffer, "") &&
144 strcmp(buffer, "encrypted") == 0) {
Tao Bao381f4552015-05-05 18:36:45 -0700145 *encrypted = true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800146 }
147 }
148 return v->blk_device;
149 }
150 }
151
152 return NULL;
153}
154
Tao Bao383b00d2015-05-21 16:44:44 -0700155// Parse uncrypt_file to find the update package name.
Yabin Cui2d46da52016-01-26 16:50:15 -0800156static bool find_uncrypt_package(const std::string& uncrypt_path_file, std::string* package_name) {
157 CHECK(package_name != nullptr);
158 std::string uncrypt_path;
159 if (!android::base::ReadFileToString(uncrypt_path_file, &uncrypt_path)) {
160 ALOGE("failed to open \"%s\": %s", uncrypt_path_file.c_str(), strerror(errno));
Tao Bao383b00d2015-05-21 16:44:44 -0700161 return false;
Maxim Siniavinee7b28882014-02-13 15:48:53 -0800162 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800163
Tao Bao383b00d2015-05-21 16:44:44 -0700164 // Remove the trailing '\n' if present.
Yabin Cui2d46da52016-01-26 16:50:15 -0800165 *package_name = android::base::Trim(uncrypt_path);
Tao Bao383b00d2015-05-21 16:44:44 -0700166 return true;
Doug Zongker76adfc52014-01-13 10:04:25 -0800167}
168
Tao Bao381f4552015-05-05 18:36:45 -0700169static int produce_block_map(const char* path, const char* map_file, const char* blk_dev,
Tao Bao383b00d2015-05-21 16:44:44 -0700170 bool encrypted, int status_fd) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800171 std::string err;
172 if (!android::base::RemoveFileIfExists(map_file, &err)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800173 ALOGE("failed to remove the existing map file %s: %s", map_file, err.c_str());
Sungmin Choia72512c2014-12-10 21:57:09 +0900174 return -1;
175 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800176 std::string tmp_map_file = std::string(map_file) + ".tmp";
Elliott Hughesbcabd092016-03-22 20:19:22 -0700177 android::base::unique_fd mapfd(open(tmp_map_file.c_str(),
178 O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR));
179 if (mapfd == -1) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800180 ALOGE("failed to open %s: %s\n", tmp_map_file.c_str(), strerror(errno));
181 return -1;
182 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800183
Tao Bao383b00d2015-05-21 16:44:44 -0700184 // Make sure we can write to the status_file.
185 if (!android::base::WriteStringToFd("0\n", status_fd)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800186 ALOGE("failed to update \"%s\"\n", STATUS_FILE.c_str());
Tao Bao383b00d2015-05-21 16:44:44 -0700187 return -1;
188 }
189
Tao Bao381f4552015-05-05 18:36:45 -0700190 struct stat sb;
Tao Baoc7547922015-08-06 18:35:05 -0700191 if (stat(path, &sb) != 0) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800192 ALOGE("failed to stat %s", path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800193 return -1;
194 }
195
Yabin Cui2d46da52016-01-26 16:50:15 -0800196 ALOGI(" block size: %ld bytes", static_cast<long>(sb.st_blksize));
Doug Zongker76adfc52014-01-13 10:04:25 -0800197
198 int blocks = ((sb.st_size-1) / sb.st_blksize) + 1;
Yabin Cui2d46da52016-01-26 16:50:15 -0800199 ALOGI(" file size: %" PRId64 " bytes, %d blocks", sb.st_size, blocks);
Doug Zongker76adfc52014-01-13 10:04:25 -0800200
Yabin Cui25dd0382016-02-01 11:40:37 -0800201 std::vector<int> ranges;
Doug Zongker76adfc52014-01-13 10:04:25 -0800202
Yabin Cui25dd0382016-02-01 11:40:37 -0800203 std::string s = android::base::StringPrintf("%s\n%" PRId64 " %ld\n",
204 blk_dev, sb.st_size, static_cast<long>(sb.st_blksize));
Elliott Hughesbcabd092016-03-22 20:19:22 -0700205 if (!android::base::WriteStringToFd(s, mapfd)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800206 ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800207 return -1;
208 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800209
Yabin Cui25dd0382016-02-01 11:40:37 -0800210 std::vector<std::vector<unsigned char>> buffers;
Doug Zongker76adfc52014-01-13 10:04:25 -0800211 if (encrypted) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800212 buffers.resize(WINDOW_SIZE, std::vector<unsigned char>(sb.st_blksize));
Doug Zongker76adfc52014-01-13 10:04:25 -0800213 }
214 int head_block = 0;
215 int head = 0, tail = 0;
Doug Zongker76adfc52014-01-13 10:04:25 -0800216
Elliott Hughesbcabd092016-03-22 20:19:22 -0700217 android::base::unique_fd fd(open(path, O_RDONLY));
218 if (fd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800219 ALOGE("failed to open %s for reading: %s", path, strerror(errno));
Doug Zongker76adfc52014-01-13 10:04:25 -0800220 return -1;
221 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800222
Elliott Hughesbcabd092016-03-22 20:19:22 -0700223 android::base::unique_fd wfd;
Doug Zongker76adfc52014-01-13 10:04:25 -0800224 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700225 wfd.reset(open(blk_dev, O_WRONLY));
226 if (wfd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800227 ALOGE("failed to open fd for writing: %s", strerror(errno));
Doug Zongker76adfc52014-01-13 10:04:25 -0800228 return -1;
229 }
230 }
231
Tao Baob8df5fb2015-12-08 22:47:25 -0800232 off64_t pos = 0;
Tao Bao383b00d2015-05-21 16:44:44 -0700233 int last_progress = 0;
Doug Zongker76adfc52014-01-13 10:04:25 -0800234 while (pos < sb.st_size) {
Tao Bao383b00d2015-05-21 16:44:44 -0700235 // Update the status file, progress must be between [0, 99].
236 int progress = static_cast<int>(100 * (double(pos) / double(sb.st_size)));
237 if (progress > last_progress) {
238 last_progress = progress;
239 android::base::WriteStringToFd(std::to_string(progress) + "\n", status_fd);
240 }
241
Doug Zongker76adfc52014-01-13 10:04:25 -0800242 if ((tail+1) % WINDOW_SIZE == head) {
243 // write out head buffer
244 int block = head_block;
Elliott Hughesbcabd092016-03-22 20:19:22 -0700245 if (ioctl(fd, FIBMAP, &block) != 0) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800246 ALOGE("failed to find block %d", head_block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800247 return -1;
248 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800249 add_block_to_ranges(ranges, block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800250 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700251 if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd,
252 static_cast<off64_t>(sb.st_blksize) * block) != 0) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800253 return -1;
254 }
255 }
256 head = (head + 1) % WINDOW_SIZE;
257 ++head_block;
258 }
259
260 // read next block to tail
261 if (encrypted) {
Yabin Cui25dd0382016-02-01 11:40:37 -0800262 size_t to_read = static_cast<size_t>(
263 std::min(static_cast<off64_t>(sb.st_blksize), sb.st_size - pos));
Elliott Hughesbcabd092016-03-22 20:19:22 -0700264 if (!android::base::ReadFully(fd, buffers[tail].data(), to_read)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800265 ALOGE("failed to read: %s", strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800266 return -1;
Doug Zongker76adfc52014-01-13 10:04:25 -0800267 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800268 pos += to_read;
Doug Zongker76adfc52014-01-13 10:04:25 -0800269 } else {
270 // If we're not encrypting; we don't need to actually read
271 // anything, just skip pos forward as if we'd read a
272 // block.
273 pos += sb.st_blksize;
274 }
275 tail = (tail+1) % WINDOW_SIZE;
276 }
277
278 while (head != tail) {
279 // write out head buffer
280 int block = head_block;
Elliott Hughesbcabd092016-03-22 20:19:22 -0700281 if (ioctl(fd, FIBMAP, &block) != 0) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800282 ALOGE("failed to find block %d", head_block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800283 return -1;
284 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800285 add_block_to_ranges(ranges, block);
Doug Zongker76adfc52014-01-13 10:04:25 -0800286 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700287 if (write_at_offset(buffers[head].data(), sb.st_blksize, wfd,
288 static_cast<off64_t>(sb.st_blksize) * block) != 0) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800289 return -1;
290 }
291 }
292 head = (head + 1) % WINDOW_SIZE;
293 ++head_block;
294 }
295
Yabin Cui25dd0382016-02-01 11:40:37 -0800296 if (!android::base::WriteStringToFd(
Elliott Hughesbcabd092016-03-22 20:19:22 -0700297 android::base::StringPrintf("%zu\n", ranges.size() / 2), mapfd)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800298 ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno));
Tao Baofb4ccef2015-05-04 10:10:13 -0700299 return -1;
300 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800301 for (size_t i = 0; i < ranges.size(); i += 2) {
302 if (!android::base::WriteStringToFd(
Elliott Hughesbcabd092016-03-22 20:19:22 -0700303 android::base::StringPrintf("%d %d\n", ranges[i], ranges[i+1]), mapfd)) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800304 ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno));
Tao Baofb4ccef2015-05-04 10:10:13 -0700305 return -1;
306 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800307 }
308
Elliott Hughesbcabd092016-03-22 20:19:22 -0700309 if (fsync(mapfd) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800310 ALOGE("failed to fsync \"%s\": %s", tmp_map_file.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800311 return -1;
312 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700313 if (close(mapfd.release()) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800314 ALOGE("failed to close %s: %s", tmp_map_file.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800315 return -1;
316 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800317
318 if (encrypted) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700319 if (fsync(wfd) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800320 ALOGE("failed to fsync \"%s\": %s", blk_dev, strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800321 return -1;
322 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700323 if (close(wfd.release()) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800324 ALOGE("failed to close %s: %s", blk_dev, strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800325 return -1;
326 }
Yabin Cui25dd0382016-02-01 11:40:37 -0800327 }
328
329 if (rename(tmp_map_file.c_str(), map_file) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800330 ALOGE("failed to rename %s to %s: %s", tmp_map_file.c_str(), map_file, strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800331 return -1;
332 }
333 // Sync dir to make rename() result written to disk.
334 std::string file_name = map_file;
335 std::string dir_name = dirname(&file_name[0]);
Elliott Hughesbcabd092016-03-22 20:19:22 -0700336 android::base::unique_fd dfd(open(dir_name.c_str(), O_RDONLY | O_DIRECTORY));
337 if (dfd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800338 ALOGE("failed to open dir %s: %s", dir_name.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800339 return -1;
340 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700341 if (fsync(dfd) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800342 ALOGE("failed to fsync %s: %s", dir_name.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800343 return -1;
344 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700345 if (close(dfd.release()) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800346 ALOGE("failed to close %s: %s", dir_name.c_str(), strerror(errno));
Yabin Cui25dd0382016-02-01 11:40:37 -0800347 return -1;
348 }
Doug Zongker76adfc52014-01-13 10:04:25 -0800349 return 0;
350}
351
Yabin Cui2d46da52016-01-26 16:50:15 -0800352static std::string get_misc_blk_device() {
353 struct fstab* fstab = read_fstab();
354 if (fstab == nullptr) {
355 return "";
356 }
Tao Bao381f4552015-05-05 18:36:45 -0700357 for (int i = 0; i < fstab->num_entries; ++i) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800358 fstab_rec* v = &fstab->recs[i];
359 if (v->mount_point != nullptr && strcmp(v->mount_point, "/misc") == 0) {
360 return v->blk_device;
Doug Zongker2efc9d92014-08-18 15:55:28 -0700361 }
362 }
Yabin Cui2d46da52016-01-26 16:50:15 -0800363 return "";
364}
365
Yabin Cui2d46da52016-01-26 16:50:15 -0800366static int write_bootloader_message(const bootloader_message* in) {
367 std::string misc_blk_device = get_misc_blk_device();
368 if (misc_blk_device.empty()) {
369 ALOGE("failed to find /misc partition.");
370 return -1;
371 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700372 android::base::unique_fd fd(open(misc_blk_device.c_str(), O_WRONLY | O_SYNC));
373 if (fd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800374 ALOGE("failed to open %s: %s", misc_blk_device.c_str(), strerror(errno));
375 return -1;
376 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700377 if (!android::base::WriteFully(fd, in, sizeof(*in))) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800378 ALOGE("failed to write %s: %s", misc_blk_device.c_str(), strerror(errno));
379 return -1;
380 }
381 // TODO: O_SYNC and fsync() duplicates each other?
Elliott Hughesbcabd092016-03-22 20:19:22 -0700382 if (fsync(fd) == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800383 ALOGE("failed to fsync %s: %s", misc_blk_device.c_str(), strerror(errno));
384 return -1;
385 }
386 return 0;
Doug Zongker2efc9d92014-08-18 15:55:28 -0700387}
388
Tao Bao381f4552015-05-05 18:36:45 -0700389static void reboot_to_recovery() {
Doug Zongkerf449db22014-08-26 09:15:08 -0700390 ALOGI("rebooting to recovery");
Doug Zongker76adfc52014-01-13 10:04:25 -0800391 property_set("sys.powerctl", "reboot,recovery");
Tao Bao75238632015-05-27 14:46:17 -0700392 while (true) {
393 pause();
394 }
Doug Zongkerf449db22014-08-26 09:15:08 -0700395 ALOGE("reboot didn't succeed?");
Doug Zongker76adfc52014-01-13 10:04:25 -0800396}
397
Yabin Cui2d46da52016-01-26 16:50:15 -0800398static int uncrypt(const char* input_path, const char* map_file, int status_fd) {
Doug Zongker76adfc52014-01-13 10:04:25 -0800399
Tao Bao383b00d2015-05-21 16:44:44 -0700400 ALOGI("update package is \"%s\"", input_path);
Doug Zongkerf449db22014-08-26 09:15:08 -0700401
Doug Zongker76adfc52014-01-13 10:04:25 -0800402 // Turn the name of the file we're supposed to convert into an
403 // absolute path, so we can find what filesystem it's on.
404 char path[PATH_MAX+1];
405 if (realpath(input_path, path) == NULL) {
Tao Bao383b00d2015-05-21 16:44:44 -0700406 ALOGE("failed to convert \"%s\" to absolute path: %s", input_path, strerror(errno));
Doug Zongker76adfc52014-01-13 10:04:25 -0800407 return 1;
408 }
409
Doug Zongker2efc9d92014-08-18 15:55:28 -0700410 if (read_fstab() == NULL) {
411 return 1;
412 }
Tao Bao381f4552015-05-05 18:36:45 -0700413
414 bool encryptable;
415 bool encrypted;
Doug Zongker76adfc52014-01-13 10:04:25 -0800416 const char* blk_dev = find_block_device(path, &encryptable, &encrypted);
417 if (blk_dev == NULL) {
Doug Zongkerf449db22014-08-26 09:15:08 -0700418 ALOGE("failed to find block device for %s", path);
Doug Zongker76adfc52014-01-13 10:04:25 -0800419 return 1;
420 }
421
422 // If the filesystem it's on isn't encrypted, we only produce the
423 // block map, we don't rewrite the file contents (it would be
424 // pointless to do so).
Yabin Cui2d46da52016-01-26 16:50:15 -0800425 ALOGI("encryptable: %s", encryptable ? "yes" : "no");
426 ALOGI(" encrypted: %s", encrypted ? "yes" : "no");
Doug Zongker76adfc52014-01-13 10:04:25 -0800427
Doug Zongker574443d2014-09-05 08:22:12 -0700428 // Recovery supports installing packages from 3 paths: /cache,
429 // /data, and /sdcard. (On a particular device, other locations
430 // may work, but those are three we actually expect.)
431 //
432 // On /data we want to convert the file to a block map so that we
433 // can read the package without mounting the partition. On /cache
434 // and /sdcard we leave the file alone.
Tao Bao383b00d2015-05-21 16:44:44 -0700435 if (strncmp(path, "/data/", 6) == 0) {
Doug Zongkerf449db22014-08-26 09:15:08 -0700436 ALOGI("writing block map %s", map_file);
Tao Bao383b00d2015-05-21 16:44:44 -0700437 if (produce_block_map(path, map_file, blk_dev, encrypted, status_fd) != 0) {
438 return 1;
439 }
440 }
441
442 return 0;
443}
444
Yabin Cui2d46da52016-01-26 16:50:15 -0800445static int uncrypt_wrapper(const char* input_path, const char* map_file,
446 const std::string& status_file) {
447 // The pipe has been created by the system server.
Elliott Hughesbcabd092016-03-22 20:19:22 -0700448 android::base::unique_fd status_fd(open(status_file.c_str(),
449 O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR));
450 if (status_fd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800451 ALOGE("failed to open pipe \"%s\": %s", status_file.c_str(), strerror(errno));
452 return 1;
Tao Bao383b00d2015-05-21 16:44:44 -0700453 }
454
Yabin Cui2d46da52016-01-26 16:50:15 -0800455 std::string package;
456 if (input_path == nullptr) {
457 if (!find_uncrypt_package(UNCRYPT_PATH_FILE, &package)) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700458 android::base::WriteStringToFd("-1\n", status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800459 return 1;
460 }
461 input_path = package.c_str();
462 }
463 CHECK(map_file != nullptr);
Elliott Hughesbcabd092016-03-22 20:19:22 -0700464 int status = uncrypt(input_path, map_file, status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800465 if (status != 0) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700466 android::base::WriteStringToFd("-1\n", status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800467 return 1;
468 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700469 android::base::WriteStringToFd("100\n", status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800470 return 0;
471}
472
473static int clear_bcb(const std::string& status_file) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700474 android::base::unique_fd status_fd(open(status_file.c_str(),
475 O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR));
476 if (status_fd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800477 ALOGE("failed to open pipe \"%s\": %s", status_file.c_str(), strerror(errno));
478 return 1;
479 }
480 bootloader_message boot = {};
481 if (write_bootloader_message(&boot) != 0) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700482 android::base::WriteStringToFd("-1\n", status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800483 return 1;
484 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700485 android::base::WriteStringToFd("100\n", status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800486 return 0;
487}
488
489static int setup_bcb(const std::string& command_file, const std::string& status_file) {
Elliott Hughesbcabd092016-03-22 20:19:22 -0700490 android::base::unique_fd status_fd(open(status_file.c_str(),
491 O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR));
492 if (status_fd == -1) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800493 ALOGE("failed to open pipe \"%s\": %s", status_file.c_str(), strerror(errno));
494 return 1;
495 }
496 std::string content;
497 if (!android::base::ReadFileToString(command_file, &content)) {
498 ALOGE("failed to read \"%s\": %s", command_file.c_str(), strerror(errno));
Elliott Hughesbcabd092016-03-22 20:19:22 -0700499 android::base::WriteStringToFd("-1\n", status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800500 return 1;
501 }
502 bootloader_message boot = {};
503 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
504 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
505 strlcat(boot.recovery, content.c_str(), sizeof(boot.recovery));
506 if (write_bootloader_message(&boot) != 0) {
507 ALOGE("failed to set bootloader message");
Elliott Hughesbcabd092016-03-22 20:19:22 -0700508 android::base::WriteStringToFd("-1\n", status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800509 return 1;
510 }
Elliott Hughesbcabd092016-03-22 20:19:22 -0700511 android::base::WriteStringToFd("100\n", status_fd);
Yabin Cui2d46da52016-01-26 16:50:15 -0800512 return 0;
513}
514
Yabin Cui2d46da52016-01-26 16:50:15 -0800515static void usage(const char* exename) {
516 fprintf(stderr, "Usage of %s:\n", exename);
517 fprintf(stderr, "%s [<package_path> <map_file>] Uncrypt ota package.\n", exename);
518 fprintf(stderr, "%s --reboot Clear BCB data and reboot to recovery.\n", exename);
519 fprintf(stderr, "%s --clear-bcb Clear BCB data in misc partition.\n", exename);
520 fprintf(stderr, "%s --setup-bcb Setup BCB data by command file.\n", exename);
Yabin Cui2d46da52016-01-26 16:50:15 -0800521}
522
523int main(int argc, char** argv) {
Tao Bao383b00d2015-05-21 16:44:44 -0700524 if (argc == 2) {
Yabin Cui2d46da52016-01-26 16:50:15 -0800525 if (strcmp(argv[1], "--reboot") == 0) {
526 reboot_to_recovery();
527 } else if (strcmp(argv[1], "--clear-bcb") == 0) {
528 return clear_bcb(STATUS_FILE);
529 } else if (strcmp(argv[1], "--setup-bcb") == 0) {
530 return setup_bcb(COMMAND_FILE, STATUS_FILE);
Doug Zongker76adfc52014-01-13 10:04:25 -0800531 }
Yabin Cui2d46da52016-01-26 16:50:15 -0800532 } else if (argc == 1 || argc == 3) {
533 const char* input_path = nullptr;
534 const char* map_file = CACHE_BLOCK_MAP.c_str();
Tao Baoac6aa7e2015-05-29 14:24:02 -0700535 if (argc == 3) {
Tao Baoac6aa7e2015-05-29 14:24:02 -0700536 input_path = argv[1];
537 map_file = argv[2];
Tao Baoac6aa7e2015-05-29 14:24:02 -0700538 }
Yabin Cui2d46da52016-01-26 16:50:15 -0800539 return uncrypt_wrapper(input_path, map_file, STATUS_FILE);
Doug Zongker76adfc52014-01-13 10:04:25 -0800540 }
Yabin Cui2d46da52016-01-26 16:50:15 -0800541 usage(argv[0]);
542 return 2;
Doug Zongker76adfc52014-01-13 10:04:25 -0800543}