* [PATCH net] s390/ism: folio_put() after error
@ 2026-09-02 14:37 Alexandra Winter
2026-09-02 16:58 ` Gerd Bayer
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Alexandra Winter @ 2026-09-02 14:37 UTC (permalink / raw)
To: David Miller, Jakub Kicinski, Paolo Abeni, Eric Dumazet,
Andrew Lunn, Gerd Bayer, Aswin Karuvally
Cc: netdev, linux-s390, linux-kernel, Heiko Carstens, Vasily Gorbik,
Alexander Gordeev, Christian Borntraeger, Sven Schnelle,
Simon Horman
dmb->cpu_addr was allocated via folio_alloc(). Use folio_put() instead of
kfree() in the error exit of ism_alloc_dmb() to avoid slab allocator
corruption.
While at it, reset dmb->cpu_addr after folio_put to avoid unintentional UAF
by future callers.
Fixes: 83781384a96b ("s390/ism: Properly fix receive message buffer allocation")
Signed-off-by: Alexandra Winter <wintera@linux.ibm.com>
---
drivers/s390/net/ism_drv.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/s390/net/ism_drv.c b/drivers/s390/net/ism_drv.c
index 242da20f27e0..035b233abb4e 100644
--- a/drivers/s390/net/ism_drv.c
+++ b/drivers/s390/net/ism_drv.c
@@ -231,6 +231,7 @@ static void ism_free_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
dma_unmap_page(&ism->pdev->dev, dmb->dma_addr, dmb->dmb_len,
DMA_FROM_DEVICE);
folio_put(virt_to_folio(dmb->cpu_addr));
+ dmb->cpu_addr = NULL;
}
static int ism_alloc_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
@@ -274,7 +275,8 @@ static int ism_alloc_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
return 0;
out_free:
- kfree(dmb->cpu_addr);
+ folio_put(folio);
+ dmb->cpu_addr = NULL;
out_bit:
clear_bit(dmb->idx, ism->sba_bitmap);
return rc;
--
2.53.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH net] s390/ism: folio_put() after error
2026-09-02 14:37 [PATCH net] s390/ism: folio_put() after error Alexandra Winter
@ 2026-09-02 16:58 ` Gerd Bayer
2026-09-03 14:37 ` sashiko-bot
2026-09-04 23:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: Gerd Bayer @ 2026-09-02 16:58 UTC (permalink / raw)
To: Alexandra Winter, David Miller, Jakub Kicinski, Paolo Abeni,
Eric Dumazet, Andrew Lunn, Aswin Karuvally
Cc: netdev, linux-s390, linux-kernel, Heiko Carstens, Vasily Gorbik,
Alexander Gordeev, Christian Borntraeger, Sven Schnelle,
Simon Horman
On Wed, 2026-09-02 at 16:37 +0200, Alexandra Winter wrote:
> dmb->cpu_addr was allocated via folio_alloc(). Use folio_put() instead of
> kfree() in the error exit of ism_alloc_dmb() to avoid slab allocator
> corruption.
>
> While at it, reset dmb->cpu_addr after folio_put to avoid unintentional UAF
> by future callers.
>
> Fixes: 83781384a96b ("s390/ism: Properly fix receive message buffer allocation")
> Signed-off-by: Alexandra Winter <wintera@linux.ibm.com>
> ---
> drivers/s390/net/ism_drv.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/s390/net/ism_drv.c b/drivers/s390/net/ism_drv.c
> index 242da20f27e0..035b233abb4e 100644
> --- a/drivers/s390/net/ism_drv.c
> +++ b/drivers/s390/net/ism_drv.c
> @@ -231,6 +231,7 @@ static void ism_free_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
> dma_unmap_page(&ism->pdev->dev, dmb->dma_addr, dmb->dmb_len,
> DMA_FROM_DEVICE);
> folio_put(virt_to_folio(dmb->cpu_addr));
> + dmb->cpu_addr = NULL;
> }
>
> static int ism_alloc_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
> @@ -274,7 +275,8 @@ static int ism_alloc_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
> return 0;
>
> out_free:
> - kfree(dmb->cpu_addr);
> + folio_put(folio);
> + dmb->cpu_addr = NULL;
> out_bit:
> clear_bit(dmb->idx, ism->sba_bitmap);
> return rc;
Hi Alexandra,
thank you for catching and addressing these flaws in my patch. Feel
free to accept my
Reviewed-by: Gerd Bayer <gbayer@linux.ibm.com>
Thanks!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net] s390/ism: folio_put() after error
2026-09-02 14:37 [PATCH net] s390/ism: folio_put() after error Alexandra Winter
2026-09-02 16:58 ` Gerd Bayer
@ 2026-09-03 14:37 ` sashiko-bot
2026-09-03 16:40 ` Alexandra Winter
2026-09-04 23:20 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 6+ messages in thread
From: sashiko-bot @ 2026-09-03 14:37 UTC (permalink / raw)
To: Alexandra Winter
Cc: Vasily Gorbik, Christian Borntraeger, Heiko Carstens, linux-s390,
Alexander Gordeev
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [Critical] Missing __GFP_ZERO in folio_alloc() causes uninitialized kernel memory to be exposed in the receive message buffer.
--
commit d942ada155dde57df3b8bd6857db438603cbd218
Author: Alexandra Winter <wintera@linux.ibm.com>
s390/ism: folio_put() after error
This commit uses folio_put() instead of kfree() in the error path of
ism_alloc_dmb() to prevent slab allocator corruption. It also sets
dmb->cpu_addr to NULL after freeing to prevent a potential use-after-free.
Fixes: 83781384a96b ("s390/ism: Properly fix receive message buffer allocation")
> diff --git a/drivers/s390/net/ism_drv.c b/drivers/s390/net/ism_drv.c
> index 242da20f27e0e..035b233abb4e9 100644
> --- a/drivers/s390/net/ism_drv.c
> +++ b/drivers/s390/net/ism_drv.c
[ ... ]
> @@ -274,7 +275,8 @@ static int ism_alloc_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
> return 0;
>
> out_free:
> - kfree(dmb->cpu_addr);
> + folio_put(folio);
[Severity: Critical]
This isn't a bug introduced by this patch, but the previous replacement
of dma_alloc_coherent() with folio_alloc() removed the implicit
zero-initialization of the Direct Message Buffer (DMB).
Looking at the allocation earlier in ism_alloc_dmb():
drivers/s390/net/ism_drv.c:ism_alloc_dmb() {
...
folio = folio_alloc(GFP_KERNEL | __GFP_NOWARN | __GFP_NOMEMALLOC |
__GFP_NORETRY, get_order(dmb->dmb_len));
...
}
Does this missing __GFP_ZERO leak uninitialized host kernel memory to an
untrusted remote peer?
A remote, unprivileged peer partition can trigger an SMC connection
establishment via smcd_new_buf_create() -> smc_ism_register_dmb(). This
causes the local host to allocate and map the DMB memory without
zero-filling it locally before the peer partition gains access to it,
potentially exposing uninitialized memory across the virtual machine or
LPAR boundary.
> + dmb->cpu_addr = NULL;
> out_bit:
> clear_bit(dmb->idx, ism->sba_bitmap);
> return rc;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260902143733.433574-1-wintera@linux.ibm.com?part=1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net] s390/ism: folio_put() after error
2026-09-03 14:37 ` sashiko-bot
@ 2026-09-03 16:40 ` Alexandra Winter
2026-09-03 16:41 ` Alexandra Winter
0 siblings, 1 reply; 6+ messages in thread
From: Alexandra Winter @ 2026-09-03 16:40 UTC (permalink / raw)
To: sashiko-reviews
Cc: Vasily Gorbik, Christian Borntraeger, Heiko Carstens, linux-s390,
Alexander Gordeev, Julian Wiedmann, Tobias Schumacher
On 03.09.26 16:37, sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
>
> Pre-existing issues:
> - [Critical] Missing __GFP_ZERO in folio_alloc() causes uninitialized kernel memory to be exposed in the receive message buffer.
> --
>
> commit d942ada155dde57df3b8bd6857db438603cbd218
> Author: Alexandra Winter <wintera@linux.ibm.com>
>
> s390/ism: folio_put() after error
>
> This commit uses folio_put() instead of kfree() in the error path of
> ism_alloc_dmb() to prevent slab allocator corruption. It also sets
> dmb->cpu_addr to NULL after freeing to prevent a potential use-after-free.
>
> Fixes: 83781384a96b ("s390/ism: Properly fix receive message buffer allocation")
>
>> diff --git a/drivers/s390/net/ism_drv.c b/drivers/s390/net/ism_drv.c
>> index 242da20f27e0e..035b233abb4e9 100644
>> --- a/drivers/s390/net/ism_drv.c
>> +++ b/drivers/s390/net/ism_drv.c
> [ ... ]
>> @@ -274,7 +275,8 @@ static int ism_alloc_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
>> return 0;
>>
>> out_free:
>> - kfree(dmb->cpu_addr);
>> + folio_put(folio);
>
> [Severity: Critical]
> This isn't a bug introduced by this patch, but the previous replacement
> of dma_alloc_coherent() with folio_alloc() removed the implicit
> zero-initialization of the Direct Message Buffer (DMB).
>
> Looking at the allocation earlier in ism_alloc_dmb():
>
> drivers/s390/net/ism_drv.c:ism_alloc_dmb() {
> ...
> folio = folio_alloc(GFP_KERNEL | __GFP_NOWARN | __GFP_NOMEMALLOC |
> __GFP_NORETRY, get_order(dmb->dmb_len));
> ...
> }
>
> Does this missing __GFP_ZERO leak uninitialized host kernel memory to an
> untrusted remote peer?
>
This is actually already on my ToDo list.
See also my discussion with Julian on 12.08.2026 about
Re: [PATCH v2 1/6] dibs: remove __GFP_ZERO from loopback
> A remote, unprivileged peer partition can trigger an SMC connection
> establishment via smcd_new_buf_create() -> smc_ism_register_dmb(). This
> causes the local host to allocate and map the DMB memory without
> zero-filling it locally before the peer partition gains access to it,
> potentially exposing uninitialized memory across the virtual machine or
> LPAR boundary.
>
>> + dmb->cpu_addr = NULL;
>> out_bit:
>> clear_bit(dmb->idx, ism->sba_bitmap);
>> return rc;
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net] s390/ism: folio_put() after error
2026-09-03 16:40 ` Alexandra Winter
@ 2026-09-03 16:41 ` Alexandra Winter
0 siblings, 0 replies; 6+ messages in thread
From: Alexandra Winter @ 2026-09-03 16:41 UTC (permalink / raw)
To: sashiko-reviews, Julian Ruess
Cc: Vasily Gorbik, Christian Borntraeger, Heiko Carstens, linux-s390,
Alexander Gordeev, Tobias Schumacher
Corrected To Julian
On 03.09.26 18:40, Alexandra Winter wrote:
>
>
> On 03.09.26 16:37, sashiko-bot@kernel.org wrote:
>> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
>>
>> Pre-existing issues:
>> - [Critical] Missing __GFP_ZERO in folio_alloc() causes uninitialized kernel memory to be exposed in the receive message buffer.
>> --
>>
>> commit d942ada155dde57df3b8bd6857db438603cbd218
>> Author: Alexandra Winter <wintera@linux.ibm.com>
>>
>> s390/ism: folio_put() after error
>>
>> This commit uses folio_put() instead of kfree() in the error path of
>> ism_alloc_dmb() to prevent slab allocator corruption. It also sets
>> dmb->cpu_addr to NULL after freeing to prevent a potential use-after-free.
>>
>> Fixes: 83781384a96b ("s390/ism: Properly fix receive message buffer allocation")
>>
>>> diff --git a/drivers/s390/net/ism_drv.c b/drivers/s390/net/ism_drv.c
>>> index 242da20f27e0e..035b233abb4e9 100644
>>> --- a/drivers/s390/net/ism_drv.c
>>> +++ b/drivers/s390/net/ism_drv.c
>> [ ... ]
>>> @@ -274,7 +275,8 @@ static int ism_alloc_dmb(struct ism_dev *ism, struct dibs_dmb *dmb)
>>> return 0;
>>>
>>> out_free:
>>> - kfree(dmb->cpu_addr);
>>> + folio_put(folio);
>>
>> [Severity: Critical]
>> This isn't a bug introduced by this patch, but the previous replacement
>> of dma_alloc_coherent() with folio_alloc() removed the implicit
>> zero-initialization of the Direct Message Buffer (DMB).
>>
>> Looking at the allocation earlier in ism_alloc_dmb():
>>
>> drivers/s390/net/ism_drv.c:ism_alloc_dmb() {
>> ...
>> folio = folio_alloc(GFP_KERNEL | __GFP_NOWARN | __GFP_NOMEMALLOC |
>> __GFP_NORETRY, get_order(dmb->dmb_len));
>> ...
>> }
>>
>> Does this missing __GFP_ZERO leak uninitialized host kernel memory to an
>> untrusted remote peer?
>>
>
> This is actually already on my ToDo list.
> See also my discussion with Julian on 12.08.2026 about
> Re: [PATCH v2 1/6] dibs: remove __GFP_ZERO from loopback
>
>
>
>> A remote, unprivileged peer partition can trigger an SMC connection
>> establishment via smcd_new_buf_create() -> smc_ism_register_dmb(). This
>> causes the local host to allocate and map the DMB memory without
>> zero-filling it locally before the peer partition gains access to it,
>> potentially exposing uninitialized memory across the virtual machine or
>> LPAR boundary.
>>
>>> + dmb->cpu_addr = NULL;
>>> out_bit:
>>> clear_bit(dmb->idx, ism->sba_bitmap);
>>> return rc;
>>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net] s390/ism: folio_put() after error
2026-09-02 14:37 [PATCH net] s390/ism: folio_put() after error Alexandra Winter
2026-09-02 16:58 ` Gerd Bayer
2026-09-03 14:37 ` sashiko-bot
@ 2026-09-04 23:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-04 23:20 UTC (permalink / raw)
To: Alexandra Winter
Cc: davem, kuba, pabeni, edumazet, andrew+netdev, gbayer, aswin,
netdev, linux-s390, linux-kernel, hca, gor, agordeev, borntraeger,
svens, horms
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 2 Sep 2026 16:37:33 +0200 you wrote:
> dmb->cpu_addr was allocated via folio_alloc(). Use folio_put() instead of
> kfree() in the error exit of ism_alloc_dmb() to avoid slab allocator
> corruption.
>
> While at it, reset dmb->cpu_addr after folio_put to avoid unintentional UAF
> by future callers.
>
> [...]
Here is the summary with links:
- [net] s390/ism: folio_put() after error
https://git.kernel.org/netdev/net/c/907a56ab3eb8
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-09-04 23:21 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-02 14:37 [PATCH net] s390/ism: folio_put() after error Alexandra Winter
2026-09-02 16:58 ` Gerd Bayer
2026-09-03 14:37 ` sashiko-bot
2026-09-03 16:40 ` Alexandra Winter
2026-09-03 16:41 ` Alexandra Winter
2026-09-04 23:20 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox