public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Stefan Richter <stefanr@s5r6.in-berlin.de>
To: Alexey Khoroshilov <khoroshilov@ispras.ru>
Cc: linux1394-devel@lists.sourceforge.net,
	linux-kernel@vger.kernel.org, ldv-project@linuxtesting.org
Subject: Re: [PATCH] firewire: nosy: do not ignore errors in ioremap_nocache()
Date: Sun, 9 Oct 2016 11:51:05 +0200	[thread overview]
Message-ID: <20161009115105.30640740@kant> (raw)
In-Reply-To: <1474751945-25757-1-git-send-email-khoroshilov@ispras.ru>

On Sep 25 Alexey Khoroshilov wrote:
> There is no check if ioremap_nocache() returns a valid pointer.
> Potentially it can lead to null pointer dereference.
> 
> Found by Linux Driver Verification project (linuxtesting.org).
> 
> Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru>
> ---
>  drivers/firewire/nosy.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/drivers/firewire/nosy.c b/drivers/firewire/nosy.c
> index 631c977b0da5..f68a749f740b 100644
> --- a/drivers/firewire/nosy.c
> +++ b/drivers/firewire/nosy.c
> @@ -566,6 +566,11 @@ add_card(struct pci_dev *dev, const struct pci_device_id *unused)
>  
>  	lynx->registers = ioremap_nocache(pci_resource_start(dev, 0),
>  					  PCILYNX_MAX_REGISTER);
> +	if (lynx->registers == NULL) {
> +		dev_err(&dev->dev, "Failed to map registers\n");
> +		ret = -ENOMEM;
> +		goto fail_deallocate2;
> +	}
>  
>  	lynx->rcv_start_pcl = pci_alloc_consistent(lynx->pci_device,
>  				sizeof(struct pcl), &lynx->rcv_start_pcl_bus);
> @@ -679,6 +684,8 @@ fail_deallocate:
>  		pci_free_consistent(lynx->pci_device, PAGE_SIZE,
>  				lynx->rcv_buffer, lynx->rcv_buffer_bus);
>  	iounmap(lynx->registers);
> +
> +fail_deallocate2:
>  	kfree(lynx);
>  
>  fail_disable:

Thanks.  Committed to linux1394.git.
I folded the following cosmetic change into the commit:

--- a/drivers/firewire/nosy.c
+++ b/drivers/firewire/nosy.c
@@ -569,7 +569,7 @@ add_card(struct pci_dev *dev, const struct pci_device_id *unused)
 	if (lynx->registers == NULL) {
 		dev_err(&dev->dev, "Failed to map registers\n");
 		ret = -ENOMEM;
-		goto fail_deallocate2;
+		goto fail_deallocate_lynx;
 	}
 
 	lynx->rcv_start_pcl = pci_alloc_consistent(lynx->pci_device,
@@ -583,7 +583,7 @@ add_card(struct pci_dev *dev, const struct pci_device_id *unused)
 	    lynx->rcv_buffer == NULL) {
 		dev_err(&dev->dev, "Failed to allocate receive buffer\n");
 		ret = -ENOMEM;
-		goto fail_deallocate;
+		goto fail_deallocate_buffers;
 	}
 	lynx->rcv_start_pcl->next	= cpu_to_le32(lynx->rcv_pcl_bus);
 	lynx->rcv_pcl->next		= cpu_to_le32(PCL_NEXT_INVALID);
@@ -646,7 +646,7 @@ add_card(struct pci_dev *dev, const struct pci_device_id *unused)
 		dev_err(&dev->dev,
 			"Failed to allocate shared interrupt %d\n", dev->irq);
 		ret = -EIO;
-		goto fail_deallocate;
+		goto fail_deallocate_buffers;
 	}
 
 	lynx->misc.parent = &dev->dev;
@@ -673,7 +673,7 @@ fail_free_irq:
 	reg_write(lynx, PCI_INT_ENABLE, 0);
 	free_irq(lynx->pci_device->irq, lynx);
 
-fail_deallocate:
+fail_deallocate_buffers:
 	if (lynx->rcv_start_pcl)
 		pci_free_consistent(lynx->pci_device, sizeof(struct pcl),
 				lynx->rcv_start_pcl, lynx->rcv_start_pcl_bus);
@@ -685,7 +685,7 @@ fail_deallocate:
 				lynx->rcv_buffer, lynx->rcv_buffer_bus);
 	iounmap(lynx->registers);
 
-fail_deallocate2:
+fail_deallocate_lynx:
 	kfree(lynx);
 
 fail_disable:

-- 
Stefan Richter
-======----- =-=- -=--=
http://arcgraph.de/sr/

      reply	other threads:[~2016-10-09 10:10 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-24 21:19 [PATCH] firewire: nosy: do not ignore errors in ioremap_nocache() Alexey Khoroshilov
2016-10-09  9:51 ` Stefan Richter [this message]

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=20161009115105.30640740@kant \
    --to=stefanr@s5r6.in-berlin.de \
    --cc=khoroshilov@ispras.ru \
    --cc=ldv-project@linuxtesting.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux1394-devel@lists.sourceforge.net \
    /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