From: matthieu castet <castet.matthieu@free.fr>
To: Greg KH <greg@kroah.com>
Cc: Linux Kernel list <linux-kernel@vger.kernel.org>,
dmitry.torokhov@gmail.com
Subject: Re: device_remove_file and disconnect
Date: Sun, 03 Jul 2005 01:27:53 +0200 [thread overview]
Message-ID: <42C722F9.8060809@free.fr> (raw)
In-Reply-To: <42C456B0.6010706@free.fr>
Hi,
matthieu castet wrote:
>>
>>
>> Then they should be fixed. Any specific examples?
>>
>>
> I am a little lasy to list all, but some drivers in driver/usb should
> have this problem : the first driver I look : ./misc/phidgetkit.c do
> [1]. So sysfs read don't check if to_usb_interface or usb_get_intfdata
> return NULL pointer...
> And it is a bit your fault, as many developper should have read your
> great tutorial [2] ;)
>
>>> Also I always see driver free their privatre data in device disconnect,
>>> so if read/write from sysfs aren't serialized with device disconnect
>>> there are still a possible race like I show in my example.
>>
>>
>>
>> Yes, you are correct. Again, any specific drivers you see with this
>> problem?
>
> I believe near all drivers that use sysfs via device_create_file, as I
> never see them use mutex in read/write in order to check there aren't in
> the same time in their disconnect that could free there private data
> when they do operation on it...
>
>
> Couldn't be possible the make device_remove_file blocking until all the
> open file are closed ?
>
> thanks,
>
> Matthieu
>
> [1]
> #define show_input(value) \
> static ssize_t show_input##value(struct device *dev, char *buf) \
> { \
> struct usb_interface *intf = to_usb_interface(dev); \
> struct phidget_interfacekit *kit = usb_get_intfdata(intf); \
> \
> return sprintf(buf, "%d\n", kit->inputs[value - 1]); \
> } \
> static DEVICE_ATTR(input##value, S_IRUGO, show_input##value, NULL);
>
> [2] http://www.linuxjournal.com/article/7353
>
So will there be a fix in the kernel, or all this driver are broken and
should be fixed ?
thanks
Matthieu
next prev parent reply other threads:[~2005-07-02 23:28 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-06-29 16:59 device_remove_file and disconnect matthieu castet
2005-06-29 18:46 ` Greg KH
2005-06-29 20:17 ` matthieu castet
2005-06-29 22:42 ` Greg KH
2005-06-30 7:26 ` mat
2005-06-30 17:04 ` Greg KH
2005-06-30 20:31 ` matthieu castet
2005-07-02 23:27 ` matthieu castet [this message]
2005-07-03 4:54 ` Dmitry Torokhov
2005-07-25 1:54 ` Greg KH
2005-06-30 20:36 ` Dmitry Torokhov
2005-07-03 4:38 ` Dmitry Torokhov
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=42C722F9.8060809@free.fr \
--to=castet.matthieu@free.fr \
--cc=dmitry.torokhov@gmail.com \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.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