提交 f41ced8f 编写于 作者: L Laurent Pinchart 提交者: Linus Torvalds

Check fops_get() return value

Several subsystem open handlers dereference the fops_get() return value
without checking it for nullness.  This opens a race condition between the
open handler and module unloading.

A module can be marked as being unloaded (MODULE_STATE_GOING) before its
exit function is called and gets the chance to unregister the driver.
During that window open handlers can still be called, and fops_get() will
fail in try_module_get() and return a NULL pointer.

This change checks the fops_get() return value and returns -ENODEV if NULL.
Reported-by: NAlan Jenkins <alan-jenkins@tuffmail.co.uk>
Signed-off-by: NLaurent Pinchart <laurent.pinchart@skynet.be>
Acked-by: NTakashi Iwai <tiwai@suse.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Dave Airlie <airlied@linux.ie>
Acked-by: NMauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 bdbeed75
...@@ -183,6 +183,10 @@ int drm_stub_open(struct inode *inode, struct file *filp) ...@@ -183,6 +183,10 @@ int drm_stub_open(struct inode *inode, struct file *filp)
old_fops = filp->f_op; old_fops = filp->f_op;
filp->f_op = fops_get(&dev->driver->fops); filp->f_op = fops_get(&dev->driver->fops);
if (filp->f_op == NULL) {
filp->f_op = old_fops;
goto out;
}
if (filp->f_op->open && (err = filp->f_op->open(inode, filp))) { if (filp->f_op->open && (err = filp->f_op->open(inode, filp))) {
fops_put(filp->f_op); fops_put(filp->f_op);
filp->f_op = fops_get(old_fops); filp->f_op = fops_get(old_fops);
......
...@@ -79,6 +79,10 @@ static int dvb_device_open(struct inode *inode, struct file *file) ...@@ -79,6 +79,10 @@ static int dvb_device_open(struct inode *inode, struct file *file)
file->private_data = dvbdev; file->private_data = dvbdev;
old_fops = file->f_op; old_fops = file->f_op;
file->f_op = fops_get(dvbdev->fops); file->f_op = fops_get(dvbdev->fops);
if (file->f_op == NULL) {
file->f_op = old_fops;
goto fail;
}
if(file->f_op->open) if(file->f_op->open)
err = file->f_op->open(inode,file); err = file->f_op->open(inode,file);
if (err) { if (err) {
...@@ -90,6 +94,7 @@ static int dvb_device_open(struct inode *inode, struct file *file) ...@@ -90,6 +94,7 @@ static int dvb_device_open(struct inode *inode, struct file *file)
unlock_kernel(); unlock_kernel();
return err; return err;
} }
fail:
up_read(&minor_rwsem); up_read(&minor_rwsem);
unlock_kernel(); unlock_kernel();
return -ENODEV; return -ENODEV;
......
...@@ -152,6 +152,10 @@ static int __snd_open(struct inode *inode, struct file *file) ...@@ -152,6 +152,10 @@ static int __snd_open(struct inode *inode, struct file *file)
} }
old_fops = file->f_op; old_fops = file->f_op;
file->f_op = fops_get(mptr->f_ops); file->f_op = fops_get(mptr->f_ops);
if (file->f_op == NULL) {
file->f_op = old_fops;
return -ENODEV;
}
if (file->f_op->open) if (file->f_op->open)
err = file->f_op->open(inode, file); err = file->f_op->open(inode, file);
if (err) { if (err) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册