blob: e5bf81960d792cf5e718bfaaeda64cba7880714a [file] [log] [blame]
Paul Crowleyd5759812016-06-02 11:04:27 -07001/*
2 * Copyright (C) 2016 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#include "MetadataCrypt.h"
Paul Crowley14c8c072018-09-18 13:30:21 -070018#include "KeyBuffer.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070019
Paul Crowley14c8c072018-09-18 13:30:21 -070020#include <algorithm>
Paul Crowleyd5759812016-06-02 11:04:27 -070021#include <string>
22#include <thread>
23#include <vector>
24
25#include <fcntl.h>
26#include <sys/ioctl.h>
27#include <sys/param.h>
28#include <sys/stat.h>
29#include <sys/types.h>
30
31#include <linux/dm-ioctl.h>
32
33#include <android-base/logging.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080034#include <android-base/properties.h>
Paul Crowleye4c93da2017-06-16 09:21:18 -070035#include <android-base/unique_fd.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080036#include <cutils/fs.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070037#include <fs_mgr.h>
38
Paul Crowleyd5759812016-06-02 11:04:27 -070039#include "EncryptInplace.h"
40#include "KeyStorage.h"
41#include "KeyUtil.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070042#include "Utils.h"
43#include "VoldUtil.h"
Paul Crowley14c8c072018-09-18 13:30:21 -070044#include "secontext.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070045
Paul Crowleyd5759812016-06-02 11:04:27 -070046#define DM_CRYPT_BUF_SIZE 4096
47#define TABLE_LOAD_RETRIES 10
48#define DEFAULT_KEY_TARGET_TYPE "default-key"
49
Pavel Grafove2e2d302017-08-01 17:15:53 +010050using android::vold::KeyBuffer;
51
Paul Crowleyd5759812016-06-02 11:04:27 -070052static const std::string kDmNameUserdata = "userdata";
53
54static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
55 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
56 // partitions in the fsck domain.
57 if (setexeccon(secontextFsck())) {
58 PLOG(ERROR) << "Failed to setexeccon";
59 return false;
60 }
Paul Crowleye2ee1522017-09-26 14:05:26 -070061 auto mount_rc = fs_mgr_do_mount(fstab_default, const_cast<char*>(mount_point),
Paul Crowleyd5759812016-06-02 11:04:27 -070062 const_cast<char*>(blk_device), nullptr);
63 if (setexeccon(nullptr)) {
64 PLOG(ERROR) << "Failed to clear setexeccon";
65 return false;
66 }
67 if (mount_rc != 0) {
68 LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
69 return false;
70 }
71 LOG(DEBUG) << "Mounted " << mount_point;
72 return true;
73}
74
Paul Crowley0fd26262018-01-30 09:48:19 -080075static bool read_key(struct fstab_rec const* data_rec, bool create_if_absent, KeyBuffer* key) {
Paul Crowleyd5759812016-06-02 11:04:27 -070076 if (!data_rec->key_dir) {
77 LOG(ERROR) << "Failed to get key_dir";
78 return false;
79 }
Paul Crowleyd5759812016-06-02 11:04:27 -070080 std::string key_dir = data_rec->key_dir;
81 auto dir = key_dir + "/key";
Paul Crowley98a23a12018-05-09 13:01:16 -070082 LOG(DEBUG) << "key_dir/key: " << dir;
83 if (fs_mkdirs(dir.c_str(), 0700)) {
Paul Crowley0fd26262018-01-30 09:48:19 -080084 PLOG(ERROR) << "Creating directories: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -070085 return false;
Paul Crowley0fd26262018-01-30 09:48:19 -080086 }
Paul Crowleyd5759812016-06-02 11:04:27 -070087 auto temp = key_dir + "/tmp";
88 if (!android::vold::retrieveKey(create_if_absent, dir, temp, key)) return false;
89 return true;
90}
91
Pavel Grafove2e2d302017-08-01 17:15:53 +010092static KeyBuffer default_key_params(const std::string& real_blkdev, const KeyBuffer& key) {
93 KeyBuffer hex_key;
Paul Crowleyd5759812016-06-02 11:04:27 -070094 if (android::vold::StrToHex(key, hex_key) != android::OK) {
95 LOG(ERROR) << "Failed to turn key to hex";
Pavel Grafove2e2d302017-08-01 17:15:53 +010096 return KeyBuffer();
Paul Crowleyd5759812016-06-02 11:04:27 -070097 }
Pavel Grafove2e2d302017-08-01 17:15:53 +010098 auto res = KeyBuffer() + "AES-256-XTS " + hex_key + " " + real_blkdev.c_str() + " 0";
Paul Crowleyd5759812016-06-02 11:04:27 -070099 return res;
100}
101
Paul Crowley14c8c072018-09-18 13:30:21 -0700102static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200103 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700104 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
105 return false;
106 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700107 return true;
108}
109
Paul Crowley14c8c072018-09-18 13:30:21 -0700110static struct dm_ioctl* dm_ioctl_init(char* buffer, size_t buffer_size, const std::string& dm_name) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700111 if (buffer_size < sizeof(dm_ioctl)) {
112 LOG(ERROR) << "dm_ioctl buffer too small";
113 return nullptr;
114 }
115
116 memset(buffer, 0, buffer_size);
Paul Crowley14c8c072018-09-18 13:30:21 -0700117 struct dm_ioctl* io = (struct dm_ioctl*)buffer;
Paul Crowleyd5759812016-06-02 11:04:27 -0700118 io->data_size = buffer_size;
119 io->data_start = sizeof(struct dm_ioctl);
120 io->version[0] = 4;
121 io->version[1] = 0;
122 io->version[2] = 0;
123 io->flags = 0;
124 dm_name.copy(io->name, sizeof(io->name));
125 return io;
126}
127
128static bool create_crypto_blk_dev(const std::string& dm_name, uint64_t nr_sec,
Pavel Grafove2e2d302017-08-01 17:15:53 +0100129 const std::string& target_type, const KeyBuffer& crypt_params,
Paul Crowleyd5759812016-06-02 11:04:27 -0700130 std::string* crypto_blkdev) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700131 android::base::unique_fd dm_fd(
132 TEMP_FAILURE_RETRY(open("/dev/device-mapper", O_RDWR | O_CLOEXEC, 0)));
Paul Crowleye4c93da2017-06-16 09:21:18 -0700133 if (dm_fd == -1) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700134 PLOG(ERROR) << "Cannot open device-mapper";
135 return false;
136 }
137 alignas(struct dm_ioctl) char buffer[DM_CRYPT_BUF_SIZE];
138 auto io = dm_ioctl_init(buffer, sizeof(buffer), dm_name);
139 if (!io || ioctl(dm_fd.get(), DM_DEV_CREATE, io) != 0) {
140 PLOG(ERROR) << "Cannot create dm-crypt device " << dm_name;
141 return false;
142 }
143
144 // Get the device status, in particular, the name of its device file
145 io = dm_ioctl_init(buffer, sizeof(buffer), dm_name);
146 if (ioctl(dm_fd.get(), DM_DEV_STATUS, io) != 0) {
147 PLOG(ERROR) << "Cannot retrieve dm-crypt device status " << dm_name;
148 return false;
149 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700150 *crypto_blkdev = std::string() + "/dev/block/dm-" +
151 std::to_string((io->dev & 0xff) | ((io->dev >> 12) & 0xfff00));
Paul Crowleyd5759812016-06-02 11:04:27 -0700152
153 io = dm_ioctl_init(buffer, sizeof(buffer), dm_name);
Pavel Grafove2e2d302017-08-01 17:15:53 +0100154 size_t paramix = io->data_start + sizeof(struct dm_target_spec);
155 size_t nullix = paramix + crypt_params.size();
Paul Crowley14c8c072018-09-18 13:30:21 -0700156 size_t endix = (nullix + 1 + 7) & 8; // Add room for \0 and align to 8 byte boundary
Paul Crowleyd5759812016-06-02 11:04:27 -0700157
158 if (endix > sizeof(buffer)) {
159 LOG(ERROR) << "crypt_params too big for DM_CRYPT_BUF_SIZE";
160 return false;
161 }
162
163 io->target_count = 1;
Paul Crowley14c8c072018-09-18 13:30:21 -0700164 auto tgt = (struct dm_target_spec*)(buffer + io->data_start);
Paul Crowleyd5759812016-06-02 11:04:27 -0700165 tgt->status = 0;
166 tgt->sector_start = 0;
167 tgt->length = nr_sec;
168 target_type.copy(tgt->target_type, sizeof(tgt->target_type));
Pavel Grafove2e2d302017-08-01 17:15:53 +0100169 memcpy(buffer + paramix, crypt_params.data(),
Paul Crowley14c8c072018-09-18 13:30:21 -0700170 std::min(crypt_params.size(), sizeof(buffer) - paramix));
Paul Crowleyd5759812016-06-02 11:04:27 -0700171 buffer[nullix] = '\0';
172 tgt->next = endix;
173
Paul Crowley14c8c072018-09-18 13:30:21 -0700174 for (int i = 0;; i++) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700175 if (ioctl(dm_fd.get(), DM_TABLE_LOAD, io) == 0) {
176 break;
177 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700178 if (i + 1 >= TABLE_LOAD_RETRIES) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700179 PLOG(ERROR) << "DM_TABLE_LOAD ioctl failed";
180 return false;
181 }
182 PLOG(INFO) << "DM_TABLE_LOAD ioctl failed, retrying";
183 usleep(500000);
184 }
185
186 // Resume this device to activate it
187 io = dm_ioctl_init(buffer, sizeof(buffer), dm_name);
188 if (ioctl(dm_fd.get(), DM_DEV_SUSPEND, io)) {
189 PLOG(ERROR) << "Cannot resume dm-crypt device " << dm_name;
190 return false;
191 }
192 return true;
193}
194
Paul Crowley0fd26262018-01-30 09:48:19 -0800195bool e4crypt_mount_metadata_encrypted(const std::string& mount_point, bool needs_encrypt) {
196 LOG(DEBUG) << "e4crypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt;
197 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
198 if (encrypted_state != "") {
Paul Crowleyd5759812016-06-02 11:04:27 -0700199 LOG(DEBUG) << "e4crypt_enable_crypto got unexpected starting state: " << encrypted_state;
200 return false;
201 }
Paul Crowley0fd26262018-01-30 09:48:19 -0800202 auto data_rec = fs_mgr_get_entry_for_mount_point(fstab_default, mount_point);
Paul Crowleyd5759812016-06-02 11:04:27 -0700203 if (!data_rec) {
204 LOG(ERROR) << "Failed to get data_rec";
205 return false;
206 }
Paul Crowley0fd26262018-01-30 09:48:19 -0800207 KeyBuffer key;
208 if (!read_key(data_rec, needs_encrypt, &key)) return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700209 uint64_t nr_sec;
210 if (!get_number_of_sectors(data_rec->blk_device, &nr_sec)) return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700211 std::string crypto_blkdev;
212 if (!create_crypto_blk_dev(kDmNameUserdata, nr_sec, DEFAULT_KEY_TARGET_TYPE,
Paul Crowley0fd26262018-01-30 09:48:19 -0800213 default_key_params(data_rec->blk_device, key), &crypto_blkdev))
Paul Crowleyd5759812016-06-02 11:04:27 -0700214 return false;
Paul Crowley0fd26262018-01-30 09:48:19 -0800215 // FIXME handle the corrupt case
216 if (needs_encrypt) {
217 LOG(INFO) << "Beginning inplace encryption, nr_sec: " << nr_sec;
218 off64_t size_already_done = 0;
219 auto rc =
220 cryptfs_enable_inplace(const_cast<char*>(crypto_blkdev.c_str()), data_rec->blk_device,
221 nr_sec, &size_already_done, nr_sec, 0, false);
222 if (rc != 0) {
223 LOG(ERROR) << "Inplace crypto failed with code: " << rc;
224 return false;
225 }
226 if (static_cast<uint64_t>(size_already_done) != nr_sec) {
227 LOG(ERROR) << "Inplace crypto only got up to sector: " << size_already_done;
228 return false;
229 }
230 LOG(INFO) << "Inplace encryption complete";
Paul Crowleyd5759812016-06-02 11:04:27 -0700231 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700232
Paul Crowley0fd26262018-01-30 09:48:19 -0800233 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
Paul Crowleyd5759812016-06-02 11:04:27 -0700234 mount_via_fs_mgr(data_rec->mount_point, crypto_blkdev.c_str());
Paul Crowleyd5759812016-06-02 11:04:27 -0700235 return true;
236}