]>
Commit | Line | Data |
---|---|---|
0a69452c DB |
1 | /* |
2 | * xfrm6_mode_beet.c - BEET mode encapsulation for IPv6. | |
3 | * | |
4 | * Copyright (c) 2006 Diego Beltrami <[email protected]> | |
5 | * Miika Komu <[email protected]> | |
6 | * Herbert Xu <[email protected]> | |
7 | * Abhinav Pathak <[email protected]> | |
8 | * Jeff Ahrenholz <[email protected]> | |
9 | */ | |
10 | ||
11 | #include <linux/init.h> | |
12 | #include <linux/kernel.h> | |
13 | #include <linux/module.h> | |
14 | #include <linux/skbuff.h> | |
15 | #include <linux/stringify.h> | |
16 | #include <net/dsfield.h> | |
17 | #include <net/dst.h> | |
18 | #include <net/inet_ecn.h> | |
19 | #include <net/ipv6.h> | |
20 | #include <net/xfrm.h> | |
21 | ||
22 | /* Add encapsulation header. | |
23 | * | |
24 | * The top IP header will be constructed per draft-nikander-esp-beet-mode-06.txt. | |
25 | * The following fields in it shall be filled in by x->type->output: | |
26 | * payload_len | |
27 | * | |
28 | * On exit, skb->h will be set to the start of the encapsulation header to be | |
29 | * filled in by x->type->output and skb->nh will be set to the nextheader field | |
30 | * of the extension header directly preceding the encapsulation header, or in | |
31 | * its absence, that of the top IP header. The value of skb->data will always | |
32 | * point to the top IP header. | |
33 | */ | |
34 | static int xfrm6_beet_output(struct xfrm_state *x, struct sk_buff *skb) | |
35 | { | |
36 | struct ipv6hdr *iph, *top_iph; | |
37 | u8 *prevhdr; | |
38 | int hdr_len; | |
39 | ||
40 | skb_push(skb, x->props.header_len); | |
0660e03f | 41 | iph = ipv6_hdr(skb); |
0a69452c DB |
42 | |
43 | hdr_len = ip6_find_1stfragopt(skb, &prevhdr); | |
ddc7b8e3 ACM |
44 | skb_set_network_header(skb, |
45 | (prevhdr - x->props.header_len) - skb->data); | |
967b05f6 | 46 | skb_set_transport_header(skb, hdr_len); |
0a69452c DB |
47 | memmove(skb->data, iph, hdr_len); |
48 | ||
c1d2bbe1 | 49 | skb_reset_network_header(skb); |
0660e03f | 50 | top_iph = ipv6_hdr(skb); |
b0e380b1 ACM |
51 | skb->transport_header = skb->network_header + sizeof(struct ipv6hdr); |
52 | skb->network_header += offsetof(struct ipv6hdr, nexthdr); | |
0a69452c DB |
53 | |
54 | ipv6_addr_copy(&top_iph->saddr, (struct in6_addr *)&x->props.saddr); | |
55 | ipv6_addr_copy(&top_iph->daddr, (struct in6_addr *)&x->id.daddr); | |
56 | ||
57 | return 0; | |
58 | } | |
59 | ||
60 | static int xfrm6_beet_input(struct xfrm_state *x, struct sk_buff *skb) | |
61 | { | |
62 | struct ipv6hdr *ip6h; | |
39f69c6f | 63 | const unsigned char *old_mac; |
0a69452c DB |
64 | int size = sizeof(struct ipv6hdr); |
65 | int err = -EINVAL; | |
66 | ||
67 | if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) | |
68 | goto out; | |
69 | ||
70 | skb_push(skb, size); | |
d56f90a7 | 71 | memmove(skb->data, skb_network_header(skb), size); |
c1d2bbe1 | 72 | skb_reset_network_header(skb); |
0a69452c | 73 | |
98e399f8 | 74 | old_mac = skb_mac_header(skb); |
39f69c6f | 75 | skb_set_mac_header(skb, -skb->mac_len); |
98e399f8 | 76 | memmove(skb_mac_header(skb), old_mac, skb->mac_len); |
0a69452c | 77 | |
0660e03f | 78 | ip6h = ipv6_hdr(skb); |
0a69452c DB |
79 | ip6h->payload_len = htons(skb->len - size); |
80 | ipv6_addr_copy(&ip6h->daddr, (struct in6_addr *) &x->sel.daddr.a6); | |
81 | ipv6_addr_copy(&ip6h->saddr, (struct in6_addr *) &x->sel.saddr.a6); | |
82 | err = 0; | |
83 | out: | |
84 | return err; | |
85 | } | |
86 | ||
87 | static struct xfrm_mode xfrm6_beet_mode = { | |
88 | .input = xfrm6_beet_input, | |
89 | .output = xfrm6_beet_output, | |
90 | .owner = THIS_MODULE, | |
91 | .encap = XFRM_MODE_BEET, | |
92 | }; | |
93 | ||
94 | static int __init xfrm6_beet_init(void) | |
95 | { | |
96 | return xfrm_register_mode(&xfrm6_beet_mode, AF_INET6); | |
97 | } | |
98 | ||
99 | static void __exit xfrm6_beet_exit(void) | |
100 | { | |
101 | int err; | |
102 | ||
103 | err = xfrm_unregister_mode(&xfrm6_beet_mode, AF_INET6); | |
104 | BUG_ON(err); | |
105 | } | |
106 | ||
107 | module_init(xfrm6_beet_init); | |
108 | module_exit(xfrm6_beet_exit); | |
109 | MODULE_LICENSE("GPL"); | |
110 | MODULE_ALIAS_XFRM_MODE(AF_INET6, XFRM_MODE_BEET); |