linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Zimmermann <tzimmermann@suse.de>
To: Wang Hai <wanghai38@huawei.com>,
	steve.glendinning@shawell.net, FlorianSchandinat@gmx.de,
	gregkh@suse.de
Cc: linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] video: smscufx: Fix null-ptr-deref in ufx_usb_probe()
Date: Thu, 14 Oct 2021 15:58:37 +0200	[thread overview]
Message-ID: <8742cda5-1fc7-ae44-076c-e4a522ca43f5@suse.de> (raw)
In-Reply-To: <20211014132231.555138-1-wanghai38@huawei.com>


[-- Attachment #1.1: Type: text/plain, Size: 2306 bytes --]

Hi

Am 14.10.21 um 15:22 schrieb Wang Hai:
> I got a null-ptr-deref report:
> 
> BUG: kernel NULL pointer dereference, address: 0000000000000000
> ...
> RIP: 0010:fb_destroy_modelist+0x38/0x100
> ...
> Call Trace:
>   ufx_usb_probe.cold+0x2b5/0xac1 [smscufx]
>   usb_probe_interface+0x1aa/0x3c0 [usbcore]
>   really_probe+0x167/0x460
> ...
>   ret_from_fork+0x1f/0x30
> 
> If fb_alloc_cmap() fails in ufx_usb_probe(), fb_destroy_modelist() will
> be called to destroy modelist in the error handling path. But modelist
> has not been initialized yet, so it will result in null-ptr-deref.
> 
> Initialize modelist before calling fb_alloc_cmap() to fix this bug.
> 
> Fixes: 3c8a63e22a08 ("Add support for SMSC UFX6000/7000 USB display adapters")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Wang Hai <wanghai38@huawei.com>

Acked-by: Thomas Zimmermann <tzimmermann@suse.de>

I got one of these devices but the driver didn't produce any output for 
me. Are actually able to use the driver?

Best regards
Thomas

> ---
>   drivers/video/fbdev/smscufx.c | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/video/fbdev/smscufx.c b/drivers/video/fbdev/smscufx.c
> index bfac3ee4a642..28768c272b73 100644
> --- a/drivers/video/fbdev/smscufx.c
> +++ b/drivers/video/fbdev/smscufx.c
> @@ -1656,6 +1656,7 @@ static int ufx_usb_probe(struct usb_interface *interface,
>   	info->par = dev;
>   	info->pseudo_palette = dev->pseudo_palette;
>   	info->fbops = &ufx_ops;
> +	INIT_LIST_HEAD(&info->modelist);
>   
>   	retval = fb_alloc_cmap(&info->cmap, 256, 0);
>   	if (retval < 0) {
> @@ -1666,8 +1667,6 @@ static int ufx_usb_probe(struct usb_interface *interface,
>   	INIT_DELAYED_WORK(&dev->free_framebuffer_work,
>   			  ufx_free_framebuffer_work);
>   
> -	INIT_LIST_HEAD(&info->modelist);
> -
>   	retval = ufx_reg_read(dev, 0x3000, &id_rev);
>   	check_warn_goto_error(retval, "error %d reading 0x3000 register from device", retval);
>   	dev_dbg(dev->gdev, "ID_REV register value 0x%08x", id_rev);
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Felix Imendörffer

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

      reply	other threads:[~2021-10-14 13:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-14 13:22 [PATCH] video: smscufx: Fix null-ptr-deref in ufx_usb_probe() Wang Hai
2021-10-14 13:58 ` Thomas Zimmermann [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=8742cda5-1fc7-ae44-076c-e4a522ca43f5@suse.de \
    --to=tzimmermann@suse.de \
    --cc=FlorianSchandinat@gmx.de \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@suse.de \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=steve.glendinning@shawell.net \
    --cc=wanghai38@huawei.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;
as well as URLs for NNTP newsgroup(s).