mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Zhou Qingyang <zhou1615@umn.edu>
Cc: kjlu@umn.edu, Mauro Carvalho Chehab <mchehab@kernel.org>,
	Hans Verkuil <hverkuil-cisco@xs4all.nl>,
	Tasos Sahanidis <tasos@tasossah.com>,
	Yang Yingliang <yangyingliang@huawei.com>,
	Christophe JAILLET <christophe.jaillet@wanadoo.fr>,
	linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] media: saa7134: Fix a NULL pointer dereference in saa7134_initdev()
Date: Fri, 28 Jan 2022 11:17:24 +0100	[thread overview]
Message-ID: <YfPCtGNkN0qfF4PV@kroah.com> (raw)
In-Reply-To: <20220124171931.62174-1-zhou1615@umn.edu>

On Tue, Jan 25, 2022 at 01:19:30AM +0800, Zhou Qingyang wrote:
> In saa7134_initdev(), the return value of vdev_init() is assigned to
> dev->video_dev and there is a dereference of it after that. The return
> value of vdev_init() will be NULL on the failure allocation, which could
> lead to NULL pointer dereference.
> 
> The same as dev->vbi_dev.
> 
> Fix this bug by adding a NULL check of dev->video_dev and dev->vbi_dev.
> 
> This bug was found by a static analyzer.
> 
> Builds with 'make allyesconfig' show no new warnings,
> and our static analyzer no longer warns about this code.
> 
> Fixes: a9622391acb ("V4L/DVB (6792): Fix VBI support")
> Signed-off-by: Zhou Qingyang <zhou1615@umn.edu>
> ---
> The analysis employs differential checking to identify inconsistent 
> security operations (e.g., checks or kfrees) between two code paths 
> and confirms that the inconsistent operations are not recovered in the
> current function or the callers, so they constitute bugs. 
> 
> Note that, as a bug found by static analysis, it can be a false
> positive or hard to trigger. Multiple researchers have cross-reviewed
> the bug.
> 
>  drivers/media/pci/saa7134/saa7134-core.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/drivers/media/pci/saa7134/saa7134-core.c b/drivers/media/pci/saa7134/saa7134-core.c
> index 96328b0af164..0de0b00540b6 100644
> --- a/drivers/media/pci/saa7134/saa7134-core.c
> +++ b/drivers/media/pci/saa7134/saa7134-core.c
> @@ -1202,6 +1202,11 @@ static int saa7134_initdev(struct pci_dev *pci_dev,
>  		pr_info("%s: Overlay support disabled.\n", dev->name);
>  
>  	dev->video_dev = vdev_init(dev,&saa7134_video_template,"video");
> +	if (!dev->video_dev) {
> +		err = -ENOMEM;
> +		goto err_unregister_video;
> +	}
> +
>  	dev->video_dev->ctrl_handler = &dev->ctrl_handler;
>  	dev->video_dev->lock = &dev->lock;
>  	dev->video_dev->queue = &dev->video_vbq;
> @@ -1224,6 +1229,11 @@ static int saa7134_initdev(struct pci_dev *pci_dev,
>  	       dev->name, video_device_node_name(dev->video_dev));
>  
>  	dev->vbi_dev = vdev_init(dev, &saa7134_video_template, "vbi");
> +	if (!dev->vbi_dev) {
> +		err = -ENOMEM;
> +		goto err_unregister_video;
> +	}
> +
>  	dev->vbi_dev->ctrl_handler = &dev->ctrl_handler;
>  	dev->vbi_dev->lock = &dev->lock;
>  	dev->vbi_dev->queue = &dev->vbi_vbq;
> -- 
> 2.25.1
> 

As stated before, umn.edu is still not allowed to contribute to the
Linux kernel.  Please work with your administration to resolve this
issue.


      reply	other threads:[~2022-01-28 10:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-24 17:19 Zhou Qingyang
2022-01-28 10:17 ` Greg KH [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=YfPCtGNkN0qfF4PV@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=christophe.jaillet@wanadoo.fr \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=kjlu@umn.edu \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=tasos@tasossah.com \
    --cc=yangyingliang@huawei.com \
    --cc=zhou1615@umn.edu \
    /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

Powered by JetHome