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-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 24 Jun 2008 15:58:33 -0700
From:	"Michael Chan" <mchan@...adcom.com>
To:	"Josip Rodin" <joy@...uzijast.net>
cc:	"'Bill Fink'" <billfink@...dspring.com>,
	"Ben Hutchings" <bhutchings@...arflare.com>,
	netdev <netdev@...r.kernel.org>,
	"mirrors@...ian.org" <mirrors@...ian.org>
Subject: Re: bnx2_poll panicking kernel

Michael Chan wrote:
> I will send Josip another patch to print more SKB fields.  I can
> even save all the SKB fields and see which other ones are modified besides
> the nr_frags.  May be that will give us a better clue.
> 
Please try this patch, which should go on top of the last debug patch.
Thanks.


diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c
index f7ecd07..52756b6 100644
--- a/drivers/net/bnx2.c
+++ b/drivers/net/bnx2.c
@@ -2476,6 +2476,22 @@ bnx2_get_hw_tx_cons(struct bnx2_napi *bnapi)
 	return cons;
 }
 
+static void
+bnx2_dump_mem(void *ptr, int size)
+{
+	u32 *p = ptr;
+	int i;
+
+	for (i = 0; i < size; i += 4) {
+		if ((i % 32) == 0)
+			printk(KERN_ALERT);
+		printk("%08x ", *p++);
+		if ((i % 32) == 28 || i == (size - 4))
+			printk("\n");
+	}
+	printk(KERN_ALERT "\n");
+}
+
 static int
 bnx2_tx_int(struct bnx2 *bp, struct bnx2_napi *bnapi, int budget)
 {
@@ -2500,6 +2516,15 @@ bnx2_tx_int(struct bnx2 *bp, struct bnx2_napi *bnapi, int budget)
 					  " should be %d\n",
 					  skb_shinfo(skb)->nr_frags,
 					  tx_buf->nr_frags);
+			printk(KERN_ALERT "original skb:\n");
+			bnx2_dump_mem(&bp->tx_skb_ring[sw_ring_cons],
+					sizeof(struct sk_buff));
+			bnx2_dump_mem(&bp->tx_skb_sh_ring[sw_ring_cons],
+					sizeof(struct skb_shared_info));
+			printk(KERN_ALERT "Corrupted skb:\n");
+			bnx2_dump_mem(skb, sizeof(*skb));
+			bnx2_dump_mem(skb_shinfo(skb),
+				sizeof(struct skb_shared_info));
 		}
 		/* partial BD completions possible with TSO packets */
 		if (skb_is_gso(skb)) {
@@ -5866,6 +5891,8 @@ bnx2_start_xmit(struct sk_buff *skb, struct net_device *dev)
 	last_frag = skb_shinfo(skb)->nr_frags;
 
 	tx_buf->nr_frags = last_frag;
+	bp->tx_skb_ring[ring_prod] = *skb;
+	bp->tx_skb_sh_ring[ring_prod] = *skb_shinfo(skb);
 
 	for (i = 0; i < last_frag; i++) {
 		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
diff --git a/drivers/net/bnx2.h b/drivers/net/bnx2.h
index aa9fa6f..91569dd 100644
--- a/drivers/net/bnx2.h
+++ b/drivers/net/bnx2.h
@@ -6649,6 +6649,9 @@ struct bnx2 {
 	int		tx_ring_size;
 	u32		tx_wake_thresh;
 
+	struct sk_buff		tx_skb_ring[TX_DESC_CNT];
+	struct skb_shared_info	tx_skb_sh_ring[TX_DESC_CNT];
+
 	/* End of fields used in the performance code paths. */
 
 	char			*name;

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ