blob: 948e799042365977c6674a9db5a90308b285b9db [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 }
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080060 return generateWrappedStorageKey(key);
Paul Crowley4eac2642020-02-12 11:04:05 -080061 } else {
62 return randomKey(gen.keysize, key);
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080063 }
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080064}
65
Eric Biggersf3dc4202019-09-30 13:05:58 -070066// Return true if the kernel supports the ioctls to add/remove fscrypt keys
67// directly to/from the filesystem.
68bool 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 Ioffeeea8bd32020-04-20 22:21:49 +010090 android::base::SetProperty("ro.crypto.uses_fs_ioc_add_encryption_key", "true");
Eric Biggersf3dc4202019-09-30 13:05:58 -070091 }
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 Crowleyf71ace32016-06-02 11:01:19 -0700103// Get raw keyref - used to make keyname and to pass to ioctl
Eric Biggersba997ee2018-10-23 13:07:43 -0700104static std::string generateKeyRef(const uint8_t* key, int length) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700105 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 Biggers506342f2019-12-17 13:11:25 -0800117 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 Crowleyf71ace32016-06-02 11:01:19 -0700120}
121
Eric Biggersa701c452018-10-23 13:06:55 -0700122static bool fillKey(const KeyBuffer& key, fscrypt_key* fs_key) {
Eric Biggers506342f2019-12-17 13:11:25 -0800123 if (key.size() != FSCRYPT_MAX_KEY_SIZE) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700124 LOG(ERROR) << "Wrong size key " << key.size();
125 return false;
126 }
Eric Biggers506342f2019-12-17 13:11:25 -0800127 static_assert(FSCRYPT_MAX_KEY_SIZE == sizeof(fs_key->raw), "Mismatch of max key sizes");
128 fs_key->mode = 0; // unused by kernel
Eric Biggersa701c452018-10-23 13:06:55 -0700129 memcpy(fs_key->raw, key.data(), key.size());
Eric Biggers506342f2019-12-17 13:11:25 -0800130 fs_key->size = key.size();
Paul Crowleyf71ace32016-06-02 11:01:19 -0700131 return true;
132}
133
Paul Crowley14c8c072018-09-18 13:30:21 -0700134static char const* const NAME_PREFIXES[] = {"ext4", "f2fs", "fscrypt", nullptr};
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700135
Eric Biggersf3dc4202019-09-30 13:05:58 -0700136static std::string keyrefstring(const std::string& raw_ref) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700137 std::ostringstream o;
Chen, Luhai5744dfe2017-08-18 14:49:45 +0800138 for (unsigned char i : raw_ref) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700139 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
140 }
141 return o.str();
142}
143
Eric Biggersf3dc4202019-09-30 13:05:58 -0700144static 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 Biggersa701c452018-10-23 13:06:55 -0700150static bool fscryptKeyring(key_serial_t* device_keyring) {
151 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "fscrypt", 0);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700152 if (*device_keyring == -1) {
153 PLOG(ERROR) << "Unable to find device keyring";
154 return false;
155 }
156 return true;
157}
158
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000159// Add an encryption key of type "logon" to the global session keyring.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700160static bool installKeyLegacy(const KeyBuffer& key, const std::string& raw_ref) {
Eric Biggersa701c452018-10-23 13:06:55 -0700161 // 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 Grafove2e2d302017-08-01 17:15:53 +0100164
Eric Biggersa701c452018-10-23 13:06:55 -0700165 if (!fillKey(key, &fs_key)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700166 key_serial_t device_keyring;
Eric Biggersa701c452018-10-23 13:06:55 -0700167 if (!fscryptKeyring(&device_keyring)) return false;
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700168 for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
Eric Biggersf3dc4202019-09-30 13:05:58 -0700169 auto ref = buildLegacyKeyName(*name_prefix, raw_ref);
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700170 key_serial_t key_id =
Eric Biggersa701c452018-10-23 13:06:55 -0700171 add_key("logon", ref.c_str(), (void*)&fs_key, sizeof(fs_key), device_keyring);
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700172 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 Crowleyf71ace32016-06-02 11:01:19 -0700178 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700179 return true;
180}
181
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000182// 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.
185static 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 Biggers83a73d72019-09-30 13:06:47 -0700208// Build a struct fscrypt_key_specifier for use in the key management ioctls.
Paul Crowley77df7f22020-01-23 15:29:30 -0800209static bool buildKeySpecifier(fscrypt_key_specifier* spec, const EncryptionPolicy& policy) {
210 switch (policy.options.version) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700211 case 1:
Paul Crowley77df7f22020-01-23 15:29:30 -0800212 if (policy.key_raw_ref.size() != FSCRYPT_KEY_DESCRIPTOR_SIZE) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700213 LOG(ERROR) << "Invalid key specifier size for v1 encryption policy: "
Paul Crowley77df7f22020-01-23 15:29:30 -0800214 << policy.key_raw_ref.size();
Eric Biggers83a73d72019-09-30 13:06:47 -0700215 return false;
216 }
217 spec->type = FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR;
Paul Crowley77df7f22020-01-23 15:29:30 -0800218 memcpy(spec->u.descriptor, policy.key_raw_ref.c_str(), FSCRYPT_KEY_DESCRIPTOR_SIZE);
Eric Biggers83a73d72019-09-30 13:06:47 -0700219 return true;
220 case 2:
Paul Crowley77df7f22020-01-23 15:29:30 -0800221 if (policy.key_raw_ref.size() != FSCRYPT_KEY_IDENTIFIER_SIZE) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700222 LOG(ERROR) << "Invalid key specifier size for v2 encryption policy: "
Paul Crowley77df7f22020-01-23 15:29:30 -0800223 << policy.key_raw_ref.size();
Eric Biggers83a73d72019-09-30 13:06:47 -0700224 return false;
225 }
226 spec->type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER;
Paul Crowley77df7f22020-01-23 15:29:30 -0800227 memcpy(spec->u.identifier, policy.key_raw_ref.c_str(), FSCRYPT_KEY_IDENTIFIER_SIZE);
Eric Biggers83a73d72019-09-30 13:06:47 -0700228 return true;
229 default:
Paul Crowley77df7f22020-01-23 15:29:30 -0800230 LOG(ERROR) << "Invalid encryption policy version: " << policy.options.version;
Eric Biggers83a73d72019-09-30 13:06:47 -0700231 return false;
232 }
233}
234
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000235// 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
245static bool installFsKeyringKey(const std::string& mountpoint, const EncryptionOptions& options,
246 fscrypt_add_key_arg* arg) {
Eric Biggerse0217d72020-07-16 16:31:00 -0700247 if (options.use_hw_wrapped_key) arg->__flags |= __FSCRYPT_ADD_KEY_FLAG_HW_WRAPPED;
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000248
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 Crowley77df7f22020-01-23 15:29:30 -0800263bool installKey(const std::string& mountpoint, const EncryptionOptions& options,
264 const KeyBuffer& key, EncryptionPolicy* policy) {
265 policy->options = options;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700266 // 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 Biggers83a73d72019-09-30 13:06:47 -0700271 // Initialize the "key specifier", which is like a name for the key.
Paul Crowley77df7f22020-01-23 15:29:30 -0800272 switch (options.version) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700273 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 Crowley77df7f22020-01-23 15:29:30 -0800277 policy->key_raw_ref = generateKeyRef((const uint8_t*)key.data(), key.size());
Eric Biggers83a73d72019-09-30 13:06:47 -0700278 if (!isFsKeyringSupported()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800279 return installKeyLegacy(key, policy->key_raw_ref);
Eric Biggers83a73d72019-09-30 13:06:47 -0700280 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800281 if (!buildKeySpecifier(&arg->key_spec, *policy)) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700282 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 Crowley77df7f22020-01-23 15:29:30 -0800294 LOG(ERROR) << "Invalid encryption policy version: " << options.version;
Eric Biggers83a73d72019-09-30 13:06:47 -0700295 return false;
296 }
Eric Biggersf3dc4202019-09-30 13:05:58 -0700297
298 arg->raw_size = key.size();
299 memcpy(arg->raw, key.data(), key.size());
300
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000301 if (!installFsKeyringKey(mountpoint, options, arg)) return false;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700302
Eric Biggers83a73d72019-09-30 13:06:47 -0700303 if (arg->key_spec.type == FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER) {
304 // Retrieve the key identifier that the kernel computed.
Paul Crowley77df7f22020-01-23 15:29:30 -0800305 policy->key_raw_ref =
306 std::string((char*)arg->key_spec.u.identifier, FSCRYPT_KEY_IDENTIFIER_SIZE);
Eric Biggers83a73d72019-09-30 13:06:47 -0700307 }
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000308 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 Biggersf3dc4202019-09-30 13:05:58 -0700312 return true;
313}
314
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000315// Remove an encryption key of type "logon" from the global session keyring.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700316static bool evictKeyLegacy(const std::string& raw_ref) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700317 key_serial_t device_keyring;
Eric Biggersa701c452018-10-23 13:06:55 -0700318 if (!fscryptKeyring(&device_keyring)) return false;
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700319 bool success = true;
320 for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
Eric Biggersf3dc4202019-09-30 13:05:58 -0700321 auto ref = buildLegacyKeyName(*name_prefix, raw_ref);
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700322 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700323
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700324 // 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 Crowleyf71ace32016-06-02 11:01:19 -0700334 }
Paul Crowleycd8bfe32017-06-19 16:05:55 -0700335 return success;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700336}
337
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000338static 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 Crowley77df7f22020-01-23 15:29:30 -0800358bool evictKey(const std::string& mountpoint, const EncryptionPolicy& policy) {
359 if (policy.options.version == 1 && !isFsKeyringSupported()) {
360 return evictKeyLegacy(policy.key_raw_ref);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700361 }
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 Crowley77df7f22020-01-23 15:29:30 -0800372 if (!buildKeySpecifier(&arg.key_spec, policy)) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700373 return false;
374 }
Eric Biggersf3dc4202019-09-30 13:05:58 -0700375
Paul Crowley77df7f22020-01-23 15:29:30 -0800376 std::string ref = keyrefstring(policy.key_raw_ref);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700377
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 Ioffe1c6731c2020-02-28 19:50:31 +0000391
392 if (!evictProvisioningKey(ref)) return false;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700393 return true;
394}
395
Paul Crowley4eac2642020-02-12 11:04:05 -0800396bool 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 Crowleyf71ace32016-06-02 11:01:19 -0700399 if (pathExists(key_path)) {
400 LOG(DEBUG) << "Key exists, using: " << key_path;
Paul Crowley77df7f22020-01-23 15:29:30 -0800401 if (!retrieveKey(key_path, key_authentication, key, keepOld)) return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700402 } else {
Paul Crowley4eac2642020-02-12 11:04:05 -0800403 if (!gen.allow_gen) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700404 LOG(ERROR) << "No key found in " << key_path;
405 return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700406 }
407 LOG(INFO) << "Creating new key in " << key_path;
Paul Crowley4eac2642020-02-12 11:04:05 -0800408 if (!generateStorageKey(gen, key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800409 if (!storeKeyAtomically(key_path, tmp_path, key_authentication, *key)) return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700410 }
411 return true;
412}
413
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000414bool 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 Crowleyf71ace32016-06-02 11:01:19 -0700440} // namespace vold
441} // namespace android