xref: /freebsd/sys/netinet6/ip6_gre.c (revision 964219664dcec4198441910904fb9064569d174d)
1 /*-
2  * Copyright (c) 2014, 2018 Andrey V. Elsukov <ae@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include "opt_inet.h"
31 #include "opt_inet6.h"
32 
33 #include <sys/param.h>
34 #include <sys/jail.h>
35 #include <sys/systm.h>
36 #include <sys/socket.h>
37 #include <sys/sockio.h>
38 #include <sys/mbuf.h>
39 #include <sys/errno.h>
40 #include <sys/kernel.h>
41 #include <sys/sysctl.h>
42 #include <sys/malloc.h>
43 
44 #include <net/if.h>
45 #include <net/if_var.h>
46 #include <net/vnet.h>
47 
48 #include <netinet/in.h>
49 #ifdef INET
50 #include <net/ethernet.h>
51 #include <netinet/ip.h>
52 #endif
53 #include <netinet/ip_encap.h>
54 #include <netinet/ip6.h>
55 #include <netinet6/ip6_var.h>
56 #include <netinet6/in6_var.h>
57 #include <netinet6/scope6_var.h>
58 #include <net/if_gre.h>
59 
60 VNET_DEFINE(int, ip6_gre_hlim) = IPV6_DEFHLIM;
61 #define	V_ip6_gre_hlim		VNET(ip6_gre_hlim)
62 
63 SYSCTL_DECL(_net_inet6_ip6);
64 SYSCTL_INT(_net_inet6_ip6, OID_AUTO, grehlim, CTLFLAG_VNET | CTLFLAG_RW,
65     &VNET_NAME(ip6_gre_hlim), 0, "Default hop limit for encapsulated packets");
66 
67 static VNET_DEFINE(struct gre_list *, ipv6_hashtbl) = NULL;
68 #define	V_ipv6_hashtbl		VNET(ipv6_hashtbl)
69 #define	GRE_HASH(src, dst)	(V_ipv6_hashtbl[\
70     in6_gre_hashval((src), (dst)) & (GRE_HASH_SIZE - 1)])
71 #define	GRE_HASH_SC(sc)		GRE_HASH(&(sc)->gre_oip6.ip6_src,\
72     &(sc)->gre_oip6.ip6_dst)
73 
74 static uint32_t
75 in6_gre_hashval(const struct in6_addr *src, const struct in6_addr *dst)
76 {
77 	uint32_t ret;
78 
79 	ret = fnv_32_buf(src, sizeof(*src), FNV1_32_INIT);
80 	return (fnv_32_buf(dst, sizeof(*dst), ret));
81 }
82 
83 static int
84 in6_gre_checkdup(const struct gre_softc *sc, const struct in6_addr *src,
85     const struct in6_addr *dst)
86 {
87 	struct gre_softc *tmp;
88 
89 	if (sc->gre_family == AF_INET6 &&
90 	    IN6_ARE_ADDR_EQUAL(&sc->gre_oip6.ip6_src, src) &&
91 	    IN6_ARE_ADDR_EQUAL(&sc->gre_oip6.ip6_dst, dst))
92 		return (EEXIST);
93 
94 	CK_LIST_FOREACH(tmp, &GRE_HASH(src, dst), chain) {
95 		if (tmp == sc)
96 			continue;
97 		if (IN6_ARE_ADDR_EQUAL(&tmp->gre_oip6.ip6_src, src) &&
98 		    IN6_ARE_ADDR_EQUAL(&tmp->gre_oip6.ip6_dst, dst))
99 			return (EADDRNOTAVAIL);
100 	}
101 	return (0);
102 }
103 
104 static int
105 in6_gre_lookup(const struct mbuf *m, int off, int proto, void **arg)
106 {
107 	const struct ip6_hdr *ip6;
108 	struct gre_softc *sc;
109 
110 	MPASS(in_epoch());
111 	ip6 = mtod(m, const struct ip6_hdr *);
112 	CK_LIST_FOREACH(sc, &GRE_HASH(&ip6->ip6_dst, &ip6->ip6_src), chain) {
113 		/*
114 		 * This is an inbound packet, its ip6_dst is source address
115 		 * in softc.
116 		 */
117 		if (IN6_ARE_ADDR_EQUAL(&sc->gre_oip6.ip6_src,
118 		    &ip6->ip6_dst) &&
119 		    IN6_ARE_ADDR_EQUAL(&sc->gre_oip6.ip6_dst,
120 		    &ip6->ip6_src)) {
121 			if ((GRE2IFP(sc)->if_flags & IFF_UP) == 0)
122 				return (0);
123 			*arg = sc;
124 			return (ENCAP_DRV_LOOKUP);
125 		}
126 	}
127 	return (0);
128 }
129 
130 static void
131 in6_gre_attach(struct gre_softc *sc)
132 {
133 
134 	sc->gre_hlen = sizeof(struct greip6);
135 	sc->gre_oip6.ip6_vfc = IPV6_VERSION;
136 	sc->gre_oip6.ip6_nxt = IPPROTO_GRE;
137 	gre_updatehdr(sc, &sc->gre_gi6hdr->gi6_gre);
138 	CK_LIST_INSERT_HEAD(&GRE_HASH_SC(sc), sc, chain);
139 }
140 
141 void
142 in6_gre_setopts(struct gre_softc *sc, u_long cmd, uint32_t value)
143 {
144 
145 	MPASS(cmd == GRESKEY || cmd == GRESOPTS);
146 
147 	/* NOTE: we are protected with gre_ioctl_sx lock */
148 	MPASS(sc->gre_family == AF_INET6);
149 	CK_LIST_REMOVE(sc, chain);
150 	GRE_WAIT();
151 	if (cmd == GRESKEY)
152 		sc->gre_key = value;
153 	else
154 		sc->gre_options = value;
155 	in6_gre_attach(sc);
156 }
157 
158 int
159 in6_gre_ioctl(struct gre_softc *sc, u_long cmd, caddr_t data)
160 {
161 	struct in6_ifreq *ifr = (struct in6_ifreq *)data;
162 	struct sockaddr_in6 *dst, *src;
163 	struct ip6_hdr *ip6;
164 	int error;
165 
166 	/* NOTE: we are protected with gre_ioctl_sx lock */
167 	error = EINVAL;
168 	switch (cmd) {
169 	case SIOCSIFPHYADDR_IN6:
170 		src = &((struct in6_aliasreq *)data)->ifra_addr;
171 		dst = &((struct in6_aliasreq *)data)->ifra_dstaddr;
172 
173 		/* sanity checks */
174 		if (src->sin6_family != dst->sin6_family ||
175 		    src->sin6_family != AF_INET6 ||
176 		    src->sin6_len != dst->sin6_len ||
177 		    src->sin6_len != sizeof(*src))
178 			break;
179 		if (IN6_IS_ADDR_UNSPECIFIED(&src->sin6_addr) ||
180 		    IN6_IS_ADDR_UNSPECIFIED(&dst->sin6_addr)) {
181 			error = EADDRNOTAVAIL;
182 			break;
183 		}
184 		/*
185 		 * Check validity of the scope zone ID of the
186 		 * addresses, and convert it into the kernel
187 		 * internal form if necessary.
188 		 */
189 		if ((error = sa6_embedscope(src, 0)) != 0 ||
190 		    (error = sa6_embedscope(dst, 0)) != 0)
191 			break;
192 
193 		if (V_ipv6_hashtbl == NULL)
194 			V_ipv6_hashtbl = gre_hashinit();
195 		error = in6_gre_checkdup(sc, &src->sin6_addr,
196 		    &dst->sin6_addr);
197 		if (error == EADDRNOTAVAIL)
198 			break;
199 		if (error == EEXIST) {
200 			/* Addresses are the same. Just return. */
201 			error = 0;
202 			break;
203 		}
204 		ip6 = malloc(sizeof(struct greip6) + 3 * sizeof(uint32_t),
205 		    M_GRE, M_WAITOK | M_ZERO);
206 		ip6->ip6_src = src->sin6_addr;
207 		ip6->ip6_dst = dst->sin6_addr;
208 		if (sc->gre_family != 0) {
209 			/* Detach existing tunnel first */
210 			CK_LIST_REMOVE(sc, chain);
211 			GRE_WAIT();
212 			free(sc->gre_hdr, M_GRE);
213 			/* XXX: should we notify about link state change? */
214 		}
215 		sc->gre_family = AF_INET6;
216 		sc->gre_hdr = ip6;
217 		sc->gre_oseq = 0;
218 		sc->gre_iseq = UINT32_MAX;
219 		in6_gre_attach(sc);
220 		break;
221 	case SIOCGIFPSRCADDR_IN6:
222 	case SIOCGIFPDSTADDR_IN6:
223 		if (sc->gre_family != AF_INET6) {
224 			error = EADDRNOTAVAIL;
225 			break;
226 		}
227 		src = (struct sockaddr_in6 *)&ifr->ifr_addr;
228 		memset(src, 0, sizeof(*src));
229 		src->sin6_family = AF_INET6;
230 		src->sin6_len = sizeof(*src);
231 		src->sin6_addr = (cmd == SIOCGIFPSRCADDR_IN6) ?
232 		    sc->gre_oip6.ip6_src: sc->gre_oip6.ip6_dst;
233 		error = prison_if(curthread->td_ucred, (struct sockaddr *)src);
234 		if (error == 0)
235 			error = sa6_recoverscope(src);
236 		if (error != 0)
237 			memset(src, 0, sizeof(*src));
238 		break;
239 	}
240 	return (error);
241 }
242 
243 int
244 in6_gre_output(struct mbuf *m, int af __unused, int hlen __unused)
245 {
246 	struct greip6 *gi6;
247 
248 	gi6 = mtod(m, struct greip6 *);
249 	gi6->gi6_ip6.ip6_hlim = V_ip6_gre_hlim;
250 	return (ip6_output(m, NULL, NULL, IPV6_MINMTU, NULL, NULL, NULL));
251 }
252 
253 static const struct encaptab *ecookie = NULL;
254 static const struct encap_config ipv6_encap_cfg = {
255 	.proto = IPPROTO_GRE,
256 	.min_length = sizeof(struct greip6) +
257 #ifdef INET
258 	    sizeof(struct ip),
259 #else
260 	    sizeof(struct ip6_hdr),
261 #endif
262 	.exact_match = ENCAP_DRV_LOOKUP,
263 	.lookup = in6_gre_lookup,
264 	.input = gre_input
265 };
266 
267 void
268 in6_gre_init(void)
269 {
270 
271 	if (!IS_DEFAULT_VNET(curvnet))
272 		return;
273 	ecookie = ip6_encap_attach(&ipv6_encap_cfg, NULL, M_WAITOK);
274 }
275 
276 void
277 in6_gre_uninit(void)
278 {
279 
280 	if (IS_DEFAULT_VNET(curvnet))
281 		ip6_encap_detach(ecookie);
282 	if (V_ipv6_hashtbl != NULL)
283 		gre_hashdestroy(V_ipv6_hashtbl);
284 }
285