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