blob: 886054e699da953303cf6d6da51ea02dfeb6fd67 [file] [log] [blame]
Paul Crowleyf71ace32016-06-02 11:01:19 -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 "KeyUtil.h"
18
19#include <iomanip>
20#include <sstream>
21#include <string>
22
Eric Biggersf3dc4202019-09-30 13:05:58 -070023#include <fcntl.h>
Eric Biggers3e9c9962019-12-16 15:55:12 -080024#include <linux/fscrypt.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070025#include <openssl/sha.h>
Eric Biggersf3dc4202019-09-30 13:05:58 -070026#include <sys/ioctl.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070027
28#include <android-base/file.h>
29#include <android-base/logging.h>
Nikita Ioffeeea8bd32020-04-20 22:21:49 +010030#include <android-base/properties.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070031#include <keyutils.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070032
33#include "KeyStorage.h"
34#include "Utils.h"
35
36namespace android {
37namespace vold {
38
Paul Crowley4eac2642020-02-12 11:04:05 -080039const KeyGeneration neverGen() {
40 return KeyGeneration{0, false, false};
41}
42
43static bool randomKey(size_t size, KeyBuffer* key) {
44 *key = KeyBuffer(size);
Pavel Grafove2e2d302017-08-01 17:15:53 +010045 if (ReadRandomBytes(key->size(), key->data()) != 0) {
Paul Crowleyf71ace32016-06-02 11:01:19 -070046 // 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 Crowley4eac2642020-02-12 11:04:05 -080053bool 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 }
Eric Biggersb2024e02021-03-15 12:44:36 -070060 LOG(DEBUG) << "Generating wrapped storage key";
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080061 return generateWrappedStorageKey(key);
Paul Crowley4eac2642020-02-12 11:04:05 -080062 } else {
Eric Biggersb2024e02021-03-15 12:44:36 -070063 LOG(DEBUG) << "Generating standard storage key";
Paul Crowley4eac2642020-02-12 11:04:05 -080064 return randomKey(gen.keysize, key);
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080065 }
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080066}
67
Eric Biggers7604eb92020-07-16 14:29:59 -070068static bool isFsKeyringSupportedImpl() {
69 android::base::unique_fd fd(open("/data", O_RDONLY | O_DIRECTORY | O_CLOEXEC));
70
71 // FS_IOC_ADD_ENCRYPTION_KEY with a NULL argument will fail with ENOTTY if
72 // the ioctl isn't supported. Otherwise it will fail with another error
73 // code such as EFAULT.
74 //
75 // Note that there's no need to check for FS_IOC_REMOVE_ENCRYPTION_KEY,
76 // since it's guaranteed to be available if FS_IOC_ADD_ENCRYPTION_KEY is.
77 // There's also no need to check for support on external volumes separately
78 // from /data, since either the kernel supports the ioctls on all
79 // fscrypt-capable filesystems or it doesn't.
80 errno = 0;
81 (void)ioctl(fd, FS_IOC_ADD_ENCRYPTION_KEY, NULL);
82 if (errno == ENOTTY) {
83 LOG(INFO) << "Kernel doesn't support FS_IOC_ADD_ENCRYPTION_KEY. Falling back to "
84 "session keyring";
85 return false;
86 }
87 if (errno != EFAULT) {
88 PLOG(WARNING) << "Unexpected error from FS_IOC_ADD_ENCRYPTION_KEY";
89 }
90 LOG(DEBUG) << "Detected support for FS_IOC_ADD_ENCRYPTION_KEY";
91 android::base::SetProperty("ro.crypto.uses_fs_ioc_add_encryption_key", "true");
92 return true;
93}
94
Eric Biggersf3dc4202019-09-30 13:05:58 -070095// Return true if the kernel supports the ioctls to add/remove fscrypt keys
96// directly to/from the filesystem.
97bool isFsKeyringSupported(void) {
Eric Biggers7604eb92020-07-16 14:29:59 -070098 static bool supported = isFsKeyringSupportedImpl();
Eric Biggersf3dc4202019-09-30 13:05:58 -070099 return supported;
100}
101
Paul Crowleyf71ace32016-06-02 11:01:19 -0700102// Get raw keyref - used to make keyname and to pass to ioctl
Eric Biggersba997ee2018-10-23 13:07:43 -0700103static std::string generateKeyRef(const uint8_t* key, int length) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700104 SHA512_CTX c;
105
106 SHA512_Init(&c);
107 SHA512_Update(&c, key, length);
108 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
109 SHA512_Final(key_ref1, &c);
110
111 SHA512_Init(&c);
112 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
113 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
114 SHA512_Final(key_ref2, &c);
115
Eric Biggers506342f2019-12-17 13:11:25 -0800116 static_assert(FSCRYPT_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
117 "Hash too short for descriptor");
118 return std::string((char*)key_ref2, FSCRYPT_KEY_DESCRIPTOR_SIZE);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700119}
120
Eric Biggersa701c452018-10-23 13:06:55 -0700121static bool fillKey(const KeyBuffer& key, fscrypt_key* fs_key) {
Eric Biggers506342f2019-12-17 13:11:25 -0800122 if (key.size() != FSCRYPT_MAX_KEY_SIZE) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700123 LOG(ERROR) << "Wrong size key " << key.size();
124 return false;
125 }
Eric Biggers506342f2019-12-17 13:11:25 -0800126 static_assert(FSCRYPT_MAX_KEY_SIZE == sizeof(fs_key->raw), "Mismatch of max key sizes");
127 fs_key->mode = 0; // unused by kernel
Eric Biggersa701c452018-10-23 13:06:55 -0700128 memcpy(fs_key->raw, key.data(), key.size());
Eric Biggers506342f2019-12-17 13:11:25 -0800129 fs_key->size = key.size();
Paul Crowleyf71ace32016-06-02 11:01:19 -0700130 return true;
131}
132
Paul Crowley14c8c072018-09-18 13:30:21 -0700133static char const* const NAME_PREFIXES[] = {"ext4", "f2fs", "fscrypt", nullptr};
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700134
Eric Biggersf3dc4202019-09-30 13:05:58 -0700135static std::string keyrefstring(const std::string& raw_ref) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700136 std::ostringstream o;
Chen, Luhai5744dfe2017-08-18 14:49:45 +0800137 for (unsigned char i : raw_ref) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700138 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
139 }
140 return o.str();
141}
142
Eric Biggersf3dc4202019-09-30 13:05:58 -0700143static std::string buildLegacyKeyName(const std::string& prefix, const std::string& raw_ref) {
144 return prefix + ":" + keyrefstring(raw_ref);
145}
146
147// Get the ID of the keyring we store all fscrypt keys in when the kernel is too
148// old to support FS_IOC_ADD_ENCRYPTION_KEY and FS_IOC_REMOVE_ENCRYPTION_KEY.
Eric Biggersa701c452018-10-23 13:06:55 -0700149static bool fscryptKeyring(key_serial_t* device_keyring) {
150 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "fscrypt", 0);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700151 if (*device_keyring == -1) {
152 PLOG(ERROR) << "Unable to find device keyring";
153 return false;
154 }
155 return true;
156}
157
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000158// Add an encryption key of type "logon" to the global session keyring.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700159static bool installKeyLegacy(const KeyBuffer& key, const std::string& raw_ref) {
Eric Biggersa701c452018-10-23 13:06:55 -0700160 // Place fscrypt_key into automatically zeroing buffer.
161 KeyBuffer fsKeyBuffer(sizeof(fscrypt_key));
162 fscrypt_key& fs_key = *reinterpret_cast<fscrypt_key*>(fsKeyBuffer.data());
Pavel Grafove2e2d302017-08-01 17:15:53 +0100163
Eric Biggersa701c452018-10-23 13:06:55 -0700164 if (!fillKey(key, &fs_key)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700165 key_serial_t device_keyring;
Eric Biggersa701c452018-10-23 13:06:55 -0700166 if (!fscryptKeyring(&device_keyring)) return false;
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700167 for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
Eric Biggersf3dc4202019-09-30 13:05:58 -0700168 auto ref = buildLegacyKeyName(*name_prefix, raw_ref);
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700169 key_serial_t key_id =
Eric Biggersa701c452018-10-23 13:06:55 -0700170 add_key("logon", ref.c_str(), (void*)&fs_key, sizeof(fs_key), device_keyring);
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700171 if (key_id == -1) {
172 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
173 return false;
174 }
175 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
176 << " in process " << getpid();
Paul Crowleyf71ace32016-06-02 11:01:19 -0700177 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700178 return true;
179}
180
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000181// Installs fscrypt-provisioning key into session level kernel keyring.
182// This allows for the given key to be installed back into filesystem keyring.
183// For more context see reloadKeyFromSessionKeyring.
184static bool installProvisioningKey(const KeyBuffer& key, const std::string& ref,
185 const fscrypt_key_specifier& key_spec) {
186 key_serial_t device_keyring;
187 if (!fscryptKeyring(&device_keyring)) return false;
188
189 // Place fscrypt_provisioning_key_payload into automatically zeroing buffer.
190 KeyBuffer buf(sizeof(fscrypt_provisioning_key_payload) + key.size(), 0);
191 fscrypt_provisioning_key_payload& provisioning_key =
192 *reinterpret_cast<fscrypt_provisioning_key_payload*>(buf.data());
193 memcpy(provisioning_key.raw, key.data(), key.size());
194 provisioning_key.type = key_spec.type;
195
196 key_serial_t key_id = add_key("fscrypt-provisioning", ref.c_str(), (void*)&provisioning_key,
197 buf.size(), device_keyring);
198 if (key_id == -1) {
199 PLOG(ERROR) << "Failed to insert fscrypt-provisioning key for " << ref
200 << " into session keyring";
201 return false;
202 }
203 LOG(DEBUG) << "Added fscrypt-provisioning key for " << ref << " to session keyring";
204 return true;
205}
206
Eric Biggers83a73d72019-09-30 13:06:47 -0700207// Build a struct fscrypt_key_specifier for use in the key management ioctls.
Paul Crowley77df7f22020-01-23 15:29:30 -0800208static bool buildKeySpecifier(fscrypt_key_specifier* spec, const EncryptionPolicy& policy) {
209 switch (policy.options.version) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700210 case 1:
Paul Crowley77df7f22020-01-23 15:29:30 -0800211 if (policy.key_raw_ref.size() != FSCRYPT_KEY_DESCRIPTOR_SIZE) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700212 LOG(ERROR) << "Invalid key specifier size for v1 encryption policy: "
Paul Crowley77df7f22020-01-23 15:29:30 -0800213 << policy.key_raw_ref.size();
Eric Biggers83a73d72019-09-30 13:06:47 -0700214 return false;
215 }
216 spec->type = FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR;
Paul Crowley77df7f22020-01-23 15:29:30 -0800217 memcpy(spec->u.descriptor, policy.key_raw_ref.c_str(), FSCRYPT_KEY_DESCRIPTOR_SIZE);
Eric Biggers83a73d72019-09-30 13:06:47 -0700218 return true;
219 case 2:
Paul Crowley77df7f22020-01-23 15:29:30 -0800220 if (policy.key_raw_ref.size() != FSCRYPT_KEY_IDENTIFIER_SIZE) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700221 LOG(ERROR) << "Invalid key specifier size for v2 encryption policy: "
Paul Crowley77df7f22020-01-23 15:29:30 -0800222 << policy.key_raw_ref.size();
Eric Biggers83a73d72019-09-30 13:06:47 -0700223 return false;
224 }
225 spec->type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER;
Paul Crowley77df7f22020-01-23 15:29:30 -0800226 memcpy(spec->u.identifier, policy.key_raw_ref.c_str(), FSCRYPT_KEY_IDENTIFIER_SIZE);
Eric Biggers83a73d72019-09-30 13:06:47 -0700227 return true;
228 default:
Paul Crowley77df7f22020-01-23 15:29:30 -0800229 LOG(ERROR) << "Invalid encryption policy version: " << policy.options.version;
Eric Biggers83a73d72019-09-30 13:06:47 -0700230 return false;
231 }
232}
233
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000234// Installs key into keyring of a filesystem mounted on |mountpoint|.
235//
236// It's callers responsibility to fill key specifier, and either arg->raw or arg->key_id.
237//
238// In case arg->key_spec.type equals to FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER
239// arg->key_spec.u.identifier will be populated with raw key reference generated
240// by kernel.
241//
242// For documentation on difference between arg->raw and arg->key_id see
243// https://www.kernel.org/doc/html/latest/filesystems/fscrypt.html#fs-ioc-add-encryption-key
244static bool installFsKeyringKey(const std::string& mountpoint, const EncryptionOptions& options,
245 fscrypt_add_key_arg* arg) {
Eric Biggerse0217d72020-07-16 16:31:00 -0700246 if (options.use_hw_wrapped_key) arg->__flags |= __FSCRYPT_ADD_KEY_FLAG_HW_WRAPPED;
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000247
248 android::base::unique_fd fd(open(mountpoint.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC));
249 if (fd == -1) {
250 PLOG(ERROR) << "Failed to open " << mountpoint << " to install key";
251 return false;
252 }
253
254 if (ioctl(fd, FS_IOC_ADD_ENCRYPTION_KEY, arg) != 0) {
255 PLOG(ERROR) << "Failed to install fscrypt key to " << mountpoint;
256 return false;
257 }
258
259 return true;
260}
261
Paul Crowley77df7f22020-01-23 15:29:30 -0800262bool installKey(const std::string& mountpoint, const EncryptionOptions& options,
263 const KeyBuffer& key, EncryptionPolicy* policy) {
264 policy->options = options;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700265 // Put the fscrypt_add_key_arg in an automatically-zeroing buffer, since we
266 // have to copy the raw key into it.
267 KeyBuffer arg_buf(sizeof(struct fscrypt_add_key_arg) + key.size(), 0);
268 struct fscrypt_add_key_arg* arg = (struct fscrypt_add_key_arg*)arg_buf.data();
269
Eric Biggers83a73d72019-09-30 13:06:47 -0700270 // Initialize the "key specifier", which is like a name for the key.
Paul Crowley77df7f22020-01-23 15:29:30 -0800271 switch (options.version) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700272 case 1:
273 // A key for a v1 policy is specified by an arbitrary 8-byte
274 // "descriptor", which must be provided by userspace. We use the
275 // first 8 bytes from the double SHA-512 of the key itself.
Paul Crowley77df7f22020-01-23 15:29:30 -0800276 policy->key_raw_ref = generateKeyRef((const uint8_t*)key.data(), key.size());
Eric Biggers83a73d72019-09-30 13:06:47 -0700277 if (!isFsKeyringSupported()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800278 return installKeyLegacy(key, policy->key_raw_ref);
Eric Biggers83a73d72019-09-30 13:06:47 -0700279 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800280 if (!buildKeySpecifier(&arg->key_spec, *policy)) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700281 return false;
282 }
283 break;
284 case 2:
285 // A key for a v2 policy is specified by an 16-byte "identifier",
286 // which is a cryptographic hash of the key itself which the kernel
287 // computes and returns. Any user-provided value is ignored; we
288 // just need to set the specifier type to indicate that we're adding
289 // this type of key.
290 arg->key_spec.type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER;
291 break;
292 default:
Paul Crowley77df7f22020-01-23 15:29:30 -0800293 LOG(ERROR) << "Invalid encryption policy version: " << options.version;
Eric Biggers83a73d72019-09-30 13:06:47 -0700294 return false;
295 }
Eric Biggersf3dc4202019-09-30 13:05:58 -0700296
297 arg->raw_size = key.size();
298 memcpy(arg->raw, key.data(), key.size());
299
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000300 if (!installFsKeyringKey(mountpoint, options, arg)) return false;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700301
Eric Biggers83a73d72019-09-30 13:06:47 -0700302 if (arg->key_spec.type == FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER) {
303 // Retrieve the key identifier that the kernel computed.
Paul Crowley77df7f22020-01-23 15:29:30 -0800304 policy->key_raw_ref =
305 std::string((char*)arg->key_spec.u.identifier, FSCRYPT_KEY_IDENTIFIER_SIZE);
Eric Biggers83a73d72019-09-30 13:06:47 -0700306 }
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000307 std::string ref = keyrefstring(policy->key_raw_ref);
308 LOG(DEBUG) << "Installed fscrypt key with ref " << ref << " to " << mountpoint;
309
310 if (!installProvisioningKey(key, ref, arg->key_spec)) return false;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700311 return true;
312}
313
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000314// Remove an encryption key of type "logon" from the global session keyring.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700315static bool evictKeyLegacy(const std::string& raw_ref) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700316 key_serial_t device_keyring;
Eric Biggersa701c452018-10-23 13:06:55 -0700317 if (!fscryptKeyring(&device_keyring)) return false;
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700318 bool success = true;
319 for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
Eric Biggersf3dc4202019-09-30 13:05:58 -0700320 auto ref = buildLegacyKeyName(*name_prefix, raw_ref);
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700321 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700322
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700323 // Unlink the key from the keyring. Prefer unlinking to revoking or
324 // invalidating, since unlinking is actually no less secure currently, and
325 // it avoids bugs in certain kernel versions where the keyring key is
326 // referenced from places it shouldn't be.
327 if (keyctl_unlink(key_serial, device_keyring) != 0) {
328 PLOG(ERROR) << "Failed to unlink key with serial " << key_serial << " ref " << ref;
329 success = false;
330 } else {
331 LOG(DEBUG) << "Unlinked key with serial " << key_serial << " ref " << ref;
332 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700333 }
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700334 return success;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700335}
336
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000337static bool evictProvisioningKey(const std::string& ref) {
338 key_serial_t device_keyring;
339 if (!fscryptKeyring(&device_keyring)) {
340 return false;
341 }
342
343 auto key_serial = keyctl_search(device_keyring, "fscrypt-provisioning", ref.c_str(), 0);
344 if (key_serial == -1 && errno != ENOKEY) {
345 PLOG(ERROR) << "Error searching session keyring for fscrypt-provisioning key for " << ref;
346 return false;
347 }
348
349 if (key_serial != -1 && keyctl_unlink(key_serial, device_keyring) != 0) {
350 PLOG(ERROR) << "Failed to unlink fscrypt-provisioning key for " << ref
351 << " from session keyring";
352 return false;
353 }
354 return true;
355}
356
Paul Crowley77df7f22020-01-23 15:29:30 -0800357bool evictKey(const std::string& mountpoint, const EncryptionPolicy& policy) {
358 if (policy.options.version == 1 && !isFsKeyringSupported()) {
359 return evictKeyLegacy(policy.key_raw_ref);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700360 }
361
362 android::base::unique_fd fd(open(mountpoint.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC));
363 if (fd == -1) {
364 PLOG(ERROR) << "Failed to open " << mountpoint << " to evict key";
365 return false;
366 }
367
368 struct fscrypt_remove_key_arg arg;
369 memset(&arg, 0, sizeof(arg));
370
Paul Crowley77df7f22020-01-23 15:29:30 -0800371 if (!buildKeySpecifier(&arg.key_spec, policy)) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700372 return false;
373 }
Eric Biggersf3dc4202019-09-30 13:05:58 -0700374
Paul Crowley77df7f22020-01-23 15:29:30 -0800375 std::string ref = keyrefstring(policy.key_raw_ref);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700376
377 if (ioctl(fd, FS_IOC_REMOVE_ENCRYPTION_KEY, &arg) != 0) {
378 PLOG(ERROR) << "Failed to evict fscrypt key with ref " << ref << " from " << mountpoint;
379 return false;
380 }
381
382 LOG(DEBUG) << "Evicted fscrypt key with ref " << ref << " from " << mountpoint;
383 if (arg.removal_status_flags & FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS) {
384 // Should never happen because keys are only added/removed as root.
385 LOG(ERROR) << "Unexpected case: key with ref " << ref << " is still added by other users!";
386 } else if (arg.removal_status_flags & FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY) {
387 LOG(ERROR) << "Files still open after removing key with ref " << ref
388 << ". These files were not locked!";
389 }
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000390
391 if (!evictProvisioningKey(ref)) return false;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700392 return true;
393}
394
Paul Crowley4eac2642020-02-12 11:04:05 -0800395bool retrieveOrGenerateKey(const std::string& key_path, const std::string& tmp_path,
396 const KeyAuthentication& key_authentication, const KeyGeneration& gen,
Eric Biggersf74373b2020-11-05 19:58:26 -0800397 KeyBuffer* key) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700398 if (pathExists(key_path)) {
399 LOG(DEBUG) << "Key exists, using: " << key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800400 if (!retrieveKey(key_path, key_authentication, key)) return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700401 } else {
Paul Crowley4eac2642020-02-12 11:04:05 -0800402 if (!gen.allow_gen) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700403 LOG(ERROR) << "No key found in " << key_path;
404 return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700405 }
406 LOG(INFO) << "Creating new key in " << key_path;
Paul Crowley4eac2642020-02-12 11:04:05 -0800407 if (!generateStorageKey(gen, key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800408 if (!storeKeyAtomically(key_path, tmp_path, key_authentication, *key)) return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700409 }
410 return true;
411}
412
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000413bool reloadKeyFromSessionKeyring(const std::string& mountpoint, const EncryptionPolicy& policy) {
414 key_serial_t device_keyring;
415 if (!fscryptKeyring(&device_keyring)) {
416 return false;
417 }
418
419 std::string ref = keyrefstring(policy.key_raw_ref);
420 auto key_serial = keyctl_search(device_keyring, "fscrypt-provisioning", ref.c_str(), 0);
421 if (key_serial == -1) {
422 PLOG(ERROR) << "Failed to find fscrypt-provisioning key for " << ref
423 << " in session keyring";
424 return false;
425 }
426
427 LOG(DEBUG) << "Installing fscrypt-provisioning key for " << ref << " back into " << mountpoint
428 << " fs-keyring";
429
430 struct fscrypt_add_key_arg arg;
431 memset(&arg, 0, sizeof(arg));
432 if (!buildKeySpecifier(&arg.key_spec, policy)) return false;
433 arg.key_id = key_serial;
434 if (!installFsKeyringKey(mountpoint, policy.options, &arg)) return false;
435
436 return true;
437}
438
Paul Crowleyf71ace32016-06-02 11:01:19 -0700439} // namespace vold
440} // namespace android