xform_ipcomp.c revision 1.55 1 1.55 ozaki /* $NetBSD: xform_ipcomp.c,v 1.55 2018/02/14 09:13:03 ozaki-r Exp $ */
2 1.1 jonathan /* $FreeBSD: src/sys/netipsec/xform_ipcomp.c,v 1.1.4.1 2003/01/24 05:11:36 sam Exp $ */
3 1.1 jonathan /* $OpenBSD: ip_ipcomp.c,v 1.1 2001/07/05 12:08:52 jjbg Exp $ */
4 1.1 jonathan
5 1.1 jonathan /*
6 1.1 jonathan * Copyright (c) 2001 Jean-Jacques Bernard-Gundol (jj (at) wabbitt.org)
7 1.1 jonathan *
8 1.1 jonathan * Redistribution and use in source and binary forms, with or without
9 1.1 jonathan * modification, are permitted provided that the following conditions
10 1.1 jonathan * are met:
11 1.1 jonathan *
12 1.1 jonathan * 1. Redistributions of source code must retain the above copyright
13 1.1 jonathan * notice, this list of conditions and the following disclaimer.
14 1.1 jonathan * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 jonathan * notice, this list of conditions and the following disclaimer in the
16 1.1 jonathan * documentation and/or other materials provided with the distribution.
17 1.1 jonathan * 3. The name of the author may not be used to endorse or promote products
18 1.1 jonathan * derived from this software without specific prior written permission.
19 1.1 jonathan *
20 1.1 jonathan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.1 jonathan * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.1 jonathan * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.1 jonathan * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.1 jonathan * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.1 jonathan * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.1 jonathan * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.1 jonathan * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.1 jonathan * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.1 jonathan * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.1 jonathan */
31 1.1 jonathan
32 1.1 jonathan #include <sys/cdefs.h>
33 1.55 ozaki __KERNEL_RCSID(0, "$NetBSD: xform_ipcomp.c,v 1.55 2018/02/14 09:13:03 ozaki-r Exp $");
34 1.1 jonathan
35 1.1 jonathan /* IP payload compression protocol (IPComp), see RFC 2393 */
36 1.32 ozaki #if defined(_KERNEL_OPT)
37 1.1 jonathan #include "opt_inet.h"
38 1.32 ozaki #endif
39 1.1 jonathan
40 1.1 jonathan #include <sys/param.h>
41 1.1 jonathan #include <sys/systm.h>
42 1.1 jonathan #include <sys/mbuf.h>
43 1.1 jonathan #include <sys/socket.h>
44 1.1 jonathan #include <sys/kernel.h>
45 1.1 jonathan #include <sys/protosw.h>
46 1.1 jonathan #include <sys/sysctl.h>
47 1.47 ozaki #include <sys/pool.h>
48 1.49 ozaki #include <sys/pserialize.h>
49 1.1 jonathan
50 1.1 jonathan #include <netinet/in.h>
51 1.1 jonathan #include <netinet/in_systm.h>
52 1.1 jonathan #include <netinet/ip.h>
53 1.1 jonathan #include <netinet/ip_var.h>
54 1.1 jonathan
55 1.1 jonathan #include <net/route.h>
56 1.1 jonathan #include <netipsec/ipsec.h>
57 1.18 thorpej #include <netipsec/ipsec_private.h>
58 1.1 jonathan #include <netipsec/xform.h>
59 1.1 jonathan
60 1.1 jonathan #ifdef INET6
61 1.1 jonathan #include <netinet/ip6.h>
62 1.1 jonathan #include <netipsec/ipsec6.h>
63 1.1 jonathan #endif
64 1.1 jonathan
65 1.1 jonathan #include <netipsec/ipcomp.h>
66 1.1 jonathan #include <netipsec/ipcomp_var.h>
67 1.1 jonathan
68 1.4 tls #include <netipsec/key.h>
69 1.4 tls #include <netipsec/key_debug.h>
70 1.1 jonathan
71 1.1 jonathan #include <opencrypto/cryptodev.h>
72 1.1 jonathan #include <opencrypto/deflate.h>
73 1.1 jonathan #include <opencrypto/xform.h>
74 1.1 jonathan
75 1.18 thorpej percpu_t *ipcompstat_percpu;
76 1.18 thorpej
77 1.9 degroote int ipcomp_enable = 1;
78 1.1 jonathan
79 1.4 tls #ifdef __FreeBSD__
80 1.1 jonathan SYSCTL_DECL(_net_inet_ipcomp);
81 1.1 jonathan SYSCTL_INT(_net_inet_ipcomp, OID_AUTO,
82 1.1 jonathan ipcomp_enable, CTLFLAG_RW, &ipcomp_enable, 0, "");
83 1.1 jonathan SYSCTL_STRUCT(_net_inet_ipcomp, IPSECCTL_STATS,
84 1.1 jonathan stats, CTLFLAG_RD, &ipcompstat, ipcompstat, "");
85 1.4 tls #endif /* __FreeBSD__ */
86 1.1 jonathan
87 1.1 jonathan static int ipcomp_input_cb(struct cryptop *crp);
88 1.1 jonathan static int ipcomp_output_cb(struct cryptop *crp);
89 1.1 jonathan
90 1.33 christos const uint8_t ipcomp_stats[256] = { SADB_CALG_STATS_INIT };
91 1.33 christos
92 1.52 ozaki static pool_cache_t ipcomp_tdb_crypto_pool_cache;
93 1.47 ozaki
94 1.24 drochner const struct comp_algo *
95 1.1 jonathan ipcomp_algorithm_lookup(int alg)
96 1.1 jonathan {
97 1.1 jonathan switch (alg) {
98 1.1 jonathan case SADB_X_CALG_DEFLATE:
99 1.25 drochner return &comp_algo_deflate_nogrow;
100 1.1 jonathan }
101 1.1 jonathan return NULL;
102 1.1 jonathan }
103 1.1 jonathan
104 1.1 jonathan /*
105 1.1 jonathan * ipcomp_init() is called when an CPI is being set up.
106 1.1 jonathan */
107 1.1 jonathan static int
108 1.24 drochner ipcomp_init(struct secasvar *sav, const struct xformsw *xsp)
109 1.1 jonathan {
110 1.24 drochner const struct comp_algo *tcomp;
111 1.1 jonathan struct cryptoini cric;
112 1.17 tls int ses;
113 1.1 jonathan
114 1.1 jonathan /* NB: algorithm really comes in alg_enc and not alg_comp! */
115 1.1 jonathan tcomp = ipcomp_algorithm_lookup(sav->alg_enc);
116 1.1 jonathan if (tcomp == NULL) {
117 1.34 christos DPRINTF(("%s: unsupported compression algorithm %d\n",
118 1.34 christos __func__, sav->alg_comp));
119 1.1 jonathan return EINVAL;
120 1.1 jonathan }
121 1.1 jonathan sav->alg_comp = sav->alg_enc; /* set for doing histogram */
122 1.1 jonathan sav->tdb_xform = xsp;
123 1.1 jonathan sav->tdb_compalgxform = tcomp;
124 1.1 jonathan
125 1.1 jonathan /* Initialize crypto session */
126 1.34 christos memset(&cric, 0, sizeof(cric));
127 1.1 jonathan cric.cri_alg = sav->tdb_compalgxform->type;
128 1.1 jonathan
129 1.17 tls ses = crypto_newsession(&sav->tdb_cryptoid, &cric, crypto_support);
130 1.17 tls return ses;
131 1.1 jonathan }
132 1.1 jonathan
133 1.1 jonathan /*
134 1.1 jonathan * ipcomp_zeroize() used when IPCA is deleted
135 1.1 jonathan */
136 1.1 jonathan static int
137 1.1 jonathan ipcomp_zeroize(struct secasvar *sav)
138 1.1 jonathan {
139 1.1 jonathan int err;
140 1.1 jonathan
141 1.1 jonathan err = crypto_freesession(sav->tdb_cryptoid);
142 1.1 jonathan sav->tdb_cryptoid = 0;
143 1.1 jonathan return err;
144 1.1 jonathan }
145 1.1 jonathan
146 1.1 jonathan /*
147 1.1 jonathan * ipcomp_input() gets called to uncompress an input packet
148 1.1 jonathan */
149 1.1 jonathan static int
150 1.42 ozaki ipcomp_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff)
151 1.1 jonathan {
152 1.1 jonathan struct tdb_crypto *tc;
153 1.1 jonathan struct cryptodesc *crdc;
154 1.1 jonathan struct cryptop *crp;
155 1.55 ozaki int error, hlen = IPCOMP_HLENGTH, stat = IPCOMP_STAT_CRYPTO;
156 1.1 jonathan
157 1.34 christos IPSEC_SPLASSERT_SOFTNET(__func__);
158 1.1 jonathan
159 1.1 jonathan /* Get crypto descriptors */
160 1.1 jonathan crp = crypto_getreq(1);
161 1.1 jonathan if (crp == NULL) {
162 1.34 christos DPRINTF(("%s: no crypto descriptors\n", __func__));
163 1.55 ozaki error = ENOBUFS;
164 1.55 ozaki goto error_m;
165 1.1 jonathan }
166 1.1 jonathan /* Get IPsec-specific opaque pointer */
167 1.52 ozaki tc = pool_cache_get(ipcomp_tdb_crypto_pool_cache, PR_NOWAIT);
168 1.1 jonathan if (tc == NULL) {
169 1.34 christos DPRINTF(("%s: cannot allocate tdb_crypto\n", __func__));
170 1.55 ozaki error = ENOBUFS;
171 1.55 ozaki goto error_crp;
172 1.1 jonathan }
173 1.29 drochner
174 1.29 drochner error = m_makewritable(&m, 0, m->m_pkthdr.len, M_NOWAIT);
175 1.29 drochner if (error) {
176 1.34 christos DPRINTF(("%s: m_makewritable failed\n", __func__));
177 1.55 ozaki goto error_tc;
178 1.29 drochner }
179 1.29 drochner
180 1.51 ozaki {
181 1.51 ozaki int s = pserialize_read_enter();
182 1.51 ozaki
183 1.51 ozaki /*
184 1.51 ozaki * Take another reference to the SA for opencrypto callback.
185 1.51 ozaki */
186 1.51 ozaki if (__predict_false(sav->state == SADB_SASTATE_DEAD)) {
187 1.51 ozaki pserialize_read_exit(s);
188 1.55 ozaki stat = IPCOMP_STAT_NOTDB;
189 1.55 ozaki error = ENOENT;
190 1.55 ozaki goto error_tc;
191 1.51 ozaki }
192 1.51 ozaki KEY_SA_REF(sav);
193 1.51 ozaki pserialize_read_exit(s);
194 1.51 ozaki }
195 1.51 ozaki
196 1.1 jonathan crdc = crp->crp_desc;
197 1.1 jonathan
198 1.1 jonathan crdc->crd_skip = skip + hlen;
199 1.1 jonathan crdc->crd_len = m->m_pkthdr.len - (skip + hlen);
200 1.29 drochner crdc->crd_inject = 0; /* unused */
201 1.1 jonathan
202 1.1 jonathan /* Decompression operation */
203 1.1 jonathan crdc->crd_alg = sav->tdb_compalgxform->type;
204 1.1 jonathan
205 1.1 jonathan /* Crypto operation descriptor */
206 1.1 jonathan crp->crp_ilen = m->m_pkthdr.len - (skip + hlen);
207 1.25 drochner crp->crp_olen = MCLBYTES; /* hint to decompression code */
208 1.1 jonathan crp->crp_flags = CRYPTO_F_IMBUF;
209 1.13 degroote crp->crp_buf = m;
210 1.1 jonathan crp->crp_callback = ipcomp_input_cb;
211 1.1 jonathan crp->crp_sid = sav->tdb_cryptoid;
212 1.13 degroote crp->crp_opaque = tc;
213 1.1 jonathan
214 1.1 jonathan /* These are passed as-is to the callback */
215 1.1 jonathan tc->tc_spi = sav->spi;
216 1.1 jonathan tc->tc_dst = sav->sah->saidx.dst;
217 1.1 jonathan tc->tc_proto = sav->sah->saidx.proto;
218 1.1 jonathan tc->tc_protoff = protoff;
219 1.1 jonathan tc->tc_skip = skip;
220 1.42 ozaki tc->tc_sav = sav;
221 1.1 jonathan
222 1.1 jonathan return crypto_dispatch(crp);
223 1.55 ozaki
224 1.55 ozaki error_tc:
225 1.55 ozaki pool_cache_put(ipcomp_tdb_crypto_pool_cache, tc);
226 1.55 ozaki error_crp:
227 1.55 ozaki crypto_freereq(crp);
228 1.55 ozaki error_m:
229 1.55 ozaki m_freem(m);
230 1.55 ozaki IPCOMP_STATINC(stat);
231 1.55 ozaki return error;
232 1.1 jonathan }
233 1.1 jonathan
234 1.1 jonathan #ifdef INET6
235 1.40 ozaki #define IPSEC_COMMON_INPUT_CB(m, sav, skip, protoff) do { \
236 1.1 jonathan if (saidx->dst.sa.sa_family == AF_INET6) { \
237 1.40 ozaki error = ipsec6_common_input_cb(m, sav, skip, protoff); \
238 1.1 jonathan } else { \
239 1.40 ozaki error = ipsec4_common_input_cb(m, sav, skip, protoff); \
240 1.1 jonathan } \
241 1.1 jonathan } while (0)
242 1.1 jonathan #else
243 1.40 ozaki #define IPSEC_COMMON_INPUT_CB(m, sav, skip, protoff) \
244 1.40 ozaki (error = ipsec4_common_input_cb(m, sav, skip, protoff))
245 1.1 jonathan #endif
246 1.1 jonathan
247 1.1 jonathan /*
248 1.1 jonathan * IPComp input callback from the crypto driver.
249 1.1 jonathan */
250 1.1 jonathan static int
251 1.1 jonathan ipcomp_input_cb(struct cryptop *crp)
252 1.1 jonathan {
253 1.38 ryo char buf[IPSEC_ADDRSTRLEN];
254 1.1 jonathan struct tdb_crypto *tc;
255 1.1 jonathan int skip, protoff;
256 1.1 jonathan struct mbuf *m;
257 1.1 jonathan struct secasvar *sav;
258 1.31 mrg struct secasindex *saidx __diagused;
259 1.48 ozaki int hlen = IPCOMP_HLENGTH, error, clen;
260 1.34 christos uint8_t nproto;
261 1.11 christos void *addr;
262 1.34 christos uint16_t dport;
263 1.34 christos uint16_t sport;
264 1.48 ozaki IPSEC_DECLARE_LOCK_VARIABLE;
265 1.1 jonathan
266 1.36 ozaki KASSERT(crp->crp_opaque != NULL);
267 1.34 christos tc = crp->crp_opaque;
268 1.1 jonathan skip = tc->tc_skip;
269 1.1 jonathan protoff = tc->tc_protoff;
270 1.34 christos m = crp->crp_buf;
271 1.1 jonathan
272 1.14 degroote /* find the source port for NAT-T */
273 1.30 christos nat_t_ports_get(m, &dport, &sport);
274 1.14 degroote
275 1.48 ozaki IPSEC_ACQUIRE_GLOBAL_LOCKS();
276 1.1 jonathan
277 1.42 ozaki sav = tc->tc_sav;
278 1.42 ozaki if (__predict_false(!SADB_SASTATE_USABLE_P(sav))) {
279 1.50 ozaki KEY_SA_UNREF(&sav);
280 1.42 ozaki sav = KEY_LOOKUP_SA(&tc->tc_dst, tc->tc_proto, tc->tc_spi,
281 1.42 ozaki sport, dport);
282 1.42 ozaki if (sav == NULL) {
283 1.42 ozaki IPCOMP_STATINC(IPCOMP_STAT_NOTDB);
284 1.42 ozaki DPRINTF(("%s: SA expired while in crypto\n", __func__));
285 1.42 ozaki error = ENOBUFS; /*XXX*/
286 1.42 ozaki goto bad;
287 1.42 ozaki }
288 1.1 jonathan }
289 1.1 jonathan
290 1.1 jonathan saidx = &sav->sah->saidx;
291 1.36 ozaki KASSERTMSG(saidx->dst.sa.sa_family == AF_INET ||
292 1.36 ozaki saidx->dst.sa.sa_family == AF_INET6,
293 1.36 ozaki "unexpected protocol family %u", saidx->dst.sa.sa_family);
294 1.1 jonathan
295 1.1 jonathan /* Check for crypto errors */
296 1.1 jonathan if (crp->crp_etype) {
297 1.1 jonathan /* Reset the session ID */
298 1.1 jonathan if (sav->tdb_cryptoid != 0)
299 1.1 jonathan sav->tdb_cryptoid = crp->crp_sid;
300 1.1 jonathan
301 1.1 jonathan if (crp->crp_etype == EAGAIN) {
302 1.50 ozaki KEY_SA_UNREF(&sav);
303 1.48 ozaki IPSEC_RELEASE_GLOBAL_LOCKS();
304 1.1 jonathan return crypto_dispatch(crp);
305 1.1 jonathan }
306 1.1 jonathan
307 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_NOXFORM);
308 1.34 christos DPRINTF(("%s: crypto error %d\n", __func__, crp->crp_etype));
309 1.1 jonathan error = crp->crp_etype;
310 1.1 jonathan goto bad;
311 1.1 jonathan }
312 1.45 ozaki
313 1.33 christos IPCOMP_STATINC(IPCOMP_STAT_HIST + ipcomp_stats[sav->alg_comp]);
314 1.1 jonathan
315 1.20 degroote /* Update the counters */
316 1.20 degroote IPCOMP_STATADD(IPCOMP_STAT_IBYTES, m->m_pkthdr.len - skip - hlen);
317 1.20 degroote
318 1.20 degroote
319 1.1 jonathan clen = crp->crp_olen; /* Length of data after processing */
320 1.1 jonathan
321 1.1 jonathan /* Release the crypto descriptors */
322 1.52 ozaki pool_cache_put(ipcomp_tdb_crypto_pool_cache, tc);
323 1.47 ozaki tc = NULL;
324 1.1 jonathan crypto_freereq(crp), crp = NULL;
325 1.1 jonathan
326 1.1 jonathan /* In case it's not done already, adjust the size of the mbuf chain */
327 1.1 jonathan m->m_pkthdr.len = clen + hlen + skip;
328 1.1 jonathan
329 1.1 jonathan if (m->m_len < skip + hlen && (m = m_pullup(m, skip + hlen)) == 0) {
330 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_HDROPS); /*XXX*/
331 1.34 christos DPRINTF(("%s: m_pullup failed\n", __func__));
332 1.1 jonathan error = EINVAL; /*XXX*/
333 1.1 jonathan goto bad;
334 1.1 jonathan }
335 1.1 jonathan
336 1.1 jonathan /* Keep the next protocol field */
337 1.15 degroote addr = (uint8_t*) mtod(m, struct ip *) + skip;
338 1.1 jonathan nproto = ((struct ipcomp *) addr)->comp_nxt;
339 1.34 christos switch (nproto) {
340 1.34 christos case IPPROTO_IPCOMP:
341 1.34 christos case IPPROTO_AH:
342 1.34 christos case IPPROTO_ESP:
343 1.26 spz IPCOMP_STATINC(IPCOMP_STAT_HDROPS);
344 1.34 christos DPRINTF(("%s: nested ipcomp, IPCA %s/%08lx\n", __func__,
345 1.38 ryo ipsec_address(&sav->sah->saidx.dst, buf, sizeof(buf)),
346 1.34 christos (u_long) ntohl(sav->spi)));
347 1.26 spz error = EINVAL;
348 1.26 spz goto bad;
349 1.34 christos default:
350 1.34 christos break;
351 1.26 spz }
352 1.1 jonathan
353 1.1 jonathan /* Remove the IPCOMP header */
354 1.1 jonathan error = m_striphdr(m, skip, hlen);
355 1.1 jonathan if (error) {
356 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_HDROPS);
357 1.34 christos DPRINTF(("%s: bad mbuf chain, IPCA %s/%08lx\n", __func__,
358 1.38 ryo ipsec_address(&sav->sah->saidx.dst, buf, sizeof(buf)),
359 1.38 ryo (u_long) ntohl(sav->spi)));
360 1.1 jonathan goto bad;
361 1.1 jonathan }
362 1.1 jonathan
363 1.1 jonathan /* Restore the Next Protocol field */
364 1.34 christos m_copyback(m, protoff, sizeof(uint8_t), (uint8_t *) &nproto);
365 1.1 jonathan
366 1.40 ozaki IPSEC_COMMON_INPUT_CB(m, sav, skip, protoff);
367 1.1 jonathan
368 1.50 ozaki KEY_SA_UNREF(&sav);
369 1.48 ozaki IPSEC_RELEASE_GLOBAL_LOCKS();
370 1.1 jonathan return error;
371 1.1 jonathan bad:
372 1.1 jonathan if (sav)
373 1.50 ozaki KEY_SA_UNREF(&sav);
374 1.48 ozaki IPSEC_RELEASE_GLOBAL_LOCKS();
375 1.1 jonathan if (m)
376 1.1 jonathan m_freem(m);
377 1.1 jonathan if (tc != NULL)
378 1.52 ozaki pool_cache_put(ipcomp_tdb_crypto_pool_cache, tc);
379 1.1 jonathan if (crp)
380 1.1 jonathan crypto_freereq(crp);
381 1.1 jonathan return error;
382 1.1 jonathan }
383 1.1 jonathan
384 1.1 jonathan /*
385 1.1 jonathan * IPComp output routine, called by ipsec[46]_process_packet()
386 1.1 jonathan */
387 1.1 jonathan static int
388 1.1 jonathan ipcomp_output(
389 1.7 christos struct mbuf *m,
390 1.53 ozaki const struct ipsecrequest *isr,
391 1.43 ozaki struct secasvar *sav,
392 1.8 christos struct mbuf **mp,
393 1.7 christos int skip,
394 1.7 christos int protoff
395 1.1 jonathan )
396 1.1 jonathan {
397 1.38 ryo char buf[IPSEC_ADDRSTRLEN];
398 1.24 drochner const struct comp_algo *ipcompx;
399 1.9 degroote int error, ralen, hlen, maxpacketsize;
400 1.1 jonathan struct cryptodesc *crdc;
401 1.1 jonathan struct cryptop *crp;
402 1.1 jonathan struct tdb_crypto *tc;
403 1.1 jonathan
404 1.34 christos IPSEC_SPLASSERT_SOFTNET(__func__);
405 1.43 ozaki KASSERT(sav != NULL);
406 1.36 ozaki KASSERT(sav->tdb_compalgxform != NULL);
407 1.1 jonathan ipcompx = sav->tdb_compalgxform;
408 1.1 jonathan
409 1.1 jonathan ralen = m->m_pkthdr.len - skip; /* Raw payload length before comp. */
410 1.9 degroote
411 1.9 degroote /* Don't process the packet if it is too short */
412 1.9 degroote if (ralen < ipcompx->minlen) {
413 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_MINLEN);
414 1.43 ozaki return ipsec_process_done(m, isr, sav);
415 1.9 degroote }
416 1.9 degroote
417 1.1 jonathan hlen = IPCOMP_HLENGTH;
418 1.1 jonathan
419 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_OUTPUT);
420 1.1 jonathan
421 1.1 jonathan /* Check for maximum packet size violations. */
422 1.1 jonathan switch (sav->sah->saidx.dst.sa.sa_family) {
423 1.1 jonathan #ifdef INET
424 1.1 jonathan case AF_INET:
425 1.1 jonathan maxpacketsize = IP_MAXPACKET;
426 1.1 jonathan break;
427 1.1 jonathan #endif /* INET */
428 1.1 jonathan #ifdef INET6
429 1.1 jonathan case AF_INET6:
430 1.1 jonathan maxpacketsize = IPV6_MAXPACKET;
431 1.1 jonathan break;
432 1.1 jonathan #endif /* INET6 */
433 1.1 jonathan default:
434 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_NOPF);
435 1.34 christos DPRINTF(("%s: unknown/unsupported protocol family %d"
436 1.34 christos ", IPCA %s/%08lx\n", __func__,
437 1.1 jonathan sav->sah->saidx.dst.sa.sa_family,
438 1.38 ryo ipsec_address(&sav->sah->saidx.dst, buf, sizeof(buf)),
439 1.1 jonathan (u_long) ntohl(sav->spi)));
440 1.1 jonathan error = EPFNOSUPPORT;
441 1.1 jonathan goto bad;
442 1.1 jonathan }
443 1.1 jonathan if (skip + hlen + ralen > maxpacketsize) {
444 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_TOOBIG);
445 1.34 christos DPRINTF(("%s: packet in IPCA %s/%08lx got too big "
446 1.34 christos "(len %u, max len %u)\n", __func__,
447 1.38 ryo ipsec_address(&sav->sah->saidx.dst, buf, sizeof(buf)),
448 1.1 jonathan (u_long) ntohl(sav->spi),
449 1.1 jonathan skip + hlen + ralen, maxpacketsize));
450 1.1 jonathan error = EMSGSIZE;
451 1.1 jonathan goto bad;
452 1.1 jonathan }
453 1.1 jonathan
454 1.1 jonathan /* Update the counters */
455 1.18 thorpej IPCOMP_STATADD(IPCOMP_STAT_OBYTES, m->m_pkthdr.len - skip);
456 1.1 jonathan
457 1.1 jonathan m = m_clone(m);
458 1.1 jonathan if (m == NULL) {
459 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_HDROPS);
460 1.34 christos DPRINTF(("%s: cannot clone mbuf chain, IPCA %s/%08lx\n",
461 1.38 ryo __func__,
462 1.38 ryo ipsec_address(&sav->sah->saidx.dst, buf, sizeof(buf)),
463 1.1 jonathan (u_long) ntohl(sav->spi)));
464 1.1 jonathan error = ENOBUFS;
465 1.1 jonathan goto bad;
466 1.1 jonathan }
467 1.1 jonathan
468 1.1 jonathan /* Ok now, we can pass to the crypto processing */
469 1.1 jonathan
470 1.1 jonathan /* Get crypto descriptors */
471 1.1 jonathan crp = crypto_getreq(1);
472 1.1 jonathan if (crp == NULL) {
473 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_CRYPTO);
474 1.34 christos DPRINTF(("%s: failed to acquire crypto descriptor\n",
475 1.34 christos __func__));
476 1.1 jonathan error = ENOBUFS;
477 1.1 jonathan goto bad;
478 1.1 jonathan }
479 1.1 jonathan crdc = crp->crp_desc;
480 1.1 jonathan
481 1.1 jonathan /* Compression descriptor */
482 1.9 degroote crdc->crd_skip = skip;
483 1.9 degroote crdc->crd_len = m->m_pkthdr.len - skip;
484 1.1 jonathan crdc->crd_flags = CRD_F_COMP;
485 1.9 degroote crdc->crd_inject = skip;
486 1.1 jonathan
487 1.1 jonathan /* Compression operation */
488 1.1 jonathan crdc->crd_alg = ipcompx->type;
489 1.1 jonathan
490 1.1 jonathan /* IPsec-specific opaque crypto info */
491 1.52 ozaki tc = pool_cache_get(ipcomp_tdb_crypto_pool_cache, PR_NOWAIT);
492 1.1 jonathan if (tc == NULL) {
493 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_CRYPTO);
494 1.34 christos DPRINTF(("%s: failed to allocate tdb_crypto\n", __func__));
495 1.1 jonathan crypto_freereq(crp);
496 1.1 jonathan error = ENOBUFS;
497 1.1 jonathan goto bad;
498 1.1 jonathan }
499 1.1 jonathan
500 1.49 ozaki {
501 1.49 ozaki int s = pserialize_read_enter();
502 1.49 ozaki
503 1.51 ozaki /*
504 1.51 ozaki * Take another reference to the SP and the SA for opencrypto callback.
505 1.51 ozaki */
506 1.51 ozaki if (__predict_false(isr->sp->state == IPSEC_SPSTATE_DEAD ||
507 1.51 ozaki sav->state == SADB_SASTATE_DEAD)) {
508 1.49 ozaki pserialize_read_exit(s);
509 1.52 ozaki pool_cache_put(ipcomp_tdb_crypto_pool_cache, tc);
510 1.49 ozaki crypto_freereq(crp);
511 1.49 ozaki IPCOMP_STATINC(IPCOMP_STAT_NOTDB);
512 1.49 ozaki error = ENOENT;
513 1.49 ozaki goto bad;
514 1.49 ozaki }
515 1.49 ozaki KEY_SP_REF(isr->sp);
516 1.51 ozaki KEY_SA_REF(sav);
517 1.49 ozaki pserialize_read_exit(s);
518 1.49 ozaki }
519 1.49 ozaki
520 1.1 jonathan tc->tc_isr = isr;
521 1.1 jonathan tc->tc_spi = sav->spi;
522 1.1 jonathan tc->tc_dst = sav->sah->saidx.dst;
523 1.1 jonathan tc->tc_proto = sav->sah->saidx.proto;
524 1.10 degroote tc->tc_skip = skip;
525 1.10 degroote tc->tc_protoff = protoff;
526 1.42 ozaki tc->tc_sav = sav;
527 1.1 jonathan
528 1.1 jonathan /* Crypto operation descriptor */
529 1.1 jonathan crp->crp_ilen = m->m_pkthdr.len; /* Total input length */
530 1.1 jonathan crp->crp_flags = CRYPTO_F_IMBUF;
531 1.13 degroote crp->crp_buf = m;
532 1.1 jonathan crp->crp_callback = ipcomp_output_cb;
533 1.13 degroote crp->crp_opaque = tc;
534 1.1 jonathan crp->crp_sid = sav->tdb_cryptoid;
535 1.1 jonathan
536 1.1 jonathan return crypto_dispatch(crp);
537 1.1 jonathan bad:
538 1.1 jonathan if (m)
539 1.1 jonathan m_freem(m);
540 1.1 jonathan return (error);
541 1.1 jonathan }
542 1.1 jonathan
543 1.1 jonathan /*
544 1.1 jonathan * IPComp output callback from the crypto driver.
545 1.1 jonathan */
546 1.1 jonathan static int
547 1.1 jonathan ipcomp_output_cb(struct cryptop *crp)
548 1.1 jonathan {
549 1.38 ryo char buf[IPSEC_ADDRSTRLEN];
550 1.1 jonathan struct tdb_crypto *tc;
551 1.53 ozaki const struct ipsecrequest *isr;
552 1.1 jonathan struct secasvar *sav;
553 1.9 degroote struct mbuf *m, *mo;
554 1.48 ozaki int error, skip, rlen, roff;
555 1.34 christos uint8_t prot;
556 1.34 christos uint16_t cpi;
557 1.9 degroote struct ipcomp * ipcomp;
558 1.48 ozaki IPSEC_DECLARE_LOCK_VARIABLE;
559 1.9 degroote
560 1.36 ozaki KASSERT(crp->crp_opaque != NULL);
561 1.34 christos tc = crp->crp_opaque;
562 1.34 christos m = crp->crp_buf;
563 1.1 jonathan skip = tc->tc_skip;
564 1.1 jonathan rlen = crp->crp_ilen - skip;
565 1.1 jonathan
566 1.48 ozaki IPSEC_ACQUIRE_GLOBAL_LOCKS();
567 1.1 jonathan
568 1.1 jonathan isr = tc->tc_isr;
569 1.42 ozaki sav = tc->tc_sav;
570 1.46 ozaki if (__predict_false(isr->sp->state == IPSEC_SPSTATE_DEAD)) {
571 1.46 ozaki IPCOMP_STATINC(IPCOMP_STAT_NOTDB);
572 1.46 ozaki IPSECLOG(LOG_DEBUG,
573 1.46 ozaki "SP is being destroyed while in crypto (id=%u)\n",
574 1.46 ozaki isr->sp->id);
575 1.46 ozaki error = ENOENT;
576 1.46 ozaki goto bad;
577 1.46 ozaki }
578 1.42 ozaki if (__predict_false(!SADB_SASTATE_USABLE_P(sav))) {
579 1.50 ozaki KEY_SA_UNREF(&sav);
580 1.42 ozaki sav = KEY_LOOKUP_SA(&tc->tc_dst, tc->tc_proto, tc->tc_spi, 0, 0);
581 1.42 ozaki if (sav == NULL) {
582 1.42 ozaki IPCOMP_STATINC(IPCOMP_STAT_NOTDB);
583 1.42 ozaki DPRINTF(("%s: SA expired while in crypto\n", __func__));
584 1.42 ozaki error = ENOBUFS; /*XXX*/
585 1.42 ozaki goto bad;
586 1.42 ozaki }
587 1.1 jonathan }
588 1.1 jonathan
589 1.1 jonathan /* Check for crypto errors */
590 1.1 jonathan if (crp->crp_etype) {
591 1.1 jonathan /* Reset session ID */
592 1.1 jonathan if (sav->tdb_cryptoid != 0)
593 1.1 jonathan sav->tdb_cryptoid = crp->crp_sid;
594 1.1 jonathan
595 1.1 jonathan if (crp->crp_etype == EAGAIN) {
596 1.48 ozaki IPSEC_RELEASE_GLOBAL_LOCKS();
597 1.1 jonathan return crypto_dispatch(crp);
598 1.1 jonathan }
599 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_NOXFORM);
600 1.34 christos DPRINTF(("%s: crypto error %d\n", __func__, crp->crp_etype));
601 1.1 jonathan error = crp->crp_etype;
602 1.1 jonathan goto bad;
603 1.1 jonathan }
604 1.45 ozaki
605 1.33 christos IPCOMP_STATINC(IPCOMP_STAT_HIST + ipcomp_stats[sav->alg_comp]);
606 1.1 jonathan
607 1.1 jonathan if (rlen > crp->crp_olen) {
608 1.9 degroote /* Inject IPCOMP header */
609 1.9 degroote mo = m_makespace(m, skip, IPCOMP_HLENGTH, &roff);
610 1.9 degroote if (mo == NULL) {
611 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_WRAP);
612 1.34 christos DPRINTF(("%s: failed to inject IPCOMP header for "
613 1.34 christos "IPCA %s/%08lx\n", __func__,
614 1.38 ryo ipsec_address(&sav->sah->saidx.dst, buf,
615 1.38 ryo sizeof(buf)), (u_long) ntohl(sav->spi)));
616 1.9 degroote error = ENOBUFS;
617 1.9 degroote goto bad;
618 1.9 degroote }
619 1.12 degroote ipcomp = (struct ipcomp *)(mtod(mo, char *) + roff);
620 1.9 degroote
621 1.9 degroote /* Initialize the IPCOMP header */
622 1.9 degroote /* XXX alignment always correct? */
623 1.9 degroote switch (sav->sah->saidx.dst.sa.sa_family) {
624 1.9 degroote #ifdef INET
625 1.9 degroote case AF_INET:
626 1.9 degroote ipcomp->comp_nxt = mtod(m, struct ip *)->ip_p;
627 1.9 degroote break;
628 1.9 degroote #endif /* INET */
629 1.9 degroote #ifdef INET6
630 1.9 degroote case AF_INET6:
631 1.9 degroote ipcomp->comp_nxt = mtod(m, struct ip6_hdr *)->ip6_nxt;
632 1.9 degroote break;
633 1.9 degroote #endif
634 1.9 degroote }
635 1.9 degroote ipcomp->comp_flags = 0;
636 1.9 degroote
637 1.9 degroote if ((sav->flags & SADB_X_EXT_RAWCPI) == 0)
638 1.9 degroote cpi = sav->alg_enc;
639 1.9 degroote else
640 1.9 degroote cpi = ntohl(sav->spi) & 0xffff;
641 1.9 degroote ipcomp->comp_cpi = htons(cpi);
642 1.9 degroote
643 1.9 degroote /* Fix Next Protocol in IPv4/IPv6 header */
644 1.9 degroote prot = IPPROTO_IPCOMP;
645 1.34 christos m_copyback(m, tc->tc_protoff, sizeof(uint8_t), (u_char *)&prot);
646 1.9 degroote
647 1.1 jonathan /* Adjust the length in the IP header */
648 1.1 jonathan switch (sav->sah->saidx.dst.sa.sa_family) {
649 1.1 jonathan #ifdef INET
650 1.1 jonathan case AF_INET:
651 1.1 jonathan mtod(m, struct ip *)->ip_len = htons(m->m_pkthdr.len);
652 1.1 jonathan break;
653 1.1 jonathan #endif /* INET */
654 1.1 jonathan #ifdef INET6
655 1.1 jonathan case AF_INET6:
656 1.1 jonathan mtod(m, struct ip6_hdr *)->ip6_plen =
657 1.1 jonathan htons(m->m_pkthdr.len) - sizeof(struct ip6_hdr);
658 1.1 jonathan break;
659 1.1 jonathan #endif /* INET6 */
660 1.1 jonathan default:
661 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_NOPF);
662 1.1 jonathan DPRINTF(("ipcomp_output: unknown/unsupported protocol "
663 1.5 perry "family %d, IPCA %s/%08lx\n",
664 1.1 jonathan sav->sah->saidx.dst.sa.sa_family,
665 1.38 ryo ipsec_address(&sav->sah->saidx.dst, buf,
666 1.38 ryo sizeof(buf)), (u_long) ntohl(sav->spi)));
667 1.1 jonathan error = EPFNOSUPPORT;
668 1.1 jonathan goto bad;
669 1.1 jonathan }
670 1.1 jonathan } else {
671 1.1 jonathan /* compression was useless, we have lost time */
672 1.18 thorpej IPCOMP_STATINC(IPCOMP_STAT_USELESS);
673 1.16 degroote DPRINTF(("ipcomp_output_cb: compression was useless : initial size was %d"
674 1.16 degroote "and compressed size is %d\n", rlen, crp->crp_olen));
675 1.1 jonathan }
676 1.1 jonathan
677 1.16 degroote
678 1.1 jonathan /* Release the crypto descriptor */
679 1.52 ozaki pool_cache_put(ipcomp_tdb_crypto_pool_cache, tc);
680 1.1 jonathan crypto_freereq(crp);
681 1.1 jonathan
682 1.1 jonathan /* NB: m is reclaimed by ipsec_process_done. */
683 1.43 ozaki error = ipsec_process_done(m, isr, sav);
684 1.50 ozaki KEY_SA_UNREF(&sav);
685 1.49 ozaki KEY_SP_UNREF(&isr->sp);
686 1.48 ozaki IPSEC_RELEASE_GLOBAL_LOCKS();
687 1.1 jonathan return error;
688 1.1 jonathan bad:
689 1.1 jonathan if (sav)
690 1.50 ozaki KEY_SA_UNREF(&sav);
691 1.49 ozaki KEY_SP_UNREF(&isr->sp);
692 1.48 ozaki IPSEC_RELEASE_GLOBAL_LOCKS();
693 1.1 jonathan if (m)
694 1.1 jonathan m_freem(m);
695 1.52 ozaki pool_cache_put(ipcomp_tdb_crypto_pool_cache, tc);
696 1.1 jonathan crypto_freereq(crp);
697 1.1 jonathan return error;
698 1.1 jonathan }
699 1.1 jonathan
700 1.1 jonathan static struct xformsw ipcomp_xformsw = {
701 1.39 ozaki .xf_type = XF_IPCOMP,
702 1.39 ozaki .xf_flags = XFT_COMP,
703 1.39 ozaki .xf_name = "IPcomp",
704 1.39 ozaki .xf_init = ipcomp_init,
705 1.39 ozaki .xf_zeroize = ipcomp_zeroize,
706 1.39 ozaki .xf_input = ipcomp_input,
707 1.39 ozaki .xf_output = ipcomp_output,
708 1.39 ozaki .xf_next = NULL,
709 1.1 jonathan };
710 1.1 jonathan
711 1.37 ozaki void
712 1.1 jonathan ipcomp_attach(void)
713 1.1 jonathan {
714 1.18 thorpej ipcompstat_percpu = percpu_alloc(sizeof(uint64_t) * IPCOMP_NSTATS);
715 1.52 ozaki ipcomp_tdb_crypto_pool_cache = pool_cache_init(sizeof(struct tdb_crypto),
716 1.52 ozaki coherency_unit, 0, 0, "ipcomp_tdb_crypto", NULL, IPL_SOFTNET,
717 1.52 ozaki NULL, NULL, NULL);
718 1.1 jonathan xform_register(&ipcomp_xformsw);
719 1.1 jonathan }
720