public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* devfs: BKL *not* taken while opening devices
@ 2002-04-29 13:13 Russell King
  2002-04-29 15:30 ` Dave Hansen
  2002-05-11  0:45 ` Richard Gooch
  0 siblings, 2 replies; 14+ messages in thread
From: Russell King @ 2002-04-29 13:13 UTC (permalink / raw)
  To: linux-kernel; +Cc: rgooch

Hi,

Nice simple bug report.

Kernel 2.5.8... Devfs devfs_open() bypasses the normal chrdev_open and
blkdev_open functions, and misses out taking the BKL.  2.5.10 is the
same.

Certainly the tty layer (and probably many of the other devices as well)
require the BKL to be taken before calling the open method.

Also, the following looks wrong:

    if ( S_ISBLK (inode->i_mode) )
    {
        file->f_op = &def_blk_fops;
        if (df->ops) inode->i_bdev->bd_op = df->ops;
    }
    else file->f_op = fops_get ( (struct file_operations *) df->ops );
    if (file->f_op)
        err = file->f_op->open ? (*file->f_op->open) (inode, file) : 0;
    else
    {
        /*  Fallback to legacy scheme  */
        if ( S_ISCHR (inode->i_mode) ) err = chrdev_open (inode, file);
        else err = -ENODEV;
    }
    if (err < 0) return err;

We can return without releasing the file operations after fops_get(),
thereby effectively locking modules in memory.

-- 
Russell King (rmk@arm.linux.org.uk)                The developer of ARM Linux
             http://www.arm.linux.org.uk/personal/aboutme.html


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2002-05-11  0:45 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-04-29 13:13 devfs: BKL *not* taken while opening devices Russell King
2002-04-29 15:30 ` Dave Hansen
2002-04-29 17:21   ` Arjan van de Ven
2002-04-29 17:40     ` Roman Zippel
2002-04-29 17:46       ` Arjan van de Ven
2002-05-02 16:44         ` Alan Cox
2002-04-29 17:52       ` Dave Hansen
2002-04-30 12:45     ` Russell King
2002-04-30 16:42       ` Dave Hansen
2002-04-30 16:52         ` Arjan van de Ven
2002-04-30 16:58           ` Dave Hansen
2002-04-30 18:26           ` Martin J. Bligh
2002-04-30 17:03         ` Russell King
2002-05-11  0:45 ` Richard Gooch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox