]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/net/if_faith.c
xnu-792.12.6.tar.gz
[apple/xnu.git] / bsd / net / if_faith.c
index 6aafc2ecf562482fa45fbed5e0689176025a4594..997317f02c309b9ea81bd8d67a52c962571e93be 100644 (file)
@@ -1,25 +1,33 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
- *
- * @APPLE_LICENSE_HEADER_START@
- * 
- * The contents of this file constitute Original Code as defined in and
- * are subject to the Apple Public Source License Version 1.1 (the
- * "License").  You may not use this file except in compliance with the
- * License.  Please obtain a copy of the License at
- * http://www.apple.com/publicsource and read it before using this file.
+ * Copyright (c) 2006 Apple Computer, Inc. All Rights Reserved.
  * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License.
+ * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
  * 
- * @APPLE_LICENSE_HEADER_END@
+ * This file contains Original Code and/or Modifications of Original Code 
+ * as defined in and that are subject to the Apple Public Source License 
+ * Version 2.0 (the 'License'). You may not use this file except in 
+ * compliance with the License.  The rights granted to you under the 
+ * License may not be used to create, or enable the creation or 
+ * redistribution of, unlawful or unlicensed copies of an Apple operating 
+ * system, or to circumvent, violate, or enable the circumvention or 
+ * violation of, any terms of an Apple operating system software license 
+ * agreement.
+ *
+ * Please obtain a copy of the License at 
+ * http://www.opensource.apple.com/apsl/ and read it before using this 
+ * file.
+ *
+ * The Original Code and all software distributed under the License are 
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
+ * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
+ * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
+ * Please see the License for the specific language governing rights and 
+ * limitations under the License.
+ *
+ * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
  */
-/*     $KAME: if_faith.c,v 1.11 2000/02/22 14:01:46 itojun Exp $       */
+/*     $KAME: if_faith.c,v 1.21 2001/02/20 07:59:26 itojun Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1993
@@ -52,6 +60,8 @@
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
+ *
+ * $FreeBSD: src/sys/net/if_faith.c,v 1.3.2.2 2001/07/05 14:46:25 ume Exp $
  */
 /*
  * derived from
@@ -62,9 +72,6 @@
 /*
  * Loopback interface driver for protocol testing and timing.
  */
-#if defined(__FreeBSD__) && __FreeBSD__ >= 3
-#include "opt_inet.h"
-#endif
 
 #include "faith.h"
 #if NFAITH > 0
 #include <sys/mbuf.h>
 #include <sys/socket.h>
 #include <sys/errno.h>
-#if defined(__FreeBSD__) && __FreeBSD__ >= 3 || defined(__APPLE__)
 #include <sys/sockio.h>
-#else
-#include <sys/ioctl.h>
-#endif
 #include <sys/time.h>
-#if defined(__bsdi__) || defined(__NetBSD__)
-#include <machine/cpu.h>
-#endif
+#include <sys/queue.h>
 
 #include <net/if.h>
 #include <net/if_types.h>
-#include <net/netisr.h>
 #include <net/route.h>
 #include <net/bpf.h>
+#include <net/if_faith.h>
 
 #if    INET
 #include <netinet/in.h>
 #endif
 #include <netinet6/in6_var.h>
 #include <netinet/ip6.h>
+#include <netinet6/ip6_var.h>
 #endif
 
 #include <net/dlil.h>
-#include "faith.h"
-#include "bpfilter.h"
+#include "bpf.h"
 
 #include <net/net_osdep.h>
 
-#if defined(__FreeBSD__) && __FreeBSD__ < 3
-static int faithioctl __P((struct ifnet *, int, caddr_t));
-#else
-static int faithioctl __P((struct ifnet *, u_long, caddr_t));
-#endif
-int faith_pre_output __P((struct ifnet *, register struct mbuf **, struct sockaddr *,
-       register struct rtentry *, char *, char *, u_long));
-static void faithrtrequest __P((int, struct rtentry *, struct sockaddr *));
+static int faithioctl(struct ifnet *, u_long, void*);
+int faith_pre_output(struct ifnet *, register struct mbuf **,
+       const struct sockaddr *, caddr_t, char *, char *, u_long);
+static void faithrtrequest(int, struct rtentry *, struct sockaddr *);
 
-#if defined(__FreeBSD__) || defined (__APPLE__)
-void faithattach __P((void *));
-#else
-void faithattach __P((int));
+void faithattach(void);
+#ifndef __APPLE__
+PSEUDO_SET(faithattach, if_faith);
 #endif
 
-#define HAVE_OLD_BPF 1
-
 static struct ifnet faithif[NFAITH];
 static struct if_proto *faith_array[NFAITH];
 static int faith_count = 0;
@@ -188,28 +182,10 @@ int faith_shutdown()
     return 0;
 }
 
-void faith_reg_if_mods()
-{   
-     struct dlil_ifmod_reg_str  faith_ifmod;
-
-     faith_ifmod.add_if = faith_add_if;
-     faith_ifmod.del_if = faith_del_if;
-     faith_ifmod.add_proto = faith_add_proto;
-     faith_ifmod.del_proto = faith_del_proto;
-     faith_ifmod.ifmod_ioctl = 0;
-     faith_ifmod.shutdown    = faith_shutdown;
-
-    
-    if (dlil_reg_if_modules(APPLE_IF_FAM_FAITH, &faith_ifmod))
-        panic("Couldn't register faith modules\n");
-    
-}   
-    
-u_long  faith_attach_inet(struct ifnet *ifp)
+int  faith_attach_inet(struct ifnet *ifp, u_long *dl_tag)
 {       
     struct dlil_proto_reg_str   reg;
     struct dlil_demux_desc      desc;
-    u_long                      dl_tag=0;
     short native=0;
     int   stat;
     int i;
@@ -221,39 +197,63 @@ u_long  faith_attach_inet(struct ifnet *ifp)
                kprintf("faith_array for %s%d found dl_tag=%d\n",
                        ifp->if_name, ifp->if_unit, faith_array[i]->dl_tag);
 #endif
-                return faith_array[i]->dl_tag;
+                *dl_tag = faith_array[i]->dl_tag;
+               return 0;
        
         }
     }
 
+       bzero(&reg, sizeof(reg));
+       bzero(&desc, sizeof(desc));
     TAILQ_INIT(&reg.demux_desc_head); 
     desc.type = DLIL_DESC_RAW;
-    desc.variants.bitmask.proto_id_length = 0;
-    desc.variants.bitmask.proto_id = 0;
-    desc.variants.bitmask.proto_id_mask = 0;
     desc.native_type = (char *) &native;
     TAILQ_INSERT_TAIL(&reg.demux_desc_head, &desc, next);
     reg.interface_family = ifp->if_family;
     reg.unit_number      = ifp->if_unit;
-    reg.input            = 0;
     reg.pre_output       = faith_pre_output;
-    reg.event            = 0;
-    reg.offer            = 0;
-    reg.ioctl            = faithioctl;
-    reg.default_proto    = 0;
     reg.protocol_family  = PF_INET;
 
-    stat = dlil_attach_protocol(&reg, &dl_tag);
+    stat = dlil_attach_protocol(&reg, dl_tag);
     if (stat) {
         panic("faith_attach_inet can't attach interface\n");
     }
 
-    return dl_tag;
+    return stat;
 }
 
+void faith_reg_if_mods()
+{   
+     struct dlil_ifmod_reg_str  faith_ifmod;
+     struct dlil_protomod_reg_str faith_protoreg;
+     int error;
+
+     bzero(&faith_ifmod, sizeof(faith_ifmod));
+     faith_ifmod.add_if = faith_add_if;
+     faith_ifmod.del_if = faith_del_if;
+     faith_ifmod.add_proto = faith_add_proto;
+     faith_ifmod.del_proto = faith_del_proto;
+     faith_ifmod.ifmod_ioctl = 0;
+     faith_ifmod.shutdown    = faith_shutdown;
+
+    
+    if (dlil_reg_if_modules(APPLE_IF_FAM_FAITH, &faith_ifmod))
+        panic("Couldn't register faith modules\n");
+
+       /* Register protocol registration functions */
+
+       bzero(&faith_protoreg, sizeof(faith_protoreg));
+       faith_protoreg.attach_proto = faith_attach_inet;
+       faith_protoreg.detach_proto = 0;
+       
+       if ( error = dlil_reg_proto_module(PF_INET, APPLE_IF_FAM_FAITH, &faith_protoreg) != 0)
+               kprintf("dlil_reg_proto_module failed for AF_INET error=%d\n", error);
+
+    
+}   
+    
 void
-faithattach(faith)
-       void *faith;
+faithattach(void)
 {
        struct ifnet *ifp;
        int i;
@@ -267,8 +267,8 @@ faithattach(faith)
                ifp->if_unit = i;
                ifp->if_family = APPLE_IF_FAM_FAITH;
                ifp->if_mtu = FAITHMTU;
-               /* Change to BROADCAST experimentaly to announce its prefix. */
-               ifp->if_flags = /* IFF_LOOPBACK */ IFF_BROADCAST | IFF_MULTICAST;
+               /* LOOPBACK commented out to announce IPv6 routes to faith */
+               ifp->if_flags = /* IFF_LOOPBACK | */ IFF_MULTICAST;
                ifp->if_ioctl = faithioctl;
                ifp->if_output = NULL;
                ifp->if_type = IFT_FAITH;
@@ -286,18 +286,17 @@ faithattach(faith)
 }
 
 int
-faith_pre_output(ifp, m0, dst, rt, frame_type, dst_addr, dl_tag)
+faith_pre_output(ifp, m0, dst, route_entry, frame_type, dst_addr, dl_tag)
        struct ifnet *ifp;
        register struct mbuf **m0;
-       struct sockaddr *dst;
-       register struct rtentry *rt;
+       const struct sockaddr *dst;
+       caddr_t                  route_entry;
        char                 *frame_type;
        char                 *dst_addr;
        u_long               dl_tag;
 {
-       int s, isr;
-       register struct ifqueue *ifq = 0;
        register struct mbuf *m = *m0;
+       struct rtentry *rt = (struct rtentry*)route_entry;
 
        if ((m->m_flags & M_PKTHDR) == 0)
                panic("faithoutput no HDR");
@@ -319,13 +318,13 @@ faith_pre_output(ifp, m0, dst, rt, frame_type, dst_addr, dl_tag)
                 * try to free it or keep a pointer a to it).
                 */
                struct mbuf m0;
-               u_int af = dst->sa_family;
+               u_int32_t af = dst->sa_family;
 
                m0.m_next = m;
                m0.m_len = 4;
                m0.m_data = (char *)&af;
 
-#if HAVE_OLD_BPF
+#ifdef HAVE_OLD_BPF
                bpf_mtap(ifp, &m0);
 #else
                bpf_mtap(ifp->if_bpf, &m0);
@@ -334,47 +333,15 @@ faith_pre_output(ifp, m0, dst, rt, frame_type, dst_addr, dl_tag)
 #endif
 
        if (rt && rt->rt_flags & (RTF_REJECT|RTF_BLACKHOLE)) {
-               m_freem(m);
-               return (EJUSTRETURN);
-//             return (rt->rt_flags & RTF_BLACKHOLE ? 0 :
-//                     rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
+               return (rt->rt_flags & RTF_BLACKHOLE ? 0 :
+                       rt->rt_flags & RTF_HOST ? EHOSTUNREACH : ENETUNREACH);
        }
        ifp->if_opackets++;
        ifp->if_obytes += m->m_pkthdr.len;
-       switch (dst->sa_family) {
-#if INET
-       case AF_INET:
-               ifq = &ipintrq;
-               isr = NETISR_IP;
-               break;
-#endif
-#if INET6
-       case AF_INET6:
-               ifq = &ip6intrq;
-               isr = NETISR_IPV6;
-               break;
-#endif
-       default:
-               kprintf("faith_pre_output: m=%x family is unknown...(0x%x\n", m, dst->sa_family);
-               m_freem(m);
-               return EAFNOSUPPORT;
-       }
-
-       /* XXX do we need more sanity checks? */
-
        m->m_pkthdr.rcvif = ifp;
-       s = splimp();
-       if (IF_QFULL(ifq)) {
-               IF_DROP(ifq);
-               m_freem(m);
-               splx(s);
-               return (EJUSTRETURN);
-       }
-       IF_ENQUEUE(ifq, m);
-       schednetisr(isr);
+       proto_inject(dst->sa_family, m);
        ifp->if_ipackets++;
        ifp->if_ibytes += m->m_pkthdr.len;
-       splx(s);
        return (EJUSTRETURN);
 }
 
@@ -403,22 +370,18 @@ faithrtrequest(cmd, rt, sa)
 /* ARGSUSED */
 static int
 faithioctl(ifp, cmd, data)
-       register struct ifnet *ifp;
-#if defined(__FreeBSD__) && __FreeBSD__ < 3
-       int cmd;
-#else
+       struct ifnet *ifp;
        u_long cmd;
-#endif
-       caddr_t data;
+       void* data;
 {
-       register struct ifaddr *ifa;
-       register struct ifreq *ifr = (struct ifreq *)data;
-       register int error = 0;
+       struct ifaddr *ifa;
+       struct ifreq *ifr = (struct ifreq *)data;
+       int error = 0;
 
        switch (cmd) {
 
        case SIOCSIFADDR:
-               ifp->if_flags |= IFF_UP | IFF_RUNNING;
+               ifnet_set_flags(ifp, IFF_UP | IFF_RUNNING, IFF_UP | IFF_RUNNING);
                ifa = (struct ifaddr *)data;
                ifa->ifa_rtrequest = faithrtrequest;
                /*
@@ -449,11 +412,9 @@ faithioctl(ifp, cmd, data)
                break;
 
 #ifdef SIOCSIFMTU
-#ifndef __OpenBSD__
        case SIOCSIFMTU:
                ifp->if_mtu = ifr->ifr_mtu;
                break;
-#endif
 #endif
 
        case SIOCSIFFLAGS:
@@ -464,4 +425,36 @@ faithioctl(ifp, cmd, data)
        }
        return (error);
 }
+
+#if INET6
+/*
+ * XXX could be slow
+ * XXX could be layer violation to call sys/net from sys/netinet6
+ */
+int
+faithprefix(in6)
+       struct in6_addr *in6;
+{
+       struct rtentry *rt;
+       struct sockaddr_in6 sin6;
+       int ret;
+
+       if (ip6_keepfaith == 0)
+               return 0;
+
+       bzero(&sin6, sizeof(sin6));
+       sin6.sin6_family = AF_INET6;
+       sin6.sin6_len = sizeof(struct sockaddr_in6);
+       sin6.sin6_addr = *in6;
+       rt = rtalloc1((struct sockaddr *)&sin6, 0, 0UL);
+       if (rt && rt->rt_ifp && rt->rt_ifp->if_type == IFT_FAITH &&
+           (rt->rt_ifp->if_flags & IFF_UP) != 0)
+               ret = 1;
+       else
+               ret = 0;
+       if (rt)
+               rtfree(rt);
+       return ret;
+}
+#endif
 #endif /* NFAITH > 0 */