mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* PATCH: linux-2.4.10-pre14/drivers/sound/maestro.c ignored pci_module_init results
@ 2001-09-23  6:02 Adam J. Richter
  2001-09-23 16:24 ` Marcus Meissner
  0 siblings, 1 reply; 3+ messages in thread
From: Adam J. Richter @ 2001-09-23  6:02 UTC (permalink / raw)
  To: linux-kernel, torvalds, alan.cox, zab

[-- Attachment #1: Type: text/plain, Size: 1158 bytes --]

	The initialization routine in
linux-2.4.10-pre14/drivers/sound/maestro.c ignores the return value
from pci_module_init, and allows module initialization to succeed
even if pci_module_init failed.  pci_module_init fails and unloads
the driver if the caller is a module and there is no matching hardware.
Because maestro.c ignored this failure, loading maestro.o on a system
where the corresponding alsa driver was already loaded or on a system
without matchin hardware would result in a kernel null pointer dereference
in pci_unregister_driver when the module is unloaded or when one
attempts to reboot the system (i.e., when the module attempt to
unregister a PCI driver that is not registered).

	This bug is also present in drivers/net/tlan.c and
drivers/net/irda/toshoboe.c.  I will send patches for them shortly.

	Here is the patch for maestro.c.  Please apply.

-- 
Adam J. Richter     __     ______________   4880 Stevens Creek Blvd, Suite 104
adam@yggdrasil.com     \ /                  San Jose, California 95129-1034
+1 408 261-6630         | g g d r a s i l   United States of America
fax +1 408 261-6631      "Free Software For The Rest Of Us."

[-- Attachment #2: maestro.diff --]
[-- Type: text/plain, Size: 477 bytes --]

--- linux-2.4.10-pre14/drivers/sound/maestro.c	Sun Aug 12 10:51:42 2001
+++ linux/drivers/sound/maestro.c	Sat Sep 22 22:42:48 2001
@@ -3602,7 +3602,12 @@
 
 int __init init_maestro(void)
 {
-	pci_module_init(&maestro_pci_driver);
+	int rc;
+
+	rc = pci_module_init(&maestro_pci_driver);
+	if (rc < 0)
+		return rc;
+
 	if (register_reboot_notifier(&maestro_nb))
 		printk(KERN_WARNING "maestro: reboot notifier registration failed; may not reboot properly.\n");
 #ifdef MODULE

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

* Re: PATCH: linux-2.4.10-pre14/drivers/sound/maestro.c ignored pci_module_init results
  2001-09-23  6:02 PATCH: linux-2.4.10-pre14/drivers/sound/maestro.c ignored pci_module_init results Adam J. Richter
@ 2001-09-23 16:24 ` Marcus Meissner
  0 siblings, 0 replies; 3+ messages in thread
From: Marcus Meissner @ 2001-09-23 16:24 UTC (permalink / raw)
  To: "Adam J. Richter", linux-kernel

In article <20010922230237.A10872@baldur.yggdrasil.com> you wrote:

> --M9NhX3UHpAaciwkO
> Content-Type: text/plain; charset=us-ascii
> Content-Disposition: inline

> 	The initialization routine in
> linux-2.4.10-pre14/drivers/sound/maestro.c ignores the return value
> from pci_module_init, and allows module initialization to succeed
> even if pci_module_init failed.  pci_module_init fails and unloads
> the driver if the caller is a module and there is no matching hardware.
> Because maestro.c ignored this failure, loading maestro.o on a system
> where the corresponding alsa driver was already loaded or on a system
> without matchin hardware would result in a kernel null pointer dereference
> in pci_unregister_driver when the module is unloaded or when one
> attempts to reboot the system (i.e., when the module attempt to
> unregister a PCI driver that is not registered).

Why and where does it Oops? The code for pci_unregister_driver in
drivers/pci/pci.c looks correct and should not Oops.

The reboot notifier might be problematic, but I have not checked it.

Ciao, Marcus

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

* Re: PATCH: linux-2.4.10-pre14/drivers/sound/maestro.c ignored pci_module_init results
@ 2001-09-23 21:21 Adam J. Richter
  0 siblings, 0 replies; 3+ messages in thread
From: Adam J. Richter @ 2001-09-23 21:21 UTC (permalink / raw)
  To: mm; +Cc: linux-kernel

>> = Adam Richter
>  = Marcus Meissner

>> 	The initialization routine in
>> linux-2.4.10-pre14/drivers/sound/maestro.c ignores the return value
>> from pci_module_init, and allows module initialization to succeed
>> even if pci_module_init failed.  pci_module_init fails and unloads
>> the driver if the caller is a module and there is no matching hardware.
>> Because maestro.c ignored this failure, loading maestro.o on a system
>> where the corresponding alsa driver was already loaded or on a system
>> without matchin hardware would result in a kernel null pointer dereference
>> in pci_unregister_driver when the module is unloaded or when one
>> attempts to reboot the system (i.e., when the module attempt to
>> unregister a PCI driver that is not registered).

>Why and where does it Oops?

	On a machine that has no maestro hardware or that already has
the alsa drivers bound to the maestro PCI hardware, either of the
following will cause a null pointer dereference when
pci_unregister_driver tries to unregister a driver that is not registered:

		modprobe maestro
		rmmod maestro

		(as cleanup_maestro incorrectly calls pci_unregister_driver
		on a PCI driver that is not loaded.)

	...or...

		modprobe meastro
		reboot

		(as maestro_notifier incorrectly calls pci_unregister_driver
		on a PCI driver that is not loaded.)

	I experimentally verified both of these on a machine that already
had the maestro ALSA drivers loaded.  I assume the null pointer dereference
would be from the list_del(&drv->node) in pci_unregister_driver, since
list_del calls __list_del, which assumes that drv->node->{prev,next} are
not NULL, but they would have been set to NULL by the first
pci_remove_module, which pci_module_init called when the driver failed
to bind to anything, but which the maestro driver incorrectly ignored.

>The code for pci_unregister_driver in
>drivers/pci/pci.c looks correct and should not Oops.
>
>The reboot notifier might be problematic, but I have not checked it.

	There is nothing wrong with pci_unregister_driver.  The bug
is where init_maestro in maestro.c ignored the results of
pci_module_init, which is what my patch fixes.

Adam J. Richter     __     ______________   4880 Stevens Creek Blvd, Suite 104
adam@yggdrasil.com     \ /                  San Jose, California 95129-1034
+1 408 261-6630         | g g d r a s i l   United States of America
fax +1 408 261-6631      "Free Software For The Rest Of Us."

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

end of thread, other threads:[~2001-09-23 21:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-09-23  6:02 PATCH: linux-2.4.10-pre14/drivers/sound/maestro.c ignored pci_module_init results Adam J. Richter
2001-09-23 16:24 ` Marcus Meissner
2001-09-23 21:21 Adam J. Richter

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

all inboxes | Powered by JetHome®