From: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
To: "Daniel P. Smith" <dpsmith@apertussolutions.com>
Cc: linux-kernel@vger.kernel.org, x86@kernel.org,
linux-integrity@vger.kernel.org, ross.philipson@oracle.com,
tglx@linutronix.de, mingo@redhat.com, bp@alien8.de,
hpa@zytor.com, luto@amacapital.net,
trenchboot-devel@googlegroups.com
Subject: Re: [RFC PATCH 3/4] tpm: Conditionally use static buffer in TPM buffer management
Date: Mon, 2 Nov 2020 14:16:37 +0200 [thread overview]
Message-ID: <20201102121637.GB5242@linux.intel.com> (raw)
In-Reply-To: <20201031165122.21539-4-dpsmith@apertussolutions.com>
On Sat, Oct 31, 2020 at 12:51:21PM -0400, Daniel P. Smith wrote:
> Memory management calls cannot be made in the compressed kernel
> environment to dynamically allocate TPM buffer space. For the Secure
> Launch early PCR extend code, use a static buffer instead.
>
> Signed-off-by: Daniel P. Smith <dpsmith@apertussolutions.com>
> Signed-off-by: Ross Philipson <ross.philipson@oracle.com>
> ---
This patch is not necessary.
Just assign tb->data to the static buffer where you use the static
buffer and use tpm_buf_reset().
tpm_buf_init() and tpm_buf_destroy() are optional.
/Jarkko
> include/linux/tpm_buffer.h | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/include/linux/tpm_buffer.h b/include/linux/tpm_buffer.h
> index 8144a52fbc0a..c9482edf6618 100644
> --- a/include/linux/tpm_buffer.h
> +++ b/include/linux/tpm_buffer.h
> @@ -18,6 +18,10 @@
> #ifndef __LINUX_TPM_BUFFER_H__
> #define __LINUX_TPM_BUFFER_H__
>
> +#ifdef COMPRESSED_KERNEL
> +static u8 _tpm_buffer[PAGE_SIZE] = {0};
> +#endif
> +
> struct tpm_header {
> __be16 tag;
> __be32 length;
> @@ -52,7 +56,11 @@ static inline void tpm_buf_reset(struct tpm_buf *buf, u16 tag, u32 ordinal)
>
> static inline int tpm_buf_init(struct tpm_buf *buf, u16 tag, u32 ordinal)
> {
> +#ifdef COMPRESSED_KERNEL
> + buf->data = _tpm_buffer;
> +#else
> buf->data = (u8 *)__get_free_page(GFP_KERNEL);
> +#endif
> if (!buf->data)
> return -ENOMEM;
>
> @@ -63,7 +71,9 @@ static inline int tpm_buf_init(struct tpm_buf *buf, u16 tag, u32 ordinal)
>
> static inline void tpm_buf_destroy(struct tpm_buf *buf)
> {
> +#ifndef COMPRESSED_KERNEL
> free_page((unsigned long)buf->data);
> +#endif
> }
>
> static inline u32 tpm_buf_length(struct tpm_buf *buf)
> @@ -92,7 +102,9 @@ static inline void tpm_buf_append(struct tpm_buf *buf,
> return;
>
> if ((len + new_len) > PAGE_SIZE) {
> +#ifndef COMPRESSED_KERNEL
> WARN(1, "tpm_buf: overflow\n");
> +#endif
> buf->flags |= TPM_BUF_OVERFLOW;
> return;
> }
> --
> 2.11.0
>
/Jarkko
next prev parent reply other threads:[~2020-11-02 12:16 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-31 16:51 [RFC PATCH 0/4] Secure Launch early PCR extend support Daniel P. Smith
2020-10-31 16:51 ` [RFC PATCH 1/4] tpm: Move TPM TIS definitions out of TIS core header Daniel P. Smith
2020-10-31 16:51 ` [RFC PATCH 2/4] tpm: Move core definitions and buffer management out of main TPM header Daniel P. Smith
2020-11-02 12:09 ` Jarkko Sakkinen
2020-10-31 16:51 ` [RFC PATCH 3/4] tpm: Conditionally use static buffer in TPM buffer management Daniel P. Smith
2020-11-02 12:16 ` Jarkko Sakkinen [this message]
2020-10-31 16:51 ` [RFC PATCH 4/4] x86: Add early PCR extend support for Secure Launch Daniel P. Smith
2020-11-02 12:19 ` Jarkko Sakkinen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201102121637.GB5242@linux.intel.com \
--to=jarkko.sakkinen@linux.intel.com \
--cc=bp@alien8.de \
--cc=dpsmith@apertussolutions.com \
--cc=hpa@zytor.com \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=mingo@redhat.com \
--cc=ross.philipson@oracle.com \
--cc=tglx@linutronix.de \
--cc=trenchboot-devel@googlegroups.com \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome