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