CyberRota Analysis
AI-GeneratedThe vulnerability affects the Linux kernel's dm-pcache component, where a crafted last-kset chain can lead to an infinite loop during cache replay due to improper handling of segment traversal. This could potentially result in denial of service, as the system may become unresponsive while processing the replay. Organizations utilizing Linux systems, particularly those relying on dm-pcache for caching, should prioritize patching this issue to maintain system stability and performance.
Original NVD Description
In the Linux kernel, the following vulnerability has been resolved: dm-pcache: detect a cycle in the last-kset chain during replay cache_replay() follows the on-media last-kset chain by next_cache_seg_id with no cond_resched(). A forged chain that points back into a segment it has already visited makes the replay loop follow it forever. Cap the last-kset hops at cache->n_segs; a valid chain visits each segment at most once.