source: rtems-libbsd/freebsd/sys/net/if_stf.c @ 549488b

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 549488b was 549488b, checked in by Sebastian Huber <sebastian.huber@…>, on 10/10/13 at 12:45:09

Disable alternative routing tables

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