blob: ba9840195cf259d8f0a8cd406d8bf68cab1d9263 [file] [log] [blame]
Herbert Xu6b7326c2006-07-30 15:41:01 +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/esp.h>
6#include <asm/scatterlist.h>
7#include <linux/crypto.h>
Herbert Xua02a6422005-10-10 21:11:08 -07008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/pfkeyv2.h>
10#include <linux/random.h>
Herbert Xub7c65382007-10-09 13:33:35 -070011#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <net/icmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020013#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <net/udp.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016static int esp_output(struct xfrm_state *x, struct sk_buff *skb)
17{
18 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 struct ip_esp_hdr *esph;
Herbert Xu6b7326c2006-07-30 15:41:01 +100020 struct crypto_blkcipher *tfm;
21 struct blkcipher_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 struct esp_data *esp;
23 struct sk_buff *trailer;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070024 u8 *tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 int blksize;
26 int clen;
27 int alen;
28 int nfrags;
29
Herbert Xu7b277b12007-10-10 15:44:06 -070030 /* skb is pure payload to encrypt */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32 err = -ENOMEM;
33
34 /* Round to block size */
35 clen = skb->len;
36
37 esp = x->data;
38 alen = esp->auth.icv_trunc_len;
39 tfm = esp->conf.tfm;
Herbert Xu6b7326c2006-07-30 15:41:01 +100040 desc.tfm = tfm;
41 desc.flags = 0;
42 blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
Herbert Xua02a6422005-10-10 21:11:08 -070043 clen = ALIGN(clen + 2, blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 if (esp->conf.padlen)
Herbert Xua02a6422005-10-10 21:11:08 -070045 clen = ALIGN(clen, esp->conf.padlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 if ((nfrags = skb_cow_data(skb, clen-skb->len+alen, &trailer)) < 0)
48 goto error;
49
50 /* Fill padding... */
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070051 tail = skb_tail_pointer(trailer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 do {
53 int i;
54 for (i=0; i<clen-skb->len - 2; i++)
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070055 tail[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 } while (0);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070057 tail[clen - skb->len - 2] = (clen - skb->len) - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 pskb_put(skb, trailer, clen - skb->len);
59
Herbert Xu7b277b12007-10-10 15:44:06 -070060 skb_push(skb, -skb_network_offset(skb));
Herbert Xu87bdc482007-10-10 15:45:25 -070061 esph = ip_esp_hdr(skb);
Herbert Xu37fedd32007-10-10 15:44:44 -070062 *(skb_tail_pointer(trailer) - 1) = *skb_mac_header(skb);
63 *skb_mac_header(skb) = IPPROTO_ESP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Herbert Xub7c65382007-10-09 13:33:35 -070065 spin_lock_bh(&x->lock);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 /* this is non-NULL only with UDP Encapsulation */
68 if (x->encap) {
69 struct xfrm_encap_tmpl *encap = x->encap;
70 struct udphdr *uh;
Al Virod5a0a1e2006-11-08 00:23:14 -080071 __be32 *udpdata32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 uh = (struct udphdr *)esph;
74 uh->source = encap->encap_sport;
75 uh->dest = encap->encap_dport;
Herbert Xuceb1eec82007-10-10 15:45:52 -070076 uh->len = htons(skb->len + alen - skb_transport_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 uh->check = 0;
78
79 switch (encap->encap_type) {
80 default:
81 case UDP_ENCAP_ESPINUDP:
82 esph = (struct ip_esp_hdr *)(uh + 1);
83 break;
84 case UDP_ENCAP_ESPINUDP_NON_IKE:
Al Virod5a0a1e2006-11-08 00:23:14 -080085 udpdata32 = (__be32 *)(uh + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 udpdata32[0] = udpdata32[1] = 0;
87 esph = (struct ip_esp_hdr *)(udpdata32 + 2);
88 break;
89 }
90
Herbert Xu37fedd32007-10-10 15:44:44 -070091 *skb_mac_header(skb) = IPPROTO_UDP;
92 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 esph->spi = x->id.spi;
Herbert Xu436a0a42007-10-08 17:25:53 -070095 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
David S. Millere4bec822006-09-22 15:17:35 -070097 if (esp->conf.ivlen) {
98 if (unlikely(!esp->conf.ivinitted)) {
99 get_random_bytes(esp->conf.ivec, esp->conf.ivlen);
100 esp->conf.ivinitted = 1;
101 }
Herbert Xu6b7326c2006-07-30 15:41:01 +1000102 crypto_blkcipher_set_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
David S. Millere4bec822006-09-22 15:17:35 -0700103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 do {
106 struct scatterlist *sg = &esp->sgbuf[0];
107
108 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
109 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
110 if (!sg)
Herbert Xub7c65382007-10-09 13:33:35 -0700111 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
David S. Millered0e7e02007-10-26 00:38:39 -0700113 sg_init_table(sg, nfrags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 skb_to_sgvec(skb, sg, esph->enc_data+esp->conf.ivlen-skb->data, clen);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000115 err = crypto_blkcipher_encrypt(&desc, sg, sg, clen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (unlikely(sg != &esp->sgbuf[0]))
117 kfree(sg);
118 } while (0);
119
Herbert Xu6b7326c2006-07-30 15:41:01 +1000120 if (unlikely(err))
Herbert Xub7c65382007-10-09 13:33:35 -0700121 goto unlock;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (esp->conf.ivlen) {
Herbert Xu6b7326c2006-07-30 15:41:01 +1000124 memcpy(esph->enc_data, esp->conf.ivec, esp->conf.ivlen);
125 crypto_blkcipher_get_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
127
128 if (esp->auth.icv_full_len) {
Herbert Xu07d4ee52006-08-20 14:24:50 +1000129 err = esp_mac_digest(esp, skb, (u8 *)esph - skb->data,
130 sizeof(*esph) + esp->conf.ivlen + clen);
131 memcpy(pskb_put(skb, trailer, alen), esp->auth.work_icv, alen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133
Herbert Xub7c65382007-10-09 13:33:35 -0700134unlock:
135 spin_unlock_bh(&x->lock);
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137error:
138 return err;
139}
140
141/*
142 * Note: detecting truncated vs. non-truncated authentication data is very
143 * expensive, so we only support truncated data, which is the recommended
144 * and common case.
145 */
Herbert Xue6956332006-04-01 00:52:46 -0800146static int esp_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 struct iphdr *iph;
149 struct ip_esp_hdr *esph;
150 struct esp_data *esp = x->data;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000151 struct crypto_blkcipher *tfm = esp->conf.tfm;
152 struct blkcipher_desc desc = { .tfm = tfm };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct sk_buff *trailer;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000154 int blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 int alen = esp->auth.icv_trunc_len;
Herbert Xu87bdc482007-10-10 15:45:25 -0700156 int elen = skb->len - sizeof(*esph) - esp->conf.ivlen - alen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 int nfrags;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700158 int ihl;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800159 u8 nexthdr[2];
160 struct scatterlist *sg;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800161 int padlen;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000162 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Herbert Xu87bdc482007-10-10 15:45:25 -0700164 if (!pskb_may_pull(skb, sizeof(*esph)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 goto out;
166
167 if (elen <= 0 || (elen & (blksize-1)))
168 goto out;
169
170 /* If integrity check is required, do this. */
171 if (esp->auth.icv_full_len) {
Herbert Xu07d4ee52006-08-20 14:24:50 +1000172 u8 sum[alen];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Herbert Xu07d4ee52006-08-20 14:24:50 +1000174 err = esp_mac_digest(esp, skb, 0, skb->len - alen);
175 if (err)
176 goto out;
177
178 if (skb_copy_bits(skb, skb->len - alen, sum, alen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 BUG();
180
Herbert Xu07d4ee52006-08-20 14:24:50 +1000181 if (unlikely(memcmp(esp->auth.work_icv, sum, alen))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 x->stats.integrity_failed++;
183 goto out;
184 }
185 }
186
187 if ((nfrags = skb_cow_data(skb, 0, &trailer)) < 0)
188 goto out;
189
190 skb->ip_summed = CHECKSUM_NONE;
191
Herbert Xu87bdc482007-10-10 15:45:25 -0700192 esph = (struct ip_esp_hdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /* Get ivec. This can be wrong, check against another impls. */
195 if (esp->conf.ivlen)
Herbert Xu6b7326c2006-07-30 15:41:01 +1000196 crypto_blkcipher_set_iv(tfm, esph->enc_data, esp->conf.ivlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800198 sg = &esp->sgbuf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800200 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
201 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
202 if (!sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
David S. Millered0e7e02007-10-26 00:38:39 -0700205 sg_init_table(sg, nfrags);
Herbert Xu87bdc482007-10-10 15:45:25 -0700206 skb_to_sgvec(skb, sg, sizeof(*esph) + esp->conf.ivlen, elen);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000207 err = crypto_blkcipher_decrypt(&desc, sg, sg, elen);
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800208 if (unlikely(sg != &esp->sgbuf[0]))
209 kfree(sg);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000210 if (unlikely(err))
211 return err;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800212
213 if (skb_copy_bits(skb, skb->len-alen-2, nexthdr, 2))
214 BUG();
215
216 padlen = nexthdr[0];
217 if (padlen+2 >= elen)
218 goto out;
219
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900220 /* ... check padding bits here. Silly. :-) */
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800221
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700222 iph = ip_hdr(skb);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700223 ihl = iph->ihl * 4;
224
Herbert Xu752c1f42006-02-27 13:00:40 -0800225 if (x->encap) {
226 struct xfrm_encap_tmpl *encap = x->encap;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700227 struct udphdr *uh = (void *)(skb_network_header(skb) + ihl);
Herbert Xu752c1f42006-02-27 13:00:40 -0800228
229 /*
230 * 1) if the NAT-T peer's IP or port changed then
231 * advertize the change to the keying daemon.
232 * This is an inbound SA, so just compare
233 * SRC ports.
234 */
235 if (iph->saddr != x->props.saddr.a4 ||
236 uh->source != encap->encap_sport) {
237 xfrm_address_t ipaddr;
238
239 ipaddr.a4 = iph->saddr;
240 km_new_mapping(x, &ipaddr, uh->source);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900241
Herbert Xu752c1f42006-02-27 13:00:40 -0800242 /* XXX: perhaps add an extra
243 * policy check here, to see
244 * if we should allow or
245 * reject a packet from a
246 * different source
247 * address/port.
248 */
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800249 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900250
Herbert Xu752c1f42006-02-27 13:00:40 -0800251 /*
252 * 2) ignore UDP/TCP checksums in case
253 * of NAT-T in Transport Mode, or
254 * perform other post-processing fixes
255 * as per draft-ietf-ipsec-udp-encaps-06,
256 * section 3.1.2
257 */
Herbert Xu8bd17072007-10-10 15:41:41 -0700258 if (x->props.mode == XFRM_MODE_TRANSPORT)
Herbert Xu752c1f42006-02-27 13:00:40 -0800259 skb->ip_summed = CHECKSUM_UNNECESSARY;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800260 }
261
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800262 pskb_trim(skb, skb->len - alen - padlen - 2);
Arnaldo Carvalho de Melo967b05f2007-03-13 13:51:52 -0300263 __skb_pull(skb, sizeof(*esph) + esp->conf.ivlen);
264 skb_set_transport_header(skb, -ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Herbert Xu631a66982007-10-10 15:46:21 -0700266 return nexthdr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268out:
269 return -EINVAL;
270}
271
Patrick McHardyc5c25232007-04-09 11:47:18 -0700272static u32 esp4_get_mtu(struct xfrm_state *x, int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 struct esp_data *esp = x->data;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000275 u32 blksize = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
Patrick McHardyc5c25232007-04-09 11:47:18 -0700276 u32 align = max_t(u32, blksize, esp->conf.padlen);
277 u32 rem;
278
279 mtu -= x->props.header_len + esp->auth.icv_trunc_len;
280 rem = mtu & (align - 1);
281 mtu &= ~(align - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Diego Beltrami0a694522006-10-03 23:47:05 -0700283 switch (x->props.mode) {
284 case XFRM_MODE_TUNNEL:
Diego Beltrami0a694522006-10-03 23:47:05 -0700285 break;
286 default:
287 case XFRM_MODE_TRANSPORT:
288 /* The worst case */
Patrick McHardyc5c25232007-04-09 11:47:18 -0700289 mtu -= blksize - 4;
290 mtu += min_t(u32, blksize - 4, rem);
Diego Beltrami0a694522006-10-03 23:47:05 -0700291 break;
292 case XFRM_MODE_BEET:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900293 /* The worst case. */
Patrick McHardyc5c25232007-04-09 11:47:18 -0700294 mtu += min_t(u32, IPV4_BEET_PHMAXLEN, rem);
Diego Beltrami0a694522006-10-03 23:47:05 -0700295 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Diego Beltrami0a694522006-10-03 23:47:05 -0700297
Patrick McHardyc5c25232007-04-09 11:47:18 -0700298 return mtu - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
301static void esp4_err(struct sk_buff *skb, u32 info)
302{
303 struct iphdr *iph = (struct iphdr*)skb->data;
304 struct ip_esp_hdr *esph = (struct ip_esp_hdr*)(skb->data+(iph->ihl<<2));
305 struct xfrm_state *x;
306
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300307 if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH ||
308 icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return;
310
311 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, esph->spi, IPPROTO_ESP, AF_INET);
312 if (!x)
313 return;
Patrick McHardy64ce2072005-08-09 20:50:53 -0700314 NETDEBUG(KERN_DEBUG "pmtu discovery on SA ESP/%08x/%08x\n",
315 ntohl(esph->spi), ntohl(iph->daddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 xfrm_state_put(x);
317}
318
319static void esp_destroy(struct xfrm_state *x)
320{
321 struct esp_data *esp = x->data;
322
323 if (!esp)
324 return;
325
Herbert Xu6b7326c2006-07-30 15:41:01 +1000326 crypto_free_blkcipher(esp->conf.tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700327 esp->conf.tfm = NULL;
328 kfree(esp->conf.ivec);
329 esp->conf.ivec = NULL;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000330 crypto_free_hash(esp->auth.tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700331 esp->auth.tfm = NULL;
332 kfree(esp->auth.work_icv);
333 esp->auth.work_icv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 kfree(esp);
335}
336
Herbert Xu72cb6962005-06-20 13:18:08 -0700337static int esp_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 struct esp_data *esp = NULL;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000340 struct crypto_blkcipher *tfm;
Patrick McHardyc5c25232007-04-09 11:47:18 -0700341 u32 align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (x->ealg == NULL)
344 goto error;
345
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700346 esp = kzalloc(sizeof(*esp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (esp == NULL)
348 return -ENOMEM;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (x->aalg) {
351 struct xfrm_algo_desc *aalg_desc;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000352 struct crypto_hash *hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Herbert Xu07d4ee52006-08-20 14:24:50 +1000354 hash = crypto_alloc_hash(x->aalg->alg_name, 0,
355 CRYPTO_ALG_ASYNC);
356 if (IS_ERR(hash))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 goto error;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000358
359 esp->auth.tfm = hash;
Herbert Xu4b7137f2007-10-08 17:13:44 -0700360 if (crypto_hash_setkey(hash, x->aalg->alg_key,
361 (x->aalg->alg_key_len + 7) / 8))
Herbert Xu07d4ee52006-08-20 14:24:50 +1000362 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
365 BUG_ON(!aalg_desc);
366
367 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
Herbert Xu07d4ee52006-08-20 14:24:50 +1000368 crypto_hash_digestsize(hash)) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700369 NETDEBUG(KERN_INFO "ESP: %s digestsize %u != %hu\n",
370 x->aalg->alg_name,
Herbert Xu07d4ee52006-08-20 14:24:50 +1000371 crypto_hash_digestsize(hash),
Patrick McHardy64ce2072005-08-09 20:50:53 -0700372 aalg_desc->uinfo.auth.icv_fullbits/8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 goto error;
374 }
375
376 esp->auth.icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
377 esp->auth.icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
378
379 esp->auth.work_icv = kmalloc(esp->auth.icv_full_len, GFP_KERNEL);
380 if (!esp->auth.work_icv)
381 goto error;
382 }
Herbert Xu4b7137f2007-10-08 17:13:44 -0700383
Herbert Xu6b7326c2006-07-30 15:41:01 +1000384 tfm = crypto_alloc_blkcipher(x->ealg->alg_name, 0, CRYPTO_ALG_ASYNC);
385 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 goto error;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000387 esp->conf.tfm = tfm;
388 esp->conf.ivlen = crypto_blkcipher_ivsize(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 esp->conf.padlen = 0;
390 if (esp->conf.ivlen) {
391 esp->conf.ivec = kmalloc(esp->conf.ivlen, GFP_KERNEL);
392 if (unlikely(esp->conf.ivec == NULL))
393 goto error;
David S. Millere4bec822006-09-22 15:17:35 -0700394 esp->conf.ivinitted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Herbert Xu4b7137f2007-10-08 17:13:44 -0700396 if (crypto_blkcipher_setkey(tfm, x->ealg->alg_key,
397 (x->ealg->alg_key_len + 7) / 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 goto error;
399 x->props.header_len = sizeof(struct ip_esp_hdr) + esp->conf.ivlen;
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700400 if (x->props.mode == XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 x->props.header_len += sizeof(struct iphdr);
Patrick McHardyac758e32007-04-09 11:47:58 -0700402 else if (x->props.mode == XFRM_MODE_BEET)
403 x->props.header_len += IPV4_BEET_PHMAXLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (x->encap) {
405 struct xfrm_encap_tmpl *encap = x->encap;
406
407 switch (encap->encap_type) {
408 default:
409 goto error;
410 case UDP_ENCAP_ESPINUDP:
411 x->props.header_len += sizeof(struct udphdr);
412 break;
413 case UDP_ENCAP_ESPINUDP_NON_IKE:
414 x->props.header_len += sizeof(struct udphdr) + 2 * sizeof(u32);
415 break;
416 }
417 }
418 x->data = esp;
Patrick McHardyc5c25232007-04-09 11:47:18 -0700419 align = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
420 if (esp->conf.padlen)
421 align = max_t(u32, align, esp->conf.padlen);
422 x->props.trailer_len = align + 1 + esp->auth.icv_trunc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0;
424
425error:
426 x->data = esp;
427 esp_destroy(x);
428 x->data = NULL;
429 return -EINVAL;
430}
431
432static struct xfrm_type esp_type =
433{
434 .description = "ESP4",
435 .owner = THIS_MODULE,
436 .proto = IPPROTO_ESP,
Herbert Xu436a0a42007-10-08 17:25:53 -0700437 .flags = XFRM_TYPE_REPLAY_PROT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 .init_state = esp_init_state,
439 .destructor = esp_destroy,
Patrick McHardyc5c25232007-04-09 11:47:18 -0700440 .get_mtu = esp4_get_mtu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .input = esp_input,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 .output = esp_output
443};
444
445static struct net_protocol esp4_protocol = {
446 .handler = xfrm4_rcv,
447 .err_handler = esp4_err,
448 .no_policy = 1,
449};
450
451static int __init esp4_init(void)
452{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (xfrm_register_type(&esp_type, AF_INET) < 0) {
454 printk(KERN_INFO "ip esp init: can't add xfrm type\n");
455 return -EAGAIN;
456 }
457 if (inet_add_protocol(&esp4_protocol, IPPROTO_ESP) < 0) {
458 printk(KERN_INFO "ip esp init: can't add protocol\n");
459 xfrm_unregister_type(&esp_type, AF_INET);
460 return -EAGAIN;
461 }
462 return 0;
463}
464
465static void __exit esp4_fini(void)
466{
467 if (inet_del_protocol(&esp4_protocol, IPPROTO_ESP) < 0)
468 printk(KERN_INFO "ip esp close: can't remove protocol\n");
469 if (xfrm_unregister_type(&esp_type, AF_INET) < 0)
470 printk(KERN_INFO "ip esp close: can't remove xfrm type\n");
471}
472
473module_init(esp4_init);
474module_exit(esp4_fini);
475MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700476MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_ESP);