Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 1 | /* |
| 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 Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 18 | #include "KeyBuffer.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 19 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 20 | #include <algorithm> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 21 | #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 Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 34 | #include <android-base/properties.h> |
Paul Crowley | e4c93da | 2017-06-16 09:21:18 -0700 | [diff] [blame] | 35 | #include <android-base/unique_fd.h> |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 36 | #include <cutils/fs.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 37 | #include <fs_mgr.h> |
| 38 | |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 39 | #include "Checkpoint.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 40 | #include "EncryptInplace.h" |
| 41 | #include "KeyStorage.h" |
| 42 | #include "KeyUtil.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 43 | #include "Utils.h" |
| 44 | #include "VoldUtil.h" |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 45 | #include "secontext.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 46 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 47 | #define DM_CRYPT_BUF_SIZE 4096 |
| 48 | #define TABLE_LOAD_RETRIES 10 |
| 49 | #define DEFAULT_KEY_TARGET_TYPE "default-key" |
| 50 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 51 | using android::vold::KeyBuffer; |
| 52 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 53 | static const std::string kDmNameUserdata = "userdata"; |
| 54 | |
| 55 | static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) { |
| 56 | // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted |
| 57 | // partitions in the fsck domain. |
| 58 | if (setexeccon(secontextFsck())) { |
| 59 | PLOG(ERROR) << "Failed to setexeccon"; |
| 60 | return false; |
| 61 | } |
Paul Crowley | e2ee152 | 2017-09-26 14:05:26 -0700 | [diff] [blame] | 62 | auto mount_rc = fs_mgr_do_mount(fstab_default, const_cast<char*>(mount_point), |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 63 | const_cast<char*>(blk_device), nullptr, |
| 64 | android::vold::cp_needsCheckpoint()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 65 | if (setexeccon(nullptr)) { |
| 66 | PLOG(ERROR) << "Failed to clear setexeccon"; |
| 67 | return false; |
| 68 | } |
| 69 | if (mount_rc != 0) { |
| 70 | LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc; |
| 71 | return false; |
| 72 | } |
| 73 | LOG(DEBUG) << "Mounted " << mount_point; |
| 74 | return true; |
| 75 | } |
| 76 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 77 | static bool read_key(struct fstab_rec const* data_rec, bool create_if_absent, KeyBuffer* key) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 78 | if (!data_rec->key_dir) { |
| 79 | LOG(ERROR) << "Failed to get key_dir"; |
| 80 | return false; |
| 81 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 82 | std::string key_dir = data_rec->key_dir; |
| 83 | auto dir = key_dir + "/key"; |
Paul Crowley | 98a23a1 | 2018-05-09 13:01:16 -0700 | [diff] [blame] | 84 | LOG(DEBUG) << "key_dir/key: " << dir; |
| 85 | if (fs_mkdirs(dir.c_str(), 0700)) { |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 86 | PLOG(ERROR) << "Creating directories: " << dir; |
Paul Crowley | 98a23a1 | 2018-05-09 13:01:16 -0700 | [diff] [blame] | 87 | return false; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 88 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 89 | auto temp = key_dir + "/tmp"; |
| 90 | if (!android::vold::retrieveKey(create_if_absent, dir, temp, key)) return false; |
| 91 | return true; |
| 92 | } |
| 93 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 94 | static KeyBuffer default_key_params(const std::string& real_blkdev, const KeyBuffer& key) { |
| 95 | KeyBuffer hex_key; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 96 | if (android::vold::StrToHex(key, hex_key) != android::OK) { |
| 97 | LOG(ERROR) << "Failed to turn key to hex"; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 98 | return KeyBuffer(); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 99 | } |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 100 | auto res = KeyBuffer() + "AES-256-XTS " + hex_key + " " + real_blkdev.c_str() + " 0"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 101 | return res; |
| 102 | } |
| 103 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 104 | static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) { |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 105 | if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 106 | PLOG(ERROR) << "Unable to measure size of " << real_blkdev; |
| 107 | return false; |
| 108 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 109 | return true; |
| 110 | } |
| 111 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 112 | static struct dm_ioctl* dm_ioctl_init(char* buffer, size_t buffer_size, const std::string& dm_name) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 113 | if (buffer_size < sizeof(dm_ioctl)) { |
| 114 | LOG(ERROR) << "dm_ioctl buffer too small"; |
| 115 | return nullptr; |
| 116 | } |
| 117 | |
| 118 | memset(buffer, 0, buffer_size); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 119 | struct dm_ioctl* io = (struct dm_ioctl*)buffer; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 120 | io->data_size = buffer_size; |
| 121 | io->data_start = sizeof(struct dm_ioctl); |
| 122 | io->version[0] = 4; |
| 123 | io->version[1] = 0; |
| 124 | io->version[2] = 0; |
| 125 | io->flags = 0; |
| 126 | dm_name.copy(io->name, sizeof(io->name)); |
| 127 | return io; |
| 128 | } |
| 129 | |
| 130 | static bool create_crypto_blk_dev(const std::string& dm_name, uint64_t nr_sec, |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 131 | const std::string& target_type, const KeyBuffer& crypt_params, |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 132 | std::string* crypto_blkdev) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 133 | android::base::unique_fd dm_fd( |
| 134 | TEMP_FAILURE_RETRY(open("/dev/device-mapper", O_RDWR | O_CLOEXEC, 0))); |
Paul Crowley | e4c93da | 2017-06-16 09:21:18 -0700 | [diff] [blame] | 135 | if (dm_fd == -1) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 136 | PLOG(ERROR) << "Cannot open device-mapper"; |
| 137 | return false; |
| 138 | } |
| 139 | alignas(struct dm_ioctl) char buffer[DM_CRYPT_BUF_SIZE]; |
| 140 | auto io = dm_ioctl_init(buffer, sizeof(buffer), dm_name); |
| 141 | if (!io || ioctl(dm_fd.get(), DM_DEV_CREATE, io) != 0) { |
| 142 | PLOG(ERROR) << "Cannot create dm-crypt device " << dm_name; |
| 143 | return false; |
| 144 | } |
| 145 | |
| 146 | // Get the device status, in particular, the name of its device file |
| 147 | io = dm_ioctl_init(buffer, sizeof(buffer), dm_name); |
| 148 | if (ioctl(dm_fd.get(), DM_DEV_STATUS, io) != 0) { |
| 149 | PLOG(ERROR) << "Cannot retrieve dm-crypt device status " << dm_name; |
| 150 | return false; |
| 151 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 152 | *crypto_blkdev = std::string() + "/dev/block/dm-" + |
| 153 | std::to_string((io->dev & 0xff) | ((io->dev >> 12) & 0xfff00)); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 154 | |
| 155 | io = dm_ioctl_init(buffer, sizeof(buffer), dm_name); |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 156 | size_t paramix = io->data_start + sizeof(struct dm_target_spec); |
| 157 | size_t nullix = paramix + crypt_params.size(); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 158 | size_t endix = (nullix + 1 + 7) & 8; // Add room for \0 and align to 8 byte boundary |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 159 | |
| 160 | if (endix > sizeof(buffer)) { |
| 161 | LOG(ERROR) << "crypt_params too big for DM_CRYPT_BUF_SIZE"; |
| 162 | return false; |
| 163 | } |
| 164 | |
| 165 | io->target_count = 1; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 166 | auto tgt = (struct dm_target_spec*)(buffer + io->data_start); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 167 | tgt->status = 0; |
| 168 | tgt->sector_start = 0; |
| 169 | tgt->length = nr_sec; |
| 170 | target_type.copy(tgt->target_type, sizeof(tgt->target_type)); |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 171 | memcpy(buffer + paramix, crypt_params.data(), |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 172 | std::min(crypt_params.size(), sizeof(buffer) - paramix)); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 173 | buffer[nullix] = '\0'; |
| 174 | tgt->next = endix; |
| 175 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 176 | for (int i = 0;; i++) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 177 | if (ioctl(dm_fd.get(), DM_TABLE_LOAD, io) == 0) { |
| 178 | break; |
| 179 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 180 | if (i + 1 >= TABLE_LOAD_RETRIES) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 181 | PLOG(ERROR) << "DM_TABLE_LOAD ioctl failed"; |
| 182 | return false; |
| 183 | } |
| 184 | PLOG(INFO) << "DM_TABLE_LOAD ioctl failed, retrying"; |
| 185 | usleep(500000); |
| 186 | } |
| 187 | |
| 188 | // Resume this device to activate it |
| 189 | io = dm_ioctl_init(buffer, sizeof(buffer), dm_name); |
| 190 | if (ioctl(dm_fd.get(), DM_DEV_SUSPEND, io)) { |
| 191 | PLOG(ERROR) << "Cannot resume dm-crypt device " << dm_name; |
| 192 | return false; |
| 193 | } |
| 194 | return true; |
| 195 | } |
| 196 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 197 | bool fscrypt_mount_metadata_encrypted(const std::string& mount_point, bool needs_encrypt) { |
| 198 | LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 199 | auto encrypted_state = android::base::GetProperty("ro.crypto.state", ""); |
| 200 | if (encrypted_state != "") { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 201 | LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 202 | return false; |
| 203 | } |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 204 | auto data_rec = fs_mgr_get_entry_for_mount_point(fstab_default, mount_point); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 205 | if (!data_rec) { |
| 206 | LOG(ERROR) << "Failed to get data_rec"; |
| 207 | return false; |
| 208 | } |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 209 | KeyBuffer key; |
| 210 | if (!read_key(data_rec, needs_encrypt, &key)) return false; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 211 | uint64_t nr_sec; |
| 212 | if (!get_number_of_sectors(data_rec->blk_device, &nr_sec)) return false; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 213 | std::string crypto_blkdev; |
| 214 | if (!create_crypto_blk_dev(kDmNameUserdata, nr_sec, DEFAULT_KEY_TARGET_TYPE, |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 215 | default_key_params(data_rec->blk_device, key), &crypto_blkdev)) |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 216 | return false; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 217 | // FIXME handle the corrupt case |
| 218 | if (needs_encrypt) { |
| 219 | LOG(INFO) << "Beginning inplace encryption, nr_sec: " << nr_sec; |
| 220 | off64_t size_already_done = 0; |
| 221 | auto rc = |
| 222 | cryptfs_enable_inplace(const_cast<char*>(crypto_blkdev.c_str()), data_rec->blk_device, |
| 223 | nr_sec, &size_already_done, nr_sec, 0, false); |
| 224 | if (rc != 0) { |
| 225 | LOG(ERROR) << "Inplace crypto failed with code: " << rc; |
| 226 | return false; |
| 227 | } |
| 228 | if (static_cast<uint64_t>(size_already_done) != nr_sec) { |
| 229 | LOG(ERROR) << "Inplace crypto only got up to sector: " << size_already_done; |
| 230 | return false; |
| 231 | } |
| 232 | LOG(INFO) << "Inplace encryption complete"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 233 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 234 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 235 | LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 236 | mount_via_fs_mgr(data_rec->mount_point, crypto_blkdev.c_str()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 237 | return true; |
| 238 | } |