Skip to content

Commit 42d3610

Browse files
skbuff: Fix a race between coalescing and releasing SKBs
jira VULN-154361 cve CVE-2023-53186 commit-author Liang Chen <[email protected]> commit 0646dc3 Commit 1effe8c ("skbuff: fix coalescing for page_pool fragment recycling") allowed coalescing to proceed with non page pool page and page pool page when @from is cloned, i.e. to->pp_recycle --> false from->pp_recycle --> true skb_cloned(from) --> true However, it actually requires skb_cloned(@from) to hold true until coalescing finishes in this situation. If the other cloned SKB is released while the merging is in process, from_shinfo->nr_frags will be set to 0 toward the end of the function, causing the increment of frag page _refcount to be unexpectedly skipped resulting in inconsistent reference counts. Later when SKB(@to) is released, it frees the page directly even though the page pool page is still in use, leading to use-after-free or double-free errors. So it should be prohibited. The double-free error message below prompted us to investigate: BUG: Bad page state in process swapper/1 pfn:0e0d1 page:00000000c6548b28 refcount:-1 mapcount:0 mapping:0000000000000000 index:0x2 pfn:0xe0d1 flags: 0xfffffc0000000(node=0|zone=1|lastcpupid=0x1fffff) raw: 000fffffc0000000 0000000000000000 ffffffff00000101 0000000000000000 raw: 0000000000000002 0000000000000000 ffffffffffffffff 0000000000000000 page dumped because: nonzero _refcount CPU: 1 PID: 0 Comm: swapper/1 Tainted: G E 6.2.0+ Call Trace: <IRQ> dump_stack_lvl+0x32/0x50 bad_page+0x69/0xf0 free_pcp_prepare+0x260/0x2f0 free_unref_page+0x20/0x1c0 skb_release_data+0x10b/0x1a0 napi_consume_skb+0x56/0x150 net_rx_action+0xf0/0x350 ? __napi_schedule+0x79/0x90 __do_softirq+0xc8/0x2b1 __irq_exit_rcu+0xb9/0xf0 common_interrupt+0x82/0xa0 </IRQ> <TASK> asm_common_interrupt+0x22/0x40 RIP: 0010:default_idle+0xb/0x20 Fixes: 53e0961 ("page_pool: add frag page recycling support in page pool") Signed-off-by: Liang Chen <[email protected]> Reviewed-by: Eric Dumazet <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]> (cherry picked from commit 0646dc3) Signed-off-by: Shreeya Patel <[email protected]>
1 parent 536b6af commit 42d3610

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

net/core/skbuff.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5385,18 +5385,18 @@ bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
53855385
if (skb_cloned(to))
53865386
return false;
53875387

5388-
/* In general, avoid mixing slab allocated and page_pool allocated
5389-
* pages within the same SKB. However when @to is not pp_recycle and
5390-
* @from is cloned, we can transition frag pages from page_pool to
5391-
* reference counted.
5392-
*
5393-
* On the other hand, don't allow coalescing two pp_recycle SKBs if
5394-
* @from is cloned, in case the SKB is using page_pool fragment
5388+
/* In general, avoid mixing page_pool and non-page_pool allocated
5389+
* pages within the same SKB. Additionally avoid dealing with clones
5390+
* with page_pool pages, in case the SKB is using page_pool fragment
53955391
* references (PP_FLAG_PAGE_FRAG). Since we only take full page
53965392
* references for cloned SKBs at the moment that would result in
53975393
* inconsistent reference counts.
5394+
* In theory we could take full references if @from is cloned and
5395+
* !@to->pp_recycle but its tricky (due to potential race with
5396+
* the clone disappearing) and rare, so not worth dealing with.
53985397
*/
5399-
if (to->pp_recycle != (from->pp_recycle && !skb_cloned(from)))
5398+
if (to->pp_recycle != from->pp_recycle ||
5399+
(from->pp_recycle && skb_cloned(from)))
54005400
return false;
54015401

54025402
if (len <= skb_tailroom(to)) {

0 commit comments

Comments
 (0)