Bug 2320600 (CVE-2024-50021) - CVE-2024-50021 kernel: ice: Fix improper handling of refcount in ice_dpll_init_rclk_pins()
Summary: CVE-2024-50021 kernel: ice: Fix improper handling of refcount in ice_dpll_ini...
Keywords:
Status: NEW
Alias: CVE-2024-50021
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On: 2320920
Blocks:
TreeView+ depends on / blocked
 
Reported: 2024-10-21 20:02 UTC by OSIDB Bzimport
Modified: 2024-10-22 13:17 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2024-10-21 20:02:29 UTC
In the Linux kernel, the following vulnerability has been resolved:

ice: Fix improper handling of refcount in ice_dpll_init_rclk_pins()

This patch addresses a reference count handling issue in the
ice_dpll_init_rclk_pins() function. The function calls ice_dpll_get_pins(),
which increments the reference count of the relevant resources. However,
if the condition WARN_ON((!vsi || !vsi->netdev)) is met, the function
currently returns an error without properly releasing the resources
acquired by ice_dpll_get_pins(), leading to a reference count leak.

To resolve this, the check has been moved to the top of the function. This
ensures that the function verifies the state before any resources are
acquired, avoiding the need for additional resource management in the
error path.

This bug was identified by an experimental static analysis tool developed
by our team. The tool specializes in analyzing reference count operations
and detecting potential issues where resources are not properly managed.
In this case, the tool flagged the missing release operation as a
potential problem, which led to the development of this patch.

Comment 1 Avinash Hanwate 2024-10-22 11:09:44 UTC
Upstream advisory:
https://lore.kernel.org/linux-cve-announce/2024102129-CVE-2024-50021-d60d@gregkh/T


Note You need to log in before you can comment on or make changes to this bug.