From: Simon Horman <horms@kernel.org>
To: Gui-Dong Han <hanguidong02@outlook.com>
Cc: przemyslaw.kitszel@intel.com, linux-kernel@vger.kernel.org,
stable@vger.kernel.org, edumazet@google.com,
netdev@vger.kernel.org, anthony.l.nguyen@intel.com,
intel-wired-lan@lists.osuosl.org, baijiaju1990@gmail.com,
kuba@kernel.org, pabeni@redhat.com, davem@davemloft.net
Subject: Re: [Intel-wired-lan] [PATCH] ice: Fix improper handling of refcount in ice_dpll_init_rclk_pins()
Date: Sat, 10 Aug 2024 10:17:03 +0100 [thread overview]
Message-ID: <20240810091703.GG1951@kernel.org> (raw)
In-Reply-To: <SY8P300MB0460FB85729319189B40576FC0BA2@SY8P300MB0460.AUSP300.PROD.OUTLOOK.COM>
On Fri, Aug 09, 2024 at 01:02:15PM +0800, Gui-Dong Han wrote:
> 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 patch introduces a goto unregister_pins; statement
> when the condition is met, ensuring that the resources are correctly
> released and the reference count is decremented before returning the error.
> This change prevents potential memory leaks and ensures proper resource
> management within the function.
>
> 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.
>
> Fixes: d7999f5ea64b ("ice: implement dpll interface to control cgu")
> Cc: stable@vger.kernel.org
> Signed-off-by: Gui-Dong Han <hanguidong02@outlook.com>
> ---
> drivers/net/ethernet/intel/ice/ice_dpll.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ice/ice_dpll.c b/drivers/net/ethernet/intel/ice/ice_dpll.c
> index e92be6f130a3..f3f204cae093 100644
> --- a/drivers/net/ethernet/intel/ice/ice_dpll.c
> +++ b/drivers/net/ethernet/intel/ice/ice_dpll.c
> @@ -1641,8 +1641,10 @@ ice_dpll_init_rclk_pins(struct ice_pf *pf, struct ice_dpll_pin *pin,
> if (ret)
> goto unregister_pins;
> }
> - if (WARN_ON((!vsi || !vsi->netdev)))
> - return -EINVAL;
> + if (WARN_ON((!vsi || !vsi->netdev))) {
> + ret = -EINVAL;
> + goto unregister_pins;
> + }
Hi,
I wonder if it would make sense to move the check to the
top of the function. It seems to be more of a verification
of state at the time the function is run than anything else.
Doing so would avoid the need to handle unwind in this case.
> dpll_netdev_pin_set(vsi->netdev, pf->dplls.rclk.pin);
>
> return 0;
> --
> 2.25.1
>
>
WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@kernel.org>
To: Gui-Dong Han <hanguidong02@outlook.com>
Cc: anthony.l.nguyen@intel.com, przemyslaw.kitszel@intel.com,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, intel-wired-lan@lists.osuosl.org,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
baijiaju1990@gmail.com, stable@vger.kernel.org
Subject: Re: [PATCH] ice: Fix improper handling of refcount in ice_dpll_init_rclk_pins()
Date: Sat, 10 Aug 2024 10:17:03 +0100 [thread overview]
Message-ID: <20240810091703.GG1951@kernel.org> (raw)
In-Reply-To: <SY8P300MB0460FB85729319189B40576FC0BA2@SY8P300MB0460.AUSP300.PROD.OUTLOOK.COM>
On Fri, Aug 09, 2024 at 01:02:15PM +0800, Gui-Dong Han wrote:
> 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 patch introduces a goto unregister_pins; statement
> when the condition is met, ensuring that the resources are correctly
> released and the reference count is decremented before returning the error.
> This change prevents potential memory leaks and ensures proper resource
> management within the function.
>
> 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.
>
> Fixes: d7999f5ea64b ("ice: implement dpll interface to control cgu")
> Cc: stable@vger.kernel.org
> Signed-off-by: Gui-Dong Han <hanguidong02@outlook.com>
> ---
> drivers/net/ethernet/intel/ice/ice_dpll.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ice/ice_dpll.c b/drivers/net/ethernet/intel/ice/ice_dpll.c
> index e92be6f130a3..f3f204cae093 100644
> --- a/drivers/net/ethernet/intel/ice/ice_dpll.c
> +++ b/drivers/net/ethernet/intel/ice/ice_dpll.c
> @@ -1641,8 +1641,10 @@ ice_dpll_init_rclk_pins(struct ice_pf *pf, struct ice_dpll_pin *pin,
> if (ret)
> goto unregister_pins;
> }
> - if (WARN_ON((!vsi || !vsi->netdev)))
> - return -EINVAL;
> + if (WARN_ON((!vsi || !vsi->netdev))) {
> + ret = -EINVAL;
> + goto unregister_pins;
> + }
Hi,
I wonder if it would make sense to move the check to the
top of the function. It seems to be more of a verification
of state at the time the function is run than anything else.
Doing so would avoid the need to handle unwind in this case.
> dpll_netdev_pin_set(vsi->netdev, pf->dplls.rclk.pin);
>
> return 0;
> --
> 2.25.1
>
>
next prev parent reply other threads:[~2024-08-10 9:17 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-09 5:02 [Intel-wired-lan] [PATCH] ice: Fix improper handling of refcount in ice_dpll_init_rclk_pins() Gui-Dong Han
2024-08-09 5:02 ` Gui-Dong Han
2024-08-10 9:17 ` Simon Horman [this message]
2024-08-10 9:17 ` Simon Horman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240810091703.GG1951@kernel.org \
--to=horms@kernel.org \
--cc=anthony.l.nguyen@intel.com \
--cc=baijiaju1990@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=hanguidong02@outlook.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.