]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - net/xfrm/xfrm_input.c
[RTNETLINK]: Send a single notification on device state changes.
[mirror_ubuntu-zesty-kernel.git] / net / xfrm / xfrm_input.c
CommitLineData
1da177e4
LT
1/*
2 * xfrm_input.c
3 *
4 * Changes:
5 * YOSHIFUJI Hideaki @USAGI
6 * Split up af-specific portion
a716c119 7 *
1da177e4
LT
8 */
9
10#include <linux/slab.h>
11#include <linux/module.h>
716062fd
HX
12#include <linux/netdevice.h>
13#include <net/dst.h>
1da177e4
LT
14#include <net/ip.h>
15#include <net/xfrm.h>
16
e18b890b 17static struct kmem_cache *secpath_cachep __read_mostly;
1da177e4
LT
18
19void __secpath_destroy(struct sec_path *sp)
20{
21 int i;
22 for (i = 0; i < sp->len; i++)
dbe5b4aa 23 xfrm_state_put(sp->xvec[i]);
1da177e4
LT
24 kmem_cache_free(secpath_cachep, sp);
25}
26EXPORT_SYMBOL(__secpath_destroy);
27
28struct sec_path *secpath_dup(struct sec_path *src)
29{
30 struct sec_path *sp;
31
54e6ecb2 32 sp = kmem_cache_alloc(secpath_cachep, GFP_ATOMIC);
1da177e4
LT
33 if (!sp)
34 return NULL;
35
36 sp->len = 0;
37 if (src) {
38 int i;
39
40 memcpy(sp, src, sizeof(*sp));
41 for (i = 0; i < sp->len; i++)
dbe5b4aa 42 xfrm_state_hold(sp->xvec[i]);
1da177e4
LT
43 }
44 atomic_set(&sp->refcnt, 1);
45 return sp;
46}
47EXPORT_SYMBOL(secpath_dup);
48
49/* Fetch spi and seq from ipsec header */
50
6067b2ba 51int xfrm_parse_spi(struct sk_buff *skb, u8 nexthdr, __be32 *spi, __be32 *seq)
1da177e4
LT
52{
53 int offset, offset_seq;
44072500 54 int hlen;
1da177e4
LT
55
56 switch (nexthdr) {
57 case IPPROTO_AH:
44072500 58 hlen = sizeof(struct ip_auth_hdr);
1da177e4
LT
59 offset = offsetof(struct ip_auth_hdr, spi);
60 offset_seq = offsetof(struct ip_auth_hdr, seq_no);
61 break;
62 case IPPROTO_ESP:
44072500 63 hlen = sizeof(struct ip_esp_hdr);
1da177e4
LT
64 offset = offsetof(struct ip_esp_hdr, spi);
65 offset_seq = offsetof(struct ip_esp_hdr, seq_no);
66 break;
67 case IPPROTO_COMP:
68 if (!pskb_may_pull(skb, sizeof(struct ip_comp_hdr)))
69 return -EINVAL;
9c70220b 70 *spi = htonl(ntohs(*(__be16*)(skb_transport_header(skb) + 2)));
1da177e4
LT
71 *seq = 0;
72 return 0;
73 default:
74 return 1;
75 }
76
44072500 77 if (!pskb_may_pull(skb, hlen))
1da177e4
LT
78 return -EINVAL;
79
9c70220b
ACM
80 *spi = *(__be32*)(skb_transport_header(skb) + offset);
81 *seq = *(__be32*)(skb_transport_header(skb) + offset_seq);
1da177e4
LT
82 return 0;
83}
1da177e4 84
227620e2
HX
85int xfrm_prepare_input(struct xfrm_state *x, struct sk_buff *skb)
86{
87 int err;
88
89 err = x->outer_mode->afinfo->extract_input(x, skb);
90 if (err)
91 return err;
92
93 skb->protocol = x->inner_mode->afinfo->eth_proto;
94 return x->inner_mode->input2(x, skb);
95}
96EXPORT_SYMBOL(xfrm_prepare_input);
97
716062fd
HX
98int xfrm_input(struct sk_buff *skb, int nexthdr, __be32 spi, int encap_type)
99{
100 int err;
101 __be32 seq;
716062fd 102 struct xfrm_state *x;
1bf06cd2 103 xfrm_address_t *daddr;
2fcb45b6 104 unsigned int family;
716062fd 105 int decaps = 0;
1bf06cd2
HX
106 int async = 0;
107
108 /* A negative encap_type indicates async resumption. */
109 if (encap_type < 0) {
110 async = 1;
00501121 111 x = xfrm_input_state(skb);
1bf06cd2
HX
112 seq = XFRM_SKB_CB(skb)->seq;
113 goto resume;
114 }
716062fd 115
b2aa5e9d
HX
116 /* Allocate new secpath or COW existing one. */
117 if (!skb->sp || atomic_read(&skb->sp->refcnt) != 1) {
118 struct sec_path *sp;
119
120 sp = secpath_dup(skb->sp);
0aa64774
MN
121 if (!sp) {
122 XFRM_INC_STATS(LINUX_MIB_XFRMINERROR);
b2aa5e9d 123 goto drop;
0aa64774 124 }
b2aa5e9d
HX
125 if (skb->sp)
126 secpath_put(skb->sp);
127 skb->sp = sp;
128 }
129
1bf06cd2
HX
130 daddr = (xfrm_address_t *)(skb_network_header(skb) +
131 XFRM_SPI_SKB_CB(skb)->daddroff);
2fcb45b6 132 family = XFRM_SPI_SKB_CB(skb)->family;
1bf06cd2 133
716062fd 134 seq = 0;
0aa64774
MN
135 if (!spi && (err = xfrm_parse_spi(skb, nexthdr, &spi, &seq)) != 0) {
136 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
716062fd 137 goto drop;
0aa64774 138 }
716062fd
HX
139
140 do {
0aa64774
MN
141 if (skb->sp->len == XFRM_MAX_DEPTH) {
142 XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
716062fd 143 goto drop;
0aa64774 144 }
716062fd 145
2fcb45b6 146 x = xfrm_state_lookup(daddr, spi, nexthdr, family);
0aa64774
MN
147 if (x == NULL) {
148 XFRM_INC_STATS(LINUX_MIB_XFRMINNOSTATES);
afeb14b4 149 xfrm_audit_state_notfound(skb, family, spi, seq);
716062fd 150 goto drop;
0aa64774 151 }
716062fd 152
b2aa5e9d
HX
153 skb->sp->xvec[skb->sp->len++] = x;
154
716062fd 155 spin_lock(&x->lock);
0aa64774
MN
156 if (unlikely(x->km.state != XFRM_STATE_VALID)) {
157 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEINVALID);
716062fd 158 goto drop_unlock;
0aa64774 159 }
716062fd 160
0aa64774 161 if ((x->encap ? x->encap->encap_type : 0) != encap_type) {
9472c9ef 162 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMISMATCH);
716062fd 163 goto drop_unlock;
0aa64774 164 }
716062fd 165
afeb14b4 166 if (x->props.replay_window && xfrm_replay_check(x, skb, seq)) {
9472c9ef 167 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATESEQERROR);
716062fd 168 goto drop_unlock;
0aa64774 169 }
716062fd 170
0aa64774
MN
171 if (xfrm_state_check_expire(x)) {
172 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEEXPIRED);
716062fd 173 goto drop_unlock;
0aa64774 174 }
716062fd 175
0ebea8ef
HX
176 spin_unlock(&x->lock);
177
1bf06cd2
HX
178 XFRM_SKB_CB(skb)->seq = seq;
179
716062fd 180 nexthdr = x->type->input(x, skb);
0ebea8ef 181
1bf06cd2
HX
182 if (nexthdr == -EINPROGRESS)
183 return 0;
184
185resume:
0ebea8ef 186 spin_lock(&x->lock);
668dc8af 187 if (nexthdr <= 0) {
9dd3245a
HX
188 if (nexthdr == -EBADMSG) {
189 xfrm_audit_state_icvfail(x, skb,
190 x->type->proto);
668dc8af 191 x->stats.integrity_failed++;
9dd3245a 192 }
0aa64774 193 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEPROTOERROR);
716062fd 194 goto drop_unlock;
668dc8af 195 }
716062fd 196
716062fd
HX
197 /* only the first xfrm gets the encap type */
198 encap_type = 0;
199
200 if (x->props.replay_window)
201 xfrm_replay_advance(x, seq);
202
203 x->curlft.bytes += skb->len;
204 x->curlft.packets++;
205
206 spin_unlock(&x->lock);
207
60d5fcfb
HX
208 XFRM_MODE_SKB_CB(skb)->protocol = nexthdr;
209
0aa64774
MN
210 if (x->inner_mode->input(x, skb)) {
211 XFRM_INC_STATS(LINUX_MIB_XFRMINSTATEMODEERROR);
716062fd 212 goto drop;
0aa64774 213 }
716062fd
HX
214
215 if (x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL) {
216 decaps = 1;
217 break;
218 }
219
1bf06cd2
HX
220 /*
221 * We need the inner address. However, we only get here for
222 * transport mode so the outer address is identical.
223 */
224 daddr = &x->id.daddr;
2fcb45b6 225 family = x->outer_mode->afinfo->family;
1bf06cd2 226
716062fd 227 err = xfrm_parse_spi(skb, nexthdr, &spi, &seq);
0aa64774
MN
228 if (err < 0) {
229 XFRM_INC_STATS(LINUX_MIB_XFRMINHDRERROR);
716062fd 230 goto drop;
0aa64774 231 }
716062fd
HX
232 } while (!err);
233
716062fd
HX
234 nf_reset(skb);
235
236 if (decaps) {
237 dst_release(skb->dst);
238 skb->dst = NULL;
239 netif_rx(skb);
240 return 0;
241 } else {
1bf06cd2 242 return x->inner_mode->afinfo->transport_finish(skb, async);
716062fd
HX
243 }
244
245drop_unlock:
246 spin_unlock(&x->lock);
716062fd 247drop:
716062fd
HX
248 kfree_skb(skb);
249 return 0;
250}
251EXPORT_SYMBOL(xfrm_input);
252
1bf06cd2
HX
253int xfrm_input_resume(struct sk_buff *skb, int nexthdr)
254{
255 return xfrm_input(skb, nexthdr, 0, -1);
256}
257EXPORT_SYMBOL(xfrm_input_resume);
258
1da177e4
LT
259void __init xfrm_input_init(void)
260{
261 secpath_cachep = kmem_cache_create("secpath_cache",
262 sizeof(struct sec_path),
e5d679f3 263 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC,
20c2df83 264 NULL);
1da177e4 265}