blob: 1738113268bc12f1e1a23e4a1ca14bb82a637ffa [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>
Adrian Bunk72998d82007-10-26 22:53:58 -07006#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#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>
Thomas Graf2017a722007-12-10 16:53:05 -080012#include <linux/in6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <net/icmp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020014#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <net/udp.h>
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017static int esp_output(struct xfrm_state *x, struct sk_buff *skb)
18{
19 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 struct ip_esp_hdr *esph;
Herbert Xu6b7326c2006-07-30 15:41:01 +100021 struct crypto_blkcipher *tfm;
22 struct blkcipher_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 struct esp_data *esp;
24 struct sk_buff *trailer;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070025 u8 *tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 int blksize;
27 int clen;
28 int alen;
29 int nfrags;
30
Herbert Xu7b277b12007-10-10 15:44:06 -070031 /* skb is pure payload to encrypt */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33 err = -ENOMEM;
34
35 /* Round to block size */
36 clen = skb->len;
37
38 esp = x->data;
39 alen = esp->auth.icv_trunc_len;
40 tfm = esp->conf.tfm;
Herbert Xu6b7326c2006-07-30 15:41:01 +100041 desc.tfm = tfm;
42 desc.flags = 0;
43 blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
Herbert Xua02a6422005-10-10 21:11:08 -070044 clen = ALIGN(clen + 2, blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 if (esp->conf.padlen)
Herbert Xua02a6422005-10-10 21:11:08 -070046 clen = ALIGN(clen, esp->conf.padlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 if ((nfrags = skb_cow_data(skb, clen-skb->len+alen, &trailer)) < 0)
49 goto error;
50
51 /* Fill padding... */
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070052 tail = skb_tail_pointer(trailer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 do {
54 int i;
55 for (i=0; i<clen-skb->len - 2; i++)
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070056 tail[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 } while (0);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070058 tail[clen - skb->len - 2] = (clen - skb->len) - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 pskb_put(skb, trailer, clen - skb->len);
60
Herbert Xu7b277b12007-10-10 15:44:06 -070061 skb_push(skb, -skb_network_offset(skb));
Herbert Xu87bdc482007-10-10 15:45:25 -070062 esph = ip_esp_hdr(skb);
Herbert Xu37fedd32007-10-10 15:44:44 -070063 *(skb_tail_pointer(trailer) - 1) = *skb_mac_header(skb);
64 *skb_mac_header(skb) = IPPROTO_ESP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Herbert Xub7c65382007-10-09 13:33:35 -070066 spin_lock_bh(&x->lock);
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 /* this is non-NULL only with UDP Encapsulation */
69 if (x->encap) {
70 struct xfrm_encap_tmpl *encap = x->encap;
71 struct udphdr *uh;
Al Virod5a0a1e2006-11-08 00:23:14 -080072 __be32 *udpdata32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 uh = (struct udphdr *)esph;
75 uh->source = encap->encap_sport;
76 uh->dest = encap->encap_dport;
Herbert Xuceb1eec82007-10-10 15:45:52 -070077 uh->len = htons(skb->len + alen - skb_transport_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 uh->check = 0;
79
80 switch (encap->encap_type) {
81 default:
82 case UDP_ENCAP_ESPINUDP:
83 esph = (struct ip_esp_hdr *)(uh + 1);
84 break;
85 case UDP_ENCAP_ESPINUDP_NON_IKE:
Al Virod5a0a1e2006-11-08 00:23:14 -080086 udpdata32 = (__be32 *)(uh + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 udpdata32[0] = udpdata32[1] = 0;
88 esph = (struct ip_esp_hdr *)(udpdata32 + 2);
89 break;
90 }
91
Herbert Xu37fedd32007-10-10 15:44:44 -070092 *skb_mac_header(skb) = IPPROTO_UDP;
93 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 esph->spi = x->id.spi;
Herbert Xu436a0a42007-10-08 17:25:53 -070096 esph->seq_no = htonl(XFRM_SKB_CB(skb)->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David S. Millere4bec822006-09-22 15:17:35 -070098 if (esp->conf.ivlen) {
99 if (unlikely(!esp->conf.ivinitted)) {
100 get_random_bytes(esp->conf.ivec, esp->conf.ivlen);
101 esp->conf.ivinitted = 1;
102 }
Herbert Xu6b7326c2006-07-30 15:41:01 +1000103 crypto_blkcipher_set_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
David S. Millere4bec822006-09-22 15:17:35 -0700104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 do {
107 struct scatterlist *sg = &esp->sgbuf[0];
108
109 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
110 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
111 if (!sg)
Herbert Xub7c65382007-10-09 13:33:35 -0700112 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
David S. Millered0e7e02007-10-26 00:38:39 -0700114 sg_init_table(sg, nfrags);
David S. Miller51c739d2007-10-30 21:29:29 -0700115 skb_to_sgvec(skb, sg,
116 esph->enc_data +
117 esp->conf.ivlen -
118 skb->data, clen);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000119 err = crypto_blkcipher_encrypt(&desc, sg, sg, clen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (unlikely(sg != &esp->sgbuf[0]))
121 kfree(sg);
122 } while (0);
123
Herbert Xu6b7326c2006-07-30 15:41:01 +1000124 if (unlikely(err))
Herbert Xub7c65382007-10-09 13:33:35 -0700125 goto unlock;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (esp->conf.ivlen) {
Herbert Xu6b7326c2006-07-30 15:41:01 +1000128 memcpy(esph->enc_data, esp->conf.ivec, esp->conf.ivlen);
129 crypto_blkcipher_get_iv(tfm, esp->conf.ivec, esp->conf.ivlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
132 if (esp->auth.icv_full_len) {
Herbert Xu07d4ee52006-08-20 14:24:50 +1000133 err = esp_mac_digest(esp, skb, (u8 *)esph - skb->data,
134 sizeof(*esph) + esp->conf.ivlen + clen);
135 memcpy(pskb_put(skb, trailer, alen), esp->auth.work_icv, alen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137
Herbert Xub7c65382007-10-09 13:33:35 -0700138unlock:
139 spin_unlock_bh(&x->lock);
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141error:
142 return err;
143}
144
145/*
146 * Note: detecting truncated vs. non-truncated authentication data is very
147 * expensive, so we only support truncated data, which is the recommended
148 * and common case.
149 */
Herbert Xue6956332006-04-01 00:52:46 -0800150static int esp_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct iphdr *iph;
153 struct ip_esp_hdr *esph;
154 struct esp_data *esp = x->data;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000155 struct crypto_blkcipher *tfm = esp->conf.tfm;
156 struct blkcipher_desc desc = { .tfm = tfm };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct sk_buff *trailer;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000158 int blksize = ALIGN(crypto_blkcipher_blocksize(tfm), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 int alen = esp->auth.icv_trunc_len;
Herbert Xu87bdc482007-10-10 15:45:25 -0700160 int elen = skb->len - sizeof(*esph) - esp->conf.ivlen - alen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 int nfrags;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700162 int ihl;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800163 u8 nexthdr[2];
164 struct scatterlist *sg;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800165 int padlen;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000166 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Herbert Xu87bdc482007-10-10 15:45:25 -0700168 if (!pskb_may_pull(skb, sizeof(*esph)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 goto out;
170
171 if (elen <= 0 || (elen & (blksize-1)))
172 goto out;
173
174 /* If integrity check is required, do this. */
175 if (esp->auth.icv_full_len) {
Herbert Xu07d4ee52006-08-20 14:24:50 +1000176 u8 sum[alen];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Herbert Xu07d4ee52006-08-20 14:24:50 +1000178 err = esp_mac_digest(esp, skb, 0, skb->len - alen);
179 if (err)
180 goto out;
181
182 if (skb_copy_bits(skb, skb->len - alen, sum, alen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 BUG();
184
Herbert Xu07d4ee52006-08-20 14:24:50 +1000185 if (unlikely(memcmp(esp->auth.work_icv, sum, alen))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 x->stats.integrity_failed++;
187 goto out;
188 }
189 }
190
191 if ((nfrags = skb_cow_data(skb, 0, &trailer)) < 0)
192 goto out;
193
194 skb->ip_summed = CHECKSUM_NONE;
195
Herbert Xu87bdc482007-10-10 15:45:25 -0700196 esph = (struct ip_esp_hdr *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 /* Get ivec. This can be wrong, check against another impls. */
199 if (esp->conf.ivlen)
Herbert Xu6b7326c2006-07-30 15:41:01 +1000200 crypto_blkcipher_set_iv(tfm, esph->enc_data, esp->conf.ivlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800202 sg = &esp->sgbuf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800204 if (unlikely(nfrags > ESP_NUM_FAST_SG)) {
205 sg = kmalloc(sizeof(struct scatterlist)*nfrags, GFP_ATOMIC);
206 if (!sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
David S. Millered0e7e02007-10-26 00:38:39 -0700209 sg_init_table(sg, nfrags);
David S. Miller51c739d2007-10-30 21:29:29 -0700210 skb_to_sgvec(skb, sg,
211 sizeof(*esph) + esp->conf.ivlen,
212 elen);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000213 err = crypto_blkcipher_decrypt(&desc, sg, sg, elen);
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800214 if (unlikely(sg != &esp->sgbuf[0]))
215 kfree(sg);
Herbert Xu6b7326c2006-07-30 15:41:01 +1000216 if (unlikely(err))
217 return err;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800218
219 if (skb_copy_bits(skb, skb->len-alen-2, nexthdr, 2))
220 BUG();
221
222 padlen = nexthdr[0];
223 if (padlen+2 >= elen)
224 goto out;
225
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900226 /* ... check padding bits here. Silly. :-) */
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800227
Thomas Graf2017a722007-12-10 16:53:05 -0800228 /* RFC4303: Drop dummy packets without any error */
229 if (nexthdr[1] == IPPROTO_NONE)
230 goto out;
231
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700232 iph = ip_hdr(skb);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700233 ihl = iph->ihl * 4;
234
Herbert Xu752c1f42006-02-27 13:00:40 -0800235 if (x->encap) {
236 struct xfrm_encap_tmpl *encap = x->encap;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700237 struct udphdr *uh = (void *)(skb_network_header(skb) + ihl);
Herbert Xu752c1f42006-02-27 13:00:40 -0800238
239 /*
240 * 1) if the NAT-T peer's IP or port changed then
241 * advertize the change to the keying daemon.
242 * This is an inbound SA, so just compare
243 * SRC ports.
244 */
245 if (iph->saddr != x->props.saddr.a4 ||
246 uh->source != encap->encap_sport) {
247 xfrm_address_t ipaddr;
248
249 ipaddr.a4 = iph->saddr;
250 km_new_mapping(x, &ipaddr, uh->source);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900251
Herbert Xu752c1f42006-02-27 13:00:40 -0800252 /* XXX: perhaps add an extra
253 * policy check here, to see
254 * if we should allow or
255 * reject a packet from a
256 * different source
257 * address/port.
258 */
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800259 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900260
Herbert Xu752c1f42006-02-27 13:00:40 -0800261 /*
262 * 2) ignore UDP/TCP checksums in case
263 * of NAT-T in Transport Mode, or
264 * perform other post-processing fixes
265 * as per draft-ietf-ipsec-udp-encaps-06,
266 * section 3.1.2
267 */
Herbert Xu8bd17072007-10-10 15:41:41 -0700268 if (x->props.mode == XFRM_MODE_TRANSPORT)
Herbert Xu752c1f42006-02-27 13:00:40 -0800269 skb->ip_summed = CHECKSUM_UNNECESSARY;
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800270 }
271
Herbert Xu4bf05ec2006-02-27 13:00:01 -0800272 pskb_trim(skb, skb->len - alen - padlen - 2);
Arnaldo Carvalho de Melo967b05f2007-03-13 13:51:52 -0300273 __skb_pull(skb, sizeof(*esph) + esp->conf.ivlen);
274 skb_set_transport_header(skb, -ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Herbert Xu631a66982007-10-10 15:46:21 -0700276 return nexthdr[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278out:
279 return -EINVAL;
280}
281
Patrick McHardyc5c25232007-04-09 11:47:18 -0700282static u32 esp4_get_mtu(struct xfrm_state *x, int mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct esp_data *esp = x->data;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000285 u32 blksize = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
Patrick McHardyc5c25232007-04-09 11:47:18 -0700286 u32 align = max_t(u32, blksize, esp->conf.padlen);
287 u32 rem;
288
289 mtu -= x->props.header_len + esp->auth.icv_trunc_len;
290 rem = mtu & (align - 1);
291 mtu &= ~(align - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Diego Beltrami0a694522006-10-03 23:47:05 -0700293 switch (x->props.mode) {
294 case XFRM_MODE_TUNNEL:
Diego Beltrami0a694522006-10-03 23:47:05 -0700295 break;
296 default:
297 case XFRM_MODE_TRANSPORT:
298 /* The worst case */
Patrick McHardyc5c25232007-04-09 11:47:18 -0700299 mtu -= blksize - 4;
300 mtu += min_t(u32, blksize - 4, rem);
Diego Beltrami0a694522006-10-03 23:47:05 -0700301 break;
302 case XFRM_MODE_BEET:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900303 /* The worst case. */
Patrick McHardyc5c25232007-04-09 11:47:18 -0700304 mtu += min_t(u32, IPV4_BEET_PHMAXLEN, rem);
Diego Beltrami0a694522006-10-03 23:47:05 -0700305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Diego Beltrami0a694522006-10-03 23:47:05 -0700307
Patrick McHardyc5c25232007-04-09 11:47:18 -0700308 return mtu - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311static void esp4_err(struct sk_buff *skb, u32 info)
312{
313 struct iphdr *iph = (struct iphdr*)skb->data;
314 struct ip_esp_hdr *esph = (struct ip_esp_hdr*)(skb->data+(iph->ihl<<2));
315 struct xfrm_state *x;
316
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300317 if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH ||
318 icmp_hdr(skb)->code != ICMP_FRAG_NEEDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return;
320
321 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, esph->spi, IPPROTO_ESP, AF_INET);
322 if (!x)
323 return;
Patrick McHardy64ce2072005-08-09 20:50:53 -0700324 NETDEBUG(KERN_DEBUG "pmtu discovery on SA ESP/%08x/%08x\n",
325 ntohl(esph->spi), ntohl(iph->daddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 xfrm_state_put(x);
327}
328
329static void esp_destroy(struct xfrm_state *x)
330{
331 struct esp_data *esp = x->data;
332
333 if (!esp)
334 return;
335
Herbert Xu6b7326c2006-07-30 15:41:01 +1000336 crypto_free_blkcipher(esp->conf.tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700337 esp->conf.tfm = NULL;
338 kfree(esp->conf.ivec);
339 esp->conf.ivec = NULL;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000340 crypto_free_hash(esp->auth.tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700341 esp->auth.tfm = NULL;
342 kfree(esp->auth.work_icv);
343 esp->auth.work_icv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 kfree(esp);
345}
346
Herbert Xu72cb6962005-06-20 13:18:08 -0700347static int esp_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 struct esp_data *esp = NULL;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000350 struct crypto_blkcipher *tfm;
Patrick McHardyc5c25232007-04-09 11:47:18 -0700351 u32 align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (x->ealg == NULL)
354 goto error;
355
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700356 esp = kzalloc(sizeof(*esp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (esp == NULL)
358 return -ENOMEM;
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (x->aalg) {
361 struct xfrm_algo_desc *aalg_desc;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000362 struct crypto_hash *hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Herbert Xu07d4ee52006-08-20 14:24:50 +1000364 hash = crypto_alloc_hash(x->aalg->alg_name, 0,
365 CRYPTO_ALG_ASYNC);
366 if (IS_ERR(hash))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 goto error;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000368
369 esp->auth.tfm = hash;
Herbert Xu4b7137f2007-10-08 17:13:44 -0700370 if (crypto_hash_setkey(hash, x->aalg->alg_key,
371 (x->aalg->alg_key_len + 7) / 8))
Herbert Xu07d4ee52006-08-20 14:24:50 +1000372 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
375 BUG_ON(!aalg_desc);
376
377 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
Herbert Xu07d4ee52006-08-20 14:24:50 +1000378 crypto_hash_digestsize(hash)) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700379 NETDEBUG(KERN_INFO "ESP: %s digestsize %u != %hu\n",
380 x->aalg->alg_name,
Herbert Xu07d4ee52006-08-20 14:24:50 +1000381 crypto_hash_digestsize(hash),
Patrick McHardy64ce2072005-08-09 20:50:53 -0700382 aalg_desc->uinfo.auth.icv_fullbits/8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto error;
384 }
385
386 esp->auth.icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
387 esp->auth.icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
388
389 esp->auth.work_icv = kmalloc(esp->auth.icv_full_len, GFP_KERNEL);
390 if (!esp->auth.work_icv)
391 goto error;
392 }
Herbert Xu4b7137f2007-10-08 17:13:44 -0700393
Herbert Xu6b7326c2006-07-30 15:41:01 +1000394 tfm = crypto_alloc_blkcipher(x->ealg->alg_name, 0, CRYPTO_ALG_ASYNC);
395 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto error;
Herbert Xu6b7326c2006-07-30 15:41:01 +1000397 esp->conf.tfm = tfm;
398 esp->conf.ivlen = crypto_blkcipher_ivsize(tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 esp->conf.padlen = 0;
400 if (esp->conf.ivlen) {
401 esp->conf.ivec = kmalloc(esp->conf.ivlen, GFP_KERNEL);
402 if (unlikely(esp->conf.ivec == NULL))
403 goto error;
David S. Millere4bec822006-09-22 15:17:35 -0700404 esp->conf.ivinitted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
Herbert Xu4b7137f2007-10-08 17:13:44 -0700406 if (crypto_blkcipher_setkey(tfm, x->ealg->alg_key,
407 (x->ealg->alg_key_len + 7) / 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 goto error;
409 x->props.header_len = sizeof(struct ip_esp_hdr) + esp->conf.ivlen;
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700410 if (x->props.mode == XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 x->props.header_len += sizeof(struct iphdr);
Patrick McHardyac758e32007-04-09 11:47:58 -0700412 else if (x->props.mode == XFRM_MODE_BEET)
413 x->props.header_len += IPV4_BEET_PHMAXLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (x->encap) {
415 struct xfrm_encap_tmpl *encap = x->encap;
416
417 switch (encap->encap_type) {
418 default:
419 goto error;
420 case UDP_ENCAP_ESPINUDP:
421 x->props.header_len += sizeof(struct udphdr);
422 break;
423 case UDP_ENCAP_ESPINUDP_NON_IKE:
424 x->props.header_len += sizeof(struct udphdr) + 2 * sizeof(u32);
425 break;
426 }
427 }
428 x->data = esp;
Patrick McHardyc5c25232007-04-09 11:47:18 -0700429 align = ALIGN(crypto_blkcipher_blocksize(esp->conf.tfm), 4);
430 if (esp->conf.padlen)
431 align = max_t(u32, align, esp->conf.padlen);
432 x->props.trailer_len = align + 1 + esp->auth.icv_trunc_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434
435error:
436 x->data = esp;
437 esp_destroy(x);
438 x->data = NULL;
439 return -EINVAL;
440}
441
442static struct xfrm_type esp_type =
443{
444 .description = "ESP4",
445 .owner = THIS_MODULE,
446 .proto = IPPROTO_ESP,
Herbert Xu436a0a42007-10-08 17:25:53 -0700447 .flags = XFRM_TYPE_REPLAY_PROT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 .init_state = esp_init_state,
449 .destructor = esp_destroy,
Patrick McHardyc5c25232007-04-09 11:47:18 -0700450 .get_mtu = esp4_get_mtu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 .input = esp_input,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 .output = esp_output
453};
454
455static struct net_protocol esp4_protocol = {
456 .handler = xfrm4_rcv,
457 .err_handler = esp4_err,
458 .no_policy = 1,
459};
460
461static int __init esp4_init(void)
462{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (xfrm_register_type(&esp_type, AF_INET) < 0) {
464 printk(KERN_INFO "ip esp init: can't add xfrm type\n");
465 return -EAGAIN;
466 }
467 if (inet_add_protocol(&esp4_protocol, IPPROTO_ESP) < 0) {
468 printk(KERN_INFO "ip esp init: can't add protocol\n");
469 xfrm_unregister_type(&esp_type, AF_INET);
470 return -EAGAIN;
471 }
472 return 0;
473}
474
475static void __exit esp4_fini(void)
476{
477 if (inet_del_protocol(&esp4_protocol, IPPROTO_ESP) < 0)
478 printk(KERN_INFO "ip esp close: can't remove protocol\n");
479 if (xfrm_unregister_type(&esp_type, AF_INET) < 0)
480 printk(KERN_INFO "ip esp close: can't remove xfrm type\n");
481}
482
483module_init(esp4_init);
484module_exit(esp4_fini);
485MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700486MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_ESP);