Lucene search

K
prionPRIOn knowledge basePRION:CVE-2023-52483
HistoryFeb 29, 2024 - 6:15 a.m.

Design/Logic Flaw

2024-02-2906:15:00
PRIOn knowledge base
www.prio-n.com
6
linux
kernel
vulnerability
fix
mctp
route lookups
rcu read-side lock
critical section locks
preemption
kfree
net
route list
uaf
sendmsg
route deletion

6.6 Medium

AI Score

Confidence

Low

0.0004 Low

EPSS

Percentile

15.7%

In the Linux kernel, the following vulnerability has been resolved:

mctp: perform route lookups under a RCU read-side lock

Our current route lookups (mctp_route_lookup and mctp_route_lookup_null)
traverse the net’s route list without the RCU read lock held. This means
the route lookup is subject to preemption, resulting in an potential
grace period expiry, and so an eventual kfree() while we still have the
route pointer.

Add the proper read-side critical section locks around the route
lookups, preventing premption and a possible parallel kfree.

The remaining net->mctp.routes accesses are already under a
rcu_read_lock, or protected by the RTNL for updates.

Based on an analysis from Sili Luo <[emailΒ protected]>, where
introducing a delay in the route lookup could cause a UAF on
simultaneous sendmsg() and route deletion.

6.6 Medium

AI Score

Confidence

Low

0.0004 Low

EPSS

Percentile

15.7%