From: Richard Henderson <richard.henderson@linaro.org>
To: Paolo Bonzini <pbonzini@redhat.com>, qemu-devel@nongnu.org
Cc: berrange@redhat.com, alex.bennee@linaro.org
Subject: Re: [PATCH 2/5] target/i386: SEV: store pointer to decoded id_block in SevSnpGuest
Date: Thu, 27 Jun 2024 09:36:46 -0700 [thread overview]
Message-ID: <6144d10c-0a03-4c88-be37-9ef937b3acad@linaro.org> (raw)
In-Reply-To: <20240627145357.1038664-3-pbonzini@redhat.com>
On 6/27/24 07:53, Paolo Bonzini wrote:
> Do not rely on finish->id_block_uaddr, so that there are no casts from
> pointer to uint64_t. They break on 32-bit hosts.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> target/i386/sev.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
Yes, that is better than my patch 1.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
>
> diff --git a/target/i386/sev.c b/target/i386/sev.c
> index 6daa8c264cd..2d4cfd41e83 100644
> --- a/target/i386/sev.c
> +++ b/target/i386/sev.c
> @@ -153,6 +153,7 @@ struct SevSnpGuestState {
> /* configuration parameters */
> char *guest_visible_workarounds;
> char *id_block_base64;
> + uint8_t *id_block;
> char *id_auth;
> char *host_data;
>
> @@ -2170,16 +2171,15 @@ sev_snp_guest_set_id_block(Object *obj, const char *value, Error **errp)
> gsize len;
>
> finish->id_block_en = 0;
> + g_free(sev_snp_guest->id_block);
> g_free(sev_snp_guest->id_block_base64);
> - g_free((guchar *)finish->id_block_uaddr);
>
> /* store the base64 str so we don't need to re-encode in getter */
> sev_snp_guest->id_block_base64 = g_strdup(value);
> + sev_snp_guest->id_block =
> + qbase64_decode(sev_snp_guest->id_block_base64, -1, &len, errp);
>
> - finish->id_block_uaddr =
> - (uint64_t)qbase64_decode(sev_snp_guest->id_block_base64, -1, &len, errp);
> -
> - if (!finish->id_block_uaddr) {
> + if (!sev_snp_guest->id_block) {
> return;
> }
>
> @@ -2190,6 +2190,7 @@ sev_snp_guest_set_id_block(Object *obj, const char *value, Error **errp)
> }
>
> finish->id_block_en = 1;
> + finish->id_block_uaddr = (uintptr_t)sev_snp_guest->id_block;
> }
>
> static char *
next prev parent reply other threads:[~2024-06-27 16:37 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-27 14:53 [PATCH 0/5] target/i386: SEV: fix compiler warnings on 32-bit hosts Paolo Bonzini
2024-06-27 14:53 ` [PATCH 1/5] target/i386: SEV: rename sev_snp_guest->id_block Paolo Bonzini
2024-06-27 16:36 ` Richard Henderson
2024-06-27 14:53 ` [PATCH 2/5] target/i386: SEV: store pointer to decoded id_block in SevSnpGuest Paolo Bonzini
2024-06-27 16:36 ` Richard Henderson [this message]
2024-06-27 14:53 ` [PATCH 3/5] target/i386: SEV: rename sev_snp_guest->id_auth Paolo Bonzini
2024-06-27 16:37 ` Richard Henderson
2024-06-27 14:53 ` [PATCH 4/5] target/i386: SEV: store pointer to decoded id_auth in SevSnpGuest Paolo Bonzini
2024-06-27 16:37 ` Richard Henderson
2024-06-27 14:53 ` [PATCH 5/5] target/i386: SEV: fix format strings for 32-bit hosts Paolo Bonzini
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=6144d10c-0a03-4c88-be37-9ef937b3acad@linaro.org \
--to=richard.henderson@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=berrange@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.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;
as well as URLs for NNTP newsgroup(s).