]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * Copyright (C)2002 USAGI/WIDE Project | |
1ab1457c | 3 | * |
1da177e4 LT |
4 | * This program is free software; you can redistribute it and/or modify |
5 | * it under the terms of the GNU General Public License as published by | |
6 | * the Free Software Foundation; either version 2 of the License, or | |
7 | * (at your option) any later version. | |
1ab1457c | 8 | * |
1da177e4 LT |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | * GNU General Public License for more details. | |
1ab1457c | 13 | * |
1da177e4 | 14 | * You should have received a copy of the GNU General Public License |
a99421d9 | 15 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
1da177e4 LT |
16 | * |
17 | * Authors | |
18 | * | |
1ab1457c | 19 | * Mitsuru KANDA @USAGI : IPv6 Support |
67ba4152 IM |
20 | * Kazunori MIYAZAWA @USAGI : |
21 | * Kunihiro Ishiguro <[email protected]> | |
1ab1457c | 22 | * |
67ba4152 | 23 | * This file is derived from net/ipv4/esp.c |
1da177e4 LT |
24 | */ |
25 | ||
f3213831 JP |
26 | #define pr_fmt(fmt) "IPv6: " fmt |
27 | ||
38320c70 HX |
28 | #include <crypto/aead.h> |
29 | #include <crypto/authenc.h> | |
6b7326c8 | 30 | #include <linux/err.h> |
1da177e4 LT |
31 | #include <linux/module.h> |
32 | #include <net/ip.h> | |
33 | #include <net/xfrm.h> | |
34 | #include <net/esp.h> | |
72998d8c | 35 | #include <linux/scatterlist.h> |
a02a6422 | 36 | #include <linux/kernel.h> |
1da177e4 LT |
37 | #include <linux/pfkeyv2.h> |
38 | #include <linux/random.h> | |
38320c70 | 39 | #include <linux/slab.h> |
b7c6538c | 40 | #include <linux/spinlock.h> |
81aded24 | 41 | #include <net/ip6_route.h> |
1da177e4 LT |
42 | #include <net/icmp.h> |
43 | #include <net/ipv6.h> | |
14c85021 | 44 | #include <net/protocol.h> |
1da177e4 LT |
45 | #include <linux/icmpv6.h> |
46 | ||
03e2a30f SK |
47 | #include <linux/highmem.h> |
48 | ||
38320c70 HX |
49 | struct esp_skb_cb { |
50 | struct xfrm_skb_cb xfrm; | |
51 | void *tmp; | |
52 | }; | |
53 | ||
54 | #define ESP_SKB_CB(__skb) ((struct esp_skb_cb *)&((__skb)->cb[0])) | |
55 | ||
040253c9 MW |
56 | static u32 esp6_get_mtu(struct xfrm_state *x, int mtu); |
57 | ||
38320c70 HX |
58 | /* |
59 | * Allocate an AEAD request structure with extra space for SG and IV. | |
60 | * | |
d212a4c2 SK |
61 | * For alignment considerations the upper 32 bits of the sequence number are |
62 | * placed at the front, if present. Followed by the IV, the request and finally | |
63 | * the SG list. | |
38320c70 HX |
64 | * |
65 | * TODO: Use spare space in skb for this where possible. | |
66 | */ | |
d212a4c2 | 67 | static void *esp_alloc_tmp(struct crypto_aead *aead, int nfrags, int seqihlen) |
38320c70 HX |
68 | { |
69 | unsigned int len; | |
70 | ||
d212a4c2 SK |
71 | len = seqihlen; |
72 | ||
73 | len += crypto_aead_ivsize(aead); | |
74 | ||
38320c70 HX |
75 | if (len) { |
76 | len += crypto_aead_alignmask(aead) & | |
77 | ~(crypto_tfm_ctx_alignment() - 1); | |
78 | len = ALIGN(len, crypto_tfm_ctx_alignment()); | |
79 | } | |
80 | ||
000ae7b2 | 81 | len += sizeof(struct aead_request) + crypto_aead_reqsize(aead); |
38320c70 HX |
82 | len = ALIGN(len, __alignof__(struct scatterlist)); |
83 | ||
84 | len += sizeof(struct scatterlist) * nfrags; | |
85 | ||
86 | return kmalloc(len, GFP_ATOMIC); | |
87 | } | |
88 | ||
d212a4c2 SK |
89 | static inline __be32 *esp_tmp_seqhi(void *tmp) |
90 | { | |
91 | return PTR_ALIGN((__be32 *)tmp, __alignof__(__be32)); | |
92 | } | |
93 | ||
94 | static inline u8 *esp_tmp_iv(struct crypto_aead *aead, void *tmp, int seqhilen) | |
38320c70 HX |
95 | { |
96 | return crypto_aead_ivsize(aead) ? | |
d212a4c2 SK |
97 | PTR_ALIGN((u8 *)tmp + seqhilen, |
98 | crypto_aead_alignmask(aead) + 1) : tmp + seqhilen; | |
38320c70 HX |
99 | } |
100 | ||
38320c70 HX |
101 | static inline struct aead_request *esp_tmp_req(struct crypto_aead *aead, u8 *iv) |
102 | { | |
103 | struct aead_request *req; | |
104 | ||
105 | req = (void *)PTR_ALIGN(iv + crypto_aead_ivsize(aead), | |
106 | crypto_tfm_ctx_alignment()); | |
107 | aead_request_set_tfm(req, aead); | |
108 | return req; | |
109 | } | |
110 | ||
111 | static inline struct scatterlist *esp_req_sg(struct crypto_aead *aead, | |
112 | struct aead_request *req) | |
113 | { | |
114 | return (void *)ALIGN((unsigned long)(req + 1) + | |
115 | crypto_aead_reqsize(aead), | |
116 | __alignof__(struct scatterlist)); | |
117 | } | |
118 | ||
03e2a30f SK |
119 | static void esp_ssg_unref(struct xfrm_state *x, void *tmp) |
120 | { | |
03e2a30f SK |
121 | struct crypto_aead *aead = x->data; |
122 | int seqhilen = 0; | |
123 | u8 *iv; | |
124 | struct aead_request *req; | |
125 | struct scatterlist *sg; | |
126 | ||
127 | if (x->props.flags & XFRM_STATE_ESN) | |
128 | seqhilen += sizeof(__be32); | |
129 | ||
03e2a30f SK |
130 | iv = esp_tmp_iv(aead, tmp, seqhilen); |
131 | req = esp_tmp_req(aead, iv); | |
132 | ||
133 | /* Unref skb_frag_pages in the src scatterlist if necessary. | |
134 | * Skip the first sg which comes from skb->data. | |
135 | */ | |
136 | if (req->src != req->dst) | |
137 | for (sg = sg_next(req->src); sg; sg = sg_next(sg)) | |
138 | put_page(sg_page(sg)); | |
139 | } | |
140 | ||
38320c70 HX |
141 | static void esp_output_done(struct crypto_async_request *base, int err) |
142 | { | |
143 | struct sk_buff *skb = base->data; | |
03e2a30f SK |
144 | void *tmp; |
145 | struct dst_entry *dst = skb_dst(skb); | |
146 | struct xfrm_state *x = dst->xfrm; | |
38320c70 | 147 | |
03e2a30f SK |
148 | tmp = ESP_SKB_CB(skb)->tmp; |
149 | esp_ssg_unref(x, tmp); | |
150 | kfree(tmp); | |
38320c70 HX |
151 | xfrm_output_resume(skb, err); |
152 | } | |
153 | ||
000ae7b2 HX |
154 | /* Move ESP header back into place. */ |
155 | static void esp_restore_header(struct sk_buff *skb, unsigned int offset) | |
156 | { | |
157 | struct ip_esp_hdr *esph = (void *)(skb->data + offset); | |
158 | void *tmp = ESP_SKB_CB(skb)->tmp; | |
159 | __be32 *seqhi = esp_tmp_seqhi(tmp); | |
160 | ||
161 | esph->seq_no = esph->spi; | |
162 | esph->spi = *seqhi; | |
163 | } | |
164 | ||
165 | static void esp_output_restore_header(struct sk_buff *skb) | |
166 | { | |
167 | esp_restore_header(skb, skb_transport_offset(skb) - sizeof(__be32)); | |
168 | } | |
169 | ||
03e2a30f | 170 | static struct ip_esp_hdr *esp_output_set_esn(struct sk_buff *skb, |
383d0350 | 171 | struct xfrm_state *x, |
03e2a30f SK |
172 | struct ip_esp_hdr *esph, |
173 | __be32 *seqhi) | |
174 | { | |
03e2a30f SK |
175 | /* For ESN we move the header forward by 4 bytes to |
176 | * accomodate the high bits. We will move it back after | |
177 | * encryption. | |
178 | */ | |
179 | if ((x->props.flags & XFRM_STATE_ESN)) { | |
7862b405 SK |
180 | struct xfrm_offload *xo = xfrm_offload(skb); |
181 | ||
03e2a30f SK |
182 | esph = (void *)(skb_transport_header(skb) - sizeof(__be32)); |
183 | *seqhi = esph->spi; | |
7862b405 SK |
184 | if (xo) |
185 | esph->seq_no = htonl(xo->seq.hi); | |
186 | else | |
187 | esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.hi); | |
03e2a30f SK |
188 | } |
189 | ||
190 | esph->spi = x->id.spi; | |
191 | ||
192 | return esph; | |
193 | } | |
194 | ||
000ae7b2 HX |
195 | static void esp_output_done_esn(struct crypto_async_request *base, int err) |
196 | { | |
197 | struct sk_buff *skb = base->data; | |
198 | ||
199 | esp_output_restore_header(skb); | |
200 | esp_output_done(base, err); | |
201 | } | |
202 | ||
eb758c88 SK |
203 | static void esp_output_fill_trailer(u8 *tail, int tfclen, int plen, __u8 proto) |
204 | { | |
205 | /* Fill padding... */ | |
206 | if (tfclen) { | |
207 | memset(tail, 0, tfclen); | |
208 | tail += tfclen; | |
209 | } | |
210 | do { | |
211 | int i; | |
212 | for (i = 0; i < plen - 2; i++) | |
213 | tail[i] = i + 1; | |
214 | } while (0); | |
215 | tail[plen - 2] = plen - 2; | |
216 | tail[plen - 1] = proto; | |
217 | } | |
218 | ||
383d0350 | 219 | int esp6_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp) |
1da177e4 | 220 | { |
27a884dc | 221 | u8 *tail; |
03e2a30f | 222 | u8 *vaddr; |
383d0350 SK |
223 | int nfrags; |
224 | struct page *page; | |
383d0350 SK |
225 | struct sk_buff *trailer; |
226 | int tailen = esp->tailen; | |
d212a4c2 | 227 | |
03e2a30f | 228 | if (!skb_cloned(skb)) { |
54ffd790 | 229 | if (tailen <= skb_tailroom(skb)) { |
03e2a30f SK |
230 | nfrags = 1; |
231 | trailer = skb; | |
232 | tail = skb_tail_pointer(trailer); | |
233 | ||
234 | goto skip_cow; | |
235 | } else if ((skb_shinfo(skb)->nr_frags < MAX_SKB_FRAGS) | |
236 | && !skb_has_frag_list(skb)) { | |
237 | int allocsize; | |
238 | struct sock *sk = skb->sk; | |
239 | struct page_frag *pfrag = &x->xfrag; | |
240 | ||
383d0350 SK |
241 | esp->inplace = false; |
242 | ||
03e2a30f SK |
243 | allocsize = ALIGN(tailen, L1_CACHE_BYTES); |
244 | ||
245 | spin_lock_bh(&x->lock); | |
246 | ||
247 | if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) { | |
248 | spin_unlock_bh(&x->lock); | |
249 | goto cow; | |
250 | } | |
251 | ||
252 | page = pfrag->page; | |
253 | get_page(page); | |
254 | ||
255 | vaddr = kmap_atomic(page); | |
256 | ||
257 | tail = vaddr + pfrag->offset; | |
258 | ||
383d0350 | 259 | esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto); |
03e2a30f SK |
260 | |
261 | kunmap_atomic(vaddr); | |
262 | ||
263 | nfrags = skb_shinfo(skb)->nr_frags; | |
264 | ||
265 | __skb_fill_page_desc(skb, nfrags, page, pfrag->offset, | |
266 | tailen); | |
267 | skb_shinfo(skb)->nr_frags = ++nfrags; | |
268 | ||
269 | pfrag->offset = pfrag->offset + allocsize; | |
36ff0dd3 SK |
270 | |
271 | spin_unlock_bh(&x->lock); | |
272 | ||
03e2a30f SK |
273 | nfrags++; |
274 | ||
275 | skb->len += tailen; | |
276 | skb->data_len += tailen; | |
277 | skb->truesize += tailen; | |
278 | if (sk) | |
14afee4b | 279 | refcount_add(tailen, &sk->sk_wmem_alloc); |
03e2a30f | 280 | |
383d0350 | 281 | goto out; |
03e2a30f | 282 | } |
48f125ce | 283 | } |
38320c70 | 284 | |
03e2a30f | 285 | cow: |
383d0350 SK |
286 | nfrags = skb_cow_data(skb, tailen, &trailer); |
287 | if (nfrags < 0) | |
288 | goto out; | |
27a884dc | 289 | tail = skb_tail_pointer(trailer); |
03e2a30f SK |
290 | |
291 | skip_cow: | |
383d0350 SK |
292 | esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto); |
293 | pskb_put(skb, trailer, tailen); | |
1da177e4 | 294 | |
383d0350 SK |
295 | out: |
296 | return nfrags; | |
297 | } | |
298 | EXPORT_SYMBOL_GPL(esp6_output_head); | |
1da177e4 | 299 | |
383d0350 SK |
300 | int esp6_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp) |
301 | { | |
302 | u8 *iv; | |
303 | int alen; | |
304 | void *tmp; | |
305 | int ivlen; | |
306 | int assoclen; | |
307 | int seqhilen; | |
308 | __be32 *seqhi; | |
309 | struct page *page; | |
310 | struct ip_esp_hdr *esph; | |
311 | struct aead_request *req; | |
312 | struct crypto_aead *aead; | |
313 | struct scatterlist *sg, *dsg; | |
314 | int err = -ENOMEM; | |
315 | ||
316 | assoclen = sizeof(struct ip_esp_hdr); | |
317 | seqhilen = 0; | |
318 | ||
319 | if (x->props.flags & XFRM_STATE_ESN) { | |
320 | seqhilen += sizeof(__be32); | |
321 | assoclen += sizeof(__be32); | |
322 | } | |
1da177e4 | 323 | |
383d0350 SK |
324 | aead = x->data; |
325 | alen = crypto_aead_authsize(aead); | |
326 | ivlen = crypto_aead_ivsize(aead); | |
327 | ||
328 | tmp = esp_alloc_tmp(aead, esp->nfrags + 2, seqhilen); | |
e892d2d4 | 329 | if (!tmp) |
03e2a30f | 330 | goto error; |
000ae7b2 | 331 | |
03e2a30f SK |
332 | seqhi = esp_tmp_seqhi(tmp); |
333 | iv = esp_tmp_iv(aead, tmp, seqhilen); | |
334 | req = esp_tmp_req(aead, iv); | |
335 | sg = esp_req_sg(aead, req); | |
03e2a30f | 336 | |
383d0350 SK |
337 | if (esp->inplace) |
338 | dsg = sg; | |
339 | else | |
340 | dsg = &sg[esp->nfrags]; | |
341 | ||
342 | esph = esp_output_set_esn(skb, x, ip_esp_hdr(skb), seqhi); | |
000ae7b2 | 343 | |
383d0350 | 344 | sg_init_table(sg, esp->nfrags); |
3f297707 JD |
345 | err = skb_to_sgvec(skb, sg, |
346 | (unsigned char *)esph - skb->data, | |
347 | assoclen + ivlen + esp->clen + alen); | |
348 | if (unlikely(err < 0)) | |
e6194923 | 349 | goto error_free; |
383d0350 SK |
350 | |
351 | if (!esp->inplace) { | |
352 | int allocsize; | |
353 | struct page_frag *pfrag = &x->xfrag; | |
354 | ||
355 | allocsize = ALIGN(skb->data_len, L1_CACHE_BYTES); | |
356 | ||
357 | spin_lock_bh(&x->lock); | |
358 | if (unlikely(!skb_page_frag_refill(allocsize, pfrag, GFP_ATOMIC))) { | |
359 | spin_unlock_bh(&x->lock); | |
e6194923 | 360 | goto error_free; |
383d0350 SK |
361 | } |
362 | ||
363 | skb_shinfo(skb)->nr_frags = 1; | |
364 | ||
365 | page = pfrag->page; | |
366 | get_page(page); | |
367 | /* replace page frags in skb with new page */ | |
368 | __skb_fill_page_desc(skb, 0, page, pfrag->offset, skb->data_len); | |
369 | pfrag->offset = pfrag->offset + allocsize; | |
370 | spin_unlock_bh(&x->lock); | |
371 | ||
372 | sg_init_table(dsg, skb_shinfo(skb)->nr_frags + 1); | |
3f297707 JD |
373 | err = skb_to_sgvec(skb, dsg, |
374 | (unsigned char *)esph - skb->data, | |
375 | assoclen + ivlen + esp->clen + alen); | |
376 | if (unlikely(err < 0)) | |
e6194923 | 377 | goto error_free; |
383d0350 | 378 | } |
d212a4c2 | 379 | |
03e2a30f SK |
380 | if ((x->props.flags & XFRM_STATE_ESN)) |
381 | aead_request_set_callback(req, 0, esp_output_done_esn, skb); | |
382 | else | |
383 | aead_request_set_callback(req, 0, esp_output_done, skb); | |
384 | ||
383d0350 | 385 | aead_request_set_crypt(req, sg, dsg, ivlen + esp->clen, iv); |
000ae7b2 HX |
386 | aead_request_set_ad(req, assoclen); |
387 | ||
000ae7b2 | 388 | memset(iv, 0, ivlen); |
383d0350 | 389 | memcpy(iv + ivlen - min(ivlen, 8), (u8 *)&esp->seqno + 8 - min(ivlen, 8), |
000ae7b2 | 390 | min(ivlen, 8)); |
1da177e4 | 391 | |
38320c70 | 392 | ESP_SKB_CB(skb)->tmp = tmp; |
000ae7b2 HX |
393 | err = crypto_aead_encrypt(req); |
394 | ||
395 | switch (err) { | |
396 | case -EINPROGRESS: | |
38320c70 | 397 | goto error; |
1da177e4 | 398 | |
068c2e70 | 399 | case -ENOSPC: |
38320c70 | 400 | err = NET_XMIT_DROP; |
000ae7b2 HX |
401 | break; |
402 | ||
403 | case 0: | |
404 | if ((x->props.flags & XFRM_STATE_ESN)) | |
405 | esp_output_restore_header(skb); | |
406 | } | |
38320c70 | 407 | |
03e2a30f SK |
408 | if (sg != dsg) |
409 | esp_ssg_unref(x, tmp); | |
38320c70 | 410 | |
e6194923 SK |
411 | error_free: |
412 | kfree(tmp); | |
38320c70 HX |
413 | error: |
414 | return err; | |
415 | } | |
383d0350 SK |
416 | EXPORT_SYMBOL_GPL(esp6_output_tail); |
417 | ||
418 | static int esp6_output(struct xfrm_state *x, struct sk_buff *skb) | |
419 | { | |
420 | int alen; | |
421 | int blksize; | |
422 | struct ip_esp_hdr *esph; | |
423 | struct crypto_aead *aead; | |
424 | struct esp_info esp; | |
425 | ||
426 | esp.inplace = true; | |
427 | ||
428 | esp.proto = *skb_mac_header(skb); | |
429 | *skb_mac_header(skb) = IPPROTO_ESP; | |
430 | ||
431 | /* skb is pure payload to encrypt */ | |
432 | ||
433 | aead = x->data; | |
434 | alen = crypto_aead_authsize(aead); | |
435 | ||
436 | esp.tfclen = 0; | |
437 | if (x->tfcpad) { | |
438 | struct xfrm_dst *dst = (struct xfrm_dst *)skb_dst(skb); | |
439 | u32 padto; | |
440 | ||
441 | padto = min(x->tfcpad, esp6_get_mtu(x, dst->child_mtu_cached)); | |
442 | if (skb->len < padto) | |
443 | esp.tfclen = padto - skb->len; | |
444 | } | |
445 | blksize = ALIGN(crypto_aead_blocksize(aead), 4); | |
446 | esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize); | |
447 | esp.plen = esp.clen - skb->len - esp.tfclen; | |
448 | esp.tailen = esp.tfclen + esp.plen + alen; | |
449 | ||
450 | esp.nfrags = esp6_output_head(x, skb, &esp); | |
451 | if (esp.nfrags < 0) | |
452 | return esp.nfrags; | |
453 | ||
454 | esph = ip_esp_hdr(skb); | |
455 | esph->spi = x->id.spi; | |
456 | ||
457 | esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low); | |
458 | esp.seqno = cpu_to_be64(XFRM_SKB_CB(skb)->seq.output.low + | |
459 | ((u64)XFRM_SKB_CB(skb)->seq.output.hi << 32)); | |
460 | ||
461 | skb_push(skb, -skb_network_offset(skb)); | |
462 | ||
463 | return esp6_output_tail(x, skb, &esp); | |
464 | } | |
38320c70 | 465 | |
47ebcc0b | 466 | static inline int esp_remove_trailer(struct sk_buff *skb) |
38320c70 HX |
467 | { |
468 | struct xfrm_state *x = xfrm_input_state(skb); | |
d77e38e6 | 469 | struct xfrm_offload *xo = xfrm_offload(skb); |
1c5ad13f | 470 | struct crypto_aead *aead = x->data; |
47ebcc0b | 471 | int alen, hlen, elen; |
e51a6472 IT |
472 | int padlen, trimlen; |
473 | __wsum csumdiff; | |
38320c70 | 474 | u8 nexthdr[2]; |
47ebcc0b | 475 | int ret; |
38320c70 | 476 | |
47ebcc0b YK |
477 | alen = crypto_aead_authsize(aead); |
478 | hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead); | |
479 | elen = skb->len - hlen; | |
1da177e4 | 480 | |
47ebcc0b YK |
481 | if (xo && (xo->flags & XFRM_ESP_NO_TRAILER)) { |
482 | ret = xo->proto; | |
38320c70 | 483 | goto out; |
47ebcc0b | 484 | } |
6b7326c8 | 485 | |
eee12df5 GS |
486 | ret = skb_copy_bits(skb, skb->len - alen - 2, nexthdr, 2); |
487 | BUG_ON(ret); | |
1da177e4 | 488 | |
47ebcc0b | 489 | ret = -EINVAL; |
38320c70 HX |
490 | padlen = nexthdr[0]; |
491 | if (padlen + 2 + alen >= elen) { | |
ba7a46f1 JP |
492 | net_dbg_ratelimited("ipsec esp packet is garbage padlen=%d, elen=%d\n", |
493 | padlen + 2, elen - alen); | |
38320c70 | 494 | goto out; |
1da177e4 LT |
495 | } |
496 | ||
e51a6472 IT |
497 | trimlen = alen + padlen + 2; |
498 | if (skb->ip_summed == CHECKSUM_COMPLETE) { | |
499 | csumdiff = skb_checksum(skb, skb->len - trimlen, trimlen, 0); | |
500 | skb->csum = csum_block_sub(skb->csum, csumdiff, | |
501 | skb->len - trimlen); | |
502 | } | |
503 | pskb_trim(skb, skb->len - trimlen); | |
504 | ||
47ebcc0b YK |
505 | ret = nexthdr[1]; |
506 | ||
507 | out: | |
508 | return ret; | |
509 | } | |
510 | ||
511 | int esp6_input_done2(struct sk_buff *skb, int err) | |
512 | { | |
513 | struct xfrm_state *x = xfrm_input_state(skb); | |
514 | struct xfrm_offload *xo = xfrm_offload(skb); | |
515 | struct crypto_aead *aead = x->data; | |
516 | int hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead); | |
517 | int hdr_len = skb_network_header_len(skb); | |
518 | ||
519 | if (!xo || (xo && !(xo->flags & CRYPTO_DONE))) | |
520 | kfree(ESP_SKB_CB(skb)->tmp); | |
521 | ||
522 | if (unlikely(err)) | |
523 | goto out; | |
524 | ||
525 | err = esp_remove_trailer(skb); | |
526 | if (unlikely(err < 0)) | |
527 | goto out; | |
528 | ||
529 | skb_postpull_rcsum(skb, skb_network_header(skb), | |
530 | skb_network_header_len(skb)); | |
e51a6472 | 531 | skb_pull_rcsum(skb, hlen); |
a9403f8a LR |
532 | if (x->props.mode == XFRM_MODE_TUNNEL) |
533 | skb_reset_transport_header(skb); | |
534 | else | |
535 | skb_set_transport_header(skb, -hdr_len); | |
38320c70 | 536 | |
38320c70 HX |
537 | /* RFC4303: Drop dummy packets without any error */ |
538 | if (err == IPPROTO_NONE) | |
539 | err = -EINVAL; | |
540 | ||
541 | out: | |
1da177e4 LT |
542 | return err; |
543 | } | |
383d0350 | 544 | EXPORT_SYMBOL_GPL(esp6_input_done2); |
1da177e4 | 545 | |
38320c70 HX |
546 | static void esp_input_done(struct crypto_async_request *base, int err) |
547 | { | |
548 | struct sk_buff *skb = base->data; | |
549 | ||
f1fbed0e | 550 | xfrm_input_resume(skb, esp6_input_done2(skb, err)); |
38320c70 HX |
551 | } |
552 | ||
000ae7b2 HX |
553 | static void esp_input_restore_header(struct sk_buff *skb) |
554 | { | |
555 | esp_restore_header(skb, 0); | |
556 | __skb_pull(skb, 4); | |
557 | } | |
558 | ||
03e2a30f SK |
559 | static void esp_input_set_header(struct sk_buff *skb, __be32 *seqhi) |
560 | { | |
561 | struct xfrm_state *x = xfrm_input_state(skb); | |
03e2a30f SK |
562 | |
563 | /* For ESN we move the header forward by 4 bytes to | |
564 | * accomodate the high bits. We will move it back after | |
565 | * decryption. | |
566 | */ | |
567 | if ((x->props.flags & XFRM_STATE_ESN)) { | |
d3cc547d CIK |
568 | struct ip_esp_hdr *esph = skb_push(skb, 4); |
569 | ||
03e2a30f SK |
570 | *seqhi = esph->spi; |
571 | esph->spi = esph->seq_no; | |
572 | esph->seq_no = XFRM_SKB_CB(skb)->seq.input.hi; | |
573 | } | |
574 | } | |
575 | ||
000ae7b2 HX |
576 | static void esp_input_done_esn(struct crypto_async_request *base, int err) |
577 | { | |
578 | struct sk_buff *skb = base->data; | |
579 | ||
580 | esp_input_restore_header(skb); | |
581 | esp_input_done(base, err); | |
582 | } | |
583 | ||
e695633e | 584 | static int esp6_input(struct xfrm_state *x, struct sk_buff *skb) |
1da177e4 | 585 | { |
87bdc48d | 586 | struct ip_esp_hdr *esph; |
1c5ad13f | 587 | struct crypto_aead *aead = x->data; |
38320c70 | 588 | struct aead_request *req; |
1da177e4 | 589 | struct sk_buff *trailer; |
000ae7b2 HX |
590 | int ivlen = crypto_aead_ivsize(aead); |
591 | int elen = skb->len - sizeof(*esph) - ivlen; | |
1da177e4 | 592 | int nfrags; |
d212a4c2 | 593 | int assoclen; |
d212a4c2 | 594 | int seqhilen; |
1da177e4 | 595 | int ret = 0; |
38320c70 | 596 | void *tmp; |
d212a4c2 | 597 | __be32 *seqhi; |
38320c70 HX |
598 | u8 *iv; |
599 | struct scatterlist *sg; | |
1da177e4 | 600 | |
000ae7b2 | 601 | if (!pskb_may_pull(skb, sizeof(*esph) + ivlen)) { |
1da177e4 | 602 | ret = -EINVAL; |
31a4ab93 | 603 | goto out; |
1da177e4 LT |
604 | } |
605 | ||
38320c70 | 606 | if (elen <= 0) { |
1da177e4 | 607 | ret = -EINVAL; |
31a4ab93 | 608 | goto out; |
1da177e4 | 609 | } |
1da177e4 | 610 | |
d212a4c2 | 611 | assoclen = sizeof(*esph); |
d212a4c2 SK |
612 | seqhilen = 0; |
613 | ||
614 | if (x->props.flags & XFRM_STATE_ESN) { | |
d212a4c2 SK |
615 | seqhilen += sizeof(__be32); |
616 | assoclen += seqhilen; | |
617 | } | |
618 | ||
03e2a30f SK |
619 | if (!skb_cloned(skb)) { |
620 | if (!skb_is_nonlinear(skb)) { | |
621 | nfrags = 1; | |
622 | ||
623 | goto skip_cow; | |
624 | } else if (!skb_has_frag_list(skb)) { | |
625 | nfrags = skb_shinfo(skb)->nr_frags; | |
626 | nfrags++; | |
627 | ||
628 | goto skip_cow; | |
629 | } | |
630 | } | |
631 | ||
632 | nfrags = skb_cow_data(skb, 0, &trailer); | |
633 | if (nfrags < 0) { | |
634 | ret = -EINVAL; | |
635 | goto out; | |
636 | } | |
637 | ||
638 | skip_cow: | |
639 | ret = -ENOMEM; | |
000ae7b2 | 640 | tmp = esp_alloc_tmp(aead, nfrags, seqhilen); |
38320c70 HX |
641 | if (!tmp) |
642 | goto out; | |
1da177e4 | 643 | |
38320c70 | 644 | ESP_SKB_CB(skb)->tmp = tmp; |
d212a4c2 SK |
645 | seqhi = esp_tmp_seqhi(tmp); |
646 | iv = esp_tmp_iv(aead, tmp, seqhilen); | |
38320c70 | 647 | req = esp_tmp_req(aead, iv); |
000ae7b2 | 648 | sg = esp_req_sg(aead, req); |
1da177e4 | 649 | |
03e2a30f | 650 | esp_input_set_header(skb, seqhi); |
1da177e4 | 651 | |
03e2a30f | 652 | sg_init_table(sg, nfrags); |
3f297707 JD |
653 | ret = skb_to_sgvec(skb, sg, 0, skb->len); |
654 | if (unlikely(ret < 0)) | |
655 | goto out; | |
1da177e4 | 656 | |
03e2a30f | 657 | skb->ip_summed = CHECKSUM_NONE; |
d212a4c2 | 658 | |
03e2a30f | 659 | if ((x->props.flags & XFRM_STATE_ESN)) |
000ae7b2 | 660 | aead_request_set_callback(req, 0, esp_input_done_esn, skb); |
03e2a30f SK |
661 | else |
662 | aead_request_set_callback(req, 0, esp_input_done, skb); | |
000ae7b2 HX |
663 | |
664 | aead_request_set_crypt(req, sg, sg, elen + ivlen, iv); | |
665 | aead_request_set_ad(req, assoclen); | |
1da177e4 | 666 | |
38320c70 HX |
667 | ret = crypto_aead_decrypt(req); |
668 | if (ret == -EINPROGRESS) | |
669 | goto out; | |
95a02cfd | 670 | |
000ae7b2 HX |
671 | if ((x->props.flags & XFRM_STATE_ESN)) |
672 | esp_input_restore_header(skb); | |
673 | ||
f1fbed0e | 674 | ret = esp6_input_done2(skb, ret); |
1da177e4 LT |
675 | |
676 | out: | |
1da177e4 LT |
677 | return ret; |
678 | } | |
679 | ||
c5c25238 | 680 | static u32 esp6_get_mtu(struct xfrm_state *x, int mtu) |
1da177e4 | 681 | { |
1c5ad13f MK |
682 | struct crypto_aead *aead = x->data; |
683 | u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4); | |
91657eaf | 684 | unsigned int net_adj; |
1da177e4 | 685 | |
91657eaf BP |
686 | if (x->props.mode != XFRM_MODE_TUNNEL) |
687 | net_adj = sizeof(struct ipv6hdr); | |
688 | else | |
689 | net_adj = 0; | |
c5c25238 | 690 | |
1c5ad13f | 691 | return ((mtu - x->props.header_len - crypto_aead_authsize(aead) - |
123b0d1b | 692 | net_adj) & ~(blksize - 1)) + net_adj - 2; |
1da177e4 LT |
693 | } |
694 | ||
d5860c5c SK |
695 | static int esp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, |
696 | u8 type, u8 code, int offset, __be32 info) | |
1da177e4 | 697 | { |
4fb236ba | 698 | struct net *net = dev_net(skb->dev); |
b71d1d42 | 699 | const struct ipv6hdr *iph = (const struct ipv6hdr *)skb->data; |
87bdc48d | 700 | struct ip_esp_hdr *esph = (struct ip_esp_hdr *)(skb->data + offset); |
1da177e4 LT |
701 | struct xfrm_state *x; |
702 | ||
b3b2b9e1 | 703 | if (type != ICMPV6_PKT_TOOBIG && |
ec18d9a2 | 704 | type != NDISC_REDIRECT) |
d5860c5c | 705 | return 0; |
1da177e4 | 706 | |
b71d1d42 ED |
707 | x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr, |
708 | esph->spi, IPPROTO_ESP, AF_INET6); | |
1da177e4 | 709 | if (!x) |
d5860c5c | 710 | return 0; |
ec18d9a2 DM |
711 | |
712 | if (type == NDISC_REDIRECT) | |
e2d118a1 LC |
713 | ip6_redirect(skb, net, skb->dev->ifindex, 0, |
714 | sock_net_uid(net, NULL)); | |
ec18d9a2 | 715 | else |
e2d118a1 | 716 | ip6_update_pmtu(skb, net, info, 0, 0, sock_net_uid(net, NULL)); |
1da177e4 | 717 | xfrm_state_put(x); |
d5860c5c SK |
718 | |
719 | return 0; | |
1da177e4 LT |
720 | } |
721 | ||
722 | static void esp6_destroy(struct xfrm_state *x) | |
723 | { | |
1c5ad13f | 724 | struct crypto_aead *aead = x->data; |
1da177e4 | 725 | |
1c5ad13f | 726 | if (!aead) |
1da177e4 LT |
727 | return; |
728 | ||
1c5ad13f | 729 | crypto_free_aead(aead); |
1da177e4 LT |
730 | } |
731 | ||
1a6509d9 HX |
732 | static int esp_init_aead(struct xfrm_state *x) |
733 | { | |
000ae7b2 | 734 | char aead_name[CRYPTO_MAX_ALG_NAME]; |
1a6509d9 HX |
735 | struct crypto_aead *aead; |
736 | int err; | |
b3859c8e | 737 | u32 mask = 0; |
1a6509d9 | 738 | |
000ae7b2 HX |
739 | err = -ENAMETOOLONG; |
740 | if (snprintf(aead_name, CRYPTO_MAX_ALG_NAME, "%s(%s)", | |
741 | x->geniv, x->aead->alg_name) >= CRYPTO_MAX_ALG_NAME) | |
742 | goto error; | |
743 | ||
b3859c8e SK |
744 | if (x->xso.offload_handle) |
745 | mask |= CRYPTO_ALG_ASYNC; | |
746 | ||
747 | aead = crypto_alloc_aead(aead_name, 0, mask); | |
1a6509d9 HX |
748 | err = PTR_ERR(aead); |
749 | if (IS_ERR(aead)) | |
750 | goto error; | |
751 | ||
1c5ad13f | 752 | x->data = aead; |
1a6509d9 HX |
753 | |
754 | err = crypto_aead_setkey(aead, x->aead->alg_key, | |
755 | (x->aead->alg_key_len + 7) / 8); | |
756 | if (err) | |
757 | goto error; | |
758 | ||
759 | err = crypto_aead_setauthsize(aead, x->aead->alg_icv_len / 8); | |
760 | if (err) | |
761 | goto error; | |
762 | ||
763 | error: | |
764 | return err; | |
765 | } | |
766 | ||
767 | static int esp_init_authenc(struct xfrm_state *x) | |
1da177e4 | 768 | { |
38320c70 HX |
769 | struct crypto_aead *aead; |
770 | struct crypto_authenc_key_param *param; | |
771 | struct rtattr *rta; | |
772 | char *key; | |
773 | char *p; | |
774 | char authenc_name[CRYPTO_MAX_ALG_NAME]; | |
38320c70 HX |
775 | unsigned int keylen; |
776 | int err; | |
b3859c8e | 777 | u32 mask = 0; |
1da177e4 | 778 | |
1a6509d9 | 779 | err = -EINVAL; |
63159f29 | 780 | if (!x->ealg) |
1a6509d9 | 781 | goto error; |
38320c70 | 782 | |
1a6509d9 | 783 | err = -ENAMETOOLONG; |
d212a4c2 SK |
784 | |
785 | if ((x->props.flags & XFRM_STATE_ESN)) { | |
786 | if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME, | |
000ae7b2 HX |
787 | "%s%sauthencesn(%s,%s)%s", |
788 | x->geniv ?: "", x->geniv ? "(" : "", | |
d212a4c2 | 789 | x->aalg ? x->aalg->alg_name : "digest_null", |
000ae7b2 HX |
790 | x->ealg->alg_name, |
791 | x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME) | |
d212a4c2 SK |
792 | goto error; |
793 | } else { | |
794 | if (snprintf(authenc_name, CRYPTO_MAX_ALG_NAME, | |
000ae7b2 HX |
795 | "%s%sauthenc(%s,%s)%s", |
796 | x->geniv ?: "", x->geniv ? "(" : "", | |
d212a4c2 | 797 | x->aalg ? x->aalg->alg_name : "digest_null", |
000ae7b2 HX |
798 | x->ealg->alg_name, |
799 | x->geniv ? ")" : "") >= CRYPTO_MAX_ALG_NAME) | |
d212a4c2 SK |
800 | goto error; |
801 | } | |
38320c70 | 802 | |
b3859c8e SK |
803 | if (x->xso.offload_handle) |
804 | mask |= CRYPTO_ALG_ASYNC; | |
805 | ||
806 | aead = crypto_alloc_aead(authenc_name, 0, mask); | |
38320c70 HX |
807 | err = PTR_ERR(aead); |
808 | if (IS_ERR(aead)) | |
809 | goto error; | |
810 | ||
1c5ad13f | 811 | x->data = aead; |
38320c70 HX |
812 | |
813 | keylen = (x->aalg ? (x->aalg->alg_key_len + 7) / 8 : 0) + | |
814 | (x->ealg->alg_key_len + 7) / 8 + RTA_SPACE(sizeof(*param)); | |
815 | err = -ENOMEM; | |
816 | key = kmalloc(keylen, GFP_KERNEL); | |
817 | if (!key) | |
818 | goto error; | |
819 | ||
820 | p = key; | |
821 | rta = (void *)p; | |
822 | rta->rta_type = CRYPTO_AUTHENC_KEYA_PARAM; | |
823 | rta->rta_len = RTA_LENGTH(sizeof(*param)); | |
824 | param = RTA_DATA(rta); | |
825 | p += RTA_SPACE(sizeof(*param)); | |
826 | ||
1da177e4 LT |
827 | if (x->aalg) { |
828 | struct xfrm_algo_desc *aalg_desc; | |
829 | ||
38320c70 HX |
830 | memcpy(p, x->aalg->alg_key, (x->aalg->alg_key_len + 7) / 8); |
831 | p += (x->aalg->alg_key_len + 7) / 8; | |
1ab1457c | 832 | |
1da177e4 LT |
833 | aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0); |
834 | BUG_ON(!aalg_desc); | |
1ab1457c | 835 | |
38320c70 | 836 | err = -EINVAL; |
45083497 | 837 | if (aalg_desc->uinfo.auth.icv_fullbits / 8 != |
38320c70 | 838 | crypto_aead_authsize(aead)) { |
45083497 JP |
839 | pr_info("ESP: %s digestsize %u != %hu\n", |
840 | x->aalg->alg_name, | |
841 | crypto_aead_authsize(aead), | |
842 | aalg_desc->uinfo.auth.icv_fullbits / 8); | |
38320c70 | 843 | goto free_key; |
1da177e4 | 844 | } |
1ab1457c | 845 | |
38320c70 | 846 | err = crypto_aead_setauthsize( |
8f8a088c | 847 | aead, x->aalg->alg_trunc_len / 8); |
38320c70 HX |
848 | if (err) |
849 | goto free_key; | |
1da177e4 | 850 | } |
38320c70 | 851 | |
38320c70 HX |
852 | param->enckeylen = cpu_to_be32((x->ealg->alg_key_len + 7) / 8); |
853 | memcpy(p, x->ealg->alg_key, (x->ealg->alg_key_len + 7) / 8); | |
854 | ||
855 | err = crypto_aead_setkey(aead, key, keylen); | |
856 | ||
857 | free_key: | |
858 | kfree(key); | |
859 | ||
1a6509d9 HX |
860 | error: |
861 | return err; | |
862 | } | |
863 | ||
864 | static int esp6_init_state(struct xfrm_state *x) | |
865 | { | |
1a6509d9 HX |
866 | struct crypto_aead *aead; |
867 | u32 align; | |
868 | int err; | |
869 | ||
870 | if (x->encap) | |
871 | return -EINVAL; | |
872 | ||
1c5ad13f | 873 | x->data = NULL; |
1a6509d9 HX |
874 | |
875 | if (x->aead) | |
876 | err = esp_init_aead(x); | |
877 | else | |
878 | err = esp_init_authenc(x); | |
879 | ||
38320c70 | 880 | if (err) |
1da177e4 | 881 | goto error; |
38320c70 | 882 | |
1c5ad13f | 883 | aead = x->data; |
1a6509d9 | 884 | |
38320c70 HX |
885 | x->props.header_len = sizeof(struct ip_esp_hdr) + |
886 | crypto_aead_ivsize(aead); | |
ca68145f HX |
887 | switch (x->props.mode) { |
888 | case XFRM_MODE_BEET: | |
abf5cdb8 JK |
889 | if (x->sel.family != AF_INET6) |
890 | x->props.header_len += IPV4_BEET_PHMAXLEN + | |
67ba4152 | 891 | (sizeof(struct ipv6hdr) - sizeof(struct iphdr)); |
abf5cdb8 | 892 | break; |
ca68145f HX |
893 | case XFRM_MODE_TRANSPORT: |
894 | break; | |
895 | case XFRM_MODE_TUNNEL: | |
1da177e4 | 896 | x->props.header_len += sizeof(struct ipv6hdr); |
ea2c47b4 | 897 | break; |
ca68145f HX |
898 | default: |
899 | goto error; | |
900 | } | |
38320c70 HX |
901 | |
902 | align = ALIGN(crypto_aead_blocksize(aead), 4); | |
1c5ad13f | 903 | x->props.trailer_len = align + 1 + crypto_aead_authsize(aead); |
1da177e4 LT |
904 | |
905 | error: | |
38320c70 | 906 | return err; |
1da177e4 LT |
907 | } |
908 | ||
d5860c5c SK |
909 | static int esp6_rcv_cb(struct sk_buff *skb, int err) |
910 | { | |
911 | return 0; | |
912 | } | |
913 | ||
cc24beca | 914 | static const struct xfrm_type esp6_type = { |
1da177e4 | 915 | .description = "ESP6", |
cc24beca IM |
916 | .owner = THIS_MODULE, |
917 | .proto = IPPROTO_ESP, | |
436a0a40 | 918 | .flags = XFRM_TYPE_REPLAY_PROT, |
1da177e4 LT |
919 | .init_state = esp6_init_state, |
920 | .destructor = esp6_destroy, | |
c5c25238 | 921 | .get_mtu = esp6_get_mtu, |
1da177e4 | 922 | .input = esp6_input, |
aee5adb4 MN |
923 | .output = esp6_output, |
924 | .hdr_offset = xfrm6_find_1stfragopt, | |
1da177e4 LT |
925 | }; |
926 | ||
d5860c5c SK |
927 | static struct xfrm6_protocol esp6_protocol = { |
928 | .handler = xfrm6_rcv, | |
929 | .cb_handler = esp6_rcv_cb, | |
1da177e4 | 930 | .err_handler = esp6_err, |
d5860c5c | 931 | .priority = 0, |
1da177e4 LT |
932 | }; |
933 | ||
934 | static int __init esp6_init(void) | |
935 | { | |
936 | if (xfrm_register_type(&esp6_type, AF_INET6) < 0) { | |
f3213831 | 937 | pr_info("%s: can't add xfrm type\n", __func__); |
1da177e4 LT |
938 | return -EAGAIN; |
939 | } | |
d5860c5c | 940 | if (xfrm6_protocol_register(&esp6_protocol, IPPROTO_ESP) < 0) { |
f3213831 | 941 | pr_info("%s: can't add protocol\n", __func__); |
1da177e4 LT |
942 | xfrm_unregister_type(&esp6_type, AF_INET6); |
943 | return -EAGAIN; | |
944 | } | |
945 | ||
946 | return 0; | |
947 | } | |
948 | ||
949 | static void __exit esp6_fini(void) | |
950 | { | |
d5860c5c | 951 | if (xfrm6_protocol_deregister(&esp6_protocol, IPPROTO_ESP) < 0) |
f3213831 | 952 | pr_info("%s: can't remove protocol\n", __func__); |
1da177e4 | 953 | if (xfrm_unregister_type(&esp6_type, AF_INET6) < 0) |
f3213831 | 954 | pr_info("%s: can't remove xfrm type\n", __func__); |
1da177e4 LT |
955 | } |
956 | ||
957 | module_init(esp6_init); | |
958 | module_exit(esp6_fini); | |
959 | ||
960 | MODULE_LICENSE("GPL"); | |
d3d6dd3a | 961 | MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_ESP); |