CyberRota Analysis
AI-GeneratedThe vulnerability affects the Linux kernel's phylink component, where improper validation of the Physical Coding Sublayer (PCS) returned by the mac_select_pcs function can lead to a kernel panic due to dereferencing an error pointer. This issue can compromise system stability, making it critical for developers and system administrators managing Linux-based environments to prioritize patching. Immediate attention is advised to mitigate potential disruptions in service.
Original NVD Description
In the Linux kernel, the following vulnerability has been resolved: net: phylink: correctly validate returned PCS in phylink_inband_caps In phylink_inband_caps(), the PCS returned by mac_select_pcs is only checked if NULL but mac_select_pcs can also return an error pointer. This can cause a kernel panic as phylink_pcs_inband_caps() only checks if passed PCS is not NULL and directly dereference ops from the phylink_pcs struct. Use the IS_ERR_OR_NULL macro to address both case where the returned PCS can be NULL or an error pointer and prevent a kernel panic.