linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
@ 2011-05-31  7:48 Koki Sanagi
  2011-05-31 15:13 ` Steven Rostedt
  2011-05-31 15:14 ` Steven Rostedt
  0 siblings, 2 replies; 11+ messages in thread
From: Koki Sanagi @ 2011-05-31  7:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: netdev, davem, nhorman, rostedt, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

Because there is a possibility that skb is kfree_skb()ed and zero cleared
after ndo_start_xmit, we should not see the contents of skb like skb->len and
skb->dev->name after ndo_start_xmit. But trace_net_dev_xmit does that
and causes panic by NULL pointer dereference.
This patch fixes trace_net_dev_xmit not to see the contents of skb directly.

If you want to reproduce this panic,

1. Get tracepoint of net_dev_xmit on
2. Create 2 guests on KVM
2. Make 2 guests use virtio_net
4. Execute netperf from one to another for a long time as a network burden
5. host will panic(It takes about 30 minutes)

Signed-off-by: Koki Sanagi <sanagi.koki@jp.fujitsu.com>
---
 include/trace/events/net.h |   12 +++++++-----
 net/core/dev.c             |    7 +++++--
 2 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/include/trace/events/net.h b/include/trace/events/net.h
index 5f247f5..f99645d 100644
--- a/include/trace/events/net.h
+++ b/include/trace/events/net.h
@@ -12,22 +12,24 @@
 TRACE_EVENT(net_dev_xmit,
 
 	TP_PROTO(struct sk_buff *skb,
-		 int rc),
+		 int rc,
+		 struct net_device *dev,
+		 unsigned int skb_len),
 
-	TP_ARGS(skb, rc),
+	TP_ARGS(skb, rc, dev, skb_len),
 
 	TP_STRUCT__entry(
 		__field(	void *,		skbaddr		)
 		__field(	unsigned int,	len		)
 		__field(	int,		rc		)
-		__string(	name,		skb->dev->name	)
+		__string(	name,		dev->name	)
 	),
 
 	TP_fast_assign(
 		__entry->skbaddr = skb;
-		__entry->len = skb->len;
+		__entry->len = skb_len;
 		__entry->rc = rc;
-		__assign_str(name, skb->dev->name);
+		__assign_str(name, dev->name);
 	),
 
 	TP_printk("dev=%s skbaddr=%p len=%u rc=%d",
diff --git a/net/core/dev.c b/net/core/dev.c
index d945379..f0e15df 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2089,6 +2089,7 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
 {
 	const struct net_device_ops *ops = dev->netdev_ops;
 	int rc = NETDEV_TX_OK;
+	unsigned int skb_len;
 
 	if (likely(!skb->next)) {
 		u32 features;
@@ -2139,8 +2140,9 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
 			}
 		}
 
+		skb_len = skb->len;
 		rc = ops->ndo_start_xmit(skb, dev);
-		trace_net_dev_xmit(skb, rc);
+		trace_net_dev_xmit(skb, rc, dev, skb_len);
 		if (rc == NETDEV_TX_OK)
 			txq_trans_update(txq);
 		return rc;
@@ -2160,8 +2162,9 @@ gso:
 		if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
 			skb_dst_drop(nskb);
 
+		skb_len = nskb->len;
 		rc = ops->ndo_start_xmit(nskb, dev);
-		trace_net_dev_xmit(nskb, rc);
+		trace_net_dev_xmit(nskb, rc, dev, skb_len);
 		if (unlikely(rc != NETDEV_TX_OK)) {
 			if (rc & ~NETDEV_TX_MASK)
 				goto out_kfree_gso_skb;


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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-05-31  7:48 [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic Koki Sanagi
@ 2011-05-31 15:13 ` Steven Rostedt
  2011-05-31 16:11   ` Neil Horman
  2011-05-31 15:14 ` Steven Rostedt
  1 sibling, 1 reply; 11+ messages in thread
From: Steven Rostedt @ 2011-05-31 15:13 UTC (permalink / raw)
  To: Koki Sanagi
  Cc: linux-kernel, netdev, davem, nhorman, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

On Tue, 2011-05-31 at 16:48 +0900, Koki Sanagi wrote:
> Because there is a possibility that skb is kfree_skb()ed and zero cleared
> after ndo_start_xmit, we should not see the contents of skb like skb->len and
> skb->dev->name after ndo_start_xmit. But trace_net_dev_xmit does that
> and causes panic by NULL pointer dereference.
> This patch fixes trace_net_dev_xmit not to see the contents of skb directly.


>  
>  	if (likely(!skb->next)) {
>  		u32 features;
> @@ -2139,8 +2140,9 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
>  			}
>  		}
>  
> +		skb_len = skb->len;
>  		rc = ops->ndo_start_xmit(skb, dev);
> -		trace_net_dev_xmit(skb, rc);
> +		trace_net_dev_xmit(skb, rc, dev, skb_len);
>  		if (rc == NETDEV_TX_OK)
>  			txq_trans_update(txq);
>  		return rc;
> @@ -2160,8 +2162,9 @@ gso:
>  		if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
>  			skb_dst_drop(nskb);
>  
> +		skb_len = nskb->len;
>  		rc = ops->ndo_start_xmit(nskb, dev);
> -		trace_net_dev_xmit(nskb, rc);
> +		trace_net_dev_xmit(nskb, rc, dev, skb_len);

What if you just put the tracepoint before the call to
ops->ndo_start_xmit?

-- Steve

>  		if (unlikely(rc != NETDEV_TX_OK)) {
>  			if (rc & ~NETDEV_TX_MASK)
>  				goto out_kfree_gso_skb;



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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-05-31  7:48 [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic Koki Sanagi
  2011-05-31 15:13 ` Steven Rostedt
@ 2011-05-31 15:14 ` Steven Rostedt
  2011-06-02 20:59   ` David Miller
  1 sibling, 1 reply; 11+ messages in thread
From: Steven Rostedt @ 2011-05-31 15:14 UTC (permalink / raw)
  To: Koki Sanagi
  Cc: linux-kernel, netdev, davem, nhorman, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

Note, the subject should not be "ftrace:", but "net:" or maybe even
"net/tracing", as this really has nothing to do with ftrace code. The
tracepoints are more generic than ftrace.

-- Steve



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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-05-31 15:13 ` Steven Rostedt
@ 2011-05-31 16:11   ` Neil Horman
  2011-05-31 16:21     ` Steven Rostedt
  0 siblings, 1 reply; 11+ messages in thread
From: Neil Horman @ 2011-05-31 16:11 UTC (permalink / raw)
  To: Steven Rostedt
  Cc: Koki Sanagi, linux-kernel, netdev, davem, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

On Tue, May 31, 2011 at 11:13:11AM -0400, Steven Rostedt wrote:
> On Tue, 2011-05-31 at 16:48 +0900, Koki Sanagi wrote:
> > Because there is a possibility that skb is kfree_skb()ed and zero cleared
> > after ndo_start_xmit, we should not see the contents of skb like skb->len and
> > skb->dev->name after ndo_start_xmit. But trace_net_dev_xmit does that
> > and causes panic by NULL pointer dereference.
> > This patch fixes trace_net_dev_xmit not to see the contents of skb directly.
> 
> 
> >  
> >  	if (likely(!skb->next)) {
> >  		u32 features;
> > @@ -2139,8 +2140,9 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
> >  			}
> >  		}
> >  
> > +		skb_len = skb->len;
> >  		rc = ops->ndo_start_xmit(skb, dev);
> > -		trace_net_dev_xmit(skb, rc);
> > +		trace_net_dev_xmit(skb, rc, dev, skb_len);
> >  		if (rc == NETDEV_TX_OK)
> >  			txq_trans_update(txq);
> >  		return rc;
> > @@ -2160,8 +2162,9 @@ gso:
> >  		if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
> >  			skb_dst_drop(nskb);
> >  
> > +		skb_len = nskb->len;
> >  		rc = ops->ndo_start_xmit(nskb, dev);
> > -		trace_net_dev_xmit(nskb, rc);
> > +		trace_net_dev_xmit(nskb, rc, dev, skb_len);
> 
> What if you just put the tracepoint before the call to
> ops->ndo_start_xmit?
> 
Then you won't know the return code of ndo_start_xmit, which this tracepoint
records.
Neil

> -- Steve
> 
> >  		if (unlikely(rc != NETDEV_TX_OK)) {
> >  			if (rc & ~NETDEV_TX_MASK)
> >  				goto out_kfree_gso_skb;
> 
> 
> 

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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-05-31 16:11   ` Neil Horman
@ 2011-05-31 16:21     ` Steven Rostedt
  0 siblings, 0 replies; 11+ messages in thread
From: Steven Rostedt @ 2011-05-31 16:21 UTC (permalink / raw)
  To: Neil Horman
  Cc: Koki Sanagi, linux-kernel, netdev, davem, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

On Tue, 2011-05-31 at 12:11 -0400, Neil Horman wrote:
>  			skb_dst_drop(nskb);
> > >  
> > > +		skb_len = nskb->len;
> > >  		rc = ops->ndo_start_xmit(nskb, dev);
> > > -		trace_net_dev_xmit(nskb, rc);
> > > +		trace_net_dev_xmit(nskb, rc, dev, skb_len);
> > 
> > What if you just put the tracepoint before the call to
> > ops->ndo_start_xmit?
> > 
> Then you won't know the return code of ndo_start_xmit, which this tracepoint
> records.

Doh! Yeah, I see that now ;)

-- Steve



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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-05-31 15:14 ` Steven Rostedt
@ 2011-06-02 20:59   ` David Miller
  2011-06-02 21:01     ` Steven Rostedt
  0 siblings, 1 reply; 11+ messages in thread
From: David Miller @ 2011-06-02 20:59 UTC (permalink / raw)
  To: rostedt
  Cc: sanagi.koki, linux-kernel, netdev, nhorman, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

From: Steven Rostedt <rostedt@goodmis.org>
Date: Tue, 31 May 2011 11:14:27 -0400

> Note, the subject should not be "ftrace:", but "net:" or maybe even
> "net/tracing", as this really has nothing to do with ftrace code. The
> tracepoints are more generic than ftrace.

Do you guys mind if I take this in via the net-2.6 tree?

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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-06-02 20:59   ` David Miller
@ 2011-06-02 21:01     ` Steven Rostedt
  2011-06-02 21:04       ` David Miller
  0 siblings, 1 reply; 11+ messages in thread
From: Steven Rostedt @ 2011-06-02 21:01 UTC (permalink / raw)
  To: David Miller
  Cc: sanagi.koki, linux-kernel, netdev, nhorman, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

On Thu, 2011-06-02 at 13:59 -0700, David Miller wrote:
> From: Steven Rostedt <rostedt@goodmis.org>
> Date: Tue, 31 May 2011 11:14:27 -0400
> 
> > Note, the subject should not be "ftrace:", but "net:" or maybe even
> > "net/tracing", as this really has nothing to do with ftrace code. The
> > tracepoints are more generic than ftrace.
> 
> Do you guys mind if I take this in via the net-2.6 tree?

I have no issue with that. Heck, I prefer it.

-- Steve



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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-06-02 21:01     ` Steven Rostedt
@ 2011-06-02 21:04       ` David Miller
  2011-06-03  5:03         ` Koki Sanagi
  0 siblings, 1 reply; 11+ messages in thread
From: David Miller @ 2011-06-02 21:04 UTC (permalink / raw)
  To: rostedt
  Cc: sanagi.koki, linux-kernel, netdev, nhorman, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

From: Steven Rostedt <rostedt@goodmis.org>
Date: Thu, 02 Jun 2011 17:01:52 -0400

> On Thu, 2011-06-02 at 13:59 -0700, David Miller wrote:
>> From: Steven Rostedt <rostedt@goodmis.org>
>> Date: Tue, 31 May 2011 11:14:27 -0400
>> 
>> > Note, the subject should not be "ftrace:", but "net:" or maybe even
>> > "net/tracing", as this really has nothing to do with ftrace code. The
>> > tracepoints are more generic than ftrace.
>> 
>> Do you guys mind if I take this in via the net-2.6 tree?
> 
> I have no issue with that. Heck, I prefer it.

Great, thanks!

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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-06-02 21:04       ` David Miller
@ 2011-06-03  5:03         ` Koki Sanagi
  2011-06-03  5:23           ` David Miller
  0 siblings, 1 reply; 11+ messages in thread
From: Koki Sanagi @ 2011-06-03  5:03 UTC (permalink / raw)
  To: David Miller
  Cc: rostedt, linux-kernel, netdev, nhorman, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

(2011/06/03 6:04), David Miller wrote:
> From: Steven Rostedt <rostedt@goodmis.org>
> Date: Thu, 02 Jun 2011 17:01:52 -0400
> 
>> On Thu, 2011-06-02 at 13:59 -0700, David Miller wrote:
>>> From: Steven Rostedt <rostedt@goodmis.org>
>>> Date: Tue, 31 May 2011 11:14:27 -0400
>>>
>>>> Note, the subject should not be "ftrace:", but "net:" or maybe even
>>>> "net/tracing", as this really has nothing to do with ftrace code. The
>>>> tracepoints are more generic than ftrace.
>>>
>>> Do you guys mind if I take this in via the net-2.6 tree?
>>
>> I have no issue with that. Heck, I prefer it.
> 
> Great, thanks!

O.K.
I will resubmit this patch with appropriate subject "net/tracing:"

Thanks,
Koki Sanagi


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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-06-03  5:03         ` Koki Sanagi
@ 2011-06-03  5:23           ` David Miller
  2011-06-03  5:57             ` Koki Sanagi
  0 siblings, 1 reply; 11+ messages in thread
From: David Miller @ 2011-06-03  5:23 UTC (permalink / raw)
  To: sanagi.koki
  Cc: rostedt, linux-kernel, netdev, nhorman, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

From: Koki Sanagi <sanagi.koki@jp.fujitsu.com>
Date: Fri, 03 Jun 2011 14:03:51 +0900

> I will resubmit this patch with appropriate subject "net/tracing:"

You don't need to, I fixed it up when I applied your patch.

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

* Re: [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic
  2011-06-03  5:23           ` David Miller
@ 2011-06-03  5:57             ` Koki Sanagi
  0 siblings, 0 replies; 11+ messages in thread
From: Koki Sanagi @ 2011-06-03  5:57 UTC (permalink / raw)
  To: David Miller
  Cc: rostedt, linux-kernel, netdev, nhorman, mingo, fweisbec,
	mathieu.desnoyers, tglx, kosaki.motohiro, izumi.taku,
	kaneshige.kenji

(2011/06/03 14:23), David Miller wrote:
> From: Koki Sanagi <sanagi.koki@jp.fujitsu.com>
> Date: Fri, 03 Jun 2011 14:03:51 +0900
> 
>> I will resubmit this patch with appropriate subject "net/tracing:"
> 
> You don't need to, I fixed it up when I applied your patch.
> 

O.K.

Thanks!
Koki Sanagi
 



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

end of thread, other threads:[~2011-06-03  5:57 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-31  7:48 [PATCH] ftrace: tracepoint of net_dev_xmit sees freed skb and causes panic Koki Sanagi
2011-05-31 15:13 ` Steven Rostedt
2011-05-31 16:11   ` Neil Horman
2011-05-31 16:21     ` Steven Rostedt
2011-05-31 15:14 ` Steven Rostedt
2011-06-02 20:59   ` David Miller
2011-06-02 21:01     ` Steven Rostedt
2011-06-02 21:04       ` David Miller
2011-06-03  5:03         ` Koki Sanagi
2011-06-03  5:23           ` David Miller
2011-06-03  5:57             ` Koki Sanagi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).