if_gre.c revision 148613
1/*	$NetBSD: if_gre.c,v 1.49 2003/12/11 00:22:29 itojun Exp $ */
2/*	 $FreeBSD: head/sys/net/if_gre.c 148613 2005-08-01 08:14:21Z bz $ */
3
4/*-
5 * Copyright (c) 1998 The NetBSD Foundation, Inc.
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 * 3. All advertising materials mentioning features or use of this software
22 *    must display the following acknowledgement:
23 *        This product includes software developed by the NetBSD
24 *        Foundation, Inc. and its contributors.
25 * 4. Neither the name of The NetBSD Foundation nor the names of its
26 *    contributors may be used to endorse or promote products derived
27 *    from this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
30 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
31 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
32 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
33 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
34 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
37 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 * POSSIBILITY OF SUCH DAMAGE.
40 */
41
42/*
43 * Encapsulate L3 protocols into IP
44 * See RFC 2784 (successor of RFC 1701 and 1702) for more details.
45 * If_gre is compatible with Cisco GRE tunnels, so you can
46 * have a NetBSD box as the other end of a tunnel interface of a Cisco
47 * router. See gre(4) for more details.
48 * Also supported:  IP in IP encaps (proto 55) as of RFC 2004
49 */
50
51#include "opt_atalk.h"
52#include "opt_inet.h"
53#include "opt_inet6.h"
54
55#include <sys/param.h>
56#include <sys/kernel.h>
57#include <sys/malloc.h>
58#include <sys/module.h>
59#include <sys/mbuf.h>
60#include <sys/protosw.h>
61#include <sys/socket.h>
62#include <sys/sockio.h>
63#include <sys/sysctl.h>
64#include <sys/systm.h>
65
66#include <net/ethernet.h>
67#include <net/if.h>
68#include <net/if_clone.h>
69#include <net/if_types.h>
70#include <net/route.h>
71
72#ifdef INET
73#include <netinet/in.h>
74#include <netinet/in_systm.h>
75#include <netinet/in_var.h>
76#include <netinet/ip.h>
77#include <netinet/ip_gre.h>
78#include <netinet/ip_var.h>
79#include <netinet/ip_encap.h>
80#else
81#error "Huh? if_gre without inet?"
82#endif
83
84#include <net/bpf.h>
85
86#include <net/net_osdep.h>
87#include <net/if_gre.h>
88
89/*
90 * It is not easy to calculate the right value for a GRE MTU.
91 * We leave this task to the admin and use the same default that
92 * other vendors use.
93 */
94#define GREMTU	1476
95
96#define GRENAME	"gre"
97
98/*
99 * gre_mtx protects all global variables in if_gre.c.
100 * XXX: gre_softc data not protected yet.
101 */
102struct mtx gre_mtx;
103static MALLOC_DEFINE(M_GRE, GRENAME, "Generic Routing Encapsulation");
104
105struct gre_softc_head gre_softc_list;
106
107static int	gre_clone_create(struct if_clone *, int);
108static void	gre_clone_destroy(struct ifnet *);
109static int	gre_ioctl(struct ifnet *, u_long, caddr_t);
110static int	gre_output(struct ifnet *, struct mbuf *, struct sockaddr *,
111		    struct rtentry *rt);
112
113IFC_SIMPLE_DECLARE(gre, 0);
114
115static int gre_compute_route(struct gre_softc *sc);
116
117static void	greattach(void);
118
119#ifdef INET
120extern struct domain inetdomain;
121static const struct protosw in_gre_protosw =
122{ SOCK_RAW,     &inetdomain,    IPPROTO_GRE,    PR_ATOMIC|PR_ADDR,
123  (pr_input_t*)gre_input, (pr_output_t*)rip_output, rip_ctlinput, rip_ctloutput,
124  0,
125  0,		0,		0,		0,
126  &rip_usrreqs
127};
128static const struct protosw in_mobile_protosw =
129{ SOCK_RAW,     &inetdomain,    IPPROTO_MOBILE, PR_ATOMIC|PR_ADDR,
130  (pr_input_t*)gre_mobile_input, (pr_output_t*)rip_output, rip_ctlinput, rip_ctloutput,
131  0,
132  0,		0,		0,		0,
133  &rip_usrreqs
134};
135#endif
136
137SYSCTL_DECL(_net_link);
138SYSCTL_NODE(_net_link, IFT_TUNNEL, gre, CTLFLAG_RW, 0,
139    "Generic Routing Encapsulation");
140#ifndef MAX_GRE_NEST
141/*
142 * This macro controls the default upper limitation on nesting of gre tunnels.
143 * Since, setting a large value to this macro with a careless configuration
144 * may introduce system crash, we don't allow any nestings by default.
145 * If you need to configure nested gre tunnels, you can define this macro
146 * in your kernel configuration file.  However, if you do so, please be
147 * careful to configure the tunnels so that it won't make a loop.
148 */
149#define MAX_GRE_NEST 1
150#endif
151static int max_gre_nesting = MAX_GRE_NEST;
152SYSCTL_INT(_net_link_gre, OID_AUTO, max_nesting, CTLFLAG_RW,
153    &max_gre_nesting, 0, "Max nested tunnels");
154
155/* ARGSUSED */
156static void
157greattach(void)
158{
159
160	mtx_init(&gre_mtx, "gre_mtx", NULL, MTX_DEF);
161	LIST_INIT(&gre_softc_list);
162	if_clone_attach(&gre_cloner);
163}
164
165static int
166gre_clone_create(ifc, unit)
167	struct if_clone *ifc;
168	int unit;
169{
170	struct gre_softc *sc;
171
172	sc = malloc(sizeof(struct gre_softc), M_GRE, M_WAITOK | M_ZERO);
173
174	GRE2IFP(sc) = if_alloc(IFT_TUNNEL);
175	if (GRE2IFP(sc) == NULL) {
176		free(sc, M_GRE);
177		return (ENOSPC);
178	}
179
180	GRE2IFP(sc)->if_softc = sc;
181	if_initname(GRE2IFP(sc), ifc->ifc_name, unit);
182
183	GRE2IFP(sc)->if_snd.ifq_maxlen = IFQ_MAXLEN;
184	GRE2IFP(sc)->if_addrlen = 0;
185	GRE2IFP(sc)->if_hdrlen = 24; /* IP + GRE */
186	GRE2IFP(sc)->if_mtu = GREMTU;
187	GRE2IFP(sc)->if_flags = IFF_POINTOPOINT|IFF_MULTICAST;
188	GRE2IFP(sc)->if_output = gre_output;
189	GRE2IFP(sc)->if_ioctl = gre_ioctl;
190	sc->g_dst.s_addr = sc->g_src.s_addr = INADDR_ANY;
191	sc->g_proto = IPPROTO_GRE;
192	GRE2IFP(sc)->if_flags |= IFF_LINK0;
193	sc->encap = NULL;
194	sc->called = 0;
195	sc->wccp_ver = WCCP_V1;
196	if_attach(GRE2IFP(sc));
197	bpfattach(GRE2IFP(sc), DLT_NULL, sizeof(u_int32_t));
198	mtx_lock(&gre_mtx);
199	LIST_INSERT_HEAD(&gre_softc_list, sc, sc_list);
200	mtx_unlock(&gre_mtx);
201	return (0);
202}
203
204static void
205gre_destroy(struct gre_softc *sc)
206{
207
208#ifdef INET
209	if (sc->encap != NULL)
210		encap_detach(sc->encap);
211#endif
212	bpfdetach(GRE2IFP(sc));
213	if_detach(GRE2IFP(sc));
214	if_free(GRE2IFP(sc));
215	free(sc, M_GRE);
216}
217
218static void
219gre_clone_destroy(ifp)
220	struct ifnet *ifp;
221{
222	struct gre_softc *sc = ifp->if_softc;
223
224	mtx_lock(&gre_mtx);
225	LIST_REMOVE(sc, sc_list);
226	mtx_unlock(&gre_mtx);
227	gre_destroy(sc);
228}
229
230/*
231 * The output routine. Takes a packet and encapsulates it in the protocol
232 * given by sc->g_proto. See also RFC 1701 and RFC 2004
233 */
234static int
235gre_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst,
236	   struct rtentry *rt)
237{
238	int error = 0;
239	struct gre_softc *sc = ifp->if_softc;
240	struct greip *gh;
241	struct ip *ip;
242	u_short ip_id = 0;
243	uint8_t ip_tos = 0;
244	u_int16_t etype = 0;
245	struct mobile_h mob_h;
246	u_int32_t af;
247
248	/*
249	 * gre may cause infinite recursion calls when misconfigured.
250	 * We'll prevent this by introducing upper limit.
251	 */
252	if (++(sc->called) > max_gre_nesting) {
253		printf("%s: gre_output: recursively called too many "
254		       "times(%d)\n", if_name(GRE2IFP(sc)), sc->called);
255		m_freem(m);
256		error = EIO;    /* is there better errno? */
257		goto end;
258	}
259
260	if ((ifp->if_flags & (IFF_UP | IFF_RUNNING)) == 0 ||
261	    sc->g_src.s_addr == INADDR_ANY || sc->g_dst.s_addr == INADDR_ANY) {
262		m_freem(m);
263		error = ENETDOWN;
264		goto end;
265	}
266
267	gh = NULL;
268	ip = NULL;
269
270	/* BPF writes need to be handled specially. */
271	if (dst->sa_family == AF_UNSPEC) {
272		bcopy(dst->sa_data, &af, sizeof(af));
273		dst->sa_family = af;
274	}
275
276	if (ifp->if_bpf) {
277		af = dst->sa_family;
278		bpf_mtap2(ifp->if_bpf, &af, sizeof(af), m);
279	}
280
281	m->m_flags &= ~(M_BCAST|M_MCAST);
282
283	if (sc->g_proto == IPPROTO_MOBILE) {
284		if (dst->sa_family == AF_INET) {
285			struct mbuf *m0;
286			int msiz;
287
288			ip = mtod(m, struct ip *);
289
290			/*
291			 * RFC2004 specifies that fragmented diagrams shouldn't
292			 * be encapsulated.
293			 */
294			if ((ip->ip_off & IP_MF) != 0) {
295				_IF_DROP(&ifp->if_snd);
296				m_freem(m);
297				error = EINVAL;    /* is there better errno? */
298				goto end;
299			}
300			memset(&mob_h, 0, MOB_H_SIZ_L);
301			mob_h.proto = (ip->ip_p) << 8;
302			mob_h.odst = ip->ip_dst.s_addr;
303			ip->ip_dst.s_addr = sc->g_dst.s_addr;
304
305			/*
306			 * If the packet comes from our host, we only change
307			 * the destination address in the IP header.
308			 * Else we also need to save and change the source
309			 */
310			if (in_hosteq(ip->ip_src, sc->g_src)) {
311				msiz = MOB_H_SIZ_S;
312			} else {
313				mob_h.proto |= MOB_H_SBIT;
314				mob_h.osrc = ip->ip_src.s_addr;
315				ip->ip_src.s_addr = sc->g_src.s_addr;
316				msiz = MOB_H_SIZ_L;
317			}
318			mob_h.proto = htons(mob_h.proto);
319			mob_h.hcrc = gre_in_cksum((u_int16_t *)&mob_h, msiz);
320
321			if ((m->m_data - msiz) < m->m_pktdat) {
322				/* need new mbuf */
323				MGETHDR(m0, M_DONTWAIT, MT_HEADER);
324				if (m0 == NULL) {
325					_IF_DROP(&ifp->if_snd);
326					m_freem(m);
327					error = ENOBUFS;
328					goto end;
329				}
330				m0->m_next = m;
331				m->m_data += sizeof(struct ip);
332				m->m_len -= sizeof(struct ip);
333				m0->m_pkthdr.len = m->m_pkthdr.len + msiz;
334				m0->m_len = msiz + sizeof(struct ip);
335				m0->m_data += max_linkhdr;
336				memcpy(mtod(m0, caddr_t), (caddr_t)ip,
337				       sizeof(struct ip));
338				m = m0;
339			} else {  /* we have some space left in the old one */
340				m->m_data -= msiz;
341				m->m_len += msiz;
342				m->m_pkthdr.len += msiz;
343				bcopy(ip, mtod(m, caddr_t),
344					sizeof(struct ip));
345			}
346			ip = mtod(m, struct ip *);
347			memcpy((caddr_t)(ip + 1), &mob_h, (unsigned)msiz);
348			ip->ip_len = ntohs(ip->ip_len) + msiz;
349		} else {  /* AF_INET */
350			_IF_DROP(&ifp->if_snd);
351			m_freem(m);
352			error = EINVAL;
353			goto end;
354		}
355	} else if (sc->g_proto == IPPROTO_GRE) {
356		switch (dst->sa_family) {
357		case AF_INET:
358			ip = mtod(m, struct ip *);
359			ip_tos = ip->ip_tos;
360			ip_id = ip->ip_id;
361			etype = ETHERTYPE_IP;
362			break;
363#ifdef INET6
364		case AF_INET6:
365			ip_id = ip_newid();
366			etype = ETHERTYPE_IPV6;
367			break;
368#endif
369#ifdef NETATALK
370		case AF_APPLETALK:
371			etype = ETHERTYPE_ATALK;
372			break;
373#endif
374		default:
375			_IF_DROP(&ifp->if_snd);
376			m_freem(m);
377			error = EAFNOSUPPORT;
378			goto end;
379		}
380		M_PREPEND(m, sizeof(struct greip), M_DONTWAIT);
381	} else {
382		_IF_DROP(&ifp->if_snd);
383		m_freem(m);
384		error = EINVAL;
385		goto end;
386	}
387
388	if (m == NULL) {	/* mbuf allocation failed */
389		_IF_DROP(&ifp->if_snd);
390		error = ENOBUFS;
391		goto end;
392	}
393
394	gh = mtod(m, struct greip *);
395	if (sc->g_proto == IPPROTO_GRE) {
396		/* we don't have any GRE flags for now */
397		memset((void *)gh, 0, sizeof(struct greip));
398		gh->gi_ptype = htons(etype);
399	}
400
401	gh->gi_pr = sc->g_proto;
402	if (sc->g_proto != IPPROTO_MOBILE) {
403		gh->gi_src = sc->g_src;
404		gh->gi_dst = sc->g_dst;
405		((struct ip*)gh)->ip_v = IPPROTO_IPV4;
406		((struct ip*)gh)->ip_hl = (sizeof(struct ip)) >> 2;
407		((struct ip*)gh)->ip_ttl = GRE_TTL;
408		((struct ip*)gh)->ip_tos = ip_tos;
409		((struct ip*)gh)->ip_id = ip_id;
410		gh->gi_len = m->m_pkthdr.len;
411	}
412
413	ifp->if_opackets++;
414	ifp->if_obytes += m->m_pkthdr.len;
415	/*
416	 * Send it off and with IP_FORWARD flag to prevent it from
417	 * overwriting the ip_id again.  ip_id is already set to the
418	 * ip_id of the encapsulated packet.
419	 */
420	error = ip_output(m, NULL, &sc->route, IP_FORWARDING,
421	    (struct ip_moptions *)NULL, (struct inpcb *)NULL);
422  end:
423	sc->called = 0;
424	if (error)
425		ifp->if_oerrors++;
426	return (error);
427}
428
429static int
430gre_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
431{
432	struct ifreq *ifr = (struct ifreq *)data;
433	struct if_laddrreq *lifr = (struct if_laddrreq *)data;
434	struct in_aliasreq *aifr = (struct in_aliasreq *)data;
435	struct gre_softc *sc = ifp->if_softc;
436	int s;
437	struct sockaddr_in si;
438	struct sockaddr *sa = NULL;
439	int error;
440	struct sockaddr_in sp, sm, dp, dm;
441
442	error = 0;
443
444	s = splnet();
445	switch (cmd) {
446	case SIOCSIFADDR:
447		ifp->if_flags |= IFF_UP;
448		break;
449	case SIOCSIFDSTADDR:
450		break;
451	case SIOCSIFFLAGS:
452		if ((error = suser(curthread)) != 0)
453			break;
454		if ((ifr->ifr_flags & IFF_LINK0) != 0)
455			sc->g_proto = IPPROTO_GRE;
456		else
457			sc->g_proto = IPPROTO_MOBILE;
458		if ((ifr->ifr_flags & IFF_LINK2) != 0)
459			sc->wccp_ver = WCCP_V2;
460		else
461			sc->wccp_ver = WCCP_V1;
462		goto recompute;
463	case SIOCSIFMTU:
464		if ((error = suser(curthread)) != 0)
465			break;
466		if (ifr->ifr_mtu < 576) {
467			error = EINVAL;
468			break;
469		}
470		ifp->if_mtu = ifr->ifr_mtu;
471		break;
472	case SIOCGIFMTU:
473		ifr->ifr_mtu = GRE2IFP(sc)->if_mtu;
474		break;
475	case SIOCADDMULTI:
476	case SIOCDELMULTI:
477		if ((error = suser(curthread)) != 0)
478			break;
479		if (ifr == 0) {
480			error = EAFNOSUPPORT;
481			break;
482		}
483		switch (ifr->ifr_addr.sa_family) {
484#ifdef INET
485		case AF_INET:
486			break;
487#endif
488#ifdef INET6
489		case AF_INET6:
490			break;
491#endif
492		default:
493			error = EAFNOSUPPORT;
494			break;
495		}
496		break;
497	case GRESPROTO:
498		if ((error = suser(curthread)) != 0)
499			break;
500		sc->g_proto = ifr->ifr_flags;
501		switch (sc->g_proto) {
502		case IPPROTO_GRE:
503			ifp->if_flags |= IFF_LINK0;
504			break;
505		case IPPROTO_MOBILE:
506			ifp->if_flags &= ~IFF_LINK0;
507			break;
508		default:
509			error = EPROTONOSUPPORT;
510			break;
511		}
512		goto recompute;
513	case GREGPROTO:
514		ifr->ifr_flags = sc->g_proto;
515		break;
516	case GRESADDRS:
517	case GRESADDRD:
518		if ((error = suser(curthread)) != 0)
519			break;
520		/*
521		 * set tunnel endpoints, compute a less specific route
522		 * to the remote end and mark if as up
523		 */
524		sa = &ifr->ifr_addr;
525		if (cmd == GRESADDRS)
526			sc->g_src = (satosin(sa))->sin_addr;
527		if (cmd == GRESADDRD)
528			sc->g_dst = (satosin(sa))->sin_addr;
529	recompute:
530#ifdef INET
531		if (sc->encap != NULL) {
532			encap_detach(sc->encap);
533			sc->encap = NULL;
534		}
535#endif
536		if ((sc->g_src.s_addr != INADDR_ANY) &&
537		    (sc->g_dst.s_addr != INADDR_ANY)) {
538			bzero(&sp, sizeof(sp));
539			bzero(&sm, sizeof(sm));
540			bzero(&dp, sizeof(dp));
541			bzero(&dm, sizeof(dm));
542			sp.sin_len = sm.sin_len = dp.sin_len = dm.sin_len =
543			    sizeof(struct sockaddr_in);
544			sp.sin_family = sm.sin_family = dp.sin_family =
545			    dm.sin_family = AF_INET;
546			sp.sin_addr = sc->g_src;
547			dp.sin_addr = sc->g_dst;
548			sm.sin_addr.s_addr = dm.sin_addr.s_addr =
549			    INADDR_BROADCAST;
550#ifdef INET
551			sc->encap = encap_attach(AF_INET, sc->g_proto,
552			    sintosa(&sp), sintosa(&sm), sintosa(&dp),
553			    sintosa(&dm), (sc->g_proto == IPPROTO_GRE) ?
554				&in_gre_protosw : &in_mobile_protosw, sc);
555			if (sc->encap == NULL)
556				printf("%s: unable to attach encap\n",
557				    if_name(GRE2IFP(sc)));
558#endif
559			if (sc->route.ro_rt != 0) /* free old route */
560				RTFREE(sc->route.ro_rt);
561			if (gre_compute_route(sc) == 0)
562				ifp->if_flags |= IFF_RUNNING;
563			else
564				ifp->if_flags &= ~IFF_RUNNING;
565		}
566		break;
567	case GREGADDRS:
568		memset(&si, 0, sizeof(si));
569		si.sin_family = AF_INET;
570		si.sin_len = sizeof(struct sockaddr_in);
571		si.sin_addr.s_addr = sc->g_src.s_addr;
572		sa = sintosa(&si);
573		ifr->ifr_addr = *sa;
574		break;
575	case GREGADDRD:
576		memset(&si, 0, sizeof(si));
577		si.sin_family = AF_INET;
578		si.sin_len = sizeof(struct sockaddr_in);
579		si.sin_addr.s_addr = sc->g_dst.s_addr;
580		sa = sintosa(&si);
581		ifr->ifr_addr = *sa;
582		break;
583	case SIOCSIFPHYADDR:
584		if ((error = suser(curthread)) != 0)
585			break;
586		if (aifr->ifra_addr.sin_family != AF_INET ||
587		    aifr->ifra_dstaddr.sin_family != AF_INET) {
588			error = EAFNOSUPPORT;
589			break;
590		}
591		if (aifr->ifra_addr.sin_len != sizeof(si) ||
592		    aifr->ifra_dstaddr.sin_len != sizeof(si)) {
593			error = EINVAL;
594			break;
595		}
596		sc->g_src = aifr->ifra_addr.sin_addr;
597		sc->g_dst = aifr->ifra_dstaddr.sin_addr;
598		goto recompute;
599	case SIOCSLIFPHYADDR:
600		if ((error = suser(curthread)) != 0)
601			break;
602		if (lifr->addr.ss_family != AF_INET ||
603		    lifr->dstaddr.ss_family != AF_INET) {
604			error = EAFNOSUPPORT;
605			break;
606		}
607		if (lifr->addr.ss_len != sizeof(si) ||
608		    lifr->dstaddr.ss_len != sizeof(si)) {
609			error = EINVAL;
610			break;
611		}
612		sc->g_src = (satosin((struct sockadrr *)&lifr->addr))->sin_addr;
613		sc->g_dst =
614		    (satosin((struct sockadrr *)&lifr->dstaddr))->sin_addr;
615		goto recompute;
616	case SIOCDIFPHYADDR:
617		if ((error = suser(curthread)) != 0)
618			break;
619		sc->g_src.s_addr = INADDR_ANY;
620		sc->g_dst.s_addr = INADDR_ANY;
621		goto recompute;
622	case SIOCGLIFPHYADDR:
623		if (sc->g_src.s_addr == INADDR_ANY ||
624		    sc->g_dst.s_addr == INADDR_ANY) {
625			error = EADDRNOTAVAIL;
626			break;
627		}
628		memset(&si, 0, sizeof(si));
629		si.sin_family = AF_INET;
630		si.sin_len = sizeof(struct sockaddr_in);
631		si.sin_addr.s_addr = sc->g_src.s_addr;
632		memcpy(&lifr->addr, &si, sizeof(si));
633		si.sin_addr.s_addr = sc->g_dst.s_addr;
634		memcpy(&lifr->dstaddr, &si, sizeof(si));
635		break;
636	case SIOCGIFPSRCADDR:
637#ifdef INET6
638	case SIOCGIFPSRCADDR_IN6:
639#endif
640		if (sc->g_src.s_addr == INADDR_ANY) {
641			error = EADDRNOTAVAIL;
642			break;
643		}
644		memset(&si, 0, sizeof(si));
645		si.sin_family = AF_INET;
646		si.sin_len = sizeof(struct sockaddr_in);
647		si.sin_addr.s_addr = sc->g_src.s_addr;
648		bcopy(&si, &ifr->ifr_addr, sizeof(ifr->ifr_addr));
649		break;
650	case SIOCGIFPDSTADDR:
651#ifdef INET6
652	case SIOCGIFPDSTADDR_IN6:
653#endif
654		if (sc->g_dst.s_addr == INADDR_ANY) {
655			error = EADDRNOTAVAIL;
656			break;
657		}
658		memset(&si, 0, sizeof(si));
659		si.sin_family = AF_INET;
660		si.sin_len = sizeof(struct sockaddr_in);
661		si.sin_addr.s_addr = sc->g_dst.s_addr;
662		bcopy(&si, &ifr->ifr_addr, sizeof(ifr->ifr_addr));
663		break;
664	default:
665		error = EINVAL;
666		break;
667	}
668
669	splx(s);
670	return (error);
671}
672
673/*
674 * computes a route to our destination that is not the one
675 * which would be taken by ip_output(), as this one will loop back to
676 * us. If the interface is p2p as  a--->b, then a routing entry exists
677 * If we now send a packet to b (e.g. ping b), this will come down here
678 * gets src=a, dst=b tacked on and would from ip_output() sent back to
679 * if_gre.
680 * Goal here is to compute a route to b that is less specific than
681 * a-->b. We know that this one exists as in normal operation we have
682 * at least a default route which matches.
683 */
684static int
685gre_compute_route(struct gre_softc *sc)
686{
687	struct route *ro;
688	u_int32_t a, b, c;
689
690	ro = &sc->route;
691
692	memset(ro, 0, sizeof(struct route));
693	((struct sockaddr_in *)&ro->ro_dst)->sin_addr = sc->g_dst;
694	ro->ro_dst.sa_family = AF_INET;
695	ro->ro_dst.sa_len = sizeof(ro->ro_dst);
696
697	/*
698	 * toggle last bit, so our interface is not found, but a less
699	 * specific route. I'd rather like to specify a shorter mask,
700	 * but this is not possible. Should work though. XXX
701	 * there is a simpler way ...
702	 */
703	if ((GRE2IFP(sc)->if_flags & IFF_LINK1) == 0) {
704		a = ntohl(sc->g_dst.s_addr);
705		b = a & 0x01;
706		c = a & 0xfffffffe;
707		b = b ^ 0x01;
708		a = b | c;
709		((struct sockaddr_in *)&ro->ro_dst)->sin_addr.s_addr
710		    = htonl(a);
711	}
712
713#ifdef DIAGNOSTIC
714	printf("%s: searching for a route to %s", if_name(GRE2IFP(sc)),
715	    inet_ntoa(((struct sockaddr_in *)&ro->ro_dst)->sin_addr));
716#endif
717
718	rtalloc(ro);
719
720	/*
721	 * check if this returned a route at all and this route is no
722	 * recursion to ourself
723	 */
724	if (ro->ro_rt == NULL || ro->ro_rt->rt_ifp->if_softc == sc) {
725#ifdef DIAGNOSTIC
726		if (ro->ro_rt == NULL)
727			printf(" - no route found!\n");
728		else
729			printf(" - route loops back to ourself!\n");
730#endif
731		return EADDRNOTAVAIL;
732	}
733
734	/*
735	 * now change it back - else ip_output will just drop
736	 * the route and search one to this interface ...
737	 */
738	if ((GRE2IFP(sc)->if_flags & IFF_LINK1) == 0)
739		((struct sockaddr_in *)&ro->ro_dst)->sin_addr = sc->g_dst;
740
741#ifdef DIAGNOSTIC
742	printf(", choosing %s with gateway %s", if_name(ro->ro_rt->rt_ifp),
743	    inet_ntoa(((struct sockaddr_in *)(ro->ro_rt->rt_gateway))->sin_addr));
744	printf("\n");
745#endif
746
747	return 0;
748}
749
750/*
751 * do a checksum of a buffer - much like in_cksum, which operates on
752 * mbufs.
753 */
754u_int16_t
755gre_in_cksum(u_int16_t *p, u_int len)
756{
757	u_int32_t sum = 0;
758	int nwords = len >> 1;
759
760	while (nwords-- != 0)
761		sum += *p++;
762
763	if (len & 1) {
764		union {
765			u_short w;
766			u_char c[2];
767		} u;
768		u.c[0] = *(u_char *)p;
769		u.c[1] = 0;
770		sum += u.w;
771	}
772
773	/* end-around-carry */
774	sum = (sum >> 16) + (sum & 0xffff);
775	sum += (sum >> 16);
776	return (~sum);
777}
778
779static int
780gremodevent(module_t mod, int type, void *data)
781{
782	struct gre_softc *sc;
783
784	switch (type) {
785	case MOD_LOAD:
786		greattach();
787		break;
788	case MOD_UNLOAD:
789		if_clone_detach(&gre_cloner);
790
791		mtx_lock(&gre_mtx);
792		while ((sc = LIST_FIRST(&gre_softc_list)) != NULL) {
793			LIST_REMOVE(sc, sc_list);
794			mtx_unlock(&gre_mtx);
795			gre_destroy(sc);
796			mtx_lock(&gre_mtx);
797		}
798		mtx_unlock(&gre_mtx);
799		mtx_destroy(&gre_mtx);
800		break;
801	default:
802		return EOPNOTSUPP;
803	}
804	return 0;
805}
806
807static moduledata_t gre_mod = {
808	"if_gre",
809	gremodevent,
810	0
811};
812
813DECLARE_MODULE(if_gre, gre_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
814MODULE_VERSION(if_gre, 1);
815