xref: /freebsd/sys/netinet/ip_gre.c (revision 964219664dcec4198441910904fb9064569d174d)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-NetBSD
3  *
4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
5  * Copyright (c) 2014, 2018 Andrey V. Elsukov <ae@FreeBSD.org>
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Heiko W.Rupp <hwr@pilhuhn.de>
10  *
11  * IPv6-over-GRE contributed by Gert Doering <gert@greenie.muc.de>
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
26  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *
34  * $NetBSD: ip_gre.c,v 1.29 2003/09/05 23:02:43 itojun Exp $
35  */
36 
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39 
40 #include "opt_inet.h"
41 #include "opt_inet6.h"
42 
43 #include <sys/param.h>
44 #include <sys/jail.h>
45 #include <sys/systm.h>
46 #include <sys/socket.h>
47 #include <sys/sockio.h>
48 #include <sys/mbuf.h>
49 #include <sys/errno.h>
50 #include <sys/kernel.h>
51 #include <sys/sysctl.h>
52 #include <sys/malloc.h>
53 
54 #include <net/if.h>
55 #include <net/if_var.h>
56 #include <net/vnet.h>
57 
58 #include <netinet/in.h>
59 #include <netinet/in_var.h>
60 #include <netinet/ip.h>
61 #include <netinet/ip_encap.h>
62 #include <netinet/ip_var.h>
63 
64 #ifdef INET6
65 #include <netinet/ip6.h>
66 #endif
67 
68 #include <net/if_gre.h>
69 
70 #define	GRE_TTL			30
71 VNET_DEFINE(int, ip_gre_ttl) = GRE_TTL;
72 #define	V_ip_gre_ttl		VNET(ip_gre_ttl)
73 SYSCTL_INT(_net_inet_ip, OID_AUTO, grettl, CTLFLAG_VNET | CTLFLAG_RW,
74     &VNET_NAME(ip_gre_ttl), 0, "Default TTL value for encapsulated packets");
75 
76 static VNET_DEFINE(struct gre_list *, ipv4_hashtbl) = NULL;
77 #define	V_ipv4_hashtbl		VNET(ipv4_hashtbl)
78 #define	GRE_HASH(src, dst)	(V_ipv4_hashtbl[\
79     in_gre_hashval((src), (dst)) & (GRE_HASH_SIZE - 1)])
80 #define	GRE_HASH_SC(sc)		GRE_HASH((sc)->gre_oip.ip_src.s_addr,\
81     (sc)->gre_oip.ip_dst.s_addr)
82 
83 static uint32_t
84 in_gre_hashval(in_addr_t src, in_addr_t dst)
85 {
86 	uint32_t ret;
87 
88 	ret = fnv_32_buf(&src, sizeof(src), FNV1_32_INIT);
89 	return (fnv_32_buf(&dst, sizeof(dst), ret));
90 }
91 
92 static int
93 in_gre_checkdup(const struct gre_softc *sc, in_addr_t src, in_addr_t dst)
94 {
95 	struct gre_softc *tmp;
96 
97 	if (sc->gre_family == AF_INET &&
98 	    sc->gre_oip.ip_src.s_addr == src &&
99 	    sc->gre_oip.ip_dst.s_addr == dst)
100 		return (EEXIST);
101 
102 	CK_LIST_FOREACH(tmp, &GRE_HASH(src, dst), chain) {
103 		if (tmp == sc)
104 			continue;
105 		if (tmp->gre_oip.ip_src.s_addr == src &&
106 		    tmp->gre_oip.ip_dst.s_addr == dst)
107 			return (EADDRNOTAVAIL);
108 	}
109 	return (0);
110 }
111 
112 static int
113 in_gre_lookup(const struct mbuf *m, int off, int proto, void **arg)
114 {
115 	const struct ip *ip;
116 	struct gre_softc *sc;
117 
118 	MPASS(in_epoch());
119 	ip = mtod(m, const struct ip *);
120 	CK_LIST_FOREACH(sc, &GRE_HASH(ip->ip_dst.s_addr,
121 	    ip->ip_src.s_addr), chain) {
122 		/*
123 		 * This is an inbound packet, its ip_dst is source address
124 		 * in softc.
125 		 */
126 		if (sc->gre_oip.ip_src.s_addr == ip->ip_dst.s_addr &&
127 		    sc->gre_oip.ip_dst.s_addr == ip->ip_src.s_addr) {
128 			if ((GRE2IFP(sc)->if_flags & IFF_UP) == 0)
129 				return (0);
130 			*arg = sc;
131 			return (ENCAP_DRV_LOOKUP);
132 		}
133 	}
134 	return (0);
135 }
136 
137 static void
138 in_gre_attach(struct gre_softc *sc)
139 {
140 
141 	sc->gre_hlen = sizeof(struct greip);
142 	sc->gre_oip.ip_v = IPVERSION;
143 	sc->gre_oip.ip_hl = sizeof(struct ip) >> 2;
144 	sc->gre_oip.ip_p = IPPROTO_GRE;
145 	gre_updatehdr(sc, &sc->gre_gihdr->gi_gre);
146 	CK_LIST_INSERT_HEAD(&GRE_HASH_SC(sc), sc, chain);
147 }
148 
149 void
150 in_gre_setopts(struct gre_softc *sc, u_long cmd, uint32_t value)
151 {
152 
153 	MPASS(cmd == GRESKEY || cmd == GRESOPTS);
154 
155 	/* NOTE: we are protected with gre_ioctl_sx lock */
156 	MPASS(sc->gre_family == AF_INET);
157 	CK_LIST_REMOVE(sc, chain);
158 	GRE_WAIT();
159 	if (cmd == GRESKEY)
160 		sc->gre_key = value;
161 	else
162 		sc->gre_options = value;
163 	in_gre_attach(sc);
164 }
165 
166 int
167 in_gre_ioctl(struct gre_softc *sc, u_long cmd, caddr_t data)
168 {
169 	struct ifreq *ifr = (struct ifreq *)data;
170 	struct sockaddr_in *dst, *src;
171 	struct ip *ip;
172 	int error;
173 
174 	/* NOTE: we are protected with gre_ioctl_sx lock */
175 	error = EINVAL;
176 	switch (cmd) {
177 	case SIOCSIFPHYADDR:
178 		src = &((struct in_aliasreq *)data)->ifra_addr;
179 		dst = &((struct in_aliasreq *)data)->ifra_dstaddr;
180 
181 		/* sanity checks */
182 		if (src->sin_family != dst->sin_family ||
183 		    src->sin_family != AF_INET ||
184 		    src->sin_len != dst->sin_len ||
185 		    src->sin_len != sizeof(*src))
186 			break;
187 		if (src->sin_addr.s_addr == INADDR_ANY ||
188 		    dst->sin_addr.s_addr == INADDR_ANY) {
189 			error = EADDRNOTAVAIL;
190 			break;
191 		}
192 		if (V_ipv4_hashtbl == NULL)
193 			V_ipv4_hashtbl = gre_hashinit();
194 		error = in_gre_checkdup(sc, src->sin_addr.s_addr,
195 		    dst->sin_addr.s_addr);
196 		if (error == EADDRNOTAVAIL)
197 			break;
198 		if (error == EEXIST) {
199 			/* Addresses are the same. Just return. */
200 			error = 0;
201 			break;
202 		}
203 		ip = malloc(sizeof(struct greip) + 3 * sizeof(uint32_t),
204 		    M_GRE, M_WAITOK | M_ZERO);
205 		ip->ip_src.s_addr = src->sin_addr.s_addr;
206 		ip->ip_dst.s_addr = dst->sin_addr.s_addr;
207 		if (sc->gre_family != 0) {
208 			/* Detach existing tunnel first */
209 			CK_LIST_REMOVE(sc, chain);
210 			GRE_WAIT();
211 			free(sc->gre_hdr, M_GRE);
212 			/* XXX: should we notify about link state change? */
213 		}
214 		sc->gre_family = AF_INET;
215 		sc->gre_hdr = ip;
216 		sc->gre_oseq = 0;
217 		sc->gre_iseq = UINT32_MAX;
218 		in_gre_attach(sc);
219 		break;
220 	case SIOCGIFPSRCADDR:
221 	case SIOCGIFPDSTADDR:
222 		if (sc->gre_family != AF_INET) {
223 			error = EADDRNOTAVAIL;
224 			break;
225 		}
226 		src = (struct sockaddr_in *)&ifr->ifr_addr;
227 		memset(src, 0, sizeof(*src));
228 		src->sin_family = AF_INET;
229 		src->sin_len = sizeof(*src);
230 		src->sin_addr = (cmd == SIOCGIFPSRCADDR) ?
231 		    sc->gre_oip.ip_src: sc->gre_oip.ip_dst;
232 		error = prison_if(curthread->td_ucred, (struct sockaddr *)src);
233 		if (error != 0)
234 			memset(src, 0, sizeof(*src));
235 		break;
236 	}
237 	return (error);
238 }
239 
240 int
241 in_gre_output(struct mbuf *m, int af, int hlen)
242 {
243 	struct greip *gi;
244 
245 	gi = mtod(m, struct greip *);
246 	switch (af) {
247 	case AF_INET:
248 		/*
249 		 * gre_transmit() has used M_PREPEND() that doesn't guarantee
250 		 * m_data is contiguous more than hlen bytes. Use m_copydata()
251 		 * here to avoid m_pullup().
252 		 */
253 		m_copydata(m, hlen + offsetof(struct ip, ip_tos),
254 		    sizeof(u_char), &gi->gi_ip.ip_tos);
255 		m_copydata(m, hlen + offsetof(struct ip, ip_id),
256 		    sizeof(u_short), (caddr_t)&gi->gi_ip.ip_id);
257 		break;
258 #ifdef INET6
259 	case AF_INET6:
260 		gi->gi_ip.ip_tos = 0; /* XXX */
261 		ip_fillid(&gi->gi_ip);
262 		break;
263 #endif
264 	}
265 	gi->gi_ip.ip_ttl = V_ip_gre_ttl;
266 	gi->gi_ip.ip_len = htons(m->m_pkthdr.len);
267 	return (ip_output(m, NULL, NULL, IP_FORWARDING, NULL, NULL));
268 }
269 
270 static const struct encaptab *ecookie = NULL;
271 static const struct encap_config ipv4_encap_cfg = {
272 	.proto = IPPROTO_GRE,
273 	.min_length = sizeof(struct greip) + sizeof(struct ip),
274 	.exact_match = ENCAP_DRV_LOOKUP,
275 	.lookup = in_gre_lookup,
276 	.input = gre_input
277 };
278 
279 void
280 in_gre_init(void)
281 {
282 
283 	if (!IS_DEFAULT_VNET(curvnet))
284 		return;
285 	ecookie = ip_encap_attach(&ipv4_encap_cfg, NULL, M_WAITOK);
286 }
287 
288 void
289 in_gre_uninit(void)
290 {
291 
292 	if (IS_DEFAULT_VNET(curvnet))
293 		ip_encap_detach(ecookie);
294 	if (V_ipv4_hashtbl != NULL)
295 		gre_hashdestroy(V_ipv4_hashtbl);
296 }
297