]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/ip_gre.c
Add handling for appearing/disappearing of ingress addresses to if_gre(4).
[FreeBSD/FreeBSD.git] / sys / netinet / ip_gre.c
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 #include <sys/proc.h>
54
55 #include <net/if.h>
56 #include <net/if_var.h>
57 #include <net/vnet.h>
58
59 #include <netinet/in.h>
60 #include <netinet/in_var.h>
61 #include <netinet/ip.h>
62 #include <netinet/ip_encap.h>
63 #include <netinet/ip_var.h>
64
65 #ifdef INET6
66 #include <netinet/ip6.h>
67 #endif
68
69 #include <net/if_gre.h>
70
71 #define GRE_TTL                 30
72 VNET_DEFINE(int, ip_gre_ttl) = GRE_TTL;
73 #define V_ip_gre_ttl            VNET(ip_gre_ttl)
74 SYSCTL_INT(_net_inet_ip, OID_AUTO, grettl, CTLFLAG_VNET | CTLFLAG_RW,
75     &VNET_NAME(ip_gre_ttl), 0, "Default TTL value for encapsulated packets");
76
77 VNET_DEFINE_STATIC(struct gre_list *, ipv4_hashtbl) = NULL;
78 VNET_DEFINE_STATIC(struct gre_list *, ipv4_srchashtbl) = NULL;
79 #define V_ipv4_hashtbl          VNET(ipv4_hashtbl)
80 #define V_ipv4_srchashtbl       VNET(ipv4_srchashtbl)
81 #define GRE_HASH(src, dst)      (V_ipv4_hashtbl[\
82     in_gre_hashval((src), (dst)) & (GRE_HASH_SIZE - 1)])
83 #define GRE_SRCHASH(src)        (V_ipv4_srchashtbl[\
84     fnv_32_buf(&(src), sizeof(src), FNV1_32_INIT) & (GRE_HASH_SIZE - 1)])
85 #define GRE_HASH_SC(sc)         GRE_HASH((sc)->gre_oip.ip_src.s_addr,\
86     (sc)->gre_oip.ip_dst.s_addr)
87
88 static uint32_t
89 in_gre_hashval(in_addr_t src, in_addr_t dst)
90 {
91         uint32_t ret;
92
93         ret = fnv_32_buf(&src, sizeof(src), FNV1_32_INIT);
94         return (fnv_32_buf(&dst, sizeof(dst), ret));
95 }
96
97 static int
98 in_gre_checkdup(const struct gre_softc *sc, in_addr_t src, in_addr_t dst)
99 {
100         struct gre_softc *tmp;
101
102         if (sc->gre_family == AF_INET &&
103             sc->gre_oip.ip_src.s_addr == src &&
104             sc->gre_oip.ip_dst.s_addr == dst)
105                 return (EEXIST);
106
107         CK_LIST_FOREACH(tmp, &GRE_HASH(src, dst), chain) {
108                 if (tmp == sc)
109                         continue;
110                 if (tmp->gre_oip.ip_src.s_addr == src &&
111                     tmp->gre_oip.ip_dst.s_addr == dst)
112                         return (EADDRNOTAVAIL);
113         }
114         return (0);
115 }
116
117 static int
118 in_gre_lookup(const struct mbuf *m, int off, int proto, void **arg)
119 {
120         const struct ip *ip;
121         struct gre_softc *sc;
122
123         if (V_ipv4_hashtbl == NULL)
124                 return (0);
125
126         MPASS(in_epoch(net_epoch_preempt));
127         ip = mtod(m, const struct ip *);
128         CK_LIST_FOREACH(sc, &GRE_HASH(ip->ip_dst.s_addr,
129             ip->ip_src.s_addr), chain) {
130                 /*
131                  * This is an inbound packet, its ip_dst is source address
132                  * in softc.
133                  */
134                 if (sc->gre_oip.ip_src.s_addr == ip->ip_dst.s_addr &&
135                     sc->gre_oip.ip_dst.s_addr == ip->ip_src.s_addr) {
136                         if ((GRE2IFP(sc)->if_flags & IFF_UP) == 0)
137                                 return (0);
138                         *arg = sc;
139                         return (ENCAP_DRV_LOOKUP);
140                 }
141         }
142         return (0);
143 }
144
145 /*
146  * Check that ingress address belongs to local host.
147  */
148 static void
149 in_gre_set_running(struct gre_softc *sc)
150 {
151
152         if (in_localip(sc->gre_oip.ip_src))
153                 GRE2IFP(sc)->if_drv_flags |= IFF_DRV_RUNNING;
154         else
155                 GRE2IFP(sc)->if_drv_flags &= ~IFF_DRV_RUNNING;
156 }
157
158 /*
159  * ifaddr_event handler.
160  * Clear IFF_DRV_RUNNING flag when ingress address disappears to prevent
161  * source address spoofing.
162  */
163 static void
164 in_gre_srcaddr(void *arg __unused, const struct sockaddr *sa,
165     int event __unused)
166 {
167         const struct sockaddr_in *sin;
168         struct gre_softc *sc;
169
170         if (V_ipv4_srchashtbl == NULL)
171                 return;
172
173         MPASS(in_epoch(net_epoch_preempt));
174         sin = (const struct sockaddr_in *)sa;
175         CK_LIST_FOREACH(sc, &GRE_SRCHASH(sin->sin_addr.s_addr), srchash) {
176                 if (sc->gre_oip.ip_src.s_addr != sin->sin_addr.s_addr)
177                         continue;
178                 in_gre_set_running(sc);
179         }
180 }
181
182 static void
183 in_gre_attach(struct gre_softc *sc)
184 {
185
186         sc->gre_hlen = sizeof(struct greip);
187         sc->gre_oip.ip_v = IPVERSION;
188         sc->gre_oip.ip_hl = sizeof(struct ip) >> 2;
189         sc->gre_oip.ip_p = IPPROTO_GRE;
190         gre_updatehdr(sc, &sc->gre_gihdr->gi_gre);
191         CK_LIST_INSERT_HEAD(&GRE_HASH_SC(sc), sc, chain);
192         CK_LIST_INSERT_HEAD(&GRE_SRCHASH(sc->gre_oip.ip_src.s_addr),
193             sc, srchash);
194 }
195
196 void
197 in_gre_setopts(struct gre_softc *sc, u_long cmd, uint32_t value)
198 {
199
200         MPASS(cmd == GRESKEY || cmd == GRESOPTS);
201
202         /* NOTE: we are protected with gre_ioctl_sx lock */
203         MPASS(sc->gre_family == AF_INET);
204         CK_LIST_REMOVE(sc, chain);
205         CK_LIST_REMOVE(sc, srchash);
206         GRE_WAIT();
207         if (cmd == GRESKEY)
208                 sc->gre_key = value;
209         else
210                 sc->gre_options = value;
211         in_gre_attach(sc);
212 }
213
214 int
215 in_gre_ioctl(struct gre_softc *sc, u_long cmd, caddr_t data)
216 {
217         struct ifreq *ifr = (struct ifreq *)data;
218         struct sockaddr_in *dst, *src;
219         struct ip *ip;
220         int error;
221
222         /* NOTE: we are protected with gre_ioctl_sx lock */
223         error = EINVAL;
224         switch (cmd) {
225         case SIOCSIFPHYADDR:
226                 src = &((struct in_aliasreq *)data)->ifra_addr;
227                 dst = &((struct in_aliasreq *)data)->ifra_dstaddr;
228
229                 /* sanity checks */
230                 if (src->sin_family != dst->sin_family ||
231                     src->sin_family != AF_INET ||
232                     src->sin_len != dst->sin_len ||
233                     src->sin_len != sizeof(*src))
234                         break;
235                 if (src->sin_addr.s_addr == INADDR_ANY ||
236                     dst->sin_addr.s_addr == INADDR_ANY) {
237                         error = EADDRNOTAVAIL;
238                         break;
239                 }
240                 if (V_ipv4_hashtbl == NULL) {
241                         V_ipv4_hashtbl = gre_hashinit();
242                         V_ipv4_srchashtbl = gre_hashinit();
243                 }
244                 error = in_gre_checkdup(sc, src->sin_addr.s_addr,
245                     dst->sin_addr.s_addr);
246                 if (error == EADDRNOTAVAIL)
247                         break;
248                 if (error == EEXIST) {
249                         /* Addresses are the same. Just return. */
250                         error = 0;
251                         break;
252                 }
253                 ip = malloc(sizeof(struct greip) + 3 * sizeof(uint32_t),
254                     M_GRE, M_WAITOK | M_ZERO);
255                 ip->ip_src.s_addr = src->sin_addr.s_addr;
256                 ip->ip_dst.s_addr = dst->sin_addr.s_addr;
257                 if (sc->gre_family != 0) {
258                         /* Detach existing tunnel first */
259                         CK_LIST_REMOVE(sc, chain);
260                         CK_LIST_REMOVE(sc, srchash);
261                         GRE_WAIT();
262                         free(sc->gre_hdr, M_GRE);
263                         /* XXX: should we notify about link state change? */
264                 }
265                 sc->gre_family = AF_INET;
266                 sc->gre_hdr = ip;
267                 sc->gre_oseq = 0;
268                 sc->gre_iseq = UINT32_MAX;
269                 in_gre_attach(sc);
270                 in_gre_set_running(sc);
271                 break;
272         case SIOCGIFPSRCADDR:
273         case SIOCGIFPDSTADDR:
274                 if (sc->gre_family != AF_INET) {
275                         error = EADDRNOTAVAIL;
276                         break;
277                 }
278                 src = (struct sockaddr_in *)&ifr->ifr_addr;
279                 memset(src, 0, sizeof(*src));
280                 src->sin_family = AF_INET;
281                 src->sin_len = sizeof(*src);
282                 src->sin_addr = (cmd == SIOCGIFPSRCADDR) ?
283                     sc->gre_oip.ip_src: sc->gre_oip.ip_dst;
284                 error = prison_if(curthread->td_ucred, (struct sockaddr *)src);
285                 if (error != 0)
286                         memset(src, 0, sizeof(*src));
287                 break;
288         }
289         return (error);
290 }
291
292 int
293 in_gre_output(struct mbuf *m, int af, int hlen)
294 {
295         struct greip *gi;
296
297         gi = mtod(m, struct greip *);
298         switch (af) {
299         case AF_INET:
300                 /*
301                  * gre_transmit() has used M_PREPEND() that doesn't guarantee
302                  * m_data is contiguous more than hlen bytes. Use m_copydata()
303                  * here to avoid m_pullup().
304                  */
305                 m_copydata(m, hlen + offsetof(struct ip, ip_tos),
306                     sizeof(u_char), &gi->gi_ip.ip_tos);
307                 m_copydata(m, hlen + offsetof(struct ip, ip_id),
308                     sizeof(u_short), (caddr_t)&gi->gi_ip.ip_id);
309                 break;
310 #ifdef INET6
311         case AF_INET6:
312                 gi->gi_ip.ip_tos = 0; /* XXX */
313                 ip_fillid(&gi->gi_ip);
314                 break;
315 #endif
316         }
317         gi->gi_ip.ip_ttl = V_ip_gre_ttl;
318         gi->gi_ip.ip_len = htons(m->m_pkthdr.len);
319         return (ip_output(m, NULL, NULL, IP_FORWARDING, NULL, NULL));
320 }
321
322 static const struct srcaddrtab *ipv4_srcaddrtab = NULL;
323 static const struct encaptab *ecookie = NULL;
324 static const struct encap_config ipv4_encap_cfg = {
325         .proto = IPPROTO_GRE,
326         .min_length = sizeof(struct greip) + sizeof(struct ip),
327         .exact_match = ENCAP_DRV_LOOKUP,
328         .lookup = in_gre_lookup,
329         .input = gre_input
330 };
331
332 void
333 in_gre_init(void)
334 {
335
336         if (!IS_DEFAULT_VNET(curvnet))
337                 return;
338         ipv4_srcaddrtab = ip_encap_register_srcaddr(in_gre_srcaddr,
339             NULL, M_WAITOK);
340         ecookie = ip_encap_attach(&ipv4_encap_cfg, NULL, M_WAITOK);
341 }
342
343 void
344 in_gre_uninit(void)
345 {
346
347         if (IS_DEFAULT_VNET(curvnet)) {
348                 ip_encap_detach(ecookie);
349                 ip_encap_unregister_srcaddr(ipv4_srcaddrtab);
350         }
351         if (V_ipv4_hashtbl != NULL) {
352                 gre_hashdestroy(V_ipv4_hashtbl);
353                 gre_hashdestroy(V_ipv4_srchashtbl);
354         }
355 }