]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/net/if_ethersubr.c
xnu-1504.15.3.tar.gz
[apple/xnu.git] / bsd / net / if_ethersubr.c
index 0df1345ba84d75f40253e3d0cbfe5bdc877206e6..e407e009fa8fe6e3d498bc026affbd3cef26aa88 100644 (file)
@@ -1,23 +1,29 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000, 2009 Apple Computer, Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
+ * @APPLE_OSREFERENCE_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.
+ * 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.
  * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * 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 OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License.
+ * 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_HEADER_END@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*
  * Copyright (c) 1982, 1989, 1993
@@ -65,7 +71,6 @@
 #include <sys/sysctl.h>
 
 #include <net/if.h>
-#include <net/netisr.h>
 #include <net/route.h>
 #include <net/if_llc.h>
 #include <net/if_dl.h>
 extern struct ifqueue pkintrq;
 #endif
 
-#if BRIDGE
-#include <net/bridge.h>
-#endif
-
 /* #include "vlan.h" */
 #if NVLAN > 0
 #include <net/if_vlan_var.h>
@@ -101,47 +102,16 @@ extern struct ifqueue pkintrq;
 
 extern u_char  etherbroadcastaddr[];
 #define senderr(e) do { error = (e); goto bad;} while (0)
-#define IFP2AC(IFP) ((struct arpcom *)IFP)
 
 /*
  * Perform common duties while attaching to interface list
  */
 
-
-/* 
-    IONetworkingFamily should call dlil_if_attach
-    ether_ifattach becomes obsolete, but remains for
-    temporary compatibility with third parties extensions
-*/
-void
-ether_ifattach(ifp)
-       register struct ifnet *ifp;
-{
-       boolean_t funnel_state;
-
-       funnel_state = thread_funnel_set(network_flock, TRUE);
-
-       ifp->if_name = "en";
-       ifp->if_family = APPLE_IF_FAM_ETHERNET;
-       ifp->if_type = IFT_ETHER;
-       ifp->if_addrlen = 6;
-       ifp->if_hdrlen = 14;
-       ifp->if_mtu = ETHERMTU;
-       if (ifp->if_baudrate == 0)
-           ifp->if_baudrate = 10000000;
-
-       dlil_if_attach(ifp);
-       (void) thread_funnel_set(network_flock, funnel_state);
-}
-
-SYSCTL_DECL(_net_link);
-SYSCTL_NODE(_net_link, IFT_ETHER, ether, CTLFLAG_RW, 0, "Ethernet");
-
 int
-ether_resolvemulti(ifp, llsa, sa)
-       struct ifnet *ifp;
-       struct sockaddr **llsa;
-       struct sockaddr *sa;
+ether_resolvemulti(
+       struct ifnet *ifp,
+       struct sockaddr **llsa,
+       struct sockaddr *sa)
 {
        struct sockaddr_dl *sdl;
        struct sockaddr_in *sin;
@@ -180,6 +150,8 @@ ether_resolvemulti(ifp, llsa, sa)
                        return EADDRNOTAVAIL;
                MALLOC(sdl, struct sockaddr_dl *, sizeof *sdl, M_IFMADDR,
                       M_WAITOK);
+               if (sdl == NULL)
+                       return ENOBUFS;
                sdl->sdl_len = sizeof *sdl;
                sdl->sdl_family = AF_LINK;
                sdl->sdl_index = ifp->if_index;
@@ -207,6 +179,8 @@ ether_resolvemulti(ifp, llsa, sa)
                 }
                 MALLOC(sdl, struct sockaddr_dl *, sizeof *sdl, M_IFMADDR,
                        M_WAITOK);
+               if (sdl == NULL)
+                       return ENOBUFS;
                 sdl->sdl_len = sizeof *sdl;
                 sdl->sdl_family = AF_LINK;
                 sdl->sdl_index = ifp->if_index;
@@ -216,8 +190,10 @@ ether_resolvemulti(ifp, llsa, sa)
                 sdl->sdl_slen = 0;
                 e_addr = LLADDR(sdl);
                 ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, e_addr);
-                kprintf("ether_resolvemulti Adding %x:%x:%x:%x:%x:%x\n",
+#if 0
+                printf("ether_resolvemulti Adding %x:%x:%x:%x:%x:%x\n",
                                 e_addr[0], e_addr[1], e_addr[2], e_addr[3], e_addr[4], e_addr[5]);
+#endif
                 *llsa = (struct sockaddr *)sdl;
                 return 0;
 #endif
@@ -232,185 +208,6 @@ ether_resolvemulti(ifp, llsa, sa)
 }
 
 
-
-
-
-u_char ether_ipmulticast_min[6] = { 0x01, 0x00, 0x5e, 0x00, 0x00, 0x00 };
-u_char ether_ipmulticast_max[6] = { 0x01, 0x00, 0x5e, 0x7f, 0xff, 0xff };
-/*
- * Add an Ethernet multicast address or range of addresses to the list for a
- * given interface.
- */
-int
-ether_addmulti(ifr, ac)
-       struct ifreq *ifr;
-       register struct arpcom *ac;
-{
-       register struct ether_multi *enm;
-       struct sockaddr_in *sin;
-       u_char addrlo[6];
-       u_char addrhi[6];
-       int s = splimp();
-
-       switch (ifr->ifr_addr.sa_family) {
-
-       case AF_UNSPEC:
-               bcopy(ifr->ifr_addr.sa_data, addrlo, 6);
-               bcopy(addrlo, addrhi, 6);
-               break;
-
-#if INET
-       case AF_INET:
-               sin = (struct sockaddr_in *)&(ifr->ifr_addr);
-               if (sin->sin_addr.s_addr == INADDR_ANY) {
-                       /*
-                        * An IP address of INADDR_ANY means listen to all
-                        * of the Ethernet multicast addresses used for IP.
-                        * (This is for the sake of IP multicast routers.)
-                        */
-                       bcopy(ether_ipmulticast_min, addrlo, 6);
-                       bcopy(ether_ipmulticast_max, addrhi, 6);
-               }
-               else {
-                       ETHER_MAP_IP_MULTICAST(&sin->sin_addr, addrlo);
-                       bcopy(addrlo, addrhi, 6);
-               }
-               break;
-#endif
-
-       default:
-               splx(s);
-               return (EAFNOSUPPORT);
-       }
-
-       /*
-        * Verify that we have valid Ethernet multicast addresses.
-        */
-       if ((addrlo[0] & 0x01) != 1 || (addrhi[0] & 0x01) != 1) {
-               splx(s);
-               return (EINVAL);
-       }
-       /*
-        * See if the address range is already in the list.
-        */
-       ETHER_LOOKUP_MULTI(addrlo, addrhi, ac, enm);
-       if (enm != NULL) {
-               /*
-                * Found it; just increment the reference count.
-                */
-               ++enm->enm_refcount;
-               splx(s);
-               return (0);
-       }
-       /*
-        * New address or range; malloc a new multicast record
-        * and link it into the interface's multicast list.
-        */
-       enm = (struct ether_multi *)_MALLOC(sizeof(*enm), M_IFMADDR, M_WAITOK);
-       if (enm == NULL) {
-               splx(s);
-               return (ENOBUFS);
-       }
-       bcopy(addrlo, enm->enm_addrlo, 6);
-       bcopy(addrhi, enm->enm_addrhi, 6);
-       enm->enm_ac = ac;
-       enm->enm_refcount = 1;
-       enm->enm_next = ac->ac_multiaddrs;
-       ac->ac_multiaddrs = enm;
-       splx(s);
-       /*
-        * Return ENETRESET to inform the driver that the list has changed
-        * and its reception filter should be adjusted accordingly.
-        */
-       return (ENETRESET);
-}
-
-/*
- * Delete a multicast address record.
- */
-int
-ether_delmulti(ifr, ac, ret_mca)
-       struct ifreq *ifr;
-       register struct arpcom *ac;
-       struct ether_addr * ret_mca;
-{
-       register struct ether_multi *enm;
-       register struct ether_multi **p;
-       struct sockaddr_in *sin;
-       u_char addrlo[6];
-       u_char addrhi[6];
-       int s = splimp();
-
-       switch (ifr->ifr_addr.sa_family) {
-
-       case AF_UNSPEC:
-               bcopy(ifr->ifr_addr.sa_data, addrlo, 6);
-               bcopy(addrlo, addrhi, 6);
-               break;
-
-#if INET
-       case AF_INET:
-               sin = (struct sockaddr_in *)&(ifr->ifr_addr);
-               if (sin->sin_addr.s_addr == INADDR_ANY) {
-                       /*
-                        * An IP address of INADDR_ANY means stop listening
-                        * to the range of Ethernet multicast addresses used
-                        * for IP.
-                        */
-                       bcopy(ether_ipmulticast_min, addrlo, 6);
-                       bcopy(ether_ipmulticast_max, addrhi, 6);
-               }
-               else {
-                       ETHER_MAP_IP_MULTICAST(&sin->sin_addr, addrlo);
-                       bcopy(addrlo, addrhi, 6);
-               }
-               break;
-#endif
-
-       default:
-               splx(s);
-               return (EAFNOSUPPORT);
-       }
-
-       /*
-        * Look up the address in our list.
-        */
-       ETHER_LOOKUP_MULTI(addrlo, addrhi, ac, enm);
-       if (enm == NULL) {
-               splx(s);
-               return (ENXIO);
-       }
-       if (--enm->enm_refcount != 0) {
-               /*
-                * Still some claims to this record.
-                */
-               splx(s);
-               return (0);
-       }
-
-       /* save the low and high address of the range before deletion */
-       if (ret_mca) {
-               *ret_mca        = *((struct ether_addr *)addrlo);
-               *(ret_mca + 1)  = *((struct ether_addr *)addrhi);
-       }
-
-       /*
-        * No remaining claims to this record; unlink and free it.
-        */
-       for (p = &enm->enm_ac->ac_multiaddrs;
-            *p != enm;
-            p = &(*p)->enm_next)
-               continue;
-       *p = (*p)->enm_next;
-       FREE(enm, M_IFMADDR);
-       splx(s);
-       /*
-        * Return ENETRESET to inform the driver that the list has changed
-        * and its reception filter should be adjusted accordingly.
-        */
-       return (ENETRESET);
-}
-
 /*
  * Convert Ethernet address to printable (loggable) representation.
  */