Skip to content

Commit

Permalink
[IPSEC] beet: Fix extension header support on output
Browse files Browse the repository at this point in the history
The beet output function completely kills any extension headers by replacing
them with the IPv6 header.  This is because it essentially ignores the
result of ip6_find_1stfragopt by simply acting as if there aren't any
extension headers.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Herbert Xu authored and David S. Miller committed Oct 10, 2007
1 parent 8bd1707 commit bee0b40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/ipv6/xfrm6_mode_beet.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ static int xfrm6_beet_output(struct xfrm_state *x, struct sk_buff *skb)
hdr_len = ip6_find_1stfragopt(skb, &prevhdr);
memmove(skb->data, iph, hdr_len);

skb_set_mac_header(skb, offsetof(struct ipv6hdr, nexthdr));
skb_set_mac_header(skb, (prevhdr - x->props.header_len) - skb->data);
skb_reset_network_header(skb);
skb_set_transport_header(skb, sizeof(struct ipv6hdr));
skb_set_transport_header(skb, hdr_len);
top_iph = ipv6_hdr(skb);

ipv6_addr_copy(&top_iph->saddr, (struct in6_addr *)&x->props.saddr);
Expand Down

0 comments on commit bee0b40

Please sign in to comment.