* [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
@ 2008-06-06 10:49 Ang Way Chuang
2008-06-06 20:21 ` Max Krasnyanskiy
0 siblings, 1 reply; 9+ messages in thread
From: Ang Way Chuang @ 2008-06-06 10:49 UTC (permalink / raw)
To: Maxim Krasnyansky, netdev; +Cc: linux-kernel
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.
The test for this change was conducted on 2.6.24.7 kernel. But the diff
is produced using git commit
c3b25b32e8bef526cca748e1ba023c6bdd705a99. I couldn't test it on kernel
version greater than 2.6.25 due to out of tree driver failing to
compile. But tun_get_user doesn't change that much between 2.6.24 and
2.6.26, so it should work, I hope :-D. This patch is trivial because
this problem can also be fixed by not using TUN_NO_PI.
Signed-off-by: Ang Way Chuang <wcang@nav6.org>
---
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 0ce07a3..77964bc 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 = __constant_htons(ETH_P_IP);
+ break;
+ case 0x60:
+ pi.proto = __constant_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;
--
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
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-17 23:32 ` [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI " David Miller
0 siblings, 2 replies; 9+ messages in thread
From: Max Krasnyanskiy @ 2008-06-06 20:21 UTC (permalink / raw)
To: Ang Way Chuang, David Miller, Zabele, Stephen (US SSA)
Cc: netdev, linux-kernel
Acked-by: Max Krasnyansky <maxk@qualcomm.com>
Dave, can you please add this patch to your tree.
--
Steve, this is what I meant by "we do not need extra copy_from_user". We
already do copy into the SKB and can parse the header right there.
Max
Ang Way Chuang wrote:
> 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.
>
> The test for this change was conducted on 2.6.24.7 kernel. But the diff
> is produced using git commit
> c3b25b32e8bef526cca748e1ba023c6bdd705a99. I couldn't test it on kernel
> version greater than 2.6.25 due to out of tree driver failing to
> compile. But tun_get_user doesn't change that much between 2.6.24 and
> 2.6.26, so it should work, I hope :-D. This patch is trivial because
> this problem can also be fixed by not using TUN_NO_PI.
>
> Signed-off-by: Ang Way Chuang <wcang@nav6.org>
> ---
>
> diff --git a/drivers/net/tun.c b/drivers/net/tun.c
> index 0ce07a3..77964bc 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 = __constant_htons(ETH_P_IP);
> + break;
> + case 0x60:
> + pi.proto = __constant_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;
>
> --
>
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
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
1 sibling, 1 reply; 9+ messages in thread
From: Stephen Hemminger @ 2008-06-06 20:48 UTC (permalink / raw)
To: Max Krasnyanskiy
Cc: Ang Way Chuang, David Miller, Zabele, Stephen (US SSA), netdev,
linux-kernel
On Fri, 06 Jun 2008 13:21:06 -0700
Max Krasnyanskiy <maxk@qualcomm.com> wrote:
> Acked-by: Max Krasnyansky <maxk@qualcomm.com>
>
> Dave, can you please add this patch to your tree.
>
> --
> Steve, this is what I meant by "we do not need extra copy_from_user". We
> already do copy into the SKB and can parse the header right there.
>
> Max
>
>
>
>
> Ang Way Chuang wrote:
> > 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.
> >
> > The test for this change was conducted on 2.6.24.7 kernel. But the diff
> > is produced using git commit
> > c3b25b32e8bef526cca748e1ba023c6bdd705a99. I couldn't test it on kernel
> > version greater than 2.6.25 due to out of tree driver failing to
> > compile. But tun_get_user doesn't change that much between 2.6.24 and
> > 2.6.26, so it should work, I hope :-D. This patch is trivial because
> > this problem can also be fixed by not using TUN_NO_PI.
> >
> > Signed-off-by: Ang Way Chuang <wcang@nav6.org>
> > ---
> >
> > diff --git a/drivers/net/tun.c b/drivers/net/tun.c
> > index 0ce07a3..77964bc 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) {
Why the magic constants, instead of proper casts and defines.
> > + case 0x40:
> > + pi.proto = __constant_htons(ETH_P_IP);
Use htons() instead of __constant_htons() it is easier to read,
and the compiler already does the right thing.
> > + break;
> > + case 0x60:
> > + pi.proto = __constant_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;
> >
> > --
> >
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 9+ messages in thread* RE: [PATCH] NET: Proper handling of IPv6 header in tun driver whenTUN_NO_PI is set
2008-06-06 20:48 ` Stephen Hemminger
@ 2008-06-06 20:55 ` Zabele, Stephen (US SSA)
0 siblings, 0 replies; 9+ messages in thread
From: Zabele, Stephen (US SSA) @ 2008-06-06 20:55 UTC (permalink / raw)
To: Stephen Hemminger, Max Krasnyanskiy
Cc: Ang Way Chuang, David Miller, netdev, linux-kernel
Max: Now understand your comment about additional copy_from_user --
yeah, we do not want to make extra function calls if we don't need to.
I do concur with Stephen's comments.
Also, while we are at it, I guess we could also add in the IPX case --
although I'd bet IPX is OBE at this point.
Steve
-----Original Message-----
From: Stephen Hemminger [mailto:shemminger@vyatta.com]
Sent: Friday, June 06, 2008 4:49 PM
To: Max Krasnyanskiy
Cc: Ang Way Chuang; David Miller; Zabele, Stephen (US SSA);
netdev@vger.kernel.org; linux-kernel@vger.kernel.org
Subject: Re: [PATCH] NET: Proper handling of IPv6 header in tun driver
whenTUN_NO_PI is set
On Fri, 06 Jun 2008 13:21:06 -0700
Max Krasnyanskiy <maxk@qualcomm.com> wrote:
> Acked-by: Max Krasnyansky <maxk@qualcomm.com>
>
> Dave, can you please add this patch to your tree.
>
> --
> Steve, this is what I meant by "we do not need extra copy_from_user".
We
> already do copy into the SKB and can parse the header right there.
>
> Max
>
>
>
>
> Ang Way Chuang wrote:
> > 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.
> >
> > The test for this change was conducted on 2.6.24.7 kernel. But the
diff
> > is produced using git commit
> > c3b25b32e8bef526cca748e1ba023c6bdd705a99. I couldn't test it on
kernel
> > version greater than 2.6.25 due to out of tree driver failing to
> > compile. But tun_get_user doesn't change that much between 2.6.24
and
> > 2.6.26, so it should work, I hope :-D. This patch is trivial because
> > this problem can also be fixed by not using TUN_NO_PI.
> >
> > Signed-off-by: Ang Way Chuang <wcang@nav6.org>
> > ---
> >
> > diff --git a/drivers/net/tun.c b/drivers/net/tun.c
> > index 0ce07a3..77964bc 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) {
Why the magic constants, instead of proper casts and defines.
> > + case 0x40:
> > + pi.proto =
__constant_htons(ETH_P_IP);
Use htons() instead of __constant_htons() it is easier to read,
and the compiler already does the right thing.
> > + break;
> > + case 0x60:
> > + pi.proto =
__constant_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;
> >
> > --
> >
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
2008-06-06 20:21 ` Max Krasnyanskiy
2008-06-06 20:48 ` Stephen Hemminger
@ 2008-06-17 23:32 ` David Miller
2008-06-18 2:13 ` Ang Way Chuang
1 sibling, 1 reply; 9+ messages in thread
From: David Miller @ 2008-06-17 23:32 UTC (permalink / raw)
To: maxk; +Cc: wcang, steve.zabele, netdev, linux-kernel
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.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
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
2008-06-18 4:08 ` David Miller
0 siblings, 1 reply; 9+ messages in thread
From: Ang Way Chuang @ 2008-06-18 2:13 UTC (permalink / raw)
To: David Miller; +Cc: maxk, steve.zabele, netdev, linux-kernel
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;
--
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
2008-06-18 2:13 ` Ang Way Chuang
@ 2008-06-18 4:08 ` David Miller
2008-06-24 5:09 ` Max Krasnyansky
0 siblings, 1 reply; 9+ messages in thread
From: David Miller @ 2008-06-18 4:08 UTC (permalink / raw)
To: wcang; +Cc: maxk, steve.zabele, netdev, linux-kernel
From: Ang Way Chuang <wcang@nav6.org>
Date: Wed, 18 Jun 2008 10:13:31 +0800
> 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.
Same problem, tabs were transformed into spaces, and
lines composed of only whitespace were transformed into
empty lines.
This is frustrating enough, I'm just going to fix this up
by hand for you, but please get your shit straight for next
time because I won't do this twice.
Thanks.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
2008-06-18 4:08 ` David Miller
@ 2008-06-24 5:09 ` Max Krasnyansky
0 siblings, 0 replies; 9+ messages in thread
From: Max Krasnyansky @ 2008-06-24 5:09 UTC (permalink / raw)
To: David Miller; +Cc: wcang, steve.zabele, netdev, linux-kernel
David Miller wrote:
> From: Ang Way Chuang <wcang@nav6.org>
> Date: Wed, 18 Jun 2008 10:13:31 +0800
>
>> 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.
>
> Same problem, tabs were transformed into spaces, and
> lines composed of only whitespace were transformed into
> empty lines.
>
> This is frustrating enough, I'm just going to fix this up
> by hand for you, but please get your shit straight for next
> time because I won't do this twice.
Dave, thanks a lot for fixing this up. I looked at the patch and logic wise it
looked perfectly fine. I did not notice the problem with the spaces. Sorry.
Max
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH] NET: Proper handling of IPv6 header in tun driver when TUN_NO_PI is set
@ 2008-06-06 12:13 wcang
0 siblings, 0 replies; 9+ messages in thread
From: wcang @ 2008-06-06 12:13 UTC (permalink / raw)
To: netdev, maxk; +Cc: linux-kernel
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.
The test for this change was conducted on 2.6.24.7 kernel. But the diff is
produced using git commit
c3b25b32e8bef526cca748e1ba023c6bdd705a99. I couldn't test it on kernel version
greater than 2.6.25 due to out of tree driver failing to compile. But
tun_get_user doesn't change that much between 2.6.24 and 2.6.26, so it should
work, I hope :-D . This patch is trivial because this problem can also be fixed
by not using TUN_NO_PI.
Signed-off-by: Ang Way Chuang <wcang@nav6.org>
---
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 0ce07a3..77964bc 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 = __constant_htons(ETH_P_IP);
+ break;
+ case 0x60:
+ pi.proto = __constant_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;
--
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2008-06-24 5:09 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
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
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).