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