From: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
To: "Alan J. Wylie" <alan@wylie.me.uk>
Cc: netdev@vger.kernel.org
Subject: Re: skb_pull_rcsum - Fatal exception in interrupt
Date: Wed, 15 Aug 2007 19:54:31 +0400 [thread overview]
Message-ID: <20070815155431.GA28761@2ka.mipt.ru> (raw)
In-Reply-To: <18115.5803.588114.372952@wylie.me.uk>
Hi Alan.
On Wed, Aug 15, 2007 at 04:07:23PM +0100, Alan J. Wylie (alan@wylie.me.uk) wrote:
> EIP: [<c02b6fb2>] skb_pull_rcsum+0x6d/0x71 SS:ESP 09068:c03e1ea4
> Kernel panic - not syncing: Fatal exception in interrupt
At least with this patch it should not panic.
More correct solution might be to use pskb_may_pull() or check aditional
length in llc_fixup_skb().
Actually if dmesg will show that there is something in fragments, it
should use pskb_may_pull(). The same bug exist in bridge and vlan, btw,
so it might be a solution to remove bug_on from skb_pull_rcsum() and
instead call may_pull?
Signed-off-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
diff --git a/net/802/psnap.c b/net/802/psnap.c
index 04ee43e..5f410e9 100644
--- a/net/802/psnap.c
+++ b/net/802/psnap.c
@@ -60,13 +60,24 @@ static int snap_rcv(struct sk_buff *skb, struct net_device *dev,
if (proto) {
/* Pass the frame on. */
skb->transport_header += 5;
+ if (skb->len < 5 || skb->len - 5 < skb->data_len) {
+ if (net_ratelimit())
+ printk(KERN_NOTICE "Short packet: len: %u, "
+ "data_len: %u.\n",
+ skb->len, skb->data_len);
+ goto err_out;
+ }
skb_pull_rcsum(skb, 5);
rc = proto->rcvfunc(skb, dev, &snap_packet_type, orig_dev);
- } else {
- skb->sk = NULL;
- kfree_skb(skb);
- rc = 1;
}
+
+ rcu_read_unlock();
+ return rc;
+
+err_out:
+ skb->sk = NULL;
+ kfree_skb(skb);
+ rc = 1;
rcu_read_unlock();
return rc;
--
Evgeniy Polyakov
next prev parent reply other threads:[~2007-08-15 15:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-15 15:07 skb_pull_rcsum - Fatal exception in interrupt Alan J. Wylie
2007-08-15 15:54 ` Evgeniy Polyakov [this message]
2007-08-20 14:24 ` Herbert Xu
2007-08-16 2:31 ` Herbert Xu
2007-08-20 16:21 ` Brandeburg, Jesse
2007-08-20 17:04 ` Alan J. Wylie
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=20070815155431.GA28761@2ka.mipt.ru \
--to=johnpol@2ka.mipt.ru \
--cc=alan@wylie.me.uk \
--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