Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -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 "KeyUtil.h" |
| 18 | |
| 19 | #include <iomanip> |
| 20 | #include <sstream> |
| 21 | #include <string> |
| 22 | |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 23 | #include <fcntl.h> |
Eric Biggers | 3e9c996 | 2019-12-16 15:55:12 -0800 | [diff] [blame] | 24 | #include <linux/fscrypt.h> |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 25 | #include <openssl/sha.h> |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 26 | #include <sys/ioctl.h> |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 27 | |
| 28 | #include <android-base/file.h> |
| 29 | #include <android-base/logging.h> |
Nikita Ioffe | eea8bd3 | 2020-04-20 22:21:49 +0100 | [diff] [blame] | 30 | #include <android-base/properties.h> |
Elliott Hughes | c3bda18 | 2017-05-09 17:01:04 -0700 | [diff] [blame] | 31 | #include <keyutils.h> |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 32 | |
| 33 | #include "KeyStorage.h" |
| 34 | #include "Utils.h" |
| 35 | |
| 36 | namespace android { |
| 37 | namespace vold { |
| 38 | |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 39 | const KeyGeneration neverGen() { |
| 40 | return KeyGeneration{0, false, false}; |
| 41 | } |
| 42 | |
| 43 | static bool randomKey(size_t size, KeyBuffer* key) { |
| 44 | *key = KeyBuffer(size); |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 45 | if (ReadRandomBytes(key->size(), key->data()) != 0) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 46 | // TODO status_t plays badly with PLOG, fix it. |
| 47 | LOG(ERROR) << "Random read failed"; |
| 48 | return false; |
| 49 | } |
| 50 | return true; |
| 51 | } |
| 52 | |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 53 | bool generateStorageKey(const KeyGeneration& gen, KeyBuffer* key) { |
| 54 | if (!gen.allow_gen) return false; |
| 55 | if (gen.use_hw_wrapped_key) { |
| 56 | if (gen.keysize != FSCRYPT_MAX_KEY_SIZE) { |
| 57 | LOG(ERROR) << "Cannot generate a wrapped key " << gen.keysize << " bytes long"; |
| 58 | return false; |
| 59 | } |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 60 | return generateWrappedStorageKey(key); |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 61 | } else { |
| 62 | return randomKey(gen.keysize, key); |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 63 | } |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 64 | } |
| 65 | |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 66 | // Return true if the kernel supports the ioctls to add/remove fscrypt keys |
| 67 | // directly to/from the filesystem. |
| 68 | bool isFsKeyringSupported(void) { |
| 69 | static bool initialized = false; |
| 70 | static bool supported; |
| 71 | |
| 72 | if (!initialized) { |
| 73 | android::base::unique_fd fd(open("/data", O_RDONLY | O_DIRECTORY | O_CLOEXEC)); |
| 74 | |
| 75 | // FS_IOC_ADD_ENCRYPTION_KEY with a NULL argument will fail with ENOTTY |
| 76 | // if the ioctl isn't supported. Otherwise it will fail with another |
| 77 | // error code such as EFAULT. |
| 78 | errno = 0; |
| 79 | (void)ioctl(fd, FS_IOC_ADD_ENCRYPTION_KEY, NULL); |
| 80 | if (errno == ENOTTY) { |
| 81 | LOG(INFO) << "Kernel doesn't support FS_IOC_ADD_ENCRYPTION_KEY. Falling back to " |
| 82 | "session keyring"; |
| 83 | supported = false; |
| 84 | } else { |
| 85 | if (errno != EFAULT) { |
| 86 | PLOG(WARNING) << "Unexpected error from FS_IOC_ADD_ENCRYPTION_KEY"; |
| 87 | } |
| 88 | LOG(DEBUG) << "Detected support for FS_IOC_ADD_ENCRYPTION_KEY"; |
| 89 | supported = true; |
Nikita Ioffe | eea8bd3 | 2020-04-20 22:21:49 +0100 | [diff] [blame] | 90 | android::base::SetProperty("ro.crypto.uses_fs_ioc_add_encryption_key", "true"); |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 91 | } |
| 92 | // There's no need to check for FS_IOC_REMOVE_ENCRYPTION_KEY, since it's |
| 93 | // guaranteed to be available if FS_IOC_ADD_ENCRYPTION_KEY is. There's |
| 94 | // also no need to check for support on external volumes separately from |
| 95 | // /data, since either the kernel supports the ioctls on all |
| 96 | // fscrypt-capable filesystems or it doesn't. |
| 97 | |
| 98 | initialized = true; |
| 99 | } |
| 100 | return supported; |
| 101 | } |
| 102 | |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 103 | // Get raw keyref - used to make keyname and to pass to ioctl |
Eric Biggers | ba997ee | 2018-10-23 13:07:43 -0700 | [diff] [blame] | 104 | static std::string generateKeyRef(const uint8_t* key, int length) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 105 | SHA512_CTX c; |
| 106 | |
| 107 | SHA512_Init(&c); |
| 108 | SHA512_Update(&c, key, length); |
| 109 | unsigned char key_ref1[SHA512_DIGEST_LENGTH]; |
| 110 | SHA512_Final(key_ref1, &c); |
| 111 | |
| 112 | SHA512_Init(&c); |
| 113 | SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH); |
| 114 | unsigned char key_ref2[SHA512_DIGEST_LENGTH]; |
| 115 | SHA512_Final(key_ref2, &c); |
| 116 | |
Eric Biggers | 506342f | 2019-12-17 13:11:25 -0800 | [diff] [blame] | 117 | static_assert(FSCRYPT_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH, |
| 118 | "Hash too short for descriptor"); |
| 119 | return std::string((char*)key_ref2, FSCRYPT_KEY_DESCRIPTOR_SIZE); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 122 | static bool fillKey(const KeyBuffer& key, fscrypt_key* fs_key) { |
Eric Biggers | 506342f | 2019-12-17 13:11:25 -0800 | [diff] [blame] | 123 | if (key.size() != FSCRYPT_MAX_KEY_SIZE) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 124 | LOG(ERROR) << "Wrong size key " << key.size(); |
| 125 | return false; |
| 126 | } |
Eric Biggers | 506342f | 2019-12-17 13:11:25 -0800 | [diff] [blame] | 127 | static_assert(FSCRYPT_MAX_KEY_SIZE == sizeof(fs_key->raw), "Mismatch of max key sizes"); |
| 128 | fs_key->mode = 0; // unused by kernel |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 129 | memcpy(fs_key->raw, key.data(), key.size()); |
Eric Biggers | 506342f | 2019-12-17 13:11:25 -0800 | [diff] [blame] | 130 | fs_key->size = key.size(); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 131 | return true; |
| 132 | } |
| 133 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 134 | static char const* const NAME_PREFIXES[] = {"ext4", "f2fs", "fscrypt", nullptr}; |
Paul Crowley | cd8bfe3 | 2017-06-19 16:05:55 -0700 | [diff] [blame] | 135 | |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 136 | static std::string keyrefstring(const std::string& raw_ref) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 137 | std::ostringstream o; |
Chen, Luhai | 5744dfe | 2017-08-18 14:49:45 +0800 | [diff] [blame] | 138 | for (unsigned char i : raw_ref) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 139 | o << std::hex << std::setw(2) << std::setfill('0') << (int)i; |
| 140 | } |
| 141 | return o.str(); |
| 142 | } |
| 143 | |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 144 | static std::string buildLegacyKeyName(const std::string& prefix, const std::string& raw_ref) { |
| 145 | return prefix + ":" + keyrefstring(raw_ref); |
| 146 | } |
| 147 | |
| 148 | // Get the ID of the keyring we store all fscrypt keys in when the kernel is too |
| 149 | // old to support FS_IOC_ADD_ENCRYPTION_KEY and FS_IOC_REMOVE_ENCRYPTION_KEY. |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 150 | static bool fscryptKeyring(key_serial_t* device_keyring) { |
| 151 | *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "fscrypt", 0); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 152 | if (*device_keyring == -1) { |
| 153 | PLOG(ERROR) << "Unable to find device keyring"; |
| 154 | return false; |
| 155 | } |
| 156 | return true; |
| 157 | } |
| 158 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 159 | // Add an encryption key of type "logon" to the global session keyring. |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 160 | static bool installKeyLegacy(const KeyBuffer& key, const std::string& raw_ref) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 161 | // Place fscrypt_key into automatically zeroing buffer. |
| 162 | KeyBuffer fsKeyBuffer(sizeof(fscrypt_key)); |
| 163 | fscrypt_key& fs_key = *reinterpret_cast<fscrypt_key*>(fsKeyBuffer.data()); |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 164 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 165 | if (!fillKey(key, &fs_key)) return false; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 166 | key_serial_t device_keyring; |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 167 | if (!fscryptKeyring(&device_keyring)) return false; |
Paul Crowley | cd8bfe3 | 2017-06-19 16:05:55 -0700 | [diff] [blame] | 168 | for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) { |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 169 | auto ref = buildLegacyKeyName(*name_prefix, raw_ref); |
Paul Crowley | cd8bfe3 | 2017-06-19 16:05:55 -0700 | [diff] [blame] | 170 | key_serial_t key_id = |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 171 | add_key("logon", ref.c_str(), (void*)&fs_key, sizeof(fs_key), device_keyring); |
Paul Crowley | cd8bfe3 | 2017-06-19 16:05:55 -0700 | [diff] [blame] | 172 | if (key_id == -1) { |
| 173 | PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring; |
| 174 | return false; |
| 175 | } |
| 176 | LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring |
| 177 | << " in process " << getpid(); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 178 | } |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 179 | return true; |
| 180 | } |
| 181 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 182 | // Installs fscrypt-provisioning key into session level kernel keyring. |
| 183 | // This allows for the given key to be installed back into filesystem keyring. |
| 184 | // For more context see reloadKeyFromSessionKeyring. |
| 185 | static bool installProvisioningKey(const KeyBuffer& key, const std::string& ref, |
| 186 | const fscrypt_key_specifier& key_spec) { |
| 187 | key_serial_t device_keyring; |
| 188 | if (!fscryptKeyring(&device_keyring)) return false; |
| 189 | |
| 190 | // Place fscrypt_provisioning_key_payload into automatically zeroing buffer. |
| 191 | KeyBuffer buf(sizeof(fscrypt_provisioning_key_payload) + key.size(), 0); |
| 192 | fscrypt_provisioning_key_payload& provisioning_key = |
| 193 | *reinterpret_cast<fscrypt_provisioning_key_payload*>(buf.data()); |
| 194 | memcpy(provisioning_key.raw, key.data(), key.size()); |
| 195 | provisioning_key.type = key_spec.type; |
| 196 | |
| 197 | key_serial_t key_id = add_key("fscrypt-provisioning", ref.c_str(), (void*)&provisioning_key, |
| 198 | buf.size(), device_keyring); |
| 199 | if (key_id == -1) { |
| 200 | PLOG(ERROR) << "Failed to insert fscrypt-provisioning key for " << ref |
| 201 | << " into session keyring"; |
| 202 | return false; |
| 203 | } |
| 204 | LOG(DEBUG) << "Added fscrypt-provisioning key for " << ref << " to session keyring"; |
| 205 | return true; |
| 206 | } |
| 207 | |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 208 | // Build a struct fscrypt_key_specifier for use in the key management ioctls. |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 209 | static bool buildKeySpecifier(fscrypt_key_specifier* spec, const EncryptionPolicy& policy) { |
| 210 | switch (policy.options.version) { |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 211 | case 1: |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 212 | if (policy.key_raw_ref.size() != FSCRYPT_KEY_DESCRIPTOR_SIZE) { |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 213 | LOG(ERROR) << "Invalid key specifier size for v1 encryption policy: " |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 214 | << policy.key_raw_ref.size(); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 215 | return false; |
| 216 | } |
| 217 | spec->type = FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 218 | memcpy(spec->u.descriptor, policy.key_raw_ref.c_str(), FSCRYPT_KEY_DESCRIPTOR_SIZE); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 219 | return true; |
| 220 | case 2: |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 221 | if (policy.key_raw_ref.size() != FSCRYPT_KEY_IDENTIFIER_SIZE) { |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 222 | LOG(ERROR) << "Invalid key specifier size for v2 encryption policy: " |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 223 | << policy.key_raw_ref.size(); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 224 | return false; |
| 225 | } |
| 226 | spec->type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 227 | memcpy(spec->u.identifier, policy.key_raw_ref.c_str(), FSCRYPT_KEY_IDENTIFIER_SIZE); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 228 | return true; |
| 229 | default: |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 230 | LOG(ERROR) << "Invalid encryption policy version: " << policy.options.version; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 231 | return false; |
| 232 | } |
| 233 | } |
| 234 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 235 | // Installs key into keyring of a filesystem mounted on |mountpoint|. |
| 236 | // |
| 237 | // It's callers responsibility to fill key specifier, and either arg->raw or arg->key_id. |
| 238 | // |
| 239 | // In case arg->key_spec.type equals to FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER |
| 240 | // arg->key_spec.u.identifier will be populated with raw key reference generated |
| 241 | // by kernel. |
| 242 | // |
| 243 | // For documentation on difference between arg->raw and arg->key_id see |
| 244 | // https://www.kernel.org/doc/html/latest/filesystems/fscrypt.html#fs-ioc-add-encryption-key |
| 245 | static bool installFsKeyringKey(const std::string& mountpoint, const EncryptionOptions& options, |
| 246 | fscrypt_add_key_arg* arg) { |
Eric Biggers | e0217d7 | 2020-07-16 16:31:00 -0700 | [diff] [blame^] | 247 | if (options.use_hw_wrapped_key) arg->__flags |= __FSCRYPT_ADD_KEY_FLAG_HW_WRAPPED; |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 248 | |
| 249 | android::base::unique_fd fd(open(mountpoint.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC)); |
| 250 | if (fd == -1) { |
| 251 | PLOG(ERROR) << "Failed to open " << mountpoint << " to install key"; |
| 252 | return false; |
| 253 | } |
| 254 | |
| 255 | if (ioctl(fd, FS_IOC_ADD_ENCRYPTION_KEY, arg) != 0) { |
| 256 | PLOG(ERROR) << "Failed to install fscrypt key to " << mountpoint; |
| 257 | return false; |
| 258 | } |
| 259 | |
| 260 | return true; |
| 261 | } |
| 262 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 263 | bool installKey(const std::string& mountpoint, const EncryptionOptions& options, |
| 264 | const KeyBuffer& key, EncryptionPolicy* policy) { |
| 265 | policy->options = options; |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 266 | // Put the fscrypt_add_key_arg in an automatically-zeroing buffer, since we |
| 267 | // have to copy the raw key into it. |
| 268 | KeyBuffer arg_buf(sizeof(struct fscrypt_add_key_arg) + key.size(), 0); |
| 269 | struct fscrypt_add_key_arg* arg = (struct fscrypt_add_key_arg*)arg_buf.data(); |
| 270 | |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 271 | // Initialize the "key specifier", which is like a name for the key. |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 272 | switch (options.version) { |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 273 | case 1: |
| 274 | // A key for a v1 policy is specified by an arbitrary 8-byte |
| 275 | // "descriptor", which must be provided by userspace. We use the |
| 276 | // first 8 bytes from the double SHA-512 of the key itself. |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 277 | policy->key_raw_ref = generateKeyRef((const uint8_t*)key.data(), key.size()); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 278 | if (!isFsKeyringSupported()) { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 279 | return installKeyLegacy(key, policy->key_raw_ref); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 280 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 281 | if (!buildKeySpecifier(&arg->key_spec, *policy)) { |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 282 | return false; |
| 283 | } |
| 284 | break; |
| 285 | case 2: |
| 286 | // A key for a v2 policy is specified by an 16-byte "identifier", |
| 287 | // which is a cryptographic hash of the key itself which the kernel |
| 288 | // computes and returns. Any user-provided value is ignored; we |
| 289 | // just need to set the specifier type to indicate that we're adding |
| 290 | // this type of key. |
| 291 | arg->key_spec.type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER; |
| 292 | break; |
| 293 | default: |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 294 | LOG(ERROR) << "Invalid encryption policy version: " << options.version; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 295 | return false; |
| 296 | } |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 297 | |
| 298 | arg->raw_size = key.size(); |
| 299 | memcpy(arg->raw, key.data(), key.size()); |
| 300 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 301 | if (!installFsKeyringKey(mountpoint, options, arg)) return false; |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 302 | |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 303 | if (arg->key_spec.type == FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER) { |
| 304 | // Retrieve the key identifier that the kernel computed. |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 305 | policy->key_raw_ref = |
| 306 | std::string((char*)arg->key_spec.u.identifier, FSCRYPT_KEY_IDENTIFIER_SIZE); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 307 | } |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 308 | std::string ref = keyrefstring(policy->key_raw_ref); |
| 309 | LOG(DEBUG) << "Installed fscrypt key with ref " << ref << " to " << mountpoint; |
| 310 | |
| 311 | if (!installProvisioningKey(key, ref, arg->key_spec)) return false; |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 312 | return true; |
| 313 | } |
| 314 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 315 | // Remove an encryption key of type "logon" from the global session keyring. |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 316 | static bool evictKeyLegacy(const std::string& raw_ref) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 317 | key_serial_t device_keyring; |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 318 | if (!fscryptKeyring(&device_keyring)) return false; |
Paul Crowley | cd8bfe3 | 2017-06-19 16:05:55 -0700 | [diff] [blame] | 319 | bool success = true; |
| 320 | for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) { |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 321 | auto ref = buildLegacyKeyName(*name_prefix, raw_ref); |
Paul Crowley | cd8bfe3 | 2017-06-19 16:05:55 -0700 | [diff] [blame] | 322 | auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 323 | |
Paul Crowley | cd8bfe3 | 2017-06-19 16:05:55 -0700 | [diff] [blame] | 324 | // Unlink the key from the keyring. Prefer unlinking to revoking or |
| 325 | // invalidating, since unlinking is actually no less secure currently, and |
| 326 | // it avoids bugs in certain kernel versions where the keyring key is |
| 327 | // referenced from places it shouldn't be. |
| 328 | if (keyctl_unlink(key_serial, device_keyring) != 0) { |
| 329 | PLOG(ERROR) << "Failed to unlink key with serial " << key_serial << " ref " << ref; |
| 330 | success = false; |
| 331 | } else { |
| 332 | LOG(DEBUG) << "Unlinked key with serial " << key_serial << " ref " << ref; |
| 333 | } |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 334 | } |
Paul Crowley | cd8bfe3 | 2017-06-19 16:05:55 -0700 | [diff] [blame] | 335 | return success; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 338 | static bool evictProvisioningKey(const std::string& ref) { |
| 339 | key_serial_t device_keyring; |
| 340 | if (!fscryptKeyring(&device_keyring)) { |
| 341 | return false; |
| 342 | } |
| 343 | |
| 344 | auto key_serial = keyctl_search(device_keyring, "fscrypt-provisioning", ref.c_str(), 0); |
| 345 | if (key_serial == -1 && errno != ENOKEY) { |
| 346 | PLOG(ERROR) << "Error searching session keyring for fscrypt-provisioning key for " << ref; |
| 347 | return false; |
| 348 | } |
| 349 | |
| 350 | if (key_serial != -1 && keyctl_unlink(key_serial, device_keyring) != 0) { |
| 351 | PLOG(ERROR) << "Failed to unlink fscrypt-provisioning key for " << ref |
| 352 | << " from session keyring"; |
| 353 | return false; |
| 354 | } |
| 355 | return true; |
| 356 | } |
| 357 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 358 | bool evictKey(const std::string& mountpoint, const EncryptionPolicy& policy) { |
| 359 | if (policy.options.version == 1 && !isFsKeyringSupported()) { |
| 360 | return evictKeyLegacy(policy.key_raw_ref); |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | android::base::unique_fd fd(open(mountpoint.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC)); |
| 364 | if (fd == -1) { |
| 365 | PLOG(ERROR) << "Failed to open " << mountpoint << " to evict key"; |
| 366 | return false; |
| 367 | } |
| 368 | |
| 369 | struct fscrypt_remove_key_arg arg; |
| 370 | memset(&arg, 0, sizeof(arg)); |
| 371 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 372 | if (!buildKeySpecifier(&arg.key_spec, policy)) { |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 373 | return false; |
| 374 | } |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 375 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 376 | std::string ref = keyrefstring(policy.key_raw_ref); |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 377 | |
| 378 | if (ioctl(fd, FS_IOC_REMOVE_ENCRYPTION_KEY, &arg) != 0) { |
| 379 | PLOG(ERROR) << "Failed to evict fscrypt key with ref " << ref << " from " << mountpoint; |
| 380 | return false; |
| 381 | } |
| 382 | |
| 383 | LOG(DEBUG) << "Evicted fscrypt key with ref " << ref << " from " << mountpoint; |
| 384 | if (arg.removal_status_flags & FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS) { |
| 385 | // Should never happen because keys are only added/removed as root. |
| 386 | LOG(ERROR) << "Unexpected case: key with ref " << ref << " is still added by other users!"; |
| 387 | } else if (arg.removal_status_flags & FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY) { |
| 388 | LOG(ERROR) << "Files still open after removing key with ref " << ref |
| 389 | << ". These files were not locked!"; |
| 390 | } |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 391 | |
| 392 | if (!evictProvisioningKey(ref)) return false; |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 393 | return true; |
| 394 | } |
| 395 | |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 396 | bool retrieveOrGenerateKey(const std::string& key_path, const std::string& tmp_path, |
| 397 | const KeyAuthentication& key_authentication, const KeyGeneration& gen, |
| 398 | KeyBuffer* key, bool keepOld) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 399 | if (pathExists(key_path)) { |
| 400 | LOG(DEBUG) << "Key exists, using: " << key_path; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 401 | if (!retrieveKey(key_path, key_authentication, key, keepOld)) return false; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 402 | } else { |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 403 | if (!gen.allow_gen) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 404 | LOG(ERROR) << "No key found in " << key_path; |
| 405 | return false; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 406 | } |
| 407 | LOG(INFO) << "Creating new key in " << key_path; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 408 | if (!generateStorageKey(gen, key)) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 409 | if (!storeKeyAtomically(key_path, tmp_path, key_authentication, *key)) return false; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 410 | } |
| 411 | return true; |
| 412 | } |
| 413 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 414 | bool reloadKeyFromSessionKeyring(const std::string& mountpoint, const EncryptionPolicy& policy) { |
| 415 | key_serial_t device_keyring; |
| 416 | if (!fscryptKeyring(&device_keyring)) { |
| 417 | return false; |
| 418 | } |
| 419 | |
| 420 | std::string ref = keyrefstring(policy.key_raw_ref); |
| 421 | auto key_serial = keyctl_search(device_keyring, "fscrypt-provisioning", ref.c_str(), 0); |
| 422 | if (key_serial == -1) { |
| 423 | PLOG(ERROR) << "Failed to find fscrypt-provisioning key for " << ref |
| 424 | << " in session keyring"; |
| 425 | return false; |
| 426 | } |
| 427 | |
| 428 | LOG(DEBUG) << "Installing fscrypt-provisioning key for " << ref << " back into " << mountpoint |
| 429 | << " fs-keyring"; |
| 430 | |
| 431 | struct fscrypt_add_key_arg arg; |
| 432 | memset(&arg, 0, sizeof(arg)); |
| 433 | if (!buildKeySpecifier(&arg.key_spec, policy)) return false; |
| 434 | arg.key_id = key_serial; |
| 435 | if (!installFsKeyringKey(mountpoint, policy.options, &arg)) return false; |
| 436 | |
| 437 | return true; |
| 438 | } |
| 439 | |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 440 | } // namespace vold |
| 441 | } // namespace android |