public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
To: Laurent Pinchart <laurent.pinchart@skynet.be>
Cc: linux-uvc-devel@lists.berlios.de,
	linux-kernel <linux-kernel@vger.kernel.org>,
	Mauro Carvalho Chehab <mchehab@infradead.org>
Subject: Re: [Linux-uvc-devel] [BUG] NULL pointer dereference caused by uvcvideo stress test
Date: Thu, 16 Oct 2008 13:22:24 +0100	[thread overview]
Message-ID: <48F73200.10903@tuffmail.co.uk> (raw)
In-Reply-To: <200810161403.49267.laurent.pinchart@skynet.be>

Laurent Pinchart wrote:
> Hi Alan,
>
> On Thursday 16 October 2008, Alan Jenkins wrote:
>   
>> Laurent Pinchart wrote:
>>     
>>> On Wednesday 15 October 2008, Alan Jenkins wrote:
>>>       
>>>> Laurent Pinchart wrote:
>>>>         
>>>>> On Wednesday 15 October 2008, Alan Jenkins wrote:
>>>>>           
>>>>>> If you look at the trace, it happens as "hald-probe-video" opens the
>>>>>> video device.  This is from Ubuntu 8.04.  Possibly it's significant
>>>>>> that I use the camera first, to make sure it works (I use Kopete, the
>>>>>> settings dialogue includes a video test).
>>>>>>             
>>>>> The NULL pointer (or rather 0x00000030 pointer) dereference happens in
>>>>> video_open:
>>>>>
>>>>>         file->f_op = fops_get(vfl->fops);
>>>>>         if (file->f_op->open)
>>>>>                 err = file->f_op->open(inode, file);
>>>>>
>>>>> file->f_op ends up being NULL. Either vfl->fops is NULL to begin with,
>>>>> or fops_get failed to get a reference to the file_operations structure.
>>>>>
>>>>> I'd be surprised if vfl->fops was NULL. To rule out that case, can you
>>>>> add a BUG_ON(vfl->fops == NULL) before the call to fops_get ?
>>>>>
>>>>> I'm not too familiar with the module loader, but a quick look at the
>>>>> code shows that the module could be marked as being unloaded
>>>>> (MODULE_STATE_GOING) before its exit function is called. If this is the
>>>>> case video_open would still be called, as the video device would still
>>>>> be registered, but fops_get would fail in try_module_get and return a
>>>>> NULL pointer. It seems the pointer returned by fops_get should be
>>>>> tested in video_open.
>>>>>
>>>>> I've CC'ed the v4l maintainer to get his opinion on this.
>>>>>           
>>>> I put one before and one after
>>>>
>>>> 134    BUG_ON(vfl->fops == NULL);
>>>> 135    file->f_op = fops_get(vfl->fops);
>>>> 136    BUG_ON(file->f_op == NULL);
>>>>
>>>> and the second one triggered
>>>>         
>>> This confirms my suspicion. Could you please try the attached patch ?
>>>       
>> Yup, that seems to fix it.
>>     
>
> Great.
>
>   
>> I wonder if there are more instances of this error in other subsystems.
>>     
>
> From a quick grep it seems the following subsystems are affected:
>
> drivers/media/video
> drivers/media/video/dvb/dvb-core
> drivers/gpu/drm
> sound/core
>
> Unless the issue is critical and should be fixed before 2.6.28, 
> drivers/media/video won't matter as the v4l core has already been moved to 
> the cdev API in the kernel tree, removing the offending code.
>
> Will you submit patches for the other three subsystems or would you like me to 
> take care of that ?
>   

I need to start concentrating on project work.  Feel free to take all
the hard work^W^W patch credits :).

It's not critical to me.  This only happens in the stress test because
it unloads the module "too soon" after loading it, while HAL tries to
open the new device.

It's a completely artificial test.  I ran it to see what happens with
input devices - the device numbers don't seem to be reallocated like
e.g. usb storage devices.  Continually reloading the uvcvideo driver
means the number assigned to input device increments each time, and you
get "input67" and so on.  I haven't worked out whether this is a bug
though.  For all I know the numbers are reused eventually, once they've
run through the entire device minor space.

Alan

  reply	other threads:[~2008-10-16 12:22 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <gbiduj$9p3$1@ger.gmane.org>
     [not found] ` <200810151417.14661.laurent.pinchart@skynet.be>
2008-10-15 16:43   ` [Linux-uvc-devel] [BUG] NULL pointer dereference caused by uvcvideo stress test Alan Jenkins
2008-10-15 18:17     ` Laurent Pinchart
2008-10-15 18:54       ` Alan Jenkins
2008-10-15 21:19         ` Laurent Pinchart
2008-10-16 10:01           ` Alan Jenkins
2008-10-16 12:03             ` Laurent Pinchart
2008-10-16 12:22               ` Alan Jenkins [this message]
2008-10-24 14:31             ` Mauro Carvalho Chehab
2008-10-25 11:19               ` Laurent Pinchart

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=48F73200.10903@tuffmail.co.uk \
    --to=alan-jenkins@tuffmail.co.uk \
    --cc=laurent.pinchart@skynet.be \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-uvc-devel@lists.berlios.de \
    --cc=mchehab@infradead.org \
    /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