---
id: CVE-2023-52483
title: |-
  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 t…
summary: |-
  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 t…
severity: high
cvss: 7.8
cvssVector: 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'
cwe:
  - CWE-416
vendor: linux
product: linux_kernel
affected:
  - 'linux_kernel >= 5.15, < 5.15.137'
  - 'linux_kernel >= 5.16, < 6.1.59'
  - 'linux_kernel >= 6.2, < 6.5.8'
  - linux_kernel = 6.6
patched:
  - linux_kernel 6.5.8
published: '2024-02-29'
updated: '2026-08-04'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2023-52483'
references:
  - url: 'https://git.kernel.org/stable/c/1db0724a01b558feb1ecae551782add1951a114a'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/2405f64a95a7a094eb24cba9bcfaffd1ea264de4'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/5093bbfc10ab6636b32728e35813cbd79feb063c'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/6c52b12159049046483fdb0c411a0a1869c41a67'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/1db0724a01b558feb1ecae551782add1951a114a'
    label: af854a3a-2127-422b-91ae-364da2661108
  - url: 'https://git.kernel.org/stable/c/2405f64a95a7a094eb24cba9bcfaffd1ea264de4'
    label: af854a3a-2127-422b-91ae-364da2661108
  - url: 'https://git.kernel.org/stable/c/5093bbfc10ab6636b32728e35813cbd79feb063c'
    label: af854a3a-2127-422b-91ae-364da2661108
  - url: 'https://git.kernel.org/stable/c/6c52b12159049046483fdb0c411a0a1869c41a67'
    label: af854a3a-2127-422b-91ae-364da2661108
tags:
  - nvd
epss: 0.00231
epssPercentile: 0.12383
ingestedAt: '2026-08-04T10:39:39.716Z'
---

## Overview

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 <rootlab@huawei.com>, where
introducing a delay in the route lookup could cause a UAF on
simultaneous sendmsg() and route deletion.

## Affected

- `linux_kernel >= 5.15, < 5.15.137`
- `linux_kernel >= 5.16, < 6.1.59`
- `linux_kernel >= 6.2, < 6.5.8`
- `linux_kernel = 6.6`

## Remediation

Upgrade past the affected range:

- `linux_kernel 6.5.8`
