[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150312183113.GA12169@breakpoint.cc>
Date: Thu, 12 Mar 2015 19:31:13 +0100
From: Florian Westphal <fw@...len.de>
To: Oliver Hartkopp <socketcan@...tkopp.net>
Cc: Florian Westphal <fw@...len.de>, netfilter-devel@...r.kernel.org,
netdev@...r.kernel.org, Eyal Birger <eyal.birger@...il.com>
Subject: Re: [PATCH v2 nf-next 3/6] netfilter: bridge: use skb->cb to track
otherhost mangling
Oliver Hartkopp <socketcan@...tkopp.net> wrote:
> On 03/12/2015 06:05 PM, Florian Westphal wrote:
> > nf_bridge_info->mask is used for several things, for example to remember
> > if skb->pkt_type was set to OTHER_HOST.
> >
> > For a bridge, OTHER_HOST is expected case. For ip forward its a
> > non-starter though -- routing expects PACKET_HOST.
> >
> > Bridge netfilter thus changes OTHER_HOST to PACKET_HOST
> > before hook invocation and then un-does it after hook traversal.
> >
> > For this, cb[] can be used since the skb will never be used outside
> > (fake inet) bridge forwarding while in 'fake PACKET_HOST' state.
> >
> > Signed-off-by: Florian Westphal <fw@...len.de>
> > ---
> > include/linux/netfilter_bridge.h | 1 -
> > net/bridge/br_netfilter.c | 71 ++++++++++++++++++++++++++--------------
>
>
> > @@ -1104,6 +1125,8 @@ static int __init br_netfilter_init(void)
> > {
> > int ret;
> >
> > + BUILD_BUG_ON(sizeof(struct nf_bridge_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb));
> > +
>
> Please use sock_skb_cb_check_size(size) for cb size checking which is the
> 'new' check for cb sizes for netdev.
I can do this for conistency, but its technically not needed here.
--
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