Re: [PATCH net v2] net: microchip: vcap api: Fix possible memory leak in vcap_decode_rule()
From: Jakub Kicinski
Date: Thu Jul 30 2026 - 18:54:11 EST
On Tue, 28 Jul 2026 17:12:51 +0530 Abdun Nihaal wrote:
> The memory allocated for struct vcap_rule_internal, keyfields and
> actionfields inside vcap_dup_rule() are not freed in some of the error
> paths in vcap_decode_rule(). Fix that by calling vcap_free_rule().
>
> Fixes: 610c32b2ce66 ("net: microchip: vcap: Add vcap_get_rule")
> Cc: stable@xxxxxxxxxxxxxxx
> Reviewed-by: Joe Damato <joe@xxxxxxx>
> Signed-off-by: Abdun Nihaal <nihaal@xxxxxxxxxxxxxx>
> ---
> Compile tested only. Issue found using static analysis.
This is important information please add it to the main commit message
body.
> v1->v2:
> - Convert the error labels from "err" to "out_err" to avoid confusion
> with the err variable, as suggested by Joe Damato.
>
> Link to v1: https://patchwork.kernel.org/project/netdevbpf/patch/20260727125757.134611-1-nihaal@xxxxxxxxxxxxxx/
>
> drivers/net/ethernet/microchip/vcap/vcap_api.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/microchip/vcap/vcap_api.c b/drivers/net/ethernet/microchip/vcap/vcap_api.c
> index ff86cde11a32..376be059d662 100644
> --- a/drivers/net/ethernet/microchip/vcap/vcap_api.c
> +++ b/drivers/net/ethernet/microchip/vcap/vcap_api.c
> @@ -2427,18 +2427,21 @@ struct vcap_rule *vcap_decode_rule(struct vcap_rule_internal *elem)
>
> err = vcap_read_rule(ri);
> if (err)
> - return ERR_PTR(err);
> + goto out_err;
>
> err = vcap_decode_keyset(ri);
> if (err)
> - return ERR_PTR(err);
> + goto out_err;
>
> err = vcap_decode_actionset(ri);
> if (err)
> - return ERR_PTR(err);
> + goto out_err;
>
> out:
> return &ri->data;
> +out_err:
Please name the label after the first action being undone
err_free_rule:
> + vcap_free_rule(&ri->data);
> + return ERR_PTR(err);
--
pw-bot: cr