xform_esp.c revision 1.94 1 /* $NetBSD: xform_esp.c,v 1.94 2018/05/30 17:17:11 maxv Exp $ */
2 /* $FreeBSD: xform_esp.c,v 1.2.2.1 2003/01/24 05:11:36 sam Exp $ */
3 /* $OpenBSD: ip_esp.c,v 1.69 2001/06/26 06:18:59 angelos Exp $ */
4
5 /*
6 * The authors of this code are John Ioannidis (ji (at) tla.org),
7 * Angelos D. Keromytis (kermit (at) csd.uch.gr) and
8 * Niels Provos (provos (at) physnet.uni-hamburg.de).
9 *
10 * The original version of this code was written by John Ioannidis
11 * for BSD/OS in Athens, Greece, in November 1995.
12 *
13 * Ported to OpenBSD and NetBSD, with additional transforms, in December 1996,
14 * by Angelos D. Keromytis.
15 *
16 * Additional transforms and features in 1997 and 1998 by Angelos D. Keromytis
17 * and Niels Provos.
18 *
19 * Additional features in 1999 by Angelos D. Keromytis.
20 *
21 * Copyright (C) 1995, 1996, 1997, 1998, 1999 by John Ioannidis,
22 * Angelos D. Keromytis and Niels Provos.
23 * Copyright (c) 2001 Angelos D. Keromytis.
24 *
25 * Permission to use, copy, and modify this software with or without fee
26 * is hereby granted, provided that this entire notice is included in
27 * all copies of any software which is or includes a copy or
28 * modification of this software.
29 * You may use this code under the GNU public license if you so wish. Please
30 * contribute changes back to the authors under this freer than GPL license
31 * so that we may further the use of strong encryption without limitations to
32 * all.
33 *
34 * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
35 * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
36 * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
37 * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
38 * PURPOSE.
39 */
40
41 #include <sys/cdefs.h>
42 __KERNEL_RCSID(0, "$NetBSD: xform_esp.c,v 1.94 2018/05/30 17:17:11 maxv Exp $");
43
44 #if defined(_KERNEL_OPT)
45 #include "opt_inet.h"
46 #include "opt_ipsec.h"
47 #endif
48
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/mbuf.h>
52 #include <sys/socket.h>
53 #include <sys/syslog.h>
54 #include <sys/kernel.h>
55 #include <sys/sysctl.h>
56 #include <sys/cprng.h>
57 #include <sys/pool.h>
58 #include <sys/pserialize.h>
59
60 #include <net/if.h>
61
62 #include <netinet/in.h>
63 #include <netinet/in_systm.h>
64 #include <netinet/ip.h>
65 #include <netinet/ip_ecn.h>
66 #include <netinet/ip6.h>
67
68 #include <net/route.h>
69 #include <netipsec/ipsec.h>
70 #include <netipsec/ipsec_private.h>
71 #include <netipsec/ah.h>
72 #include <netipsec/ah_var.h>
73 #include <netipsec/esp.h>
74 #include <netipsec/esp_var.h>
75 #include <netipsec/xform.h>
76
77 #ifdef INET6
78 #include <netinet6/ip6_var.h>
79 #include <netipsec/ipsec6.h>
80 #endif
81
82 #include <netipsec/key.h>
83 #include <netipsec/key_debug.h>
84
85 #include <opencrypto/cryptodev.h>
86
87 percpu_t *espstat_percpu;
88
89 int esp_enable = 1;
90
91 static int esp_max_ivlen; /* max iv length over all algorithms */
92
93 static int esp_input_cb(struct cryptop *op);
94 static int esp_output_cb(struct cryptop *crp);
95
96 const uint8_t esp_stats[256] = { SADB_EALG_STATS_INIT };
97
98 static pool_cache_t esp_tdb_crypto_pool_cache;
99 static size_t esp_pool_item_size;
100
101 /*
102 * NB: this is public for use by the PF_KEY support.
103 * NB: if you add support here; be sure to add code to esp_attach below!
104 */
105 const struct enc_xform *
106 esp_algorithm_lookup(int alg)
107 {
108
109 switch (alg) {
110 case SADB_EALG_DESCBC:
111 return &enc_xform_des;
112 case SADB_EALG_3DESCBC:
113 return &enc_xform_3des;
114 case SADB_X_EALG_AES:
115 return &enc_xform_rijndael128;
116 case SADB_X_EALG_BLOWFISHCBC:
117 return &enc_xform_blf;
118 case SADB_X_EALG_CAST128CBC:
119 return &enc_xform_cast5;
120 case SADB_X_EALG_SKIPJACK:
121 return &enc_xform_skipjack;
122 case SADB_X_EALG_CAMELLIACBC:
123 return &enc_xform_camellia;
124 case SADB_X_EALG_AESCTR:
125 return &enc_xform_aes_ctr;
126 case SADB_X_EALG_AESGCM16:
127 return &enc_xform_aes_gcm;
128 case SADB_X_EALG_AESGMAC:
129 return &enc_xform_aes_gmac;
130 case SADB_EALG_NULL:
131 return &enc_xform_null;
132 }
133 return NULL;
134 }
135
136 size_t
137 esp_hdrsiz(const struct secasvar *sav)
138 {
139 size_t size;
140
141 if (sav != NULL) {
142 /*XXX not right for null algorithm--does it matter??*/
143 KASSERT(sav->tdb_encalgxform != NULL);
144
145 /*
146 * base header size
147 * + iv length for CBC mode
148 * + max pad length
149 * + sizeof(esp trailer)
150 * + icv length (if any).
151 */
152 if (sav->flags & SADB_X_EXT_OLD)
153 size = sizeof(struct esp);
154 else
155 size = sizeof(struct newesp);
156 size += sav->tdb_encalgxform->ivsize + 9 +
157 sizeof(struct esptail);
158
159 /*XXX need alg check???*/
160 if (sav->tdb_authalgxform != NULL && sav->replay)
161 size += ah_authsiz(sav);
162 } else {
163 /*
164 * base header size
165 * + max iv length for CBC mode
166 * + max pad length
167 * + sizeof(esp trailer)
168 * + max icv supported.
169 */
170 size = sizeof(struct newesp) + esp_max_ivlen + 9 +
171 sizeof(struct esptail) + ah_authsiz(NULL);
172 }
173 return size;
174 }
175
176 /*
177 * esp_init() is called when an SPI is being set up.
178 */
179 static int
180 esp_init(struct secasvar *sav, const struct xformsw *xsp)
181 {
182 const struct enc_xform *txform;
183 struct cryptoini cria, crie, *cr;
184 int keylen;
185 int error;
186
187 txform = esp_algorithm_lookup(sav->alg_enc);
188 if (txform == NULL) {
189 DPRINTF(("%s: unsupported encryption algorithm %d\n", __func__,
190 sav->alg_enc));
191 return EINVAL;
192 }
193 if (sav->key_enc == NULL) {
194 DPRINTF(("%s: no encoding key for %s algorithm\n", __func__,
195 txform->name));
196 return EINVAL;
197 }
198 if ((sav->flags&(SADB_X_EXT_OLD|SADB_X_EXT_IV4B)) == SADB_X_EXT_IV4B) {
199 DPRINTF(("%s: 4-byte IV not supported with protocol\n",
200 __func__));
201 return EINVAL;
202 }
203 keylen = _KEYLEN(sav->key_enc);
204 if (txform->minkey > keylen || keylen > txform->maxkey) {
205 DPRINTF(("%s: invalid key length %u, must be in "
206 "the range [%u..%u] for algorithm %s\n", __func__,
207 keylen, txform->minkey, txform->maxkey, txform->name));
208 return EINVAL;
209 }
210
211 sav->ivlen = txform->ivsize;
212
213 /*
214 * Setup AH-related state.
215 */
216 if (sav->alg_auth != 0) {
217 error = ah_init0(sav, xsp, &cria);
218 if (error)
219 return error;
220 }
221
222 /* NB: override anything set in ah_init0 */
223 sav->tdb_xform = xsp;
224 sav->tdb_encalgxform = txform;
225
226 switch (sav->alg_enc) {
227 case SADB_X_EALG_AESGCM16:
228 case SADB_X_EALG_AESGMAC:
229 switch (keylen) {
230 case 20:
231 sav->alg_auth = SADB_X_AALG_AES128GMAC;
232 sav->tdb_authalgxform = &auth_hash_gmac_aes_128;
233 break;
234 case 28:
235 sav->alg_auth = SADB_X_AALG_AES192GMAC;
236 sav->tdb_authalgxform = &auth_hash_gmac_aes_192;
237 break;
238 case 36:
239 sav->alg_auth = SADB_X_AALG_AES256GMAC;
240 sav->tdb_authalgxform = &auth_hash_gmac_aes_256;
241 break;
242 default:
243 DPRINTF(("%s: invalid key length %u, must be either of "
244 "20, 28 or 36\n", __func__, keylen));
245 return EINVAL;
246 }
247
248 memset(&cria, 0, sizeof(cria));
249 cria.cri_alg = sav->tdb_authalgxform->type;
250 cria.cri_klen = _KEYBITS(sav->key_enc);
251 cria.cri_key = _KEYBUF(sav->key_enc);
252 break;
253 default:
254 break;
255 }
256
257 /* Initialize crypto session. */
258 memset(&crie, 0, sizeof(crie));
259 crie.cri_alg = sav->tdb_encalgxform->type;
260 crie.cri_klen = _KEYBITS(sav->key_enc);
261 crie.cri_key = _KEYBUF(sav->key_enc);
262 /* XXX Rounds ? */
263
264 if (sav->tdb_authalgxform && sav->tdb_encalgxform) {
265 /* init both auth & enc */
266 crie.cri_next = &cria;
267 cr = &crie;
268 } else if (sav->tdb_encalgxform) {
269 cr = &crie;
270 } else if (sav->tdb_authalgxform) {
271 cr = &cria;
272 } else {
273 /* XXX cannot happen? */
274 DPRINTF(("%s: no encoding OR authentication xform!\n",
275 __func__));
276 return EINVAL;
277 }
278
279 return crypto_newsession(&sav->tdb_cryptoid, cr, crypto_support);
280 }
281
282 /*
283 * Paranoia.
284 */
285 static int
286 esp_zeroize(struct secasvar *sav)
287 {
288 /* NB: ah_zerorize free's the crypto session state */
289 int error = ah_zeroize(sav);
290
291 if (sav->key_enc) {
292 explicit_memset(_KEYBUF(sav->key_enc), 0,
293 _KEYLEN(sav->key_enc));
294 }
295 sav->tdb_encalgxform = NULL;
296 sav->tdb_xform = NULL;
297 return error;
298 }
299
300 /*
301 * ESP input processing, called (eventually) through the protocol switch.
302 */
303 static int
304 esp_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff)
305 {
306 const struct auth_hash *esph;
307 const struct enc_xform *espx;
308 struct tdb_crypto *tc;
309 int plen, alen, hlen, error, stat = ESP_STAT_CRYPTO;
310 struct newesp *esp;
311 struct cryptodesc *crde;
312 struct cryptop *crp;
313
314 KASSERT(sav != NULL);
315 KASSERT(sav->tdb_encalgxform != NULL);
316 KASSERTMSG((skip&3) == 0 && (m->m_pkthdr.len&3) == 0,
317 "misaligned packet, skip %u pkt len %u",
318 skip, m->m_pkthdr.len);
319
320 /* XXX don't pullup, just copy header */
321 M_REGION_GET(esp, struct newesp *, m, skip, sizeof(struct newesp));
322 if (esp == NULL) {
323 /* m already freed */
324 return ENOBUFS;
325 }
326
327 esph = sav->tdb_authalgxform;
328 espx = sav->tdb_encalgxform;
329 KASSERT(espx != NULL);
330
331 /* Determine the ESP header length */
332 if (sav->flags & SADB_X_EXT_OLD)
333 hlen = sizeof(struct esp) + sav->ivlen;
334 else
335 hlen = sizeof(struct newesp) + sav->ivlen;
336 /* Authenticator hash size */
337 alen = esph ? esph->authsize : 0;
338
339 /*
340 * Verify payload length is multiple of encryption algorithm
341 * block size.
342 *
343 * NB: This works for the null algorithm because the blocksize
344 * is 4 and all packets must be 4-byte aligned regardless
345 * of the algorithm.
346 */
347 plen = m->m_pkthdr.len - (skip + hlen + alen);
348 if ((plen & (espx->blocksize - 1)) || (plen <= 0)) {
349 char buf[IPSEC_ADDRSTRLEN];
350 DPRINTF(("%s: payload of %d octets not a multiple of %d octets,"
351 " SA %s/%08lx\n", __func__, plen, espx->blocksize,
352 ipsec_address(&sav->sah->saidx.dst, buf, sizeof(buf)),
353 (u_long) ntohl(sav->spi)));
354 stat = ESP_STAT_BADILEN;
355 error = EINVAL;
356 goto out;
357 }
358
359 /*
360 * Check sequence number.
361 */
362 if (esph && sav->replay && !ipsec_chkreplay(ntohl(esp->esp_seq), sav)) {
363 char logbuf[IPSEC_LOGSASTRLEN];
364 DPRINTF(("%s: packet replay check for %s\n", __func__,
365 ipsec_logsastr(sav, logbuf, sizeof(logbuf))));
366 stat = ESP_STAT_REPLAY;
367 error = EACCES;
368 goto out;
369 }
370
371 /* Update the counters */
372 ESP_STATADD(ESP_STAT_IBYTES, m->m_pkthdr.len - skip - hlen - alen);
373
374 /* Get crypto descriptors */
375 crp = crypto_getreq(esph ? 2 : 1);
376 if (crp == NULL) {
377 DPRINTF(("%s: failed to acquire crypto descriptors\n",
378 __func__));
379 error = ENOBUFS;
380 goto out;
381 }
382
383 /* Get IPsec-specific opaque pointer */
384 size_t extra __diagused = esph == NULL ? 0 : alen;
385 KASSERTMSG(sizeof(*tc) + extra <= esp_pool_item_size,
386 "sizeof(*tc) + extra=%zu > esp_pool_item_size=%zu\n",
387 sizeof(*tc) + extra, esp_pool_item_size);
388 tc = pool_cache_get(esp_tdb_crypto_pool_cache, PR_NOWAIT);
389 if (tc == NULL) {
390 DPRINTF(("%s: failed to allocate tdb_crypto\n", __func__));
391 error = ENOBUFS;
392 goto out1;
393 }
394
395 error = m_makewritable(&m, 0, m->m_pkthdr.len, M_NOWAIT);
396 if (error) {
397 DPRINTF(("%s: m_makewritable failed\n", __func__));
398 goto out2;
399 }
400
401 if (esph) {
402 struct cryptodesc *crda;
403
404 KASSERT(crp->crp_desc != NULL);
405 crda = crp->crp_desc;
406
407 /* Authentication descriptor */
408 crda->crd_skip = skip;
409 if (espx->type == CRYPTO_AES_GCM_16)
410 crda->crd_len = hlen - sav->ivlen;
411 else
412 crda->crd_len = m->m_pkthdr.len - (skip + alen);
413 crda->crd_inject = m->m_pkthdr.len - alen;
414
415 crda->crd_alg = esph->type;
416 if (espx->type == CRYPTO_AES_GCM_16 ||
417 espx->type == CRYPTO_AES_GMAC) {
418 crda->crd_key = _KEYBUF(sav->key_enc);
419 crda->crd_klen = _KEYBITS(sav->key_enc);
420 } else {
421 crda->crd_key = _KEYBUF(sav->key_auth);
422 crda->crd_klen = _KEYBITS(sav->key_auth);
423 }
424
425 /* Copy the authenticator */
426 m_copydata(m, m->m_pkthdr.len - alen, alen, (tc + 1));
427
428 /* Chain authentication request */
429 crde = crda->crd_next;
430 } else {
431 crde = crp->crp_desc;
432 }
433
434 {
435 int s = pserialize_read_enter();
436
437 /*
438 * Take another reference to the SA for opencrypto callback.
439 */
440 if (__predict_false(sav->state == SADB_SASTATE_DEAD)) {
441 pserialize_read_exit(s);
442 stat = ESP_STAT_NOTDB;
443 error = ENOENT;
444 goto out2;
445 }
446 KEY_SA_REF(sav);
447 pserialize_read_exit(s);
448 }
449
450 /* Crypto operation descriptor */
451 crp->crp_ilen = m->m_pkthdr.len; /* Total input length */
452 crp->crp_flags = CRYPTO_F_IMBUF;
453 crp->crp_buf = m;
454 crp->crp_callback = esp_input_cb;
455 crp->crp_sid = sav->tdb_cryptoid;
456 crp->crp_opaque = tc;
457
458 /* These are passed as-is to the callback */
459 tc->tc_spi = sav->spi;
460 tc->tc_dst = sav->sah->saidx.dst;
461 tc->tc_proto = sav->sah->saidx.proto;
462 tc->tc_protoff = protoff;
463 tc->tc_skip = skip;
464 tc->tc_sav = sav;
465
466 /* Decryption descriptor */
467 KASSERTMSG(crde != NULL, "null esp crypto descriptor");
468 crde->crd_skip = skip + hlen;
469 if (espx->type == CRYPTO_AES_GMAC)
470 crde->crd_len = 0;
471 else
472 crde->crd_len = m->m_pkthdr.len - (skip + hlen + alen);
473 crde->crd_inject = skip + hlen - sav->ivlen;
474 crde->crd_alg = espx->type;
475 crde->crd_key = _KEYBUF(sav->key_enc);
476 crde->crd_klen = _KEYBITS(sav->key_enc);
477 /* XXX Rounds ? */
478
479 return crypto_dispatch(crp);
480
481 out2:
482 pool_cache_put(esp_tdb_crypto_pool_cache, tc);
483 out1:
484 crypto_freereq(crp);
485 out:
486 ESP_STATINC(stat);
487 m_freem(m);
488 return error;
489 }
490
491 #ifdef INET6
492 #define IPSEC_COMMON_INPUT_CB(m, sav, skip, protoff) do { \
493 if (saidx->dst.sa.sa_family == AF_INET6) { \
494 error = ipsec6_common_input_cb(m, sav, skip, protoff); \
495 } else { \
496 error = ipsec4_common_input_cb(m, sav, skip, protoff); \
497 } \
498 } while (0)
499 #else
500 #define IPSEC_COMMON_INPUT_CB(m, sav, skip, protoff) \
501 (error = ipsec4_common_input_cb(m, sav, skip, protoff))
502 #endif
503
504 /*
505 * ESP input callback from the crypto driver.
506 */
507 static int
508 esp_input_cb(struct cryptop *crp)
509 {
510 char buf[IPSEC_ADDRSTRLEN];
511 uint8_t lastthree[3], aalg[AH_ALEN_MAX];
512 int hlen, skip, protoff, error;
513 struct mbuf *m;
514 const struct auth_hash *esph;
515 struct tdb_crypto *tc;
516 struct secasvar *sav;
517 struct secasindex *saidx;
518 void *ptr;
519 IPSEC_DECLARE_LOCK_VARIABLE;
520
521 KASSERT(crp->crp_desc != NULL);
522 KASSERT(crp->crp_opaque != NULL);
523
524 tc = crp->crp_opaque;
525 skip = tc->tc_skip;
526 protoff = tc->tc_protoff;
527 m = crp->crp_buf;
528
529 IPSEC_ACQUIRE_GLOBAL_LOCKS();
530
531 sav = tc->tc_sav;
532 saidx = &sav->sah->saidx;
533 KASSERTMSG(saidx->dst.sa.sa_family == AF_INET ||
534 saidx->dst.sa.sa_family == AF_INET6,
535 "unexpected protocol family %u", saidx->dst.sa.sa_family);
536
537 esph = sav->tdb_authalgxform;
538
539 /* Check for crypto errors */
540 if (crp->crp_etype) {
541 /* Reset the session ID */
542 if (sav->tdb_cryptoid != 0)
543 sav->tdb_cryptoid = crp->crp_sid;
544
545 if (crp->crp_etype == EAGAIN) {
546 KEY_SA_UNREF(&sav);
547 IPSEC_RELEASE_GLOBAL_LOCKS();
548 return crypto_dispatch(crp);
549 }
550
551 ESP_STATINC(ESP_STAT_NOXFORM);
552 DPRINTF(("%s: crypto error %d\n", __func__, crp->crp_etype));
553 error = crp->crp_etype;
554 goto bad;
555 }
556
557 ESP_STATINC(ESP_STAT_HIST + esp_stats[sav->alg_enc]);
558
559 /* If authentication was performed, check now. */
560 if (esph != NULL) {
561 /*
562 * If we have a tag, it means an IPsec-aware NIC did
563 * the verification for us. Otherwise we need to
564 * check the authentication calculation.
565 */
566 AH_STATINC(AH_STAT_HIST + ah_stats[sav->alg_auth]);
567 /* Copy the authenticator from the packet */
568 m_copydata(m, m->m_pkthdr.len - esph->authsize,
569 esph->authsize, aalg);
570
571 ptr = (tc + 1);
572
573 /* Verify authenticator */
574 if (!consttime_memequal(ptr, aalg, esph->authsize)) {
575 DPRINTF(("%s: authentication hash mismatch "
576 "for packet in SA %s/%08lx\n", __func__,
577 ipsec_address(&saidx->dst, buf,
578 sizeof(buf)), (u_long) ntohl(sav->spi)));
579 ESP_STATINC(ESP_STAT_BADAUTH);
580 error = EACCES;
581 goto bad;
582 }
583
584 /* Remove trailing authenticator */
585 m_adj(m, -(esph->authsize));
586 }
587
588 /* Release the crypto descriptors */
589 pool_cache_put(esp_tdb_crypto_pool_cache, tc);
590 tc = NULL;
591 crypto_freereq(crp);
592 crp = NULL;
593
594 /*
595 * Packet is now decrypted.
596 */
597 m->m_flags |= M_DECRYPTED;
598
599 /*
600 * Update replay sequence number, if appropriate.
601 */
602 if (sav->replay) {
603 uint32_t seq;
604
605 m_copydata(m, skip + offsetof(struct newesp, esp_seq),
606 sizeof(seq), &seq);
607 if (ipsec_updatereplay(ntohl(seq), sav)) {
608 char logbuf[IPSEC_LOGSASTRLEN];
609 DPRINTF(("%s: packet replay check for %s\n", __func__,
610 ipsec_logsastr(sav, logbuf, sizeof(logbuf))));
611 ESP_STATINC(ESP_STAT_REPLAY);
612 error = EACCES;
613 goto bad;
614 }
615 }
616
617 /* Determine the ESP header length */
618 if (sav->flags & SADB_X_EXT_OLD)
619 hlen = sizeof(struct esp) + sav->ivlen;
620 else
621 hlen = sizeof(struct newesp) + sav->ivlen;
622
623 /* Remove the ESP header and IV from the mbuf. */
624 error = m_striphdr(m, skip, hlen);
625 if (error) {
626 ESP_STATINC(ESP_STAT_HDROPS);
627 DPRINTF(("%s: bad mbuf chain, SA %s/%08lx\n", __func__,
628 ipsec_address(&sav->sah->saidx.dst, buf, sizeof(buf)),
629 (u_long) ntohl(sav->spi)));
630 goto bad;
631 }
632
633 /* Save the last three bytes of decrypted data */
634 m_copydata(m, m->m_pkthdr.len - 3, 3, lastthree);
635
636 /* Verify pad length */
637 if (lastthree[1] + 2 > m->m_pkthdr.len - skip) {
638 ESP_STATINC(ESP_STAT_BADILEN);
639 DPRINTF(("%s: invalid padding length %d "
640 "for %u byte packet in SA %s/%08lx\n", __func__,
641 lastthree[1], m->m_pkthdr.len - skip,
642 ipsec_address(&sav->sah->saidx.dst, buf, sizeof(buf)),
643 (u_long) ntohl(sav->spi)));
644 error = EINVAL;
645 goto bad;
646 }
647
648 /* Verify correct decryption by checking the last padding bytes */
649 if ((sav->flags & SADB_X_EXT_PMASK) != SADB_X_EXT_PRAND) {
650 if (lastthree[1] != lastthree[0] && lastthree[1] != 0) {
651 ESP_STATINC(ESP_STAT_BADENC);
652 DPRINTF(("%s: decryption failed for packet in SA "
653 "%s/%08lx\n", __func__,
654 ipsec_address(&sav->sah->saidx.dst, buf,
655 sizeof(buf)), (u_long) ntohl(sav->spi)));
656 DPRINTF(("%s: %x %x\n", __func__, lastthree[0],
657 lastthree[1]));
658 error = EINVAL;
659 goto bad;
660 }
661 }
662
663 /* Trim the mbuf chain to remove trailing authenticator and padding */
664 m_adj(m, -(lastthree[1] + 2));
665
666 /* Restore the Next Protocol field */
667 m_copyback(m, protoff, sizeof(uint8_t), lastthree + 2);
668
669 IPSEC_COMMON_INPUT_CB(m, sav, skip, protoff);
670
671 KEY_SA_UNREF(&sav);
672 IPSEC_RELEASE_GLOBAL_LOCKS();
673 return error;
674 bad:
675 if (sav)
676 KEY_SA_UNREF(&sav);
677 IPSEC_RELEASE_GLOBAL_LOCKS();
678 if (m != NULL)
679 m_freem(m);
680 if (tc != NULL)
681 pool_cache_put(esp_tdb_crypto_pool_cache, tc);
682 if (crp != NULL)
683 crypto_freereq(crp);
684 return error;
685 }
686
687 /*
688 * ESP output routine, called by ipsec[46]_process_packet().
689 */
690 static int
691 esp_output(struct mbuf *m, const struct ipsecrequest *isr, struct secasvar *sav,
692 int skip, int protoff)
693 {
694 char buf[IPSEC_ADDRSTRLEN];
695 const struct enc_xform *espx;
696 const struct auth_hash *esph;
697 int hlen, rlen, tlen, padlen, blks, alen, i, roff;
698 struct mbuf *mo = NULL;
699 struct tdb_crypto *tc;
700 struct secasindex *saidx;
701 unsigned char *tail;
702 uint8_t prot;
703 int error, maxpacketsize;
704 struct esptail *esptail;
705 struct cryptodesc *crde, *crda;
706 struct cryptop *crp;
707
708 esph = sav->tdb_authalgxform;
709 espx = sav->tdb_encalgxform;
710 KASSERT(espx != NULL);
711
712 if (sav->flags & SADB_X_EXT_OLD)
713 hlen = sizeof(struct esp) + sav->ivlen;
714 else
715 hlen = sizeof(struct newesp) + sav->ivlen;
716
717 if (esph)
718 alen = esph->authsize;
719 else
720 alen = 0;
721
722 /*
723 * NB: The null encoding transform has a blocksize of 4
724 * so that headers are properly aligned.
725 */
726 blks = espx->blocksize; /* IV blocksize */
727
728 /* Raw payload length. */
729 rlen = m->m_pkthdr.len - skip;
730
731 /* Encryption padding. */
732 padlen = ((blks - ((rlen + sizeof(struct esptail)) % blks)) % blks);
733
734 /* Length of what we append (tail). */
735 tlen = padlen + sizeof(struct esptail) + alen;
736
737 ESP_STATINC(ESP_STAT_OUTPUT);
738
739 saidx = &sav->sah->saidx;
740 /* Check for maximum packet size violations. */
741 switch (saidx->dst.sa.sa_family) {
742 #ifdef INET
743 case AF_INET:
744 maxpacketsize = IP_MAXPACKET;
745 break;
746 #endif
747 #ifdef INET6
748 case AF_INET6:
749 maxpacketsize = IPV6_MAXPACKET;
750 break;
751 #endif
752 default:
753 DPRINTF(("%s: unknown/unsupported protocol family %d, "
754 "SA %s/%08lx\n", __func__, saidx->dst.sa.sa_family,
755 ipsec_address(&saidx->dst, buf, sizeof(buf)),
756 (u_long)ntohl(sav->spi)));
757 ESP_STATINC(ESP_STAT_NOPF);
758 error = EPFNOSUPPORT;
759 goto bad;
760 }
761 if (skip + hlen + rlen + tlen > maxpacketsize) {
762 DPRINTF(("%s: packet in SA %s/%08lx got too big (len %u, "
763 "max len %u)\n", __func__,
764 ipsec_address(&saidx->dst, buf, sizeof(buf)),
765 (u_long) ntohl(sav->spi),
766 skip + hlen + rlen + tlen, maxpacketsize));
767 ESP_STATINC(ESP_STAT_TOOBIG);
768 error = EMSGSIZE;
769 goto bad;
770 }
771
772 /* Update the counters. */
773 ESP_STATADD(ESP_STAT_OBYTES, m->m_pkthdr.len - skip);
774
775 m = m_clone(m);
776 if (m == NULL) {
777 DPRINTF(("%s: cannot clone mbuf chain, SA %s/%08lx\n", __func__,
778 ipsec_address(&saidx->dst, buf, sizeof(buf)),
779 (u_long) ntohl(sav->spi)));
780 ESP_STATINC(ESP_STAT_HDROPS);
781 error = ENOBUFS;
782 goto bad;
783 }
784
785 /* Inject ESP header. */
786 mo = m_makespace(m, skip, hlen, &roff);
787 if (mo == NULL) {
788 DPRINTF(("%s: failed to inject %u byte ESP hdr for SA "
789 "%s/%08lx\n", __func__, hlen,
790 ipsec_address(&saidx->dst, buf, sizeof(buf)),
791 (u_long) ntohl(sav->spi)));
792 ESP_STATINC(ESP_STAT_HDROPS);
793 error = ENOBUFS;
794 goto bad;
795 }
796
797 /* Initialize ESP header. */
798 memcpy(mtod(mo, char *) + roff, &sav->spi, sizeof(uint32_t));
799 if (sav->replay) {
800 uint32_t replay;
801
802 #ifdef IPSEC_DEBUG
803 /* Emulate replay attack when ipsec_replay is TRUE. */
804 if (!ipsec_replay)
805 #endif
806 sav->replay->count++;
807
808 replay = htonl(sav->replay->count);
809 memcpy(mtod(mo,char *) + roff + sizeof(uint32_t), &replay,
810 sizeof(uint32_t));
811 }
812
813 /*
814 * Grow the mbuf, we will append data at the tail.
815 */
816 tail = m_pad(m, tlen);
817 if (tail == NULL) {
818 DPRINTF(("%s: m_pad failed for SA %s/%08lx\n", __func__,
819 ipsec_address(&saidx->dst, buf, sizeof(buf)),
820 (u_long) ntohl(sav->spi)));
821 m = NULL;
822 error = ENOBUFS;
823 goto bad;
824 }
825
826 /*
827 * Add padding: random, zero, or self-describing.
828 */
829 switch (sav->flags & SADB_X_EXT_PMASK) {
830 case SADB_X_EXT_PSEQ:
831 for (i = 0; i < padlen; i++)
832 tail[i] = i + 1;
833 break;
834 case SADB_X_EXT_PRAND:
835 (void)cprng_fast(tail, padlen);
836 break;
837 case SADB_X_EXT_PZERO:
838 default:
839 memset(tail, 0, padlen);
840 break;
841 }
842
843 /* Build the ESP Trailer. */
844 esptail = (struct esptail *)&tail[padlen];
845 esptail->esp_padlen = padlen;
846 m_copydata(m, protoff, sizeof(uint8_t), &esptail->esp_nxt);
847
848 /* Fix Next Protocol in IPv4/IPv6 header. */
849 prot = IPPROTO_ESP;
850 m_copyback(m, protoff, sizeof(uint8_t), &prot);
851
852 /* Get crypto descriptors. */
853 crp = crypto_getreq(esph ? 2 : 1);
854 if (crp == NULL) {
855 DPRINTF(("%s: failed to acquire crypto descriptors\n",
856 __func__));
857 ESP_STATINC(ESP_STAT_CRYPTO);
858 error = ENOBUFS;
859 goto bad;
860 }
861
862 /* Get the descriptors. */
863 crde = crp->crp_desc;
864 crda = crde->crd_next;
865
866 /* Encryption descriptor. */
867 crde->crd_skip = skip + hlen;
868 if (espx->type == CRYPTO_AES_GMAC)
869 crde->crd_len = 0;
870 else
871 crde->crd_len = m->m_pkthdr.len - (skip + hlen + alen);
872 crde->crd_flags = CRD_F_ENCRYPT;
873 crde->crd_inject = skip + hlen - sav->ivlen;
874 crde->crd_alg = espx->type;
875 crde->crd_key = _KEYBUF(sav->key_enc);
876 crde->crd_klen = _KEYBITS(sav->key_enc);
877 /* XXX Rounds ? */
878
879 /* IPsec-specific opaque crypto info. */
880 tc = pool_cache_get(esp_tdb_crypto_pool_cache, PR_NOWAIT);
881 if (tc == NULL) {
882 crypto_freereq(crp);
883 DPRINTF(("%s: failed to allocate tdb_crypto\n", __func__));
884 ESP_STATINC(ESP_STAT_CRYPTO);
885 error = ENOBUFS;
886 goto bad;
887 }
888
889 {
890 int s = pserialize_read_enter();
891
892 /*
893 * Take another reference to the SP and the SA for opencrypto callback.
894 */
895 if (__predict_false(isr->sp->state == IPSEC_SPSTATE_DEAD ||
896 sav->state == SADB_SASTATE_DEAD)) {
897 pserialize_read_exit(s);
898 pool_cache_put(esp_tdb_crypto_pool_cache, tc);
899 crypto_freereq(crp);
900 ESP_STATINC(ESP_STAT_NOTDB);
901 error = ENOENT;
902 goto bad;
903 }
904 KEY_SP_REF(isr->sp);
905 KEY_SA_REF(sav);
906 pserialize_read_exit(s);
907 }
908
909 /* Callback parameters */
910 tc->tc_isr = isr;
911 tc->tc_spi = sav->spi;
912 tc->tc_dst = saidx->dst;
913 tc->tc_proto = saidx->proto;
914 tc->tc_sav = sav;
915
916 /* Crypto operation descriptor. */
917 crp->crp_ilen = m->m_pkthdr.len; /* Total input length. */
918 crp->crp_flags = CRYPTO_F_IMBUF;
919 crp->crp_buf = m;
920 crp->crp_callback = esp_output_cb;
921 crp->crp_opaque = tc;
922 crp->crp_sid = sav->tdb_cryptoid;
923
924 if (esph) {
925 /* Authentication descriptor. */
926 crda->crd_skip = skip;
927 if (espx->type == CRYPTO_AES_GCM_16)
928 crda->crd_len = hlen - sav->ivlen;
929 else
930 crda->crd_len = m->m_pkthdr.len - (skip + alen);
931 crda->crd_inject = m->m_pkthdr.len - alen;
932
933 /* Authentication operation. */
934 crda->crd_alg = esph->type;
935 if (espx->type == CRYPTO_AES_GCM_16 ||
936 espx->type == CRYPTO_AES_GMAC) {
937 crda->crd_key = _KEYBUF(sav->key_enc);
938 crda->crd_klen = _KEYBITS(sav->key_enc);
939 } else {
940 crda->crd_key = _KEYBUF(sav->key_auth);
941 crda->crd_klen = _KEYBITS(sav->key_auth);
942 }
943 }
944
945 return crypto_dispatch(crp);
946
947 bad:
948 if (m)
949 m_freem(m);
950 return error;
951 }
952
953 /*
954 * ESP output callback from the crypto driver.
955 */
956 static int
957 esp_output_cb(struct cryptop *crp)
958 {
959 struct tdb_crypto *tc;
960 const struct ipsecrequest *isr;
961 struct secasvar *sav;
962 struct mbuf *m;
963 int err, error;
964 IPSEC_DECLARE_LOCK_VARIABLE;
965
966 KASSERT(crp->crp_opaque != NULL);
967 tc = crp->crp_opaque;
968 m = crp->crp_buf;
969
970 IPSEC_ACQUIRE_GLOBAL_LOCKS();
971
972 isr = tc->tc_isr;
973 sav = tc->tc_sav;
974
975 /* Check for crypto errors. */
976 if (crp->crp_etype) {
977 /* Reset session ID. */
978 if (sav->tdb_cryptoid != 0)
979 sav->tdb_cryptoid = crp->crp_sid;
980
981 if (crp->crp_etype == EAGAIN) {
982 IPSEC_RELEASE_GLOBAL_LOCKS();
983 return crypto_dispatch(crp);
984 }
985
986 ESP_STATINC(ESP_STAT_NOXFORM);
987 DPRINTF(("%s: crypto error %d\n", __func__, crp->crp_etype));
988 error = crp->crp_etype;
989 goto bad;
990 }
991
992 ESP_STATINC(ESP_STAT_HIST + esp_stats[sav->alg_enc]);
993 if (sav->tdb_authalgxform != NULL)
994 AH_STATINC(AH_STAT_HIST + ah_stats[sav->alg_auth]);
995
996 /* Release crypto descriptors. */
997 pool_cache_put(esp_tdb_crypto_pool_cache, tc);
998 crypto_freereq(crp);
999
1000 #ifdef IPSEC_DEBUG
1001 /* Emulate man-in-the-middle attack when ipsec_integrity is TRUE. */
1002 if (ipsec_integrity) {
1003 static unsigned char ipseczeroes[AH_ALEN_MAX];
1004 const struct auth_hash *esph;
1005
1006 /*
1007 * Corrupt HMAC if we want to test integrity verification of
1008 * the other side.
1009 */
1010 esph = sav->tdb_authalgxform;
1011 if (esph != NULL) {
1012 m_copyback(m, m->m_pkthdr.len - esph->authsize,
1013 esph->authsize, ipseczeroes);
1014 }
1015 }
1016 #endif
1017
1018 /* NB: m is reclaimed by ipsec_process_done. */
1019 err = ipsec_process_done(m, isr, sav);
1020 KEY_SA_UNREF(&sav);
1021 KEY_SP_UNREF(&isr->sp);
1022 IPSEC_RELEASE_GLOBAL_LOCKS();
1023 return err;
1024
1025 bad:
1026 if (sav)
1027 KEY_SA_UNREF(&sav);
1028 KEY_SP_UNREF(&isr->sp);
1029 IPSEC_RELEASE_GLOBAL_LOCKS();
1030 if (m)
1031 m_freem(m);
1032 pool_cache_put(esp_tdb_crypto_pool_cache, tc);
1033 crypto_freereq(crp);
1034 return error;
1035 }
1036
1037 static struct xformsw esp_xformsw = {
1038 .xf_type = XF_ESP,
1039 .xf_flags = XFT_CONF|XFT_AUTH,
1040 .xf_name = "IPsec ESP",
1041 .xf_init = esp_init,
1042 .xf_zeroize = esp_zeroize,
1043 .xf_input = esp_input,
1044 .xf_output = esp_output,
1045 .xf_next = NULL,
1046 };
1047
1048 void
1049 esp_attach(void)
1050 {
1051
1052 espstat_percpu = percpu_alloc(sizeof(uint64_t) * ESP_NSTATS);
1053
1054 extern int ah_max_authsize;
1055 KASSERT(ah_max_authsize != 0);
1056 esp_pool_item_size = sizeof(struct tdb_crypto) + ah_max_authsize;
1057 esp_tdb_crypto_pool_cache = pool_cache_init(esp_pool_item_size,
1058 coherency_unit, 0, 0, "esp_tdb_crypto", NULL, IPL_SOFTNET,
1059 NULL, NULL, NULL);
1060
1061 #define MAXIV(xform) \
1062 if (xform.ivsize > esp_max_ivlen) \
1063 esp_max_ivlen = xform.ivsize \
1064
1065 esp_max_ivlen = 0;
1066 MAXIV(enc_xform_des); /* SADB_EALG_DESCBC */
1067 MAXIV(enc_xform_3des); /* SADB_EALG_3DESCBC */
1068 MAXIV(enc_xform_rijndael128); /* SADB_X_EALG_AES */
1069 MAXIV(enc_xform_blf); /* SADB_X_EALG_BLOWFISHCBC */
1070 MAXIV(enc_xform_cast5); /* SADB_X_EALG_CAST128CBC */
1071 MAXIV(enc_xform_skipjack); /* SADB_X_EALG_SKIPJACK */
1072 MAXIV(enc_xform_camellia); /* SADB_X_EALG_CAMELLIACBC */
1073 MAXIV(enc_xform_aes_ctr); /* SADB_X_EALG_AESCTR */
1074 MAXIV(enc_xform_null); /* SADB_EALG_NULL */
1075
1076 xform_register(&esp_xformsw);
1077 #undef MAXIV
1078 }
1079