Skip to content

Commit 1fc3e74

Browse files
net: sched: use RCU read-side critical section in taprio_dump()
jira VULN-8620 cve CVE-2024-50126 commit-author Dmitry Antipov <[email protected]> commit b22db8b Fix possible use-after-free in 'taprio_dump()' by adding RCU read-side critical section there. Never seen on x86 but found on a KASAN-enabled arm64 system when investigating https://syzkaller.appspot.com/bug?extid=b65e0af58423fc8a73aa: [T15862] BUG: KASAN: slab-use-after-free in taprio_dump+0xa0c/0xbb0 [T15862] Read of size 4 at addr ffff0000d4bb88f8 by task repro/15862 [T15862] [T15862] CPU: 0 UID: 0 PID: 15862 Comm: repro Not tainted 6.11.0-rc1-00293-gdefaf1a2113a-dirty #2 [T15862] Hardware name: QEMU QEMU Virtual Machine, BIOS edk2-20240524-5.fc40 05/24/2024 [T15862] Call trace: [T15862] dump_backtrace+0x20c/0x220 [T15862] show_stack+0x2c/0x40 [T15862] dump_stack_lvl+0xf8/0x174 [T15862] print_report+0x170/0x4d8 [T15862] kasan_report+0xb8/0x1d4 [T15862] __asan_report_load4_noabort+0x20/0x2c [T15862] taprio_dump+0xa0c/0xbb0 [T15862] tc_fill_qdisc+0x540/0x1020 [T15862] qdisc_notify.isra.0+0x330/0x3a0 [T15862] tc_modify_qdisc+0x7b8/0x1838 [T15862] rtnetlink_rcv_msg+0x3c8/0xc20 [T15862] netlink_rcv_skb+0x1f8/0x3d4 [T15862] rtnetlink_rcv+0x28/0x40 [T15862] netlink_unicast+0x51c/0x790 [T15862] netlink_sendmsg+0x79c/0xc20 [T15862] __sock_sendmsg+0xe0/0x1a0 [T15862] ____sys_sendmsg+0x6c0/0x840 [T15862] ___sys_sendmsg+0x1ac/0x1f0 [T15862] __sys_sendmsg+0x110/0x1d0 [T15862] __arm64_sys_sendmsg+0x74/0xb0 [T15862] invoke_syscall+0x88/0x2e0 [T15862] el0_svc_common.constprop.0+0xe4/0x2a0 [T15862] do_el0_svc+0x44/0x60 [T15862] el0_svc+0x50/0x184 [T15862] el0t_64_sync_handler+0x120/0x12c [T15862] el0t_64_sync+0x190/0x194 [T15862] [T15862] Allocated by task 15857: [T15862] kasan_save_stack+0x3c/0x70 [T15862] kasan_save_track+0x20/0x3c [T15862] kasan_save_alloc_info+0x40/0x60 [T15862] __kasan_kmalloc+0xd4/0xe0 [T15862] __kmalloc_cache_noprof+0x194/0x334 [T15862] taprio_change+0x45c/0x2fe0 [T15862] tc_modify_qdisc+0x6a8/0x1838 [T15862] rtnetlink_rcv_msg+0x3c8/0xc20 [T15862] netlink_rcv_skb+0x1f8/0x3d4 [T15862] rtnetlink_rcv+0x28/0x40 [T15862] netlink_unicast+0x51c/0x790 [T15862] netlink_sendmsg+0x79c/0xc20 [T15862] __sock_sendmsg+0xe0/0x1a0 [T15862] ____sys_sendmsg+0x6c0/0x840 [T15862] ___sys_sendmsg+0x1ac/0x1f0 [T15862] __sys_sendmsg+0x110/0x1d0 [T15862] __arm64_sys_sendmsg+0x74/0xb0 [T15862] invoke_syscall+0x88/0x2e0 [T15862] el0_svc_common.constprop.0+0xe4/0x2a0 [T15862] do_el0_svc+0x44/0x60 [T15862] el0_svc+0x50/0x184 [T15862] el0t_64_sync_handler+0x120/0x12c [T15862] el0t_64_sync+0x190/0x194 [T15862] [T15862] Freed by task 6192: [T15862] kasan_save_stack+0x3c/0x70 [T15862] kasan_save_track+0x20/0x3c [T15862] kasan_save_free_info+0x4c/0x80 [T15862] poison_slab_object+0x110/0x160 [T15862] __kasan_slab_free+0x3c/0x74 [T15862] kfree+0x134/0x3c0 [T15862] taprio_free_sched_cb+0x18c/0x220 [T15862] rcu_core+0x920/0x1b7c [T15862] rcu_core_si+0x10/0x1c [T15862] handle_softirqs+0x2e8/0xd64 [T15862] __do_softirq+0x14/0x20 Fixes: 18cdd2f ("net/sched: taprio: taprio_dump and taprio_change are protected by rtnl_mutex") Acked-by: Vinicius Costa Gomes <[email protected]> Signed-off-by: Dmitry Antipov <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Paolo Abeni <[email protected]> (cherry picked from commit b22db8b) Signed-off-by: Shreeya Patel <[email protected]>
1 parent 389d406 commit 1fc3e74

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

net/sched/sch_taprio.c

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2382,9 +2382,6 @@ static int taprio_dump(struct Qdisc *sch, struct sk_buff *skb)
23822382
struct tc_mqprio_qopt opt = { 0 };
23832383
struct nlattr *nest, *sched_nest;
23842384

2385-
oper = rtnl_dereference(q->oper_sched);
2386-
admin = rtnl_dereference(q->admin_sched);
2387-
23882385
mqprio_qopt_reconstruct(dev, &opt);
23892386

23902387
nest = nla_nest_start_noflag(skb, TCA_OPTIONS);
@@ -2405,30 +2402,39 @@ static int taprio_dump(struct Qdisc *sch, struct sk_buff *skb)
24052402
nla_put_u32(skb, TCA_TAPRIO_ATTR_TXTIME_DELAY, q->txtime_delay))
24062403
goto options_error;
24072404

2405+
rcu_read_lock();
2406+
2407+
oper = rtnl_dereference(q->oper_sched);
2408+
admin = rtnl_dereference(q->admin_sched);
2409+
24082410
if (oper && taprio_dump_tc_entries(skb, q, oper))
2409-
goto options_error;
2411+
goto options_error_rcu;
24102412

24112413
if (oper && dump_schedule(skb, oper))
2412-
goto options_error;
2414+
goto options_error_rcu;
24132415

24142416
if (!admin)
24152417
goto done;
24162418

24172419
sched_nest = nla_nest_start_noflag(skb, TCA_TAPRIO_ATTR_ADMIN_SCHED);
24182420
if (!sched_nest)
2419-
goto options_error;
2421+
goto options_error_rcu;
24202422

24212423
if (dump_schedule(skb, admin))
24222424
goto admin_error;
24232425

24242426
nla_nest_end(skb, sched_nest);
24252427

24262428
done:
2429+
rcu_read_unlock();
24272430
return nla_nest_end(skb, nest);
24282431

24292432
admin_error:
24302433
nla_nest_cancel(skb, sched_nest);
24312434

2435+
options_error_rcu:
2436+
rcu_read_unlock();
2437+
24322438
options_error:
24332439
nla_nest_cancel(skb, nest);
24342440

0 commit comments

Comments
 (0)