From: Simon Horman <horms@verge.net.au>
To: netdev@vger.kernel.org, steffen.klassert@secunet.com,
yoshfuji@linux-ipv6.org, nicolas.dichtel@6wind.com
Subject: Re: [PATCH ipsec 1/3] ipv6: wire up skb->encapsulation
Date: Mon, 19 Aug 2013 10:56:52 +1000 [thread overview]
Message-ID: <20130819005649.GA2931@verge.net.au> (raw)
In-Reply-To: <20130818110038.GC7371@order.stressinduktion.org>
On Sun, Aug 18, 2013 at 01:00:38PM +0200, Hannes Frederic Sowa wrote:
> On Sun, Aug 18, 2013 at 02:24:16PM +1000, Simon Horman wrote:
> > On Sat, Aug 17, 2013 at 08:07:38PM +0200, Hannes Frederic Sowa wrote:
> > > Hi Simon!
> > >
> > > On Sat, Aug 17, 2013 at 07:51:16PM +0200, Hannes Frederic Sowa wrote:
> > > > When pushing a new header before current one call skb_reset_inner_headers
> > > > to record the position of the inner headers in the various ipv6 tunnel
> > > > protocols.
> > > >
> > > > We later need this to correctly identify the addresses needed to send
> > > > back an error in the xfrm layer.
> > > >
> > > > This change is safe, because skb->protocol is always checked before
> > > > dereferencing data from the inner protocol.
> > > >
> > > > Cc: Steffen Klassert <steffen.klassert@secunet.com>
> > > > Cc: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
> > > > Cc: Nicolas Dichtel <nicolas.dichtel@6wind.com>
> > > > Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
> > > > ---
> > > >
> > > > This patch is based on Steffen Klassert's ipsec tree.
> > > >
> > > > net/ipv6/ip6_gre.c | 5 +++++
> > > > net/ipv6/ip6_tunnel.c | 6 ++++++
> > > > net/ipv6/sit.c | 5 +++++
> > > > 3 files changed, 16 insertions(+)
> > > >
> > > > diff --git a/net/ipv6/ip6_gre.c b/net/ipv6/ip6_gre.c
> > > > index ecd6073..90747f1 100644
> > > > --- a/net/ipv6/ip6_gre.c
> > > > +++ b/net/ipv6/ip6_gre.c
> > > > @@ -724,6 +724,11 @@ static netdev_tx_t ip6gre_xmit2(struct sk_buff *skb,
> > > > ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
> > > > }
> > > >
> > > > + if (likely(!skb->encapsulation)) {
> > > > + skb_reset_inner_headers(skb);
> > > > + skb->encapsulation = 1;
> > > > + }
> > > > +
> > >
> > > While doing these patches, I wondered how skb->inner_protocol will be
> > > used in future (you added it in 0d89d2035fe063461a5ddb609b2c12e7fb006e44
> > > ("MPLS: Add limited GSO support")). Current use by tunnels seems safe to
> > > me, but I wondered how you would extend its use?
> >
> > Hi,
> >
> > I must confess that I'm not entirely sure that I understand the question.
>
> Sorry to be not clear enough. I try to present my envisioned use case for
> inner_protocol:
>
> I do think there may be some other corner cases when reporting back
> errors to a local socket when multiple tunnels+ipsecs are stacked into
> each other. The first encapsulation sets skb->inner_network_header, so
> that we can later extract the needed information for the error generation
> via inner_ip{v6,}_hdr. It would be handy here to use inner_protocol to
> mark the type of inner_network_header in advance (all this is because,
> even if we still have a reference to the local socket and know its af,
> it could also have emitted an IPv4 frame, so we have to jump to the ipv4
> error handling path).
That sounds reasonable to me and I don't think it would interfere
with the current usage or vice versa.
next prev parent reply other threads:[~2013-08-19 4:33 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-17 17:51 [PATCH ipsec 1/3] ipv6: wire up skb->encapsulation Hannes Frederic Sowa
2013-08-17 18:07 ` Hannes Frederic Sowa
2013-08-18 4:24 ` Simon Horman
2013-08-18 11:00 ` Hannes Frederic Sowa
2013-08-19 0:56 ` Simon Horman [this message]
2013-08-17 19:02 ` Eric Dumazet
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=20130819005649.GA2931@verge.net.au \
--to=horms@verge.net.au \
--cc=netdev@vger.kernel.org \
--cc=nicolas.dichtel@6wind.com \
--cc=steffen.klassert@secunet.com \
--cc=yoshfuji@linux-ipv6.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;
as well as URLs for NNTP newsgroup(s).