KEYS: remove support for asym_tpm keys
asym_tpm keys are tied to TPM v1.2, which uses outdated crypto and has been deprecated in favor of TPM v2.0 for over 7 years. A very quick look at this code also immediately found some memory safety bugs (https://lore.kernel.org/r/20220113235440.90439-2-ebiggers@kernel.org). Note that this code is reachable by unprivileged users. According to Jarkko (one of the keyrings subsystem maintainers), this code has no practical use cases, and he isn't willing to maintain it (https://lore.kernel.org/r/YfFZPbKkgYJGWu1Q@iki.fi). Therefore, let's remove it. Note that this feature didn't have any documentation or tests, so we don't need to worry about removing those. Cc: David Howells <dhowells@redhat.com> Cc: Denis Kenzior <denkenz@gmail.com> Cc: James Morris <jmorris@namei.org> Cc: Jarkko Sakkinen <jarkko@kernel.org> Cc: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Eric Biggers <ebiggers@google.com> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> Acked-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
This commit is contained in:
parent
7e0438f83d
commit
d3cff4a95e
6 changed files with 0 additions and 1116 deletions
|
|
@ -1,19 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#ifndef _LINUX_ASYM_TPM_SUBTYPE_H
|
||||
#define _LINUX_ASYM_TPM_SUBTYPE_H
|
||||
|
||||
#include <linux/keyctl.h>
|
||||
|
||||
struct tpm_key {
|
||||
void *blob;
|
||||
u32 blob_len;
|
||||
uint16_t key_len; /* Size in bits of the key */
|
||||
const void *pub_key; /* pointer inside blob to the public key bytes */
|
||||
uint16_t pub_key_len; /* length of the public key */
|
||||
};
|
||||
|
||||
struct tpm_key *tpm_key_create(const void *blob, uint32_t blob_len);
|
||||
|
||||
extern struct asymmetric_key_subtype asym_tpm_subtype;
|
||||
|
||||
#endif /* _LINUX_ASYM_TPM_SUBTYPE_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue