Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1566975

Re: [PATCH v3] ALSA: ymfpci: Handle return NULL error from ioremap_nocache

From Takashi Iwai <tiwai@suse.de>
Newsgroups linux.kernel
Subject Re: [PATCH v3] ALSA: ymfpci: Handle return NULL error from ioremap_nocache
Date 2017-01-25 22:40 +0100
Message-ID <t3Dsm-79W-3@gated-at.bofh.it> (permalink)
References <t31ZL-bN-13@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, 24 Jan 2017 06:31:26 +0100,
Arvind Yadav wrote:
> 
> Here, If ioremap_nocache will fail. It will return NULL.
> Kernel can run into a NULL-pointer dereference.
> This error check will avoid NULL pointer dereference.
> 
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
> ---
>  sound/pci/ymfpci/ymfpci_main.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/sound/pci/ymfpci/ymfpci_main.c b/sound/pci/ymfpci/ymfpci_main.c
> index ffee284..8be1f07 100644
> --- a/sound/pci/ymfpci/ymfpci_main.c
> +++ b/sound/pci/ymfpci/ymfpci_main.c
> @@ -2392,6 +2392,10 @@ int snd_ymfpci_create(struct snd_card *card,
>  	chip->rev = pci->revision;
>  	chip->reg_area_phys = pci_resource_start(pci, 0);
>  	chip->reg_area_virt = ioremap_nocache(chip->reg_area_phys, 0x8000);
> +	if (!chip->reg_area_virt) {
> +		snd_ymfpci_free(chip);

The function calls iounmap() unconditionally, so it's not appropriate
to call as is.  You need to fix snd_ymfpci_free() as well to check
NULL before iounmap().  Or, call here kfree() and pci_disable_device()
explicitly instead of a full destructor.


thanks,

Takashi

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH v3] ALSA: ymfpci:  Handle return NULL error from ioremap_nocache Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-01-24 06:40 +0100
  Re: [PATCH v3] ALSA: ymfpci:  Handle return NULL error from ioremap_nocache Takashi Iwai <tiwai@suse.de> - 2017-01-25 22:40 +0100

csiph-web