if_bridge.c revision 1.5.4.2 1 1.5.4.2 grant /* $NetBSD: if_bridge.c,v 1.5.4.2 2003/06/30 03:13:39 grant Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright 2001 Wasabi Systems, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 1.1 thorpej *
9 1.1 thorpej * Redistribution and use in source and binary forms, with or without
10 1.1 thorpej * modification, are permitted provided that the following conditions
11 1.1 thorpej * are met:
12 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer.
14 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
16 1.1 thorpej * documentation and/or other materials provided with the distribution.
17 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
18 1.1 thorpej * must display the following acknowledgement:
19 1.1 thorpej * This product includes software developed for the NetBSD Project by
20 1.1 thorpej * Wasabi Systems, Inc.
21 1.1 thorpej * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.1 thorpej * or promote products derived from this software without specific prior
23 1.1 thorpej * written permission.
24 1.1 thorpej *
25 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
36 1.1 thorpej */
37 1.1 thorpej
38 1.1 thorpej /*
39 1.1 thorpej * Copyright (c) 1999, 2000 Jason L. Wright (jason (at) thought.net)
40 1.1 thorpej * All rights reserved.
41 1.1 thorpej *
42 1.1 thorpej * Redistribution and use in source and binary forms, with or without
43 1.1 thorpej * modification, are permitted provided that the following conditions
44 1.1 thorpej * are met:
45 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
46 1.1 thorpej * notice, this list of conditions and the following disclaimer.
47 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
48 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
49 1.1 thorpej * documentation and/or other materials provided with the distribution.
50 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
51 1.1 thorpej * must display the following acknowledgement:
52 1.1 thorpej * This product includes software developed by Jason L. Wright
53 1.1 thorpej * 4. The name of the author may not be used to endorse or promote products
54 1.1 thorpej * derived from this software without specific prior written permission.
55 1.1 thorpej *
56 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
57 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
58 1.1 thorpej * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
59 1.1 thorpej * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
60 1.1 thorpej * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
61 1.1 thorpej * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
62 1.1 thorpej * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
64 1.1 thorpej * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
65 1.1 thorpej * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
66 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
67 1.1 thorpej *
68 1.1 thorpej * OpenBSD: if_bridge.c,v 1.60 2001/06/15 03:38:33 itojun Exp
69 1.1 thorpej */
70 1.1 thorpej
71 1.1 thorpej /*
72 1.1 thorpej * Network interface bridge support.
73 1.1 thorpej *
74 1.1 thorpej * TODO:
75 1.1 thorpej *
76 1.1 thorpej * - Currently only supports Ethernet-like interfaces (Ethernet,
77 1.1 thorpej * 802.11, VLANs on Ethernet, etc.) Figure out a nice way
78 1.1 thorpej * to bridge other types of interfaces (FDDI-FDDI, and maybe
79 1.1 thorpej * consider heterogenous bridges).
80 1.1 thorpej *
81 1.1 thorpej * - Add packet filter hooks.
82 1.1 thorpej */
83 1.3 lukem
84 1.3 lukem #include <sys/cdefs.h>
85 1.5.4.2 grant __KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.5.4.2 2003/06/30 03:13:39 grant Exp $");
86 1.1 thorpej
87 1.1 thorpej #include "bpfilter.h"
88 1.1 thorpej #include "rnd.h"
89 1.1 thorpej
90 1.1 thorpej #include <sys/param.h>
91 1.1 thorpej #include <sys/kernel.h>
92 1.1 thorpej #include <sys/mbuf.h>
93 1.1 thorpej #include <sys/queue.h>
94 1.1 thorpej #include <sys/socket.h>
95 1.1 thorpej #include <sys/sockio.h>
96 1.1 thorpej #include <sys/systm.h>
97 1.1 thorpej #include <sys/proc.h>
98 1.1 thorpej #include <sys/pool.h>
99 1.1 thorpej
100 1.1 thorpej #if NRND > 0
101 1.1 thorpej #include <sys/rnd.h>
102 1.1 thorpej #endif
103 1.1 thorpej
104 1.1 thorpej #if NBPFILTER > 0
105 1.1 thorpej #include <net/bpf.h>
106 1.1 thorpej #endif
107 1.1 thorpej #include <net/if.h>
108 1.1 thorpej #include <net/if_dl.h>
109 1.1 thorpej #include <net/if_types.h>
110 1.1 thorpej #include <net/if_llc.h>
111 1.1 thorpej
112 1.1 thorpej #include <net/if_ether.h>
113 1.1 thorpej #include <net/if_bridgevar.h>
114 1.1 thorpej
115 1.1 thorpej /*
116 1.1 thorpej * Size of the route hash table. Must be a power of two.
117 1.1 thorpej */
118 1.1 thorpej #ifndef BRIDGE_RTHASH_SIZE
119 1.1 thorpej #define BRIDGE_RTHASH_SIZE 1024
120 1.1 thorpej #endif
121 1.1 thorpej
122 1.1 thorpej #define BRIDGE_RTHASH_MASK (BRIDGE_RTHASH_SIZE - 1)
123 1.1 thorpej
124 1.1 thorpej /*
125 1.1 thorpej * Maximum number of addresses to cache.
126 1.1 thorpej */
127 1.1 thorpej #ifndef BRIDGE_RTABLE_MAX
128 1.1 thorpej #define BRIDGE_RTABLE_MAX 100
129 1.1 thorpej #endif
130 1.1 thorpej
131 1.1 thorpej /*
132 1.1 thorpej * Spanning tree defaults.
133 1.1 thorpej */
134 1.1 thorpej #define BSTP_DEFAULT_MAX_AGE (20 * 256)
135 1.1 thorpej #define BSTP_DEFAULT_HELLO_TIME (2 * 256)
136 1.1 thorpej #define BSTP_DEFAULT_FORWARD_DELAY (15 * 256)
137 1.1 thorpej #define BSTP_DEFAULT_HOLD_TIME (1 * 256)
138 1.1 thorpej #define BSTP_DEFAULT_BRIDGE_PRIORITY 0x8000
139 1.1 thorpej #define BSTP_DEFAULT_PORT_PRIORITY 0x80
140 1.1 thorpej #define BSTP_DEFAULT_PATH_COST 55
141 1.1 thorpej
142 1.1 thorpej /*
143 1.1 thorpej * Timeout (in seconds) for entries learned dynamically.
144 1.1 thorpej */
145 1.1 thorpej #ifndef BRIDGE_RTABLE_TIMEOUT
146 1.1 thorpej #define BRIDGE_RTABLE_TIMEOUT (20 * 60) /* same as ARP */
147 1.1 thorpej #endif
148 1.1 thorpej
149 1.1 thorpej /*
150 1.1 thorpej * Number of seconds between walks of the route list.
151 1.1 thorpej */
152 1.1 thorpej #ifndef BRIDGE_RTABLE_PRUNE_PERIOD
153 1.1 thorpej #define BRIDGE_RTABLE_PRUNE_PERIOD (5 * 60)
154 1.1 thorpej #endif
155 1.1 thorpej
156 1.1 thorpej int bridge_rtable_prune_period = BRIDGE_RTABLE_PRUNE_PERIOD;
157 1.1 thorpej
158 1.1 thorpej struct pool bridge_rtnode_pool;
159 1.1 thorpej
160 1.1 thorpej void bridgeattach(int);
161 1.1 thorpej
162 1.1 thorpej int bridge_clone_create(struct if_clone *, int);
163 1.1 thorpej void bridge_clone_destroy(struct ifnet *);
164 1.1 thorpej
165 1.1 thorpej int bridge_ioctl(struct ifnet *, u_long, caddr_t);
166 1.1 thorpej int bridge_init(struct ifnet *);
167 1.1 thorpej void bridge_stop(struct ifnet *, int);
168 1.1 thorpej void bridge_start(struct ifnet *);
169 1.1 thorpej
170 1.1 thorpej void bridge_forward(struct bridge_softc *, struct mbuf *m);
171 1.1 thorpej
172 1.1 thorpej void bridge_timer(void *);
173 1.1 thorpej
174 1.1 thorpej void bridge_broadcast(struct bridge_softc *, struct ifnet *, struct mbuf *);
175 1.1 thorpej
176 1.1 thorpej int bridge_rtupdate(struct bridge_softc *, const uint8_t *,
177 1.1 thorpej struct ifnet *, int, uint8_t);
178 1.1 thorpej struct ifnet *bridge_rtlookup(struct bridge_softc *, const uint8_t *);
179 1.1 thorpej void bridge_rttrim(struct bridge_softc *);
180 1.1 thorpej void bridge_rtage(struct bridge_softc *);
181 1.1 thorpej void bridge_rtflush(struct bridge_softc *, int);
182 1.1 thorpej int bridge_rtdaddr(struct bridge_softc *, const uint8_t *);
183 1.1 thorpej void bridge_rtdelete(struct bridge_softc *, struct ifnet *ifp);
184 1.1 thorpej
185 1.1 thorpej int bridge_rtable_init(struct bridge_softc *);
186 1.1 thorpej void bridge_rtable_fini(struct bridge_softc *);
187 1.1 thorpej
188 1.1 thorpej struct bridge_rtnode *bridge_rtnode_lookup(struct bridge_softc *,
189 1.1 thorpej const uint8_t *);
190 1.1 thorpej int bridge_rtnode_insert(struct bridge_softc *, struct bridge_rtnode *);
191 1.1 thorpej void bridge_rtnode_destroy(struct bridge_softc *, struct bridge_rtnode *);
192 1.1 thorpej
193 1.1 thorpej struct bridge_iflist *bridge_lookup_member(struct bridge_softc *,
194 1.1 thorpej const char *name);
195 1.1 thorpej void bridge_delete_member(struct bridge_softc *, struct bridge_iflist *);
196 1.1 thorpej
197 1.1 thorpej int bridge_ioctl_add(struct bridge_softc *, void *);
198 1.1 thorpej int bridge_ioctl_del(struct bridge_softc *, void *);
199 1.1 thorpej int bridge_ioctl_gifflags(struct bridge_softc *, void *);
200 1.1 thorpej int bridge_ioctl_sifflags(struct bridge_softc *, void *);
201 1.1 thorpej int bridge_ioctl_scache(struct bridge_softc *, void *);
202 1.1 thorpej int bridge_ioctl_gcache(struct bridge_softc *, void *);
203 1.1 thorpej int bridge_ioctl_gifs(struct bridge_softc *, void *);
204 1.1 thorpej int bridge_ioctl_rts(struct bridge_softc *, void *);
205 1.1 thorpej int bridge_ioctl_saddr(struct bridge_softc *, void *);
206 1.1 thorpej int bridge_ioctl_sto(struct bridge_softc *, void *);
207 1.1 thorpej int bridge_ioctl_gto(struct bridge_softc *, void *);
208 1.1 thorpej int bridge_ioctl_daddr(struct bridge_softc *, void *);
209 1.1 thorpej int bridge_ioctl_flush(struct bridge_softc *, void *);
210 1.1 thorpej int bridge_ioctl_gpri(struct bridge_softc *, void *);
211 1.1 thorpej int bridge_ioctl_spri(struct bridge_softc *, void *);
212 1.1 thorpej int bridge_ioctl_ght(struct bridge_softc *, void *);
213 1.1 thorpej int bridge_ioctl_sht(struct bridge_softc *, void *);
214 1.1 thorpej int bridge_ioctl_gfd(struct bridge_softc *, void *);
215 1.1 thorpej int bridge_ioctl_sfd(struct bridge_softc *, void *);
216 1.1 thorpej int bridge_ioctl_gma(struct bridge_softc *, void *);
217 1.1 thorpej int bridge_ioctl_sma(struct bridge_softc *, void *);
218 1.1 thorpej int bridge_ioctl_sifprio(struct bridge_softc *, void *);
219 1.5.4.2 grant int bridge_ioctl_sifcost(struct bridge_softc *, void *);
220 1.1 thorpej
221 1.1 thorpej struct bridge_control {
222 1.1 thorpej int (*bc_func)(struct bridge_softc *, void *);
223 1.1 thorpej int bc_argsize;
224 1.1 thorpej int bc_flags;
225 1.1 thorpej };
226 1.1 thorpej
227 1.1 thorpej #define BC_F_COPYIN 0x01 /* copy arguments in */
228 1.1 thorpej #define BC_F_COPYOUT 0x02 /* copy arguments out */
229 1.1 thorpej #define BC_F_SUSER 0x04 /* do super-user check */
230 1.1 thorpej
231 1.1 thorpej const struct bridge_control bridge_control_table[] = {
232 1.1 thorpej { bridge_ioctl_add, sizeof(struct ifbreq),
233 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
234 1.1 thorpej { bridge_ioctl_del, sizeof(struct ifbreq),
235 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
236 1.1 thorpej
237 1.1 thorpej { bridge_ioctl_gifflags, sizeof(struct ifbreq),
238 1.1 thorpej BC_F_COPYIN|BC_F_COPYOUT },
239 1.1 thorpej { bridge_ioctl_sifflags, sizeof(struct ifbreq),
240 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
241 1.1 thorpej
242 1.1 thorpej { bridge_ioctl_scache, sizeof(struct ifbrparam),
243 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
244 1.1 thorpej { bridge_ioctl_gcache, sizeof(struct ifbrparam),
245 1.1 thorpej BC_F_COPYOUT },
246 1.1 thorpej
247 1.1 thorpej { bridge_ioctl_gifs, sizeof(struct ifbifconf),
248 1.1 thorpej BC_F_COPYIN|BC_F_COPYOUT },
249 1.1 thorpej { bridge_ioctl_rts, sizeof(struct ifbaconf),
250 1.1 thorpej BC_F_COPYIN|BC_F_COPYOUT },
251 1.1 thorpej
252 1.1 thorpej { bridge_ioctl_saddr, sizeof(struct ifbareq),
253 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
254 1.1 thorpej
255 1.1 thorpej { bridge_ioctl_sto, sizeof(struct ifbrparam),
256 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
257 1.1 thorpej { bridge_ioctl_gto, sizeof(struct ifbrparam),
258 1.1 thorpej BC_F_COPYOUT },
259 1.1 thorpej
260 1.1 thorpej { bridge_ioctl_daddr, sizeof(struct ifbareq),
261 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
262 1.1 thorpej
263 1.1 thorpej { bridge_ioctl_flush, sizeof(struct ifbreq),
264 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
265 1.1 thorpej
266 1.1 thorpej { bridge_ioctl_gpri, sizeof(struct ifbrparam),
267 1.1 thorpej BC_F_COPYOUT },
268 1.1 thorpej { bridge_ioctl_spri, sizeof(struct ifbrparam),
269 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
270 1.1 thorpej
271 1.1 thorpej { bridge_ioctl_ght, sizeof(struct ifbrparam),
272 1.1 thorpej BC_F_COPYOUT },
273 1.1 thorpej { bridge_ioctl_sht, sizeof(struct ifbrparam),
274 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
275 1.1 thorpej
276 1.1 thorpej { bridge_ioctl_gfd, sizeof(struct ifbrparam),
277 1.1 thorpej BC_F_COPYOUT },
278 1.1 thorpej { bridge_ioctl_sfd, sizeof(struct ifbrparam),
279 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
280 1.1 thorpej
281 1.1 thorpej { bridge_ioctl_gma, sizeof(struct ifbrparam),
282 1.1 thorpej BC_F_COPYOUT },
283 1.1 thorpej { bridge_ioctl_sma, sizeof(struct ifbrparam),
284 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
285 1.1 thorpej
286 1.1 thorpej { bridge_ioctl_sifprio, sizeof(struct ifbreq),
287 1.1 thorpej BC_F_COPYIN|BC_F_SUSER },
288 1.5.4.2 grant
289 1.5.4.2 grant { bridge_ioctl_sifcost, sizeof(struct ifbreq),
290 1.5.4.2 grant BC_F_COPYIN|BC_F_SUSER },
291 1.1 thorpej };
292 1.1 thorpej const int bridge_control_table_size =
293 1.1 thorpej sizeof(bridge_control_table) / sizeof(bridge_control_table[0]);
294 1.1 thorpej
295 1.1 thorpej LIST_HEAD(, bridge_softc) bridge_list;
296 1.1 thorpej
297 1.1 thorpej struct if_clone bridge_cloner =
298 1.1 thorpej IF_CLONE_INITIALIZER("bridge", bridge_clone_create, bridge_clone_destroy);
299 1.1 thorpej
300 1.1 thorpej /*
301 1.1 thorpej * bridgeattach:
302 1.1 thorpej *
303 1.1 thorpej * Pseudo-device attach routine.
304 1.1 thorpej */
305 1.1 thorpej void
306 1.1 thorpej bridgeattach(int n)
307 1.1 thorpej {
308 1.1 thorpej
309 1.1 thorpej pool_init(&bridge_rtnode_pool, sizeof(struct bridge_rtnode),
310 1.4 thorpej 0, 0, 0, "brtpl", NULL);
311 1.1 thorpej
312 1.1 thorpej LIST_INIT(&bridge_list);
313 1.1 thorpej if_clone_attach(&bridge_cloner);
314 1.1 thorpej }
315 1.1 thorpej
316 1.1 thorpej /*
317 1.1 thorpej * bridge_clone_create:
318 1.1 thorpej *
319 1.1 thorpej * Create a new bridge instance.
320 1.1 thorpej */
321 1.1 thorpej int
322 1.1 thorpej bridge_clone_create(struct if_clone *ifc, int unit)
323 1.1 thorpej {
324 1.1 thorpej struct bridge_softc *sc;
325 1.1 thorpej struct ifnet *ifp;
326 1.1 thorpej int s;
327 1.1 thorpej
328 1.1 thorpej sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK);
329 1.1 thorpej memset(sc, 0, sizeof(*sc));
330 1.1 thorpej ifp = &sc->sc_if;
331 1.1 thorpej
332 1.1 thorpej sc->sc_brtmax = BRIDGE_RTABLE_MAX;
333 1.1 thorpej sc->sc_brttimeout = BRIDGE_RTABLE_TIMEOUT;
334 1.1 thorpej sc->sc_bridge_max_age = BSTP_DEFAULT_MAX_AGE;
335 1.1 thorpej sc->sc_bridge_hello_time = BSTP_DEFAULT_HELLO_TIME;
336 1.1 thorpej sc->sc_bridge_forward_delay = BSTP_DEFAULT_FORWARD_DELAY;
337 1.1 thorpej sc->sc_bridge_priority = BSTP_DEFAULT_BRIDGE_PRIORITY;
338 1.1 thorpej sc->sc_hold_time = BSTP_DEFAULT_HOLD_TIME;
339 1.1 thorpej
340 1.1 thorpej /* Initialize our routing table. */
341 1.1 thorpej bridge_rtable_init(sc);
342 1.1 thorpej
343 1.1 thorpej callout_init(&sc->sc_brcallout);
344 1.1 thorpej callout_init(&sc->sc_bstpcallout);
345 1.1 thorpej
346 1.1 thorpej LIST_INIT(&sc->sc_iflist);
347 1.1 thorpej
348 1.1 thorpej sprintf(ifp->if_xname, "%s%d", ifc->ifc_name, unit);
349 1.1 thorpej ifp->if_softc = sc;
350 1.1 thorpej ifp->if_mtu = ETHERMTU;
351 1.1 thorpej ifp->if_ioctl = bridge_ioctl;
352 1.1 thorpej ifp->if_output = bridge_output;
353 1.1 thorpej ifp->if_start = bridge_start;
354 1.1 thorpej ifp->if_stop = bridge_stop;
355 1.1 thorpej ifp->if_init = bridge_init;
356 1.1 thorpej ifp->if_type = IFT_PROPVIRTUAL; /* XXX IFT_BRIDGE */
357 1.1 thorpej ifp->if_addrlen = 0;
358 1.1 thorpej ifp->if_dlt = DLT_EN10MB;
359 1.1 thorpej ifp->if_hdrlen = ETHER_HDR_LEN;
360 1.1 thorpej
361 1.1 thorpej if_attach(ifp);
362 1.1 thorpej
363 1.1 thorpej if_alloc_sadl(ifp);
364 1.1 thorpej
365 1.1 thorpej s = splnet();
366 1.1 thorpej LIST_INSERT_HEAD(&bridge_list, sc, sc_list);
367 1.1 thorpej splx(s);
368 1.1 thorpej
369 1.1 thorpej return (0);
370 1.1 thorpej }
371 1.1 thorpej
372 1.1 thorpej /*
373 1.1 thorpej * bridge_clone_destroy:
374 1.1 thorpej *
375 1.1 thorpej * Destroy a bridge instance.
376 1.1 thorpej */
377 1.1 thorpej void
378 1.1 thorpej bridge_clone_destroy(struct ifnet *ifp)
379 1.1 thorpej {
380 1.1 thorpej struct bridge_softc *sc = ifp->if_softc;
381 1.1 thorpej struct bridge_iflist *bif;
382 1.1 thorpej int s;
383 1.1 thorpej
384 1.1 thorpej s = splnet();
385 1.1 thorpej
386 1.1 thorpej bridge_stop(ifp, 1);
387 1.1 thorpej
388 1.1 thorpej while ((bif = LIST_FIRST(&sc->sc_iflist)) != NULL)
389 1.1 thorpej bridge_delete_member(sc, bif);
390 1.1 thorpej
391 1.1 thorpej LIST_REMOVE(sc, sc_list);
392 1.1 thorpej
393 1.1 thorpej splx(s);
394 1.1 thorpej
395 1.1 thorpej if_detach(ifp);
396 1.1 thorpej
397 1.1 thorpej /* Tear down the routing table. */
398 1.1 thorpej bridge_rtable_fini(sc);
399 1.1 thorpej
400 1.1 thorpej free(sc, M_DEVBUF);
401 1.1 thorpej }
402 1.1 thorpej
403 1.1 thorpej /*
404 1.1 thorpej * bridge_ioctl:
405 1.1 thorpej *
406 1.1 thorpej * Handle a control request from the operator.
407 1.1 thorpej */
408 1.1 thorpej int
409 1.1 thorpej bridge_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
410 1.1 thorpej {
411 1.1 thorpej struct bridge_softc *sc = ifp->if_softc;
412 1.1 thorpej struct proc *p = curproc; /* XXX */
413 1.1 thorpej union {
414 1.1 thorpej struct ifbreq ifbreq;
415 1.1 thorpej struct ifbifconf ifbifconf;
416 1.1 thorpej struct ifbareq ifbareq;
417 1.1 thorpej struct ifbaconf ifbaconf;
418 1.1 thorpej struct ifbrparam ifbrparam;
419 1.1 thorpej } args;
420 1.1 thorpej struct ifdrv *ifd = (struct ifdrv *) data;
421 1.1 thorpej const struct bridge_control *bc;
422 1.1 thorpej int s, error = 0;
423 1.1 thorpej
424 1.1 thorpej s = splnet();
425 1.1 thorpej
426 1.1 thorpej switch (cmd) {
427 1.1 thorpej case SIOCGDRVSPEC:
428 1.1 thorpej case SIOCSDRVSPEC:
429 1.1 thorpej if (ifd->ifd_cmd >= bridge_control_table_size) {
430 1.1 thorpej error = EINVAL;
431 1.1 thorpej break;
432 1.1 thorpej }
433 1.1 thorpej bc = &bridge_control_table[ifd->ifd_cmd];
434 1.1 thorpej
435 1.1 thorpej if (cmd == SIOCGDRVSPEC &&
436 1.1 thorpej (bc->bc_flags & BC_F_COPYOUT) == 0)
437 1.1 thorpej return (EINVAL);
438 1.1 thorpej else if (cmd == SIOCSDRVSPEC &&
439 1.1 thorpej (bc->bc_flags & BC_F_COPYOUT) != 0)
440 1.1 thorpej return (EINVAL);
441 1.1 thorpej
442 1.1 thorpej if (bc->bc_flags & BC_F_SUSER) {
443 1.1 thorpej error = suser(p->p_ucred, &p->p_acflag);
444 1.1 thorpej if (error)
445 1.1 thorpej break;
446 1.1 thorpej }
447 1.1 thorpej
448 1.1 thorpej if (ifd->ifd_len != bc->bc_argsize ||
449 1.1 thorpej ifd->ifd_len > sizeof(args)) {
450 1.1 thorpej error = EINVAL;
451 1.1 thorpej break;
452 1.1 thorpej }
453 1.1 thorpej
454 1.1 thorpej if (bc->bc_flags & BC_F_COPYIN) {
455 1.1 thorpej error = copyin(ifd->ifd_data, &args, ifd->ifd_len);
456 1.1 thorpej if (error)
457 1.1 thorpej break;
458 1.1 thorpej }
459 1.1 thorpej
460 1.1 thorpej error = (*bc->bc_func)(sc, &args);
461 1.1 thorpej if (error)
462 1.1 thorpej break;
463 1.1 thorpej
464 1.1 thorpej if (bc->bc_flags & BC_F_COPYOUT)
465 1.1 thorpej error = copyout(&args, ifd->ifd_data, ifd->ifd_len);
466 1.1 thorpej
467 1.1 thorpej break;
468 1.1 thorpej
469 1.1 thorpej case SIOCSIFFLAGS:
470 1.1 thorpej if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) == IFF_RUNNING) {
471 1.1 thorpej /*
472 1.1 thorpej * If interface is marked down and it is running,
473 1.1 thorpej * then stop and disable it.
474 1.1 thorpej */
475 1.1 thorpej (*ifp->if_stop)(ifp, 1);
476 1.1 thorpej } else if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) == IFF_UP) {
477 1.1 thorpej /*
478 1.1 thorpej * If interface is marked up and it is stopped, then
479 1.1 thorpej * start it.
480 1.1 thorpej */
481 1.1 thorpej error = (*ifp->if_init)(ifp);
482 1.1 thorpej }
483 1.1 thorpej break;
484 1.1 thorpej
485 1.1 thorpej default:
486 1.1 thorpej error = ENOTTY;
487 1.1 thorpej break;
488 1.1 thorpej }
489 1.1 thorpej
490 1.1 thorpej splx(s);
491 1.1 thorpej
492 1.1 thorpej return (error);
493 1.1 thorpej }
494 1.1 thorpej
495 1.1 thorpej /*
496 1.1 thorpej * bridge_lookup_member:
497 1.1 thorpej *
498 1.1 thorpej * Lookup a bridge member interface. Must be called at splnet().
499 1.1 thorpej */
500 1.1 thorpej struct bridge_iflist *
501 1.1 thorpej bridge_lookup_member(struct bridge_softc *sc, const char *name)
502 1.1 thorpej {
503 1.1 thorpej struct bridge_iflist *bif;
504 1.1 thorpej struct ifnet *ifp;
505 1.1 thorpej
506 1.1 thorpej LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
507 1.1 thorpej ifp = bif->bif_ifp;
508 1.1 thorpej if (strcmp(ifp->if_xname, name) == 0)
509 1.1 thorpej return (bif);
510 1.1 thorpej }
511 1.1 thorpej
512 1.1 thorpej return (NULL);
513 1.1 thorpej }
514 1.1 thorpej
515 1.1 thorpej /*
516 1.1 thorpej * bridge_delete_member:
517 1.1 thorpej *
518 1.1 thorpej * Delete the specified member interface.
519 1.1 thorpej */
520 1.1 thorpej void
521 1.1 thorpej bridge_delete_member(struct bridge_softc *sc, struct bridge_iflist *bif)
522 1.1 thorpej {
523 1.1 thorpej struct ifnet *ifs = bif->bif_ifp;
524 1.1 thorpej
525 1.1 thorpej switch (ifs->if_type) {
526 1.1 thorpej case IFT_ETHER:
527 1.1 thorpej /*
528 1.1 thorpej * Take the interface out of promiscuous mode.
529 1.1 thorpej */
530 1.1 thorpej (void) ifpromisc(ifs, 0);
531 1.1 thorpej break;
532 1.1 thorpej
533 1.1 thorpej default:
534 1.1 thorpej #ifdef DIAGNOSTIC
535 1.1 thorpej panic("bridge_delete_member: impossible");
536 1.1 thorpej #endif
537 1.1 thorpej break;
538 1.1 thorpej }
539 1.1 thorpej
540 1.1 thorpej ifs->if_bridge = NULL;
541 1.1 thorpej LIST_REMOVE(bif, bif_next);
542 1.1 thorpej
543 1.1 thorpej bridge_rtdelete(sc, ifs);
544 1.1 thorpej
545 1.1 thorpej free(bif, M_DEVBUF);
546 1.1 thorpej
547 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
548 1.1 thorpej bstp_initialization(sc);
549 1.1 thorpej }
550 1.1 thorpej
551 1.1 thorpej int
552 1.1 thorpej bridge_ioctl_add(struct bridge_softc *sc, void *arg)
553 1.1 thorpej {
554 1.1 thorpej struct ifbreq *req = arg;
555 1.1 thorpej struct bridge_iflist *bif = NULL;
556 1.1 thorpej struct ifnet *ifs;
557 1.1 thorpej int error = 0;
558 1.1 thorpej
559 1.1 thorpej ifs = ifunit(req->ifbr_ifsname);
560 1.1 thorpej if (ifs == NULL)
561 1.1 thorpej return (ENOENT);
562 1.5.4.1 tv
563 1.5.4.1 tv if (sc->sc_if.if_mtu != ifs->if_mtu)
564 1.5.4.1 tv return (EINVAL);
565 1.1 thorpej
566 1.1 thorpej if (ifs->if_bridge == sc)
567 1.1 thorpej return (EEXIST);
568 1.1 thorpej
569 1.1 thorpej if (ifs->if_bridge != NULL)
570 1.1 thorpej return (EBUSY);
571 1.1 thorpej
572 1.1 thorpej bif = malloc(sizeof(*bif), M_DEVBUF, M_NOWAIT);
573 1.1 thorpej if (bif == NULL)
574 1.1 thorpej return (ENOMEM);
575 1.1 thorpej
576 1.1 thorpej switch (ifs->if_type) {
577 1.1 thorpej case IFT_ETHER:
578 1.1 thorpej /*
579 1.1 thorpej * Place the interface into promiscuous mode.
580 1.1 thorpej */
581 1.1 thorpej error = ifpromisc(ifs, 1);
582 1.1 thorpej if (error)
583 1.1 thorpej goto out;
584 1.1 thorpej break;
585 1.1 thorpej
586 1.1 thorpej default:
587 1.5 jdolecek error = EINVAL;
588 1.5 jdolecek goto out;
589 1.1 thorpej }
590 1.1 thorpej
591 1.1 thorpej bif->bif_ifp = ifs;
592 1.1 thorpej bif->bif_flags = IFBIF_LEARNING | IFBIF_DISCOVER;
593 1.1 thorpej bif->bif_priority = BSTP_DEFAULT_PORT_PRIORITY;
594 1.1 thorpej bif->bif_path_cost = BSTP_DEFAULT_PATH_COST;
595 1.1 thorpej
596 1.1 thorpej ifs->if_bridge = sc;
597 1.1 thorpej LIST_INSERT_HEAD(&sc->sc_iflist, bif, bif_next);
598 1.1 thorpej
599 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
600 1.1 thorpej bstp_initialization(sc);
601 1.1 thorpej else
602 1.1 thorpej bstp_stop(sc);
603 1.1 thorpej
604 1.1 thorpej out:
605 1.1 thorpej if (error) {
606 1.1 thorpej if (bif != NULL)
607 1.1 thorpej free(bif, M_DEVBUF);
608 1.1 thorpej }
609 1.1 thorpej return (error);
610 1.1 thorpej }
611 1.1 thorpej
612 1.1 thorpej int
613 1.1 thorpej bridge_ioctl_del(struct bridge_softc *sc, void *arg)
614 1.1 thorpej {
615 1.1 thorpej struct ifbreq *req = arg;
616 1.1 thorpej struct bridge_iflist *bif;
617 1.1 thorpej
618 1.1 thorpej bif = bridge_lookup_member(sc, req->ifbr_ifsname);
619 1.1 thorpej if (bif == NULL)
620 1.1 thorpej return (ENOENT);
621 1.1 thorpej
622 1.1 thorpej bridge_delete_member(sc, bif);
623 1.1 thorpej
624 1.1 thorpej return (0);
625 1.1 thorpej }
626 1.1 thorpej
627 1.1 thorpej int
628 1.1 thorpej bridge_ioctl_gifflags(struct bridge_softc *sc, void *arg)
629 1.1 thorpej {
630 1.1 thorpej struct ifbreq *req = arg;
631 1.1 thorpej struct bridge_iflist *bif;
632 1.1 thorpej
633 1.1 thorpej bif = bridge_lookup_member(sc, req->ifbr_ifsname);
634 1.1 thorpej if (bif == NULL)
635 1.1 thorpej return (ENOENT);
636 1.1 thorpej
637 1.1 thorpej req->ifbr_ifsflags = bif->bif_flags;
638 1.1 thorpej req->ifbr_state = bif->bif_state;
639 1.1 thorpej req->ifbr_priority = bif->bif_priority;
640 1.5.4.2 grant req->ifbr_path_cost = bif->bif_path_cost;
641 1.1 thorpej req->ifbr_portno = bif->bif_ifp->if_index & 0xff;
642 1.1 thorpej
643 1.1 thorpej return (0);
644 1.1 thorpej }
645 1.1 thorpej
646 1.1 thorpej int
647 1.1 thorpej bridge_ioctl_sifflags(struct bridge_softc *sc, void *arg)
648 1.1 thorpej {
649 1.1 thorpej struct ifbreq *req = arg;
650 1.1 thorpej struct bridge_iflist *bif;
651 1.1 thorpej
652 1.1 thorpej bif = bridge_lookup_member(sc, req->ifbr_ifsname);
653 1.1 thorpej if (bif == NULL)
654 1.1 thorpej return (ENOENT);
655 1.1 thorpej
656 1.1 thorpej if (req->ifbr_ifsflags & IFBIF_STP) {
657 1.1 thorpej switch (bif->bif_ifp->if_type) {
658 1.1 thorpej case IFT_ETHER:
659 1.1 thorpej /* These can do spanning tree. */
660 1.1 thorpej break;
661 1.1 thorpej
662 1.1 thorpej default:
663 1.1 thorpej /* Nothing else can. */
664 1.1 thorpej return (EINVAL);
665 1.1 thorpej }
666 1.1 thorpej }
667 1.1 thorpej
668 1.1 thorpej bif->bif_flags = req->ifbr_ifsflags;
669 1.1 thorpej
670 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
671 1.1 thorpej bstp_initialization(sc);
672 1.1 thorpej
673 1.1 thorpej return (0);
674 1.1 thorpej }
675 1.1 thorpej
676 1.1 thorpej int
677 1.1 thorpej bridge_ioctl_scache(struct bridge_softc *sc, void *arg)
678 1.1 thorpej {
679 1.1 thorpej struct ifbrparam *param = arg;
680 1.1 thorpej
681 1.1 thorpej sc->sc_brtmax = param->ifbrp_csize;
682 1.1 thorpej bridge_rttrim(sc);
683 1.1 thorpej
684 1.1 thorpej return (0);
685 1.1 thorpej }
686 1.1 thorpej
687 1.1 thorpej int
688 1.1 thorpej bridge_ioctl_gcache(struct bridge_softc *sc, void *arg)
689 1.1 thorpej {
690 1.1 thorpej struct ifbrparam *param = arg;
691 1.1 thorpej
692 1.1 thorpej param->ifbrp_csize = sc->sc_brtmax;
693 1.1 thorpej
694 1.1 thorpej return (0);
695 1.1 thorpej }
696 1.1 thorpej
697 1.1 thorpej int
698 1.1 thorpej bridge_ioctl_gifs(struct bridge_softc *sc, void *arg)
699 1.1 thorpej {
700 1.1 thorpej struct ifbifconf *bifc = arg;
701 1.1 thorpej struct bridge_iflist *bif;
702 1.1 thorpej struct ifbreq breq;
703 1.1 thorpej int count, len, error = 0;
704 1.1 thorpej
705 1.1 thorpej count = 0;
706 1.1 thorpej LIST_FOREACH(bif, &sc->sc_iflist, bif_next)
707 1.1 thorpej count++;
708 1.1 thorpej
709 1.1 thorpej if (bifc->ifbic_len == 0) {
710 1.1 thorpej bifc->ifbic_len = sizeof(breq) * count;
711 1.1 thorpej return (0);
712 1.1 thorpej }
713 1.1 thorpej
714 1.1 thorpej count = 0;
715 1.1 thorpej len = bifc->ifbic_len;
716 1.1 thorpej LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
717 1.1 thorpej if (len < sizeof(breq))
718 1.1 thorpej break;
719 1.1 thorpej
720 1.1 thorpej strcpy(breq.ifbr_ifsname, bif->bif_ifp->if_xname);
721 1.1 thorpej breq.ifbr_ifsflags = bif->bif_flags;
722 1.1 thorpej breq.ifbr_state = bif->bif_state;
723 1.1 thorpej breq.ifbr_priority = bif->bif_priority;
724 1.5.4.2 grant breq.ifbr_path_cost = bif->bif_path_cost;
725 1.1 thorpej breq.ifbr_portno = bif->bif_ifp->if_index & 0xff;
726 1.1 thorpej error = copyout(&breq, bifc->ifbic_req + count, sizeof(breq));
727 1.1 thorpej if (error)
728 1.1 thorpej break;
729 1.1 thorpej count++;
730 1.1 thorpej len -= sizeof(breq);
731 1.1 thorpej }
732 1.1 thorpej
733 1.1 thorpej bifc->ifbic_len = sizeof(breq) * count;
734 1.1 thorpej return (error);
735 1.1 thorpej }
736 1.1 thorpej
737 1.1 thorpej int
738 1.1 thorpej bridge_ioctl_rts(struct bridge_softc *sc, void *arg)
739 1.1 thorpej {
740 1.1 thorpej struct ifbaconf *bac = arg;
741 1.1 thorpej struct bridge_rtnode *brt;
742 1.1 thorpej struct ifbareq bareq;
743 1.1 thorpej int count = 0, error = 0, len;
744 1.1 thorpej
745 1.1 thorpej if (bac->ifbac_len == 0)
746 1.1 thorpej return (0);
747 1.1 thorpej
748 1.1 thorpej len = bac->ifbac_len;
749 1.1 thorpej LIST_FOREACH(brt, &sc->sc_rtlist, brt_list) {
750 1.1 thorpej if (len < sizeof(bareq))
751 1.1 thorpej goto out;
752 1.1 thorpej strcpy(bareq.ifba_ifsname, brt->brt_ifp->if_xname);
753 1.1 thorpej memcpy(bareq.ifba_dst, brt->brt_addr, sizeof(brt->brt_addr));
754 1.2 thorpej if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC)
755 1.2 thorpej bareq.ifba_expire = brt->brt_expire - mono_time.tv_sec;
756 1.2 thorpej else
757 1.2 thorpej bareq.ifba_expire = 0;
758 1.1 thorpej bareq.ifba_flags = brt->brt_flags;
759 1.1 thorpej
760 1.1 thorpej error = copyout(&bareq, bac->ifbac_req + count, sizeof(bareq));
761 1.1 thorpej if (error)
762 1.1 thorpej goto out;
763 1.1 thorpej count++;
764 1.1 thorpej len -= sizeof(bareq);
765 1.1 thorpej }
766 1.1 thorpej out:
767 1.1 thorpej bac->ifbac_len = sizeof(bareq) * count;
768 1.1 thorpej return (error);
769 1.1 thorpej }
770 1.1 thorpej
771 1.1 thorpej int
772 1.1 thorpej bridge_ioctl_saddr(struct bridge_softc *sc, void *arg)
773 1.1 thorpej {
774 1.1 thorpej struct ifbareq *req = arg;
775 1.1 thorpej struct bridge_iflist *bif;
776 1.1 thorpej int error;
777 1.1 thorpej
778 1.1 thorpej bif = bridge_lookup_member(sc, req->ifba_ifsname);
779 1.1 thorpej if (bif == NULL)
780 1.1 thorpej return (ENOENT);
781 1.1 thorpej
782 1.1 thorpej error = bridge_rtupdate(sc, req->ifba_dst, bif->bif_ifp, 1,
783 1.1 thorpej req->ifba_flags);
784 1.1 thorpej
785 1.1 thorpej return (error);
786 1.1 thorpej }
787 1.1 thorpej
788 1.1 thorpej int
789 1.1 thorpej bridge_ioctl_sto(struct bridge_softc *sc, void *arg)
790 1.1 thorpej {
791 1.1 thorpej struct ifbrparam *param = arg;
792 1.1 thorpej
793 1.1 thorpej sc->sc_brttimeout = param->ifbrp_ctime;
794 1.1 thorpej
795 1.1 thorpej return (0);
796 1.1 thorpej }
797 1.1 thorpej
798 1.1 thorpej int
799 1.1 thorpej bridge_ioctl_gto(struct bridge_softc *sc, void *arg)
800 1.1 thorpej {
801 1.1 thorpej struct ifbrparam *param = arg;
802 1.1 thorpej
803 1.1 thorpej param->ifbrp_ctime = sc->sc_brttimeout;
804 1.1 thorpej
805 1.1 thorpej return (0);
806 1.1 thorpej }
807 1.1 thorpej
808 1.1 thorpej int
809 1.1 thorpej bridge_ioctl_daddr(struct bridge_softc *sc, void *arg)
810 1.1 thorpej {
811 1.1 thorpej struct ifbareq *req = arg;
812 1.1 thorpej
813 1.1 thorpej return (bridge_rtdaddr(sc, req->ifba_dst));
814 1.1 thorpej }
815 1.1 thorpej
816 1.1 thorpej int
817 1.1 thorpej bridge_ioctl_flush(struct bridge_softc *sc, void *arg)
818 1.1 thorpej {
819 1.1 thorpej struct ifbreq *req = arg;
820 1.1 thorpej
821 1.1 thorpej bridge_rtflush(sc, req->ifbr_ifsflags);
822 1.1 thorpej
823 1.1 thorpej return (0);
824 1.1 thorpej }
825 1.1 thorpej
826 1.1 thorpej int
827 1.1 thorpej bridge_ioctl_gpri(struct bridge_softc *sc, void *arg)
828 1.1 thorpej {
829 1.1 thorpej struct ifbrparam *param = arg;
830 1.1 thorpej
831 1.1 thorpej param->ifbrp_prio = sc->sc_bridge_priority;
832 1.1 thorpej
833 1.1 thorpej return (0);
834 1.1 thorpej }
835 1.1 thorpej
836 1.1 thorpej int
837 1.1 thorpej bridge_ioctl_spri(struct bridge_softc *sc, void *arg)
838 1.1 thorpej {
839 1.1 thorpej struct ifbrparam *param = arg;
840 1.1 thorpej
841 1.1 thorpej sc->sc_bridge_priority = param->ifbrp_prio;
842 1.1 thorpej
843 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
844 1.1 thorpej bstp_initialization(sc);
845 1.1 thorpej
846 1.1 thorpej return (0);
847 1.1 thorpej }
848 1.1 thorpej
849 1.1 thorpej int
850 1.1 thorpej bridge_ioctl_ght(struct bridge_softc *sc, void *arg)
851 1.1 thorpej {
852 1.1 thorpej struct ifbrparam *param = arg;
853 1.1 thorpej
854 1.1 thorpej param->ifbrp_hellotime = sc->sc_bridge_hello_time >> 8;
855 1.1 thorpej
856 1.1 thorpej return (0);
857 1.1 thorpej }
858 1.1 thorpej
859 1.1 thorpej int
860 1.1 thorpej bridge_ioctl_sht(struct bridge_softc *sc, void *arg)
861 1.1 thorpej {
862 1.1 thorpej struct ifbrparam *param = arg;
863 1.1 thorpej
864 1.1 thorpej if (param->ifbrp_hellotime == 0)
865 1.1 thorpej return (EINVAL);
866 1.1 thorpej sc->sc_bridge_hello_time = param->ifbrp_hellotime << 8;
867 1.1 thorpej
868 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
869 1.1 thorpej bstp_initialization(sc);
870 1.1 thorpej
871 1.1 thorpej return (0);
872 1.1 thorpej }
873 1.1 thorpej
874 1.1 thorpej int
875 1.1 thorpej bridge_ioctl_gfd(struct bridge_softc *sc, void *arg)
876 1.1 thorpej {
877 1.1 thorpej struct ifbrparam *param = arg;
878 1.1 thorpej
879 1.1 thorpej param->ifbrp_fwddelay = sc->sc_bridge_forward_delay >> 8;
880 1.1 thorpej
881 1.1 thorpej return (0);
882 1.1 thorpej }
883 1.1 thorpej
884 1.1 thorpej int
885 1.1 thorpej bridge_ioctl_sfd(struct bridge_softc *sc, void *arg)
886 1.1 thorpej {
887 1.1 thorpej struct ifbrparam *param = arg;
888 1.1 thorpej
889 1.1 thorpej if (param->ifbrp_fwddelay == 0)
890 1.1 thorpej return (EINVAL);
891 1.1 thorpej sc->sc_bridge_forward_delay = param->ifbrp_fwddelay << 8;
892 1.1 thorpej
893 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
894 1.1 thorpej bstp_initialization(sc);
895 1.1 thorpej
896 1.1 thorpej return (0);
897 1.1 thorpej }
898 1.1 thorpej
899 1.1 thorpej int
900 1.1 thorpej bridge_ioctl_gma(struct bridge_softc *sc, void *arg)
901 1.1 thorpej {
902 1.1 thorpej struct ifbrparam *param = arg;
903 1.1 thorpej
904 1.1 thorpej param->ifbrp_maxage = sc->sc_bridge_max_age >> 8;
905 1.1 thorpej
906 1.1 thorpej return (0);
907 1.1 thorpej }
908 1.1 thorpej
909 1.1 thorpej int
910 1.1 thorpej bridge_ioctl_sma(struct bridge_softc *sc, void *arg)
911 1.1 thorpej {
912 1.1 thorpej struct ifbrparam *param = arg;
913 1.1 thorpej
914 1.1 thorpej if (param->ifbrp_maxage == 0)
915 1.1 thorpej return (EINVAL);
916 1.1 thorpej sc->sc_bridge_max_age = param->ifbrp_maxage << 8;
917 1.1 thorpej
918 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
919 1.1 thorpej bstp_initialization(sc);
920 1.1 thorpej
921 1.1 thorpej return (0);
922 1.1 thorpej }
923 1.1 thorpej
924 1.1 thorpej int
925 1.1 thorpej bridge_ioctl_sifprio(struct bridge_softc *sc, void *arg)
926 1.1 thorpej {
927 1.1 thorpej struct ifbreq *req = arg;
928 1.1 thorpej struct bridge_iflist *bif;
929 1.1 thorpej
930 1.1 thorpej bif = bridge_lookup_member(sc, req->ifbr_ifsname);
931 1.1 thorpej if (bif == NULL)
932 1.1 thorpej return (ENOENT);
933 1.1 thorpej
934 1.1 thorpej bif->bif_priority = req->ifbr_priority;
935 1.1 thorpej
936 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
937 1.1 thorpej bstp_initialization(sc);
938 1.1 thorpej
939 1.1 thorpej return (0);
940 1.1 thorpej }
941 1.1 thorpej
942 1.5.4.2 grant int
943 1.5.4.2 grant bridge_ioctl_sifcost(struct bridge_softc *sc, void *arg)
944 1.5.4.2 grant {
945 1.5.4.2 grant struct ifbreq *req = arg;
946 1.5.4.2 grant struct bridge_iflist *bif;
947 1.5.4.2 grant
948 1.5.4.2 grant bif = bridge_lookup_member(sc, req->ifbr_ifsname);
949 1.5.4.2 grant if (bif == NULL)
950 1.5.4.2 grant return (ENOENT);
951 1.5.4.2 grant
952 1.5.4.2 grant bif->bif_path_cost = req->ifbr_path_cost;
953 1.5.4.2 grant
954 1.5.4.2 grant if (sc->sc_if.if_flags & IFF_RUNNING)
955 1.5.4.2 grant bstp_initialization(sc);
956 1.5.4.2 grant
957 1.5.4.2 grant return (0);
958 1.5.4.2 grant }
959 1.5.4.2 grant
960 1.1 thorpej /*
961 1.1 thorpej * bridge_ifdetach:
962 1.1 thorpej *
963 1.1 thorpej * Detach an interface from a bridge. Called when a member
964 1.1 thorpej * interface is detaching.
965 1.1 thorpej */
966 1.1 thorpej void
967 1.1 thorpej bridge_ifdetach(struct ifnet *ifp)
968 1.1 thorpej {
969 1.1 thorpej struct bridge_softc *sc = ifp->if_bridge;
970 1.1 thorpej struct ifbreq breq;
971 1.1 thorpej
972 1.1 thorpej memset(&breq, 0, sizeof(breq));
973 1.1 thorpej sprintf(breq.ifbr_ifsname, ifp->if_xname);
974 1.1 thorpej
975 1.1 thorpej (void) bridge_ioctl_del(sc, &breq);
976 1.1 thorpej }
977 1.1 thorpej
978 1.1 thorpej /*
979 1.1 thorpej * bridge_init:
980 1.1 thorpej *
981 1.1 thorpej * Initialize a bridge interface.
982 1.1 thorpej */
983 1.1 thorpej int
984 1.1 thorpej bridge_init(struct ifnet *ifp)
985 1.1 thorpej {
986 1.1 thorpej struct bridge_softc *sc = ifp->if_softc;
987 1.1 thorpej
988 1.1 thorpej if (ifp->if_flags & IFF_RUNNING)
989 1.1 thorpej return (0);
990 1.1 thorpej
991 1.1 thorpej callout_reset(&sc->sc_brcallout, bridge_rtable_prune_period * hz,
992 1.1 thorpej bridge_timer, sc);
993 1.1 thorpej
994 1.1 thorpej ifp->if_flags |= IFF_RUNNING;
995 1.5.4.2 grant bstp_initialization(sc);
996 1.1 thorpej return (0);
997 1.1 thorpej }
998 1.1 thorpej
999 1.1 thorpej /*
1000 1.1 thorpej * bridge_stop:
1001 1.1 thorpej *
1002 1.1 thorpej * Stop the bridge interface.
1003 1.1 thorpej */
1004 1.1 thorpej void
1005 1.1 thorpej bridge_stop(struct ifnet *ifp, int disable)
1006 1.1 thorpej {
1007 1.1 thorpej struct bridge_softc *sc = ifp->if_softc;
1008 1.1 thorpej
1009 1.1 thorpej if ((ifp->if_flags & IFF_RUNNING) == 0)
1010 1.1 thorpej return;
1011 1.1 thorpej
1012 1.1 thorpej callout_stop(&sc->sc_brcallout);
1013 1.1 thorpej bstp_stop(sc);
1014 1.1 thorpej
1015 1.1 thorpej IF_PURGE(&ifp->if_snd);
1016 1.1 thorpej
1017 1.1 thorpej bridge_rtflush(sc, IFBF_FLUSHDYN);
1018 1.1 thorpej
1019 1.1 thorpej ifp->if_flags &= ~IFF_RUNNING;
1020 1.1 thorpej }
1021 1.1 thorpej
1022 1.1 thorpej /*
1023 1.1 thorpej * bridge_enqueue:
1024 1.1 thorpej *
1025 1.1 thorpej * Enqueue a packet on a bridge member interface.
1026 1.1 thorpej *
1027 1.1 thorpej * NOTE: must be called at splnet().
1028 1.1 thorpej */
1029 1.1 thorpej __inline void
1030 1.1 thorpej bridge_enqueue(struct bridge_softc *sc, struct ifnet *dst_ifp, struct mbuf *m)
1031 1.1 thorpej {
1032 1.1 thorpej ALTQ_DECL(struct altq_pktattr pktattr;)
1033 1.1 thorpej int len, error;
1034 1.1 thorpej short mflags;
1035 1.1 thorpej
1036 1.1 thorpej #ifdef ALTQ
1037 1.1 thorpej /*
1038 1.1 thorpej * If ALTQ is enabled on the member interface, do
1039 1.1 thorpej * classification; the queueing discipline might
1040 1.1 thorpej * not require classification, but might require
1041 1.1 thorpej * the address family/header pointer in the pktattr.
1042 1.1 thorpej */
1043 1.1 thorpej if (ALTQ_IS_ENABLED(&dst_ifp->if_snd)) {
1044 1.1 thorpej /* XXX IFT_ETHER */
1045 1.1 thorpej altq_etherclassify(&dst_ifp->if_snd, m, &pktattr);
1046 1.1 thorpej }
1047 1.1 thorpej #endif /* ALTQ */
1048 1.1 thorpej
1049 1.1 thorpej len = m->m_pkthdr.len;
1050 1.1 thorpej mflags = m->m_flags;
1051 1.1 thorpej IFQ_ENQUEUE(&dst_ifp->if_snd, m, &pktattr, error);
1052 1.1 thorpej if (error) {
1053 1.1 thorpej /* mbuf is already freed */
1054 1.1 thorpej sc->sc_if.if_oerrors++;
1055 1.1 thorpej return;
1056 1.1 thorpej }
1057 1.1 thorpej
1058 1.1 thorpej sc->sc_if.if_opackets++;
1059 1.1 thorpej sc->sc_if.if_obytes += len;
1060 1.1 thorpej
1061 1.1 thorpej dst_ifp->if_obytes += len;
1062 1.1 thorpej
1063 1.1 thorpej if (mflags & M_MCAST) {
1064 1.1 thorpej sc->sc_if.if_omcasts++;
1065 1.1 thorpej dst_ifp->if_omcasts++;
1066 1.1 thorpej }
1067 1.1 thorpej
1068 1.1 thorpej if ((dst_ifp->if_flags & IFF_OACTIVE) == 0)
1069 1.1 thorpej (*dst_ifp->if_start)(dst_ifp);
1070 1.1 thorpej }
1071 1.1 thorpej
1072 1.1 thorpej /*
1073 1.1 thorpej * bridge_output:
1074 1.1 thorpej *
1075 1.1 thorpej * Send output from a bridge member interface. This
1076 1.1 thorpej * performs the bridging function for locally originated
1077 1.1 thorpej * packets.
1078 1.1 thorpej *
1079 1.1 thorpej * The mbuf has the Ethernet header already attached. We must
1080 1.1 thorpej * enqueue or free the mbuf before returning.
1081 1.1 thorpej */
1082 1.1 thorpej int
1083 1.1 thorpej bridge_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *sa,
1084 1.1 thorpej struct rtentry *rt)
1085 1.1 thorpej {
1086 1.1 thorpej struct ether_header *eh;
1087 1.1 thorpej struct ifnet *dst_if;
1088 1.1 thorpej struct bridge_softc *sc;
1089 1.1 thorpej int s;
1090 1.1 thorpej
1091 1.1 thorpej if (m->m_len < ETHER_HDR_LEN) {
1092 1.1 thorpej m = m_pullup(m, ETHER_HDR_LEN);
1093 1.1 thorpej if (m == NULL)
1094 1.1 thorpej return (0);
1095 1.1 thorpej }
1096 1.1 thorpej
1097 1.1 thorpej eh = mtod(m, struct ether_header *);
1098 1.1 thorpej sc = ifp->if_bridge;
1099 1.1 thorpej
1100 1.1 thorpej s = splnet();
1101 1.1 thorpej
1102 1.1 thorpej /*
1103 1.1 thorpej * If bridge is down, but the original output interface is up,
1104 1.1 thorpej * go ahead and send out that interface. Otherwise, the packet
1105 1.1 thorpej * is dropped below.
1106 1.1 thorpej */
1107 1.1 thorpej if ((sc->sc_if.if_flags & IFF_RUNNING) == 0) {
1108 1.1 thorpej dst_if = ifp;
1109 1.1 thorpej goto sendunicast;
1110 1.1 thorpej }
1111 1.1 thorpej
1112 1.1 thorpej /*
1113 1.1 thorpej * If the packet is a multicast, or we don't know a better way to
1114 1.1 thorpej * get there, send to all interfaces.
1115 1.1 thorpej */
1116 1.1 thorpej if (ETHER_IS_MULTICAST(eh->ether_dhost))
1117 1.1 thorpej dst_if = NULL;
1118 1.1 thorpej else
1119 1.1 thorpej dst_if = bridge_rtlookup(sc, eh->ether_dhost);
1120 1.1 thorpej if (dst_if == NULL) {
1121 1.1 thorpej struct bridge_iflist *bif;
1122 1.1 thorpej struct mbuf *mc;
1123 1.1 thorpej int used = 0;
1124 1.1 thorpej
1125 1.1 thorpej LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
1126 1.1 thorpej dst_if = bif->bif_ifp;
1127 1.1 thorpej if ((dst_if->if_flags & IFF_RUNNING) == 0)
1128 1.1 thorpej continue;
1129 1.1 thorpej
1130 1.1 thorpej /*
1131 1.1 thorpej * If this is not the original output interface,
1132 1.1 thorpej * and the interface is participating in spanning
1133 1.1 thorpej * tree, make sure the port is in a state that
1134 1.1 thorpej * allows forwarding.
1135 1.1 thorpej */
1136 1.1 thorpej if (dst_if != ifp &&
1137 1.1 thorpej (bif->bif_flags & IFBIF_STP) != 0) {
1138 1.1 thorpej switch (bif->bif_state) {
1139 1.1 thorpej case BSTP_IFSTATE_BLOCKING:
1140 1.1 thorpej case BSTP_IFSTATE_LISTENING:
1141 1.1 thorpej case BSTP_IFSTATE_DISABLED:
1142 1.1 thorpej continue;
1143 1.1 thorpej }
1144 1.1 thorpej }
1145 1.1 thorpej
1146 1.1 thorpej if (LIST_NEXT(bif, bif_next) == NULL) {
1147 1.1 thorpej used = 1;
1148 1.1 thorpej mc = m;
1149 1.1 thorpej } else {
1150 1.1 thorpej mc = m_copym(m, 0, M_COPYALL, M_NOWAIT);
1151 1.1 thorpej if (mc == NULL) {
1152 1.1 thorpej sc->sc_if.if_oerrors++;
1153 1.1 thorpej continue;
1154 1.1 thorpej }
1155 1.1 thorpej }
1156 1.1 thorpej
1157 1.1 thorpej bridge_enqueue(sc, dst_if, mc);
1158 1.1 thorpej }
1159 1.1 thorpej if (used == 0)
1160 1.1 thorpej m_freem(m);
1161 1.1 thorpej splx(s);
1162 1.1 thorpej return (0);
1163 1.1 thorpej }
1164 1.1 thorpej
1165 1.1 thorpej sendunicast:
1166 1.1 thorpej /*
1167 1.1 thorpej * XXX Spanning tree consideration here?
1168 1.1 thorpej */
1169 1.1 thorpej
1170 1.1 thorpej if ((dst_if->if_flags & IFF_RUNNING) == 0) {
1171 1.1 thorpej m_freem(m);
1172 1.1 thorpej splx(s);
1173 1.1 thorpej return (0);
1174 1.1 thorpej }
1175 1.1 thorpej
1176 1.1 thorpej bridge_enqueue(sc, dst_if, m);
1177 1.1 thorpej
1178 1.1 thorpej splx(s);
1179 1.1 thorpej return (0);
1180 1.1 thorpej }
1181 1.1 thorpej
1182 1.1 thorpej /*
1183 1.1 thorpej * bridge_start:
1184 1.1 thorpej *
1185 1.1 thorpej * Start output on a bridge.
1186 1.1 thorpej *
1187 1.1 thorpej * NOTE: This routine should never be called in this implementation.
1188 1.1 thorpej */
1189 1.1 thorpej void
1190 1.1 thorpej bridge_start(struct ifnet *ifp)
1191 1.1 thorpej {
1192 1.1 thorpej
1193 1.1 thorpej printf("%s: bridge_start() called\n", ifp->if_xname);
1194 1.1 thorpej }
1195 1.1 thorpej
1196 1.1 thorpej /*
1197 1.1 thorpej * bridge_forward:
1198 1.1 thorpej *
1199 1.1 thorpej * The fowarding function of the bridge.
1200 1.1 thorpej */
1201 1.1 thorpej void
1202 1.1 thorpej bridge_forward(struct bridge_softc *sc, struct mbuf *m)
1203 1.1 thorpej {
1204 1.1 thorpej struct bridge_iflist *bif;
1205 1.1 thorpej struct ifnet *src_if, *dst_if;
1206 1.1 thorpej struct ether_header *eh;
1207 1.1 thorpej
1208 1.1 thorpej src_if = m->m_pkthdr.rcvif;
1209 1.1 thorpej
1210 1.1 thorpej sc->sc_if.if_ipackets++;
1211 1.1 thorpej sc->sc_if.if_ibytes += m->m_pkthdr.len;
1212 1.1 thorpej
1213 1.1 thorpej /*
1214 1.1 thorpej * Look up the bridge_iflist.
1215 1.1 thorpej * XXX This should be more efficient.
1216 1.1 thorpej */
1217 1.1 thorpej bif = bridge_lookup_member(sc, src_if->if_xname);
1218 1.1 thorpej if (bif == NULL) {
1219 1.1 thorpej /* Interface is not a bridge member (anymore?) */
1220 1.1 thorpej m_freem(m);
1221 1.1 thorpej return;
1222 1.1 thorpej }
1223 1.1 thorpej
1224 1.1 thorpej if (bif->bif_flags & IFBIF_STP) {
1225 1.1 thorpej switch (bif->bif_state) {
1226 1.1 thorpej case BSTP_IFSTATE_BLOCKING:
1227 1.1 thorpej case BSTP_IFSTATE_LISTENING:
1228 1.1 thorpej case BSTP_IFSTATE_DISABLED:
1229 1.1 thorpej m_freem(m);
1230 1.1 thorpej return;
1231 1.1 thorpej }
1232 1.1 thorpej }
1233 1.1 thorpej
1234 1.1 thorpej eh = mtod(m, struct ether_header *);
1235 1.1 thorpej
1236 1.1 thorpej /*
1237 1.1 thorpej * If the interface is learning, and the source
1238 1.1 thorpej * address is valid and not multicast, record
1239 1.1 thorpej * the address.
1240 1.1 thorpej */
1241 1.1 thorpej if ((bif->bif_flags & IFBIF_LEARNING) != 0 &&
1242 1.1 thorpej ETHER_IS_MULTICAST(eh->ether_shost) == 0 &&
1243 1.1 thorpej (eh->ether_shost[0] == 0 &&
1244 1.1 thorpej eh->ether_shost[1] == 0 &&
1245 1.1 thorpej eh->ether_shost[2] == 0 &&
1246 1.1 thorpej eh->ether_shost[3] == 0 &&
1247 1.1 thorpej eh->ether_shost[4] == 0 &&
1248 1.1 thorpej eh->ether_shost[5] == 0) == 0) {
1249 1.1 thorpej (void) bridge_rtupdate(sc, eh->ether_shost,
1250 1.1 thorpej src_if, 0, IFBAF_DYNAMIC);
1251 1.1 thorpej }
1252 1.1 thorpej
1253 1.1 thorpej if ((bif->bif_flags & IFBIF_STP) != 0 &&
1254 1.1 thorpej bif->bif_state == BSTP_IFSTATE_LEARNING) {
1255 1.1 thorpej m_freem(m);
1256 1.1 thorpej return;
1257 1.1 thorpej }
1258 1.1 thorpej
1259 1.1 thorpej /*
1260 1.1 thorpej * At this point, the port either doesn't participate
1261 1.1 thorpej * in spanning tree or it is in the forwarding state.
1262 1.1 thorpej */
1263 1.1 thorpej
1264 1.1 thorpej /*
1265 1.1 thorpej * If the packet is unicast, destined for someone on
1266 1.1 thorpej * "this" side of the bridge, drop it.
1267 1.1 thorpej */
1268 1.1 thorpej if ((m->m_flags & (M_BCAST|M_MCAST)) == 0) {
1269 1.1 thorpej dst_if = bridge_rtlookup(sc, eh->ether_dhost);
1270 1.1 thorpej if (src_if == dst_if) {
1271 1.1 thorpej m_freem(m);
1272 1.1 thorpej return;
1273 1.1 thorpej }
1274 1.1 thorpej } else {
1275 1.1 thorpej /* ...forward it to all interfaces. */
1276 1.1 thorpej sc->sc_if.if_imcasts++;
1277 1.1 thorpej dst_if = NULL;
1278 1.1 thorpej }
1279 1.1 thorpej
1280 1.1 thorpej if (dst_if == NULL) {
1281 1.1 thorpej bridge_broadcast(sc, src_if, m);
1282 1.1 thorpej return;
1283 1.1 thorpej }
1284 1.1 thorpej
1285 1.1 thorpej /*
1286 1.1 thorpej * At this point, we're dealing with a unicast frame
1287 1.1 thorpej * going to a different interface.
1288 1.1 thorpej */
1289 1.1 thorpej if ((dst_if->if_flags & IFF_RUNNING) == 0) {
1290 1.1 thorpej m_freem(m);
1291 1.1 thorpej return;
1292 1.1 thorpej }
1293 1.1 thorpej /* XXX This needs to be more efficient. */
1294 1.1 thorpej bif = bridge_lookup_member(sc, dst_if->if_xname);
1295 1.1 thorpej if (bif == NULL) {
1296 1.1 thorpej /* Not a member of the bridge (anymore?) */
1297 1.1 thorpej m_freem(m);
1298 1.1 thorpej return;
1299 1.1 thorpej }
1300 1.1 thorpej
1301 1.1 thorpej if (bif->bif_flags & IFBIF_STP) {
1302 1.1 thorpej switch (bif->bif_state) {
1303 1.1 thorpej case BSTP_IFSTATE_DISABLED:
1304 1.1 thorpej case BSTP_IFSTATE_BLOCKING:
1305 1.1 thorpej m_freem(m);
1306 1.1 thorpej return;
1307 1.1 thorpej }
1308 1.1 thorpej }
1309 1.1 thorpej
1310 1.1 thorpej bridge_enqueue(sc, dst_if, m);
1311 1.1 thorpej }
1312 1.1 thorpej
1313 1.1 thorpej /*
1314 1.1 thorpej * bridge_input:
1315 1.1 thorpej *
1316 1.1 thorpej * Receive input from a member interface. Queue the packet for
1317 1.1 thorpej * bridging if it is not for us.
1318 1.1 thorpej */
1319 1.1 thorpej struct mbuf *
1320 1.1 thorpej bridge_input(struct ifnet *ifp, struct mbuf *m)
1321 1.1 thorpej {
1322 1.1 thorpej struct bridge_softc *sc = ifp->if_bridge;
1323 1.1 thorpej struct bridge_iflist *bif;
1324 1.1 thorpej struct ether_header *eh;
1325 1.1 thorpej struct mbuf *mc;
1326 1.1 thorpej
1327 1.1 thorpej if ((sc->sc_if.if_flags & IFF_RUNNING) == 0)
1328 1.1 thorpej return (m);
1329 1.1 thorpej
1330 1.1 thorpej /* XXX This needs to be more efficient. */
1331 1.1 thorpej bif = bridge_lookup_member(sc, ifp->if_xname);
1332 1.1 thorpej if (bif == NULL)
1333 1.1 thorpej return (m);
1334 1.1 thorpej
1335 1.1 thorpej eh = mtod(m, struct ether_header *);
1336 1.1 thorpej
1337 1.1 thorpej if (m->m_flags & (M_BCAST|M_MCAST)) {
1338 1.1 thorpej /* Tap off 802.1D packets; they do not get forwarded. */
1339 1.1 thorpej if (memcmp(eh->ether_dhost, bstp_etheraddr,
1340 1.1 thorpej ETHER_ADDR_LEN) == 0) {
1341 1.1 thorpej m = bstp_input(ifp, m);
1342 1.1 thorpej if (m == NULL)
1343 1.1 thorpej return (NULL);
1344 1.1 thorpej }
1345 1.1 thorpej
1346 1.1 thorpej if (bif->bif_flags & IFBIF_STP) {
1347 1.1 thorpej switch (bif->bif_state) {
1348 1.1 thorpej case BSTP_IFSTATE_BLOCKING:
1349 1.1 thorpej case BSTP_IFSTATE_LISTENING:
1350 1.1 thorpej case BSTP_IFSTATE_DISABLED:
1351 1.1 thorpej return (m);
1352 1.1 thorpej }
1353 1.1 thorpej }
1354 1.1 thorpej
1355 1.1 thorpej /*
1356 1.1 thorpej * Make a deep copy of the packet and enqueue the copy
1357 1.1 thorpej * for bridge processing; return the original packet for
1358 1.1 thorpej * local processing.
1359 1.1 thorpej */
1360 1.1 thorpej mc = m_dup(m, 0, M_COPYALL, M_NOWAIT);
1361 1.1 thorpej if (mc == NULL)
1362 1.1 thorpej return (m);
1363 1.1 thorpej
1364 1.1 thorpej /* Perform the bridge forwarding function with the copy. */
1365 1.1 thorpej bridge_forward(sc, mc);
1366 1.1 thorpej
1367 1.1 thorpej /* Return the original packet for local processing. */
1368 1.1 thorpej return (m);
1369 1.1 thorpej }
1370 1.1 thorpej
1371 1.1 thorpej if (bif->bif_flags & IFBIF_STP) {
1372 1.1 thorpej switch (bif->bif_state) {
1373 1.1 thorpej case BSTP_IFSTATE_BLOCKING:
1374 1.1 thorpej case BSTP_IFSTATE_LISTENING:
1375 1.1 thorpej case BSTP_IFSTATE_DISABLED:
1376 1.1 thorpej return (m);
1377 1.1 thorpej }
1378 1.1 thorpej }
1379 1.1 thorpej
1380 1.1 thorpej /*
1381 1.1 thorpej * Unicast. Make sure it's not for us.
1382 1.1 thorpej */
1383 1.1 thorpej LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
1384 1.1 thorpej /* It is destined for us. */
1385 1.1 thorpej if (memcmp(LLADDR(bif->bif_ifp->if_sadl), eh->ether_dhost,
1386 1.1 thorpej ETHER_ADDR_LEN) == 0) {
1387 1.1 thorpej if (bif->bif_flags & IFBIF_LEARNING)
1388 1.1 thorpej (void) bridge_rtupdate(sc,
1389 1.1 thorpej eh->ether_shost, ifp, 0, IFBAF_DYNAMIC);
1390 1.1 thorpej m->m_pkthdr.rcvif = bif->bif_ifp;
1391 1.1 thorpej return (m);
1392 1.1 thorpej }
1393 1.1 thorpej
1394 1.1 thorpej /* We just received a packet that we sent out. */
1395 1.1 thorpej if (memcmp(LLADDR(bif->bif_ifp->if_sadl), eh->ether_shost,
1396 1.1 thorpej ETHER_ADDR_LEN) == 0) {
1397 1.1 thorpej m_freem(m);
1398 1.1 thorpej return (NULL);
1399 1.1 thorpej }
1400 1.1 thorpej }
1401 1.1 thorpej
1402 1.1 thorpej /* Perform the bridge forwarding function. */
1403 1.1 thorpej bridge_forward(sc, m);
1404 1.1 thorpej
1405 1.1 thorpej return (NULL);
1406 1.1 thorpej }
1407 1.1 thorpej
1408 1.1 thorpej /*
1409 1.1 thorpej * bridge_broadcast:
1410 1.1 thorpej *
1411 1.1 thorpej * Send a frame to all interfaces that are members of
1412 1.1 thorpej * the bridge, except for the one on which the packet
1413 1.1 thorpej * arrived.
1414 1.1 thorpej */
1415 1.1 thorpej void
1416 1.1 thorpej bridge_broadcast(struct bridge_softc *sc, struct ifnet *src_if,
1417 1.1 thorpej struct mbuf *m)
1418 1.1 thorpej {
1419 1.1 thorpej struct bridge_iflist *bif;
1420 1.1 thorpej struct mbuf *mc;
1421 1.1 thorpej struct ifnet *dst_if;
1422 1.1 thorpej int used = 0;
1423 1.1 thorpej
1424 1.1 thorpej LIST_FOREACH(bif, &sc->sc_iflist, bif_next) {
1425 1.1 thorpej dst_if = bif->bif_ifp;
1426 1.1 thorpej if (dst_if == src_if)
1427 1.1 thorpej continue;
1428 1.1 thorpej
1429 1.1 thorpej if (bif->bif_flags & IFBIF_STP) {
1430 1.1 thorpej switch (bif->bif_state) {
1431 1.1 thorpej case BSTP_IFSTATE_BLOCKING:
1432 1.1 thorpej case BSTP_IFSTATE_DISABLED:
1433 1.1 thorpej continue;
1434 1.1 thorpej }
1435 1.1 thorpej }
1436 1.1 thorpej
1437 1.1 thorpej if ((bif->bif_flags & IFBIF_DISCOVER) == 0 &&
1438 1.1 thorpej (m->m_flags & (M_BCAST|M_MCAST)) == 0)
1439 1.1 thorpej continue;
1440 1.1 thorpej
1441 1.1 thorpej if ((dst_if->if_flags & IFF_RUNNING) == 0)
1442 1.1 thorpej continue;
1443 1.1 thorpej
1444 1.1 thorpej if (LIST_NEXT(bif, bif_next) == NULL) {
1445 1.1 thorpej mc = m;
1446 1.1 thorpej used = 1;
1447 1.1 thorpej } else {
1448 1.1 thorpej mc = m_copym(m, 0, M_COPYALL, M_DONTWAIT);
1449 1.1 thorpej if (mc == NULL) {
1450 1.1 thorpej sc->sc_if.if_oerrors++;
1451 1.1 thorpej continue;
1452 1.1 thorpej }
1453 1.1 thorpej }
1454 1.1 thorpej
1455 1.1 thorpej bridge_enqueue(sc, dst_if, mc);
1456 1.1 thorpej }
1457 1.1 thorpej if (used == 0)
1458 1.1 thorpej m_freem(m);
1459 1.1 thorpej }
1460 1.1 thorpej
1461 1.1 thorpej /*
1462 1.1 thorpej * bridge_rtupdate:
1463 1.1 thorpej *
1464 1.1 thorpej * Add a bridge routing entry.
1465 1.1 thorpej */
1466 1.1 thorpej int
1467 1.1 thorpej bridge_rtupdate(struct bridge_softc *sc, const uint8_t *dst,
1468 1.1 thorpej struct ifnet *dst_if, int setflags, uint8_t flags)
1469 1.1 thorpej {
1470 1.1 thorpej struct bridge_rtnode *brt;
1471 1.1 thorpej int error;
1472 1.1 thorpej
1473 1.1 thorpej /*
1474 1.1 thorpej * A route for this destination might already exist. If so,
1475 1.1 thorpej * update it, otherwise create a new one.
1476 1.1 thorpej */
1477 1.1 thorpej if ((brt = bridge_rtnode_lookup(sc, dst)) == NULL) {
1478 1.1 thorpej if (sc->sc_brtcnt >= sc->sc_brtmax)
1479 1.1 thorpej return (ENOSPC);
1480 1.1 thorpej
1481 1.1 thorpej /*
1482 1.1 thorpej * Allocate a new bridge forwarding node, and
1483 1.1 thorpej * initialize the expiration time and Ethernet
1484 1.1 thorpej * address.
1485 1.1 thorpej */
1486 1.1 thorpej brt = pool_get(&bridge_rtnode_pool, PR_NOWAIT);
1487 1.1 thorpej if (brt == NULL)
1488 1.1 thorpej return (ENOMEM);
1489 1.1 thorpej
1490 1.1 thorpej memset(brt, 0, sizeof(*brt));
1491 1.1 thorpej brt->brt_expire = mono_time.tv_sec + sc->sc_brttimeout;
1492 1.1 thorpej brt->brt_flags = IFBAF_DYNAMIC;
1493 1.1 thorpej memcpy(brt->brt_addr, dst, ETHER_ADDR_LEN);
1494 1.1 thorpej
1495 1.1 thorpej if ((error = bridge_rtnode_insert(sc, brt)) != 0) {
1496 1.1 thorpej pool_put(&bridge_rtnode_pool, brt);
1497 1.1 thorpej return (error);
1498 1.1 thorpej }
1499 1.1 thorpej }
1500 1.1 thorpej
1501 1.1 thorpej brt->brt_ifp = dst_if;
1502 1.1 thorpej if (setflags) {
1503 1.1 thorpej brt->brt_flags = flags;
1504 1.1 thorpej brt->brt_expire = (flags & IFBAF_STATIC) ? 0 :
1505 1.1 thorpej mono_time.tv_sec + sc->sc_brttimeout;
1506 1.1 thorpej }
1507 1.1 thorpej
1508 1.1 thorpej return (0);
1509 1.1 thorpej }
1510 1.1 thorpej
1511 1.1 thorpej /*
1512 1.1 thorpej * bridge_rtlookup:
1513 1.1 thorpej *
1514 1.1 thorpej * Lookup the destination interface for an address.
1515 1.1 thorpej */
1516 1.1 thorpej struct ifnet *
1517 1.1 thorpej bridge_rtlookup(struct bridge_softc *sc, const uint8_t *addr)
1518 1.1 thorpej {
1519 1.1 thorpej struct bridge_rtnode *brt;
1520 1.1 thorpej
1521 1.1 thorpej if ((brt = bridge_rtnode_lookup(sc, addr)) == NULL)
1522 1.1 thorpej return (NULL);
1523 1.1 thorpej
1524 1.1 thorpej return (brt->brt_ifp);
1525 1.1 thorpej }
1526 1.1 thorpej
1527 1.1 thorpej /*
1528 1.1 thorpej * bridge_rttrim:
1529 1.1 thorpej *
1530 1.1 thorpej * Trim the routine table so that we have a number
1531 1.1 thorpej * of routing entries less than or equal to the
1532 1.1 thorpej * maximum number.
1533 1.1 thorpej */
1534 1.1 thorpej void
1535 1.1 thorpej bridge_rttrim(struct bridge_softc *sc)
1536 1.1 thorpej {
1537 1.1 thorpej struct bridge_rtnode *brt, *nbrt;
1538 1.1 thorpej
1539 1.1 thorpej /* Make sure we actually need to do this. */
1540 1.1 thorpej if (sc->sc_brtcnt <= sc->sc_brtmax)
1541 1.1 thorpej return;
1542 1.1 thorpej
1543 1.1 thorpej /* Force an aging cycle; this might trim enough addresses. */
1544 1.1 thorpej bridge_rtage(sc);
1545 1.1 thorpej if (sc->sc_brtcnt <= sc->sc_brtmax)
1546 1.1 thorpej return;
1547 1.1 thorpej
1548 1.1 thorpej for (brt = LIST_FIRST(&sc->sc_rtlist); brt != NULL; brt = nbrt) {
1549 1.1 thorpej nbrt = LIST_NEXT(brt, brt_list);
1550 1.1 thorpej if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC) {
1551 1.1 thorpej bridge_rtnode_destroy(sc, brt);
1552 1.1 thorpej if (sc->sc_brtcnt <= sc->sc_brtmax)
1553 1.1 thorpej return;
1554 1.1 thorpej }
1555 1.1 thorpej }
1556 1.1 thorpej }
1557 1.1 thorpej
1558 1.1 thorpej /*
1559 1.1 thorpej * bridge_timer:
1560 1.1 thorpej *
1561 1.1 thorpej * Aging timer for the bridge.
1562 1.1 thorpej */
1563 1.1 thorpej void
1564 1.1 thorpej bridge_timer(void *arg)
1565 1.1 thorpej {
1566 1.1 thorpej struct bridge_softc *sc = arg;
1567 1.1 thorpej int s;
1568 1.1 thorpej
1569 1.1 thorpej s = splnet();
1570 1.1 thorpej bridge_rtage(sc);
1571 1.1 thorpej splx(s);
1572 1.1 thorpej
1573 1.1 thorpej if (sc->sc_if.if_flags & IFF_RUNNING)
1574 1.1 thorpej callout_reset(&sc->sc_brcallout,
1575 1.1 thorpej bridge_rtable_prune_period * hz, bridge_timer, sc);
1576 1.1 thorpej }
1577 1.1 thorpej
1578 1.1 thorpej /*
1579 1.1 thorpej * bridge_rtage:
1580 1.1 thorpej *
1581 1.1 thorpej * Perform an aging cycle.
1582 1.1 thorpej */
1583 1.1 thorpej void
1584 1.1 thorpej bridge_rtage(struct bridge_softc *sc)
1585 1.1 thorpej {
1586 1.1 thorpej struct bridge_rtnode *brt, *nbrt;
1587 1.1 thorpej
1588 1.1 thorpej for (brt = LIST_FIRST(&sc->sc_rtlist); brt != NULL; brt = nbrt) {
1589 1.1 thorpej nbrt = LIST_NEXT(brt, brt_list);
1590 1.1 thorpej if ((brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC) {
1591 1.1 thorpej if (mono_time.tv_sec >= brt->brt_expire)
1592 1.1 thorpej bridge_rtnode_destroy(sc, brt);
1593 1.1 thorpej }
1594 1.1 thorpej }
1595 1.1 thorpej }
1596 1.1 thorpej
1597 1.1 thorpej /*
1598 1.1 thorpej * bridge_rtflush:
1599 1.1 thorpej *
1600 1.1 thorpej * Remove all dynamic addresses from the bridge.
1601 1.1 thorpej */
1602 1.1 thorpej void
1603 1.1 thorpej bridge_rtflush(struct bridge_softc *sc, int full)
1604 1.1 thorpej {
1605 1.1 thorpej struct bridge_rtnode *brt, *nbrt;
1606 1.1 thorpej
1607 1.1 thorpej for (brt = LIST_FIRST(&sc->sc_rtlist); brt != NULL; brt = nbrt) {
1608 1.1 thorpej nbrt = LIST_NEXT(brt, brt_list);
1609 1.1 thorpej if (full || (brt->brt_flags & IFBAF_TYPEMASK) == IFBAF_DYNAMIC)
1610 1.1 thorpej bridge_rtnode_destroy(sc, brt);
1611 1.1 thorpej }
1612 1.1 thorpej }
1613 1.1 thorpej
1614 1.1 thorpej /*
1615 1.1 thorpej * bridge_rtdaddr:
1616 1.1 thorpej *
1617 1.1 thorpej * Remove an address from the table.
1618 1.1 thorpej */
1619 1.1 thorpej int
1620 1.1 thorpej bridge_rtdaddr(struct bridge_softc *sc, const uint8_t *addr)
1621 1.1 thorpej {
1622 1.1 thorpej struct bridge_rtnode *brt;
1623 1.1 thorpej
1624 1.1 thorpej if ((brt = bridge_rtnode_lookup(sc, addr)) == NULL)
1625 1.1 thorpej return (ENOENT);
1626 1.1 thorpej
1627 1.1 thorpej bridge_rtnode_destroy(sc, brt);
1628 1.1 thorpej return (0);
1629 1.1 thorpej }
1630 1.1 thorpej
1631 1.1 thorpej /*
1632 1.1 thorpej * bridge_rtdelete:
1633 1.1 thorpej *
1634 1.1 thorpej * Delete routes to a speicifc member interface.
1635 1.1 thorpej */
1636 1.1 thorpej void
1637 1.1 thorpej bridge_rtdelete(struct bridge_softc *sc, struct ifnet *ifp)
1638 1.1 thorpej {
1639 1.1 thorpej struct bridge_rtnode *brt, *nbrt;
1640 1.1 thorpej
1641 1.1 thorpej for (brt = LIST_FIRST(&sc->sc_rtlist); brt != NULL; brt = nbrt) {
1642 1.1 thorpej nbrt = LIST_NEXT(brt, brt_list);
1643 1.1 thorpej if (brt->brt_ifp == ifp)
1644 1.1 thorpej bridge_rtnode_destroy(sc, brt);
1645 1.1 thorpej }
1646 1.1 thorpej }
1647 1.1 thorpej
1648 1.1 thorpej /*
1649 1.1 thorpej * bridge_rtable_init:
1650 1.1 thorpej *
1651 1.1 thorpej * Initialize the route table for this bridge.
1652 1.1 thorpej */
1653 1.1 thorpej int
1654 1.1 thorpej bridge_rtable_init(struct bridge_softc *sc)
1655 1.1 thorpej {
1656 1.1 thorpej int i;
1657 1.1 thorpej
1658 1.1 thorpej sc->sc_rthash = malloc(sizeof(*sc->sc_rthash) * BRIDGE_RTHASH_SIZE,
1659 1.1 thorpej M_DEVBUF, M_NOWAIT);
1660 1.1 thorpej if (sc->sc_rthash == NULL)
1661 1.1 thorpej return (ENOMEM);
1662 1.1 thorpej
1663 1.1 thorpej for (i = 0; i < BRIDGE_RTHASH_SIZE; i++)
1664 1.1 thorpej LIST_INIT(&sc->sc_rthash[i]);
1665 1.1 thorpej
1666 1.1 thorpej #if NRND > 0
1667 1.1 thorpej rnd_extract_data(&sc->sc_rthash_key, sizeof(sc->sc_rthash_key),
1668 1.1 thorpej RND_EXTRACT_ANY);
1669 1.1 thorpej #else
1670 1.1 thorpej sc->sc_rthash_key = random();
1671 1.1 thorpej #endif /* NRND > 0 */
1672 1.1 thorpej
1673 1.1 thorpej LIST_INIT(&sc->sc_rtlist);
1674 1.1 thorpej
1675 1.1 thorpej return (0);
1676 1.1 thorpej }
1677 1.1 thorpej
1678 1.1 thorpej /*
1679 1.1 thorpej * bridge_rtable_fini:
1680 1.1 thorpej *
1681 1.1 thorpej * Deconstruct the route table for this bridge.
1682 1.1 thorpej */
1683 1.1 thorpej void
1684 1.1 thorpej bridge_rtable_fini(struct bridge_softc *sc)
1685 1.1 thorpej {
1686 1.1 thorpej
1687 1.1 thorpej free(sc->sc_rthash, M_DEVBUF);
1688 1.1 thorpej }
1689 1.1 thorpej
1690 1.1 thorpej /*
1691 1.1 thorpej * The following hash function is adapted from "Hash Functions" by Bob Jenkins
1692 1.1 thorpej * ("Algorithm Alley", Dr. Dobbs Journal, September 1997).
1693 1.1 thorpej */
1694 1.1 thorpej #define mix(a, b, c) \
1695 1.1 thorpej do { \
1696 1.1 thorpej a -= b; a -= c; a ^= (c >> 13); \
1697 1.1 thorpej b -= c; b -= a; b ^= (a << 8); \
1698 1.1 thorpej c -= a; c -= b; c ^= (b >> 13); \
1699 1.1 thorpej a -= b; a -= c; a ^= (c >> 12); \
1700 1.1 thorpej b -= c; b -= a; b ^= (a << 16); \
1701 1.1 thorpej c -= a; c -= b; c ^= (b >> 5); \
1702 1.1 thorpej a -= b; a -= c; a ^= (c >> 3); \
1703 1.1 thorpej b -= c; b -= a; b ^= (a << 10); \
1704 1.1 thorpej c -= a; c -= b; c ^= (b >> 15); \
1705 1.1 thorpej } while (/*CONSTCOND*/0)
1706 1.1 thorpej
1707 1.1 thorpej static __inline uint32_t
1708 1.1 thorpej bridge_rthash(struct bridge_softc *sc, const uint8_t *addr)
1709 1.1 thorpej {
1710 1.1 thorpej uint32_t a = 0x9e3779b9, b = 0x9e3779b9, c = sc->sc_rthash_key;
1711 1.1 thorpej
1712 1.1 thorpej b += addr[5] << 8;
1713 1.1 thorpej b += addr[4];
1714 1.1 thorpej a += addr[3] << 24;
1715 1.1 thorpej a += addr[2] << 16;
1716 1.1 thorpej a += addr[1] << 8;
1717 1.1 thorpej a += addr[0];
1718 1.1 thorpej
1719 1.1 thorpej mix(a, b, c);
1720 1.1 thorpej
1721 1.1 thorpej return (c & BRIDGE_RTHASH_MASK);
1722 1.1 thorpej }
1723 1.1 thorpej
1724 1.1 thorpej #undef mix
1725 1.1 thorpej
1726 1.1 thorpej /*
1727 1.1 thorpej * bridge_rtnode_lookup:
1728 1.1 thorpej *
1729 1.1 thorpej * Look up a bridge route node for the specified destination.
1730 1.1 thorpej */
1731 1.1 thorpej struct bridge_rtnode *
1732 1.1 thorpej bridge_rtnode_lookup(struct bridge_softc *sc, const uint8_t *addr)
1733 1.1 thorpej {
1734 1.1 thorpej struct bridge_rtnode *brt;
1735 1.1 thorpej uint32_t hash;
1736 1.1 thorpej int dir;
1737 1.1 thorpej
1738 1.1 thorpej hash = bridge_rthash(sc, addr);
1739 1.1 thorpej LIST_FOREACH(brt, &sc->sc_rthash[hash], brt_hash) {
1740 1.1 thorpej dir = memcmp(addr, brt->brt_addr, ETHER_ADDR_LEN);
1741 1.1 thorpej if (dir == 0)
1742 1.1 thorpej return (brt);
1743 1.1 thorpej if (dir > 0)
1744 1.1 thorpej return (NULL);
1745 1.1 thorpej }
1746 1.1 thorpej
1747 1.1 thorpej return (NULL);
1748 1.1 thorpej }
1749 1.1 thorpej
1750 1.1 thorpej /*
1751 1.1 thorpej * bridge_rtnode_insert:
1752 1.1 thorpej *
1753 1.1 thorpej * Insert the specified bridge node into the route table. We
1754 1.1 thorpej * assume the entry is not already in the table.
1755 1.1 thorpej */
1756 1.1 thorpej int
1757 1.1 thorpej bridge_rtnode_insert(struct bridge_softc *sc, struct bridge_rtnode *brt)
1758 1.1 thorpej {
1759 1.1 thorpej struct bridge_rtnode *lbrt;
1760 1.1 thorpej uint32_t hash;
1761 1.1 thorpej int dir;
1762 1.1 thorpej
1763 1.1 thorpej hash = bridge_rthash(sc, brt->brt_addr);
1764 1.1 thorpej
1765 1.1 thorpej lbrt = LIST_FIRST(&sc->sc_rthash[hash]);
1766 1.1 thorpej if (lbrt == NULL) {
1767 1.1 thorpej LIST_INSERT_HEAD(&sc->sc_rthash[hash], brt, brt_hash);
1768 1.1 thorpej goto out;
1769 1.1 thorpej }
1770 1.1 thorpej
1771 1.1 thorpej do {
1772 1.1 thorpej dir = memcmp(brt->brt_addr, lbrt->brt_addr, ETHER_ADDR_LEN);
1773 1.1 thorpej if (dir == 0)
1774 1.1 thorpej return (EEXIST);
1775 1.1 thorpej if (dir > 0) {
1776 1.1 thorpej LIST_INSERT_BEFORE(lbrt, brt, brt_hash);
1777 1.1 thorpej goto out;
1778 1.1 thorpej }
1779 1.1 thorpej if (LIST_NEXT(lbrt, brt_hash) == NULL) {
1780 1.1 thorpej LIST_INSERT_AFTER(lbrt, brt, brt_hash);
1781 1.1 thorpej goto out;
1782 1.1 thorpej }
1783 1.1 thorpej lbrt = LIST_NEXT(lbrt, brt_hash);
1784 1.1 thorpej } while (lbrt != NULL);
1785 1.1 thorpej
1786 1.1 thorpej #ifdef DIAGNOSTIC
1787 1.1 thorpej panic("bridge_rtnode_insert: impossible");
1788 1.1 thorpej #endif
1789 1.1 thorpej
1790 1.1 thorpej out:
1791 1.1 thorpej LIST_INSERT_HEAD(&sc->sc_rtlist, brt, brt_list);
1792 1.1 thorpej sc->sc_brtcnt++;
1793 1.1 thorpej
1794 1.1 thorpej return (0);
1795 1.1 thorpej }
1796 1.1 thorpej
1797 1.1 thorpej /*
1798 1.1 thorpej * bridge_rtnode_destroy:
1799 1.1 thorpej *
1800 1.1 thorpej * Destroy a bridge rtnode.
1801 1.1 thorpej */
1802 1.1 thorpej void
1803 1.1 thorpej bridge_rtnode_destroy(struct bridge_softc *sc, struct bridge_rtnode *brt)
1804 1.1 thorpej {
1805 1.1 thorpej
1806 1.1 thorpej LIST_REMOVE(brt, brt_hash);
1807 1.1 thorpej
1808 1.1 thorpej LIST_REMOVE(brt, brt_list);
1809 1.1 thorpej sc->sc_brtcnt--;
1810 1.1 thorpej pool_put(&bridge_rtnode_pool, brt);
1811 1.1 thorpej }
1812