From: "Toke Høiland-Jørgensen" <toke@redhat.com>
To: Dong Chenchen <dongchenchen2@huawei.com>,
hawk@kernel.org, ilias.apalodimas@linaro.org,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, horms@kernel.org, almasrymina@google.com
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
zhangchangzhong@huawei.com,
Dong Chenchen <dongchenchen2@huawei.com>,
syzbot+204a4382fcb3311f3858@syzkaller.appspotmail.com
Subject: Re: [PATCH net] page_pool: Fix use-after-free in page_pool_recycle_in_ring
Date: Fri, 23 May 2025 11:16:25 +0200 [thread overview]
Message-ID: <878qmnn0uu.fsf@toke.dk> (raw)
In-Reply-To: <20250523064524.3035067-1-dongchenchen2@huawei.com>
Dong Chenchen <dongchenchen2@huawei.com> writes:
> syzbot reported a uaf in page_pool_recycle_in_ring:
>
> BUG: KASAN: slab-use-after-free in lock_release+0x151/0xa30 kernel/locking/lockdep.c:5862
> Read of size 8 at addr ffff8880286045a0 by task syz.0.284/6943
>
> CPU: 0 UID: 0 PID: 6943 Comm: syz.0.284 Not tainted 6.13.0-rc3-syzkaller-gdfa94ce54f41 #0
> Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 09/13/2024
> Call Trace:
> <TASK>
> __dump_stack lib/dump_stack.c:94 [inline]
> dump_stack_lvl+0x241/0x360 lib/dump_stack.c:120
> print_address_description mm/kasan/report.c:378 [inline]
> print_report+0x169/0x550 mm/kasan/report.c:489
> kasan_report+0x143/0x180 mm/kasan/report.c:602
> lock_release+0x151/0xa30 kernel/locking/lockdep.c:5862
> __raw_spin_unlock_bh include/linux/spinlock_api_smp.h:165 [inline]
> _raw_spin_unlock_bh+0x1b/0x40 kernel/locking/spinlock.c:210
> spin_unlock_bh include/linux/spinlock.h:396 [inline]
> ptr_ring_produce_bh include/linux/ptr_ring.h:164 [inline]
> page_pool_recycle_in_ring net/core/page_pool.c:707 [inline]
> page_pool_put_unrefed_netmem+0x748/0xb00 net/core/page_pool.c:826
> page_pool_put_netmem include/net/page_pool/helpers.h:323 [inline]
> page_pool_put_full_netmem include/net/page_pool/helpers.h:353 [inline]
> napi_pp_put_page+0x149/0x2b0 net/core/skbuff.c:1036
> skb_pp_recycle net/core/skbuff.c:1047 [inline]
> skb_free_head net/core/skbuff.c:1094 [inline]
> skb_release_data+0x6c4/0x8a0 net/core/skbuff.c:1125
> skb_release_all net/core/skbuff.c:1190 [inline]
> __kfree_skb net/core/skbuff.c:1204 [inline]
> sk_skb_reason_drop+0x1c9/0x380 net/core/skbuff.c:1242
> kfree_skb_reason include/linux/skbuff.h:1263 [inline]
> __skb_queue_purge_reason include/linux/skbuff.h:3343 [inline]
>
> root cause is:
>
> page_pool_recycle_in_ring
> ptr_ring_produce
> spin_lock(&r->producer_lock);
> WRITE_ONCE(r->queue[r->producer++], ptr)
> //recycle last page to pool
> page_pool_release
> page_pool_scrub
> page_pool_empty_ring
> ptr_ring_consume
> page_pool_return_page //release all page
> __page_pool_destroy
> free_percpu(pool->recycle_stats);
> free(pool) //free
>
> spin_unlock(&r->producer_lock); //pool->ring uaf read
> recycle_stat_inc(pool, ring);
>
> page_pool can be free while page pool recycle the last page in ring.
> Add producer-lock barrier to page_pool_release to prevent the page
> pool from being free before all pages have been recycled.
>
> Suggested-by: Jakub Kacinski <kuba@kernel.org>
> Link: https://lore.kernel.org/netdev/20250513083123.3514193-1-dongchenchen2@huawei.com
> Fixes: ff7d6b27f894 ("page_pool: refurbish version of page_pool code")
> Reported-by: syzbot+204a4382fcb3311f3858@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=204a4382fcb3311f3858
> Signed-off-by: Dong Chenchen <dongchenchen2@huawei.com>
Reviewed-by: Toke Høiland-Jørgensen <toke@redhat.com>
next prev parent reply other threads:[~2025-05-23 9:16 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-23 6:45 [PATCH net] page_pool: Fix use-after-free in page_pool_recycle_in_ring Dong Chenchen
2025-05-23 8:30 ` Yunsheng Lin
2025-05-23 16:45 ` Mina Almasry
2025-05-26 14:47 ` dongchenchen (A)
2025-05-26 17:51 ` Mina Almasry
2025-05-27 1:52 ` dongchenchen (A)
2025-05-27 2:13 ` Mina Almasry
2025-05-26 14:27 ` dongchenchen (A)
2025-05-23 9:16 ` Toke Høiland-Jørgensen [this message]
2025-05-23 13:31 ` Paolo Abeni
2025-05-26 15:02 ` dongchenchen (A)
2025-05-23 21:23 ` kernel test robot
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=878qmnn0uu.fsf@toke.dk \
--to=toke@redhat.com \
--cc=almasrymina@google.com \
--cc=davem@davemloft.net \
--cc=dongchenchen2@huawei.com \
--cc=edumazet@google.com \
--cc=hawk@kernel.org \
--cc=horms@kernel.org \
--cc=ilias.apalodimas@linaro.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=syzbot+204a4382fcb3311f3858@syzkaller.appspotmail.com \
--cc=zhangchangzhong@huawei.com \
/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