4 * Copyright (c) 2001 Berkeley Software Design, Inc.
5 * Copyright (c) 2000, 2001
6 * Bill Paul <wpaul@osd.bsdi.com>. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by Bill Paul.
19 * 4. Neither the name of the author nor the names of any co-contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
27 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33 * THE POSSIBILITY OF SUCH DAMAGE.
35 * $FreeBSD: src/sys/netgraph/ng_fec.c,v 1.1.2.1 2002/11/01 21:39:31 julian Exp $
36 * $DragonFly: src/sys/netgraph/fec/ng_fec.c,v 1.9 2004/09/16 03:43:09 dillon Exp $
39 * Copyright (c) 1996-1999 Whistle Communications, Inc.
40 * All rights reserved.
42 * Subject to the following obligations and disclaimer of warranty, use and
43 * redistribution of this software, in source or object code forms, with or
44 * without modifications are expressly permitted by Whistle Communications;
45 * provided, however, that:
46 * 1. Any and all reproductions of the source or object code must include the
47 * copyright notice above and the following disclaimer of warranties; and
48 * 2. No rights are granted, in any manner or form, to use Whistle
49 * Communications, Inc. trademarks, including the mark "WHISTLE
50 * COMMUNICATIONS" on advertising, endorsements, or otherwise except as
51 * such appears in the above copyright notice or in the software.
53 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
54 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
55 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
56 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
57 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
58 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
59 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
60 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
61 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
62 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
63 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
64 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
65 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
66 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
67 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
68 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
71 * Author: Archie Cobbs <archie@freebsd.org>
73 * $Whistle: ng_fec.c,v 1.33 1999/11/01 09:24:51 julian Exp $
77 * This module implements ethernet channel bonding using the Cisco
78 * Fast EtherChannel mechanism. Two or four ports may be combined
79 * into a single aggregate interface.
81 * Interfaces are named fec0, fec1, etc. New nodes take the
82 * first available interface name.
84 * This node also includes Berkeley packet filter support.
86 * Note that this node doesn't need to connect to any other
87 * netgraph nodes in order to do its work.
90 #include <sys/param.h>
91 #include <sys/systm.h>
92 #include <sys/errno.h>
93 #include <sys/kernel.h>
94 #include <sys/malloc.h>
96 #include <sys/errno.h>
97 #include <sys/sockio.h>
98 #include <sys/socket.h>
99 #include <sys/syslog.h>
100 #include <sys/libkern.h>
101 #include <sys/queue.h>
104 #include <net/if_types.h>
105 #include <net/if_arp.h>
106 #include <net/if_dl.h>
107 #include <net/if_media.h>
108 #include <net/intrq.h>
110 #include <net/ethernet.h>
112 #include "opt_inet.h"
113 #include "opt_inet6.h"
115 #include <netinet/in.h>
117 #include <netinet/in_systm.h>
118 #include <netinet/ip.h>
122 #include <netinet/ip6.h>
125 #include <netgraph/ng_message.h>
126 #include <netgraph/netgraph.h>
127 #include <netgraph/ng_parse.h>
130 #define IFP2NG(ifp) ((struct ng_node *)((struct arpcom *)(ifp))->ac_netgraph)
131 #define FEC_INC(x, y) (x) = (x + 1) % y
134 * Current fast etherchannel implementations use either 2 or 4
135 * ports, so for now we limit the maximum bundle size to 4 interfaces.
137 #define FEC_BUNDLESIZ 4
139 struct ng_fec_portlist {
140 struct ifnet *fec_if;
143 struct ether_addr fec_mac;
144 TAILQ_ENTRY(ng_fec_portlist) fec_list;
147 struct ng_fec_bundle {
148 TAILQ_HEAD(,ng_fec_portlist) ng_fec_ports;
153 #define FEC_BTYPE_MAC 0x01
154 #define FEC_BTYPE_INET 0x02
155 #define FEC_BTYPE_INET6 0x03
157 /* Node private data */
158 struct ng_fec_private {
159 struct arpcom arpcom;
160 struct ifmedia ifmedia;
162 int if_error; /* XXX */
163 int unit; /* Interface unit number */
164 node_p node; /* Our netgraph node */
165 struct ng_fec_bundle fec_bundle;/* Aggregate bundle */
166 struct callout fec_timeout; /* callout for ticker */
167 int (*real_if_output)(struct ifnet *, struct mbuf *,
168 struct sockaddr *, struct rtentry *);
170 typedef struct ng_fec_private *priv_p;
172 /* Interface methods */
173 static void ng_fec_input(struct ifnet *, struct mbuf **,
174 struct ether_header *);
175 static void ng_fec_start(struct ifnet *ifp);
176 static int ng_fec_choose_port(struct ng_fec_bundle *b,
177 struct mbuf *m, struct ifnet **ifp);
178 static int ng_fec_setport(struct ifnet *ifp, u_long cmd, caddr_t data);
179 static void ng_fec_init(void *arg);
180 static void ng_fec_stop(struct ifnet *ifp);
181 static int ng_fec_ifmedia_upd(struct ifnet *ifp);
182 static void ng_fec_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr);
183 static int ng_fec_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data,
185 static int ng_fec_output(struct ifnet *ifp, struct mbuf *m0,
186 struct sockaddr *dst, struct rtentry *rt0);
187 static void ng_fec_tick(void *arg);
188 static int ng_fec_addport(struct ng_fec_private *priv, char *iface);
189 static int ng_fec_delport(struct ng_fec_private *priv, char *iface);
192 static void ng_fec_print_ioctl(struct ifnet *ifp, int cmd, caddr_t data);
195 /* Netgraph methods */
196 static ng_constructor_t ng_fec_constructor;
197 static ng_rcvmsg_t ng_fec_rcvmsg;
198 static ng_shutdown_t ng_fec_rmnode;
200 /* List of commands and how to convert arguments to/from ASCII */
201 static const struct ng_cmdlist ng_fec_cmds[] = {
206 &ng_parse_string_type,
213 &ng_parse_string_type,
218 NGM_FEC_SET_MODE_MAC,
225 NGM_FEC_SET_MODE_INET,
233 /* Node type descriptor */
234 static struct ng_type typestruct = {
249 NETGRAPH_INIT(fec, &typestruct);
251 /* We keep a bitmap indicating which unit numbers are free.
252 One means the unit number is free, zero means it's taken. */
253 static int *ng_fec_units = NULL;
254 static int ng_fec_units_len = 0;
255 static int ng_units_in_use = 0;
257 #define UNITS_BITSPERWORD (sizeof(*ng_fec_units) * NBBY)
260 * Find the first free unit number for a new interface.
261 * Increase the size of the unit bitmap as necessary.
263 static __inline__ int
264 ng_fec_get_unit(int *unit)
268 for (index = 0; index < ng_fec_units_len
269 && ng_fec_units[index] == 0; index++);
270 if (index == ng_fec_units_len) { /* extend array */
271 int i, *newarray, newlen;
273 newlen = (2 * ng_fec_units_len) + 4;
274 MALLOC(newarray, int *, newlen * sizeof(*ng_fec_units),
275 M_NETGRAPH, M_NOWAIT);
276 if (newarray == NULL)
278 bcopy(ng_fec_units, newarray,
279 ng_fec_units_len * sizeof(*ng_fec_units));
280 for (i = ng_fec_units_len; i < newlen; i++)
282 if (ng_fec_units != NULL)
283 FREE(ng_fec_units, M_NETGRAPH);
284 ng_fec_units = newarray;
285 ng_fec_units_len = newlen;
287 bit = ffs(ng_fec_units[index]) - 1;
288 KASSERT(bit >= 0 && bit <= UNITS_BITSPERWORD - 1,
289 ("%s: word=%d bit=%d", __FUNCTION__, ng_fec_units[index], bit));
290 ng_fec_units[index] &= ~(1 << bit);
291 *unit = (index * UNITS_BITSPERWORD) + bit;
297 * Free a no longer needed unit number.
299 static __inline__ void
300 ng_fec_free_unit(int unit)
304 index = unit / UNITS_BITSPERWORD;
305 bit = unit % UNITS_BITSPERWORD;
306 KASSERT(index < ng_fec_units_len,
307 ("%s: unit=%d len=%d", __FUNCTION__, unit, ng_fec_units_len));
308 KASSERT((ng_fec_units[index] & (1 << bit)) == 0,
309 ("%s: unit=%d is free", __FUNCTION__, unit));
310 ng_fec_units[index] |= (1 << bit);
312 * XXX We could think about reducing the size of ng_fec_units[]
313 * XXX here if the last portion is all ones
314 * XXX At least free it if no more units.
315 * Needed if we are eventually be able to unload.
318 if (ng_units_in_use == 0) { /* XXX make SMP safe */
319 FREE(ng_fec_units, M_NETGRAPH);
320 ng_fec_units_len = 0;
325 /************************************************************************
327 ************************************************************************/
330 ng_fec_addport(struct ng_fec_private *priv, char *iface)
332 struct ng_fec_bundle *b;
333 struct ifnet *ifp, *bifp;
336 struct sockaddr_dl *sdl;
337 struct ng_fec_portlist *p, *new;
339 if (priv == NULL || iface == NULL)
342 b = &priv->fec_bundle;
343 ifp = &priv->arpcom.ac_if;
345 /* Find the interface */
346 bifp = ifunit(iface);
348 printf("fec%d: tried to add iface %s, which "
349 "doesn't seem to exist\n", priv->unit, iface);
353 /* See if we have room in the bundle */
354 if (b->fec_ifcnt == FEC_BUNDLESIZ) {
355 printf("fec%d: can't add new iface; bundle is full\n",
360 /* See if the interface is already in the bundle */
361 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
362 if (p->fec_if == bifp) {
363 printf("fec%d: iface %s is already in this "
364 "bundle\n", priv->unit, iface);
369 /* Allocate new list entry. */
370 MALLOC(new, struct ng_fec_portlist *,
371 sizeof(struct ng_fec_portlist), M_NETGRAPH, M_NOWAIT);
375 ac = (struct arpcom *)bifp;
376 ac->ac_netgraph = priv->node;
379 * If this is the first interface added to the bundle,
380 * use its MAC address for the virtual interface (and,
381 * by extension, all the other ports in the bundle).
383 if (b->fec_ifcnt == 0) {
384 ifa = ifnet_addrs[ifp->if_index - 1];
385 sdl = (struct sockaddr_dl *)ifa->ifa_addr;
386 bcopy((char *)ac->ac_enaddr,
387 priv->arpcom.ac_enaddr, ETHER_ADDR_LEN);
388 bcopy((char *)ac->ac_enaddr,
389 LLADDR(sdl), ETHER_ADDR_LEN);
392 b->fec_btype = FEC_BTYPE_MAC;
393 new->fec_idx = b->fec_ifcnt;
396 /* Save the real MAC address. */
397 bcopy((char *)ac->ac_enaddr,
398 (char *)&new->fec_mac, ETHER_ADDR_LEN);
400 /* Set up phony MAC address. */
401 ifa = ifnet_addrs[bifp->if_index - 1];
402 sdl = (struct sockaddr_dl *)ifa->ifa_addr;
403 bcopy(priv->arpcom.ac_enaddr, ac->ac_enaddr, ETHER_ADDR_LEN);
404 bcopy(priv->arpcom.ac_enaddr, LLADDR(sdl), ETHER_ADDR_LEN);
406 /* Add to the queue */
408 TAILQ_INSERT_TAIL(&b->ng_fec_ports, new, fec_list);
414 ng_fec_delport(struct ng_fec_private *priv, char *iface)
416 struct ng_fec_bundle *b;
417 struct ifnet *ifp, *bifp;
420 struct sockaddr_dl *sdl;
421 struct ng_fec_portlist *p;
423 if (priv == NULL || iface == NULL)
426 b = &priv->fec_bundle;
427 ifp = &priv->arpcom.ac_if;
429 /* Find the interface */
430 bifp = ifunit(iface);
432 printf("fec%d: tried to remove iface %s, which "
433 "doesn't seem to exist\n", priv->unit, iface);
437 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
438 if (p->fec_if == bifp)
443 printf("fec%d: tried to remove iface %s which "
444 "is not in our bundle\n", priv->unit, iface);
449 bifp->if_flags &= ~IFF_UP;
450 (*bifp->if_ioctl)(bifp, SIOCSIFFLAGS, NULL, NULL);
452 /* Restore MAC address. */
453 ac = (struct arpcom *)bifp;
454 ifa = ifnet_addrs[bifp->if_index - 1];
455 sdl = (struct sockaddr_dl *)ifa->ifa_addr;
456 bcopy((char *)&p->fec_mac, ac->ac_enaddr, ETHER_ADDR_LEN);
457 bcopy((char *)&p->fec_mac, LLADDR(sdl), ETHER_ADDR_LEN);
460 TAILQ_REMOVE(&b->ng_fec_ports, p, fec_list);
468 * Pass an ioctl command down to all the underyling interfaces in a
469 * bundle. Used for setting multicast filters and flags.
473 ng_fec_setport(struct ifnet *ifp, u_long command, caddr_t data)
475 struct ng_fec_private *priv;
476 struct ng_fec_bundle *b;
478 struct ng_fec_portlist *p;
480 priv = ifp->if_softc;
481 b = &priv->fec_bundle;
483 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
486 (*oifp->if_ioctl)(oifp, command, data, NULL);
493 ng_fec_init(void *arg)
495 struct ng_fec_private *priv;
496 struct ng_fec_bundle *b;
497 struct ifnet *ifp, *bifp;
498 struct ng_fec_portlist *p;
501 priv = ifp->if_softc;
502 b = &priv->fec_bundle;
504 if (b->fec_ifcnt == 1 || b->fec_ifcnt == 3) {
505 printf("fec%d: invalid bundle "
506 "size: %d\n", priv->unit,
513 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
515 bifp->if_flags |= IFF_UP;
516 (*bifp->if_ioctl)(bifp, SIOCSIFFLAGS, NULL, NULL);
517 /* mark iface as up and let the monitor check it */
521 callout_reset(&priv->fec_timeout, hz, ng_fec_tick, priv);
525 ng_fec_stop(struct ifnet *ifp)
527 struct ng_fec_private *priv;
528 struct ng_fec_bundle *b;
530 struct ng_fec_portlist *p;
532 priv = ifp->if_softc;
533 b = &priv->fec_bundle;
535 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
537 bifp->if_flags &= ~IFF_UP;
538 (*bifp->if_ioctl)(bifp, SIOCSIFFLAGS, NULL, NULL);
541 callout_stop(&priv->fec_timeout);
545 ng_fec_tick(void *arg)
547 struct ng_fec_private *priv;
548 struct ng_fec_bundle *b;
549 struct ifmediareq ifmr;
551 struct ng_fec_portlist *p;
555 b = &priv->fec_bundle;
557 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
558 bzero((char *)&ifmr, sizeof(ifmr));
560 error = (*ifp->if_ioctl)(ifp, SIOCGIFMEDIA, (caddr_t)&ifmr,
563 printf("fec%d: failed to check status "
564 "of link %s\n", priv->unit, ifp->if_xname);
568 if (ifmr.ifm_status & IFM_AVALID &&
569 IFM_TYPE(ifmr.ifm_active) == IFM_ETHER) {
570 if (ifmr.ifm_status & IFM_ACTIVE) {
571 if (p->fec_ifstat == -1 ||
572 p->fec_ifstat == 0) {
574 printf("fec%d: port %s in bundle "
575 "is up\n", priv->unit,
579 if (p->fec_ifstat == -1 ||
580 p->fec_ifstat == 1) {
582 printf("fec%d: port %s in bundle "
583 "is down\n", priv->unit,
590 ifp = &priv->arpcom.ac_if;
591 if (ifp->if_flags & IFF_RUNNING)
592 callout_reset(&priv->fec_timeout, hz, ng_fec_tick, priv);
596 ng_fec_ifmedia_upd(struct ifnet *ifp)
601 static void ng_fec_ifmedia_sts(struct ifnet *ifp,
602 struct ifmediareq *ifmr)
604 struct ng_fec_private *priv;
605 struct ng_fec_bundle *b;
606 struct ng_fec_portlist *p;
608 priv = ifp->if_softc;
609 b = &priv->fec_bundle;
611 ifmr->ifm_status = IFM_AVALID;
612 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
614 ifmr->ifm_status |= IFM_ACTIVE;
621 * Process an ioctl for the virtual interface
624 ng_fec_ioctl(struct ifnet *ifp, u_long command, caddr_t data, struct ucred *cr)
626 struct ifreq *const ifr = (struct ifreq *) data;
628 struct ng_fec_private *priv;
629 struct ng_fec_bundle *b;
631 priv = ifp->if_softc;
632 b = &priv->fec_bundle;
635 ng_fec_print_ioctl(ifp, command, data);
640 /* These two are mostly handled at a higher layer */
644 error = ether_ioctl(ifp, command, data);
650 * If the interface is marked up and stopped, then start it.
651 * If it is marked down and running, then stop it.
653 if (ifr->ifr_flags & IFF_UP) {
654 if (!(ifp->if_flags & IFF_RUNNING)) {
656 if (b->fec_ifcnt == 1 || b->fec_ifcnt == 3) {
657 printf("fec%d: invalid bundle "
658 "size: %d\n", priv->unit,
663 ifp->if_flags &= ~(IFF_OACTIVE);
664 ifp->if_flags |= IFF_RUNNING;
668 * Bubble down changes in promisc mode to
669 * underlying interfaces.
671 if ((ifp->if_flags & IFF_PROMISC) !=
672 (priv->if_flags & IFF_PROMISC)) {
673 ng_fec_setport(ifp, command, data);
674 priv->if_flags = ifp->if_flags;
677 if (ifp->if_flags & IFF_RUNNING)
678 ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
685 ng_fec_setport(ifp, command, data);
690 error = ifmedia_ioctl(ifp, ifr, &priv->ifmedia, command);
692 /* Stuff that's not supported */
706 * This routine spies on mbufs passing through ether_input(). If
707 * they come from one of the interfaces that are aggregated into
708 * our bundle, we fix up the ifnet pointer and increment our
709 * packet counters so that it looks like the frames are actually
713 ng_fec_input(struct ifnet *ifp, struct mbuf **m0,
714 struct ether_header *eh)
716 struct ng_node *node;
717 struct ng_fec_private *priv;
718 struct ng_fec_bundle *b;
721 struct ng_fec_portlist *p;
724 if (ifp == NULL || m0 == NULL || eh == NULL)
729 /* Sanity check part II */
733 priv = node->private;
734 b = &priv->fec_bundle;
735 bifp = &priv->arpcom.ac_if;
738 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
739 if (p->fec_if == m->m_pkthdr.rcvif)
743 /* Wasn't meant for us; leave this frame alone. */
747 /* Pretend this is our frame. */
748 m->m_pkthdr.rcvif = bifp;
750 bifp->if_ibytes += m->m_pkthdr.len + sizeof(struct ether_header);
752 /* Check for a BPF tap */
753 if (bifp->if_bpf != NULL) {
756 /* This kludge is OK; BPF treats the "mbuf" as read-only */
758 mh.mh_data = (char *)eh;
759 mh.mh_len = ETHER_HDR_LEN;
760 bpf_mtap(bifp, (struct mbuf *)&mh);
765 * Take a quick peek at the packet and see if it's ok for us to use
766 * the inet or inet6 hash methods on it, if they're enabled. We do
767 * this by setting flags in the mbuf header. Once we've made up our
768 * mind what to do, we pass the frame to ether_output() for further
773 ng_fec_output(struct ifnet *ifp, struct mbuf *m,
774 struct sockaddr *dst, struct rtentry *rt0)
776 const priv_p priv = (priv_p) ifp->if_softc;
777 struct ng_fec_bundle *b;
780 /* Check interface flags */
781 if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING)) {
786 b = &priv->fec_bundle;
788 switch (b->fec_btype) {
790 m->m_flags |= M_FEC_MAC;
795 * We can't use the INET address port selection
796 * scheme if this isn't an INET packet.
798 if (dst->sa_family == AF_INET)
799 m->m_flags |= M_FEC_INET;
801 else if (dst->sa_family == AF_INET6)
802 m->m_flags |= M_FEC_INET6;
806 printf("%s: can't do inet aggregation of non "
807 "inet packet\n", ifp->if_xname);
809 m->m_flags |= M_FEC_MAC;
814 printf("%s: bogus hash type: %d\n", ifp->if_xname,
822 * Pass the frame to ether_output() for all the protocol
823 * handling. This will put the ethernet header on the packet
827 error = priv->real_if_output(ifp, m, dst, rt0);
828 if (priv->if_error && !error)
829 error = priv->if_error;
835 * Apply a hash to the source and destination addresses in the packet
836 * in order to select an interface. Also check link status and handle
837 * dead links accordingly.
841 ng_fec_choose_port(struct ng_fec_bundle *b,
842 struct mbuf *m, struct ifnet **ifp)
844 struct ether_header *eh;
853 struct ng_fec_portlist *p;
857 * If there are only two ports, mask off all but the
858 * last bit for XORing. If there are 4, mask off all
859 * but the last 2 bits.
861 mask = b->fec_ifcnt == 2 ? 0x1 : 0x3;
862 eh = mtod(m, struct ether_header *);
864 ip = (struct ip *)(mtod(m, char *) +
865 sizeof(struct ether_header));
867 ip6 = (struct ip6_hdr *)(mtod(m, char *) +
868 sizeof(struct ether_header));
873 * The fg_fec_output() routine is supposed to leave a
874 * flag for us in the mbuf that tells us what hash to
875 * use, but sometimes a new mbuf is prepended to the
876 * chain, so we have to search every mbuf in the chain
881 if (m0->m_flags & (M_FEC_MAC|M_FEC_INET|M_FEC_INET6))
888 switch (m0->m_flags & (M_FEC_MAC|M_FEC_INET|M_FEC_INET6)) {
890 port = (eh->ether_dhost[5] ^
891 eh->ether_shost[5]) & mask;
895 port = (ntohl(ip->ip_dst.s_addr) ^
896 ntohl(ip->ip_src.s_addr)) & mask;
900 port = (ip6->ip6_dst.s6_addr[15] ^
901 ip6->ip6_dst.s6_addr[15]) & mask;
910 TAILQ_FOREACH(p, &b->ng_fec_ports, fec_list) {
911 if (port == p->fec_idx)
916 * Now that we've chosen a port, make sure it's
917 * alive. If it's not alive, cycle through the bundle
918 * looking for a port that is alive. If we don't find
919 * any, return an error.
921 if (p->fec_ifstat != 1) {
922 struct ng_fec_portlist *n = NULL;
924 n = TAILQ_NEXT(p, fec_list);
926 n = TAILQ_FIRST(&b->ng_fec_ports);
928 if (n->fec_ifstat == 1)
930 n = TAILQ_NEXT(n, fec_list);
932 n = TAILQ_FIRST(&b->ng_fec_ports);
945 * Now that the packet has been run through ether_output(), yank it
946 * off our own send queue and stick it on the queue for the appropriate
947 * underlying physical interface. Note that if the interface's send
948 * queue is full, we save an error status in our private netgraph
949 * space which will eventually be handed up to ng_fec_output(), which
950 * will return it to the rest of the IP stack. We need to do this
951 * in order to duplicate the effect of ether_output() returning ENOBUFS
952 * when it detects that an interface's send queue is full. There's no
953 * other way to signal the error status from here since the if_start()
954 * routine is spec'ed to return void.
956 * Once the frame is queued, we call ether_output_frame() to initiate
960 ng_fec_start(struct ifnet *ifp)
962 struct ng_fec_private *priv;
963 struct ng_fec_bundle *b;
964 struct ifnet *oifp = NULL;
968 priv = ifp->if_softc;
969 b = &priv->fec_bundle;
971 IF_DEQUEUE(&ifp->if_snd, m0);
978 /* Queue up packet on the proper port. */
979 error = ng_fec_choose_port(b, m0, &oifp);
983 priv->if_error = ENOBUFS;
988 priv->if_error = ether_output_frame(oifp, m0);
993 * Display an ioctl to the virtual interface
997 ng_fec_print_ioctl(struct ifnet *ifp, int command, caddr_t data)
1001 switch (command & IOC_DIRMASK) {
1017 log(LOG_DEBUG, "%s: %s('%c', %d, char[%d])\n",
1022 IOCPARM_LEN(command));
1026 /************************************************************************
1028 ************************************************************************/
1031 * Constructor for a node
1034 ng_fec_constructor(node_p *nodep)
1036 char ifname[NG_FEC_FEC_NAME_MAX + 1];
1040 struct ng_fec_bundle *b;
1043 /* Allocate node and interface private structures */
1044 MALLOC(priv, priv_p, sizeof(*priv), M_NETGRAPH, M_NOWAIT);
1047 bzero(priv, sizeof(*priv));
1049 ifp = &priv->arpcom.ac_if;
1050 b = &priv->fec_bundle;
1052 /* Link them together */
1053 ifp->if_softc = priv;
1055 /* Get an interface unit number */
1056 if ((error = ng_fec_get_unit(&priv->unit)) != 0) {
1057 FREE(ifp, M_NETGRAPH);
1058 FREE(priv, M_NETGRAPH);
1062 /* Call generic node constructor */
1063 if ((error = ng_make_node_common(&typestruct, nodep)) != 0) {
1064 ng_fec_free_unit(priv->unit);
1065 FREE(ifp, M_NETGRAPH);
1066 FREE(priv, M_NETGRAPH);
1071 /* Link together node and private info */
1072 node->private = priv;
1074 priv->arpcom.ac_netgraph = node;
1076 /* Initialize interface structure */
1077 if_initname(ifp, NG_FEC_FEC_NAME, priv->unit);
1078 ifp->if_start = ng_fec_start;
1079 ifp->if_ioctl = ng_fec_ioctl;
1080 ifp->if_init = ng_fec_init;
1081 ifp->if_watchdog = NULL;
1082 ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
1083 ifp->if_mtu = NG_FEC_MTU_DEFAULT;
1084 ifp->if_flags = (IFF_SIMPLEX|IFF_BROADCAST|IFF_MULTICAST);
1085 ifp->if_type = IFT_PROPVIRTUAL; /* XXX */
1086 ifp->if_addrlen = 0; /* XXX */
1087 ifp->if_hdrlen = 0; /* XXX */
1088 ifp->if_baudrate = 100000000; /* XXX */
1089 TAILQ_INIT(&ifp->if_addrhead);
1091 /* Give this node the same name as the interface (if possible) */
1092 bzero(ifname, sizeof(ifname));
1093 strlcpy(ifname, ifp->if_xname, sizeof(ifname));
1094 if (ng_name_node(node, ifname) != 0)
1095 log(LOG_WARNING, "%s: can't acquire netgraph name\n", ifname);
1097 /* Grab hold of the ether_input pipe. */
1098 if (ng_ether_input_p == NULL)
1099 ng_ether_input_p = ng_fec_input;
1101 /* Attach the interface */
1102 ether_ifattach(ifp, priv->arpcom.ac_enaddr);
1103 priv->real_if_output = ifp->if_output;
1104 ifp->if_output = ng_fec_output;
1105 callout_init(&priv->fec_timeout);
1107 TAILQ_INIT(&b->ng_fec_ports);
1110 ifmedia_init(&priv->ifmedia, 0,
1111 ng_fec_ifmedia_upd, ng_fec_ifmedia_sts);
1112 ifmedia_add(&priv->ifmedia, IFM_ETHER|IFM_NONE, 0, NULL);
1113 ifmedia_set(&priv->ifmedia, IFM_ETHER|IFM_NONE);
1120 * Receive a control message
1123 ng_fec_rcvmsg(node_p node, struct ng_mesg *msg,
1124 const char *retaddr, struct ng_mesg **rptr)
1126 const priv_p priv = node->private;
1127 struct ng_fec_bundle *b;
1128 struct ng_mesg *resp = NULL;
1132 b = &priv->fec_bundle;
1134 switch (msg->header.typecookie) {
1135 case NGM_FEC_COOKIE:
1136 switch (msg->header.cmd) {
1137 case NGM_FEC_ADD_IFACE:
1139 error = ng_fec_addport(priv, ifname);
1141 case NGM_FEC_DEL_IFACE:
1143 error = ng_fec_delport(priv, ifname);
1145 case NGM_FEC_SET_MODE_MAC:
1146 b->fec_btype = FEC_BTYPE_MAC;
1149 case NGM_FEC_SET_MODE_INET:
1150 b->fec_btype = FEC_BTYPE_INET;
1153 case NGM_FEC_SET_MODE_INET6:
1154 b->fec_btype = FEC_BTYPE_INET6;
1170 FREE(resp, M_NETGRAPH);
1171 FREE(msg, M_NETGRAPH);
1176 * Shutdown and remove the node and its associated interface.
1179 ng_fec_rmnode(node_p node)
1181 const priv_p priv = node->private;
1182 struct ng_fec_bundle *b;
1183 struct ng_fec_portlist *p;
1184 char ifname[IFNAMSIZ];
1186 b = &priv->fec_bundle;
1187 ng_fec_stop(&priv->arpcom.ac_if);
1189 while (!TAILQ_EMPTY(&b->ng_fec_ports)) {
1190 p = TAILQ_FIRST(&b->ng_fec_ports);
1191 sprintf(ifname, "%s",
1192 p->fec_if->if_xname); /* XXX: strings */
1193 ng_fec_delport(priv, ifname);
1198 if (ng_ether_input_p != NULL)
1199 ng_ether_input_p = NULL;
1200 ether_ifdetach(&priv->arpcom.ac_if);
1201 ifmedia_removeall(&priv->ifmedia);
1202 ng_fec_free_unit(priv->unit);
1203 FREE(priv, M_NETGRAPH);
1204 node->private = NULL;