From: Ang Way Chuang <wcang@nav6.org>
To: David Miller <davem@davemloft.net>
Cc: maxk@qualcomm.com, steve.zabele@baesystems.com,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
Date: Wed, 18 Jun 2008 10:13:31 +0800 [thread overview]
Message-ID: <48586F4B.4060404@nav6.org> (raw)
In-Reply-To: <20080617.163205.160864233.davem@davemloft.net>
David Miller wrote:
> From: Max Krasnyanskiy <maxk@qualcomm.com>
> Date: Fri, 06 Jun 2008 13:21:06 -0700
>
>> Acked-by: Max Krasnyansky <maxk@qualcomm.com>
>>
>> Dave, can you please add this patch to your tree.
>
> I can't, the patch is severely whitespace damaged.
>
Resend. Hopefully Thunderbird won't screw this time.
By default, tun.c running in TUN_TUN_DEV mode will set the protocol of packet
to IPv4 if TUN_NO_PI is set. My program failed to work when I assumed that
the driver will check the first nibble of packet, determine IP version and set
the appropriate protocol.
Signed-off-by: Ang Way Chuang <wcang@nav6.org>
---
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 0ce07a3..f97bb9b 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -313,6 +313,21 @@ static __inline__ ssize_t tun_get_user(struct tun_struct *tun, struct iovec *iv,
switch (tun->flags & TUN_TYPE_MASK) {
case TUN_TUN_DEV:
+ if (tun->flags & TUN_NO_PI) {
+ switch (skb->data[0] & 0xf0) {
+ case 0x40:
+ pi.proto = htons(ETH_P_IP);
+ break;
+ case 0x60:
+ pi.proto = htons(ETH_P_IPV6);
+ break;
+ default:
+ tun->dev->stats.rx_dropped++;
+ kfree_skb(skb);
+ return -EINVAL;
+ }
+ }
+
skb_reset_mac_header(skb);
skb->protocol = pi.proto;
skb->dev = tun->dev;
--
next prev parent reply other threads:[~2008-06-18 2:14 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-06 10:49 [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set Ang Way Chuang
2008-06-06 20:21 ` Max Krasnyanskiy
2008-06-06 20:48 ` Stephen Hemminger
2008-06-06 20:55 ` [PATCH] NET: Proper handling of IPv6 header in tun driver whenTUN_NO_PI " Zabele, Stephen (US SSA)
2008-06-17 23:32 ` [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI " David Miller
2008-06-18 2:13 ` Ang Way Chuang [this message]
2008-06-18 4:08 ` David Miller
2008-06-24 5:09 ` Max Krasnyansky
-- strict thread matches above, loose matches on Subject: below --
2008-06-06 12:13 wcang
2008-06-06 12:13 ` wcang
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=48586F4B.4060404@nav6.org \
--to=wcang@nav6.org \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--cc=maxk@qualcomm.com \
--cc=netdev@vger.kernel.org \
--cc=steve.zabele@baesystems.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.