[PATCH 2/2] Interfamily IPSec BEET

Subsystems: networking [general], networking [ipsec], the rest

STALE6577d

6 messages, 2 authors, 2008-08-05 · open the first message on its own page

[PATCH 2/2] Interfamily IPSec BEET

From: Joakim Koskela <hidden>
Date: 2008-08-04 13:17:00

This fixes the ipv4-inner, ipv6-outer mode.  This one is a bit more
complex as not only do we need to take into account the difference
between ipv4/ipv6 headers when adjusting the sk_buff network header,
we also need to reserve extra room for the new ipv6 header.  This
extra room, here got by adding it to the props.header_len, is needed
to accomodate the new & larger ipv6 header (the kernel is currently
panicing because of this).

The BEET ipv4 pseudo-header construction was also missing from the
ipv6 output.

Signed-off-by: Joakim Koskela <redacted>

---
 net/ipv6/esp6.c            |    4 ++++
 net/ipv6/xfrm6_mode_beet.c |   28 ++++++++++++++++++++++++++--
 2 files changed, 30 insertions(+), 2 deletions(-)
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c
index c6bb4c6..f09fcb9 100644
--- a/net/ipv6/esp6.c
+++ b/net/ipv6/esp6.c
@@ -521,6 +521,10 @@ static int esp6_init_state(struct xfrm_state *x)
 			      crypto_aead_ivsize(aead);
 	switch (x->props.mode) {
 	case XFRM_MODE_BEET:
+		x->props.header_len += IPV4_BEET_PHMAXLEN;
+		if (x->sel.family == AF_INET)
+			x->props.header_len += (sizeof(struct ipv6hdr) - sizeof(struct iphdr));
+		break;
 	case XFRM_MODE_TRANSPORT:
 		break;
 	case XFRM_MODE_TUNNEL:
diff --git a/net/ipv6/xfrm6_mode_beet.c b/net/ipv6/xfrm6_mode_beet.c
index d6ce400..dc53623 100644
--- a/net/ipv6/xfrm6_mode_beet.c
+++ b/net/ipv6/xfrm6_mode_beet.c
@@ -41,15 +41,39 @@ static int xfrm6_beet_output(struct xfrm_state *x, struct 
sk_buff *skb)
 {
 	struct ipv6hdr *top_iph;
 
-	skb_set_network_header(skb, -x->props.header_len);
+	int optlen, hdr_len;
+	struct ip_beet_phdr *ph;
+	u8 protocol;
+	struct iphdr *iphv4;
+
+	iphv4 = ip_hdr(skb);
+	hdr_len = 0;
+	optlen = XFRM_MODE_SKB_CB(skb)->optlen;
+	if (unlikely(optlen))
+		hdr_len += IPV4_BEET_PHMAXLEN - (optlen & 4);
+
+	skb_set_network_header(skb, IPV4_BEET_PHMAXLEN - x->props.header_len -
+			            hdr_len);
 	skb->mac_header = skb->network_header +
 			  offsetof(struct ipv6hdr, nexthdr);
 	skb->transport_header = skb->network_header + sizeof(*top_iph);
-	__skb_pull(skb, XFRM_MODE_SKB_CB(skb)->ihl);
+	ph = (struct ip_beet_phdr *)__skb_pull(skb, 
XFRM_MODE_SKB_CB(skb)->ihl-hdr_len);
 
 	xfrm6_beet_make_header(skb);
 
 	top_iph = ipv6_hdr(skb);
+	if (unlikely(optlen)) {
+
+		BUG_ON(optlen < 0);
+
+		ph->padlen = 4 - (optlen & 4);
+		ph->hdrlen = optlen / 8;
+		ph->nexthdr = top_iph->nexthdr;
+		if (ph->padlen)
+			memset(ph + 1, IPOPT_NOP, ph->padlen);
+
+		top_iph->nexthdr = IPPROTO_BEETPH;
+	}
 
 	ipv6_addr_copy(&top_iph->saddr, (struct in6_addr *)&x->props.saddr);
 	ipv6_addr_copy(&top_iph->daddr, (struct in6_addr *)&x->id.daddr);

Re: [PATCH 2/2] Interfamily IPSec BEET

From: Herbert Xu <herbert@gondor.apana.org.au>
Date: 2008-08-04 16:20:50

On Mon, Aug 04, 2008 at 04:19:42PM +0300, Joakim Koskela wrote:
This fixes the ipv4-inner, ipv6-outer mode.  This one is a bit more
complex as not only do we need to take into account the difference
between ipv4/ipv6 headers when adjusting the sk_buff network header,
we also need to reserve extra room for the new ipv6 header.  This
extra room, here got by adding it to the props.header_len, is needed
to accomodate the new & larger ipv6 header (the kernel is currently
panicing because of this).

The BEET ipv4 pseudo-header construction was also missing from the
ipv6 output.

Signed-off-by: Joakim Koskela <redacted>
Thanks for tracking this down Joakim! I'm sorry for not spending
any time on this earlier.
quoted hunk
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c
index c6bb4c6..f09fcb9 100644
--- a/net/ipv6/esp6.c
+++ b/net/ipv6/esp6.c
@@ -521,6 +521,10 @@ static int esp6_init_state(struct xfrm_state *x)
 			      crypto_aead_ivsize(aead);
 	switch (x->props.mode) {
 	case XFRM_MODE_BEET:
+		x->props.header_len += IPV4_BEET_PHMAXLEN;
+		if (x->sel.family == AF_INET)
+			x->props.header_len += (sizeof(struct ipv6hdr) - sizeof(struct iphdr));
This is still going to break with the new any family (i.e., v4
or v6) SA.  So perhaps that should be x->sel.family != AF_INET6.

Cheers,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} [off-list ref]
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Re: [PATCH 2/2] Interfamily IPSec BEET

From: Joakim Koskela <hidden>
Date: 2008-08-05 07:14:20

On Monday 04 August 2008 19:20:46 Herbert Xu wrote:
quoted
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c
index c6bb4c6..f09fcb9 100644
--- a/net/ipv6/esp6.c
+++ b/net/ipv6/esp6.c
@@ -521,6 +521,10 @@ static int esp6_init_state(struct xfrm_state *x)
 			      crypto_aead_ivsize(aead);
 	switch (x->props.mode) {
 	case XFRM_MODE_BEET:
+		x->props.header_len += IPV4_BEET_PHMAXLEN;
+		if (x->sel.family == AF_INET)
+			x->props.header_len += (sizeof(struct ipv6hdr) - sizeof(struct
iphdr));
This is still going to break with the new any family (i.e., v4
or v6) SA.  So perhaps that should be x->sel.family != AF_INET6.

Cheers,
Hi, and thanks for checking this out. Didn't think about the any family, 
thanks for catching that. I'll resubmit this part.

br, j

Re: [PATCH 2/2] Interfamily IPSec BEET

From: Herbert Xu <herbert@gondor.apana.org.au>
Date: 2008-08-05 07:22:52

On Tue, Aug 05, 2008 at 10:13:19AM +0300, Joakim Koskela wrote:
quoted
quoted
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c
index c6bb4c6..f09fcb9 100644
--- a/net/ipv6/esp6.c
+++ b/net/ipv6/esp6.c
@@ -521,6 +521,10 @@ static int esp6_init_state(struct xfrm_state *x)
 			      crypto_aead_ivsize(aead);
 	switch (x->props.mode) {
 	case XFRM_MODE_BEET:
+		x->props.header_len += IPV4_BEET_PHMAXLEN;
+		if (x->sel.family == AF_INET)
+			x->props.header_len += (sizeof(struct ipv6hdr) - sizeof(struct
iphdr));
Also could we avoid the IPV4_BEET_PHMAXLEN part if the inner family
is IPv6?

Cheers,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} [off-list ref]
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

Re: [PATCH 2/2] Interfamily IPSec BEET

From: Joakim Koskela <hidden>
Date: 2008-08-05 08:34:08

On Tuesday 05 August 2008 10:22:49 Herbert Xu wrote:
Also could we avoid the IPV4_BEET_PHMAXLEN part if the inner family
is IPv6?

Cheers,
Sure, thanks. We should probably do the same in ipv4's output as well (only 
add the IPV4_BEET_PHMAXLEN if the inner family != ipv6).

br, j

Re: [PATCH 2/2] Interfamily IPSec BEET

From: Herbert Xu <herbert@gondor.apana.org.au>
Date: 2008-08-05 09:25:58

On Tue, Aug 05, 2008 at 11:36:46AM +0300, Joakim Koskela wrote:
Sure, thanks. We should probably do the same in ipv4's output as well (only 
add the IPV4_BEET_PHMAXLEN if the inner family != ipv6).
Good point.

Thanks,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} [off-list ref]
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help