if_xname support Part 2/2: Convert remaining netif devices and implement full
[dragonfly.git] / sys / net / bridge / bridge.c
1 /*
2  * Copyright (c) 1998-2002 Luigi Rizzo
3  *
4  * Work partly supported by: Cisco Systems, Inc. - NSITE lab, RTP, NC
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/net/bridge.c,v 1.16.2.25 2003/01/23 21:06:44 sam Exp $
28  * $DragonFly: src/sys/net/bridge/Attic/bridge.c,v 1.6 2004/01/06 03:17:25 dillon Exp $
29  */
30
31 /*
32  * This code implements bridging in FreeBSD. It only acts on ethernet
33  * interfaces, including VLANs (others are still usable for routing).
34  * A FreeBSD host can implement multiple logical bridges, called
35  * "clusters". Each cluster is made of a set of interfaces, and
36  * identified by a "cluster-id" which is a number in the range 1..2^16-1.
37  *
38  * Bridging is enabled by the sysctl variable
39  *      net.link.ether.bridge
40  * the grouping of interfaces into clusters is done with
41  *      net.link.ether.bridge_cfg
42  * containing a list of interfaces each optionally followed by
43  * a colon and the cluster it belongs to (1 is the default).
44  * Separators can be * spaces, commas or tabs, e.g.
45  *      net.link.ether.bridge_cfg="fxp0:2 fxp1:2 dc0 dc1:1"
46  * Optionally bridged packets can be passed through the firewall,
47  * this is controlled by the variable
48  *      net.link.ether.bridge_ipfw
49  *
50  * For each cluster there is a descriptor (cluster_softc) storing
51  * the following data structures:
52  * - a hash table with the MAC address and destination interface for each
53  *   known node. The table is indexed using a hash of the source address.
54  * - an array with the MAC addresses of the interfaces used in the cluster.
55  *
56  * Input packets are tapped near the beginning of ether_input(), and
57  * analysed by bridge_in(). Depending on the result, the packet
58  * can be forwarded to one or more output interfaces using bdg_forward(),
59  * and/or sent to the upper layer (e.g. in case of multicast).
60  *
61  * Output packets are intercepted near the end of ether_output().
62  * The correct destination is selected by bridge_dst_lookup(),
63  * and then forwarding is done by bdg_forward().
64  *
65  * The arp code is also modified to let a machine answer to requests
66  * irrespective of the port the request came from.
67  *
68  * In case of loops in the bridging topology, the bridge detects this
69  * event and temporarily mutes output bridging on one of the ports.
70  * Periodically, interfaces are unmuted by bdg_timeout().
71  * Muting is only implemented as a safety measure, and also as
72  * a mechanism to support a user-space implementation of the spanning
73  * tree algorithm.
74  *
75  * To build a bridging kernel, use the following option
76  *    option BRIDGE
77  * and then at runtime set the sysctl variable to enable bridging.
78  *
79  * Only one interface per cluster is supposed to have addresses set (but
80  * there are no substantial problems if you set addresses for none or
81  * for more than one interface).
82  * Bridging will act before routing, but nothing prevents a machine
83  * from doing both (modulo bugs in the implementation...).
84  *
85  * THINGS TO REMEMBER
86  *  - bridging is incompatible with multicast routing on the same
87  *    machine. There is not an easy fix to this.
88  *  - be very careful when bridging VLANs
89  *  - loop detection is still not very robust.
90  */
91
92 #include <sys/param.h>
93 #include <sys/mbuf.h>
94 #include <sys/malloc.h>
95 #include <sys/systm.h>
96 #include <sys/socket.h> /* for net/if.h */
97 #include <sys/ctype.h>  /* string functions */
98 #include <sys/kernel.h>
99 #include <sys/sysctl.h>
100
101 #include <net/if.h>
102 #include <net/if_types.h>
103 #include <net/if_var.h>
104
105 #include <netinet/in.h> /* for struct arpcom */
106 #include <netinet/in_systm.h>
107 #include <netinet/in_var.h>
108 #include <netinet/ip.h>
109 #include <netinet/if_ether.h> /* for struct arpcom */
110
111 #include <net/route.h>
112 #include <net/ipfw/ip_fw.h>
113 #include <net/dummynet/ip_dummynet.h>
114 #include "bridge.h"
115
116 /*--------------------*/
117
118 /*
119  * For each cluster, source MAC addresses are stored into a hash
120  * table which locates the port they reside on.
121  */
122 #define HASH_SIZE 8192  /* Table size, must be a power of 2 */
123
124 typedef struct hash_table {             /* each entry.          */
125     struct ifnet *      name;
126     u_char              etheraddr[6];
127     u_int16_t           used;           /* also, padding        */
128 } bdg_hash_table ;
129
130 /*
131  * The hash function applied to MAC addresses. Out of the 6 bytes,
132  * the last ones tend to vary more. Since we are on a little endian machine,
133  * we have to do some gimmick...
134  */
135 #define HASH_FN(addr)   (       \
136     ntohs( ((u_int16_t *)addr)[1] ^ ((u_int16_t *)addr)[2] ) & (HASH_SIZE -1))
137
138 /*
139  * This is the data structure where local addresses are stored.
140  */
141 struct bdg_addr {
142     u_char      etheraddr[6] ;
143     u_int16_t   _padding ;
144 };
145
146 /*
147  * The configuration of each cluster includes the cluster id, a pointer to
148  * the hash table, and an array of local MAC addresses (of size "ports").
149  */
150 struct cluster_softc {
151     u_int16_t   cluster_id;
152     u_int16_t   ports;
153     bdg_hash_table *ht;
154     struct bdg_addr     *my_macs;       /* local MAC addresses */
155 };
156
157
158 extern struct protosw inetsw[];                 /* from netinet/ip_input.c */
159 extern u_char ip_protox[];                      /* from netinet/ip_input.c */
160
161 static int n_clusters;                          /* number of clusters */
162 static struct cluster_softc *clusters;
163
164 #define BDG_MUTED(ifp) (ifp2sc[ifp->if_index].flags & IFF_MUTE)
165 #define BDG_MUTE(ifp) ifp2sc[ifp->if_index].flags |= IFF_MUTE
166 #define BDG_CLUSTER(ifp) (ifp2sc[ifp->if_index].cluster)
167
168 #define BDG_SAMECLUSTER(ifp,src) \
169         (src == NULL || BDG_CLUSTER(ifp) == BDG_CLUSTER(src) )
170
171 #ifdef __i386__
172 #define BDG_MATCH(a,b) ( \
173     ((u_int16_t *)(a))[2] == ((u_int16_t *)(b))[2] && \
174     *((u_int32_t *)(a)) == *((u_int32_t *)(b)) )
175 #define IS_ETHER_BROADCAST(a) ( \
176         *((u_int32_t *)(a)) == 0xffffffff && \
177         ((u_int16_t *)(a))[2] == 0xffff )
178 #else
179 /* for machines that do not support unaligned access */
180 #define BDG_MATCH(a,b)          (!bcmp(a, b, ETHER_ADDR_LEN) )
181 #define IS_ETHER_BROADCAST(a)   (!bcmp(a, "\377\377\377\377\377\377", 6))
182 #endif
183
184
185 /*
186  * For timing-related debugging, you can use the following macros.
187  * remember, rdtsc() only works on Pentium-class machines
188
189     quad_t ticks;
190     DDB(ticks = rdtsc();)
191     ... interesting code ...
192     DDB(bdg_fw_ticks += (u_long)(rdtsc() - ticks) ; bdg_fw_count++ ;)
193
194  *
195  */
196
197 #define DDB(x) x
198 #define DEB(x)
199
200 static int bdginit(void);
201 static void parse_bdg_cfg(void);
202
203 static int bdg_ipf;             /* IPFilter enabled in bridge */
204 static int bdg_ipfw;
205
206 /*
207  * For IPFilter, declared in ip_input.c
208  */
209 extern int (*fr_checkp)(struct ip *, int, struct ifnet *, int, struct mbuf **);
210
211 #if 0 /* debugging only */
212 static char *bdg_dst_names[] = {
213         "BDG_NULL    ",
214         "BDG_BCAST   ",
215         "BDG_MCAST   ",
216         "BDG_LOCAL   ",
217         "BDG_DROP    ",
218         "BDG_UNKNOWN ",
219         "BDG_IN      ",
220         "BDG_OUT     ",
221         "BDG_FORWARD " };
222 #endif
223 /*
224  * System initialization
225  */
226
227 static struct bdg_stats bdg_stats ;
228 static struct callout_handle bdg_timeout_h ;
229
230 /*
231  * Add an interface to a cluster, possibly creating a new entry in
232  * the cluster table. This requires reallocation of the table and
233  * updating pointers in ifp2sc.
234  */
235 static struct cluster_softc *
236 add_cluster(u_int16_t cluster_id, struct arpcom *ac)
237 {
238     struct cluster_softc *c = NULL;
239     int i;
240
241     for (i = 0; i < n_clusters ; i++)
242         if (clusters[i].cluster_id == cluster_id)
243             goto found;
244
245     /* Not found, need to reallocate */
246     c = malloc((1+n_clusters) * sizeof (*c), M_IFADDR, M_NOWAIT | M_ZERO);
247     if (c == NULL) {/* malloc failure */
248         printf("-- bridge: cannot add new cluster\n");
249         return NULL;
250     }
251     c[n_clusters].ht = (struct hash_table *)
252             malloc(HASH_SIZE * sizeof(struct hash_table),
253                 M_IFADDR, M_WAITOK | M_ZERO);
254     if (c[n_clusters].ht == NULL) {
255         printf("-- bridge: cannot allocate hash table for new cluster\n");
256         free(c, M_IFADDR);
257         return NULL;
258     }
259     c[n_clusters].my_macs = (struct bdg_addr *)
260             malloc(BDG_MAX_PORTS * sizeof(struct bdg_addr),
261                 M_IFADDR, M_WAITOK | M_ZERO);
262     if (c[n_clusters].my_macs == NULL) {
263         printf("-- bridge: cannot allocate mac addr table for new cluster\n");
264         free(c[n_clusters].ht, M_IFADDR);
265         free(c, M_IFADDR);
266         return NULL;
267     }
268
269     c[n_clusters].cluster_id = cluster_id;
270     c[n_clusters].ports = 0;
271     /*
272      * now copy old descriptors here
273      */
274     if (n_clusters > 0) {
275         for (i=0; i < n_clusters; i++)
276             c[i] = clusters[i];
277         /*
278          * and finally update pointers in ifp2sc
279          */
280         for (i = 0 ; i < if_index && i < BDG_MAX_PORTS; i++)
281             if (ifp2sc[i].cluster != NULL)
282                 ifp2sc[i].cluster = c + (ifp2sc[i].cluster - clusters);
283         free(clusters, M_IFADDR);
284     }
285     clusters = c;
286     i = n_clusters;             /* index of cluster entry */
287     n_clusters++;
288 found:
289     c = clusters + i;           /* the right cluster ... */
290     bcopy(ac->ac_enaddr, &(c->my_macs[c->ports]), 6);
291     c->ports++;
292     return c;
293 }
294
295
296 /*
297  * Turn off bridging, by clearing promisc mode on the interface,
298  * marking the interface as unused, and clearing the name in the
299  * stats entry.
300  * Also dispose the hash tables associated with the clusters.
301  */
302 static void
303 bridge_off(void)
304 {
305     struct ifnet *ifp ;
306     int i, s;
307
308     DEB(printf("bridge_off: n_clusters %d\n", n_clusters);)
309     TAILQ_FOREACH(ifp, &ifnet, if_link) {
310         struct bdg_softc *b;
311
312         if (ifp->if_index >= BDG_MAX_PORTS)
313             continue;   /* make sure we do not go beyond the end */
314         b = &(ifp2sc[ifp->if_index]);
315
316         if ( b->flags & IFF_BDG_PROMISC ) {
317             s = splimp();
318             ifpromisc(ifp, 0);
319             splx(s);
320             b->flags &= ~(IFF_BDG_PROMISC|IFF_MUTE) ;
321             DEB(printf(">> now %s promisc OFF if_flags 0x%x bdg_flags 0x%x\n",
322                     ifp->if_xname,
323                     ifp->if_flags, b->flags);)
324         }
325         b->flags &= ~(IFF_USED) ;
326         b->cluster = NULL;
327         bdg_stats.s[ifp->if_index].name[0] = '\0';
328     }
329     /* flush_tables */
330
331     s = splimp();
332     for (i=0; i < n_clusters; i++) {
333         free(clusters[i].ht, M_IFADDR);
334         free(clusters[i].my_macs, M_IFADDR);
335     }
336     if (clusters != NULL)
337         free(clusters, M_IFADDR);
338     clusters = NULL;
339     n_clusters =0;
340     splx(s);
341 }
342
343 /*
344  * set promisc mode on the interfaces we use.
345  */
346 static void
347 bridge_on(void)
348 {
349     struct ifnet *ifp ;
350     int s ;
351
352     TAILQ_FOREACH(ifp, &ifnet, if_link) {
353         struct bdg_softc *b = &ifp2sc[ifp->if_index];
354
355         if ( !(b->flags & IFF_USED) )
356             continue ;
357         if ( !( ifp->if_flags & IFF_UP) ) {
358             s = splimp();
359             if_up(ifp);
360             splx(s);
361         }
362         if ( !(b->flags & IFF_BDG_PROMISC) ) {
363             int ret ;
364             s = splimp();
365             ret = ifpromisc(ifp, 1);
366             splx(s);
367             b->flags |= IFF_BDG_PROMISC ;
368             DEB(printf(">> now %s promisc ON if_flags 0x%x bdg_flags 0x%x\n",
369                     ifp->if_xname,
370                     ifp->if_flags, b->flags);)
371         }
372         if (b->flags & IFF_MUTE) {
373             DEB(printf(">> unmuting %s\n", ifp->if_xname);)
374             b->flags &= ~IFF_MUTE;
375         }
376     }
377 }
378
379 /**
380  * reconfigure bridge.
381  * This is also done every time we attach or detach an interface.
382  * Main use is to make sure that we do not bridge on some old
383  * (ejected) device. So, it would be really useful to have a
384  * pointer to the modified device as an argument. Without it, we
385  * have to scan all interfaces.
386  */
387 static void
388 reconfigure_bridge(void)
389 {
390     bridge_off();
391     if (do_bridge) {
392         if (if_index >= BDG_MAX_PORTS) {
393             printf("-- sorry too many interfaces (%d, max is %d),"
394                 " disabling bridging\n", if_index, BDG_MAX_PORTS);
395             do_bridge=0;
396             return;
397         }
398         parse_bdg_cfg();
399         bridge_on();
400     }
401 }
402
403 static char bridge_cfg[1024]; /* in BSS so initialized to all NULs */
404
405 /*
406  * parse the config string, set IFF_USED, name and cluster_id
407  * for all interfaces found.
408  * The config string is a list of "if[:cluster]" with
409  * a number of possible separators (see "sep"). In particular the
410  * use of the space lets you set bridge_cfg with the output from
411  * "ifconfig -l"
412  */
413 static void
414 parse_bdg_cfg()
415 {
416     char *p, *beg ;
417     int l, cluster;
418     static char *sep = ", \t";
419
420     for (p = bridge_cfg; *p ; p++) {
421         struct ifnet *ifp;
422         int found = 0;
423         char c;
424
425         if (index(sep, *p))     /* skip separators */
426             continue ;
427         /* names are lowercase and digits */
428         for ( beg = p ; islower(*p) || isdigit(*p) ; p++ )
429             ;
430         l = p - beg ;           /* length of name string */
431         if (l == 0)             /* invalid name */
432             break ;
433         if ( *p != ':' )        /* no ':', assume default cluster 1 */
434             cluster = 1 ;
435         else                    /* fetch cluster */
436             cluster = strtoul( p+1, &p, 10);
437         c = *p;
438         *p = '\0';
439         /*
440          * now search in interface list for a matching name
441          */
442         TAILQ_FOREACH(ifp, &ifnet, if_link) {
443             char buf[IFNAMSIZ];
444
445             snprintf(buf, sizeof(buf), "%s", ifp->if_xname);
446             if (!strncmp(beg, buf, max(l, strlen(buf)))) {
447                 struct bdg_softc *b = &ifp2sc[ifp->if_index];
448                 if (ifp->if_type != IFT_ETHER && ifp->if_type != IFT_L2VLAN) {
449                     printf("%s is not an ethernet, continue\n", buf);
450                     continue;
451                 }
452                 if (b->flags & IFF_USED) {
453                     printf("%s already used, skipping\n", buf);
454                     break;
455                 }
456                 b->cluster = add_cluster(htons(cluster), (struct arpcom *)ifp);
457                 b->flags |= IFF_USED ;
458                 sprintf(bdg_stats.s[ifp->if_index].name,
459                         "%s:%d", ifp->if_xname, cluster);
460
461                 DEB(printf("--++  found %s next c %d\n",
462                     bdg_stats.s[ifp->if_index].name, c);)
463                 found = 1;
464                 break ;
465             }
466         }
467         if (!found)
468             printf("interface %s Not found in bridge\n", beg);
469         *p = c;
470         if (c == '\0')
471             break; /* no more */
472     }
473 }
474
475
476 /*
477  * handler for net.link.ether.bridge
478  */
479 static int
480 sysctl_bdg(SYSCTL_HANDLER_ARGS)
481 {
482     int error, oldval = do_bridge ;
483
484     error = sysctl_handle_int(oidp, oidp->oid_arg1, oidp->oid_arg2, req);
485     DEB( printf("called sysctl for bridge name %s arg2 %d val %d->%d\n",
486         oidp->oid_name, oidp->oid_arg2,
487         oldval, do_bridge); )
488
489     if (oldval != do_bridge)
490         reconfigure_bridge();
491     return error ;
492 }
493
494 /*
495  * handler for net.link.ether.bridge_cfg
496  */
497 static int
498 sysctl_bdg_cfg(SYSCTL_HANDLER_ARGS)
499 {
500     int error = 0 ;
501     char old_cfg[1024] ;
502
503     strcpy(old_cfg, bridge_cfg) ;
504
505     error = sysctl_handle_string(oidp, bridge_cfg, oidp->oid_arg2, req);
506     DEB(
507         printf("called sysctl for bridge name %s arg2 %d err %d val %s->%s\n",
508                 oidp->oid_name, oidp->oid_arg2,
509                 error,
510                 old_cfg, bridge_cfg);
511         )
512     if (strcmp(old_cfg, bridge_cfg))
513         reconfigure_bridge();
514     return error ;
515 }
516
517 static int
518 sysctl_refresh(SYSCTL_HANDLER_ARGS)
519 {
520     if (req->newptr)
521         reconfigure_bridge();
522
523     return 0;
524 }
525
526
527 SYSCTL_DECL(_net_link_ether);
528 SYSCTL_PROC(_net_link_ether, OID_AUTO, bridge_cfg, CTLTYPE_STRING|CTLFLAG_RW,
529             &bridge_cfg, sizeof(bridge_cfg), &sysctl_bdg_cfg, "A",
530             "Bridge configuration");
531
532 SYSCTL_PROC(_net_link_ether, OID_AUTO, bridge, CTLTYPE_INT|CTLFLAG_RW,
533             &do_bridge, 0, &sysctl_bdg, "I", "Bridging");
534
535 SYSCTL_INT(_net_link_ether, OID_AUTO, bridge_ipfw, CTLFLAG_RW,
536             &bdg_ipfw,0,"Pass bridged pkts through firewall");
537
538 SYSCTL_INT(_net_link_ether, OID_AUTO, bridge_ipf, CTLFLAG_RW,
539             &bdg_ipf, 0,"Pass bridged pkts through IPFilter");
540
541 /*
542  * The follow macro declares a variable, and maps it to
543  * a SYSCTL_INT entry with the same name.
544  */
545 #define SY(parent, var, comment)                        \
546         static int var ;                                \
547         SYSCTL_INT(parent, OID_AUTO, var, CTLFLAG_RW, &(var), 0, comment);
548
549 int bdg_ipfw_drops;
550 SYSCTL_INT(_net_link_ether, OID_AUTO, bridge_ipfw_drop,
551         CTLFLAG_RW, &bdg_ipfw_drops,0,"");
552
553 int bdg_ipfw_colls;
554 SYSCTL_INT(_net_link_ether, OID_AUTO, bridge_ipfw_collisions,
555         CTLFLAG_RW, &bdg_ipfw_colls,0,"");
556
557 SYSCTL_PROC(_net_link_ether, OID_AUTO, bridge_refresh, CTLTYPE_INT|CTLFLAG_WR,
558             NULL, 0, &sysctl_refresh, "I", "iface refresh");
559
560 #if 1 /* diagnostic vars */
561
562 SY(_net_link_ether, verbose, "Be verbose");
563 SY(_net_link_ether, bdg_split_pkts, "Packets split in bdg_forward");
564
565 SY(_net_link_ether, bdg_thru, "Packets through bridge");
566
567 SY(_net_link_ether, bdg_copied, "Packets copied in bdg_forward");
568
569 SY(_net_link_ether, bdg_copy, "Force copy in bdg_forward");
570 SY(_net_link_ether, bdg_predict, "Correctly predicted header location");
571
572 SY(_net_link_ether, bdg_fw_avg, "Cycle counter avg");
573 SY(_net_link_ether, bdg_fw_ticks, "Cycle counter item");
574 SY(_net_link_ether, bdg_fw_count, "Cycle counter count");
575 #endif
576
577 SYSCTL_STRUCT(_net_link_ether, PF_BDG, bdgstats,
578         CTLFLAG_RD, &bdg_stats , bdg_stats, "bridge statistics");
579
580 static int bdg_loops ;
581
582 /*
583  * called periodically to flush entries etc.
584  */
585 static void
586 bdg_timeout(void *dummy)
587 {
588     static int slowtimer; /* in BSS so initialized to 0 */
589
590     if (do_bridge) {
591         static int age_index = 0 ; /* index of table position to age */
592         int l = age_index + HASH_SIZE/4 ;
593         int i;
594         /*
595          * age entries in the forwarding table.
596          */
597         if (l > HASH_SIZE)
598             l = HASH_SIZE ;
599
600         for (i=0; i<n_clusters; i++) {
601             bdg_hash_table *bdg_table = clusters[i].ht;
602             for (; age_index < l ; age_index++)
603                 if (bdg_table[age_index].used)
604                     bdg_table[age_index].used = 0 ;
605                 else if (bdg_table[age_index].name) {
606                     /* printf("xx flushing stale entry %d\n", age_index); */
607                     bdg_table[age_index].name = NULL ;
608                 }
609         }
610         if (age_index >= HASH_SIZE)
611             age_index = 0 ;
612
613         if (--slowtimer <= 0 ) {
614             slowtimer = 5 ;
615
616             bridge_on() ; /* we just need unmute, really */
617             bdg_loops = 0 ;
618         }
619     }
620     bdg_timeout_h = timeout(bdg_timeout, NULL, 2*hz );
621 }
622
623 /*
624  * Find the right pkt destination:
625  *      BDG_BCAST       is a broadcast
626  *      BDG_MCAST       is a multicast
627  *      BDG_LOCAL       is for a local address
628  *      BDG_DROP        must be dropped
629  *      other           ifp of the dest. interface (incl.self)
630  *
631  * We assume this is only called for interfaces for which bridging
632  * is enabled, i.e. BDG_USED(ifp) is true.
633  */
634 static __inline
635 struct ifnet *
636 bridge_dst_lookup(struct ether_header *eh, struct cluster_softc *c)
637 {
638     struct ifnet *dst ;
639     int index ;
640     struct bdg_addr *p ;
641     bdg_hash_table *bt;         /* pointer to entry in hash table */
642
643     if (IS_ETHER_BROADCAST(eh->ether_dhost))
644         return BDG_BCAST ;
645     if (eh->ether_dhost[0] & 1)
646         return BDG_MCAST ;
647     /*
648      * Lookup local addresses in case one matches.
649      */
650     for (index = c->ports, p = c->my_macs; index ; index--, p++ )
651         if (BDG_MATCH(p->etheraddr, eh->ether_dhost) )
652             return BDG_LOCAL ;
653     /*
654      * Look for a possible destination in table
655      */
656     index= HASH_FN( eh->ether_dhost );
657     bt = &(c->ht[index]);
658     dst = bt->name;
659     if ( dst && BDG_MATCH( bt->etheraddr, eh->ether_dhost) )
660         return dst ;
661     else
662         return BDG_UNKNOWN ;
663 }
664
665 /**
666  * bridge_in() is invoked to perform bridging decision on input packets.
667  *
668  * On Input:
669  *   eh         Ethernet header of the incoming packet.
670  *   ifp        interface the packet is coming from.
671  *
672  * On Return: destination of packet, one of
673  *   BDG_BCAST  broadcast
674  *   BDG_MCAST  multicast
675  *   BDG_LOCAL  is only for a local address (do not forward)
676  *   BDG_DROP   drop the packet
677  *   ifp        ifp of the destination interface.
678  *
679  * Forwarding is not done directly to give a chance to some drivers
680  * to fetch more of the packet, or simply drop it completely.
681  */
682
683 static struct ifnet *
684 bridge_in(struct ifnet *ifp, struct ether_header *eh)
685 {
686     int index;
687     struct ifnet *dst , *old ;
688     bdg_hash_table *bt;                 /* location in hash table */
689     int dropit = BDG_MUTED(ifp) ;
690
691     /*
692      * hash the source address
693      */
694     index= HASH_FN(eh->ether_shost);
695     bt = &(ifp2sc[ifp->if_index].cluster->ht[index]);
696     bt->used = 1 ;
697     old = bt->name ;
698     if ( old ) { /* the entry is valid. */
699         if (!BDG_MATCH( eh->ether_shost, bt->etheraddr) ) {
700             bdg_ipfw_colls++ ;
701             bt->name = NULL ;
702         } else if (old != ifp) {
703             /*
704              * Found a loop. Either a machine has moved, or there
705              * is a misconfiguration/reconfiguration of the network.
706              * First, do not forward this packet!
707              * Record the relocation anyways; then, if loops persist,
708              * suspect a reconfiguration and disable forwarding
709              * from the old interface.
710              */
711             bt->name = ifp ; /* relocate address */
712             printf("-- loop (%d) %6D to %s from %s (%s)\n",
713                         bdg_loops, eh->ether_shost, ".",
714                         ifp->if_xname, old->if_xname,
715                         BDG_MUTED(old) ? "muted":"active");
716             dropit = 1 ;
717             if ( !BDG_MUTED(old) ) {
718                 if (++bdg_loops > 10)
719                     BDG_MUTE(old) ;
720             }
721         }
722     }
723
724     /*
725      * now write the source address into the table
726      */
727     if (bt->name == NULL) {
728         DEB(printf("new addr %6D at %d for %s\n",
729             eh->ether_shost, ".", index, ifp->if_xname);)
730         bcopy(eh->ether_shost, bt->etheraddr, 6);
731         bt->name = ifp ;
732     }
733     dst = bridge_dst_lookup(eh, ifp2sc[ifp->if_index].cluster);
734     /*
735      * bridge_dst_lookup can return the following values:
736      *   BDG_BCAST, BDG_MCAST, BDG_LOCAL, BDG_UNKNOWN, BDG_DROP, ifp.
737      * For muted interfaces, or when we detect a loop, the first 3 are
738      * changed in BDG_LOCAL (we still listen to incoming traffic),
739      * and others to BDG_DROP (no use for the local host).
740      * Also, for incoming packets, ifp is changed to BDG_DROP if ifp == src.
741      * These changes are not necessary for outgoing packets from ether_output().
742      */
743     BDG_STAT(ifp, BDG_IN);
744     switch ((uintptr_t)dst) {
745     case (uintptr_t)BDG_BCAST:
746     case (uintptr_t)BDG_MCAST:
747     case (uintptr_t)BDG_LOCAL:
748     case (uintptr_t)BDG_UNKNOWN:
749     case (uintptr_t)BDG_DROP:
750         BDG_STAT(ifp, dst);
751         break ;
752     default :
753         if (dst == ifp || dropit)
754             BDG_STAT(ifp, BDG_DROP);
755         else
756             BDG_STAT(ifp, BDG_FORWARD);
757         break ;
758     }
759
760     if ( dropit ) {
761         if (dst == BDG_BCAST || dst == BDG_MCAST || dst == BDG_LOCAL)
762             dst = BDG_LOCAL ;
763         else
764             dst = BDG_DROP ;
765     } else {
766         if (dst == ifp)
767             dst = BDG_DROP;
768     }
769     DEB(printf("bridge_in %6D ->%6D ty 0x%04x dst %s\n",
770         eh->ether_shost, ".",
771         eh->ether_dhost, ".",
772         ntohs(eh->ether_type),
773         (dst <= BDG_FORWARD) ? bdg_dst_names[(int)dst]"0" :
774                 dst->if_xname); )
775
776     return dst ;
777 }
778
779 /*
780  * Forward a packet to dst -- which can be a single interface or
781  * an entire cluster. The src port and muted interfaces are excluded.
782  *
783  * If src == NULL, the pkt comes from ether_output, and dst is the real
784  * interface the packet is originally sent to. In this case, we must forward
785  * it to the whole cluster.
786  * We never call bdg_forward from ether_output on interfaces which are
787  * not part of a cluster.
788  *
789  * If possible (i.e. we can determine that the caller does not need
790  * a copy), the packet is consumed here, and bdg_forward returns NULL.
791  * Otherwise, a pointer to a copy of the packet is returned.
792  *
793  * XXX be careful with eh, it can be a pointer into *m
794  */
795 static struct mbuf *
796 bdg_forward(struct mbuf *m0, struct ether_header *const eh, struct ifnet *dst)
797 {
798     struct ifnet *src;
799     struct ifnet *ifp, *last;
800     int shared = bdg_copy ; /* someone else is using the mbuf */
801     int once = 0;      /* loop only once */
802     struct ifnet *real_dst = dst ; /* real dst from ether_output */
803     struct ip_fw_args args;
804
805     /*
806      * XXX eh is usually a pointer within the mbuf (some ethernet drivers
807      * do that), so we better copy it before doing anything with the mbuf,
808      * or we might corrupt the header.
809      */
810     struct ether_header save_eh = *eh ;
811
812     DEB(quad_t ticks; ticks = rdtsc();)
813
814     args.rule = NULL;           /* did we match a firewall rule ? */
815     /* Fetch state from dummynet tag, ignore others */
816     for (;m0->m_type == MT_TAG; m0 = m0->m_next)
817         if (m0->_m_tag_id == PACKET_TAG_DUMMYNET) {
818             args.rule = ((struct dn_pkt *)m0)->rule;
819             shared = 0;         /* For sure this is our own mbuf. */
820         }
821     if (args.rule == NULL)
822         bdg_thru++; /* first time through bdg_forward, count packet */
823
824     src = m0->m_pkthdr.rcvif;
825     if (src == NULL)                    /* packet from ether_output */
826         dst = bridge_dst_lookup(eh, ifp2sc[real_dst->if_index].cluster);
827
828     if (dst == BDG_DROP) { /* this should not happen */
829         printf("xx bdg_forward for BDG_DROP\n");
830         m_freem(m0);
831         return NULL;
832     }
833     if (dst == BDG_LOCAL) { /* this should not happen as well */
834         printf("xx ouch, bdg_forward for local pkt\n");
835         return m0;
836     }
837     if (dst == BDG_BCAST || dst == BDG_MCAST || dst == BDG_UNKNOWN) {
838         ifp = TAILQ_FIRST(&ifnet) ; /* scan all ports */
839         once = 0 ;
840         if (dst != BDG_UNKNOWN) /* need a copy for the local stack */
841             shared = 1 ;
842     } else {
843         ifp = dst ;
844         once = 1 ;
845     }
846     if ( (uintptr_t)(ifp) <= (u_int)BDG_FORWARD )
847         panic("bdg_forward: bad dst");
848
849     /*
850      * Do filtering in a very similar way to what is done in ip_output.
851      * Only if firewall is loaded, enabled, and the packet is not
852      * from ether_output() (src==NULL, or we would filter it twice).
853      * Additional restrictions may apply e.g. non-IP, short packets,
854      * and pkts already gone through a pipe.
855      */
856     if (src != NULL && (
857         (fr_checkp != NULL && bdg_ipf != 0) ||
858         (IPFW_LOADED && bdg_ipfw != 0))) {
859
860         int i;
861
862         if (args.rule != NULL && fw_one_pass)
863             goto forward; /* packet already partially processed */
864         /*
865          * i need some amt of data to be contiguous, and in case others need
866          * the packet (shared==1) also better be in the first mbuf.
867          */
868         i = min(m0->m_pkthdr.len, max_protohdr) ;
869         if ( shared || m0->m_len < i) {
870             m0 = m_pullup(m0, i) ;
871             if (m0 == NULL) {
872                 printf("-- bdg: pullup failed.\n") ;
873                 return NULL ;
874             }
875         }
876
877         /*
878          * IP Filter hook.
879          */
880         if (fr_checkp != NULL && bdg_ipf &&
881             m0->m_pkthdr.len >= sizeof(struct ip) &&
882             ntohs(save_eh.ether_type) == ETHERTYPE_IP) {
883             /*
884              * before calling the firewall, swap fields the same as IP does.
885              * here we assume the pkt is an IP one and the header is contiguous
886              */
887             struct ip *ip = mtod(m0, struct ip *);
888
889             ip->ip_len = ntohs(ip->ip_len);
890             ip->ip_off = ntohs(ip->ip_off);
891
892             if ((*fr_checkp)(ip, ip->ip_hl << 2, src, 0, &m0) || m0 == NULL)
893                 return m0;
894
895             /*
896              * If we get here, the firewall has passed the pkt, but the mbuf
897              * pointer might have changed. Restore ip and the fields ntohs()'d.
898              */
899             ip = mtod(m0, struct ip *);
900             ip->ip_len = htons(ip->ip_len);
901             ip->ip_off = htons(ip->ip_off);
902         }
903
904         /*
905          * Prepare arguments and call the firewall.
906          */
907         if (!IPFW_LOADED || bdg_ipfw == 0)
908             goto forward;       /* not using ipfw, accept the packet */
909
910         /*
911          * XXX The following code is very similar to the one in
912          * if_ethersubr.c:ether_ipfw_chk()
913          */
914
915         args.m = m0;            /* the packet we are looking at         */
916         args.oif = NULL;        /* this is an input packet              */
917         args.divert_rule = 0;   /* we do not support divert yet         */
918         args.next_hop = NULL;   /* we do not support forward yet        */
919         args.eh = &save_eh;     /* MAC header for bridged/MAC packets   */
920         i = ip_fw_chk_ptr(&args);
921         m0 = args.m;            /* in case the firewall used the mbuf   */
922
923         if ( (i & IP_FW_PORT_DENY_FLAG) || m0 == NULL) /* drop */
924             return m0 ;
925
926         if (i == 0) /* a PASS rule.  */
927             goto forward ;
928         if (DUMMYNET_LOADED && (i & IP_FW_PORT_DYNT_FLAG)) {
929             /*
930              * Pass the pkt to dummynet, which consumes it.
931              * If shared, make a copy and keep the original.
932              */
933             struct mbuf *m ;
934
935             if (shared) {
936                 m = m_copypacket(m0, M_DONTWAIT);
937                 if (m == NULL)  /* copy failed, give up */
938                     return m0;
939             } else {
940                 m = m0 ; /* pass the original to dummynet */
941                 m0 = NULL ; /* and nothing back to the caller */
942             }
943             /*
944              * Prepend the header, optimize for the common case of
945              * eh pointing into the mbuf.
946              */
947             if ( (void *)(eh + 1) == (void *)m->m_data) {
948                 m->m_data -= ETHER_HDR_LEN ;
949                 m->m_len += ETHER_HDR_LEN ;
950                 m->m_pkthdr.len += ETHER_HDR_LEN ;
951                 bdg_predict++;
952             } else {
953                 M_PREPEND(m, ETHER_HDR_LEN, M_DONTWAIT);
954                 if (m == NULL) /* nope... */
955                     return m0 ;
956                 bcopy(&save_eh, mtod(m, struct ether_header *), ETHER_HDR_LEN);
957             }
958
959             args.oif = real_dst;
960             ip_dn_io_ptr(m, (i & 0xffff),DN_TO_BDG_FWD, &args);
961             return m0 ;
962         }
963         /*
964          * XXX at some point, add support for divert/forward actions.
965          * If none of the above matches, we have to drop the packet.
966          */
967         bdg_ipfw_drops++ ;
968         return m0 ;
969     }
970 forward:
971     /*
972      * Again, bring up the headers in case of shared bufs to avoid
973      * corruptions in the future.
974      */
975     if ( shared ) {
976         int i = min(m0->m_pkthdr.len, max_protohdr) ;
977
978         m0 = m_pullup(m0, i) ;
979         if (m0 == NULL)
980             return NULL ;
981     }
982     /*
983      * now real_dst is used to determine the cluster where to forward.
984      * For packets coming from ether_input, this is the one of the 'src'
985      * interface, whereas for locally generated packets (src==NULL) it
986      * is the cluster of the original destination interface, which
987      * was already saved into real_dst.
988      */
989     if (src != NULL)
990         real_dst = src ;
991
992     last = NULL;
993     for (;;) {
994         if (last) { /* need to forward packet leftover from previous loop */
995             struct mbuf *m ;
996             if (shared == 0 && once ) { /* no need to copy */
997                 m = m0 ;
998                 m0 = NULL ; /* original is gone */
999             } else {
1000                 m = m_copypacket(m0, M_DONTWAIT);
1001                 if (m == NULL) {
1002                     printf("bdg_forward: sorry, m_copypacket failed!\n");
1003                     return m0 ; /* the original is still there... */
1004                 }
1005             }
1006             /*
1007              * Add header (optimized for the common case of eh pointing
1008              * already into the mbuf) and execute last part of ether_output:
1009              * queue pkt and start output if interface not yet active.
1010              */
1011             if ( (void *)(eh + 1) == (void *)m->m_data) {
1012                 m->m_data -= ETHER_HDR_LEN ;
1013                 m->m_len += ETHER_HDR_LEN ;
1014                 m->m_pkthdr.len += ETHER_HDR_LEN ;
1015                 bdg_predict++;
1016             } else {
1017                 M_PREPEND(m, ETHER_HDR_LEN, M_DONTWAIT);
1018                 if (!m && verbose)
1019                     printf("M_PREPEND failed\n");
1020                 if (m == NULL)
1021                     return m0;
1022                 bcopy(&save_eh, mtod(m, struct ether_header *), ETHER_HDR_LEN);
1023             }
1024             if (!IF_HANDOFF(&last->if_snd, m, last)) {
1025 #if 0
1026                 BDG_MUTE(last); /* should I also mute ? */
1027 #endif
1028             }
1029             BDG_STAT(last, BDG_OUT);
1030             last = NULL ;
1031             if (once)
1032                 break ;
1033         }
1034         if (ifp == NULL)
1035             break ;
1036         /*
1037          * If the interface is used for bridging, not muted, not full,
1038          * up and running, is not the source interface, and belongs to
1039          * the same cluster as the 'real_dst', then send here.
1040          */
1041         if ( BDG_USED(ifp) && !BDG_MUTED(ifp) && !_IF_QFULL(&ifp->if_snd)  &&
1042              (ifp->if_flags & (IFF_UP|IFF_RUNNING)) == (IFF_UP|IFF_RUNNING) &&
1043              ifp != src && BDG_SAMECLUSTER(ifp, real_dst) )
1044             last = ifp ;
1045         ifp = TAILQ_NEXT(ifp, if_link) ;
1046         if (ifp == NULL)
1047             once = 1 ;
1048     }
1049     DEB(bdg_fw_ticks += (u_long)(rdtsc() - ticks) ; bdg_fw_count++ ;
1050         if (bdg_fw_count != 0) bdg_fw_avg = bdg_fw_ticks/bdg_fw_count; )
1051     return m0 ;
1052 }
1053
1054 /*
1055  * initialization of bridge code.
1056  */
1057 static int
1058 bdginit(void)
1059 {
1060     printf("BRIDGE 020214 loaded\n");
1061
1062     ifp2sc = malloc(BDG_MAX_PORTS * sizeof(struct bdg_softc),
1063                 M_IFADDR, M_WAITOK | M_ZERO );
1064     if (ifp2sc == NULL)
1065         return ENOMEM ;
1066
1067     bridge_in_ptr = bridge_in;
1068     bdg_forward_ptr = bdg_forward;
1069     bdgtakeifaces_ptr = reconfigure_bridge;
1070
1071     n_clusters = 0;
1072     clusters = NULL;
1073     do_bridge=0;
1074
1075     bzero(&bdg_stats, sizeof(bdg_stats) );
1076     bdgtakeifaces_ptr();
1077     bdg_timeout(0);
1078     return 0 ;
1079 }
1080
1081 /*
1082  * initialization code, both for static and dynamic loading.
1083  */
1084 static int
1085 bridge_modevent(module_t mod, int type, void *unused)
1086 {
1087         int s;
1088         int err = 0 ;
1089
1090         switch (type) {
1091         case MOD_LOAD:
1092                 if (BDG_LOADED) {
1093                         err = EEXIST;
1094                         break ;
1095                 }
1096                 s = splimp();
1097                 err = bdginit();
1098                 splx(s);
1099                 break;
1100         case MOD_UNLOAD:
1101 #if !defined(KLD_MODULE)
1102                 printf("bridge statically compiled, cannot unload\n");
1103                 err = EINVAL ;
1104 #else
1105                 s = splimp();
1106                 do_bridge = 0;
1107                 bridge_in_ptr = NULL;
1108                 bdg_forward_ptr = NULL;
1109                 bdgtakeifaces_ptr = NULL;
1110                 untimeout(bdg_timeout, NULL, bdg_timeout_h);
1111                 bridge_off();
1112                 if (clusters)
1113                     free(clusters, M_IFADDR);
1114                 free(ifp2sc, M_IFADDR);
1115                 ifp2sc = NULL ;
1116                 splx(s);
1117 #endif
1118                 break;
1119         default:
1120                 err = EINVAL ;
1121                 break;
1122         }
1123         return err;
1124 }
1125
1126 static moduledata_t bridge_mod = {
1127         "bridge",
1128         bridge_modevent,
1129         0
1130 };
1131
1132 DECLARE_MODULE(bridge, bridge_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
1133 MODULE_VERSION(bridge, 1);