* [PATCH net-next v3] net: skb: isolate skb data area allocations into a separate bucket
@ 2026-07-02 17:07 Pedro Falcato
2026-07-08 8:30 ` Paolo Abeni
0 siblings, 1 reply; 4+ messages in thread
From: Pedro Falcato @ 2026-07-02 17:07 UTC (permalink / raw)
To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: Simon Horman, Jason Xing, Kuniyuki Iwashima, netdev, linux-kernel,
linux-hardening, Pedro Falcato, Kees Cook
SKB data area allocations (as done from alloc_skb()) use kmalloc().
These allocations can be variably sized and their contents can be more
or less controlled from userspace, which makes them useful for attackers
that want to overwrite a use-after-free'd object from the same kmalloc slab
(which often just requires the sizes to roughly match into the same kmalloc
bucket). [0] is an easy example of an exploit that uses netlink skb
allocation to target another similarly-sized accidentally freed object.
While other mitigations like CONFIG_RANDOM_KMALLOC_CACHES exist, these are
probabilistic. Use the existing kmem buckets API to further isolate these
allocations in a guaranteed fashion, when CONFIG_SLAB_BUCKETS=y.
Link: https://github.com/google/security-research/blob/master/pocs/linux/kernelctf/CVE-2023-4207_lts_cos_mitigation_2/docs/exploit.md [0]
Reviewed-by: Kees Cook <kees@kernel.org>
Acked-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Pedro Falcato <pfalcato@suse.de>
---
v3:
- rebase on net-next and resend
net/core/skbuff.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 18dabb4e9cfa..9dc5a8548681 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -586,6 +586,8 @@ struct sk_buff *napi_build_skb(void *data, unsigned int frag_size)
}
EXPORT_SYMBOL(napi_build_skb);
+static kmem_buckets *skb_data_buckets __ro_after_init;
+
static void *kmalloc_pfmemalloc(size_t obj_size, gfp_t flags, int node)
{
if (!gfp_pfmemalloc_allowed(flags))
@@ -593,7 +595,8 @@ static void *kmalloc_pfmemalloc(size_t obj_size, gfp_t flags, int node)
if (!obj_size)
return kmem_cache_alloc_node(net_hotdata.skb_small_head_cache,
flags, node);
- return kmalloc_node_track_caller(obj_size, flags, node);
+ return kmem_buckets_alloc_node_track_caller(skb_data_buckets, obj_size,
+ flags, node);
}
/*
@@ -634,7 +637,7 @@ static void *kmalloc_reserve(unsigned int *size, gfp_t flags, int node,
* Try a regular allocation, when that fails and we're not entitled
* to the reserves, fail.
*/
- obj = kmalloc_node_track_caller(obj_size,
+ obj = kmem_buckets_alloc_node_track_caller(skb_data_buckets, obj_size,
flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
node);
if (likely(obj))
@@ -5215,6 +5218,7 @@ void __init skb_init(void)
0,
SKB_SMALL_HEAD_HEADROOM,
NULL);
+ skb_data_buckets = kmem_buckets_create("skb_data", SLAB_PANIC, 0, INT_MAX, NULL);
skb_extensions_init();
}
--
2.54.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH net-next v3] net: skb: isolate skb data area allocations into a separate bucket
2026-07-02 17:07 [PATCH net-next v3] net: skb: isolate skb data area allocations into a separate bucket Pedro Falcato
@ 2026-07-08 8:30 ` Paolo Abeni
2026-07-08 11:16 ` Pedro Falcato
0 siblings, 1 reply; 4+ messages in thread
From: Paolo Abeni @ 2026-07-08 8:30 UTC (permalink / raw)
To: Pedro Falcato, David S. Miller, Eric Dumazet, Jakub Kicinski
Cc: Simon Horman, Jason Xing, Kuniyuki Iwashima, netdev, linux-kernel,
linux-hardening, Kees Cook
On 7/2/26 7:07 PM, Pedro Falcato wrote:> @@ -586,6 +586,8 @@ struct
sk_buff *napi_build_skb(void *data, unsigned int frag_size)
> }
> EXPORT_SYMBOL(napi_build_skb);
>
> +static kmem_buckets *skb_data_buckets __ro_after_init;
> +
> static void *kmalloc_pfmemalloc(size_t obj_size, gfp_t flags, int node)
> {
> if (!gfp_pfmemalloc_allowed(flags))
> @@ -593,7 +595,8 @@ static void *kmalloc_pfmemalloc(size_t obj_size, gfp_t flags, int node)
> if (!obj_size)
> return kmem_cache_alloc_node(net_hotdata.skb_small_head_cache,
> flags, node);
> - return kmalloc_node_track_caller(obj_size, flags, node);
> + return kmem_buckets_alloc_node_track_caller(skb_data_buckets, obj_size,
> + flags, node);
Sashiko noted that some drivers may require GFP_DMA buckets, and the
above may break them:
https://sashiko.dev/#/patchset/20260702170728.168755-1-pfalcato%40suse.de
> }
>
> /*
> @@ -634,7 +637,7 @@ static void *kmalloc_reserve(unsigned int *size, gfp_t flags, int node,
> * Try a regular allocation, when that fails and we're not entitled
> * to the reserves, fail.
> */
> - obj = kmalloc_node_track_caller(obj_size,
> + obj = kmem_buckets_alloc_node_track_caller(skb_data_buckets, obj_size,
> flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
> node);
Minor nit: checkpatch laments WRT brackets alignment.
/P
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH net-next v3] net: skb: isolate skb data area allocations into a separate bucket
2026-07-08 8:30 ` Paolo Abeni
@ 2026-07-08 11:16 ` Pedro Falcato
2026-07-08 13:27 ` Harry Yoo
0 siblings, 1 reply; 4+ messages in thread
From: Pedro Falcato @ 2026-07-08 11:16 UTC (permalink / raw)
To: Paolo Abeni
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Simon Horman,
Jason Xing, Kuniyuki Iwashima, netdev, linux-kernel,
linux-hardening, Kees Cook, linux-mm, Vlastimil Babka, Harry Yoo
On Wed, Jul 08, 2026 at 10:30:50AM +0200, Paolo Abeni wrote:
> On 7/2/26 7:07 PM, Pedro Falcato wrote:> @@ -586,6 +586,8 @@ struct
> sk_buff *napi_build_skb(void *data, unsigned int frag_size)
> > }
> > EXPORT_SYMBOL(napi_build_skb);
> >
> > +static kmem_buckets *skb_data_buckets __ro_after_init;
> > +
> > static void *kmalloc_pfmemalloc(size_t obj_size, gfp_t flags, int node)
> > {
> > if (!gfp_pfmemalloc_allowed(flags))
> > @@ -593,7 +595,8 @@ static void *kmalloc_pfmemalloc(size_t obj_size, gfp_t flags, int node)
> > if (!obj_size)
> > return kmem_cache_alloc_node(net_hotdata.skb_small_head_cache,
> > flags, node);
> > - return kmalloc_node_track_caller(obj_size, flags, node);
> > + return kmem_buckets_alloc_node_track_caller(skb_data_buckets, obj_size,
> > + flags, node);
>
> Sashiko noted that some drivers may require GFP_DMA buckets, and the
> above may break them:
>
> https://sashiko.dev/#/patchset/20260702170728.168755-1-pfalcato%40suse.de
Oh, this is really awkward. Adding linux-mm and slab maintainers for input here.
Considering the current slab bucketing does not seem to duplicate DMA or
CGROUP caches, could it make sense to duplicate those as well? Otherwise we
could add a branch like:
if (gfp_flags & __GFP_DMA)
/* use the global dma kmalloc caches */
>
> > }
> >
> > /*
> > @@ -634,7 +637,7 @@ static void *kmalloc_reserve(unsigned int *size, gfp_t flags, int node,
> > * Try a regular allocation, when that fails and we're not entitled
> > * to the reserves, fail.
> > */
> > - obj = kmalloc_node_track_caller(obj_size,
> > + obj = kmem_buckets_alloc_node_track_caller(skb_data_buckets, obj_size,
> > flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
> > node);
>
> Minor nit: checkpatch laments WRT brackets alignment.
Will fix, thanks.
--
Pedro
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH net-next v3] net: skb: isolate skb data area allocations into a separate bucket
2026-07-08 11:16 ` Pedro Falcato
@ 2026-07-08 13:27 ` Harry Yoo
0 siblings, 0 replies; 4+ messages in thread
From: Harry Yoo @ 2026-07-08 13:27 UTC (permalink / raw)
To: Pedro Falcato, Paolo Abeni
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Simon Horman,
Jason Xing, Kuniyuki Iwashima, netdev, linux-kernel,
linux-hardening, Kees Cook, linux-mm, Vlastimil Babka
On 7/8/26 8:16 PM, Pedro Falcato wrote:
> On Wed, Jul 08, 2026 at 10:30:50AM +0200, Paolo Abeni wrote:
>> On 7/2/26 7:07 PM, Pedro Falcato wrote:> @@ -586,6 +586,8 @@ struct
>> sk_buff *napi_build_skb(void *data, unsigned int frag_size)
>>> }
>>> EXPORT_SYMBOL(napi_build_skb);
>>>
>>> +static kmem_buckets *skb_data_buckets __ro_after_init;
>>> +
>>> static void *kmalloc_pfmemalloc(size_t obj_size, gfp_t flags, int node)
>>> {
>>> if (!gfp_pfmemalloc_allowed(flags))
>>> @@ -593,7 +595,8 @@ static void *kmalloc_pfmemalloc(size_t obj_size, gfp_t flags, int node)
>>> if (!obj_size)
>>> return kmem_cache_alloc_node(net_hotdata.skb_small_head_cache,
>>> flags, node);
>>> - return kmalloc_node_track_caller(obj_size, flags, node);
>>> + return kmem_buckets_alloc_node_track_caller(skb_data_buckets, obj_size,
>>> + flags, node);
>>
>> Sashiko noted that some drivers may require GFP_DMA buckets, and the
>> above may break them:
>>
>> https://sashiko.dev/#/patchset/20260702170728.168755-1-pfalcato%40suse.de
>
> Oh, this is really awkward. Adding linux-mm and slab maintainers for input here.
>
> Considering the current slab bucketing does not seem to duplicate DMA or
> CGROUP caches, could it make sense to duplicate those as well?
Could we specify what kmalloc types the user needs when creating
kmem_buckets and duplicate caches for the requested kmalloc types only?
> Otherwise we could add a branch like:
>
> if (gfp_flags & __GFP_DMA)
> /* use the global dma kmalloc caches */
--
Cheers,
Harry / Hyeonggon
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-07-08 13:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-02 17:07 [PATCH net-next v3] net: skb: isolate skb data area allocations into a separate bucket Pedro Falcato
2026-07-08 8:30 ` Paolo Abeni
2026-07-08 11:16 ` Pedro Falcato
2026-07-08 13:27 ` Harry Yoo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox