blob: dc1d8e871b24c621fc29de48fa053f9bc7a96383 [file] [log] [blame]
Herbert Xu07d4ee52006-08-20 14:24:50 +10001#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/module.h>
3#include <net/ip.h>
4#include <net/xfrm.h>
5#include <net/ah.h>
6#include <linux/crypto.h>
7#include <linux/pfkeyv2.h>
8#include <net/icmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -02009#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <asm/scatterlist.h>
11
12
13/* Clear mutable options and find final destination to substitute
14 * into IP header for icv calculation. Options are already checked
15 * for validity, so paranoia is not required. */
16
Al Virod5a0a1e2006-11-08 00:23:14 -080017static int ip_clear_mutable_options(struct iphdr *iph, __be32 *daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018{
19 unsigned char * optptr = (unsigned char*)(iph+1);
20 int l = iph->ihl*4 - sizeof(struct iphdr);
21 int optlen;
22
23 while (l > 0) {
24 switch (*optptr) {
25 case IPOPT_END:
26 return 0;
27 case IPOPT_NOOP:
28 l--;
29 optptr++;
30 continue;
31 }
32 optlen = optptr[1];
33 if (optlen<2 || optlen>l)
34 return -EINVAL;
35 switch (*optptr) {
36 case IPOPT_SEC:
37 case 0x85: /* Some "Extended Security" crap. */
Paul Moore11a03f72006-08-03 16:46:20 -070038 case IPOPT_CIPSO:
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 case IPOPT_RA:
40 case 0x80|21: /* RFC1770 */
41 break;
42 case IPOPT_LSRR:
43 case IPOPT_SSRR:
44 if (optlen < 6)
45 return -EINVAL;
46 memcpy(daddr, optptr+optlen-4, 4);
47 /* Fall through */
48 default:
Nick Bowler96fe1c02007-08-22 12:33:51 -070049 memset(optptr, 0, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 }
51 l -= optlen;
52 optptr += optlen;
53 }
54 return 0;
55}
56
57static int ah_output(struct xfrm_state *x, struct sk_buff *skb)
58{
59 int err;
60 struct iphdr *iph, *top_iph;
61 struct ip_auth_hdr *ah;
62 struct ah_data *ahp;
63 union {
64 struct iphdr iph;
65 char buf[60];
66 } tmp_iph;
67
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070068 top_iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 iph = &tmp_iph.iph;
70
71 iph->tos = top_iph->tos;
72 iph->ttl = top_iph->ttl;
73 iph->frag_off = top_iph->frag_off;
74
75 if (top_iph->ihl != 5) {
76 iph->daddr = top_iph->daddr;
77 memcpy(iph+1, top_iph+1, top_iph->ihl*4 - sizeof(struct iphdr));
78 err = ip_clear_mutable_options(top_iph, &top_iph->daddr);
79 if (err)
80 goto error;
81 }
82
83 ah = (struct ip_auth_hdr *)((char *)top_iph+top_iph->ihl*4);
84 ah->nexthdr = top_iph->protocol;
85
86 top_iph->tos = 0;
87 top_iph->tot_len = htons(skb->len);
88 top_iph->frag_off = 0;
89 top_iph->ttl = 0;
90 top_iph->protocol = IPPROTO_AH;
91 top_iph->check = 0;
92
93 ahp = x->data;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090094 ah->hdrlen = (XFRM_ALIGN8(sizeof(struct ip_auth_hdr) +
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 ahp->icv_trunc_len) >> 2) - 2;
96
97 ah->reserved = 0;
98 ah->spi = x->id.spi;
99 ah->seq_no = htonl(++x->replay.oseq);
Jamal Hadi Salim9500e8a2006-03-20 19:15:29 -0800100 xfrm_aevent_doreplay(x);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000101 err = ah_mac_digest(ahp, skb, ah->auth_data);
102 if (err)
103 goto error;
104 memcpy(ah->auth_data, ahp->work_icv, ahp->icv_trunc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 top_iph->tos = iph->tos;
107 top_iph->ttl = iph->ttl;
108 top_iph->frag_off = iph->frag_off;
109 if (top_iph->ihl != 5) {
110 top_iph->daddr = iph->daddr;
111 memcpy(top_iph+1, iph+1, top_iph->ihl*4 - sizeof(struct iphdr));
112 }
113
114 ip_send_check(top_iph);
115
116 err = 0;
117
118error:
119 return err;
120}
121
Herbert Xue6956332006-04-01 00:52:46 -0800122static int ah_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 int ah_hlen;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700125 int ihl;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000126 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 struct iphdr *iph;
128 struct ip_auth_hdr *ah;
129 struct ah_data *ahp;
130 char work_buf[60];
131
132 if (!pskb_may_pull(skb, sizeof(struct ip_auth_hdr)))
133 goto out;
134
135 ah = (struct ip_auth_hdr*)skb->data;
136 ahp = x->data;
137 ah_hlen = (ah->hdrlen + 2) << 2;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (ah_hlen != XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + ahp->icv_full_len) &&
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900140 ah_hlen != XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + ahp->icv_trunc_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 goto out;
142
143 if (!pskb_may_pull(skb, ah_hlen))
144 goto out;
145
146 /* We are going to _remove_ AH header to keep sockets happy,
147 * so... Later this can change. */
148 if (skb_cloned(skb) &&
149 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
150 goto out;
151
152 skb->ip_summed = CHECKSUM_NONE;
153
154 ah = (struct ip_auth_hdr*)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700155 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700157 ihl = skb->data - skb_network_header(skb);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700158 memcpy(work_buf, iph, ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 iph->ttl = 0;
161 iph->tos = 0;
162 iph->frag_off = 0;
163 iph->check = 0;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700164 if (ihl > sizeof(*iph)) {
Al Virod5a0a1e2006-11-08 00:23:14 -0800165 __be32 dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (ip_clear_mutable_options(iph, &dummy))
167 goto out;
168 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900169 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 u8 auth_data[MAX_AH_AUTH_LEN];
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700173 skb_push(skb, ihl);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000174 err = ah_mac_digest(ahp, skb, ah->auth_data);
175 if (err)
176 goto out;
177 err = -EINVAL;
178 if (memcmp(ahp->work_icv, auth_data, ahp->icv_trunc_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 x->stats.integrity_failed++;
180 goto out;
181 }
182 }
183 ((struct iphdr*)work_buf)->protocol = ah->nexthdr;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700184 skb->network_header += ah_hlen;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300185 memcpy(skb_network_header(skb), work_buf, ihl);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700186 skb->transport_header = skb->network_header;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700187 __skb_pull(skb, ah_hlen + ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 return 0;
190
191out:
Herbert Xu07d4ee52006-08-20 14:24:50 +1000192 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195static void ah4_err(struct sk_buff *skb, u32 info)
196{
197 struct iphdr *iph = (struct iphdr*)skb->data;
198 struct ip_auth_hdr *ah = (struct ip_auth_hdr*)(skb->data+(iph->ihl<<2));
199 struct xfrm_state *x;
200
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300201 if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH ||
202 icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return;
204
205 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, ah->spi, IPPROTO_AH, AF_INET);
206 if (!x)
207 return;
208 printk(KERN_DEBUG "pmtu discovery on SA AH/%08x/%08x\n",
209 ntohl(ah->spi), ntohl(iph->daddr));
210 xfrm_state_put(x);
211}
212
Herbert Xu72cb6962005-06-20 13:18:08 -0700213static int ah_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 struct ah_data *ahp = NULL;
216 struct xfrm_algo_desc *aalg_desc;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000217 struct crypto_hash *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 if (!x->aalg)
220 goto error;
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (x->encap)
223 goto error;
224
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700225 ahp = kzalloc(sizeof(*ahp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (ahp == NULL)
227 return -ENOMEM;
228
Herbert Xu07d4ee52006-08-20 14:24:50 +1000229 tfm = crypto_alloc_hash(x->aalg->alg_name, 0, CRYPTO_ALG_ASYNC);
230 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 goto error;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000232
233 ahp->tfm = tfm;
Herbert Xubc31d3b2007-10-08 17:14:34 -0700234 if (crypto_hash_setkey(tfm, x->aalg->alg_key,
235 (x->aalg->alg_key_len + 7) / 8))
Herbert Xu07d4ee52006-08-20 14:24:50 +1000236 goto error;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /*
239 * Lookup the algorithm description maintained by xfrm_algo,
240 * verify crypto transform properties, and store information
241 * we need for AH processing. This lookup cannot fail here
Herbert Xu07d4ee52006-08-20 14:24:50 +1000242 * after a successful crypto_alloc_hash().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
244 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
245 BUG_ON(!aalg_desc);
246
247 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
Herbert Xu07d4ee52006-08-20 14:24:50 +1000248 crypto_hash_digestsize(tfm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 printk(KERN_INFO "AH: %s digestsize %u != %hu\n",
Herbert Xu07d4ee52006-08-20 14:24:50 +1000250 x->aalg->alg_name, crypto_hash_digestsize(tfm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 aalg_desc->uinfo.auth.icv_fullbits/8);
252 goto error;
253 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 ahp->icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
256 ahp->icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 BUG_ON(ahp->icv_trunc_len > MAX_AH_AUTH_LEN);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 ahp->work_icv = kmalloc(ahp->icv_full_len, GFP_KERNEL);
261 if (!ahp->work_icv)
262 goto error;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 x->props.header_len = XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + ahp->icv_trunc_len);
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700265 if (x->props.mode == XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 x->props.header_len += sizeof(struct iphdr);
267 x->data = ahp;
268
269 return 0;
270
271error:
272 if (ahp) {
Jesper Juhl573dbd92005-09-01 17:44:29 -0700273 kfree(ahp->work_icv);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000274 crypto_free_hash(ahp->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 kfree(ahp);
276 }
277 return -EINVAL;
278}
279
280static void ah_destroy(struct xfrm_state *x)
281{
282 struct ah_data *ahp = x->data;
283
284 if (!ahp)
285 return;
286
Jesper Juhl573dbd92005-09-01 17:44:29 -0700287 kfree(ahp->work_icv);
288 ahp->work_icv = NULL;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000289 crypto_free_hash(ahp->tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700290 ahp->tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 kfree(ahp);
292}
293
294
295static struct xfrm_type ah_type =
296{
297 .description = "AH4",
298 .owner = THIS_MODULE,
299 .proto = IPPROTO_AH,
300 .init_state = ah_init_state,
301 .destructor = ah_destroy,
302 .input = ah_input,
303 .output = ah_output
304};
305
306static struct net_protocol ah4_protocol = {
307 .handler = xfrm4_rcv,
308 .err_handler = ah4_err,
309 .no_policy = 1,
310};
311
312static int __init ah4_init(void)
313{
314 if (xfrm_register_type(&ah_type, AF_INET) < 0) {
315 printk(KERN_INFO "ip ah init: can't add xfrm type\n");
316 return -EAGAIN;
317 }
318 if (inet_add_protocol(&ah4_protocol, IPPROTO_AH) < 0) {
319 printk(KERN_INFO "ip ah init: can't add protocol\n");
320 xfrm_unregister_type(&ah_type, AF_INET);
321 return -EAGAIN;
322 }
323 return 0;
324}
325
326static void __exit ah4_fini(void)
327{
328 if (inet_del_protocol(&ah4_protocol, IPPROTO_AH) < 0)
329 printk(KERN_INFO "ip ah close: can't remove protocol\n");
330 if (xfrm_unregister_type(&ah_type, AF_INET) < 0)
331 printk(KERN_INFO "ip ah close: can't remove xfrm type\n");
332}
333
334module_init(ah4_init);
335module_exit(ah4_fini);
336MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700337MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_AH);