1 /* $FreeBSD$ */ 2 /* $KAME: if_stf.c,v 1.73 2001/12/03 11:08:30 keiichi Exp $ */ 3 4 /*- 5 * Copyright (C) 2000 WIDE Project. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. Neither the name of the project nor the names of its contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 33 /* 34 * 6to4 interface, based on RFC3056. 35 * 36 * 6to4 interface is NOT capable of link-layer (I mean, IPv4) multicasting. 37 * There is no address mapping defined from IPv6 multicast address to IPv4 38 * address. Therefore, we do not have IFF_MULTICAST on the interface. 39 * 40 * Due to the lack of address mapping for link-local addresses, we cannot 41 * throw packets toward link-local addresses (fe80::x). Also, we cannot throw 42 * packets to link-local multicast addresses (ff02::x). 43 * 44 * Here are interesting symptoms due to the lack of link-local address: 45 * 46 * Unicast routing exchange: 47 * - RIPng: Impossible. Uses link-local multicast packet toward ff02::9, 48 * and link-local addresses as nexthop. 49 * - OSPFv6: Impossible. OSPFv6 assumes that there's link-local address 50 * assigned to the link, and makes use of them. Also, HELLO packets use 51 * link-local multicast addresses (ff02::5 and ff02::6). 52 * - BGP4+: Maybe. You can only use global address as nexthop, and global 53 * address as TCP endpoint address. 54 * 55 * Multicast routing protocols: 56 * - PIM: Hello packet cannot be used to discover adjacent PIM routers. 57 * Adjacent PIM routers must be configured manually (is it really spec-wise 58 * correct thing to do?). 59 * 60 * ICMPv6: 61 * - Redirects cannot be used due to the lack of link-local address. 62 * 63 * stf interface does not have, and will not need, a link-local address. 64 * It seems to have no real benefit and does not help the above symptoms much. 65 * Even if we assign link-locals to interface, we cannot really 66 * use link-local unicast/multicast on top of 6to4 cloud (since there's no 67 * encapsulation defined for link-local address), and the above analysis does 68 * not change. RFC3056 does not mandate the assignment of link-local address 69 * either. 70 * 71 * 6to4 interface has security issues. Refer to 72 * http://playground.iijlab.net/i-d/draft-itojun-ipv6-transition-abuse-00.txt 73 * for details. The code tries to filter out some of malicious packets. 74 * Note that there is no way to be 100% secure. 75 */ 76 77 #include "opt_inet.h" 78 #include "opt_inet6.h" 79 80 #include <sys/param.h> 81 #include <sys/systm.h> 82 #include <sys/socket.h> 83 #include <sys/sockio.h> 84 #include <sys/mbuf.h> 85 #include <sys/errno.h> 86 #include <sys/kernel.h> 87 #include <sys/module.h> 88 #include <sys/protosw.h> 89 #include <sys/proc.h> 90 #include <sys/queue.h> 91 #include <sys/sysctl.h> 92 #include <machine/cpu.h> 93 94 #include <sys/malloc.h> 95 #include <sys/vimage.h> 96 97 #include <net/if.h> 98 #include <net/if_clone.h> 99 #include <net/route.h> 100 #include <net/netisr.h> 101 #include <net/if_types.h> 102 #include <net/if_stf.h> 103 104 #include <netinet/in.h> 105 #include <netinet/in_systm.h> 106 #include <netinet/ip.h> 107 #include <netinet/ip_var.h> 108 #include <netinet/in_var.h> 109 #include <netinet/vinet.h> 110 111 #include <netinet/ip6.h> 112 #include <netinet6/ip6_var.h> 113 #include <netinet6/in6_var.h> 114 #include <netinet/ip_ecn.h> 115 116 #include <netinet/ip_encap.h> 117 118 #include <machine/stdarg.h> 119 120 #include <net/bpf.h> 121 122 #include <security/mac/mac_framework.h> 123 124 SYSCTL_DECL(_net_link); 125 SYSCTL_NODE(_net_link, IFT_STF, stf, CTLFLAG_RW, 0, "6to4 Interface"); 126 127 static int stf_route_cache = 1; 128 SYSCTL_INT(_net_link_stf, OID_AUTO, route_cache, CTLFLAG_RW, 129 &stf_route_cache, 0, "Caching of IPv4 routes for 6to4 Output"); 130 131 #define STFNAME "stf" 132 #define STFUNIT 0 133 134 #define IN6_IS_ADDR_6TO4(x) (ntohs((x)->s6_addr16[0]) == 0x2002) 135 136 /* 137 * XXX: Return a pointer with 16-bit aligned. Don't cast it to 138 * struct in_addr *; use bcopy() instead. 139 */ 140 #define GET_V4(x) ((caddr_t)(&(x)->s6_addr16[1])) 141 142 struct stf_softc { 143 struct ifnet *sc_ifp; 144 union { 145 struct route __sc_ro4; 146 struct route_in6 __sc_ro6; /* just for safety */ 147 } __sc_ro46; 148 #define sc_ro __sc_ro46.__sc_ro4 149 struct mtx sc_ro_mtx; 150 u_int sc_fibnum; 151 const struct encaptab *encap_cookie; 152 }; 153 #define STF2IFP(sc) ((sc)->sc_ifp) 154 155 /* 156 * Note that mutable fields in the softc are not currently locked. 157 * We do lock sc_ro in stf_output though. 158 */ 159 static MALLOC_DEFINE(M_STF, STFNAME, "6to4 Tunnel Interface"); 160 static const int ip_stf_ttl = 40; 161 162 extern struct domain inetdomain; 163 struct protosw in_stf_protosw = { 164 .pr_type = SOCK_RAW, 165 .pr_domain = &inetdomain, 166 .pr_protocol = IPPROTO_IPV6, 167 .pr_flags = PR_ATOMIC|PR_ADDR, 168 .pr_input = in_stf_input, 169 .pr_output = (pr_output_t *)rip_output, 170 .pr_ctloutput = rip_ctloutput, 171 .pr_usrreqs = &rip_usrreqs 172 }; 173 174 static char *stfnames[] = {"stf0", "stf", "6to4", NULL}; 175 176 static int stfmodevent(module_t, int, void *); 177 static int stf_encapcheck(const struct mbuf *, int, int, void *); 178 static struct in6_ifaddr *stf_getsrcifa6(struct ifnet *); 179 static int stf_output(struct ifnet *, struct mbuf *, struct sockaddr *, 180 struct route *); 181 static int isrfc1918addr(struct in_addr *); 182 static int stf_checkaddr4(struct stf_softc *, struct in_addr *, 183 struct ifnet *); 184 static int stf_checkaddr6(struct stf_softc *, struct in6_addr *, 185 struct ifnet *); 186 static void stf_rtrequest(int, struct rtentry *, struct rt_addrinfo *); 187 static int stf_ioctl(struct ifnet *, u_long, caddr_t); 188 189 static int stf_clone_match(struct if_clone *, const char *); 190 static int stf_clone_create(struct if_clone *, char *, size_t, caddr_t); 191 static int stf_clone_destroy(struct if_clone *, struct ifnet *); 192 struct if_clone stf_cloner = IFC_CLONE_INITIALIZER(STFNAME, NULL, 0, 193 NULL, stf_clone_match, stf_clone_create, stf_clone_destroy); 194 195 static int 196 stf_clone_match(struct if_clone *ifc, const char *name) 197 { 198 int i; 199 200 for(i = 0; stfnames[i] != NULL; i++) { 201 if (strcmp(stfnames[i], name) == 0) 202 return (1); 203 } 204 205 return (0); 206 } 207 208 static int 209 stf_clone_create(struct if_clone *ifc, char *name, size_t len, caddr_t params) 210 { 211 int err, unit; 212 struct stf_softc *sc; 213 struct ifnet *ifp; 214 215 /* 216 * We can only have one unit, but since unit allocation is 217 * already locked, we use it to keep from allocating extra 218 * interfaces. 219 */ 220 unit = STFUNIT; 221 err = ifc_alloc_unit(ifc, &unit); 222 if (err != 0) 223 return (err); 224 225 sc = malloc(sizeof(struct stf_softc), M_STF, M_WAITOK | M_ZERO); 226 ifp = STF2IFP(sc) = if_alloc(IFT_STF); 227 if (ifp == NULL) { 228 free(sc, M_STF); 229 ifc_free_unit(ifc, unit); 230 return (ENOSPC); 231 } 232 ifp->if_softc = sc; 233 sc->sc_fibnum = curthread->td_proc->p_fibnum; 234 235 /* 236 * Set the name manually rather then using if_initname because 237 * we don't conform to the default naming convention for interfaces. 238 */ 239 strlcpy(ifp->if_xname, name, IFNAMSIZ); 240 ifp->if_dname = ifc->ifc_name; 241 ifp->if_dunit = IF_DUNIT_NONE; 242 243 mtx_init(&(sc)->sc_ro_mtx, "stf ro", NULL, MTX_DEF); 244 sc->encap_cookie = encap_attach_func(AF_INET, IPPROTO_IPV6, 245 stf_encapcheck, &in_stf_protosw, sc); 246 if (sc->encap_cookie == NULL) { 247 if_printf(ifp, "attach failed\n"); 248 free(sc, M_STF); 249 ifc_free_unit(ifc, unit); 250 return (ENOMEM); 251 } 252 253 ifp->if_mtu = IPV6_MMTU; 254 ifp->if_ioctl = stf_ioctl; 255 ifp->if_output = stf_output; 256 ifp->if_snd.ifq_maxlen = IFQ_MAXLEN; 257 if_attach(ifp); 258 bpfattach(ifp, DLT_NULL, sizeof(u_int32_t)); 259 return (0); 260 } 261 262 static int 263 stf_clone_destroy(struct if_clone *ifc, struct ifnet *ifp) 264 { 265 struct stf_softc *sc = ifp->if_softc; 266 int err; 267 268 err = encap_detach(sc->encap_cookie); 269 KASSERT(err == 0, ("Unexpected error detaching encap_cookie")); 270 mtx_destroy(&(sc)->sc_ro_mtx); 271 bpfdetach(ifp); 272 if_detach(ifp); 273 if_free(ifp); 274 275 free(sc, M_STF); 276 ifc_free_unit(ifc, STFUNIT); 277 278 return (0); 279 } 280 281 static int 282 stfmodevent(mod, type, data) 283 module_t mod; 284 int type; 285 void *data; 286 { 287 288 switch (type) { 289 case MOD_LOAD: 290 if_clone_attach(&stf_cloner); 291 break; 292 case MOD_UNLOAD: 293 if_clone_detach(&stf_cloner); 294 break; 295 default: 296 return (EOPNOTSUPP); 297 } 298 299 return (0); 300 } 301 302 static moduledata_t stf_mod = { 303 "if_stf", 304 stfmodevent, 305 0 306 }; 307 308 DECLARE_MODULE(if_stf, stf_mod, SI_SUB_PSEUDO, SI_ORDER_ANY); 309 310 static int 311 stf_encapcheck(m, off, proto, arg) 312 const struct mbuf *m; 313 int off; 314 int proto; 315 void *arg; 316 { 317 struct ip ip; 318 struct in6_ifaddr *ia6; 319 struct stf_softc *sc; 320 struct in_addr a, b, mask; 321 322 sc = (struct stf_softc *)arg; 323 if (sc == NULL) 324 return 0; 325 326 if ((STF2IFP(sc)->if_flags & IFF_UP) == 0) 327 return 0; 328 329 /* IFF_LINK0 means "no decapsulation" */ 330 if ((STF2IFP(sc)->if_flags & IFF_LINK0) != 0) 331 return 0; 332 333 if (proto != IPPROTO_IPV6) 334 return 0; 335 336 /* LINTED const cast */ 337 m_copydata((struct mbuf *)(uintptr_t)m, 0, sizeof(ip), (caddr_t)&ip); 338 339 if (ip.ip_v != 4) 340 return 0; 341 342 ia6 = stf_getsrcifa6(STF2IFP(sc)); 343 if (ia6 == NULL) 344 return 0; 345 346 /* 347 * check if IPv4 dst matches the IPv4 address derived from the 348 * local 6to4 address. 349 * success on: dst = 10.1.1.1, ia6->ia_addr = 2002:0a01:0101:... 350 */ 351 if (bcmp(GET_V4(&ia6->ia_addr.sin6_addr), &ip.ip_dst, 352 sizeof(ip.ip_dst)) != 0) 353 return 0; 354 355 /* 356 * check if IPv4 src matches the IPv4 address derived from the 357 * local 6to4 address masked by prefixmask. 358 * success on: src = 10.1.1.1, ia6->ia_addr = 2002:0a00:.../24 359 * fail on: src = 10.1.1.1, ia6->ia_addr = 2002:0b00:.../24 360 */ 361 bzero(&a, sizeof(a)); 362 bcopy(GET_V4(&ia6->ia_addr.sin6_addr), &a, sizeof(a)); 363 bcopy(GET_V4(&ia6->ia_prefixmask.sin6_addr), &mask, sizeof(mask)); 364 a.s_addr &= mask.s_addr; 365 b = ip.ip_src; 366 b.s_addr &= mask.s_addr; 367 if (a.s_addr != b.s_addr) 368 return 0; 369 370 /* stf interface makes single side match only */ 371 return 32; 372 } 373 374 static struct in6_ifaddr * 375 stf_getsrcifa6(ifp) 376 struct ifnet *ifp; 377 { 378 INIT_VNET_INET(ifp->if_vnet); 379 struct ifaddr *ia; 380 struct in_ifaddr *ia4; 381 struct sockaddr_in6 *sin6; 382 struct in_addr in; 383 384 IF_ADDR_LOCK(ifp); 385 TAILQ_FOREACH(ia, &ifp->if_addrhead, ifa_link) { 386 if (ia->ifa_addr->sa_family != AF_INET6) 387 continue; 388 sin6 = (struct sockaddr_in6 *)ia->ifa_addr; 389 if (!IN6_IS_ADDR_6TO4(&sin6->sin6_addr)) 390 continue; 391 392 bcopy(GET_V4(&sin6->sin6_addr), &in, sizeof(in)); 393 LIST_FOREACH(ia4, INADDR_HASH(in.s_addr), ia_hash) 394 if (ia4->ia_addr.sin_addr.s_addr == in.s_addr) 395 break; 396 if (ia4 == NULL) 397 continue; 398 399 IF_ADDR_UNLOCK(ifp); 400 return (struct in6_ifaddr *)ia; 401 } 402 IF_ADDR_UNLOCK(ifp); 403 404 return NULL; 405 } 406 407 static int 408 stf_output(ifp, m, dst, ro) 409 struct ifnet *ifp; 410 struct mbuf *m; 411 struct sockaddr *dst; 412 struct route *ro; 413 { 414 struct stf_softc *sc; 415 struct sockaddr_in6 *dst6; 416 struct route *cached_route; 417 struct in_addr in4; 418 caddr_t ptr; 419 struct sockaddr_in *dst4; 420 u_int8_t tos; 421 struct ip *ip; 422 struct ip6_hdr *ip6; 423 struct in6_ifaddr *ia6; 424 u_int32_t af; 425 int error; 426 427 #ifdef MAC 428 error = mac_ifnet_check_transmit(ifp, m); 429 if (error) { 430 m_freem(m); 431 return (error); 432 } 433 #endif 434 435 sc = ifp->if_softc; 436 dst6 = (struct sockaddr_in6 *)dst; 437 438 /* just in case */ 439 if ((ifp->if_flags & IFF_UP) == 0) { 440 m_freem(m); 441 ifp->if_oerrors++; 442 return ENETDOWN; 443 } 444 445 /* 446 * If we don't have an ip4 address that match my inner ip6 address, 447 * we shouldn't generate output. Without this check, we'll end up 448 * using wrong IPv4 source. 449 */ 450 ia6 = stf_getsrcifa6(ifp); 451 if (ia6 == NULL) { 452 m_freem(m); 453 ifp->if_oerrors++; 454 return ENETDOWN; 455 } 456 457 if (m->m_len < sizeof(*ip6)) { 458 m = m_pullup(m, sizeof(*ip6)); 459 if (!m) { 460 ifp->if_oerrors++; 461 return ENOBUFS; 462 } 463 } 464 ip6 = mtod(m, struct ip6_hdr *); 465 tos = (ntohl(ip6->ip6_flow) >> 20) & 0xff; 466 467 /* 468 * BPF writes need to be handled specially. 469 * This is a null operation, nothing here checks dst->sa_family. 470 */ 471 if (dst->sa_family == AF_UNSPEC) { 472 bcopy(dst->sa_data, &af, sizeof(af)); 473 dst->sa_family = af; 474 } 475 476 /* 477 * Pickup the right outer dst addr from the list of candidates. 478 * ip6_dst has priority as it may be able to give us shorter IPv4 hops. 479 */ 480 ptr = NULL; 481 if (IN6_IS_ADDR_6TO4(&ip6->ip6_dst)) 482 ptr = GET_V4(&ip6->ip6_dst); 483 else if (IN6_IS_ADDR_6TO4(&dst6->sin6_addr)) 484 ptr = GET_V4(&dst6->sin6_addr); 485 else { 486 m_freem(m); 487 ifp->if_oerrors++; 488 return ENETUNREACH; 489 } 490 bcopy(ptr, &in4, sizeof(in4)); 491 492 if (bpf_peers_present(ifp->if_bpf)) { 493 /* 494 * We need to prepend the address family as 495 * a four byte field. Cons up a dummy header 496 * to pacify bpf. This is safe because bpf 497 * will only read from the mbuf (i.e., it won't 498 * try to free it or keep a pointer a to it). 499 */ 500 af = AF_INET6; 501 bpf_mtap2(ifp->if_bpf, &af, sizeof(af), m); 502 } 503 504 M_PREPEND(m, sizeof(struct ip), M_DONTWAIT); 505 if (m && m->m_len < sizeof(struct ip)) 506 m = m_pullup(m, sizeof(struct ip)); 507 if (m == NULL) { 508 ifp->if_oerrors++; 509 return ENOBUFS; 510 } 511 ip = mtod(m, struct ip *); 512 513 bzero(ip, sizeof(*ip)); 514 515 bcopy(GET_V4(&((struct sockaddr_in6 *)&ia6->ia_addr)->sin6_addr), 516 &ip->ip_src, sizeof(ip->ip_src)); 517 bcopy(&in4, &ip->ip_dst, sizeof(ip->ip_dst)); 518 ip->ip_p = IPPROTO_IPV6; 519 ip->ip_ttl = ip_stf_ttl; 520 ip->ip_len = m->m_pkthdr.len; /*host order*/ 521 if (ifp->if_flags & IFF_LINK1) 522 ip_ecn_ingress(ECN_ALLOWED, &ip->ip_tos, &tos); 523 else 524 ip_ecn_ingress(ECN_NOCARE, &ip->ip_tos, &tos); 525 526 if (!stf_route_cache) { 527 cached_route = NULL; 528 goto sendit; 529 } 530 531 /* 532 * Do we have a cached route? 533 */ 534 mtx_lock(&(sc)->sc_ro_mtx); 535 dst4 = (struct sockaddr_in *)&sc->sc_ro.ro_dst; 536 if (dst4->sin_family != AF_INET || 537 bcmp(&dst4->sin_addr, &ip->ip_dst, sizeof(ip->ip_dst)) != 0) { 538 /* cache route doesn't match */ 539 dst4->sin_family = AF_INET; 540 dst4->sin_len = sizeof(struct sockaddr_in); 541 bcopy(&ip->ip_dst, &dst4->sin_addr, sizeof(dst4->sin_addr)); 542 if (sc->sc_ro.ro_rt) { 543 RTFREE(sc->sc_ro.ro_rt); 544 sc->sc_ro.ro_rt = NULL; 545 } 546 } 547 548 if (sc->sc_ro.ro_rt == NULL) { 549 rtalloc_fib(&sc->sc_ro, sc->sc_fibnum); 550 if (sc->sc_ro.ro_rt == NULL) { 551 m_freem(m); 552 mtx_unlock(&(sc)->sc_ro_mtx); 553 ifp->if_oerrors++; 554 return ENETUNREACH; 555 } 556 } 557 cached_route = &sc->sc_ro; 558 559 sendit: 560 M_SETFIB(m, sc->sc_fibnum); 561 ifp->if_opackets++; 562 error = ip_output(m, NULL, cached_route, 0, NULL, NULL); 563 564 if (cached_route != NULL) 565 mtx_unlock(&(sc)->sc_ro_mtx); 566 return error; 567 } 568 569 static int 570 isrfc1918addr(in) 571 struct in_addr *in; 572 { 573 /* 574 * returns 1 if private address range: 575 * 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 576 */ 577 if ((ntohl(in->s_addr) & 0xff000000) >> 24 == 10 || 578 (ntohl(in->s_addr) & 0xfff00000) >> 16 == 172 * 256 + 16 || 579 (ntohl(in->s_addr) & 0xffff0000) >> 16 == 192 * 256 + 168) 580 return 1; 581 582 return 0; 583 } 584 585 static int 586 stf_checkaddr4(sc, in, inifp) 587 struct stf_softc *sc; 588 struct in_addr *in; 589 struct ifnet *inifp; /* incoming interface */ 590 { 591 INIT_VNET_INET(curvnet); 592 struct in_ifaddr *ia4; 593 594 /* 595 * reject packets with the following address: 596 * 224.0.0.0/4 0.0.0.0/8 127.0.0.0/8 255.0.0.0/8 597 */ 598 if (IN_MULTICAST(ntohl(in->s_addr))) 599 return -1; 600 switch ((ntohl(in->s_addr) & 0xff000000) >> 24) { 601 case 0: case 127: case 255: 602 return -1; 603 } 604 605 /* 606 * reject packets with private address range. 607 * (requirement from RFC3056 section 2 1st paragraph) 608 */ 609 if (isrfc1918addr(in)) 610 return -1; 611 612 /* 613 * reject packets with broadcast 614 */ 615 for (ia4 = TAILQ_FIRST(&V_in_ifaddrhead); 616 ia4; 617 ia4 = TAILQ_NEXT(ia4, ia_link)) 618 { 619 if ((ia4->ia_ifa.ifa_ifp->if_flags & IFF_BROADCAST) == 0) 620 continue; 621 if (in->s_addr == ia4->ia_broadaddr.sin_addr.s_addr) 622 return -1; 623 } 624 625 /* 626 * perform ingress filter 627 */ 628 if (sc && (STF2IFP(sc)->if_flags & IFF_LINK2) == 0 && inifp) { 629 struct sockaddr_in sin; 630 struct rtentry *rt; 631 632 bzero(&sin, sizeof(sin)); 633 sin.sin_family = AF_INET; 634 sin.sin_len = sizeof(struct sockaddr_in); 635 sin.sin_addr = *in; 636 rt = rtalloc1_fib((struct sockaddr *)&sin, 0, 637 0UL, sc->sc_fibnum); 638 if (!rt || rt->rt_ifp != inifp) { 639 #if 0 640 log(LOG_WARNING, "%s: packet from 0x%x dropped " 641 "due to ingress filter\n", if_name(STF2IFP(sc)), 642 (u_int32_t)ntohl(sin.sin_addr.s_addr)); 643 #endif 644 if (rt) 645 RTFREE_LOCKED(rt); 646 return -1; 647 } 648 RTFREE_LOCKED(rt); 649 } 650 651 return 0; 652 } 653 654 static int 655 stf_checkaddr6(sc, in6, inifp) 656 struct stf_softc *sc; 657 struct in6_addr *in6; 658 struct ifnet *inifp; /* incoming interface */ 659 { 660 /* 661 * check 6to4 addresses 662 */ 663 if (IN6_IS_ADDR_6TO4(in6)) { 664 struct in_addr in4; 665 bcopy(GET_V4(in6), &in4, sizeof(in4)); 666 return stf_checkaddr4(sc, &in4, inifp); 667 } 668 669 /* 670 * reject anything that look suspicious. the test is implemented 671 * in ip6_input too, but we check here as well to 672 * (1) reject bad packets earlier, and 673 * (2) to be safe against future ip6_input change. 674 */ 675 if (IN6_IS_ADDR_V4COMPAT(in6) || IN6_IS_ADDR_V4MAPPED(in6)) 676 return -1; 677 678 return 0; 679 } 680 681 void 682 in_stf_input(m, off) 683 struct mbuf *m; 684 int off; 685 { 686 int proto; 687 struct stf_softc *sc; 688 struct ip *ip; 689 struct ip6_hdr *ip6; 690 u_int8_t otos, itos; 691 struct ifnet *ifp; 692 693 proto = mtod(m, struct ip *)->ip_p; 694 695 if (proto != IPPROTO_IPV6) { 696 m_freem(m); 697 return; 698 } 699 700 ip = mtod(m, struct ip *); 701 702 sc = (struct stf_softc *)encap_getarg(m); 703 704 if (sc == NULL || (STF2IFP(sc)->if_flags & IFF_UP) == 0) { 705 m_freem(m); 706 return; 707 } 708 709 ifp = STF2IFP(sc); 710 711 #ifdef MAC 712 mac_ifnet_create_mbuf(ifp, m); 713 #endif 714 715 /* 716 * perform sanity check against outer src/dst. 717 * for source, perform ingress filter as well. 718 */ 719 if (stf_checkaddr4(sc, &ip->ip_dst, NULL) < 0 || 720 stf_checkaddr4(sc, &ip->ip_src, m->m_pkthdr.rcvif) < 0) { 721 m_freem(m); 722 return; 723 } 724 725 otos = ip->ip_tos; 726 m_adj(m, off); 727 728 if (m->m_len < sizeof(*ip6)) { 729 m = m_pullup(m, sizeof(*ip6)); 730 if (!m) 731 return; 732 } 733 ip6 = mtod(m, struct ip6_hdr *); 734 735 /* 736 * perform sanity check against inner src/dst. 737 * for source, perform ingress filter as well. 738 */ 739 if (stf_checkaddr6(sc, &ip6->ip6_dst, NULL) < 0 || 740 stf_checkaddr6(sc, &ip6->ip6_src, m->m_pkthdr.rcvif) < 0) { 741 m_freem(m); 742 return; 743 } 744 745 itos = (ntohl(ip6->ip6_flow) >> 20) & 0xff; 746 if ((ifp->if_flags & IFF_LINK1) != 0) 747 ip_ecn_egress(ECN_ALLOWED, &otos, &itos); 748 else 749 ip_ecn_egress(ECN_NOCARE, &otos, &itos); 750 ip6->ip6_flow &= ~htonl(0xff << 20); 751 ip6->ip6_flow |= htonl((u_int32_t)itos << 20); 752 753 m->m_pkthdr.rcvif = ifp; 754 755 if (bpf_peers_present(ifp->if_bpf)) { 756 /* 757 * We need to prepend the address family as 758 * a four byte field. Cons up a dummy header 759 * to pacify bpf. This is safe because bpf 760 * will only read from the mbuf (i.e., it won't 761 * try to free it or keep a pointer a to it). 762 */ 763 u_int32_t af = AF_INET6; 764 bpf_mtap2(ifp->if_bpf, &af, sizeof(af), m); 765 } 766 767 /* 768 * Put the packet to the network layer input queue according to the 769 * specified address family. 770 * See net/if_gif.c for possible issues with packet processing 771 * reorder due to extra queueing. 772 */ 773 ifp->if_ipackets++; 774 ifp->if_ibytes += m->m_pkthdr.len; 775 netisr_dispatch(NETISR_IPV6, m); 776 } 777 778 /* ARGSUSED */ 779 static void 780 stf_rtrequest(cmd, rt, info) 781 int cmd; 782 struct rtentry *rt; 783 struct rt_addrinfo *info; 784 { 785 RT_LOCK_ASSERT(rt); 786 rt->rt_rmx.rmx_mtu = IPV6_MMTU; 787 } 788 789 static int 790 stf_ioctl(ifp, cmd, data) 791 struct ifnet *ifp; 792 u_long cmd; 793 caddr_t data; 794 { 795 struct ifaddr *ifa; 796 struct ifreq *ifr; 797 struct sockaddr_in6 *sin6; 798 struct in_addr addr; 799 int error; 800 801 error = 0; 802 switch (cmd) { 803 case SIOCSIFADDR: 804 ifa = (struct ifaddr *)data; 805 if (ifa == NULL || ifa->ifa_addr->sa_family != AF_INET6) { 806 error = EAFNOSUPPORT; 807 break; 808 } 809 sin6 = (struct sockaddr_in6 *)ifa->ifa_addr; 810 if (!IN6_IS_ADDR_6TO4(&sin6->sin6_addr)) { 811 error = EINVAL; 812 break; 813 } 814 bcopy(GET_V4(&sin6->sin6_addr), &addr, sizeof(addr)); 815 if (isrfc1918addr(&addr)) { 816 error = EINVAL; 817 break; 818 } 819 820 ifa->ifa_rtrequest = stf_rtrequest; 821 ifp->if_flags |= IFF_UP; 822 break; 823 824 case SIOCADDMULTI: 825 case SIOCDELMULTI: 826 ifr = (struct ifreq *)data; 827 if (ifr && ifr->ifr_addr.sa_family == AF_INET6) 828 ; 829 else 830 error = EAFNOSUPPORT; 831 break; 832 833 default: 834 error = EINVAL; 835 break; 836 } 837 838 return error; 839 } 840