2 * $FreeBSD: src/sys/netinet/in_gif.c,v 1.5.2.11 2003/01/23 21:06:45 sam Exp $
3 * $DragonFly: src/sys/netinet/in_gif.c,v 1.18 2008/10/27 02:56:30 sephe Exp $
4 * $KAME: in_gif.c,v 1.54 2001/05/14 14:02:16 itojun Exp $
7 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the project nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include "opt_inet6.h"
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/socket.h>
41 #include <sys/sockio.h>
43 #include <sys/errno.h>
44 #include <sys/kernel.h>
45 #include <sys/sysctl.h>
46 #include <sys/protosw.h>
48 #include <sys/malloc.h>
50 #include <machine/stdarg.h>
53 #include <net/route.h>
55 #include <netinet/in.h>
56 #include <netinet/in_systm.h>
57 #include <netinet/ip.h>
58 #include <netinet/ip_var.h>
59 #include <netinet/in_gif.h>
60 #include <netinet/in_var.h>
61 #include <netinet/ip_encap.h>
62 #include <netinet/ip_ecn.h>
65 #include <netinet/ip6.h>
68 #include <net/gif/if_gif.h>
69 #include <net/net_osdep.h>
71 #include <sys/thread2.h> /* ipstat */
74 static int gif_validate4 (const struct ip
*, struct gif_softc
*,
77 extern struct domain inetdomain
;
78 const struct protosw in_gif_protosw
=
79 { SOCK_RAW
, &inetdomain
, 0/*IPPROTO_IPV[46]*/, PR_ATOMIC
|PR_ADDR
,
80 in_gif_input
, rip_output
, 0, rip_ctloutput
,
86 int ip_gif_ttl
= GIF_TTL
;
87 SYSCTL_INT(_net_inet_ip
, IPCTL_GIF_TTL
, gifttl
, CTLFLAG_RW
,
91 in_gif_output(struct ifnet
*ifp
, int family
, struct mbuf
*m
)
93 struct gif_softc
*sc
= (struct gif_softc
*)ifp
;
94 struct sockaddr_in
*dst
= (struct sockaddr_in
*)&sc
->gif_ro
.ro_dst
;
95 struct sockaddr_in
*sin_src
= (struct sockaddr_in
*)sc
->gif_psrc
;
96 struct sockaddr_in
*sin_dst
= (struct sockaddr_in
*)sc
->gif_pdst
;
97 struct ip iphdr
; /* capsule IP header, host byte ordered */
101 if (sin_src
== NULL
|| sin_dst
== NULL
||
102 sin_src
->sin_family
!= AF_INET
||
103 sin_dst
->sin_family
!= AF_INET
) {
114 proto
= IPPROTO_IPV4
;
115 if (m
->m_len
< sizeof *ip
) {
116 m
= m_pullup(m
, sizeof *ip
);
120 ip
= mtod(m
, struct ip
*);
129 proto
= IPPROTO_IPV6
;
130 if (m
->m_len
< sizeof *ip6
) {
131 m
= m_pullup(m
, sizeof *ip6
);
135 ip6
= mtod(m
, struct ip6_hdr
*);
136 tos
= (ntohl(ip6
->ip6_flow
) >> 20) & 0xff;
142 kprintf("in_gif_output: warning: unknown family %d passed\n",
149 bzero(&iphdr
, sizeof iphdr
);
150 iphdr
.ip_src
= sin_src
->sin_addr
;
151 /* bidirectional configured tunnel mode */
152 if (sin_dst
->sin_addr
.s_addr
!= INADDR_ANY
)
153 iphdr
.ip_dst
= sin_dst
->sin_addr
;
159 /* version will be set in ip_output() */
160 iphdr
.ip_ttl
= ip_gif_ttl
;
161 iphdr
.ip_len
= m
->m_pkthdr
.len
+ sizeof(struct ip
);
162 if (ifp
->if_flags
& IFF_LINK1
)
163 ip_ecn_ingress(ECN_ALLOWED
, &iphdr
.ip_tos
, &tos
);
165 ip_ecn_ingress(ECN_NOCARE
, &iphdr
.ip_tos
, &tos
);
167 /* prepend new IP header */
168 M_PREPEND(m
, sizeof(struct ip
), MB_DONTWAIT
);
169 if (m
&& m
->m_len
< sizeof(struct ip
))
170 m
= m_pullup(m
, sizeof(struct ip
));
172 kprintf("ENOBUFS in in_gif_output %d\n", __LINE__
);
175 bcopy(&iphdr
, mtod(m
, struct ip
*), sizeof(struct ip
));
177 if (dst
->sin_family
!= sin_dst
->sin_family
||
178 dst
->sin_addr
.s_addr
!= sin_dst
->sin_addr
.s_addr
) {
179 /* cache route doesn't match */
180 dst
->sin_family
= sin_dst
->sin_family
;
181 dst
->sin_len
= sizeof(struct sockaddr_in
);
182 dst
->sin_addr
= sin_dst
->sin_addr
;
183 if (sc
->gif_ro
.ro_rt
!= NULL
) {
184 RTFREE(sc
->gif_ro
.ro_rt
);
185 sc
->gif_ro
.ro_rt
= NULL
;
188 sc
->gif_if
.if_mtu
= GIF_MTU
;
192 if (sc
->gif_ro
.ro_rt
== NULL
) {
193 rtalloc(&sc
->gif_ro
);
194 if (sc
->gif_ro
.ro_rt
== NULL
) {
199 /* if it constitutes infinite encapsulation, punt. */
200 if (sc
->gif_ro
.ro_rt
->rt_ifp
== ifp
) {
202 return ENETUNREACH
; /* XXX */
205 ifp
->if_mtu
= sc
->gif_ro
.ro_rt
->rt_ifp
->if_mtu
-
210 error
= ip_output(m
, NULL
, &sc
->gif_ro
, 0, NULL
, NULL
);
215 in_gif_input(struct mbuf
*m
, ...)
217 struct ifnet
*gifp
= NULL
;
225 off
= __va_arg(ap
, int);
226 proto
= __va_arg(ap
, int);
229 ip
= mtod(m
, struct ip
*);
231 gifp
= (struct ifnet
*)encap_getarg(m
);
233 if (gifp
== NULL
|| (gifp
->if_flags
& IFF_UP
) == 0) {
248 if (m
->m_len
< sizeof *ip
) {
249 m
= m_pullup(m
, sizeof *ip
);
253 ip
= mtod(m
, struct ip
*);
254 if (gifp
->if_flags
& IFF_LINK1
)
255 ip_ecn_egress(ECN_ALLOWED
, &otos
, &ip
->ip_tos
);
257 ip_ecn_egress(ECN_NOCARE
, &otos
, &ip
->ip_tos
);
267 if (m
->m_len
< sizeof *ip6
) {
268 m
= m_pullup(m
, sizeof *ip6
);
272 ip6
= mtod(m
, struct ip6_hdr
*);
273 itos
= (ntohl(ip6
->ip6_flow
) >> 20) & 0xff;
274 if (gifp
->if_flags
& IFF_LINK1
)
275 ip_ecn_egress(ECN_ALLOWED
, &otos
, &itos
);
277 ip_ecn_egress(ECN_NOCARE
, &otos
, &itos
);
278 ip6
->ip6_flow
&= ~htonl(0xff << 20);
279 ip6
->ip6_flow
|= htonl((u_int32_t
)itos
<< 20);
288 gif_input(m
, af
, gifp
);
293 * validate outer address.
296 gif_validate4(const struct ip
*ip
, struct gif_softc
*sc
, struct ifnet
*ifp
)
298 struct sockaddr_in
*src
, *dst
;
299 struct in_ifaddr_container
*iac
;
301 src
= (struct sockaddr_in
*)sc
->gif_psrc
;
302 dst
= (struct sockaddr_in
*)sc
->gif_pdst
;
304 /* check for address match */
305 if (src
->sin_addr
.s_addr
!= ip
->ip_dst
.s_addr
||
306 dst
->sin_addr
.s_addr
!= ip
->ip_src
.s_addr
)
309 /* martian filters on outer source - NOT done in ip_input! */
310 if (IN_MULTICAST(ntohl(ip
->ip_src
.s_addr
)))
312 switch ((ntohl(ip
->ip_src
.s_addr
) & 0xff000000) >> 24) {
313 case 0: case 127: case 255:
316 /* reject packets with broadcast on source */
317 TAILQ_FOREACH(iac
, &in_ifaddrheads
[mycpuid
], ia_link
) {
318 struct in_ifaddr
*ia4
= iac
->ia
;
320 if (!(ia4
->ia_ifa
.ifa_ifp
->if_flags
& IFF_BROADCAST
))
322 if (ip
->ip_src
.s_addr
== ia4
->ia_broadaddr
.sin_addr
.s_addr
)
326 /* ingress filters on outer source */
327 if (!(sc
->gif_if
.if_flags
& IFF_LINK2
) && ifp
!= NULL
) {
328 struct sockaddr_in sin
;
331 bzero(&sin
, sizeof sin
);
332 sin
.sin_family
= AF_INET
;
333 sin
.sin_len
= sizeof(struct sockaddr_in
);
334 sin
.sin_addr
= ip
->ip_src
;
335 rt
= rtpurelookup((struct sockaddr
*)&sin
);
338 if (rt
== NULL
|| rt
->rt_ifp
!= ifp
) {
340 log(LOG_WARNING
, "%s: packet from 0x%x dropped "
341 "due to ingress filter\n", if_name(&sc
->gif_if
),
342 (u_int32_t
)ntohl(sin
.sin_addr
.s_addr
));
352 * we know that we are in IFF_UP, outer address available, and outer family
353 * matched the physical addr family. see gif_encapcheck().
356 gif_encapcheck4(const struct mbuf
*m
, int off
, int proto
, void *arg
)
359 struct gif_softc
*sc
;
362 /* sanity check done in caller */
363 sc
= (struct gif_softc
*)arg
;
365 /* LINTED const cast */
366 m_copydata(__DECONST(struct mbuf
*, m
), 0, sizeof ip
, (caddr_t
)&ip
);
367 ifp
= ((m
->m_flags
& M_PKTHDR
) != 0) ? m
->m_pkthdr
.rcvif
: NULL
;
369 return gif_validate4(&ip
, sc
, ifp
);
373 in_gif_attach(struct gif_softc
*sc
)
375 sc
->encap_cookie4
= encap_attach_func(AF_INET
, -1, gif_encapcheck
,
376 &in_gif_protosw
, sc
);
377 if (sc
->encap_cookie4
== NULL
)
383 in_gif_detach(struct gif_softc
*sc
)
387 error
= encap_detach(sc
->encap_cookie4
);
389 sc
->encap_cookie4
= NULL
;