2016-06-02 20:01:19 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "KeyUtil.h"
|
|
|
|
|
|
|
|
#include <iomanip>
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
|
2019-09-30 22:05:58 +02:00
|
|
|
#include <fcntl.h>
|
2019-12-17 00:55:12 +01:00
|
|
|
#include <linux/fscrypt.h>
|
2016-06-02 20:01:19 +02:00
|
|
|
#include <openssl/sha.h>
|
2019-09-30 22:05:58 +02:00
|
|
|
#include <sys/ioctl.h>
|
2016-06-02 20:01:19 +02:00
|
|
|
|
|
|
|
#include <android-base/file.h>
|
|
|
|
#include <android-base/logging.h>
|
2020-04-20 23:21:49 +02:00
|
|
|
#include <android-base/properties.h>
|
2017-05-10 02:01:04 +02:00
|
|
|
#include <keyutils.h>
|
2016-06-02 20:01:19 +02:00
|
|
|
|
|
|
|
#include "KeyStorage.h"
|
|
|
|
#include "Utils.h"
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace vold {
|
|
|
|
|
2020-04-06 04:34:31 +02:00
|
|
|
using android::fscrypt::EncryptionOptions;
|
|
|
|
using android::fscrypt::EncryptionPolicy;
|
|
|
|
|
2020-02-12 20:04:05 +01:00
|
|
|
const KeyGeneration neverGen() {
|
|
|
|
return KeyGeneration{0, false, false};
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool randomKey(size_t size, KeyBuffer* key) {
|
|
|
|
*key = KeyBuffer(size);
|
2017-08-01 18:15:53 +02:00
|
|
|
if (ReadRandomBytes(key->size(), key->data()) != 0) {
|
2016-06-02 20:01:19 +02:00
|
|
|
// TODO status_t plays badly with PLOG, fix it.
|
|
|
|
LOG(ERROR) << "Random read failed";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-12 20:04:05 +01:00
|
|
|
bool generateStorageKey(const KeyGeneration& gen, KeyBuffer* key) {
|
|
|
|
if (!gen.allow_gen) return false;
|
|
|
|
if (gen.use_hw_wrapped_key) {
|
|
|
|
if (gen.keysize != FSCRYPT_MAX_KEY_SIZE) {
|
|
|
|
LOG(ERROR) << "Cannot generate a wrapped key " << gen.keysize << " bytes long";
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-15 20:44:36 +01:00
|
|
|
LOG(DEBUG) << "Generating wrapped storage key";
|
2020-02-03 22:06:45 +01:00
|
|
|
return generateWrappedStorageKey(key);
|
2020-02-12 20:04:05 +01:00
|
|
|
} else {
|
2021-03-15 20:44:36 +01:00
|
|
|
LOG(DEBUG) << "Generating standard storage key";
|
2020-02-12 20:04:05 +01:00
|
|
|
return randomKey(gen.keysize, key);
|
2020-02-03 22:06:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-16 23:29:59 +02:00
|
|
|
static bool isFsKeyringSupportedImpl() {
|
|
|
|
android::base::unique_fd fd(open("/data", O_RDONLY | O_DIRECTORY | O_CLOEXEC));
|
|
|
|
|
|
|
|
// FS_IOC_ADD_ENCRYPTION_KEY with a NULL argument will fail with ENOTTY if
|
|
|
|
// the ioctl isn't supported. Otherwise it will fail with another error
|
|
|
|
// code such as EFAULT.
|
|
|
|
//
|
|
|
|
// Note that there's no need to check for FS_IOC_REMOVE_ENCRYPTION_KEY,
|
|
|
|
// since it's guaranteed to be available if FS_IOC_ADD_ENCRYPTION_KEY is.
|
|
|
|
// There's also no need to check for support on external volumes separately
|
|
|
|
// from /data, since either the kernel supports the ioctls on all
|
|
|
|
// fscrypt-capable filesystems or it doesn't.
|
|
|
|
errno = 0;
|
|
|
|
(void)ioctl(fd, FS_IOC_ADD_ENCRYPTION_KEY, NULL);
|
|
|
|
if (errno == ENOTTY) {
|
|
|
|
LOG(INFO) << "Kernel doesn't support FS_IOC_ADD_ENCRYPTION_KEY. Falling back to "
|
|
|
|
"session keyring";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (errno != EFAULT) {
|
|
|
|
PLOG(WARNING) << "Unexpected error from FS_IOC_ADD_ENCRYPTION_KEY";
|
|
|
|
}
|
|
|
|
LOG(DEBUG) << "Detected support for FS_IOC_ADD_ENCRYPTION_KEY";
|
|
|
|
android::base::SetProperty("ro.crypto.uses_fs_ioc_add_encryption_key", "true");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-30 22:05:58 +02:00
|
|
|
// Return true if the kernel supports the ioctls to add/remove fscrypt keys
|
|
|
|
// directly to/from the filesystem.
|
|
|
|
bool isFsKeyringSupported(void) {
|
2020-07-16 23:29:59 +02:00
|
|
|
static bool supported = isFsKeyringSupportedImpl();
|
2019-09-30 22:05:58 +02:00
|
|
|
return supported;
|
|
|
|
}
|
|
|
|
|
2016-06-02 20:01:19 +02:00
|
|
|
// Get raw keyref - used to make keyname and to pass to ioctl
|
2018-10-23 22:07:43 +02:00
|
|
|
static std::string generateKeyRef(const uint8_t* key, int length) {
|
2016-06-02 20:01:19 +02:00
|
|
|
SHA512_CTX c;
|
|
|
|
|
|
|
|
SHA512_Init(&c);
|
|
|
|
SHA512_Update(&c, key, length);
|
|
|
|
unsigned char key_ref1[SHA512_DIGEST_LENGTH];
|
|
|
|
SHA512_Final(key_ref1, &c);
|
|
|
|
|
|
|
|
SHA512_Init(&c);
|
|
|
|
SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
|
|
|
|
unsigned char key_ref2[SHA512_DIGEST_LENGTH];
|
|
|
|
SHA512_Final(key_ref2, &c);
|
|
|
|
|
2019-12-17 22:11:25 +01:00
|
|
|
static_assert(FSCRYPT_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
|
|
|
|
"Hash too short for descriptor");
|
|
|
|
return std::string((char*)key_ref2, FSCRYPT_KEY_DESCRIPTOR_SIZE);
|
2016-06-02 20:01:19 +02:00
|
|
|
}
|
|
|
|
|
2018-10-23 22:06:55 +02:00
|
|
|
static bool fillKey(const KeyBuffer& key, fscrypt_key* fs_key) {
|
2019-12-17 22:11:25 +01:00
|
|
|
if (key.size() != FSCRYPT_MAX_KEY_SIZE) {
|
2016-06-02 20:01:19 +02:00
|
|
|
LOG(ERROR) << "Wrong size key " << key.size();
|
|
|
|
return false;
|
|
|
|
}
|
2019-12-17 22:11:25 +01:00
|
|
|
static_assert(FSCRYPT_MAX_KEY_SIZE == sizeof(fs_key->raw), "Mismatch of max key sizes");
|
|
|
|
fs_key->mode = 0; // unused by kernel
|
2018-10-23 22:06:55 +02:00
|
|
|
memcpy(fs_key->raw, key.data(), key.size());
|
2019-12-17 22:11:25 +01:00
|
|
|
fs_key->size = key.size();
|
2016-06-02 20:01:19 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-09-18 22:30:21 +02:00
|
|
|
static char const* const NAME_PREFIXES[] = {"ext4", "f2fs", "fscrypt", nullptr};
|
2017-06-20 01:05:55 +02:00
|
|
|
|
2019-09-30 22:05:58 +02:00
|
|
|
static std::string keyrefstring(const std::string& raw_ref) {
|
2016-06-02 20:01:19 +02:00
|
|
|
std::ostringstream o;
|
2017-08-18 08:49:45 +02:00
|
|
|
for (unsigned char i : raw_ref) {
|
2016-06-02 20:01:19 +02:00
|
|
|
o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
|
|
|
|
}
|
|
|
|
return o.str();
|
|
|
|
}
|
|
|
|
|
2019-09-30 22:05:58 +02:00
|
|
|
static std::string buildLegacyKeyName(const std::string& prefix, const std::string& raw_ref) {
|
|
|
|
return prefix + ":" + keyrefstring(raw_ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the ID of the keyring we store all fscrypt keys in when the kernel is too
|
|
|
|
// old to support FS_IOC_ADD_ENCRYPTION_KEY and FS_IOC_REMOVE_ENCRYPTION_KEY.
|
2018-10-23 22:06:55 +02:00
|
|
|
static bool fscryptKeyring(key_serial_t* device_keyring) {
|
|
|
|
*device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "fscrypt", 0);
|
2016-06-02 20:01:19 +02:00
|
|
|
if (*device_keyring == -1) {
|
|
|
|
PLOG(ERROR) << "Unable to find device keyring";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-28 20:50:31 +01:00
|
|
|
// Add an encryption key of type "logon" to the global session keyring.
|
2019-09-30 22:05:58 +02:00
|
|
|
static bool installKeyLegacy(const KeyBuffer& key, const std::string& raw_ref) {
|
2018-10-23 22:06:55 +02:00
|
|
|
// Place fscrypt_key into automatically zeroing buffer.
|
|
|
|
KeyBuffer fsKeyBuffer(sizeof(fscrypt_key));
|
|
|
|
fscrypt_key& fs_key = *reinterpret_cast<fscrypt_key*>(fsKeyBuffer.data());
|
2017-08-01 18:15:53 +02:00
|
|
|
|
2018-10-23 22:06:55 +02:00
|
|
|
if (!fillKey(key, &fs_key)) return false;
|
2016-06-02 20:01:19 +02:00
|
|
|
key_serial_t device_keyring;
|
2018-10-23 22:06:55 +02:00
|
|
|
if (!fscryptKeyring(&device_keyring)) return false;
|
2017-06-20 01:05:55 +02:00
|
|
|
for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
|
2019-09-30 22:05:58 +02:00
|
|
|
auto ref = buildLegacyKeyName(*name_prefix, raw_ref);
|
2017-06-20 01:05:55 +02:00
|
|
|
key_serial_t key_id =
|
2018-10-23 22:06:55 +02:00
|
|
|
add_key("logon", ref.c_str(), (void*)&fs_key, sizeof(fs_key), device_keyring);
|
2017-06-20 01:05:55 +02:00
|
|
|
if (key_id == -1) {
|
|
|
|
PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
|
|
|
|
<< " in process " << getpid();
|
2016-06-02 20:01:19 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-28 20:50:31 +01:00
|
|
|
// Installs fscrypt-provisioning key into session level kernel keyring.
|
|
|
|
// This allows for the given key to be installed back into filesystem keyring.
|
|
|
|
// For more context see reloadKeyFromSessionKeyring.
|
|
|
|
static bool installProvisioningKey(const KeyBuffer& key, const std::string& ref,
|
|
|
|
const fscrypt_key_specifier& key_spec) {
|
|
|
|
key_serial_t device_keyring;
|
|
|
|
if (!fscryptKeyring(&device_keyring)) return false;
|
|
|
|
|
|
|
|
// Place fscrypt_provisioning_key_payload into automatically zeroing buffer.
|
|
|
|
KeyBuffer buf(sizeof(fscrypt_provisioning_key_payload) + key.size(), 0);
|
|
|
|
fscrypt_provisioning_key_payload& provisioning_key =
|
|
|
|
*reinterpret_cast<fscrypt_provisioning_key_payload*>(buf.data());
|
|
|
|
memcpy(provisioning_key.raw, key.data(), key.size());
|
|
|
|
provisioning_key.type = key_spec.type;
|
|
|
|
|
|
|
|
key_serial_t key_id = add_key("fscrypt-provisioning", ref.c_str(), (void*)&provisioning_key,
|
|
|
|
buf.size(), device_keyring);
|
|
|
|
if (key_id == -1) {
|
|
|
|
PLOG(ERROR) << "Failed to insert fscrypt-provisioning key for " << ref
|
|
|
|
<< " into session keyring";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
LOG(DEBUG) << "Added fscrypt-provisioning key for " << ref << " to session keyring";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
// Build a struct fscrypt_key_specifier for use in the key management ioctls.
|
2020-01-24 00:29:30 +01:00
|
|
|
static bool buildKeySpecifier(fscrypt_key_specifier* spec, const EncryptionPolicy& policy) {
|
|
|
|
switch (policy.options.version) {
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
case 1:
|
2020-01-24 00:29:30 +01:00
|
|
|
if (policy.key_raw_ref.size() != FSCRYPT_KEY_DESCRIPTOR_SIZE) {
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
LOG(ERROR) << "Invalid key specifier size for v1 encryption policy: "
|
2020-01-24 00:29:30 +01:00
|
|
|
<< policy.key_raw_ref.size();
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
spec->type = FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR;
|
2020-01-24 00:29:30 +01:00
|
|
|
memcpy(spec->u.descriptor, policy.key_raw_ref.c_str(), FSCRYPT_KEY_DESCRIPTOR_SIZE);
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
return true;
|
|
|
|
case 2:
|
2020-01-24 00:29:30 +01:00
|
|
|
if (policy.key_raw_ref.size() != FSCRYPT_KEY_IDENTIFIER_SIZE) {
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
LOG(ERROR) << "Invalid key specifier size for v2 encryption policy: "
|
2020-01-24 00:29:30 +01:00
|
|
|
<< policy.key_raw_ref.size();
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
spec->type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER;
|
2020-01-24 00:29:30 +01:00
|
|
|
memcpy(spec->u.identifier, policy.key_raw_ref.c_str(), FSCRYPT_KEY_IDENTIFIER_SIZE);
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
return true;
|
|
|
|
default:
|
2020-01-24 00:29:30 +01:00
|
|
|
LOG(ERROR) << "Invalid encryption policy version: " << policy.options.version;
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-28 20:50:31 +01:00
|
|
|
// Installs key into keyring of a filesystem mounted on |mountpoint|.
|
|
|
|
//
|
|
|
|
// It's callers responsibility to fill key specifier, and either arg->raw or arg->key_id.
|
|
|
|
//
|
|
|
|
// In case arg->key_spec.type equals to FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER
|
|
|
|
// arg->key_spec.u.identifier will be populated with raw key reference generated
|
|
|
|
// by kernel.
|
|
|
|
//
|
|
|
|
// For documentation on difference between arg->raw and arg->key_id see
|
|
|
|
// https://www.kernel.org/doc/html/latest/filesystems/fscrypt.html#fs-ioc-add-encryption-key
|
|
|
|
static bool installFsKeyringKey(const std::string& mountpoint, const EncryptionOptions& options,
|
|
|
|
fscrypt_add_key_arg* arg) {
|
2020-07-17 01:31:00 +02:00
|
|
|
if (options.use_hw_wrapped_key) arg->__flags |= __FSCRYPT_ADD_KEY_FLAG_HW_WRAPPED;
|
2020-02-28 20:50:31 +01:00
|
|
|
|
|
|
|
android::base::unique_fd fd(open(mountpoint.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC));
|
|
|
|
if (fd == -1) {
|
|
|
|
PLOG(ERROR) << "Failed to open " << mountpoint << " to install key";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ioctl(fd, FS_IOC_ADD_ENCRYPTION_KEY, arg) != 0) {
|
|
|
|
PLOG(ERROR) << "Failed to install fscrypt key to " << mountpoint;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-24 00:29:30 +01:00
|
|
|
bool installKey(const std::string& mountpoint, const EncryptionOptions& options,
|
|
|
|
const KeyBuffer& key, EncryptionPolicy* policy) {
|
|
|
|
policy->options = options;
|
2019-09-30 22:05:58 +02:00
|
|
|
// Put the fscrypt_add_key_arg in an automatically-zeroing buffer, since we
|
|
|
|
// have to copy the raw key into it.
|
|
|
|
KeyBuffer arg_buf(sizeof(struct fscrypt_add_key_arg) + key.size(), 0);
|
|
|
|
struct fscrypt_add_key_arg* arg = (struct fscrypt_add_key_arg*)arg_buf.data();
|
|
|
|
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
// Initialize the "key specifier", which is like a name for the key.
|
2020-01-24 00:29:30 +01:00
|
|
|
switch (options.version) {
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
case 1:
|
|
|
|
// A key for a v1 policy is specified by an arbitrary 8-byte
|
|
|
|
// "descriptor", which must be provided by userspace. We use the
|
|
|
|
// first 8 bytes from the double SHA-512 of the key itself.
|
2020-01-24 00:29:30 +01:00
|
|
|
policy->key_raw_ref = generateKeyRef((const uint8_t*)key.data(), key.size());
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
if (!isFsKeyringSupported()) {
|
2020-01-24 00:29:30 +01:00
|
|
|
return installKeyLegacy(key, policy->key_raw_ref);
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
}
|
2020-01-24 00:29:30 +01:00
|
|
|
if (!buildKeySpecifier(&arg->key_spec, *policy)) {
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
// A key for a v2 policy is specified by an 16-byte "identifier",
|
|
|
|
// which is a cryptographic hash of the key itself which the kernel
|
|
|
|
// computes and returns. Any user-provided value is ignored; we
|
|
|
|
// just need to set the specifier type to indicate that we're adding
|
|
|
|
// this type of key.
|
|
|
|
arg->key_spec.type = FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER;
|
|
|
|
break;
|
|
|
|
default:
|
2020-01-24 00:29:30 +01:00
|
|
|
LOG(ERROR) << "Invalid encryption policy version: " << options.version;
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
2019-09-30 22:05:58 +02:00
|
|
|
|
|
|
|
arg->raw_size = key.size();
|
|
|
|
memcpy(arg->raw, key.data(), key.size());
|
|
|
|
|
2020-02-28 20:50:31 +01:00
|
|
|
if (!installFsKeyringKey(mountpoint, options, arg)) return false;
|
2019-09-30 22:05:58 +02:00
|
|
|
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
if (arg->key_spec.type == FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER) {
|
|
|
|
// Retrieve the key identifier that the kernel computed.
|
2020-01-24 00:29:30 +01:00
|
|
|
policy->key_raw_ref =
|
|
|
|
std::string((char*)arg->key_spec.u.identifier, FSCRYPT_KEY_IDENTIFIER_SIZE);
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
}
|
2020-02-28 20:50:31 +01:00
|
|
|
std::string ref = keyrefstring(policy->key_raw_ref);
|
|
|
|
LOG(DEBUG) << "Installed fscrypt key with ref " << ref << " to " << mountpoint;
|
|
|
|
|
|
|
|
if (!installProvisioningKey(key, ref, arg->key_spec)) return false;
|
2019-09-30 22:05:58 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-28 20:50:31 +01:00
|
|
|
// Remove an encryption key of type "logon" from the global session keyring.
|
2019-09-30 22:05:58 +02:00
|
|
|
static bool evictKeyLegacy(const std::string& raw_ref) {
|
2016-06-02 20:01:19 +02:00
|
|
|
key_serial_t device_keyring;
|
2018-10-23 22:06:55 +02:00
|
|
|
if (!fscryptKeyring(&device_keyring)) return false;
|
2017-06-20 01:05:55 +02:00
|
|
|
bool success = true;
|
|
|
|
for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
|
2019-09-30 22:05:58 +02:00
|
|
|
auto ref = buildLegacyKeyName(*name_prefix, raw_ref);
|
2017-06-20 01:05:55 +02:00
|
|
|
auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
|
|
|
|
|
|
|
|
// Unlink the key from the keyring. Prefer unlinking to revoking or
|
|
|
|
// invalidating, since unlinking is actually no less secure currently, and
|
|
|
|
// it avoids bugs in certain kernel versions where the keyring key is
|
|
|
|
// referenced from places it shouldn't be.
|
|
|
|
if (keyctl_unlink(key_serial, device_keyring) != 0) {
|
|
|
|
PLOG(ERROR) << "Failed to unlink key with serial " << key_serial << " ref " << ref;
|
|
|
|
success = false;
|
|
|
|
} else {
|
|
|
|
LOG(DEBUG) << "Unlinked key with serial " << key_serial << " ref " << ref;
|
|
|
|
}
|
2016-06-02 20:01:19 +02:00
|
|
|
}
|
2017-06-20 01:05:55 +02:00
|
|
|
return success;
|
2016-06-02 20:01:19 +02:00
|
|
|
}
|
|
|
|
|
2020-02-28 20:50:31 +01:00
|
|
|
static bool evictProvisioningKey(const std::string& ref) {
|
|
|
|
key_serial_t device_keyring;
|
|
|
|
if (!fscryptKeyring(&device_keyring)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto key_serial = keyctl_search(device_keyring, "fscrypt-provisioning", ref.c_str(), 0);
|
|
|
|
if (key_serial == -1 && errno != ENOKEY) {
|
|
|
|
PLOG(ERROR) << "Error searching session keyring for fscrypt-provisioning key for " << ref;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key_serial != -1 && keyctl_unlink(key_serial, device_keyring) != 0) {
|
|
|
|
PLOG(ERROR) << "Failed to unlink fscrypt-provisioning key for " << ref
|
|
|
|
<< " from session keyring";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-24 00:29:30 +01:00
|
|
|
bool evictKey(const std::string& mountpoint, const EncryptionPolicy& policy) {
|
|
|
|
if (policy.options.version == 1 && !isFsKeyringSupported()) {
|
|
|
|
return evictKeyLegacy(policy.key_raw_ref);
|
2019-09-30 22:05:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android::base::unique_fd fd(open(mountpoint.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC));
|
|
|
|
if (fd == -1) {
|
|
|
|
PLOG(ERROR) << "Failed to open " << mountpoint << " to evict key";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct fscrypt_remove_key_arg arg;
|
|
|
|
memset(&arg, 0, sizeof(arg));
|
|
|
|
|
2020-01-24 00:29:30 +01:00
|
|
|
if (!buildKeySpecifier(&arg.key_spec, policy)) {
|
vold: support v2 encryption policies
Add support for setting v2 encryption policies when configured in the
fstab (for internal storage) or in system properties (for adoptable
storage), and for installing and evicting the keys for such policies.
v2 policies support the same encryption modes and flags as v1 policies,
but internally they use a more standard, secure, and flexible KDF. Due
to this, some future features will be supported by v2 policies only.
Bug: 140500999
Test: Configured a device to use v2 encryption policies (applied the
needed kernel patches and added
"fileencryption=aes-256-xts:aes-256-cts:v2" to fstab, and set the
corresponding system properties for adoptable storage). Wiped
userdata, booted device and checked logs to verify that v2
policies were being used.
Also enabled virtual SD card and formatted as adoptable storage;
verified it works and that v2 policies were being used on it.
Also created, started, and stopped a 2nd user and verified their
keys were evicted.
Also verified that the device comes up again after rebooting.
Also verified that a device using v1 encryption policies continues
to work, both with and without an updated kernel -- including
stopping a user so that their keys get evicted.
Change-Id: If64028d8580584b2c33c614cabd5d6b93657f608
2019-09-30 22:06:47 +02:00
|
|
|
return false;
|
|
|
|
}
|
2019-09-30 22:05:58 +02:00
|
|
|
|
2020-01-24 00:29:30 +01:00
|
|
|
std::string ref = keyrefstring(policy.key_raw_ref);
|
2019-09-30 22:05:58 +02:00
|
|
|
|
|
|
|
if (ioctl(fd, FS_IOC_REMOVE_ENCRYPTION_KEY, &arg) != 0) {
|
|
|
|
PLOG(ERROR) << "Failed to evict fscrypt key with ref " << ref << " from " << mountpoint;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(DEBUG) << "Evicted fscrypt key with ref " << ref << " from " << mountpoint;
|
|
|
|
if (arg.removal_status_flags & FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS) {
|
|
|
|
// Should never happen because keys are only added/removed as root.
|
|
|
|
LOG(ERROR) << "Unexpected case: key with ref " << ref << " is still added by other users!";
|
|
|
|
} else if (arg.removal_status_flags & FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY) {
|
|
|
|
LOG(ERROR) << "Files still open after removing key with ref " << ref
|
|
|
|
<< ". These files were not locked!";
|
|
|
|
}
|
2020-02-28 20:50:31 +01:00
|
|
|
|
|
|
|
if (!evictProvisioningKey(ref)) return false;
|
2019-09-30 22:05:58 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-12 20:04:05 +01:00
|
|
|
bool retrieveOrGenerateKey(const std::string& key_path, const std::string& tmp_path,
|
|
|
|
const KeyAuthentication& key_authentication, const KeyGeneration& gen,
|
2020-11-06 04:58:26 +01:00
|
|
|
KeyBuffer* key) {
|
2016-06-02 20:01:19 +02:00
|
|
|
if (pathExists(key_path)) {
|
|
|
|
LOG(DEBUG) << "Key exists, using: " << key_path;
|
2020-11-06 04:58:26 +01:00
|
|
|
if (!retrieveKey(key_path, key_authentication, key)) return false;
|
2016-06-02 20:04:27 +02:00
|
|
|
} else {
|
2020-02-12 20:04:05 +01:00
|
|
|
if (!gen.allow_gen) {
|
2018-09-18 22:30:21 +02:00
|
|
|
LOG(ERROR) << "No key found in " << key_path;
|
|
|
|
return false;
|
2016-06-02 20:04:27 +02:00
|
|
|
}
|
|
|
|
LOG(INFO) << "Creating new key in " << key_path;
|
2020-02-12 20:04:05 +01:00
|
|
|
if (!generateStorageKey(gen, key)) return false;
|
2020-01-24 00:29:30 +01:00
|
|
|
if (!storeKeyAtomically(key_path, tmp_path, key_authentication, *key)) return false;
|
2016-06-02 20:04:27 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-28 20:50:31 +01:00
|
|
|
bool reloadKeyFromSessionKeyring(const std::string& mountpoint, const EncryptionPolicy& policy) {
|
|
|
|
key_serial_t device_keyring;
|
|
|
|
if (!fscryptKeyring(&device_keyring)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ref = keyrefstring(policy.key_raw_ref);
|
|
|
|
auto key_serial = keyctl_search(device_keyring, "fscrypt-provisioning", ref.c_str(), 0);
|
|
|
|
if (key_serial == -1) {
|
|
|
|
PLOG(ERROR) << "Failed to find fscrypt-provisioning key for " << ref
|
|
|
|
<< " in session keyring";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(DEBUG) << "Installing fscrypt-provisioning key for " << ref << " back into " << mountpoint
|
|
|
|
<< " fs-keyring";
|
|
|
|
|
|
|
|
struct fscrypt_add_key_arg arg;
|
|
|
|
memset(&arg, 0, sizeof(arg));
|
|
|
|
if (!buildKeySpecifier(&arg.key_spec, policy)) return false;
|
|
|
|
arg.key_id = key_serial;
|
|
|
|
if (!installFsKeyringKey(mountpoint, policy.options, &arg)) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-02 20:01:19 +02:00
|
|
|
} // namespace vold
|
|
|
|
} // namespace android
|