2018-12-13 22:53:42

by Tom Lendacky

[permalink] [raw]
Subject: [PATCH] kernel/dma/direct: Do not include SME mask in the DMA supported check

The dma_direct_supported() function intends to check the DMA mask against
specific values. However, the phys_to_dma() function includes the SME
encryption mask, which defeats the intended purpose of the check. This
results in drivers that support less than 48-bit DMA (SME encryption mask
is bit 47) from being able to set the DMA mask successfully when SME is
active, which results in the driver failing to initialize.

Change the function used to check the mask from phys_to_dma() to
__phys_to_dma() so that the SME encryption mask is not part of the check.

Fixes: c1d0af1a1d5d ("kernel/dma/direct: take DMA offset into account in dma_direct_supported")
Signed-off-by: Tom Lendacky <[email protected]>
---
kernel/dma/direct.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/kernel/dma/direct.c b/kernel/dma/direct.c
index 22a12ab..375c77e 100644
--- a/kernel/dma/direct.c
+++ b/kernel/dma/direct.c
@@ -309,7 +309,12 @@ int dma_direct_supported(struct device *dev, u64 mask)

min_mask = min_t(u64, min_mask, (max_pfn - 1) << PAGE_SHIFT);

- return mask >= phys_to_dma(dev, min_mask);
+ /*
+ * This check needs to be against the actual bit mask value, so
+ * use __phys_to_dma() here so that the SME encryption mask isn't
+ * part of the check.
+ */
+ return mask >= __phys_to_dma(dev, min_mask);
}

int dma_direct_mapping_error(struct device *dev, dma_addr_t dma_addr)


2018-12-15 10:56:17

by Christoph Hellwig

[permalink] [raw]
Subject: Re: [PATCH] kernel/dma/direct: Do not include SME mask in the DMA supported check

The mail seems to be so oddly encoded so that git-am fails on it. Can
you resend as plain text?

2018-12-16 23:44:43

by Tom Lendacky

[permalink] [raw]
Subject: Re: [PATCH] kernel/dma/direct: Do not include SME mask in the DMA supported check

On 12/15/2018 04:55 AM, Christoph Hellwig wrote:
> The mail seems to be so oddly encoded so that git-am fails on it. Can
> you resend as plain text?

Hmmm... not sure what happened with that, but yeah, looking at the message
source shows something strange went on. Let me take a look and I'll try to
get a good version to you tommorow (Monday).

Thanks,
Tom

>

2018-12-17 18:07:50

by Tom Lendacky

[permalink] [raw]
Subject: [RESEND PATCH] kernel/dma/direct: Do not include SME mask in the DMA supported check

The dma_direct_supported() function intends to check the DMA mask against
specific values. However, the phys_to_dma() function includes the SME
encryption mask, which defeats the intended purpose of the check. This
results in drivers that support less than 48-bit DMA (SME encryption mask
is bit 47) from being able to set the DMA mask successfully when SME is
active, which results in the driver failing to initialize.

Change the function used to check the mask from phys_to_dma() to
__phys_to_dma() so that the SME encryption mask is not part of the check.

Fixes: c1d0af1a1d5d ("kernel/dma/direct: take DMA offset into account in dma_direct_supported")
Signed-off-by: Tom Lendacky <[email protected]>
---
kernel/dma/direct.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/kernel/dma/direct.c b/kernel/dma/direct.c
index 22a12ab..375c77e 100644
--- a/kernel/dma/direct.c
+++ b/kernel/dma/direct.c
@@ -309,7 +309,12 @@ int dma_direct_supported(struct device *dev, u64 mask)

min_mask = min_t(u64, min_mask, (max_pfn - 1) << PAGE_SHIFT);

- return mask >= phys_to_dma(dev, min_mask);
+ /*
+ * This check needs to be against the actual bit mask value, so
+ * use __phys_to_dma() here so that the SME encryption mask isn't
+ * part of the check.
+ */
+ return mask >= __phys_to_dma(dev, min_mask);
}

int dma_direct_mapping_error(struct device *dev, dma_addr_t dma_addr)
--
1.9.1


2018-12-17 18:44:52

by Tom Lendacky

[permalink] [raw]
Subject: Re: [PATCH] kernel/dma/direct: Do not include SME mask in the DMA supported check

On 12/16/2018 05:41 PM, Tom Lendacky wrote:
> On 12/15/2018 04:55 AM, Christoph Hellwig wrote:
>> The mail seems to be so oddly encoded so that git-am fails on it. Can
>> you resend as plain text?
>
> Hmmm... not sure what happened with that, but yeah, looking at the message
> source shows something strange went on. Let me take a look and I'll try to
> get a good version to you tommorow (Monday).

Must have been something with stgit... just resent using git format-patch
and git send-email and it looks ok. Let me know if it's still not right
when it gets to you.

Thanks,
Tom

>
> Thanks,
> Tom
>
>>

2018-12-17 19:26:17

by Christoph Hellwig

[permalink] [raw]
Subject: Re: [RESEND PATCH] kernel/dma/direct: Do not include SME mask in the DMA supported check

Thanks,

applied to the dma-mapping for-linus tree.