From: James Chapman <jchapman@katalix.com>
To: netdev <netdev@vger.kernel.org>
Subject: L2TP: skb truesize bug in recent kernels
Date: Wed, 14 May 2008 11:07:16 +0100 [thread overview]
Message-ID: <482AB9D4.7050800@katalix.com> (raw)
A user of L2TP reports skb truesize bugs being logged. His config is GRE
over PPP over L2TP. All we know so far is that 2.6.24.4 works and
2.6.25.2 doesn't. There are no other reports of this problem, though
this might be the only user using GRE over L2TP tunnels at this time.
The truesize bugs don't occur for every packet:
SKB BUG: Invalid truesize (272) len=72, sizeof(sk_buff)=208
SKB BUG: Invalid truesize (272) len=81, sizeof(sk_buff)=208
The pppol2tp driver uses skb_cow_head() to make headroom for IP, UDP,
L2TP and PPP headers. As GRE is being used, it is more likely that there
will be insufficient headroom. Does the pppol2tp driver need to adjust
truesize if pskb_expand_head() is called?
I tried the following hack which stopped the skb truesize bug but caused
a kernel assert when the socket was closed:
KERN: assertion (!atomic_read(&sk->sk_wmem_alloc)) failed at
net/ipv4/af_inet.c (155)
Index: linux-2.6.25-new/drivers/net/pppol2tp.c
===================================================================
--- linux-2.6.25.orig/drivers/net/pppol2tp.c
+++ linux-2.6.25/drivers/net/pppol2tp.c
@@ -980,6 +980,8 @@ static int pppol2tp_xmit(struct ppp_chan
__wsum csum = 0;
struct udphdr *uh;
unsigned int len;
+ int old_headroom;
+ int new_headroom;
if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
goto abort;
@@ -1008,9 +1010,13 @@ static int pppol2tp_xmit(struct ppp_chan
*/
headroom = NET_SKB_PAD + sizeof(struct iphdr) +
sizeof(struct udphdr) + hdr_len + sizeof(ppph);
+ old_headroom = skb_headroom(skb);
if (skb_cow_head(skb, headroom))
goto abort;
+ new_headroom = skb_headroom(skb);
+ skb->truesize += new_headroom - old_headroom;
+
/* Setup PPP header */
__skb_push(skb, sizeof(ppph));
skb->data[0] = ppph[0];
Does the driver need to mess with truesize?
--
James Chapman
Katalix Systems Ltd
http://www.katalix.com
Catalysts for your Embedded Linux software development
next reply other threads:[~2008-05-14 10:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-14 10:07 James Chapman [this message]
2008-05-14 10:12 ` L2TP: skb truesize bug in recent kernels David Miller
2008-05-14 11:15 ` James Chapman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=482AB9D4.7050800@katalix.com \
--to=jchapman@katalix.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox