[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140104135132.GA2106@breakpoint.cc>
Date: Sat, 4 Jan 2014 14:51:32 +0100
From: Florian Westphal <fw@...len.de>
To: David Miller <davem@...emloft.net>
Cc: fw@...len.de, netdev@...r.kernel.org
Subject: Re: [PATCH] macvlan: fix oops with vlan-on-top and HW_VLAN_CTAG_TX
lowerdev
David Miller <davem@...emloft.net> wrote:
> From: Florian Westphal <fw@...len.de>
> Date: Fri, 3 Jan 2014 12:39:04 +0100
>
> >> +static const struct header_ops vlan_passthru_header_ops = {
> >> + .create = vlan_passthru_hard_header,
> >> + .rebuild = dev_rebuild_header,
> >
> > Doesn't that result in infinite recursion when invoking
> > dev_rebuild_header() on skb whose dev->header_ops is
> > vlan_passthru_header_ops?
>
> The skb->dev should be the real_dev at this point, no?
Oh, this is fun.
I grep'd for invocations of ->rebuild() because I wanted to understand
when/where it is used.
I only found one single instance, namely
neigh_compat_output() in net/core/neighbour.c
It does
struct net_device *dev = skb->dev;
__skb_pull(skb, skb_network_offset(skb));
if (dev_hard_header(skb, dev, ntohs(skb->protocol), NULL, NULL, skb->len) < 0 &&
dev->header_ops->rebuild(skb))
return 0;
So I thought, if skb->dev is the vlan device, we would invoke
dev_rebuild_header(), which grabs skb->dev again and invokes
dev_rebuild_header again, etc. etc.
But: neigh_compat_output (suspicious name...) is only wired up in
net/ipv4/arp.c, in 'static const struct neigh_ops arp_broken_ops'.
... and arp_broken_ops is only set if dev->type is one of
ARPHRD_ROSE, ARPHRD_AX25, ARPHRD_NETROM.
Could it be that ->rebuild() is completely obsolete and could be removed
from almost all drivers (except above types)?
Archeology exercise #1 digs up 3b04ddde02c in linux.git, which
creats header_ops->rebuild, from the old dev->rebuild_header.
Exercise #2 then finds commit 275513d2e1c78 in netdev-vger-cvs.git tree.
Quote from commit message:
- dev->rebuild_header WILL DISAPPEAR. All the code
relying on its existance is wrong, though still works.
Alexey calling from 1997 ;-)
I'll do some more digging before working on this.
I've placed a BUG() in eth_rebuild_header on my workstation, lets see if
it dies 8-}
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists