]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/net/bridge.h
xnu-517.3.15.tar.gz
[apple/xnu.git] / bsd / net / bridge.h
index 7f348134e8557a8b4aa30473bb896a31eaf79f7a..28a78c7b60cb9070a70d8fdc4e0afadaa9566960 100644 (file)
@@ -3,19 +3,22 @@
  *
  * @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) 1999-2003 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
+ * 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. 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@
  */
@@ -46,6 +49,9 @@
  */
 #ifndef _NET_BRIDGE_H_
 #define _NET_BRIDGE_H_
+#include <sys/appleapiopts.h>
+
+#warning This is not used by Darwin, do not include
 
 extern int do_bridge;
 /*
@@ -59,8 +65,43 @@ typedef struct hash_table {
 
 extern bdg_hash_table *bdg_table ;
 
+/*
+ * We need additional info for the bridge. The bdg_ifp2sc[] array
+ * provides a pointer to this struct using the if_index.   
+ * bdg_softc has a backpointer to the struct ifnet, the bridge
+ * flags, and a cluster (bridging occurs only between port of the
+ * same cluster).
+ */
+struct bdg_softc {
+    struct ifnet *ifp ;
+    /* also ((struct arpcom *)ifp)->ac_enaddr is the eth. addr */
+    int flags ;
+#define IFF_BDG_PROMISC 0x0001  /* set promisc mode on this if.  */
+#define IFF_MUTE        0x0002  /* mute this if for bridging.   */
+#define IFF_USED        0x0004  /* use this if for bridging.    */
+    short cluster_id ; /* in network format */
+    u_long magic;
+} ;
+
+extern struct bdg_softc *ifp2sc;
+
+#define BDG_USED(ifp) (ifp2sc[ifp->if_index].flags & IFF_USED)
+#define BDG_MUTED(ifp) (ifp2sc[ifp->if_index].flags & IFF_MUTE)
+#define BDG_MUTE(ifp) ifp2sc[ifp->if_index].flags |= IFF_MUTE
+#define BDG_UNMUTE(ifp) ifp2sc[ifp->if_index].flags &= ~IFF_MUTE
+#define BDG_CLUSTER(ifp) (ifp2sc[ifp->if_index].cluster_id)
+#define BDG_EH(ifp)    ((struct arpcom *)ifp)->ac_enaddr
+
+#define BDG_SAMECLUSTER(ifp,src) \
+       (src == NULL || BDG_CLUSTER(ifp) == BDG_CLUSTER(src) )
+
+
 #define BDG_MAX_PORTS 128
-extern unsigned char bdg_addresses[6*BDG_MAX_PORTS];
+typedef struct _bdg_addr {
+    unsigned char etheraddr[6] ;
+    short cluster_id ;
+} bdg_addr ;
+extern bdg_addr bdg_addresses[BDG_MAX_PORTS];
 extern int bdg_ports ;
 
 /*
@@ -73,9 +114,9 @@ extern int bdg_ports ;
 
 #define        IFF_MUTE        IFF_LINK2       /* will need a separate flag... */
 
-struct ifnet *bridge_in(struct mbuf *m);
+struct ifnet *bridge_in(struct ifnet *ifp, struct ether_header *eh);
 /* bdg_forward frees the mbuf if necessary, returning null */
-int bdg_forward (struct mbuf **m, struct ifnet *dst);
+struct mbuf *bdg_forward(struct mbuf *m0, struct ether_header *eh, struct ifnet *dst);
 
 #ifdef __i386__
 #define BDG_MATCH(a,b) ( \
@@ -122,7 +163,7 @@ struct bdg_stats {
 
 #define BDG_STAT(ifp, type) bdg_stats.s[ifp->if_index].p_in[(int)type]++ 
  
-#if KERNEL
+#ifdef KERNEL
 /*
  * Find the right pkt destination:
  *     BDG_BCAST       is a broadcast
@@ -130,15 +171,17 @@ struct bdg_stats {
  *     BDG_LOCAL       is for a local address
  *     BDG_DROP        must be dropped
  *     other           ifp of the dest. interface (incl.self)
+ *
+ * We assume this is only called for interfaces for which bridging
+ * is enabled, i.e. BDG_USED(ifp) is true.
  */
 static __inline
 struct ifnet *
-bridge_dst_lookup(struct mbuf *m)
+bridge_dst_lookup(struct ether_header *eh)
 {
-    struct ether_header *eh = mtod(m, struct ether_header *);
     struct ifnet *dst ;
     int index ;
-    u_char *eth_addr = bdg_addresses ;
+    bdg_addr *p ;
 
     if (IS_ETHER_BROADCAST(eh->ether_dhost))
        return BDG_BCAST ;
@@ -147,9 +190,8 @@ bridge_dst_lookup(struct mbuf *m)
     /*
      * Lookup local addresses in case one matches.
      */
-    for (index = bdg_ports, eth_addr = bdg_addresses ;
-                index ; index--, eth_addr += 6 )
-       if (BDG_MATCH(eth_addr, eh->ether_dhost) )
+    for (index = bdg_ports, p = bdg_addresses ; index ; index--, p++ )
+       if (BDG_MATCH(p->etheraddr, eh->ether_dhost) )
            return BDG_LOCAL ;
     /*
      * Look for a possible destination in table
@@ -164,5 +206,4 @@ bridge_dst_lookup(struct mbuf *m)
 
 #endif /* KERNEL */
 
-#endif /* ! _NET_BRIDGE_H_ */
-
+#endif /* _NET_BRIDGE_H_ */