if_stf.c revision 1.108 1 /* $NetBSD: if_stf.c,v 1.108 2021/06/16 00:21:19 riastradh Exp $ */
2 /* $KAME: if_stf.c,v 1.62 2001/06/07 22:32:16 itojun 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 <sys/cdefs.h>
78 __KERNEL_RCSID(0, "$NetBSD: if_stf.c,v 1.108 2021/06/16 00:21:19 riastradh Exp $");
79
80 #ifdef _KERNEL_OPT
81 #include "opt_inet.h"
82 #include "stf.h"
83 #endif
84
85 #ifndef INET6
86 #error "pseudo-device stf requires options INET6"
87 #endif
88
89 #include <sys/param.h>
90 #include <sys/systm.h>
91 #include <sys/socket.h>
92 #include <sys/sockio.h>
93 #include <sys/mbuf.h>
94 #include <sys/errno.h>
95 #include <sys/ioctl.h>
96 #include <sys/proc.h>
97 #include <sys/queue.h>
98 #include <sys/syslog.h>
99 #include <sys/device.h>
100 #include <sys/module.h>
101
102 #include <sys/cpu.h>
103
104 #include <net/if.h>
105 #include <net/route.h>
106 #include <net/netisr.h>
107 #include <net/if_types.h>
108 #include <net/if_stf.h>
109
110 #include <netinet/in.h>
111 #include <netinet/in_systm.h>
112 #include <netinet/ip.h>
113 #include <netinet/ip_var.h>
114 #include <netinet/in_var.h>
115
116 #include <netinet/ip6.h>
117 #include <netinet6/ip6_var.h>
118 #include <netinet6/in6_var.h>
119 #include <netinet/ip_ecn.h>
120
121 #include <netinet/ip_encap.h>
122
123 #include <net/bpf.h>
124
125 #include "ioconf.h"
126
127 #define IN6_IS_ADDR_6TO4(x) (ntohs((x)->s6_addr16[0]) == 0x2002)
128 #define GET_V4(x) ((const struct in_addr *)(&(x)->s6_addr16[1]))
129
130 struct stf_softc {
131 struct ifnet sc_if; /* common area */
132 struct route sc_ro;
133 const struct encaptab *encap_cookie;
134 LIST_ENTRY(stf_softc) sc_list;
135 };
136
137 static LIST_HEAD(, stf_softc) stf_softc_list;
138
139 static int stf_clone_create(struct if_clone *, int);
140 static int stf_clone_destroy(struct ifnet *);
141
142 struct if_clone stf_cloner =
143 IF_CLONE_INITIALIZER("stf", stf_clone_create, stf_clone_destroy);
144
145 static int ip_stf_ttl = STF_TTL;
146
147 extern struct domain inetdomain;
148
149 static const struct encapsw in_stf_encapsw =
150 {
151 .encapsw4 = {
152 .pr_input = in_stf_input,
153 .pr_ctlinput = NULL,
154 }
155 };
156
157 static int stf_encapcheck(struct mbuf *, int, int, void *);
158 static struct in6_ifaddr *stf_getsrcifa6(struct ifnet *);
159 static int stf_output(struct ifnet *, struct mbuf *, const struct sockaddr *,
160 const struct rtentry *);
161 static int isrfc1918addr(const struct in_addr *);
162 static int stf_checkaddr4(struct stf_softc *, const struct in_addr *,
163 struct ifnet *);
164 static int stf_checkaddr6(struct stf_softc *, const struct in6_addr *,
165 struct ifnet *);
166 static void stf_rtrequest(int, struct rtentry *, const struct rt_addrinfo *);
167 static int stf_ioctl(struct ifnet *, u_long, void *);
168
169 /* ARGSUSED */
170 void
171 stfattach(int count)
172 {
173
174 /*
175 * Nothing to do here, initialization is handled by the
176 * module initialization code in stfinit() below).
177 */
178 }
179
180 static void
181 stfinit(void)
182 {
183
184 LIST_INIT(&stf_softc_list);
185 if_clone_attach(&stf_cloner);
186 }
187
188 static int
189 stfdetach(void)
190 {
191 int error = 0;
192
193 if (!LIST_EMPTY(&stf_softc_list))
194 error = EBUSY;
195
196 if (error == 0)
197 if_clone_detach(&stf_cloner);
198
199 return error;
200 }
201
202 static int
203 stf_clone_create(struct if_clone *ifc, int unit)
204 {
205 struct stf_softc *sc;
206 int error;
207
208 sc = malloc(sizeof(struct stf_softc), M_DEVBUF, M_WAIT|M_ZERO);
209 if_initname(&sc->sc_if, ifc->ifc_name, unit);
210
211 error = encap_lock_enter();
212 if (error) {
213 free(sc, M_DEVBUF);
214 return error;
215 }
216
217 if (LIST_FIRST(&stf_softc_list) != NULL) {
218 /* Only one stf interface is allowed. */
219 encap_lock_exit();
220 free(sc, M_DEVBUF);
221 return EEXIST;
222 }
223
224 sc->encap_cookie = encap_attach_func(AF_INET, IPPROTO_IPV6,
225 stf_encapcheck, &in_stf_encapsw, sc);
226 encap_lock_exit();
227 if (sc->encap_cookie == NULL) {
228 printf("%s: unable to attach encap\n", if_name(&sc->sc_if));
229 free(sc, M_DEVBUF);
230 return EIO; /* XXX */
231 }
232
233 sc->sc_if.if_mtu = STF_MTU;
234 sc->sc_if.if_flags = 0;
235 sc->sc_if.if_ioctl = stf_ioctl;
236 sc->sc_if.if_output = stf_output;
237 sc->sc_if.if_type = IFT_STF;
238 sc->sc_if.if_dlt = DLT_NULL;
239 if_attach(&sc->sc_if);
240 if_alloc_sadl(&sc->sc_if);
241 bpf_attach(&sc->sc_if, DLT_NULL, sizeof(u_int));
242 LIST_INSERT_HEAD(&stf_softc_list, sc, sc_list);
243 return 0;
244 }
245
246 static int
247 stf_clone_destroy(struct ifnet *ifp)
248 {
249 struct stf_softc *sc = (void *) ifp;
250
251 encap_lock_enter();
252 LIST_REMOVE(sc, sc_list);
253 encap_detach(sc->encap_cookie);
254 encap_lock_exit();
255 bpf_detach(ifp);
256 if_detach(ifp);
257 rtcache_free(&sc->sc_ro);
258 free(sc, M_DEVBUF);
259
260 return 0;
261 }
262
263 static int
264 stf_encapcheck(struct mbuf *m, int off, int proto, void *arg)
265 {
266 struct ip ip;
267 struct in6_ifaddr *ia6;
268 struct stf_softc *sc;
269 struct in_addr a, b;
270
271 sc = (struct stf_softc *)arg;
272 if (sc == NULL)
273 return 0;
274
275 if ((sc->sc_if.if_flags & IFF_UP) == 0)
276 return 0;
277
278 /* IFF_LINK0 means "no decapsulation" */
279 if ((sc->sc_if.if_flags & IFF_LINK0) != 0)
280 return 0;
281
282 if (proto != IPPROTO_IPV6)
283 return 0;
284
285 m_copydata(m, 0, sizeof(ip), (void *)&ip);
286
287 if (ip.ip_v != 4)
288 return 0;
289
290 ia6 = stf_getsrcifa6(&sc->sc_if);
291 if (ia6 == NULL)
292 return 0;
293
294 /*
295 * check if IPv4 dst matches the IPv4 address derived from the
296 * local 6to4 address.
297 * success on: dst = 10.1.1.1, ia6->ia_addr = 2002:0a01:0101:...
298 */
299 if (memcmp(GET_V4(&ia6->ia_addr.sin6_addr), &ip.ip_dst,
300 sizeof(ip.ip_dst)) != 0)
301 return 0;
302
303 /*
304 * check if IPv4 src matches the IPv4 address derived from the
305 * local 6to4 address masked by prefixmask.
306 * success on: src = 10.1.1.1, ia6->ia_addr = 2002:0a00:.../24
307 * fail on: src = 10.1.1.1, ia6->ia_addr = 2002:0b00:.../24
308 */
309 memset(&a, 0, sizeof(a));
310 a.s_addr = GET_V4(&ia6->ia_addr.sin6_addr)->s_addr;
311 a.s_addr &= GET_V4(&ia6->ia_prefixmask.sin6_addr)->s_addr;
312 b = ip.ip_src;
313 b.s_addr &= GET_V4(&ia6->ia_prefixmask.sin6_addr)->s_addr;
314 if (a.s_addr != b.s_addr)
315 return 0;
316
317 /* stf interface makes single side match only */
318 return 32;
319 }
320
321 static struct in6_ifaddr *
322 stf_getsrcifa6(struct ifnet *ifp)
323 {
324 struct ifaddr *ifa;
325 struct in_ifaddr *ia4;
326 struct sockaddr_in6 *sin6;
327 struct in_addr in;
328 int s;
329
330 s = pserialize_read_enter();
331 IFADDR_READER_FOREACH(ifa, ifp) {
332 if (ifa->ifa_addr->sa_family != AF_INET6)
333 continue;
334 sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
335 if (!IN6_IS_ADDR_6TO4(&sin6->sin6_addr))
336 continue;
337
338 memcpy(&in, GET_V4(&sin6->sin6_addr), sizeof(in));
339 ia4 = in_get_ia(in);
340 if (ia4 == NULL)
341 continue;
342
343 pserialize_read_exit(s);
344 /* TODO NOMPSAFE */
345 return (struct in6_ifaddr *)ifa;
346 }
347 pserialize_read_exit(s);
348
349 return NULL;
350 }
351
352 static int
353 stf_output(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst,
354 const struct rtentry *rt0)
355 {
356 struct rtentry *rt;
357 struct stf_softc *sc;
358 const struct sockaddr_in6 *dst6;
359 const struct in_addr *in4;
360 uint8_t tos;
361 struct ip *ip;
362 struct ip6_hdr *ip6;
363 struct in6_ifaddr *ia6;
364 union {
365 struct sockaddr dst;
366 struct sockaddr_in dst4;
367 } u;
368
369 sc = (struct stf_softc*)ifp;
370 dst6 = (const struct sockaddr_in6 *)dst;
371
372 /* just in case */
373 if ((ifp->if_flags & IFF_UP) == 0) {
374 m_freem(m);
375 return ENETDOWN;
376 }
377
378 /*
379 * If we don't have an ip4 address that match my inner ip6 address,
380 * we shouldn't generate output. Without this check, we'll end up
381 * using wrong IPv4 source.
382 */
383 ia6 = stf_getsrcifa6(ifp);
384 if (ia6 == NULL) {
385 m_freem(m);
386 if_statinc(ifp, if_oerrors);
387 return ENETDOWN;
388 }
389
390 if (m->m_len < sizeof(*ip6)) {
391 m = m_pullup(m, sizeof(*ip6));
392 if (m == NULL) {
393 if_statinc(ifp, if_oerrors);
394 return ENOBUFS;
395 }
396 }
397 ip6 = mtod(m, struct ip6_hdr *);
398 tos = (ntohl(ip6->ip6_flow) >> 20) & 0xff;
399
400 /*
401 * Pickup the right outer dst addr from the list of candidates.
402 * ip6_dst has priority as it may be able to give us shorter IPv4 hops.
403 */
404 if (IN6_IS_ADDR_6TO4(&ip6->ip6_dst))
405 in4 = GET_V4(&ip6->ip6_dst);
406 else if (IN6_IS_ADDR_6TO4(&dst6->sin6_addr))
407 in4 = GET_V4(&dst6->sin6_addr);
408 else {
409 m_freem(m);
410 if_statinc(ifp, if_oerrors);
411 return ENETUNREACH;
412 }
413
414 bpf_mtap_af(ifp, AF_INET6, m, BPF_D_OUT);
415
416 M_PREPEND(m, sizeof(struct ip), M_DONTWAIT);
417 if (m && m->m_len < sizeof(struct ip))
418 m = m_pullup(m, sizeof(struct ip));
419 if (m == NULL) {
420 if_statinc(ifp, if_oerrors);
421 return ENOBUFS;
422 }
423 ip = mtod(m, struct ip *);
424
425 memset(ip, 0, sizeof(*ip));
426
427 bcopy(GET_V4(&((struct sockaddr_in6 *)&ia6->ia_addr)->sin6_addr),
428 &ip->ip_src, sizeof(ip->ip_src));
429 memcpy(&ip->ip_dst, in4, sizeof(ip->ip_dst));
430 ip->ip_p = IPPROTO_IPV6;
431 ip->ip_ttl = ip_stf_ttl;
432 ip->ip_len = htons(m->m_pkthdr.len);
433 if (ifp->if_flags & IFF_LINK1)
434 ip_ecn_ingress(ECN_ALLOWED, &ip->ip_tos, &tos);
435 else
436 ip_ecn_ingress(ECN_NOCARE, &ip->ip_tos, &tos);
437
438 sockaddr_in_init(&u.dst4, &ip->ip_dst, 0);
439 if ((rt = rtcache_lookup(&sc->sc_ro, &u.dst)) == NULL) {
440 m_freem(m);
441 if_statinc(ifp, if_oerrors);
442 return ENETUNREACH;
443 }
444
445 /* If the route constitutes infinite encapsulation, punt. */
446 if (rt->rt_ifp == ifp) {
447 rtcache_unref(rt, &sc->sc_ro);
448 rtcache_free(&sc->sc_ro);
449 m_freem(m);
450 if_statinc(ifp, if_oerrors);
451 return ENETUNREACH;
452 }
453 rtcache_unref(rt, &sc->sc_ro);
454
455 if_statadd2(ifp, if_opackets, 1,
456 if_obytes, m->m_pkthdr.len - sizeof(struct ip));
457 return ip_output(m, NULL, &sc->sc_ro, 0, NULL, NULL);
458 }
459
460 static int
461 isrfc1918addr(const struct in_addr *in)
462 {
463 /*
464 * returns 1 if private address range:
465 * 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16
466 */
467 if ((ntohl(in->s_addr) & 0xff000000) >> 24 == 10 ||
468 (ntohl(in->s_addr) & 0xfff00000) >> 16 == 172 * 256 + 16 ||
469 (ntohl(in->s_addr) & 0xffff0000) >> 16 == 192 * 256 + 168)
470 return 1;
471
472 return 0;
473 }
474
475 static int
476 stf_checkaddr4(struct stf_softc *sc, const struct in_addr *in,
477 struct ifnet *inifp /*incoming interface*/)
478 {
479 struct in_ifaddr *ia4;
480
481 /*
482 * reject packets with the following address:
483 * 224.0.0.0/4 0.0.0.0/8 127.0.0.0/8 255.0.0.0/8
484 */
485 if (IN_MULTICAST(in->s_addr))
486 return -1;
487 switch ((ntohl(in->s_addr) & 0xff000000) >> 24) {
488 case 0: case 127: case 255:
489 return -1;
490 }
491
492 /*
493 * reject packets with private address range.
494 * (requirement from RFC3056 section 2 1st paragraph)
495 */
496 if (isrfc1918addr(in))
497 return -1;
498
499 /*
500 * reject packet with IPv4 link-local (169.254.0.0/16),
501 * as suggested in draft-savola-v6ops-6to4-security-00.txt
502 */
503 if (((ntohl(in->s_addr) & 0xff000000) >> 24) == 169 &&
504 ((ntohl(in->s_addr) & 0x00ff0000) >> 16) == 254)
505 return -1;
506
507 /*
508 * reject packets with broadcast
509 */
510 IN_ADDRLIST_READER_FOREACH(ia4) {
511 if ((ia4->ia_ifa.ifa_ifp->if_flags & IFF_BROADCAST) == 0)
512 continue;
513 if (in->s_addr == ia4->ia_broadaddr.sin_addr.s_addr)
514 return -1;
515 }
516
517 /*
518 * perform ingress filter
519 */
520 if (sc && (sc->sc_if.if_flags & IFF_LINK2) == 0 && inifp) {
521 struct sockaddr_in sin;
522 struct rtentry *rt;
523
524 memset(&sin, 0, sizeof(sin));
525 sin.sin_family = AF_INET;
526 sin.sin_len = sizeof(struct sockaddr_in);
527 sin.sin_addr = *in;
528 rt = rtalloc1((struct sockaddr *)&sin, 0);
529 if (!rt || rt->rt_ifp != inifp) {
530 #if 0
531 log(LOG_WARNING, "%s: packet from 0x%x dropped "
532 "due to ingress filter\n", if_name(&sc->sc_if),
533 (uint32_t)ntohl(sin.sin_addr.s_addr));
534 #endif
535 if (rt)
536 rt_unref(rt);
537 return -1;
538 }
539 rt_unref(rt);
540 }
541
542 return 0;
543 }
544
545 static int
546 stf_checkaddr6(struct stf_softc *sc, const struct in6_addr *in6,
547 struct ifnet *inifp /*incoming interface*/)
548 {
549
550 /*
551 * check 6to4 addresses
552 */
553 if (IN6_IS_ADDR_6TO4(in6))
554 return stf_checkaddr4(sc, GET_V4(in6), inifp);
555
556 /*
557 * reject anything that look suspicious. the test is implemented
558 * in ip6_input too, but we check here as well to
559 * (1) reject bad packets earlier, and
560 * (2) to be safe against future ip6_input change.
561 */
562 if (IN6_IS_ADDR_V4COMPAT(in6) || IN6_IS_ADDR_V4MAPPED(in6))
563 return -1;
564
565 /*
566 * reject link-local and site-local unicast
567 * as suggested in draft-savola-v6ops-6to4-security-00.txt
568 */
569 if (IN6_IS_ADDR_LINKLOCAL(in6) || IN6_IS_ADDR_SITELOCAL(in6))
570 return -1;
571
572 /*
573 * reject node-local and link-local multicast
574 * as suggested in draft-savola-v6ops-6to4-security-00.txt
575 */
576 if (IN6_IS_ADDR_MC_NODELOCAL(in6) || IN6_IS_ADDR_MC_LINKLOCAL(in6))
577 return -1;
578
579 return 0;
580 }
581
582 void
583 in_stf_input(struct mbuf *m, int off, int proto, void *eparg)
584 {
585 int s;
586 struct stf_softc *sc = eparg;
587 struct ip *ip;
588 struct ip6_hdr *ip6;
589 uint8_t otos, itos;
590 struct ifnet *ifp;
591 size_t pktlen;
592
593 KASSERT(sc != NULL);
594
595 if (proto != IPPROTO_IPV6) {
596 m_freem(m);
597 return;
598 }
599
600 ip = mtod(m, struct ip *);
601
602 if ((sc->sc_if.if_flags & IFF_UP) == 0) {
603 m_freem(m);
604 return;
605 }
606
607 ifp = &sc->sc_if;
608
609 /*
610 * perform sanity check against outer src/dst.
611 * for source, perform ingress filter as well.
612 */
613 if (stf_checkaddr4(sc, &ip->ip_dst, NULL) < 0 ||
614 stf_checkaddr4(sc, &ip->ip_src, m_get_rcvif_NOMPSAFE(m)) < 0) {
615 m_freem(m);
616 return;
617 }
618
619 otos = ip->ip_tos;
620 m_adj(m, off);
621
622 if (m->m_len < sizeof(*ip6)) {
623 m = m_pullup(m, sizeof(*ip6));
624 if (!m)
625 return;
626 }
627 ip6 = mtod(m, struct ip6_hdr *);
628
629 /*
630 * perform sanity check against inner src/dst.
631 * for source, perform ingress filter as well.
632 */
633 if (stf_checkaddr6(sc, &ip6->ip6_dst, NULL) < 0 ||
634 stf_checkaddr6(sc, &ip6->ip6_src, m_get_rcvif_NOMPSAFE(m)) < 0) {
635 m_freem(m);
636 return;
637 }
638
639 itos = (ntohl(ip6->ip6_flow) >> 20) & 0xff;
640 if ((ifp->if_flags & IFF_LINK1) != 0)
641 ip_ecn_egress(ECN_ALLOWED, &otos, &itos);
642 else
643 ip_ecn_egress(ECN_NOCARE, &otos, &itos);
644 ip6->ip6_flow &= ~htonl(0xff << 20);
645 ip6->ip6_flow |= htonl((uint32_t)itos << 20);
646
647 pktlen = m->m_pkthdr.len;
648 m_set_rcvif(m, ifp);
649
650 bpf_mtap_af(ifp, AF_INET6, m, BPF_D_IN);
651
652 /*
653 * Put the packet to the network layer input queue according to the
654 * specified address family.
655 * See net/if_gif.c for possible issues with packet processing
656 * reorder due to extra queueing.
657 */
658
659 s = splnet();
660 if (__predict_true(pktq_enqueue(ip6_pktq, m, 0))) {
661 if_statadd2(ifp, if_ipackets, 1, if_ibytes, pktlen);
662 } else {
663 m_freem(m);
664 }
665 splx(s);
666
667 return;
668 }
669
670 /* ARGSUSED */
671 static void
672 stf_rtrequest(int cmd, struct rtentry *rt,
673 const struct rt_addrinfo *info)
674 {
675 if (rt != NULL) {
676 struct stf_softc *sc;
677
678 sc = LIST_FIRST(&stf_softc_list);
679 rt->rt_rmx.rmx_mtu = (sc != NULL) ? sc->sc_if.if_mtu : STF_MTU;
680 }
681 }
682
683 static int
684 stf_ioctl(struct ifnet *ifp, u_long cmd, void *data)
685 {
686 struct ifaddr *ifa;
687 struct ifreq *ifr = data;
688 struct sockaddr_in6 *sin6;
689 int error;
690
691 error = 0;
692 switch (cmd) {
693 case SIOCINITIFADDR:
694 ifa = (struct ifaddr *)data;
695 if (ifa == NULL || ifa->ifa_addr->sa_family != AF_INET6) {
696 error = EAFNOSUPPORT;
697 break;
698 }
699 sin6 = (struct sockaddr_in6 *)ifa->ifa_addr;
700 if (IN6_IS_ADDR_6TO4(&sin6->sin6_addr) &&
701 !isrfc1918addr(GET_V4(&sin6->sin6_addr))) {
702 ifa->ifa_rtrequest = stf_rtrequest;
703 ifp->if_flags |= IFF_UP;
704 } else
705 error = EINVAL;
706 break;
707
708 case SIOCADDMULTI:
709 case SIOCDELMULTI:
710 if (ifr != NULL &&
711 ifreq_getaddr(cmd, ifr)->sa_family == AF_INET6)
712 ;
713 else
714 error = EAFNOSUPPORT;
715 break;
716
717 case SIOCSIFMTU:
718 if (ifr->ifr_mtu < STF_MTU_MIN || ifr->ifr_mtu > STF_MTU_MAX)
719 return EINVAL;
720 else if ((error = ifioctl_common(ifp, cmd, data)) == ENETRESET)
721 error = 0;
722 break;
723
724 default:
725 error = ifioctl_common(ifp, cmd, data);
726 break;
727 }
728
729 return error;
730 }
731
732 /*
733 * Module infrastructure
734 */
735 #include "if_module.h"
736
737 IF_MODULE(MODULE_CLASS_DRIVER, stf, NULL)
738