[SK_BUFF]: Introduce skb_network_offset()
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / ipv4 / xfrm4_mode_beet.c
CommitLineData
0a69452c
DB
1/*
2 * xfrm4_mode_beet.c - BEET mode encapsulation for IPv4.
3 *
4 * Copyright (c) 2006 Diego Beltrami <diego.beltrami@gmail.com>
5 * Miika Komu <miika@iki.fi>
6 * Herbert Xu <herbert@gondor.apana.org.au>
7 * Abhinav Pathak <abhinav.pathak@hiit.fi>
8 * Jeff Ahrenholz <ahrenholz@gmail.com>
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/dst.h>
17#include <net/ip.h>
18#include <net/xfrm.h>
19
20/* Add encapsulation header.
21 *
22 * The top IP header will be constructed per draft-nikander-esp-beet-mode-06.txt.
23 * The following fields in it shall be filled in by x->type->output:
24 * tot_len
25 * check
26 *
27 * On exit, skb->h will be set to the start of the payload to be processed
28 * by x->type->output and skb->nh will be set to the top IP header.
29 */
30static int xfrm4_beet_output(struct xfrm_state *x, struct sk_buff *skb)
31{
32 struct iphdr *iph, *top_iph = NULL;
33 int hdrlen, optlen;
34
35 iph = skb->nh.iph;
36 skb->h.ipiph = iph;
37
38 hdrlen = 0;
39 optlen = iph->ihl * 4 - sizeof(*iph);
40 if (unlikely(optlen))
41 hdrlen += IPV4_BEET_PHMAXLEN - (optlen & 4);
42
e2d1bca7
ACM
43 skb_push(skb, x->props.header_len + hdrlen);
44 skb_reset_network_header(skb);
0a69452c 45 top_iph = skb->nh.iph;
c5027c9a 46 skb->h.raw += sizeof(*iph) - hdrlen;
0a69452c 47
c5027c9a 48 memmove(top_iph, iph, sizeof(*iph));
0a69452c
DB
49 if (unlikely(optlen)) {
50 struct ip_beet_phdr *ph;
51
52 BUG_ON(optlen < 0);
53
54 ph = (struct ip_beet_phdr *)skb->h.raw;
55 ph->padlen = 4 - (optlen & 4);
05d22446 56 ph->hdrlen = optlen / 8;
0a69452c 57 ph->nexthdr = top_iph->protocol;
04fef989
PM
58 if (ph->padlen)
59 memset(ph + 1, IPOPT_NOP, ph->padlen);
0a69452c
DB
60
61 top_iph->protocol = IPPROTO_BEETPH;
62 top_iph->ihl = sizeof(struct iphdr) / 4;
63 }
64
65 top_iph->saddr = x->props.saddr.a4;
66 top_iph->daddr = x->id.daddr.a4;
67
68 return 0;
69}
70
71static int xfrm4_beet_input(struct xfrm_state *x, struct sk_buff *skb)
72{
73 struct iphdr *iph = skb->nh.iph;
74 int phlen = 0;
75 int optlen = 0;
76 __u8 ph_nexthdr = 0, protocol = 0;
77 int err = -EINVAL;
78
79 protocol = iph->protocol;
80
81 if (unlikely(iph->protocol == IPPROTO_BEETPH)) {
254d0d24 82 struct ip_beet_phdr *ph;
0a69452c
DB
83
84 if (!pskb_may_pull(skb, sizeof(*ph)))
85 goto out;
254d0d24 86 ph = (struct ip_beet_phdr *)(skb->h.ipiph + 1);
0a69452c 87
d4b1e840 88 phlen = sizeof(*ph) + ph->padlen;
05d22446 89 optlen = ph->hdrlen * 8 + (IPV4_BEET_PHMAXLEN - phlen);
0a69452c
DB
90 if (optlen < 0 || optlen & 3 || optlen > 250)
91 goto out;
92
d4b1e840 93 if (!pskb_may_pull(skb, phlen + optlen))
0a69452c 94 goto out;
254d0d24 95 skb->len -= phlen + optlen;
0a69452c
DB
96
97 ph_nexthdr = ph->nexthdr;
98 }
99
d4b1e840
PM
100 skb->nh.raw = skb->data + (phlen - sizeof(*iph));
101 memmove(skb->nh.raw, iph, sizeof(*iph));
102 skb->h.raw = skb->data + (phlen + optlen);
254d0d24 103 skb->data = skb->h.raw;
0a69452c
DB
104
105 iph = skb->nh.iph;
106 iph->ihl = (sizeof(*iph) + optlen) / 4;
d4b1e840 107 iph->tot_len = htons(skb->len + iph->ihl * 4);
0a69452c
DB
108 iph->daddr = x->sel.daddr.a4;
109 iph->saddr = x->sel.saddr.a4;
110 if (ph_nexthdr)
111 iph->protocol = ph_nexthdr;
112 else
113 iph->protocol = protocol;
114 iph->check = 0;
115 iph->check = ip_fast_csum(skb->nh.raw, iph->ihl);
116 err = 0;
117out:
118 return err;
119}
120
121static struct xfrm_mode xfrm4_beet_mode = {
122 .input = xfrm4_beet_input,
123 .output = xfrm4_beet_output,
124 .owner = THIS_MODULE,
125 .encap = XFRM_MODE_BEET,
126};
127
128static int __init xfrm4_beet_init(void)
129{
130 return xfrm_register_mode(&xfrm4_beet_mode, AF_INET);
131}
132
133static void __exit xfrm4_beet_exit(void)
134{
135 int err;
136
137 err = xfrm_unregister_mode(&xfrm4_beet_mode, AF_INET);
138 BUG_ON(err);
139}
140
141module_init(xfrm4_beet_init);
142module_exit(xfrm4_beet_exit);
143MODULE_LICENSE("GPL");
144MODULE_ALIAS_XFRM_MODE(AF_INET, XFRM_MODE_BEET);