From: Alexey Kardashevskiy <aik@amd.com>
To: Ard Biesheuvel <ardb@kernel.org>, Borislav Petkov <bp@alien8.de>,
Ard Biesheuvel <ardb+git@google.com>,
Eric Biggers <ebiggers@kernel.org>
Cc: linux-kernel@vger.kernel.org, x86@kernel.org,
Tom Lendacky <thomas.lendacky@amd.com>
Subject: Re: [PATCH] x86/sev: Remove bogus virtual address check
Date: Wed, 1 Apr 2026 08:30:53 +1100 [thread overview]
Message-ID: <86dc5dea-2ddc-44b4-b295-d34d87f53567@amd.com> (raw)
In-Reply-To: <daba0767-475d-49c2-8b32-a090d983a1b0@app.fastmail.com>
On 1/4/26 00:21, Ard Biesheuvel wrote:
> (add Eric back to cc)
>
> Please keep Eric on cc - I added him for a reason, thanks.
>
>
> On Tue, 31 Mar 2026, at 15:18, Ard Biesheuvel wrote:
>> On Tue, 31 Mar 2026, at 15:16, Borislav Petkov wrote:
>>> On Fri, Oct 10, 2025 at 05:10:37PM +0200, Ard Biesheuvel wrote:
>>>> From: Ard Biesheuvel <ardb@kernel.org>
>>>>
>>>> The AES-GCM crypto library operates strictly on virtual addresses, and
>>>> never performs any H/W offload, and so calling virt_addr_valid() is not
>>>> needed.
>>>>
>>>> Cc: Borislav Petkov (AMD) <bp@alien8.de>
>>>> Cc: Tom Lendacky <thomas.lendacky@amd.com>
>>>> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
>>>> ---
>>>> arch/x86/coco/sev/core.c | 9 ---------
>>>> 1 file changed, 9 deletions(-)
>>>>
>>>> diff --git a/arch/x86/coco/sev/core.c b/arch/x86/coco/sev/core.c
>>>> index 9ae3b11754e6..c4e2de3687a9 100644
>>>> --- a/arch/x86/coco/sev/core.c
>>>> +++ b/arch/x86/coco/sev/core.c
>>>> @@ -2249,15 +2249,6 @@ int snp_send_guest_request(struct snp_msg_desc *mdesc, struct snp_guest_req *req
>>>> u64 seqno;
>>>> int rc;
>>>>
>>>> - /*
>>>> - * enc_payload() calls aesgcm_encrypt(), which can potentially offload to HW.
>>>> - * The offload's DMA SG list of data to encrypt has to be in linear mapping.
>>>> - */
>>>> - if (!virt_addr_valid(req->req_buf) || !virt_addr_valid(req->resp_buf)) {
>>>> - pr_warn("AES-GSM buffers must be in linear mapping");
>>>> - return -EINVAL;
>>>> - }
>>>> -
>>>> guard(mutex)(&snp_cmd_mutex);
>>>>
>>>> /* Check if the VMPCK is not empty */
>>>> --
>>>
>>> This came from:
>>>
>>> 7ffeb2fc2670 ("x86/sev: Document requirement for linear mapping of
>>> guest request buffers")
Nah, this is because of
db10cb9b574675402b virt: sevguest: Fix passing a stack buffer as a scatterlist target
>>>
>>> and there was some speculation about the potential of using a crypto
>>> accelerator which wants addresses in linear mapping...
If the pr_warn() above is removed, then we get this BUG_ON back:
===
static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
unsigned int buflen)
{
#ifdef CONFIG_DEBUG_SG
BUG_ON(!virt_addr_valid(buf));
#endif
sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
}
===
So if you really insist on removing my pr_warn(), then post a patch removing the BUG_ON too. Thanks,
>>>
>>
>> Sure, but that speculation was entirely misguided, so we can remove this again.
--
Alexey
next prev parent reply other threads:[~2026-03-31 21:31 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-10 15:10 Ard Biesheuvel
2026-03-31 7:10 ` Ard Biesheuvel
2026-03-31 13:16 ` Borislav Petkov
2026-03-31 13:18 ` Ard Biesheuvel
2026-03-31 13:21 ` Ard Biesheuvel
2026-03-31 21:30 ` Alexey Kardashevskiy [this message]
2026-04-01 7:29 ` Ard Biesheuvel
2026-04-01 8:03 ` Alexey Kardashevskiy
2026-04-01 8:12 ` Ard Biesheuvel
2026-04-01 12:16 ` Borislav Petkov
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=86dc5dea-2ddc-44b4-b295-d34d87f53567@amd.com \
--to=aik@amd.com \
--cc=ardb+git@google.com \
--cc=ardb@kernel.org \
--cc=bp@alien8.de \
--cc=ebiggers@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=thomas.lendacky@amd.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