lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Mon, 18 Jul 2022 16:20:00 +0200
From:   Greg KH <gregkh@...uxfoundation.org>
To:     Gaosheng Cui <cuigaosheng1@...wei.com>
Cc:     srinivas.kandagatla@...aro.org, linux-kernel@...r.kernel.org,
        gongruiqi1@...wei.com, wangweiyang2@...wei.com
Subject: Re: [PATCH -next] nvmem: core: add error handling for dev_set_name

On Mon, Jul 18, 2022 at 09:36:12PM +0800, Gaosheng Cui wrote:
> The type of return value of dev_set_name is int, which may return
> wrong result, so we add error handling for it to reclaim memory
> of nvmem resource, and return early when an error occurs.
> 
> Signed-off-by: Gaosheng Cui <cuigaosheng1@...wei.com>
> ---
>  drivers/nvmem/core.c | 12 +++++++++---
>  1 file changed, 9 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
> index 2164efd12ba9..321d7d63e068 100644
> --- a/drivers/nvmem/core.c
> +++ b/drivers/nvmem/core.c
> @@ -810,18 +810,24 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config)
>  
>  	switch (config->id) {
>  	case NVMEM_DEVID_NONE:
> -		dev_set_name(&nvmem->dev, "%s", config->name);
> +		rval = dev_set_name(&nvmem->dev, "%s", config->name);
>  		break;
>  	case NVMEM_DEVID_AUTO:
> -		dev_set_name(&nvmem->dev, "%s%d", config->name, nvmem->id);
> +		rval = dev_set_name(&nvmem->dev, "%s%d", config->name, nvmem->id);
>  		break;
>  	default:
> -		dev_set_name(&nvmem->dev, "%s%d",
> +		rval = dev_set_name(&nvmem->dev, "%s%d",
>  			     config->name ? : "nvmem",
>  			     config->name ? config->id : nvmem->id);
>  		break;
>  	}
>  
> +	if (rval) {
> +		ida_free(&nvmem_ida, nvmem->id);
> +		kfree(nvmem);
> +		return ERR_PTR(rval);
> +	}
> +
>  	nvmem->read_only = device_property_present(config->dev, "read-only") ||
>  			   config->read_only || !nvmem->reg_write;
>  
> -- 
> 2.25.1
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- This looks like a new version of a previously submitted patch, but you
  did not list below the --- line any changes from the previous version.
  Please read the section entitled "The canonical patch format" in the
  kernel file, Documentation/SubmittingPatches for what needs to be done
  here to properly describe this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ