VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / net / ipv4 / ah4.c
1 #include <linux/config.h>
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>
8 #include <net/icmp.h>
9 #include <asm/scatterlist.h>
10
11
12 /* Clear mutable options and find final destination to substitute
13  * into IP header for icv calculation. Options are already checked
14  * for validity, so paranoia is not required. */
15
16 static int ip_clear_mutable_options(struct iphdr *iph, u32 *daddr)
17 {
18         unsigned char * optptr = (unsigned char*)(iph+1);
19         int  l = iph->ihl*4 - sizeof(struct iphdr);
20         int  optlen;
21
22         while (l > 0) {
23                 switch (*optptr) {
24                 case IPOPT_END:
25                         return 0;
26                 case IPOPT_NOOP:
27                         l--;
28                         optptr++;
29                         continue;
30                 }
31                 optlen = optptr[1];
32                 if (optlen<2 || optlen>l)
33                         return -EINVAL;
34                 switch (*optptr) {
35                 case IPOPT_SEC:
36                 case 0x85:      /* Some "Extended Security" crap. */
37                 case 0x86:      /* Another "Commercial Security" crap. */
38                 case IPOPT_RA:
39                 case 0x80|21:   /* RFC1770 */
40                         break;
41                 case IPOPT_LSRR:
42                 case IPOPT_SSRR:
43                         if (optlen < 6)
44                                 return -EINVAL;
45                         memcpy(daddr, optptr+optlen-4, 4);
46                         /* Fall through */
47                 default:
48                         memset(optptr+2, 0, optlen-2);
49                 }
50                 l -= optlen;
51                 optptr += optlen;
52         }
53         return 0;
54 }
55
56 static int ah_output(struct sk_buff **pskb)
57 {
58         int err;
59         struct dst_entry *dst = (*pskb)->dst;
60         struct xfrm_state *x  = dst->xfrm;
61         struct iphdr *iph, *top_iph;
62         struct ip_auth_hdr *ah;
63         struct ah_data *ahp;
64         union {
65                 struct iphdr    iph;
66                 char            buf[60];
67         } tmp_iph;
68
69         top_iph = (*pskb)->nh.iph;
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
84         ah = (struct ip_auth_hdr *)((char *)top_iph+top_iph->ihl*4);
85         ah->nexthdr = top_iph->protocol;
86
87         top_iph->tos = 0;
88         top_iph->tot_len = htons((*pskb)->len);
89         top_iph->frag_off = 0;
90         top_iph->ttl = 0;
91         top_iph->protocol = IPPROTO_AH;
92         top_iph->check = 0;
93
94         ahp = x->data;
95         ah->hdrlen  = (XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + 
96                                    ahp->icv_trunc_len) >> 2) - 2;
97
98         ah->reserved = 0;
99         ah->spi = x->id.spi;
100         ah->seq_no = htonl(++x->replay.oseq);
101         ahp->icv(ahp, *pskb, ah->auth_data);
102
103         top_iph->tos = iph->tos;
104         top_iph->ttl = iph->ttl;
105         top_iph->frag_off = iph->frag_off;
106         if (top_iph->ihl != 5) {
107                 top_iph->daddr = iph->daddr;
108                 memcpy(top_iph+1, iph+1, top_iph->ihl*4 - sizeof(struct iphdr));
109         }
110
111         ip_send_check(top_iph);
112
113         err = 0;
114
115 error:
116         return err;
117 }
118
119 int ah_input(struct xfrm_state *x, struct xfrm_decap_state *decap, struct sk_buff *skb)
120 {
121         int ah_hlen;
122         struct iphdr *iph;
123         struct ip_auth_hdr *ah;
124         struct ah_data *ahp;
125         char work_buf[60];
126
127         if (!pskb_may_pull(skb, sizeof(struct ip_auth_hdr)))
128                 goto out;
129
130         ah = (struct ip_auth_hdr*)skb->data;
131         ahp = x->data;
132         ah_hlen = (ah->hdrlen + 2) << 2;
133         
134         if (ah_hlen != XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + ahp->icv_full_len) &&
135             ah_hlen != XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + ahp->icv_trunc_len)) 
136                 goto out;
137
138         if (!pskb_may_pull(skb, ah_hlen))
139                 goto out;
140
141         /* We are going to _remove_ AH header to keep sockets happy,
142          * so... Later this can change. */
143         if (skb_cloned(skb) &&
144             pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
145                 goto out;
146
147         skb->ip_summed = CHECKSUM_NONE;
148
149         ah = (struct ip_auth_hdr*)skb->data;
150         iph = skb->nh.iph;
151
152         memcpy(work_buf, iph, iph->ihl*4);
153
154         iph->ttl = 0;
155         iph->tos = 0;
156         iph->frag_off = 0;
157         iph->check = 0;
158         if (iph->ihl != 5) {
159                 u32 dummy;
160                 if (ip_clear_mutable_options(iph, &dummy))
161                         goto out;
162         }
163         {
164                 u8 auth_data[MAX_AH_AUTH_LEN];
165                 
166                 memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len);
167                 skb_push(skb, skb->data - skb->nh.raw);
168                 ahp->icv(ahp, skb, ah->auth_data);
169                 if (memcmp(ah->auth_data, auth_data, ahp->icv_trunc_len)) {
170                         x->stats.integrity_failed++;
171                         goto out;
172                 }
173         }
174         ((struct iphdr*)work_buf)->protocol = ah->nexthdr;
175         skb->nh.raw = skb_pull(skb, ah_hlen);
176         memcpy(skb->nh.raw, work_buf, iph->ihl*4);
177         skb->nh.iph->tot_len = htons(skb->len);
178         skb_pull(skb, skb->nh.iph->ihl*4);
179         skb->h.raw = skb->data;
180
181         return 0;
182
183 out:
184         return -EINVAL;
185 }
186
187 void ah4_err(struct sk_buff *skb, u32 info)
188 {
189         struct iphdr *iph = (struct iphdr*)skb->data;
190         struct ip_auth_hdr *ah = (struct ip_auth_hdr*)(skb->data+(iph->ihl<<2));
191         struct xfrm_state *x;
192
193         if (skb->h.icmph->type != ICMP_DEST_UNREACH ||
194             skb->h.icmph->code != ICMP_FRAG_NEEDED)
195                 return;
196
197         x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, ah->spi, IPPROTO_AH, AF_INET);
198         if (!x)
199                 return;
200         printk(KERN_DEBUG "pmtu discovery on SA AH/%08x/%08x\n",
201                ntohl(ah->spi), ntohl(iph->daddr));
202         xfrm_state_put(x);
203 }
204
205 static int ah_init_state(struct xfrm_state *x, void *args)
206 {
207         struct ah_data *ahp = NULL;
208         struct xfrm_algo_desc *aalg_desc;
209
210         if (!x->aalg)
211                 goto error;
212
213         /* null auth can use a zero length key */
214         if (x->aalg->alg_key_len > 512)
215                 goto error;
216
217         ahp = kmalloc(sizeof(*ahp), GFP_KERNEL);
218         if (ahp == NULL)
219                 return -ENOMEM;
220
221         memset(ahp, 0, sizeof(*ahp));
222
223         ahp->key = x->aalg->alg_key;
224         ahp->key_len = (x->aalg->alg_key_len+7)/8;
225         ahp->tfm = crypto_alloc_tfm(x->aalg->alg_name, 0);
226         if (!ahp->tfm)
227                 goto error;
228         ahp->icv = ah_hmac_digest;
229         
230         /*
231          * Lookup the algorithm description maintained by xfrm_algo,
232          * verify crypto transform properties, and store information
233          * we need for AH processing.  This lookup cannot fail here
234          * after a successful crypto_alloc_tfm().
235          */
236         aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name);
237         BUG_ON(!aalg_desc);
238
239         if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
240             crypto_tfm_alg_digestsize(ahp->tfm)) {
241                 printk(KERN_INFO "AH: %s digestsize %u != %hu\n",
242                        x->aalg->alg_name, crypto_tfm_alg_digestsize(ahp->tfm),
243                        aalg_desc->uinfo.auth.icv_fullbits/8);
244                 goto error;
245         }
246         
247         ahp->icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
248         ahp->icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
249         
250         BUG_ON(ahp->icv_trunc_len > MAX_AH_AUTH_LEN);
251         
252         ahp->work_icv = kmalloc(ahp->icv_full_len, GFP_KERNEL);
253         if (!ahp->work_icv)
254                 goto error;
255         
256         x->props.header_len = XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + ahp->icv_trunc_len);
257         if (x->props.mode)
258                 x->props.header_len += sizeof(struct iphdr);
259         x->data = ahp;
260
261         return 0;
262
263 error:
264         if (ahp) {
265                 if (ahp->work_icv)
266                         kfree(ahp->work_icv);
267                 if (ahp->tfm)
268                         crypto_free_tfm(ahp->tfm);
269                 kfree(ahp);
270         }
271         return -EINVAL;
272 }
273
274 static void ah_destroy(struct xfrm_state *x)
275 {
276         struct ah_data *ahp = x->data;
277
278         if (!ahp)
279                 return;
280
281         if (ahp->work_icv) {
282                 kfree(ahp->work_icv);
283                 ahp->work_icv = NULL;
284         }
285         if (ahp->tfm) {
286                 crypto_free_tfm(ahp->tfm);
287                 ahp->tfm = NULL;
288         }
289         kfree(ahp);
290 }
291
292
293 static struct xfrm_type ah_type =
294 {
295         .description    = "AH4",
296         .owner          = THIS_MODULE,
297         .proto          = IPPROTO_AH,
298         .init_state     = ah_init_state,
299         .destructor     = ah_destroy,
300         .input          = ah_input,
301         .output         = ah_output
302 };
303
304 static struct net_protocol ah4_protocol = {
305         .handler        =       xfrm4_rcv,
306         .err_handler    =       ah4_err,
307         .no_policy      =       1,
308 };
309
310 static int __init ah4_init(void)
311 {
312         if (xfrm_register_type(&ah_type, AF_INET) < 0) {
313                 printk(KERN_INFO "ip ah init: can't add xfrm type\n");
314                 return -EAGAIN;
315         }
316         if (inet_add_protocol(&ah4_protocol, IPPROTO_AH) < 0) {
317                 printk(KERN_INFO "ip ah init: can't add protocol\n");
318                 xfrm_unregister_type(&ah_type, AF_INET);
319                 return -EAGAIN;
320         }
321         return 0;
322 }
323
324 static void __exit ah4_fini(void)
325 {
326         if (inet_del_protocol(&ah4_protocol, IPPROTO_AH) < 0)
327                 printk(KERN_INFO "ip ah close: can't remove protocol\n");
328         if (xfrm_unregister_type(&ah_type, AF_INET) < 0)
329                 printk(KERN_INFO "ip ah close: can't remove xfrm type\n");
330 }
331
332 module_init(ah4_init);
333 module_exit(ah4_fini);
334 MODULE_LICENSE("GPL");