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