blob: 36ed85bf2ad51cfd80bf374a54aa7e0815872997 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Joe Perchesafd465032012-03-12 07:03:32 +00002#define pr_fmt(fmt) "IPsec: " fmt
3
Sabrina Dubroca67df58a2017-05-03 16:57:57 +02004#include <crypto/algapi.h>
Steffen Klassertdff3bb02009-10-07 22:48:17 +00005#include <crypto/hash.h>
Herbert Xu07d4ee52006-08-20 14:24:50 +10006#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <net/ip.h>
10#include <net/xfrm.h>
11#include <net/ah.h>
12#include <linux/crypto.h>
13#include <linux/pfkeyv2.h>
Steffen Klassertdff3bb02009-10-07 22:48:17 +000014#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <net/icmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020016#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Steffen Klassertdff3bb02009-10-07 22:48:17 +000018struct ah_skb_cb {
19 struct xfrm_skb_cb xfrm;
20 void *tmp;
21};
22
23#define AH_SKB_CB(__skb) ((struct ah_skb_cb *)&((__skb)->cb[0]))
24
25static void *ah_alloc_tmp(struct crypto_ahash *ahash, int nfrags,
26 unsigned int size)
27{
28 unsigned int len;
29
30 len = size + crypto_ahash_digestsize(ahash) +
31 (crypto_ahash_alignmask(ahash) &
32 ~(crypto_tfm_ctx_alignment() - 1));
33
34 len = ALIGN(len, crypto_tfm_ctx_alignment());
35
36 len += sizeof(struct ahash_request) + crypto_ahash_reqsize(ahash);
37 len = ALIGN(len, __alignof__(struct scatterlist));
38
39 len += sizeof(struct scatterlist) * nfrags;
40
41 return kmalloc(len, GFP_ATOMIC);
42}
43
44static inline u8 *ah_tmp_auth(void *tmp, unsigned int offset)
45{
46 return tmp + offset;
47}
48
49static inline u8 *ah_tmp_icv(struct crypto_ahash *ahash, void *tmp,
50 unsigned int offset)
51{
52 return PTR_ALIGN((u8 *)tmp + offset, crypto_ahash_alignmask(ahash) + 1);
53}
54
55static inline struct ahash_request *ah_tmp_req(struct crypto_ahash *ahash,
56 u8 *icv)
57{
58 struct ahash_request *req;
59
60 req = (void *)PTR_ALIGN(icv + crypto_ahash_digestsize(ahash),
61 crypto_tfm_ctx_alignment());
62
63 ahash_request_set_tfm(req, ahash);
64
65 return req;
66}
67
68static inline struct scatterlist *ah_req_sg(struct crypto_ahash *ahash,
69 struct ahash_request *req)
70{
71 return (void *)ALIGN((unsigned long)(req + 1) +
72 crypto_ahash_reqsize(ahash),
73 __alignof__(struct scatterlist));
74}
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* Clear mutable options and find final destination to substitute
77 * into IP header for icv calculation. Options are already checked
78 * for validity, so paranoia is not required. */
79
Eric Dumazetb71d1d42011-04-22 04:53:02 +000080static int ip_clear_mutable_options(const struct iphdr *iph, __be32 *daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Daniel Baluta5e73ea12012-04-15 01:34:41 +000082 unsigned char *optptr = (unsigned char *)(iph+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 int l = iph->ihl*4 - sizeof(struct iphdr);
84 int optlen;
85
86 while (l > 0) {
87 switch (*optptr) {
88 case IPOPT_END:
89 return 0;
90 case IPOPT_NOOP:
91 l--;
92 optptr++;
93 continue;
94 }
95 optlen = optptr[1];
96 if (optlen<2 || optlen>l)
97 return -EINVAL;
98 switch (*optptr) {
99 case IPOPT_SEC:
100 case 0x85: /* Some "Extended Security" crap. */
Paul Moore11a03f72006-08-03 16:46:20 -0700101 case IPOPT_CIPSO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 case IPOPT_RA:
103 case 0x80|21: /* RFC1770 */
104 break;
105 case IPOPT_LSRR:
106 case IPOPT_SSRR:
107 if (optlen < 6)
108 return -EINVAL;
109 memcpy(daddr, optptr+optlen-4, 4);
Joe Perchesa8eceea2020-03-12 15:50:22 -0700110 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 default:
Nick Bowler96fe1c02007-08-22 12:33:51 -0700112 memset(optptr, 0, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114 l -= optlen;
115 optptr += optlen;
116 }
117 return 0;
118}
119
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000120static void ah_output_done(struct crypto_async_request *base, int err)
121{
122 u8 *icv;
123 struct iphdr *iph;
124 struct sk_buff *skb = base->data;
125 struct xfrm_state *x = skb_dst(skb)->xfrm;
126 struct ah_data *ahp = x->data;
127 struct iphdr *top_iph = ip_hdr(skb);
128 struct ip_auth_hdr *ah = ip_auth_hdr(skb);
129 int ihl = ip_hdrlen(skb);
130
131 iph = AH_SKB_CB(skb)->tmp;
132 icv = ah_tmp_icv(ahp->ahash, iph, ihl);
133 memcpy(ah->auth_data, icv, ahp->icv_trunc_len);
134
135 top_iph->tos = iph->tos;
136 top_iph->ttl = iph->ttl;
137 top_iph->frag_off = iph->frag_off;
138 if (top_iph->ihl != 5) {
139 top_iph->daddr = iph->daddr;
140 memcpy(top_iph+1, iph+1, top_iph->ihl*4 - sizeof(struct iphdr));
141 }
142
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000143 kfree(AH_SKB_CB(skb)->tmp);
Evan Nimmoc7a175a2021-03-02 08:00:04 +1300144 xfrm_output_resume(skb->sk, skb, err);
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static int ah_output(struct xfrm_state *x, struct sk_buff *skb)
148{
149 int err;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000150 int nfrags;
151 int ihl;
152 u8 *icv;
153 struct sk_buff *trailer;
154 struct crypto_ahash *ahash;
155 struct ahash_request *req;
156 struct scatterlist *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct iphdr *iph, *top_iph;
158 struct ip_auth_hdr *ah;
159 struct ah_data *ahp;
Fan Dud4d573d2014-01-18 09:54:24 +0800160 int seqhi_len = 0;
161 __be32 *seqhi;
162 int sglists = 0;
163 struct scatterlist *seqhisg;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000164
165 ahp = x->data;
166 ahash = ahp->ahash;
167
168 if ((err = skb_cow_data(skb, 0, &trailer)) < 0)
169 goto out;
170 nfrags = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Herbert Xu7b277b12007-10-10 15:44:06 -0700172 skb_push(skb, -skb_network_offset(skb));
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000173 ah = ip_auth_hdr(skb);
174 ihl = ip_hdrlen(skb);
175
Fan Dud4d573d2014-01-18 09:54:24 +0800176 if (x->props.flags & XFRM_STATE_ESN) {
177 sglists = 1;
178 seqhi_len = sizeof(*seqhi);
179 }
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000180 err = -ENOMEM;
Fan Dud4d573d2014-01-18 09:54:24 +0800181 iph = ah_alloc_tmp(ahash, nfrags + sglists, ihl + seqhi_len);
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000182 if (!iph)
183 goto out;
Fan Dud4d573d2014-01-18 09:54:24 +0800184 seqhi = (__be32 *)((char *)iph + ihl);
185 icv = ah_tmp_icv(ahash, seqhi, seqhi_len);
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000186 req = ah_tmp_req(ahash, icv);
187 sg = ah_req_sg(ahash, req);
Fan Dud4d573d2014-01-18 09:54:24 +0800188 seqhisg = sg + nfrags;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000189
190 memset(ah->auth_data, 0, ahp->icv_trunc_len);
191
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700192 top_iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 iph->tos = top_iph->tos;
195 iph->ttl = top_iph->ttl;
196 iph->frag_off = top_iph->frag_off;
197
198 if (top_iph->ihl != 5) {
199 iph->daddr = top_iph->daddr;
200 memcpy(iph+1, top_iph+1, top_iph->ihl*4 - sizeof(struct iphdr));
201 err = ip_clear_mutable_options(top_iph, &top_iph->daddr);
202 if (err)
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000203 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
Herbert Xu37fedd32007-10-10 15:44:44 -0700206 ah->nexthdr = *skb_mac_header(skb);
207 *skb_mac_header(skb) = IPPROTO_AH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 top_iph->tos = 0;
210 top_iph->tot_len = htons(skb->len);
211 top_iph->frag_off = 0;
212 top_iph->ttl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 top_iph->check = 0;
214
Nicolas Dichtelfa9921e2011-02-02 06:29:02 +0000215 if (x->props.flags & XFRM_STATE_ALIGN4)
216 ah->hdrlen = (XFRM_ALIGN4(sizeof(*ah) + ahp->icv_trunc_len) >> 2) - 2;
217 else
218 ah->hdrlen = (XFRM_ALIGN8(sizeof(*ah) + ahp->icv_trunc_len) >> 2) - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 ah->reserved = 0;
221 ah->spi = x->id.spi;
Steffen Klassert1ce36442011-03-08 00:06:31 +0000222 ah->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output.low);
Herbert Xub7c65382007-10-09 13:33:35 -0700223
Fan Dud4d573d2014-01-18 09:54:24 +0800224 sg_init_table(sg, nfrags + sglists);
Jason A. Donenfeld3f297702017-06-04 04:16:23 +0200225 err = skb_to_sgvec_nomark(skb, sg, 0, skb->len);
226 if (unlikely(err < 0))
227 goto out_free;
Herbert Xub7c65382007-10-09 13:33:35 -0700228
Fan Dud4d573d2014-01-18 09:54:24 +0800229 if (x->props.flags & XFRM_STATE_ESN) {
230 /* Attach seqhi sg right after packet payload */
231 *seqhi = htonl(XFRM_SKB_CB(skb)->seq.output.hi);
232 sg_set_buf(seqhisg, seqhi, seqhi_len);
233 }
234 ahash_request_set_crypt(req, sg, icv, skb->len + seqhi_len);
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000235 ahash_request_set_callback(req, 0, ah_output_done, skb);
236
237 AH_SKB_CB(skb)->tmp = iph;
238
239 err = crypto_ahash_digest(req);
240 if (err) {
241 if (err == -EINPROGRESS)
242 goto out;
243
Gilad Ben-Yossef068c2e72017-10-18 08:00:35 +0100244 if (err == -ENOSPC)
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000245 err = NET_XMIT_DROP;
246 goto out_free;
247 }
248
249 memcpy(ah->auth_data, icv, ahp->icv_trunc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 top_iph->tos = iph->tos;
252 top_iph->ttl = iph->ttl;
253 top_iph->frag_off = iph->frag_off;
254 if (top_iph->ihl != 5) {
255 top_iph->daddr = iph->daddr;
256 memcpy(top_iph+1, iph+1, top_iph->ihl*4 - sizeof(struct iphdr));
257 }
258
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000259out_free:
260 kfree(iph);
261out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return err;
263}
264
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000265static void ah_input_done(struct crypto_async_request *base, int err)
266{
267 u8 *auth_data;
268 u8 *icv;
269 struct iphdr *work_iph;
270 struct sk_buff *skb = base->data;
271 struct xfrm_state *x = xfrm_input_state(skb);
272 struct ah_data *ahp = x->data;
273 struct ip_auth_hdr *ah = ip_auth_hdr(skb);
274 int ihl = ip_hdrlen(skb);
275 int ah_hlen = (ah->hdrlen + 2) << 2;
276
Gilad Ben-Yossefebd89a22017-01-16 13:17:55 +0200277 if (err)
278 goto out;
279
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000280 work_iph = AH_SKB_CB(skb)->tmp;
281 auth_data = ah_tmp_auth(work_iph, ihl);
282 icv = ah_tmp_icv(ahp->ahash, auth_data, ahp->icv_trunc_len);
283
Sabrina Dubroca67df58a2017-05-03 16:57:57 +0200284 err = crypto_memneq(icv, auth_data, ahp->icv_trunc_len) ? -EBADMSG : 0;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000285 if (err)
286 goto out;
287
Nick Bowlerb7ea81a2011-11-08 12:12:45 +0000288 err = ah->nexthdr;
289
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000290 skb->network_header += ah_hlen;
291 memcpy(skb_network_header(skb), work_iph, ihl);
292 __skb_pull(skb, ah_hlen + ihl);
Li RongQing7143dfa2012-12-28 16:07:16 +0800293
294 if (x->props.mode == XFRM_MODE_TUNNEL)
295 skb_reset_transport_header(skb);
296 else
297 skb_set_transport_header(skb, -ihl);
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000298out:
299 kfree(AH_SKB_CB(skb)->tmp);
300 xfrm_input_resume(skb, err);
301}
302
Herbert Xue6956332006-04-01 00:52:46 -0800303static int ah_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 int ah_hlen;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700306 int ihl;
Herbert Xu631a66982007-10-10 15:46:21 -0700307 int nexthdr;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000308 int nfrags;
309 u8 *auth_data;
310 u8 *icv;
311 struct sk_buff *trailer;
312 struct crypto_ahash *ahash;
313 struct ahash_request *req;
314 struct scatterlist *sg;
315 struct iphdr *iph, *work_iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct ip_auth_hdr *ah;
317 struct ah_data *ahp;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000318 int err = -ENOMEM;
Fan Dud8b2a862014-01-18 09:54:25 +0800319 int seqhi_len = 0;
320 __be32 *seqhi;
321 int sglists = 0;
322 struct scatterlist *seqhisg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Herbert Xu87bdc482007-10-10 15:45:25 -0700324 if (!pskb_may_pull(skb, sizeof(*ah)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 goto out;
326
Herbert Xu87bdc482007-10-10 15:45:25 -0700327 ah = (struct ip_auth_hdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 ahp = x->data;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000329 ahash = ahp->ahash;
330
Herbert Xu631a66982007-10-10 15:46:21 -0700331 nexthdr = ah->nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 ah_hlen = (ah->hdrlen + 2) << 2;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900333
Nicolas Dichtelfa9921e2011-02-02 06:29:02 +0000334 if (x->props.flags & XFRM_STATE_ALIGN4) {
335 if (ah_hlen != XFRM_ALIGN4(sizeof(*ah) + ahp->icv_full_len) &&
336 ah_hlen != XFRM_ALIGN4(sizeof(*ah) + ahp->icv_trunc_len))
337 goto out;
338 } else {
339 if (ah_hlen != XFRM_ALIGN8(sizeof(*ah) + ahp->icv_full_len) &&
340 ah_hlen != XFRM_ALIGN8(sizeof(*ah) + ahp->icv_trunc_len))
341 goto out;
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if (!pskb_may_pull(skb, ah_hlen))
345 goto out;
346
347 /* We are going to _remove_ AH header to keep sockets happy,
348 * so... Later this can change. */
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000349 if (skb_unclone(skb, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 goto out;
351
352 skb->ip_summed = CHECKSUM_NONE;
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000355 if ((err = skb_cow_data(skb, 0, &trailer)) < 0)
356 goto out;
357 nfrags = err;
358
Dang Hongwu4b0ef1f22011-01-11 07:13:33 +0000359 ah = (struct ip_auth_hdr *)skb->data;
360 iph = ip_hdr(skb);
361 ihl = ip_hdrlen(skb);
362
Fan Dud8b2a862014-01-18 09:54:25 +0800363 if (x->props.flags & XFRM_STATE_ESN) {
364 sglists = 1;
365 seqhi_len = sizeof(*seqhi);
366 }
367
368 work_iph = ah_alloc_tmp(ahash, nfrags + sglists, ihl +
369 ahp->icv_trunc_len + seqhi_len);
David S. Miller94c10f02015-08-25 13:38:50 -0700370 if (!work_iph) {
371 err = -ENOMEM;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000372 goto out;
David S. Miller94c10f02015-08-25 13:38:50 -0700373 }
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000374
Fan Dud8b2a862014-01-18 09:54:25 +0800375 seqhi = (__be32 *)((char *)work_iph + ihl);
376 auth_data = ah_tmp_auth(seqhi, seqhi_len);
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000377 icv = ah_tmp_icv(ahash, auth_data, ahp->icv_trunc_len);
378 req = ah_tmp_req(ahash, icv);
379 sg = ah_req_sg(ahash, req);
Fan Dud8b2a862014-01-18 09:54:25 +0800380 seqhisg = sg + nfrags;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000381
382 memcpy(work_iph, iph, ihl);
383 memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len);
384 memset(ah->auth_data, 0, ahp->icv_trunc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 iph->ttl = 0;
387 iph->tos = 0;
388 iph->frag_off = 0;
389 iph->check = 0;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700390 if (ihl > sizeof(*iph)) {
Al Virod5a0a1e2006-11-08 00:23:14 -0800391 __be32 dummy;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000392 err = ip_clear_mutable_options(iph, &dummy);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000393 if (err)
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000394 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Herbert Xu0ebea8e2007-11-13 21:45:58 -0800396
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000397 skb_push(skb, ihl);
398
Fan Dud8b2a862014-01-18 09:54:25 +0800399 sg_init_table(sg, nfrags + sglists);
Jason A. Donenfeld3f297702017-06-04 04:16:23 +0200400 err = skb_to_sgvec_nomark(skb, sg, 0, skb->len);
401 if (unlikely(err < 0))
402 goto out_free;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000403
Fan Dud8b2a862014-01-18 09:54:25 +0800404 if (x->props.flags & XFRM_STATE_ESN) {
405 /* Attach seqhi sg right after packet payload */
406 *seqhi = XFRM_SKB_CB(skb)->seq.input.hi;
407 sg_set_buf(seqhisg, seqhi, seqhi_len);
408 }
409 ahash_request_set_crypt(req, sg, icv, skb->len + seqhi_len);
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000410 ahash_request_set_callback(req, 0, ah_input_done, skb);
411
412 AH_SKB_CB(skb)->tmp = work_iph;
413
414 err = crypto_ahash_digest(req);
415 if (err) {
416 if (err == -EINPROGRESS)
417 goto out;
418
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000419 goto out_free;
420 }
421
Sabrina Dubroca67df58a2017-05-03 16:57:57 +0200422 err = crypto_memneq(icv, auth_data, ahp->icv_trunc_len) ? -EBADMSG : 0;
Herbert Xu0ebea8e2007-11-13 21:45:58 -0800423 if (err)
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000424 goto out_free;
Herbert Xu0ebea8e2007-11-13 21:45:58 -0800425
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700426 skb->network_header += ah_hlen;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000427 memcpy(skb_network_header(skb), work_iph, ihl);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700428 __skb_pull(skb, ah_hlen + ihl);
Li RongQing7143dfa2012-12-28 16:07:16 +0800429 if (x->props.mode == XFRM_MODE_TUNNEL)
430 skb_reset_transport_header(skb);
431 else
432 skb_set_transport_header(skb, -ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000434 err = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000436out_free:
437 kfree (work_iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438out:
Herbert Xu07d4ee52006-08-20 14:24:50 +1000439 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Steffen Klasserte5b56452014-02-21 08:41:09 +0100442static int ah4_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Alexey Dobriyan4fb236b2008-11-25 17:59:27 -0800444 struct net *net = dev_net(skb->dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000445 const struct iphdr *iph = (const struct iphdr *)skb->data;
Jianjun Kongd93191002008-11-03 00:23:42 -0800446 struct ip_auth_hdr *ah = (struct ip_auth_hdr *)(skb->data+(iph->ihl<<2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct xfrm_state *x;
448
David S. Miller55be7a92012-07-11 21:27:49 -0700449 switch (icmp_hdr(skb)->type) {
450 case ICMP_DEST_UNREACH:
451 if (icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
Steffen Klasserte5b56452014-02-21 08:41:09 +0100452 return 0;
David S. Miller55be7a92012-07-11 21:27:49 -0700453 case ICMP_REDIRECT:
454 break;
455 default:
Steffen Klasserte5b56452014-02-21 08:41:09 +0100456 return 0;
David S. Miller55be7a92012-07-11 21:27:49 -0700457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000459 x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr,
460 ah->spi, IPPROTO_AH, AF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (!x)
Steffen Klasserte5b56452014-02-21 08:41:09 +0100462 return 0;
David S. Miller55be7a92012-07-11 21:27:49 -0700463
Timo Teräs387aa652013-05-27 20:46:31 +0000464 if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH)
Maciej Żenczykowskid888f392018-09-25 20:56:26 -0700465 ipv4_update_pmtu(skb, net, info, 0, IPPROTO_AH);
Timo Teräs387aa652013-05-27 20:46:31 +0000466 else
Maciej Żenczykowski1042caa2018-09-25 20:56:27 -0700467 ipv4_redirect(skb, net, 0, IPPROTO_AH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 xfrm_state_put(x);
Steffen Klasserte5b56452014-02-21 08:41:09 +0100469
470 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Herbert Xu72cb6962005-06-20 13:18:08 -0700473static int ah_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct ah_data *ahp = NULL;
476 struct xfrm_algo_desc *aalg_desc;
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000477 struct crypto_ahash *ahash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if (!x->aalg)
480 goto error;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (x->encap)
483 goto error;
484
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700485 ahp = kzalloc(sizeof(*ahp), GFP_KERNEL);
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000486 if (!ahp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return -ENOMEM;
488
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000489 ahash = crypto_alloc_ahash(x->aalg->alg_name, 0, 0);
490 if (IS_ERR(ahash))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 goto error;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000492
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000493 ahp->ahash = ahash;
494 if (crypto_ahash_setkey(ahash, x->aalg->alg_key,
495 (x->aalg->alg_key_len + 7) / 8))
Herbert Xu07d4ee52006-08-20 14:24:50 +1000496 goto error;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
499 * Lookup the algorithm description maintained by xfrm_algo,
500 * verify crypto transform properties, and store information
501 * we need for AH processing. This lookup cannot fail here
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000502 * after a successful crypto_alloc_ahash().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 */
504 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
505 BUG_ON(!aalg_desc);
506
507 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000508 crypto_ahash_digestsize(ahash)) {
Joe Perchesafd465032012-03-12 07:03:32 +0000509 pr_info("%s: %s digestsize %u != %hu\n",
510 __func__, x->aalg->alg_name,
511 crypto_ahash_digestsize(ahash),
512 aalg_desc->uinfo.auth.icv_fullbits / 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 goto error;
514 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 ahp->icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
Martin Willi8f8a0882009-11-25 00:29:53 +0000517 ahp->icv_trunc_len = x->aalg->alg_trunc_len/8;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900518
Nicolas Dichtelfa9921e2011-02-02 06:29:02 +0000519 if (x->props.flags & XFRM_STATE_ALIGN4)
520 x->props.header_len = XFRM_ALIGN4(sizeof(struct ip_auth_hdr) +
521 ahp->icv_trunc_len);
522 else
523 x->props.header_len = XFRM_ALIGN8(sizeof(struct ip_auth_hdr) +
524 ahp->icv_trunc_len);
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700525 if (x->props.mode == XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 x->props.header_len += sizeof(struct iphdr);
527 x->data = ahp;
528
529 return 0;
530
531error:
532 if (ahp) {
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000533 crypto_free_ahash(ahp->ahash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 kfree(ahp);
535 }
536 return -EINVAL;
537}
538
539static void ah_destroy(struct xfrm_state *x)
540{
541 struct ah_data *ahp = x->data;
542
543 if (!ahp)
544 return;
545
Steffen Klassertdff3bb02009-10-07 22:48:17 +0000546 crypto_free_ahash(ahp->ahash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 kfree(ahp);
548}
549
Steffen Klasserte5b56452014-02-21 08:41:09 +0100550static int ah4_rcv_cb(struct sk_buff *skb, int err)
551{
552 return 0;
553}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Eric Dumazet533cb5b2008-01-30 19:11:50 -0800555static const struct xfrm_type ah_type =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 .description = "AH4",
558 .owner = THIS_MODULE,
559 .proto = IPPROTO_AH,
Herbert Xu436a0a42007-10-08 17:25:53 -0700560 .flags = XFRM_TYPE_REPLAY_PROT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 .init_state = ah_init_state,
562 .destructor = ah_destroy,
563 .input = ah_input,
564 .output = ah_output
565};
566
Steffen Klasserte5b56452014-02-21 08:41:09 +0100567static struct xfrm4_protocol ah4_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 .handler = xfrm4_rcv,
Steffen Klasserte5b56452014-02-21 08:41:09 +0100569 .input_handler = xfrm_input,
570 .cb_handler = ah4_rcv_cb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 .err_handler = ah4_err,
Steffen Klasserte5b56452014-02-21 08:41:09 +0100572 .priority = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573};
574
575static int __init ah4_init(void)
576{
577 if (xfrm_register_type(&ah_type, AF_INET) < 0) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000578 pr_info("%s: can't add xfrm type\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return -EAGAIN;
580 }
Steffen Klasserte5b56452014-02-21 08:41:09 +0100581 if (xfrm4_protocol_register(&ah4_protocol, IPPROTO_AH) < 0) {
Joe Perches058bd4d2012-03-11 18:36:11 +0000582 pr_info("%s: can't add protocol\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 xfrm_unregister_type(&ah_type, AF_INET);
584 return -EAGAIN;
585 }
586 return 0;
587}
588
589static void __exit ah4_fini(void)
590{
Steffen Klasserte5b56452014-02-21 08:41:09 +0100591 if (xfrm4_protocol_deregister(&ah4_protocol, IPPROTO_AH) < 0)
Joe Perches058bd4d2012-03-11 18:36:11 +0000592 pr_info("%s: can't remove protocol\n", __func__);
Florian Westphal4f518e82019-05-03 17:46:19 +0200593 xfrm_unregister_type(&ah_type, AF_INET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596module_init(ah4_init);
597module_exit(ah4_fini);
598MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700599MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_AH);