lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 01 Mar 2007 23:52:06 -0500
From:	Giridhar Pemmasani <giri@....cs.sunysb.edu>
To:	linux-kernel@...r.kernel.org
Subject:  [PATCH] mv643xx ethernet driver

During initialization, mv643xx driver registers IRQ before setting up tx/rx
rings. This causes kernel oops because mv643xx_poll, which gets called
right after registering IRQ, calls netif_rx_complete, which accesses the rx
ring (I don't have the oops message anymore; I just remember this sequence
of calls). Attached (tested) patch first initializes the rx/tx rings and
then registers the IRQ.

Giri

Signed-off-by: Giridhar Pemmasani <pgiri@...oo.com>

--- drivers/net/mv643xx_eth.c   2006-11-29 16:57:37.000000000 -0500
+++ ../linux-2.6.20.orig/drivers/net/mv643xx_eth.c      2007-02-23
09:38:21.000000000 -0500
@@ -778,14 +778,6 @@
        unsigned int size;
        int err;
 
-       err = request_irq(dev->irq, mv643xx_eth_int_handler,
-                       IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, dev);
-       if (err) {
-               printk(KERN_ERR "Can not assign IRQ number to MV643XX_eth%d\n",
-                                                               port_num);
-               return -EAGAIN;
-       }
-
        eth_port_init(mp);
 
        memset(&mp->timeout, 0, sizeof(struct timer_list));
@@ -797,8 +789,7 @@
                                                                GFP_KERNEL);
        if (!mp->rx_skb) {
                printk(KERN_ERR "%s: Cannot allocate Rx skb ring\n", dev->name);
-               err = -ENOMEM;
-               goto out_free_irq;
+               return -ENOMEM;
        }
        mp->tx_skb = kmalloc(sizeof(*mp->tx_skb) * mp->tx_ring_size,
                                                                GFP_KERNEL);
@@ -852,13 +843,8 @@
                                                        dev->name, size);
                printk(KERN_ERR "%s: Freeing previously allocated TX queues...",
                                                        dev->name);
-               if (mp->rx_sram_size)
-                       iounmap(mp->p_tx_desc_area);
-               else
-                       dma_free_coherent(NULL, mp->tx_desc_area_size,
-                                       mp->p_tx_desc_area, mp->tx_desc_dma);
                err = -ENOMEM;
-               goto out_free_tx_skb;
+               goto out_free_tx_ring;
        }
        memset((void *)mp->p_rx_desc_area, 0, size);
 
@@ -866,6 +852,14 @@
 
        mv643xx_eth_rx_refill_descs(dev);       /* Fill RX ring with skb's */
 
+       err = request_irq(dev->irq, mv643xx_eth_int_handler,
+                         IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, dev);
+       if (err) {
+               printk(KERN_ERR "Can not assign IRQ number to MV643XX_eth%d\n",
+                      port_num);
+               goto out_free_rx_ring;
+       }
+
        /* Clear any pending ethernet port interrupts */
        mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0);
        mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
@@ -891,12 +885,22 @@
 
        return 0;
 
+out_free_rx_ring:
+       if (mp->rx_sram_size)
+               iounmap(mp->p_rx_desc_area);
+       else
+               dma_free_coherent(NULL, mp->rx_desc_area_size,
+                                 mp->p_rx_desc_area, mp->rx_desc_dma);
+out_free_tx_ring:
+       if (mp->tx_sram_size)
+               iounmap(mp->p_tx_desc_area);
+       else
+               dma_free_coherent(NULL, mp->tx_desc_area_size,
+                                 mp->p_tx_desc_area, mp->tx_desc_dma);
 out_free_tx_skb:
        kfree(mp->tx_skb);
 out_free_rx_skb:
        kfree(mp->rx_skb);
-out_free_irq:
-       free_irq(dev->irq, dev);
 
        return err;
 }

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ