CVE-2023-53095
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
02/05/2025
Last modified:
02/05/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
drm/ttm: Fix a NULL pointer dereference<br />
<br />
The LRU mechanism may look up a resource in the process of being removed<br />
from an object. The locking rules here are a bit unclear but it looks<br />
currently like res->bo assignment is protected by the LRU lock, whereas<br />
bo->resource is protected by the object lock, while *clearing* of<br />
bo->resource is also protected by the LRU lock. This means that if<br />
we check that bo->resource points to the LRU resource under the LRU<br />
lock we should be safe.<br />
So perform that check before deciding to swap out a bo. That avoids<br />
dereferencing a NULL bo->resource in ttm_bo_swapout().