[EXTERNAL] [PATCH v2 5/6] tpm: tpm2_key: Extend parser to TPM_LoadableKey

Jarkko Sakkinen jarkko at kernel.org
Tue May 21 07:13:56 UTC 2024


On Tue May 21, 2024 at 8:47 AM EEST, Bharat Bhushan wrote:
>
>
> > -----Original Message-----
> > From: Jarkko Sakkinen <jarkko at kernel.org>
> > Sent: Tuesday, May 21, 2024 8:47 AM
> > To: Herbert Xu <herbert at gondor.apana.org.au>
> > Cc: linux-integrity at vger.kernel.org; keyrings at vger.kernel.org;
> > Andreas.Fuchs at infineon.com; James Prestwood <prestwoj at gmail.com>;
> > David Woodhouse <dwmw2 at infradead.org>; Eric Biggers
> > <ebiggers at kernel.org>; James Bottomley
> > <James.Bottomley at hansenpartnership.com>; Jarkko Sakkinen
> > <jarkko at kernel.org>; David S. Miller <davem at davemloft.net>; open
> > list:CRYPTO API <linux-crypto at vger.kernel.org>; open list <linux-
> > kernel at vger.kernel.org>; Peter Huewe <peterhuewe at gmx.de>; Jason
> > Gunthorpe <jgg at ziepe.ca>; James Bottomley
> > <James.Bottomley at HansenPartnership.com>; Mimi Zohar
> > <zohar at linux.ibm.com>; David Howells <dhowells at redhat.com>; Paul Moore
> > <paul at paul-moore.com>; James Morris <jmorris at namei.org>; Serge E. Hallyn
> > <serge at hallyn.com>; open list:SECURITY SUBSYSTEM <linux-security-
> > module at vger.kernel.org>
> > Subject: [EXTERNAL] [PATCH v2 5/6] tpm: tpm2_key: Extend parser to
> > TPM_LoadableKey
> > 
> > ----------------------------------------------------------------------
> > Extend parser to TPM_LoadableKey. Add field for oid to struct tpm2_key
> > so that callers can differentiate different key types.
> > 
> > Signed-off-by: Jarkko Sakkinen <jarkko at kernel.org>
> > ---
> >  drivers/char/tpm/tpm2_key.c               | 14 +++++++++++---
> >  include/crypto/tpm2_key.h                 |  2 ++
> >  security/keys/trusted-keys/trusted_tpm2.c |  4 ++++
> >  3 files changed, 17 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/char/tpm/tpm2_key.c b/drivers/char/tpm/tpm2_key.c
> > index 0112362e432e..59797dc232f1 100644
> > --- a/drivers/char/tpm/tpm2_key.c
> > +++ b/drivers/char/tpm/tpm2_key.c
> > @@ -32,16 +32,24 @@ int tpm2_key_type(void *context, size_t hdrlen,
> >  		  const void *value, size_t vlen)
> >  {
> >  	enum OID oid = look_up_OID(value, vlen);
> > -
> > -	if (oid != OID_TPMSealedData) {
> > +	struct tpm2_key *key = context;
> > +
> > +	switch (oid) {
> > +	case OID_TPMSealedData:
> > +		pr_info("TPMSealedData\n");
> > +		break;
> > +	case OID_TPMLoadableKey:
> > +		pr_info("TPMLodableKey\n");

These should be pr_debug() (forgot to change).

> > +		break;
> > +	default:
> >  		char buffer[50];
> > -
> >  		sprint_oid(value, vlen, buffer, sizeof(buffer));
> >  		pr_debug("OID is \"%s\" which is not TPMSealedData\n",
> >  			 buffer);
>
> Maybe extend this print to say "neither TPMSealedData nor TPMLodableKey"

Right, I tried to apply minimal delta to patches where existing code
needs to be carved to a new form :-)

I think it could be just "OID \"%s\" is unknown"?

BR, Jarkko



More information about the Linux-security-module-archive mailing list