public inbox for linux-gpio@vger.kernel.org
 help / color / mirror / Atom feed
From: andy.shevchenko@gmail.com
To: Wells Lu <wellslutw@gmail.com>
Cc: linus.walleij@linaro.org, linux-gpio@vger.kernel.org,
	linux-kernel@vger.kernel.org, wells.lu@sunplus.com
Subject: Re: [PATCH v2] pinctrl:sunplus: Add check for kmalloc
Date: Sun, 28 May 2023 18:02:19 +0300	[thread overview]
Message-ID: <ZHNs-5zTZyzVt0b8@surfacebook> (raw)
In-Reply-To: <1685277277-12209-1-git-send-email-wellslutw@gmail.com>

Sun, May 28, 2023 at 08:34:37PM +0800, Wells Lu kirjoitti:
> Fix Smatch static checker warning:
> potential null dereference 'configs'. (kmalloc returns null)

> Changes in v2:
> 1. Add free allocated memory before returned -ENOMEM.
> 2. Add call of_node_put() before returned -ENOMEM.

The placeholder for this is after the cutter '---' line.
I think it may be fixed during application by Linus W.

Otherwise LGTM,
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>

> Fixes: aa74c44be19c ("pinctrl: Add driver for Sunplus SP7021")
> Signed-off-by: Wells Lu <wellslutw@gmail.com>
> ---
>  drivers/pinctrl/sunplus/sppctl.c | 24 ++++++++++++++++++------
>  1 file changed, 18 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/pinctrl/sunplus/sppctl.c b/drivers/pinctrl/sunplus/sppctl.c
> index 6bbbab3..e91ce5b 100644
> --- a/drivers/pinctrl/sunplus/sppctl.c
> +++ b/drivers/pinctrl/sunplus/sppctl.c
> @@ -834,11 +834,6 @@ static int sppctl_dt_node_to_map(struct pinctrl_dev *pctldev, struct device_node
>  	int i, size = 0;
>  
>  	list = of_get_property(np_config, "sunplus,pins", &size);
> -
> -	if (nmG <= 0)
> -		nmG = 0;
> -
> -	parent = of_get_parent(np_config);
>  	*num_maps = size / sizeof(*list);
>  
>  	/*
> @@ -866,10 +861,14 @@ static int sppctl_dt_node_to_map(struct pinctrl_dev *pctldev, struct device_node
>  		}
>  	}
>  
> +	if (nmG <= 0)
> +		nmG = 0;
> +
>  	*map = kcalloc(*num_maps + nmG, sizeof(**map), GFP_KERNEL);
> -	if (*map == NULL)
> +	if (!(*map))
>  		return -ENOMEM;
>  
> +	parent = of_get_parent(np_config);
>  	for (i = 0; i < (*num_maps); i++) {
>  		dt_pin = be32_to_cpu(list[i]);
>  		pin_num = FIELD_GET(GENMASK(31, 24), dt_pin);
> @@ -883,6 +882,8 @@ static int sppctl_dt_node_to_map(struct pinctrl_dev *pctldev, struct device_node
>  			(*map)[i].data.configs.num_configs = 1;
>  			(*map)[i].data.configs.group_or_pin = pin_get_name(pctldev, pin_num);
>  			configs = kmalloc(sizeof(*configs), GFP_KERNEL);
> +			if (!configs)
> +				goto sppctl_map_err;
>  			*configs = FIELD_GET(GENMASK(7, 0), dt_pin);
>  			(*map)[i].data.configs.configs = configs;
>  
> @@ -896,6 +897,8 @@ static int sppctl_dt_node_to_map(struct pinctrl_dev *pctldev, struct device_node
>  			(*map)[i].data.configs.num_configs = 1;
>  			(*map)[i].data.configs.group_or_pin = pin_get_name(pctldev, pin_num);
>  			configs = kmalloc(sizeof(*configs), GFP_KERNEL);
> +			if (!configs)
> +				goto sppctl_map_err;
>  			*configs = SPPCTL_IOP_CONFIGS;
>  			(*map)[i].data.configs.configs = configs;
>  
> @@ -965,6 +968,15 @@ static int sppctl_dt_node_to_map(struct pinctrl_dev *pctldev, struct device_node
>  	of_node_put(parent);
>  	dev_dbg(pctldev->dev, "%d pins mapped\n", *num_maps);
>  	return 0;
> +
> +sppctl_map_err:
> +	for (i = 0; i < (*num_maps); i++)
> +		if (((*map)[i].type == PIN_MAP_TYPE_CONFIGS_PIN) &&
> +		    (*map)[i].data.configs.configs)
> +			kfree((*map)[i].data.configs.configs);
> +	kfree(*map);
> +	of_node_put(parent);
> +	return -ENOMEM;
>  }
>  
>  static const struct pinctrl_ops sppctl_pctl_ops = {
> -- 
> 2.7.4
> 

-- 
With Best Regards,
Andy Shevchenko



  reply	other threads:[~2023-05-28 15:02 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-28 12:34 [PATCH v2] pinctrl:sunplus: Add check for kmalloc Wells Lu
2023-05-28 15:02 ` andy.shevchenko [this message]
2023-05-30 11:48 ` Linus Walleij
     [not found] ` <9ace5c4c-5e17-4207-5a02-6a47ba0aee22@web.de>
2023-06-06 14:39   ` [PATCH] pinctrl: sunplus: Delete an unnecessary check before kfree() in sppctl_dt_node_to_map() Andy Shevchenko
2023-06-09  7:32   ` Linus Walleij

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=ZHNs-5zTZyzVt0b8@surfacebook \
    --to=andy.shevchenko@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=wells.lu@sunplus.com \
    --cc=wellslutw@gmail.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox