ipsec_output.c revision 194062
118334Speter/*-
218334Speter * Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting
318334Speter * All rights reserved.
490075Sobrien *
590075Sobrien * Redistribution and use in source and binary forms, with or without
618334Speter * modification, are permitted provided that the following conditions
790075Sobrien * are met:
818334Speter * 1. Redistributions of source code must retain the above copyright
990075Sobrien *    notice, this list of conditions and the following disclaimer.
1090075Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1190075Sobrien *    notice, this list of conditions and the following disclaimer in the
1290075Sobrien *    documentation and/or other materials provided with the distribution.
1318334Speter *
1490075Sobrien * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1590075Sobrien * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1690075Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1790075Sobrien * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1818334Speter * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1918334Speter * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2090075Sobrien * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2190075Sobrien * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2290075Sobrien * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2318334Speter * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2418334Speter * SUCH DAMAGE.
2518334Speter *
2650397Sobrien * $FreeBSD: head/sys/netipsec/ipsec_output.c 194062 2009-06-12 15:44:35Z vanhu $
2718334Speter */
2818334Speter
2990075Sobrien/*
3090075Sobrien * IPsec output processing.
3118334Speter */
3218334Speter#include "opt_inet.h"
3318334Speter#include "opt_inet6.h"
3418334Speter#include "opt_ipsec.h"
3518334Speter#include "opt_enc.h"
3690075Sobrien
3790075Sobrien#include <sys/param.h>
3818334Speter#include <sys/systm.h>
3918334Speter#include <sys/mbuf.h>
4018334Speter#include <sys/domain.h>
4118334Speter#include <sys/protosw.h>
4290075Sobrien#include <sys/socket.h>
4390075Sobrien#include <sys/errno.h>
4450397Sobrien#include <sys/syslog.h>
4590075Sobrien#include <sys/vimage.h>
4690075Sobrien
4790075Sobrien#include <net/if.h>
4890075Sobrien#include <net/pfil.h>
4990075Sobrien#include <net/route.h>
5050397Sobrien
5118334Speter#include <netinet/in.h>
5250397Sobrien#include <netinet/in_systm.h>
5390075Sobrien#include <netinet/ip.h>
5490075Sobrien#include <netinet/ip_var.h>
5518334Speter#include <netinet/in_var.h>
5618334Speter#include <netinet/ip_ecn.h>
5790075Sobrien#ifdef INET6
5890075Sobrien#include <netinet6/ip6_ecn.h>
5990075Sobrien#endif
6090075Sobrien
6118334Speter#include <netinet/ip6.h>
6290075Sobrien#ifdef INET6
6390075Sobrien#include <netinet6/ip6_var.h>
6418334Speter#endif
6590075Sobrien#include <netinet/in_pcb.h>
6618334Speter#ifdef INET6
6790075Sobrien#include <netinet/icmp6.h>
6890075Sobrien#include <netinet6/vinet6.h>
6990075Sobrien#endif
7090075Sobrien
7190075Sobrien#include <netipsec/ipsec.h>
7290075Sobrien#ifdef INET6
7390075Sobrien#include <netipsec/ipsec6.h>
7418334Speter#endif
7590075Sobrien#include <netipsec/ah_var.h>
7690075Sobrien#include <netipsec/esp_var.h>
7790075Sobrien#include <netipsec/ipcomp_var.h>
7818334Speter
7990075Sobrien#include <netipsec/xform.h>
8090075Sobrien
8190075Sobrien#include <netipsec/key.h>
8218334Speter#include <netipsec/keydb.h>
8318334Speter#include <netipsec/key_debug.h>
8490075Sobrien
8518334Speter#include <machine/in_cksum.h>
8690075Sobrien
8790075Sobrien#ifdef IPSEC_NAT_T
8890075Sobrien#include <netinet/udp.h>
8990075Sobrien#endif
9090075Sobrien
9190075Sobrien#ifdef DEV_ENC
9290075Sobrien#include <net/if_enc.h>
9390075Sobrien#endif
9490075Sobrien
9590075Sobrien
9690075Sobrienint
9790075Sobrienipsec_process_done(struct mbuf *m, struct ipsecrequest *isr)
9890075Sobrien{
9918334Speter	INIT_VNET_IPSEC(curvnet);
10018334Speter	struct tdb_ident *tdbi;
10190075Sobrien	struct m_tag *mtag;
10290075Sobrien	struct secasvar *sav;
10390075Sobrien	struct secasindex *saidx;
10490075Sobrien	int error;
10590075Sobrien
10690075Sobrien	IPSEC_ASSERT(m != NULL, ("null mbuf"));
10790075Sobrien	IPSEC_ASSERT(isr != NULL, ("null ISR"));
10890075Sobrien	sav = isr->sav;
10990075Sobrien	IPSEC_ASSERT(sav != NULL, ("null SA"));
11090075Sobrien	IPSEC_ASSERT(sav->sah != NULL, ("null SAH"));
11190075Sobrien
11290075Sobrien	saidx = &sav->sah->saidx;
11390075Sobrien	switch (saidx->dst.sa.sa_family) {
11490075Sobrien#ifdef INET
11590075Sobrien	case AF_INET:
11690075Sobrien		/* Fix the header length, for AH processing. */
11790075Sobrien		mtod(m, struct ip *)->ip_len = htons(m->m_pkthdr.len);
11890075Sobrien		break;
11990075Sobrien#endif /* INET */
12090075Sobrien#ifdef INET6
12190075Sobrien	case AF_INET6:
12290075Sobrien		/* Fix the header length, for AH processing. */
12390075Sobrien		if (m->m_pkthdr.len < sizeof (struct ip6_hdr)) {
12490075Sobrien			error = ENXIO;
12590075Sobrien			goto bad;
12690075Sobrien		}
12790075Sobrien		if (m->m_pkthdr.len - sizeof (struct ip6_hdr) > IPV6_MAXPACKET) {
12890075Sobrien			/* No jumbogram support. */
12990075Sobrien			error = ENXIO;	/*?*/
13090075Sobrien			goto bad;
13118334Speter		}
13250397Sobrien		mtod(m, struct ip6_hdr *)->ip6_plen =
13318334Speter			htons(m->m_pkthdr.len - sizeof(struct ip6_hdr));
13418334Speter		break;
13518334Speter#endif /* INET6 */
13618334Speter	default:
13718334Speter		DPRINTF(("%s: unknown protocol family %u\n", __func__,
13890075Sobrien		    saidx->dst.sa.sa_family));
13918334Speter		error = ENXIO;
14090075Sobrien		goto bad;
14190075Sobrien	}
14290075Sobrien
14390075Sobrien	/*
14490075Sobrien	 * Add a record of what we've done or what needs to be done to the
14590075Sobrien	 * packet.
14690075Sobrien	 */
14790075Sobrien	mtag = m_tag_get(PACKET_TAG_IPSEC_OUT_DONE,
14890075Sobrien			sizeof(struct tdb_ident), M_NOWAIT);
14990075Sobrien	if (mtag == NULL) {
15090075Sobrien		DPRINTF(("%s: could not get packet tag\n", __func__));
15190075Sobrien		error = ENOMEM;
15290075Sobrien		goto bad;
15390075Sobrien	}
15490075Sobrien
15590075Sobrien	tdbi = (struct tdb_ident *)(mtag + 1);
15690075Sobrien	tdbi->dst = saidx->dst;
15790075Sobrien	tdbi->proto = saidx->proto;
15890075Sobrien	tdbi->spi = sav->spi;
15990075Sobrien	m_tag_prepend(m, mtag);
16090075Sobrien
16118334Speter	/*
16218334Speter	 * If there's another (bundled) SA to apply, do so.
16318334Speter	 * Note that this puts a burden on the kernel stack size.
16418334Speter	 * If this is a problem we'll need to introduce a queue
16518334Speter	 * to set the packet on so we can unwind the stack before
16690075Sobrien	 * doing further processing.
16718334Speter	 */
16890075Sobrien	if (isr->next) {
16918334Speter		V_ipsec4stat.ips_out_bundlesa++;
17018334Speter		return ipsec4_process_packet(m, isr->next, 0, 0);
17118334Speter	}
17218334Speter	key_sa_recordxfer(sav, m);		/* record data transfer */
17318334Speter
17418334Speter	/*
17518334Speter	 * We're done with IPsec processing, transmit the packet using the
17618334Speter	 * appropriate network protocol (IP or IPv6). SPD lookup will be
17718334Speter	 * performed again there.
17818334Speter	 */
17990075Sobrien	switch (saidx->dst.sa.sa_family) {
18090075Sobrien#ifdef INET
18118334Speter	struct ip *ip;
18218334Speter	case AF_INET:
18318334Speter		ip = mtod(m, struct ip *);
18418334Speter		ip->ip_len = ntohs(ip->ip_len);
18518334Speter		ip->ip_off = ntohs(ip->ip_off);
18618334Speter
18718334Speter#ifdef IPSEC_NAT_T
18818334Speter		/*
18918334Speter		 * If NAT-T is enabled, now that all IPsec processing is done
19018334Speter		 * insert UDP encapsulation header after IP header.
19118334Speter		 */
19218334Speter		if (sav->natt_type) {
19318334Speter#ifdef _IP_VHL
19418334Speter			const int hlen = IP_VHL_HL(ip->ip_vhl);
19518334Speter#else
19618334Speter			const int hlen = (ip->ip_hl << 2);
19718334Speter#endif
19818334Speter			int size, off;
19918334Speter			struct mbuf *mi;
20018334Speter			struct udphdr *udp;
20118334Speter
20218334Speter			size = sizeof(struct udphdr);
20318334Speter			if (sav->natt_type == UDP_ENCAP_ESPINUDP_NON_IKE) {
20496263Sobrien				/*
20518334Speter				 * draft-ietf-ipsec-nat-t-ike-0[01].txt and
20618334Speter				 * draft-ietf-ipsec-udp-encaps-(00/)01.txt,
20718334Speter				 * ignoring possible AH mode
20818334Speter				 * non-IKE marker + non-ESP marker
20918334Speter				 * from draft-ietf-ipsec-udp-encaps-00.txt.
21018334Speter				 */
21118334Speter				size += sizeof(u_int64_t);
21290075Sobrien			}
21318334Speter			mi = m_makespace(m, hlen, size, &off);
21418334Speter			if (mi == NULL) {
21590075Sobrien				DPRINTF(("%s: m_makespace for udphdr failed\n",
21618334Speter				    __func__));
21718334Speter				error = ENOBUFS;
21818334Speter				goto bad;
21918334Speter			}
22018334Speter
22118334Speter			udp = (struct udphdr *)(mtod(mi, caddr_t) + off);
22218334Speter			if (sav->natt_type == UDP_ENCAP_ESPINUDP_NON_IKE)
22318334Speter				udp->uh_sport = htons(UDP_ENCAP_ESPINUDP_PORT);
22490075Sobrien			else
22518334Speter				udp->uh_sport =
22618334Speter					KEY_PORTFROMSADDR(&sav->sah->saidx.src);
22790075Sobrien			udp->uh_dport = KEY_PORTFROMSADDR(&sav->sah->saidx.dst);
22890075Sobrien			udp->uh_sum = 0;
22918334Speter			udp->uh_ulen = htons(m->m_pkthdr.len - hlen);
23018334Speter			ip->ip_len = m->m_pkthdr.len;
23190075Sobrien			ip->ip_p = IPPROTO_UDP;
23218334Speter
23390075Sobrien			if (sav->natt_type == UDP_ENCAP_ESPINUDP_NON_IKE)
23490075Sobrien				*(u_int64_t *)(udp + 1) = 0;
23590075Sobrien		}
23690075Sobrien#endif /* IPSEC_NAT_T */
23790075Sobrien
23890075Sobrien		return ip_output(m, NULL, NULL, IP_RAWOUTPUT, NULL, NULL);
23990075Sobrien#endif /* INET */
24018334Speter#ifdef INET6
24118334Speter	case AF_INET6:
24218334Speter		/*
24318334Speter		 * We don't need massage, IPv6 header fields are always in
24418334Speter		 * net endian.
24590075Sobrien		 */
24690075Sobrien		return ip6_output(m, NULL, NULL, 0, NULL, NULL, NULL);
24790075Sobrien#endif /* INET6 */
24890075Sobrien	}
24918334Speter	panic("ipsec_process_done");
25018334Speterbad:
25118334Speter	m_freem(m);
25218334Speter	KEY_FREESAV(&sav);
25318334Speter	return (error);
25418334Speter}
25550397Sobrien
25690075Sobrienstatic struct ipsecrequest *
25790075Sobrienipsec_nextisr(
25818334Speter	struct mbuf *m,
25990075Sobrien	struct ipsecrequest *isr,
26090075Sobrien	int af,
26118334Speter	struct secasindex *saidx,
26218334Speter	int *error
26390075Sobrien)
26418334Speter{
26590075Sobrien#define IPSEC_OSTAT(x,y,z) (isr->saidx.proto == IPPROTO_ESP ? (x)++ : \
26690075Sobrien			    isr->saidx.proto == IPPROTO_AH ? (y)++ : (z)++)
26718334Speter	INIT_VNET_IPSEC(curvnet);
26890075Sobrien	struct secasvar *sav;
26990075Sobrien
27018334Speter	IPSECREQUEST_LOCK_ASSERT(isr);
27190075Sobrien
27290075Sobrien	IPSEC_ASSERT(af == AF_INET || af == AF_INET6,
27390075Sobrien		("invalid address family %u", af));
27490075Sobrienagain:
27590075Sobrien	/*
27690075Sobrien	 * Craft SA index to search for proper SA.  Note that
27718334Speter	 * we only fillin unspecified SA peers for transport
278	 * mode; for tunnel mode they must already be filled in.
279	 */
280	*saidx = isr->saidx;
281	if (isr->saidx.mode == IPSEC_MODE_TRANSPORT) {
282		/* Fillin unspecified SA peers only for transport mode */
283		if (af == AF_INET) {
284			struct sockaddr_in *sin;
285			struct ip *ip = mtod(m, struct ip *);
286
287			if (saidx->src.sa.sa_len == 0) {
288				sin = &saidx->src.sin;
289				sin->sin_len = sizeof(*sin);
290				sin->sin_family = AF_INET;
291				sin->sin_port = IPSEC_PORT_ANY;
292				sin->sin_addr = ip->ip_src;
293			}
294			if (saidx->dst.sa.sa_len == 0) {
295				sin = &saidx->dst.sin;
296				sin->sin_len = sizeof(*sin);
297				sin->sin_family = AF_INET;
298				sin->sin_port = IPSEC_PORT_ANY;
299				sin->sin_addr = ip->ip_dst;
300			}
301		} else {
302			struct sockaddr_in6 *sin6;
303			struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
304
305			if (saidx->src.sin6.sin6_len == 0) {
306				sin6 = (struct sockaddr_in6 *)&saidx->src;
307				sin6->sin6_len = sizeof(*sin6);
308				sin6->sin6_family = AF_INET6;
309				sin6->sin6_port = IPSEC_PORT_ANY;
310				sin6->sin6_addr = ip6->ip6_src;
311				if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_src)) {
312					/* fix scope id for comparing SPD */
313					sin6->sin6_addr.s6_addr16[1] = 0;
314					sin6->sin6_scope_id =
315					    ntohs(ip6->ip6_src.s6_addr16[1]);
316				}
317			}
318			if (saidx->dst.sin6.sin6_len == 0) {
319				sin6 = (struct sockaddr_in6 *)&saidx->dst;
320				sin6->sin6_len = sizeof(*sin6);
321				sin6->sin6_family = AF_INET6;
322				sin6->sin6_port = IPSEC_PORT_ANY;
323				sin6->sin6_addr = ip6->ip6_dst;
324				if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst)) {
325					/* fix scope id for comparing SPD */
326					sin6->sin6_addr.s6_addr16[1] = 0;
327					sin6->sin6_scope_id =
328					    ntohs(ip6->ip6_dst.s6_addr16[1]);
329				}
330			}
331		}
332	}
333
334	/*
335	 * Lookup SA and validate it.
336	 */
337	*error = key_checkrequest(isr, saidx);
338	if (*error != 0) {
339		/*
340		 * IPsec processing is required, but no SA found.
341		 * I assume that key_acquire() had been called
342		 * to get/establish the SA. Here I discard
343		 * this packet because it is responsibility for
344		 * upper layer to retransmit the packet.
345		 */
346		V_ipsec4stat.ips_out_nosa++;
347		goto bad;
348	}
349	sav = isr->sav;
350	if (sav == NULL) {
351		IPSEC_ASSERT(ipsec_get_reqlevel(isr) == IPSEC_LEVEL_USE,
352			("no SA found, but required; level %u",
353			ipsec_get_reqlevel(isr)));
354		IPSECREQUEST_UNLOCK(isr);
355		isr = isr->next;
356		/*
357		 * If isr is NULL, we found a 'use' policy w/o SA.
358		 * Return w/o error and w/o isr so we can drop out
359		 * and continue w/o IPsec processing.
360		 */
361		if (isr == NULL)
362			return isr;
363		IPSECREQUEST_LOCK(isr);
364		goto again;
365	}
366
367	/*
368	 * Check system global policy controls.
369	 */
370	if ((isr->saidx.proto == IPPROTO_ESP && !V_esp_enable) ||
371	    (isr->saidx.proto == IPPROTO_AH && !V_ah_enable) ||
372	    (isr->saidx.proto == IPPROTO_IPCOMP && !V_ipcomp_enable)) {
373		DPRINTF(("%s: IPsec outbound packet dropped due"
374			" to policy (check your sysctls)\n", __func__));
375		IPSEC_OSTAT(V_espstat.esps_pdrops, V_ahstat.ahs_pdrops,
376		    V_ipcompstat.ipcomps_pdrops);
377		*error = EHOSTUNREACH;
378		goto bad;
379	}
380
381	/*
382	 * Sanity check the SA contents for the caller
383	 * before they invoke the xform output method.
384	 */
385	if (sav->tdb_xform == NULL) {
386		DPRINTF(("%s: no transform for SA\n", __func__));
387		IPSEC_OSTAT(V_espstat.esps_noxform, V_ahstat.ahs_noxform,
388		    V_ipcompstat.ipcomps_noxform);
389		*error = EHOSTUNREACH;
390		goto bad;
391	}
392	return isr;
393bad:
394	IPSEC_ASSERT(*error != 0, ("error return w/ no error code"));
395	IPSECREQUEST_UNLOCK(isr);
396	return NULL;
397#undef IPSEC_OSTAT
398}
399
400#ifdef INET
401/*
402 * IPsec output logic for IPv4.
403 */
404int
405ipsec4_process_packet(
406	struct mbuf *m,
407	struct ipsecrequest *isr,
408	int flags,
409	int tunalready)
410{
411	INIT_VNET_IPSEC(curvnet);
412	struct secasindex saidx;
413	struct secasvar *sav;
414	struct ip *ip;
415	int error, i, off;
416
417	IPSEC_ASSERT(m != NULL, ("null mbuf"));
418	IPSEC_ASSERT(isr != NULL, ("null isr"));
419
420	IPSECREQUEST_LOCK(isr);		/* insure SA contents don't change */
421
422	isr = ipsec_nextisr(m, isr, AF_INET, &saidx, &error);
423	if (isr == NULL) {
424		if (error != 0)
425			goto bad;
426		return EJUSTRETURN;
427	}
428
429	sav = isr->sav;
430
431#ifdef DEV_ENC
432	encif->if_opackets++;
433	encif->if_obytes += m->m_pkthdr.len;
434
435	/* pass the mbuf to enc0 for bpf processing */
436	ipsec_bpf(m, sav, AF_INET, ENC_OUT|ENC_BEFORE);
437	/* pass the mbuf to enc0 for packet filtering */
438	if ((error = ipsec_filter(&m, PFIL_OUT, ENC_OUT|ENC_BEFORE)) != 0)
439		goto bad;
440#endif
441
442	if (!tunalready) {
443		union sockaddr_union *dst = &sav->sah->saidx.dst;
444		int setdf;
445
446		/*
447		 * Collect IP_DF state from the outer header.
448		 */
449		if (dst->sa.sa_family == AF_INET) {
450			if (m->m_len < sizeof (struct ip) &&
451			    (m = m_pullup(m, sizeof (struct ip))) == NULL) {
452				error = ENOBUFS;
453				goto bad;
454			}
455			ip = mtod(m, struct ip *);
456			/* Honor system-wide control of how to handle IP_DF */
457			switch (V_ip4_ipsec_dfbit) {
458			case 0:			/* clear in outer header */
459			case 1:			/* set in outer header */
460				setdf = V_ip4_ipsec_dfbit;
461				break;
462			default:		/* propagate to outer header */
463				setdf = ntohs(ip->ip_off & IP_DF);
464				break;
465			}
466		} else {
467			ip = NULL;		/* keep compiler happy */
468			setdf = 0;
469		}
470		/* Do the appropriate encapsulation, if necessary */
471		if (isr->saidx.mode == IPSEC_MODE_TUNNEL || /* Tunnel requ'd */
472		    dst->sa.sa_family != AF_INET ||	    /* PF mismatch */
473#if 0
474		    (sav->flags & SADB_X_SAFLAGS_TUNNEL) || /* Tunnel requ'd */
475		    sav->tdb_xform->xf_type == XF_IP4 ||    /* ditto */
476#endif
477		    (dst->sa.sa_family == AF_INET &&	    /* Proxy */
478		     dst->sin.sin_addr.s_addr != INADDR_ANY &&
479		     dst->sin.sin_addr.s_addr != ip->ip_dst.s_addr)) {
480			struct mbuf *mp;
481
482			/* Fix IPv4 header checksum and length */
483			if (m->m_len < sizeof (struct ip) &&
484			    (m = m_pullup(m, sizeof (struct ip))) == NULL) {
485				error = ENOBUFS;
486				goto bad;
487			}
488			ip = mtod(m, struct ip *);
489			ip->ip_len = htons(m->m_pkthdr.len);
490			ip->ip_sum = 0;
491#ifdef _IP_VHL
492			if (ip->ip_vhl == IP_VHL_BORING)
493				ip->ip_sum = in_cksum_hdr(ip);
494			else
495				ip->ip_sum = in_cksum(m,
496					_IP_VHL_HL(ip->ip_vhl) << 2);
497#else
498			ip->ip_sum = in_cksum(m, ip->ip_hl << 2);
499#endif
500
501			/* Encapsulate the packet */
502			error = ipip_output(m, isr, &mp, 0, 0);
503			if (mp == NULL && !error) {
504				/* Should never happen. */
505				DPRINTF(("%s: ipip_output returns no mbuf and "
506					"no error!", __func__));
507				error = EFAULT;
508			}
509			if (error) {
510				if (mp) {
511					/* XXX: Should never happen! */
512					m_freem(mp);
513				}
514				m = NULL; /* ipip_output() already freed it */
515				goto bad;
516			}
517			m = mp, mp = NULL;
518			/*
519			 * ipip_output clears IP_DF in the new header.  If
520			 * we need to propagate IP_DF from the outer header,
521			 * then we have to do it here.
522			 *
523			 * XXX shouldn't assume what ipip_output does.
524			 */
525			if (dst->sa.sa_family == AF_INET && setdf) {
526				if (m->m_len < sizeof (struct ip) &&
527				    (m = m_pullup(m, sizeof (struct ip))) == NULL) {
528					error = ENOBUFS;
529					goto bad;
530				}
531				ip = mtod(m, struct ip *);
532				ip->ip_off = ntohs(ip->ip_off);
533				ip->ip_off |= IP_DF;
534				ip->ip_off = htons(ip->ip_off);
535			}
536		}
537	}
538
539#ifdef DEV_ENC
540	/* pass the mbuf to enc0 for bpf processing */
541	ipsec_bpf(m, sav, AF_INET, ENC_OUT|ENC_AFTER);
542	/* pass the mbuf to enc0 for packet filtering */
543	if ((error = ipsec_filter(&m, PFIL_OUT, ENC_OUT|ENC_AFTER)) != 0)
544		goto bad;
545#endif
546
547	/*
548	 * Dispatch to the appropriate IPsec transform logic.  The
549	 * packet will be returned for transmission after crypto
550	 * processing, etc. are completed.  For encapsulation we
551	 * bypass this call because of the explicit call done above
552	 * (necessary to deal with IP_DF handling for IPv4).
553	 *
554	 * NB: m & sav are ``passed to caller'' who's reponsible for
555	 *     for reclaiming their resources.
556	 */
557	if (sav->tdb_xform->xf_type != XF_IP4) {
558		ip = mtod(m, struct ip *);
559		i = ip->ip_hl << 2;
560		off = offsetof(struct ip, ip_p);
561		error = (*sav->tdb_xform->xf_output)(m, isr, NULL, i, off);
562	} else {
563		error = ipsec_process_done(m, isr);
564	}
565	IPSECREQUEST_UNLOCK(isr);
566	return error;
567bad:
568	if (isr)
569		IPSECREQUEST_UNLOCK(isr);
570	if (m)
571		m_freem(m);
572	return error;
573}
574#endif
575
576#ifdef INET6
577/*
578 * Chop IP6 header from the payload.
579 */
580static struct mbuf *
581ipsec6_splithdr(struct mbuf *m)
582{
583	struct mbuf *mh;
584	struct ip6_hdr *ip6;
585	int hlen;
586
587	IPSEC_ASSERT(m->m_len >= sizeof (struct ip6_hdr),
588		("first mbuf too short, len %u", m->m_len));
589	ip6 = mtod(m, struct ip6_hdr *);
590	hlen = sizeof(struct ip6_hdr);
591	if (m->m_len > hlen) {
592		MGETHDR(mh, M_DONTWAIT, MT_DATA);
593		if (!mh) {
594			m_freem(m);
595			return NULL;
596		}
597		M_MOVE_PKTHDR(mh, m);
598		MH_ALIGN(mh, hlen);
599		m->m_len -= hlen;
600		m->m_data += hlen;
601		mh->m_next = m;
602		m = mh;
603		m->m_len = hlen;
604		bcopy((caddr_t)ip6, mtod(m, caddr_t), hlen);
605	} else if (m->m_len < hlen) {
606		m = m_pullup(m, hlen);
607		if (!m)
608			return NULL;
609	}
610	return m;
611}
612
613/*
614 * IPsec output logic for IPv6, transport mode.
615 */
616int
617ipsec6_output_trans(
618	struct ipsec_output_state *state,
619	u_char *nexthdrp,
620	struct mbuf *mprev,
621	struct secpolicy *sp,
622	int flags,
623	int *tun)
624{
625	INIT_VNET_IPSEC(curvnet);
626	struct ipsecrequest *isr;
627	struct secasindex saidx;
628	int error = 0;
629	struct mbuf *m;
630
631	IPSEC_ASSERT(state != NULL, ("null state"));
632	IPSEC_ASSERT(state->m != NULL, ("null m"));
633	IPSEC_ASSERT(nexthdrp != NULL, ("null nexthdrp"));
634	IPSEC_ASSERT(mprev != NULL, ("null mprev"));
635	IPSEC_ASSERT(sp != NULL, ("null sp"));
636	IPSEC_ASSERT(tun != NULL, ("null tun"));
637
638	KEYDEBUG(KEYDEBUG_IPSEC_DATA,
639		printf("%s: applied SP\n", __func__);
640		kdebug_secpolicy(sp));
641
642	isr = sp->req;
643	if (isr->saidx.mode == IPSEC_MODE_TUNNEL) {
644		/* the rest will be handled by ipsec6_output_tunnel() */
645		*tun = 1;		/* need tunnel-mode processing */
646		return 0;
647	}
648
649	*tun = 0;
650	m = state->m;
651
652	IPSECREQUEST_LOCK(isr);		/* insure SA contents don't change */
653	isr = ipsec_nextisr(m, isr, AF_INET6, &saidx, &error);
654	if (isr == NULL) {
655		if (error != 0) {
656#ifdef notdef
657			/* XXX should notification be done for all errors ? */
658			/*
659			 * Notify the fact that the packet is discarded
660			 * to ourselves. I believe this is better than
661			 * just silently discarding. (jinmei@kame.net)
662			 * XXX: should we restrict the error to TCP packets?
663			 * XXX: should we directly notify sockets via
664			 *      pfctlinputs?
665			 */
666			icmp6_error(m, ICMP6_DST_UNREACH,
667				    ICMP6_DST_UNREACH_ADMIN, 0);
668			m = NULL;	/* NB: icmp6_error frees mbuf */
669#endif
670			goto bad;
671		}
672		return EJUSTRETURN;
673	}
674
675	error = (*isr->sav->tdb_xform->xf_output)(m, isr, NULL,
676						  sizeof (struct ip6_hdr),
677						  offsetof(struct ip6_hdr,
678							   ip6_nxt));
679	IPSECREQUEST_UNLOCK(isr);
680	return error;
681bad:
682	if (isr)
683		IPSECREQUEST_UNLOCK(isr);
684	if (m)
685		m_freem(m);
686	state->m = NULL;
687	return error;
688}
689
690static int
691ipsec6_encapsulate(struct mbuf *m, struct secasvar *sav)
692{
693	INIT_VNET_IPSEC(curvnet);
694	struct ip6_hdr *oip6;
695	struct ip6_hdr *ip6;
696	size_t plen;
697
698	/* can't tunnel between different AFs */
699	if (sav->sah->saidx.src.sa.sa_family != AF_INET6 ||
700	    sav->sah->saidx.dst.sa.sa_family != AF_INET6) {
701		m_freem(m);
702		return EINVAL;
703	}
704	IPSEC_ASSERT(m->m_len == sizeof (struct ip6_hdr),
705		("mbuf wrong size; len %u", m->m_len));
706
707
708	/*
709	 * grow the mbuf to accomodate the new IPv6 header.
710	 */
711	plen = m->m_pkthdr.len;
712	if (M_LEADINGSPACE(m->m_next) < sizeof(struct ip6_hdr)) {
713		struct mbuf *n;
714		MGET(n, M_DONTWAIT, MT_DATA);
715		if (!n) {
716			m_freem(m);
717			return ENOBUFS;
718		}
719		n->m_len = sizeof(struct ip6_hdr);
720		n->m_next = m->m_next;
721		m->m_next = n;
722		m->m_pkthdr.len += sizeof(struct ip6_hdr);
723		oip6 = mtod(n, struct ip6_hdr *);
724	} else {
725		m->m_next->m_len += sizeof(struct ip6_hdr);
726		m->m_next->m_data -= sizeof(struct ip6_hdr);
727		m->m_pkthdr.len += sizeof(struct ip6_hdr);
728		oip6 = mtod(m->m_next, struct ip6_hdr *);
729	}
730	ip6 = mtod(m, struct ip6_hdr *);
731	bcopy((caddr_t)ip6, (caddr_t)oip6, sizeof(struct ip6_hdr));
732
733	/* Fake link-local scope-class addresses */
734	if (IN6_IS_SCOPE_LINKLOCAL(&oip6->ip6_src))
735		oip6->ip6_src.s6_addr16[1] = 0;
736	if (IN6_IS_SCOPE_LINKLOCAL(&oip6->ip6_dst))
737		oip6->ip6_dst.s6_addr16[1] = 0;
738
739	/* construct new IPv6 header. see RFC 2401 5.1.2.2 */
740	/* ECN consideration. */
741	ip6_ecn_ingress(V_ip6_ipsec_ecn, &ip6->ip6_flow, &oip6->ip6_flow);
742	if (plen < IPV6_MAXPACKET - sizeof(struct ip6_hdr))
743		ip6->ip6_plen = htons(plen);
744	else {
745		/* ip6->ip6_plen will be updated in ip6_output() */
746	}
747	ip6->ip6_nxt = IPPROTO_IPV6;
748	ip6->ip6_src = sav->sah->saidx.src.sin6.sin6_addr;
749	ip6->ip6_dst = sav->sah->saidx.dst.sin6.sin6_addr;
750	ip6->ip6_hlim = IPV6_DEFHLIM;
751
752	/* XXX Should ip6_src be updated later ? */
753
754	return 0;
755}
756
757/*
758 * IPsec output logic for IPv6, tunnel mode.
759 */
760int
761ipsec6_output_tunnel(struct ipsec_output_state *state, struct secpolicy *sp, int flags)
762{
763	INIT_VNET_INET6(curvnet);
764	INIT_VNET_IPSEC(curvnet);
765	struct ip6_hdr *ip6;
766	struct ipsecrequest *isr;
767	struct secasindex saidx;
768	int error;
769	struct sockaddr_in6* dst6;
770	struct mbuf *m;
771
772	IPSEC_ASSERT(state != NULL, ("null state"));
773	IPSEC_ASSERT(state->m != NULL, ("null m"));
774	IPSEC_ASSERT(sp != NULL, ("null sp"));
775
776	KEYDEBUG(KEYDEBUG_IPSEC_DATA,
777		printf("%s: applied SP\n", __func__);
778		kdebug_secpolicy(sp));
779
780	m = state->m;
781	/*
782	 * transport mode ipsec (before the 1st tunnel mode) is already
783	 * processed by ipsec6_output_trans().
784	 */
785	for (isr = sp->req; isr; isr = isr->next) {
786		if (isr->saidx.mode == IPSEC_MODE_TUNNEL)
787			break;
788	}
789
790	IPSECREQUEST_LOCK(isr);		/* insure SA contents don't change */
791	isr = ipsec_nextisr(m, isr, AF_INET6, &saidx, &error);
792	if (isr == NULL) {
793		if (error != 0)
794			goto bad;
795		return EJUSTRETURN;
796	}
797
798#ifdef DEV_ENC
799	encif->if_opackets++;
800	encif->if_obytes += m->m_pkthdr.len;
801
802	/* pass the mbuf to enc0 for bpf processing */
803	ipsec_bpf(m, isr->sav, AF_INET6, ENC_OUT|ENC_BEFORE);
804	/* pass the mbuf to enc0 for packet filtering */
805	if ((error = ipsec_filter(&m, PFIL_OUT, ENC_OUT|ENC_BEFORE)) != 0)
806		goto bad;
807#endif
808
809	/*
810	 * There may be the case that SA status will be changed when
811	 * we are refering to one. So calling splsoftnet().
812	 */
813	if (isr->saidx.mode == IPSEC_MODE_TUNNEL) {
814		/*
815		 * build IPsec tunnel.
816		 */
817		/* XXX should be processed with other familiy */
818		if (isr->sav->sah->saidx.src.sa.sa_family != AF_INET6) {
819			ipseclog((LOG_ERR, "%s: family mismatched between "
820			    "inner and outer, spi=%u\n", __func__,
821			    ntohl(isr->sav->spi)));
822			V_ipsec6stat.ips_out_inval++;
823			error = EAFNOSUPPORT;
824			goto bad;
825		}
826
827		m = ipsec6_splithdr(m);
828		if (!m) {
829			V_ipsec6stat.ips_out_nomem++;
830			error = ENOMEM;
831			goto bad;
832		}
833		error = ipsec6_encapsulate(m, isr->sav);
834		if (error) {
835			m = NULL;
836			goto bad;
837		}
838		ip6 = mtod(m, struct ip6_hdr *);
839
840		state->ro = &isr->sav->sah->sa_route;
841		state->dst = (struct sockaddr *)&state->ro->ro_dst;
842		dst6 = (struct sockaddr_in6 *)state->dst;
843		if (state->ro->ro_rt
844		 && ((state->ro->ro_rt->rt_flags & RTF_UP) == 0
845		  || !IN6_ARE_ADDR_EQUAL(&dst6->sin6_addr, &ip6->ip6_dst))) {
846			RTFREE(state->ro->ro_rt);
847			state->ro->ro_rt = NULL;
848		}
849		if (state->ro->ro_rt == NULL) {
850			bzero(dst6, sizeof(*dst6));
851			dst6->sin6_family = AF_INET6;
852			dst6->sin6_len = sizeof(*dst6);
853			dst6->sin6_addr = ip6->ip6_dst;
854			rtalloc(state->ro);
855		}
856		if (state->ro->ro_rt == NULL) {
857			V_ip6stat.ip6s_noroute++;
858			V_ipsec6stat.ips_out_noroute++;
859			error = EHOSTUNREACH;
860			goto bad;
861		}
862
863		/* adjust state->dst if tunnel endpoint is offlink */
864		if (state->ro->ro_rt->rt_flags & RTF_GATEWAY) {
865			state->dst = (struct sockaddr *)state->ro->ro_rt->rt_gateway;
866			dst6 = (struct sockaddr_in6 *)state->dst;
867		}
868	}
869
870	m = ipsec6_splithdr(m);
871	if (!m) {
872		V_ipsec6stat.ips_out_nomem++;
873		error = ENOMEM;
874		goto bad;
875	}
876	ip6 = mtod(m, struct ip6_hdr *);
877
878#ifdef DEV_ENC
879	/* pass the mbuf to enc0 for bpf processing */
880	ipsec_bpf(m, isr->sav, AF_INET6, ENC_OUT|ENC_AFTER);
881	/* pass the mbuf to enc0 for packet filtering */
882	if ((error = ipsec_filter(&m, PFIL_OUT, ENC_OUT|ENC_AFTER)) != 0)
883		goto bad;
884#endif
885
886	error = (*isr->sav->tdb_xform->xf_output)(m, isr, NULL,
887		sizeof (struct ip6_hdr),
888		offsetof(struct ip6_hdr, ip6_nxt));
889	IPSECREQUEST_UNLOCK(isr);
890	return error;
891bad:
892	if (isr)
893		IPSECREQUEST_UNLOCK(isr);
894	if (m)
895		m_freem(m);
896	state->m = NULL;
897	return error;
898}
899#endif /*INET6*/
900