]>
Commit | Line | Data |
---|---|---|
07d4ee58 | 1 | #include <linux/err.h> |
1da177e4 LT |
2 | #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> | |
b7c6538c | 8 | #include <linux/spinlock.h> |
1da177e4 | 9 | #include <net/icmp.h> |
14c85021 | 10 | #include <net/protocol.h> |
1da177e4 LT |
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 | ||
d5a0a1e3 | 17 | static int ip_clear_mutable_options(struct iphdr *iph, __be32 *daddr) |
1da177e4 LT |
18 | { |
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. */ | |
11a03f78 | 38 | case IPOPT_CIPSO: |
1da177e4 LT |
39 | 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: | |
96fe1c02 | 49 | memset(optptr, 0, optlen); |
1da177e4 LT |
50 | } |
51 | l -= optlen; | |
52 | optptr += optlen; | |
53 | } | |
54 | return 0; | |
55 | } | |
56 | ||
57 | static 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 | ||
7b277b1a | 68 | skb_push(skb, -skb_network_offset(skb)); |
eddc9ec5 | 69 | top_iph = ip_hdr(skb); |
1da177e4 LT |
70 | iph = &tmp_iph.iph; |
71 | ||
72 | iph->tos = top_iph->tos; | |
73 | iph->ttl = top_iph->ttl; | |
74 | iph->frag_off = top_iph->frag_off; | |
75 | ||
76 | if (top_iph->ihl != 5) { | |
77 | iph->daddr = top_iph->daddr; | |
78 | memcpy(iph+1, top_iph+1, top_iph->ihl*4 - sizeof(struct iphdr)); | |
79 | err = ip_clear_mutable_options(top_iph, &top_iph->daddr); | |
80 | if (err) | |
81 | goto error; | |
82 | } | |
83 | ||
87bdc48d | 84 | ah = ip_auth_hdr(skb); |
37fedd3a HX |
85 | ah->nexthdr = *skb_mac_header(skb); |
86 | *skb_mac_header(skb) = IPPROTO_AH; | |
1da177e4 LT |
87 | |
88 | top_iph->tos = 0; | |
89 | top_iph->tot_len = htons(skb->len); | |
90 | top_iph->frag_off = 0; | |
91 | top_iph->ttl = 0; | |
1da177e4 LT |
92 | top_iph->check = 0; |
93 | ||
94 | ahp = x->data; | |
87bdc48d | 95 | ah->hdrlen = (XFRM_ALIGN8(sizeof(*ah) + ahp->icv_trunc_len) >> 2) - 2; |
1da177e4 LT |
96 | |
97 | ah->reserved = 0; | |
98 | ah->spi = x->id.spi; | |
436a0a40 | 99 | ah->seq_no = htonl(XFRM_SKB_CB(skb)->seq); |
b7c6538c HX |
100 | |
101 | spin_lock_bh(&x->lock); | |
07d4ee58 | 102 | err = ah_mac_digest(ahp, skb, ah->auth_data); |
b7c6538c HX |
103 | memcpy(ah->auth_data, ahp->work_icv, ahp->icv_trunc_len); |
104 | spin_unlock_bh(&x->lock); | |
105 | ||
07d4ee58 HX |
106 | if (err) |
107 | goto error; | |
1da177e4 LT |
108 | |
109 | top_iph->tos = iph->tos; | |
110 | top_iph->ttl = iph->ttl; | |
111 | top_iph->frag_off = iph->frag_off; | |
112 | if (top_iph->ihl != 5) { | |
113 | top_iph->daddr = iph->daddr; | |
114 | memcpy(top_iph+1, iph+1, top_iph->ihl*4 - sizeof(struct iphdr)); | |
115 | } | |
116 | ||
1da177e4 LT |
117 | err = 0; |
118 | ||
119 | error: | |
120 | return err; | |
121 | } | |
122 | ||
e695633e | 123 | static int ah_input(struct xfrm_state *x, struct sk_buff *skb) |
1da177e4 LT |
124 | { |
125 | int ah_hlen; | |
31a4ab93 | 126 | int ihl; |
631a6698 | 127 | int nexthdr; |
07d4ee58 | 128 | int err = -EINVAL; |
1da177e4 LT |
129 | struct iphdr *iph; |
130 | struct ip_auth_hdr *ah; | |
131 | struct ah_data *ahp; | |
132 | char work_buf[60]; | |
133 | ||
87bdc48d | 134 | if (!pskb_may_pull(skb, sizeof(*ah))) |
1da177e4 LT |
135 | goto out; |
136 | ||
87bdc48d | 137 | ah = (struct ip_auth_hdr *)skb->data; |
1da177e4 | 138 | ahp = x->data; |
631a6698 | 139 | nexthdr = ah->nexthdr; |
1da177e4 | 140 | ah_hlen = (ah->hdrlen + 2) << 2; |
e905a9ed | 141 | |
87bdc48d HX |
142 | if (ah_hlen != XFRM_ALIGN8(sizeof(*ah) + ahp->icv_full_len) && |
143 | ah_hlen != XFRM_ALIGN8(sizeof(*ah) + ahp->icv_trunc_len)) | |
1da177e4 LT |
144 | goto out; |
145 | ||
146 | if (!pskb_may_pull(skb, ah_hlen)) | |
147 | goto out; | |
148 | ||
149 | /* We are going to _remove_ AH header to keep sockets happy, | |
150 | * so... Later this can change. */ | |
151 | if (skb_cloned(skb) && | |
152 | pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) | |
153 | goto out; | |
154 | ||
155 | skb->ip_summed = CHECKSUM_NONE; | |
156 | ||
87bdc48d | 157 | ah = (struct ip_auth_hdr *)skb->data; |
eddc9ec5 | 158 | iph = ip_hdr(skb); |
1da177e4 | 159 | |
d56f90a7 | 160 | ihl = skb->data - skb_network_header(skb); |
31a4ab93 | 161 | memcpy(work_buf, iph, ihl); |
1da177e4 LT |
162 | |
163 | iph->ttl = 0; | |
164 | iph->tos = 0; | |
165 | iph->frag_off = 0; | |
166 | iph->check = 0; | |
31a4ab93 | 167 | if (ihl > sizeof(*iph)) { |
d5a0a1e3 | 168 | __be32 dummy; |
1da177e4 LT |
169 | if (ip_clear_mutable_options(iph, &dummy)) |
170 | goto out; | |
171 | } | |
0ebea8ef HX |
172 | |
173 | spin_lock(&x->lock); | |
e905a9ed | 174 | { |
1da177e4 | 175 | u8 auth_data[MAX_AH_AUTH_LEN]; |
e905a9ed | 176 | |
1da177e4 | 177 | memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len); |
31a4ab93 | 178 | skb_push(skb, ihl); |
07d4ee58 HX |
179 | err = ah_mac_digest(ahp, skb, ah->auth_data); |
180 | if (err) | |
0ebea8ef | 181 | goto unlock; |
9dd3245a | 182 | if (memcmp(ahp->work_icv, auth_data, ahp->icv_trunc_len)) |
668dc8af | 183 | err = -EBADMSG; |
1da177e4 | 184 | } |
0ebea8ef HX |
185 | unlock: |
186 | spin_unlock(&x->lock); | |
187 | ||
188 | if (err) | |
189 | goto out; | |
190 | ||
b0e380b1 | 191 | skb->network_header += ah_hlen; |
badff6d0 | 192 | memcpy(skb_network_header(skb), work_buf, ihl); |
b0e380b1 | 193 | skb->transport_header = skb->network_header; |
31a4ab93 | 194 | __skb_pull(skb, ah_hlen + ihl); |
1da177e4 | 195 | |
631a6698 | 196 | return nexthdr; |
1da177e4 LT |
197 | |
198 | out: | |
07d4ee58 | 199 | return err; |
1da177e4 LT |
200 | } |
201 | ||
202 | static void ah4_err(struct sk_buff *skb, u32 info) | |
203 | { | |
204 | struct iphdr *iph = (struct iphdr*)skb->data; | |
205 | struct ip_auth_hdr *ah = (struct ip_auth_hdr*)(skb->data+(iph->ihl<<2)); | |
206 | struct xfrm_state *x; | |
207 | ||
88c7664f ACM |
208 | if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH || |
209 | icmp_hdr(skb)->code != ICMP_FRAG_NEEDED) | |
1da177e4 LT |
210 | return; |
211 | ||
212 | x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, ah->spi, IPPROTO_AH, AF_INET); | |
213 | if (!x) | |
214 | return; | |
215 | printk(KERN_DEBUG "pmtu discovery on SA AH/%08x/%08x\n", | |
216 | ntohl(ah->spi), ntohl(iph->daddr)); | |
217 | xfrm_state_put(x); | |
218 | } | |
219 | ||
72cb6962 | 220 | static int ah_init_state(struct xfrm_state *x) |
1da177e4 LT |
221 | { |
222 | struct ah_data *ahp = NULL; | |
223 | struct xfrm_algo_desc *aalg_desc; | |
07d4ee58 | 224 | struct crypto_hash *tfm; |
1da177e4 LT |
225 | |
226 | if (!x->aalg) | |
227 | goto error; | |
228 | ||
1da177e4 LT |
229 | if (x->encap) |
230 | goto error; | |
231 | ||
0da974f4 | 232 | ahp = kzalloc(sizeof(*ahp), GFP_KERNEL); |
1da177e4 LT |
233 | if (ahp == NULL) |
234 | return -ENOMEM; | |
235 | ||
07d4ee58 HX |
236 | tfm = crypto_alloc_hash(x->aalg->alg_name, 0, CRYPTO_ALG_ASYNC); |
237 | if (IS_ERR(tfm)) | |
238 | goto error; | |
239 | ||
240 | ahp->tfm = tfm; | |
bc31d3b2 HX |
241 | if (crypto_hash_setkey(tfm, x->aalg->alg_key, |
242 | (x->aalg->alg_key_len + 7) / 8)) | |
1da177e4 | 243 | goto error; |
e905a9ed | 244 | |
1da177e4 LT |
245 | /* |
246 | * Lookup the algorithm description maintained by xfrm_algo, | |
247 | * verify crypto transform properties, and store information | |
248 | * we need for AH processing. This lookup cannot fail here | |
07d4ee58 | 249 | * after a successful crypto_alloc_hash(). |
1da177e4 LT |
250 | */ |
251 | aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0); | |
252 | BUG_ON(!aalg_desc); | |
253 | ||
254 | if (aalg_desc->uinfo.auth.icv_fullbits/8 != | |
07d4ee58 | 255 | crypto_hash_digestsize(tfm)) { |
1da177e4 | 256 | printk(KERN_INFO "AH: %s digestsize %u != %hu\n", |
07d4ee58 | 257 | x->aalg->alg_name, crypto_hash_digestsize(tfm), |
1da177e4 LT |
258 | aalg_desc->uinfo.auth.icv_fullbits/8); |
259 | goto error; | |
260 | } | |
e905a9ed | 261 | |
1da177e4 LT |
262 | ahp->icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8; |
263 | ahp->icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8; | |
e905a9ed | 264 | |
1da177e4 | 265 | BUG_ON(ahp->icv_trunc_len > MAX_AH_AUTH_LEN); |
e905a9ed | 266 | |
1da177e4 LT |
267 | ahp->work_icv = kmalloc(ahp->icv_full_len, GFP_KERNEL); |
268 | if (!ahp->work_icv) | |
269 | goto error; | |
e905a9ed | 270 | |
87bdc48d HX |
271 | x->props.header_len = XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + |
272 | ahp->icv_trunc_len); | |
7e49e6de | 273 | if (x->props.mode == XFRM_MODE_TUNNEL) |
1da177e4 LT |
274 | x->props.header_len += sizeof(struct iphdr); |
275 | x->data = ahp; | |
276 | ||
277 | return 0; | |
278 | ||
279 | error: | |
280 | if (ahp) { | |
573dbd95 | 281 | kfree(ahp->work_icv); |
07d4ee58 | 282 | crypto_free_hash(ahp->tfm); |
1da177e4 LT |
283 | kfree(ahp); |
284 | } | |
285 | return -EINVAL; | |
286 | } | |
287 | ||
288 | static void ah_destroy(struct xfrm_state *x) | |
289 | { | |
290 | struct ah_data *ahp = x->data; | |
291 | ||
292 | if (!ahp) | |
293 | return; | |
294 | ||
573dbd95 JJ |
295 | kfree(ahp->work_icv); |
296 | ahp->work_icv = NULL; | |
07d4ee58 | 297 | crypto_free_hash(ahp->tfm); |
573dbd95 | 298 | ahp->tfm = NULL; |
1da177e4 LT |
299 | kfree(ahp); |
300 | } | |
301 | ||
302 | ||
533cb5b0 | 303 | static const struct xfrm_type ah_type = |
1da177e4 LT |
304 | { |
305 | .description = "AH4", | |
306 | .owner = THIS_MODULE, | |
307 | .proto = IPPROTO_AH, | |
436a0a40 | 308 | .flags = XFRM_TYPE_REPLAY_PROT, |
1da177e4 LT |
309 | .init_state = ah_init_state, |
310 | .destructor = ah_destroy, | |
311 | .input = ah_input, | |
312 | .output = ah_output | |
313 | }; | |
314 | ||
315 | static struct net_protocol ah4_protocol = { | |
316 | .handler = xfrm4_rcv, | |
317 | .err_handler = ah4_err, | |
318 | .no_policy = 1, | |
319 | }; | |
320 | ||
321 | static int __init ah4_init(void) | |
322 | { | |
323 | if (xfrm_register_type(&ah_type, AF_INET) < 0) { | |
324 | printk(KERN_INFO "ip ah init: can't add xfrm type\n"); | |
325 | return -EAGAIN; | |
326 | } | |
327 | if (inet_add_protocol(&ah4_protocol, IPPROTO_AH) < 0) { | |
328 | printk(KERN_INFO "ip ah init: can't add protocol\n"); | |
329 | xfrm_unregister_type(&ah_type, AF_INET); | |
330 | return -EAGAIN; | |
331 | } | |
332 | return 0; | |
333 | } | |
334 | ||
335 | static void __exit ah4_fini(void) | |
336 | { | |
337 | if (inet_del_protocol(&ah4_protocol, IPPROTO_AH) < 0) | |
338 | printk(KERN_INFO "ip ah close: can't remove protocol\n"); | |
339 | if (xfrm_unregister_type(&ah_type, AF_INET) < 0) | |
340 | printk(KERN_INFO "ip ah close: can't remove xfrm type\n"); | |
341 | } | |
342 | ||
343 | module_init(ah4_init); | |
344 | module_exit(ah4_fini); | |
345 | MODULE_LICENSE("GPL"); | |
d3d6dd3a | 346 | MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_AH); |