mbox series

[GIT,PULL] security: keys updates for v4.20

Message ID alpine.LRH.2.21.1810262033270.5228@namei.org (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] security: keys updates for v4.20 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git next-keys2

Message

James Morris Oct. 26, 2018, 9:36 a.m. UTC
Please pull. Note these patches have been in next and my tree under a 
different branch for some weeks.

From David: "Provide five new operations in the key_type struct that can 
be used to provide access to asymmetric key operations.  These will be 
implemented for the asymmetric key type in a later patch and may refer to 
a key retained in RAM by the kernel or a key retained in crypto hardware.

     int (*asym_query)(const struct kernel_pkey_params *params,
                       struct kernel_pkey_query *info);
     int (*asym_eds_op)(struct kernel_pkey_params *params,
                        const void *in, void *out);
     int (*asym_verify_signature)(struct kernel_pkey_params *params,
                                  const void *in, const void *in2);

Since encrypt, decrypt and sign are identical in their interfaces, they're
rolled together in the asym_eds_op() operation and there's an operation ID
in the params argument to distinguish them.

Verify is different in that we supply the data and the signature instead 
and get an error value (or 0) as the only result on the expectation that 
this may well be how a hardware crypto device may work."

---


The following changes since commit e5f6d9afa3415104e402cd69288bb03f7165eeba:

  Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc (2018-10-25 18:14:31 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git next-keys2

for you to fetch changes up to 64ae16dfeefec670276607fa789ce096c7ebd7c4:

  KEYS: asym_tpm: Add support for the sign operation [ver #2] (2018-10-26 09:30:47 +0100)

----------------------------------------------------------------
David Howells (8):
      KEYS: Provide key type operations for asymmetric key ops [ver #2]
      KEYS: Provide keyctls to drive the new key type ops for asymmetric keys [ver #2]
      KEYS: Provide missing asymmetric key subops for new key type ops [ver #2]
      KEYS: Make the X.509 and PKCS7 parsers supply the sig encoding type [ver #2]
      KEYS: Provide software public key query function [ver #2]
      KEYS: Allow the public_key struct to hold a private key [ver #2]
      KEYS: Implement encrypt, decrypt and sign for software asymmetric key [ver #2]
      KEYS: Implement PKCS#8 RSA Private Key parser [ver #2]

Denis Kenzior (14):
      crypto: rsa-pkcs1pad: Allow hash to be optional [ver #2]
      KEYS: asym_tpm: add skeleton for asym_tpm [ver #2]
      KEYS: asym_tpm: extract key size & public key [ver #2]
      KEYS: Add parser for TPM-based keys [ver #2]
      KEYS: asym_tpm: Implement pkey_query [ver #2]
      KEYS: asym_tpm: Implement encryption operation [ver #2]
      KEYS: trusted: Expose common functionality [ver #2]
      KEYS: Move trusted.h to include/keys [ver #2]
      KEYS: asym_tpm: Add loadkey2 and flushspecific [ver #2]
      KEYS: asym_tpm: Implement tpm_unbind [ver #2]
      KEYS: asym_tpm: Implement the decrypt operation [ver #2]
      KEYS: asym_tpm: Implement signature verification [ver #2]
      KEYS: asym_tpm: Implement tpm_sign [ver #2]
      KEYS: asym_tpm: Add support for the sign operation [ver #2]

 Documentation/crypto/asymmetric-keys.txt  |  26 +-
 Documentation/security/keys/core.rst      | 217 +++++++
 crypto/asymmetric_keys/Kconfig            |  31 +
 crypto/asymmetric_keys/Makefile           |  25 +
 crypto/asymmetric_keys/asym_tpm.c         | 988 ++++++++++++++++++++++++++++++
 crypto/asymmetric_keys/asymmetric_keys.h  |   3 +
 crypto/asymmetric_keys/asymmetric_type.c  |  43 ++
 crypto/asymmetric_keys/pkcs7_parser.c     |   1 +
 crypto/asymmetric_keys/pkcs8.asn1         |  24 +
 crypto/asymmetric_keys/pkcs8_parser.c     | 184 ++++++
 crypto/asymmetric_keys/public_key.c       | 191 +++++-
 crypto/asymmetric_keys/signature.c        |  95 +++
 crypto/asymmetric_keys/tpm.asn1           |   5 +
 crypto/asymmetric_keys/tpm_parser.c       | 102 +++
 crypto/asymmetric_keys/x509_cert_parser.c |  21 +-
 crypto/rsa-pkcs1pad.c                     |  59 +-
 include/crypto/asym_tpm_subtype.h         |  19 +
 include/crypto/public_key.h               |  14 +-
 include/keys/asymmetric-subtype.h         |   9 +
 {security => include}/keys/trusted.h      |  14 +-
 include/linux/key-type.h                  |  11 +
 include/linux/keyctl.h                    |  46 ++
 include/uapi/linux/keyctl.h               |  30 +
 security/keys/Makefile                    |   1 +
 security/keys/compat.c                    |  18 +
 security/keys/internal.h                  |  39 ++
 security/keys/keyctl.c                    |  24 +
 security/keys/keyctl_pkey.c               | 323 ++++++++++
 security/keys/trusted.c                   |  14 +-
 29 files changed, 2516 insertions(+), 61 deletions(-)
 create mode 100644 crypto/asymmetric_keys/asym_tpm.c
 create mode 100644 crypto/asymmetric_keys/pkcs8.asn1
 create mode 100644 crypto/asymmetric_keys/pkcs8_parser.c
 create mode 100644 crypto/asymmetric_keys/tpm.asn1
 create mode 100644 crypto/asymmetric_keys/tpm_parser.c
 create mode 100644 include/crypto/asym_tpm_subtype.h
 rename {security => include}/keys/trusted.h (87%)
 create mode 100644 include/linux/keyctl.h
 create mode 100644 security/keys/keyctl_pkey.c

Comments

Linus Torvalds Nov. 1, 2018, 10:32 p.m. UTC | #1
On Fri, Oct 26, 2018 at 2:36 AM James Morris <jmorris@namei.org> wrote:
>
> From David: "Provide five new operations in the key_type struct that can
> be used to provide access to asymmetric key operations.  These will be
> implemented for the asymmetric key type in a later patch and may refer to
> a key retained in RAM by the kernel or a key retained in crypto hardware.

Pulled.

However. I really would have expected some of the TPM people to have
acked these, or at least looked at them. There was no sign of that in
any of the tpm commits that I could see..

Hmm?

               Linus
James Morris Nov. 2, 2018, 6:15 p.m. UTC | #2
On Thu, 1 Nov 2018, Linus Torvalds wrote:

> On Fri, Oct 26, 2018 at 2:36 AM James Morris <jmorris@namei.org> wrote:
> >
> > From David: "Provide five new operations in the key_type struct that can
> > be used to provide access to asymmetric key operations.  These will be
> > implemented for the asymmetric key type in a later patch and may refer to
> > a key retained in RAM by the kernel or a key retained in crypto hardware.
> 
> Pulled.
> 
> However. I really would have expected some of the TPM people to have
> acked these, or at least looked at them. There was no sign of that in
> any of the tpm commits that I could see..
> 
> Hmm?

Good poin.  I'll ensure the linux-integrity list (now cc'd) is always 
included when asking for review of code which touches TPM.