Home | History | Annotate | Line # | Download | only in net
if_ethersubr.c revision 1.21.4.2
      1  1.21.4.2        is /*	$NetBSD: if_ethersubr.c,v 1.21.4.2 1997/02/11 20:21:12 is Exp $	*/
      2       1.9       cgd 
      3       1.1       cgd /*
      4       1.8   mycroft  * Copyright (c) 1982, 1989, 1993
      5       1.8   mycroft  *	The Regents of the University of California.  All rights reserved.
      6       1.1       cgd  *
      7       1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8       1.1       cgd  * modification, are permitted provided that the following conditions
      9       1.1       cgd  * are met:
     10       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15       1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16       1.1       cgd  *    must display the following acknowledgement:
     17       1.1       cgd  *	This product includes software developed by the University of
     18       1.1       cgd  *	California, Berkeley and its contributors.
     19       1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20       1.1       cgd  *    may be used to endorse or promote products derived from this software
     21       1.1       cgd  *    without specific prior written permission.
     22       1.1       cgd  *
     23       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33       1.1       cgd  * SUCH DAMAGE.
     34       1.1       cgd  *
     35       1.8   mycroft  *	@(#)if_ethersubr.c	8.1 (Berkeley) 6/10/93
     36       1.1       cgd  */
     37       1.1       cgd 
     38       1.4   mycroft #include <sys/param.h>
     39       1.4   mycroft #include <sys/systm.h>
     40       1.4   mycroft #include <sys/kernel.h>
     41       1.4   mycroft #include <sys/malloc.h>
     42       1.4   mycroft #include <sys/mbuf.h>
     43       1.4   mycroft #include <sys/protosw.h>
     44       1.4   mycroft #include <sys/socket.h>
     45       1.4   mycroft #include <sys/ioctl.h>
     46       1.4   mycroft #include <sys/errno.h>
     47       1.4   mycroft #include <sys/syslog.h>
     48       1.4   mycroft 
     49       1.8   mycroft #include <machine/cpu.h>
     50       1.8   mycroft 
     51       1.4   mycroft #include <net/if.h>
     52       1.4   mycroft #include <net/netisr.h>
     53       1.4   mycroft #include <net/route.h>
     54       1.4   mycroft #include <net/if_llc.h>
     55       1.4   mycroft #include <net/if_dl.h>
     56       1.8   mycroft #include <net/if_types.h>
     57       1.1       cgd 
     58  1.21.4.1        is #include <net/if_ether.h>
     59  1.21.4.1        is 
     60      1.15      phil #include <netinet/in.h>
     61       1.1       cgd #ifdef INET
     62       1.4   mycroft #include <netinet/in_var.h>
     63       1.1       cgd #endif
     64       1.4   mycroft #include <netinet/if_ether.h>
     65       1.1       cgd 
     66       1.1       cgd #ifdef NS
     67       1.4   mycroft #include <netns/ns.h>
     68       1.4   mycroft #include <netns/ns_if.h>
     69       1.1       cgd #endif
     70       1.1       cgd 
     71       1.1       cgd #ifdef ISO
     72       1.4   mycroft #include <netiso/argo_debug.h>
     73       1.4   mycroft #include <netiso/iso.h>
     74       1.4   mycroft #include <netiso/iso_var.h>
     75       1.4   mycroft #include <netiso/iso_snpac.h>
     76       1.1       cgd #endif
     77       1.4   mycroft 
     78       1.8   mycroft #ifdef LLC
     79       1.8   mycroft #include <netccitt/dll.h>
     80       1.8   mycroft #include <netccitt/llc_var.h>
     81       1.8   mycroft #endif
     82       1.8   mycroft 
     83       1.8   mycroft #if defined(LLC) && defined(CCITT)
     84       1.8   mycroft extern struct ifqueue pkintrq;
     85       1.8   mycroft #endif
     86       1.1       cgd 
     87       1.1       cgd u_char	etherbroadcastaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
     88       1.8   mycroft #define senderr(e) { error = (e); goto bad;}
     89       1.1       cgd 
     90  1.21.4.1        is #define SIN(x) ((struct sockaddr_in *)x)
     91  1.21.4.1        is 
     92       1.1       cgd /*
     93       1.1       cgd  * Ethernet output routine.
     94       1.1       cgd  * Encapsulate a packet of type family for the local net.
     95  1.21.4.1        is  * Assumes that ifp is actually pointer to ethercom structure.
     96       1.1       cgd  */
     97       1.8   mycroft int
     98       1.8   mycroft ether_output(ifp, m0, dst, rt0)
     99       1.1       cgd 	register struct ifnet *ifp;
    100       1.1       cgd 	struct mbuf *m0;
    101       1.1       cgd 	struct sockaddr *dst;
    102       1.8   mycroft 	struct rtentry *rt0;
    103       1.1       cgd {
    104      1.10       cgd 	u_int16_t etype;
    105       1.1       cgd 	int s, error = 0;
    106       1.1       cgd  	u_char edst[6];
    107       1.1       cgd 	register struct mbuf *m = m0;
    108       1.8   mycroft 	register struct rtentry *rt;
    109       1.1       cgd 	struct mbuf *mcopy = (struct mbuf *)0;
    110       1.1       cgd 	register struct ether_header *eh;
    111  1.21.4.2        is 	struct arphdr *ah;
    112       1.1       cgd 
    113       1.8   mycroft 	if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
    114       1.8   mycroft 		senderr(ENETDOWN);
    115       1.8   mycroft 	ifp->if_lastchange = time;
    116      1.18  christos 	if ((rt = rt0) != NULL) {
    117       1.8   mycroft 		if ((rt->rt_flags & RTF_UP) == 0) {
    118      1.18  christos 			if ((rt0 = rt = rtalloc1(dst, 1)) != NULL)
    119       1.8   mycroft 				rt->rt_refcnt--;
    120       1.8   mycroft 			else
    121       1.8   mycroft 				senderr(EHOSTUNREACH);
    122       1.8   mycroft 		}
    123       1.8   mycroft 		if (rt->rt_flags & RTF_GATEWAY) {
    124       1.8   mycroft 			if (rt->rt_gwroute == 0)
    125       1.8   mycroft 				goto lookup;
    126       1.8   mycroft 			if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {
    127       1.8   mycroft 				rtfree(rt); rt = rt0;
    128       1.8   mycroft 			lookup: rt->rt_gwroute = rtalloc1(rt->rt_gateway, 1);
    129       1.8   mycroft 				if ((rt = rt->rt_gwroute) == 0)
    130       1.8   mycroft 					senderr(EHOSTUNREACH);
    131       1.8   mycroft 			}
    132       1.8   mycroft 		}
    133       1.8   mycroft 		if (rt->rt_flags & RTF_REJECT)
    134       1.8   mycroft 			if (rt->rt_rmx.rmx_expire == 0 ||
    135       1.8   mycroft 			    time.tv_sec < rt->rt_rmx.rmx_expire)
    136       1.8   mycroft 				senderr(rt == rt0 ? EHOSTDOWN : EHOSTUNREACH);
    137       1.1       cgd 	}
    138       1.1       cgd 	switch (dst->sa_family) {
    139       1.1       cgd 
    140       1.1       cgd #ifdef INET
    141       1.1       cgd 	case AF_INET:
    142  1.21.4.1        is 		if (m->m_flags & M_BCAST)
    143  1.21.4.1        is                 	bcopy((caddr_t)etherbroadcastaddr, (caddr_t)edst,
    144  1.21.4.1        is 				sizeof(edst));
    145  1.21.4.1        is 
    146  1.21.4.1        is 		else if (m->m_flags & M_MCAST) {
    147  1.21.4.1        is 			ETHER_MAP_IP_MULTICAST(&SIN(dst)->sin_addr,
    148  1.21.4.1        is 			    (caddr_t)edst)
    149  1.21.4.1        is 
    150  1.21.4.1        is 		} else if (!arpresolve(ifp, rt, m, dst, edst))
    151       1.1       cgd 			return (0);	/* if not yet resolved */
    152       1.3   hpeyerl 		/* If broadcasting on a simplex interface, loopback a copy */
    153       1.3   hpeyerl 		if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
    154       1.1       cgd 			mcopy = m_copy(m, 0, (int)M_COPYALL);
    155      1.17   mycroft 		etype = htons(ETHERTYPE_IP);
    156  1.21.4.2        is 		break;
    157  1.21.4.2        is 
    158  1.21.4.2        is 	case AF_ARP:
    159  1.21.4.2        is 		ah = mtod(m, struct arphdr *);
    160  1.21.4.2        is 		if (m->m_flags & M_BCAST)
    161  1.21.4.2        is                 	bcopy((caddr_t)etherbroadcastaddr, (caddr_t)edst,
    162  1.21.4.2        is 				sizeof(edst));
    163  1.21.4.2        is 		else
    164  1.21.4.2        is 			bcopy((caddr_t)ar_tha(ah),
    165  1.21.4.2        is 				(caddr_t)edst, sizeof(edst));
    166  1.21.4.2        is 
    167  1.21.4.2        is 		switch(ah->ar_op) {
    168  1.21.4.2        is 		case ARPOP_REVREQUEST:
    169  1.21.4.2        is 		case ARPOP_REVREPLY:
    170  1.21.4.2        is 			etype = htons(ETHERTYPE_REVARP);
    171  1.21.4.2        is 			break;
    172  1.21.4.2        is 
    173  1.21.4.2        is 		case ARPOP_REQUEST:
    174  1.21.4.2        is 		case ARPOP_REPLY:
    175  1.21.4.2        is 		default:
    176  1.21.4.2        is 			etype = htons(ETHERTYPE_ARP);
    177  1.21.4.2        is 		}
    178  1.21.4.2        is 
    179       1.8   mycroft 		break;
    180       1.1       cgd #endif
    181       1.1       cgd #ifdef NS
    182       1.1       cgd 	case AF_NS:
    183      1.17   mycroft 		etype = htons(ETHERTYPE_NS);
    184       1.1       cgd  		bcopy((caddr_t)&(((struct sockaddr_ns *)dst)->sns_addr.x_host),
    185       1.1       cgd 		    (caddr_t)edst, sizeof (edst));
    186       1.1       cgd 		if (!bcmp((caddr_t)edst, (caddr_t)&ns_thishost, sizeof(edst)))
    187       1.1       cgd 			return (looutput(ifp, m, dst, rt));
    188       1.3   hpeyerl 		/* If broadcasting on a simplex interface, loopback a copy */
    189       1.3   hpeyerl 		if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
    190       1.1       cgd 			mcopy = m_copy(m, 0, (int)M_COPYALL);
    191       1.8   mycroft 		break;
    192       1.1       cgd #endif
    193       1.1       cgd #ifdef	ISO
    194       1.1       cgd 	case AF_ISO: {
    195       1.1       cgd 		int	snpalen;
    196       1.1       cgd 		struct	llc *l;
    197       1.8   mycroft 		register struct sockaddr_dl *sdl;
    198       1.1       cgd 
    199       1.8   mycroft 		if (rt && (sdl = (struct sockaddr_dl *)rt->rt_gateway) &&
    200       1.8   mycroft 		    sdl->sdl_family == AF_LINK && sdl->sdl_alen > 0) {
    201       1.8   mycroft 			bcopy(LLADDR(sdl), (caddr_t)edst, sizeof(edst));
    202      1.18  christos 		} else {
    203      1.18  christos 			error = iso_snparesolve(ifp, (struct sockaddr_iso *)dst,
    204      1.18  christos 						(char *)edst, &snpalen);
    205      1.18  christos 			if (error)
    206      1.18  christos 				goto bad; /* Not Resolved */
    207      1.18  christos 		}
    208       1.3   hpeyerl 		/* If broadcasting on a simplex interface, loopback a copy */
    209       1.8   mycroft 		if (*edst & 1)
    210       1.8   mycroft 			m->m_flags |= (M_BCAST|M_MCAST);
    211       1.3   hpeyerl 		if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX) &&
    212       1.1       cgd 		    (mcopy = m_copy(m, 0, (int)M_COPYALL))) {
    213       1.1       cgd 			M_PREPEND(mcopy, sizeof (*eh), M_DONTWAIT);
    214       1.1       cgd 			if (mcopy) {
    215       1.1       cgd 				eh = mtod(mcopy, struct ether_header *);
    216       1.1       cgd 				bcopy((caddr_t)edst,
    217       1.1       cgd 				      (caddr_t)eh->ether_dhost, sizeof (edst));
    218  1.21.4.1        is 				bcopy(LLADDR(ifp->if_sadl),
    219       1.1       cgd 				      (caddr_t)eh->ether_shost, sizeof (edst));
    220       1.1       cgd 			}
    221       1.1       cgd 		}
    222       1.1       cgd 		M_PREPEND(m, 3, M_DONTWAIT);
    223       1.1       cgd 		if (m == NULL)
    224       1.1       cgd 			return (0);
    225      1.17   mycroft 		etype = htons(m->m_pkthdr.len);
    226       1.1       cgd 		l = mtod(m, struct llc *);
    227       1.1       cgd 		l->llc_dsap = l->llc_ssap = LLC_ISO_LSAP;
    228       1.1       cgd 		l->llc_control = LLC_UI;
    229      1.18  christos #ifdef ARGO_DEBUG
    230      1.18  christos 		if (argo_debug[D_ETHER]) {
    231       1.1       cgd 			int i;
    232      1.21  christos 			printf("unoutput: sending pkt to: ");
    233       1.1       cgd 			for (i=0; i<6; i++)
    234      1.21  christos 				printf("%x ", edst[i] & 0xff);
    235      1.21  christos 			printf("\n");
    236      1.18  christos 		}
    237      1.18  christos #endif
    238       1.8   mycroft 		} break;
    239       1.8   mycroft #endif /* ISO */
    240       1.8   mycroft #ifdef	LLC
    241       1.8   mycroft /*	case AF_NSAP: */
    242       1.8   mycroft 	case AF_CCITT: {
    243       1.8   mycroft 		register struct sockaddr_dl *sdl =
    244       1.8   mycroft 			(struct sockaddr_dl *) rt -> rt_gateway;
    245       1.8   mycroft 
    246       1.8   mycroft 		if (sdl && sdl->sdl_family == AF_LINK
    247       1.8   mycroft 		    && sdl->sdl_alen > 0) {
    248       1.8   mycroft 			bcopy(LLADDR(sdl), (char *)edst,
    249       1.8   mycroft 				sizeof(edst));
    250       1.8   mycroft 		} else goto bad; /* Not a link interface ? Funny ... */
    251       1.8   mycroft 		if ((ifp->if_flags & IFF_SIMPLEX) && (*edst & 1) &&
    252       1.8   mycroft 		    (mcopy = m_copy(m, 0, (int)M_COPYALL))) {
    253       1.8   mycroft 			M_PREPEND(mcopy, sizeof (*eh), M_DONTWAIT);
    254       1.8   mycroft 			if (mcopy) {
    255       1.8   mycroft 				eh = mtod(mcopy, struct ether_header *);
    256       1.8   mycroft 				bcopy((caddr_t)edst,
    257       1.8   mycroft 				      (caddr_t)eh->ether_dhost, sizeof (edst));
    258  1.21.4.1        is 				bcopy(LLADDR(ifp->if_sadl),
    259       1.8   mycroft 				      (caddr_t)eh->ether_shost, sizeof (edst));
    260       1.8   mycroft 			}
    261       1.3   hpeyerl 		}
    262      1.17   mycroft 		etype = htons(m->m_pkthdr.len);
    263       1.8   mycroft #ifdef LLC_DEBUG
    264       1.8   mycroft 		{
    265       1.8   mycroft 			int i;
    266       1.8   mycroft 			register struct llc *l = mtod(m, struct llc *);
    267       1.8   mycroft 
    268      1.21  christos 			printf("ether_output: sending LLC2 pkt to: ");
    269       1.8   mycroft 			for (i=0; i<6; i++)
    270      1.21  christos 				printf("%x ", edst[i] & 0xff);
    271      1.21  christos 			printf(" len 0x%x dsap 0x%x ssap 0x%x control 0x%x\n",
    272      1.17   mycroft 			    m->m_pkthdr.len, l->llc_dsap & 0xff, l->llc_ssap &0xff,
    273      1.17   mycroft 			    l->llc_control & 0xff);
    274       1.8   mycroft 
    275       1.8   mycroft 		}
    276       1.8   mycroft #endif /* LLC_DEBUG */
    277       1.8   mycroft 		} break;
    278       1.8   mycroft #endif /* LLC */
    279       1.1       cgd 
    280       1.1       cgd 	case AF_UNSPEC:
    281       1.1       cgd 		eh = (struct ether_header *)dst->sa_data;
    282       1.1       cgd  		bcopy((caddr_t)eh->ether_dhost, (caddr_t)edst, sizeof (edst));
    283       1.8   mycroft 		/* AF_UNSPEC doesn't swap the byte order of the ether_type. */
    284      1.17   mycroft 		etype = eh->ether_type;
    285       1.8   mycroft 		break;
    286       1.1       cgd 
    287       1.1       cgd 	default:
    288      1.21  christos 		printf("%s: can't handle af%d\n", ifp->if_xname,
    289       1.1       cgd 			dst->sa_family);
    290       1.8   mycroft 		senderr(EAFNOSUPPORT);
    291       1.1       cgd 	}
    292       1.1       cgd 
    293       1.1       cgd 	if (mcopy)
    294       1.1       cgd 		(void) looutput(ifp, mcopy, dst, rt);
    295      1.16   mycroft 
    296       1.1       cgd 	/*
    297       1.1       cgd 	 * Add local net header.  If no space in first mbuf,
    298       1.1       cgd 	 * allocate another.
    299       1.1       cgd 	 */
    300       1.1       cgd 	M_PREPEND(m, sizeof (struct ether_header), M_DONTWAIT);
    301       1.8   mycroft 	if (m == 0)
    302       1.8   mycroft 		senderr(ENOBUFS);
    303       1.1       cgd 	eh = mtod(m, struct ether_header *);
    304       1.8   mycroft 	bcopy((caddr_t)&etype,(caddr_t)&eh->ether_type,
    305       1.1       cgd 		sizeof(eh->ether_type));
    306       1.1       cgd  	bcopy((caddr_t)edst, (caddr_t)eh->ether_dhost, sizeof (edst));
    307  1.21.4.1        is  	bcopy(LLADDR(ifp->if_sadl), (caddr_t)eh->ether_shost,
    308       1.1       cgd 	    sizeof(eh->ether_shost));
    309       1.1       cgd 	s = splimp();
    310       1.1       cgd 	/*
    311       1.1       cgd 	 * Queue message on interface, and start output if interface
    312       1.1       cgd 	 * not yet active.
    313       1.1       cgd 	 */
    314       1.1       cgd 	if (IF_QFULL(&ifp->if_snd)) {
    315       1.1       cgd 		IF_DROP(&ifp->if_snd);
    316       1.1       cgd 		splx(s);
    317       1.8   mycroft 		senderr(ENOBUFS);
    318       1.1       cgd 	}
    319      1.14   mycroft 	ifp->if_obytes += m->m_pkthdr.len;
    320       1.1       cgd 	IF_ENQUEUE(&ifp->if_snd, m);
    321       1.1       cgd 	if ((ifp->if_flags & IFF_OACTIVE) == 0)
    322       1.1       cgd 		(*ifp->if_start)(ifp);
    323       1.1       cgd 	splx(s);
    324       1.3   hpeyerl 	if (m->m_flags & M_MCAST)
    325       1.1       cgd 		ifp->if_omcasts++;
    326       1.1       cgd 	return (error);
    327       1.1       cgd 
    328       1.1       cgd bad:
    329       1.1       cgd 	if (m)
    330       1.1       cgd 		m_freem(m);
    331       1.1       cgd 	return (error);
    332       1.1       cgd }
    333       1.1       cgd 
    334       1.1       cgd /*
    335       1.1       cgd  * Process a received Ethernet packet;
    336       1.1       cgd  * the packet is in the mbuf chain m without
    337       1.1       cgd  * the ether header, which is provided separately.
    338       1.1       cgd  */
    339       1.8   mycroft void
    340       1.1       cgd ether_input(ifp, eh, m)
    341       1.1       cgd 	struct ifnet *ifp;
    342       1.1       cgd 	register struct ether_header *eh;
    343       1.1       cgd 	struct mbuf *m;
    344       1.1       cgd {
    345       1.1       cgd 	register struct ifqueue *inq;
    346      1.18  christos 	u_int16_t etype;
    347      1.18  christos 	int s;
    348      1.18  christos #if defined (ISO) || defined (LLC)
    349       1.1       cgd 	register struct llc *l;
    350  1.21.4.1        is 	struct ethercom *ac = (struct ethercom *)ifp;
    351      1.18  christos #endif
    352       1.1       cgd 
    353       1.8   mycroft 	if ((ifp->if_flags & IFF_UP) == 0) {
    354       1.8   mycroft 		m_freem(m);
    355       1.8   mycroft 		return;
    356       1.8   mycroft 	}
    357       1.1       cgd 	ifp->if_lastchange = time;
    358       1.1       cgd 	ifp->if_ibytes += m->m_pkthdr.len + sizeof (*eh);
    359       1.8   mycroft 	if (eh->ether_dhost[0] & 1) {
    360       1.8   mycroft 		if (bcmp((caddr_t)etherbroadcastaddr, (caddr_t)eh->ether_dhost,
    361       1.8   mycroft 		    sizeof(etherbroadcastaddr)) == 0)
    362       1.8   mycroft 			m->m_flags |= M_BCAST;
    363       1.8   mycroft 		else
    364       1.8   mycroft 			m->m_flags |= M_MCAST;
    365       1.8   mycroft 	}
    366       1.1       cgd 	if (m->m_flags & (M_BCAST|M_MCAST))
    367       1.1       cgd 		ifp->if_imcasts++;
    368       1.1       cgd 
    369       1.5   deraadt 	etype = ntohs(eh->ether_type);
    370       1.5   deraadt 	switch (etype) {
    371       1.1       cgd #ifdef INET
    372       1.1       cgd 	case ETHERTYPE_IP:
    373       1.1       cgd 		schednetisr(NETISR_IP);
    374       1.1       cgd 		inq = &ipintrq;
    375       1.1       cgd 		break;
    376       1.1       cgd 
    377       1.1       cgd 	case ETHERTYPE_ARP:
    378       1.8   mycroft 		schednetisr(NETISR_ARP);
    379       1.8   mycroft 		inq = &arpintrq;
    380       1.8   mycroft 		break;
    381       1.7     glass 
    382       1.7     glass 	case ETHERTYPE_REVARP:
    383       1.8   mycroft 		revarpinput(m);	/* XXX queue? */
    384       1.1       cgd 		return;
    385       1.1       cgd #endif
    386       1.1       cgd #ifdef NS
    387       1.1       cgd 	case ETHERTYPE_NS:
    388       1.1       cgd 		schednetisr(NETISR_NS);
    389       1.1       cgd 		inq = &nsintrq;
    390       1.1       cgd 		break;
    391       1.1       cgd 
    392       1.1       cgd #endif
    393       1.1       cgd 	default:
    394       1.8   mycroft #if defined (ISO) || defined (LLC)
    395      1.11   mycroft 		if (etype > ETHERMTU)
    396       1.1       cgd 			goto dropanyway;
    397       1.1       cgd 		l = mtod(m, struct llc *);
    398       1.8   mycroft 		switch (l->llc_dsap) {
    399       1.8   mycroft #ifdef	ISO
    400       1.8   mycroft 		case LLC_ISO_LSAP:
    401       1.8   mycroft 			switch (l->llc_control) {
    402       1.8   mycroft 			case LLC_UI:
    403       1.8   mycroft 				/* LLC_UI_P forbidden in class 1 service */
    404       1.8   mycroft 				if ((l->llc_dsap == LLC_ISO_LSAP) &&
    405       1.8   mycroft 				    (l->llc_ssap == LLC_ISO_LSAP)) {
    406       1.8   mycroft 					/* LSAP for ISO */
    407      1.11   mycroft 					if (m->m_pkthdr.len > etype)
    408      1.11   mycroft 						m_adj(m, etype - m->m_pkthdr.len);
    409       1.8   mycroft 					m->m_data += 3;		/* XXX */
    410       1.8   mycroft 					m->m_len -= 3;		/* XXX */
    411       1.8   mycroft 					m->m_pkthdr.len -= 3;	/* XXX */
    412       1.8   mycroft 					M_PREPEND(m, sizeof *eh, M_DONTWAIT);
    413       1.8   mycroft 					if (m == 0)
    414       1.8   mycroft 						return;
    415       1.8   mycroft 					*mtod(m, struct ether_header *) = *eh;
    416      1.18  christos #ifdef ARGO_DEBUG
    417      1.18  christos 					if (argo_debug[D_ETHER])
    418      1.21  christos 						printf("clnp packet");
    419      1.18  christos #endif
    420       1.8   mycroft 					schednetisr(NETISR_ISO);
    421       1.8   mycroft 					inq = &clnlintrq;
    422       1.8   mycroft 					break;
    423       1.8   mycroft 				}
    424       1.8   mycroft 				goto dropanyway;
    425       1.8   mycroft 
    426       1.8   mycroft 			case LLC_XID:
    427       1.8   mycroft 			case LLC_XID_P:
    428       1.8   mycroft 				if(m->m_len < 6)
    429       1.8   mycroft 					goto dropanyway;
    430       1.8   mycroft 				l->llc_window = 0;
    431       1.8   mycroft 				l->llc_fid = 9;
    432       1.8   mycroft 				l->llc_class = 1;
    433       1.8   mycroft 				l->llc_dsap = l->llc_ssap = 0;
    434       1.8   mycroft 				/* Fall through to */
    435       1.8   mycroft 			case LLC_TEST:
    436       1.8   mycroft 			case LLC_TEST_P:
    437       1.8   mycroft 			{
    438       1.8   mycroft 				struct sockaddr sa;
    439       1.8   mycroft 				register struct ether_header *eh2;
    440       1.8   mycroft 				int i;
    441       1.8   mycroft 				u_char c = l->llc_dsap;
    442       1.8   mycroft 
    443       1.8   mycroft 				l->llc_dsap = l->llc_ssap;
    444       1.8   mycroft 				l->llc_ssap = c;
    445       1.8   mycroft 				if (m->m_flags & (M_BCAST | M_MCAST))
    446  1.21.4.1        is 					bcopy(LLADDR(ifp->if_sadl),
    447       1.8   mycroft 					      (caddr_t)eh->ether_dhost, 6);
    448       1.8   mycroft 				sa.sa_family = AF_UNSPEC;
    449       1.8   mycroft 				sa.sa_len = sizeof(sa);
    450       1.8   mycroft 				eh2 = (struct ether_header *)sa.sa_data;
    451       1.8   mycroft 				for (i = 0; i < 6; i++) {
    452       1.8   mycroft 					eh2->ether_shost[i] = c = eh->ether_dhost[i];
    453       1.8   mycroft 					eh2->ether_dhost[i] =
    454       1.8   mycroft 						eh->ether_dhost[i] = eh->ether_shost[i];
    455       1.8   mycroft 					eh->ether_shost[i] = c;
    456       1.8   mycroft 				}
    457       1.8   mycroft 				ifp->if_output(ifp, m, &sa, NULL);
    458       1.8   mycroft 				return;
    459       1.8   mycroft 			}
    460       1.8   mycroft 			default:
    461       1.8   mycroft 				m_freem(m);
    462       1.8   mycroft 				return;
    463       1.8   mycroft 			}
    464       1.8   mycroft 			break;
    465       1.8   mycroft #endif /* ISO */
    466       1.8   mycroft #ifdef LLC
    467       1.8   mycroft 		case LLC_X25_LSAP:
    468       1.8   mycroft 		{
    469      1.11   mycroft 			if (m->m_pkthdr.len > etype)
    470      1.11   mycroft 				m_adj(m, etype - m->m_pkthdr.len);
    471       1.8   mycroft 			M_PREPEND(m, sizeof(struct sdl_hdr) , M_DONTWAIT);
    472       1.1       cgd 			if (m == 0)
    473       1.1       cgd 				return;
    474       1.8   mycroft 			if ( !sdl_sethdrif(ifp, eh->ether_shost, LLC_X25_LSAP,
    475       1.8   mycroft 					    eh->ether_dhost, LLC_X25_LSAP, 6,
    476       1.8   mycroft 					    mtod(m, struct sdl_hdr *)))
    477       1.8   mycroft 				panic("ETHER cons addr failure");
    478      1.11   mycroft 			mtod(m, struct sdl_hdr *)->sdlhdr_len = etype;
    479       1.8   mycroft #ifdef LLC_DEBUG
    480      1.21  christos 				printf("llc packet\n");
    481       1.8   mycroft #endif /* LLC_DEBUG */
    482       1.8   mycroft 			schednetisr(NETISR_CCITT);
    483       1.8   mycroft 			inq = &llcintrq;
    484       1.1       cgd 			break;
    485       1.1       cgd 		}
    486       1.8   mycroft #endif /* LLC */
    487       1.1       cgd 		dropanyway:
    488       1.1       cgd 		default:
    489       1.8   mycroft 			m_freem(m);
    490       1.8   mycroft 			return;
    491       1.8   mycroft 		}
    492       1.8   mycroft #else /* ISO || LLC */
    493       1.1       cgd 	    m_freem(m);
    494       1.1       cgd 	    return;
    495       1.8   mycroft #endif /* ISO || LLC */
    496       1.1       cgd 	}
    497       1.1       cgd 
    498       1.1       cgd 	s = splimp();
    499       1.1       cgd 	if (IF_QFULL(inq)) {
    500       1.1       cgd 		IF_DROP(inq);
    501       1.1       cgd 		m_freem(m);
    502       1.1       cgd 	} else
    503       1.1       cgd 		IF_ENQUEUE(inq, m);
    504       1.1       cgd 	splx(s);
    505       1.1       cgd }
    506       1.1       cgd 
    507       1.1       cgd /*
    508       1.1       cgd  * Convert Ethernet address to printable (loggable) representation.
    509       1.1       cgd  */
    510       1.1       cgd static char digits[] = "0123456789abcdef";
    511       1.1       cgd char *
    512       1.1       cgd ether_sprintf(ap)
    513       1.1       cgd 	register u_char *ap;
    514       1.1       cgd {
    515       1.1       cgd 	register i;
    516       1.1       cgd 	static char etherbuf[18];
    517       1.1       cgd 	register char *cp = etherbuf;
    518       1.1       cgd 
    519       1.1       cgd 	for (i = 0; i < 6; i++) {
    520       1.1       cgd 		*cp++ = digits[*ap >> 4];
    521       1.1       cgd 		*cp++ = digits[*ap++ & 0xf];
    522       1.1       cgd 		*cp++ = ':';
    523       1.1       cgd 	}
    524       1.1       cgd 	*--cp = 0;
    525       1.1       cgd 	return (etherbuf);
    526       1.1       cgd }
    527       1.8   mycroft 
    528       1.8   mycroft /*
    529       1.8   mycroft  * Perform common duties while attaching to interface list
    530       1.8   mycroft  */
    531       1.8   mycroft void
    532  1.21.4.1        is ether_ifattach(ifp, lla)
    533       1.8   mycroft 	register struct ifnet *ifp;
    534  1.21.4.1        is 	u_int8_t * lla;
    535       1.8   mycroft {
    536       1.8   mycroft 	register struct sockaddr_dl *sdl;
    537       1.8   mycroft 
    538       1.8   mycroft 	ifp->if_type = IFT_ETHER;
    539       1.8   mycroft 	ifp->if_addrlen = 6;
    540       1.8   mycroft 	ifp->if_hdrlen = 14;
    541       1.8   mycroft 	ifp->if_mtu = ETHERMTU;
    542      1.12   mycroft 	ifp->if_output = ether_output;
    543  1.21.4.1        is 	if ((sdl = ifp->if_sadl) &&
    544  1.21.4.1        is 	    sdl->sdl_family == AF_LINK) {
    545  1.21.4.1        is 		sdl->sdl_type = IFT_ETHER;
    546  1.21.4.1        is 		sdl->sdl_alen = ifp->if_addrlen;
    547  1.21.4.1        is 		bcopy((caddr_t)lla, LLADDR(sdl), ifp->if_addrlen);
    548  1.21.4.1        is 	}
    549  1.21.4.1        is 	LIST_INIT(&((struct ethercom *)ifp)->ec_multiaddrs);
    550       1.8   mycroft }
    551       1.8   mycroft 
    552       1.3   hpeyerl u_char	ether_ipmulticast_min[6] = { 0x01, 0x00, 0x5e, 0x00, 0x00, 0x00 };
    553       1.3   hpeyerl u_char	ether_ipmulticast_max[6] = { 0x01, 0x00, 0x5e, 0x7f, 0xff, 0xff };
    554       1.3   hpeyerl /*
    555       1.3   hpeyerl  * Add an Ethernet multicast address or range of addresses to the list for a
    556       1.3   hpeyerl  * given interface.
    557       1.3   hpeyerl  */
    558       1.3   hpeyerl int
    559  1.21.4.1        is ether_addmulti(ifr, ec)
    560       1.3   hpeyerl 	struct ifreq *ifr;
    561  1.21.4.1        is 	register struct ethercom *ec;
    562       1.3   hpeyerl {
    563       1.3   hpeyerl 	register struct ether_multi *enm;
    564       1.3   hpeyerl 	struct sockaddr_in *sin;
    565       1.3   hpeyerl 	u_char addrlo[6];
    566       1.3   hpeyerl 	u_char addrhi[6];
    567       1.3   hpeyerl 	int s = splimp();
    568       1.3   hpeyerl 
    569       1.3   hpeyerl 	switch (ifr->ifr_addr.sa_family) {
    570       1.3   hpeyerl 
    571       1.3   hpeyerl 	case AF_UNSPEC:
    572       1.3   hpeyerl 		bcopy(ifr->ifr_addr.sa_data, addrlo, 6);
    573       1.3   hpeyerl 		bcopy(addrlo, addrhi, 6);
    574       1.3   hpeyerl 		break;
    575       1.3   hpeyerl 
    576       1.3   hpeyerl #ifdef INET
    577       1.3   hpeyerl 	case AF_INET:
    578       1.3   hpeyerl 		sin = (struct sockaddr_in *)&(ifr->ifr_addr);
    579       1.3   hpeyerl 		if (sin->sin_addr.s_addr == INADDR_ANY) {
    580       1.3   hpeyerl 			/*
    581       1.3   hpeyerl 			 * An IP address of INADDR_ANY means listen to all
    582       1.3   hpeyerl 			 * of the Ethernet multicast addresses used for IP.
    583       1.3   hpeyerl 			 * (This is for the sake of IP multicast routers.)
    584       1.3   hpeyerl 			 */
    585       1.3   hpeyerl 			bcopy(ether_ipmulticast_min, addrlo, 6);
    586       1.3   hpeyerl 			bcopy(ether_ipmulticast_max, addrhi, 6);
    587       1.3   hpeyerl 		}
    588       1.3   hpeyerl 		else {
    589       1.3   hpeyerl 			ETHER_MAP_IP_MULTICAST(&sin->sin_addr, addrlo);
    590       1.3   hpeyerl 			bcopy(addrlo, addrhi, 6);
    591       1.3   hpeyerl 		}
    592       1.3   hpeyerl 		break;
    593       1.3   hpeyerl #endif
    594       1.3   hpeyerl 
    595       1.3   hpeyerl 	default:
    596       1.3   hpeyerl 		splx(s);
    597       1.3   hpeyerl 		return (EAFNOSUPPORT);
    598       1.3   hpeyerl 	}
    599       1.3   hpeyerl 
    600       1.3   hpeyerl 	/*
    601       1.3   hpeyerl 	 * Verify that we have valid Ethernet multicast addresses.
    602       1.3   hpeyerl 	 */
    603       1.3   hpeyerl 	if ((addrlo[0] & 0x01) != 1 || (addrhi[0] & 0x01) != 1) {
    604       1.3   hpeyerl 		splx(s);
    605       1.3   hpeyerl 		return (EINVAL);
    606       1.3   hpeyerl 	}
    607       1.3   hpeyerl 	/*
    608       1.3   hpeyerl 	 * See if the address range is already in the list.
    609       1.3   hpeyerl 	 */
    610  1.21.4.1        is 	ETHER_LOOKUP_MULTI(addrlo, addrhi, ec, enm);
    611       1.3   hpeyerl 	if (enm != NULL) {
    612       1.3   hpeyerl 		/*
    613       1.3   hpeyerl 		 * Found it; just increment the reference count.
    614       1.3   hpeyerl 		 */
    615       1.3   hpeyerl 		++enm->enm_refcount;
    616       1.3   hpeyerl 		splx(s);
    617       1.3   hpeyerl 		return (0);
    618       1.3   hpeyerl 	}
    619       1.3   hpeyerl 	/*
    620       1.3   hpeyerl 	 * New address or range; malloc a new multicast record
    621       1.3   hpeyerl 	 * and link it into the interface's multicast list.
    622       1.3   hpeyerl 	 */
    623       1.3   hpeyerl 	enm = (struct ether_multi *)malloc(sizeof(*enm), M_IFMADDR, M_NOWAIT);
    624       1.3   hpeyerl 	if (enm == NULL) {
    625       1.3   hpeyerl 		splx(s);
    626       1.3   hpeyerl 		return (ENOBUFS);
    627       1.3   hpeyerl 	}
    628       1.3   hpeyerl 	bcopy(addrlo, enm->enm_addrlo, 6);
    629       1.3   hpeyerl 	bcopy(addrhi, enm->enm_addrhi, 6);
    630  1.21.4.1        is 	enm->enm_ec = ec;
    631       1.3   hpeyerl 	enm->enm_refcount = 1;
    632  1.21.4.1        is 	LIST_INSERT_HEAD(&ec->ec_multiaddrs, enm, enm_list);
    633  1.21.4.1        is 	ec->ec_multicnt++;
    634       1.3   hpeyerl 	splx(s);
    635       1.3   hpeyerl 	/*
    636       1.3   hpeyerl 	 * Return ENETRESET to inform the driver that the list has changed
    637       1.3   hpeyerl 	 * and its reception filter should be adjusted accordingly.
    638       1.3   hpeyerl 	 */
    639       1.3   hpeyerl 	return (ENETRESET);
    640       1.3   hpeyerl }
    641       1.3   hpeyerl 
    642       1.3   hpeyerl /*
    643       1.3   hpeyerl  * Delete a multicast address record.
    644       1.3   hpeyerl  */
    645       1.3   hpeyerl int
    646  1.21.4.1        is ether_delmulti(ifr, ec)
    647       1.3   hpeyerl 	struct ifreq *ifr;
    648  1.21.4.1        is 	register struct ethercom *ec;
    649       1.3   hpeyerl {
    650       1.3   hpeyerl 	register struct ether_multi *enm;
    651       1.3   hpeyerl 	struct sockaddr_in *sin;
    652       1.3   hpeyerl 	u_char addrlo[6];
    653       1.3   hpeyerl 	u_char addrhi[6];
    654       1.3   hpeyerl 	int s = splimp();
    655       1.3   hpeyerl 
    656       1.3   hpeyerl 	switch (ifr->ifr_addr.sa_family) {
    657       1.3   hpeyerl 
    658       1.3   hpeyerl 	case AF_UNSPEC:
    659       1.3   hpeyerl 		bcopy(ifr->ifr_addr.sa_data, addrlo, 6);
    660       1.3   hpeyerl 		bcopy(addrlo, addrhi, 6);
    661       1.3   hpeyerl 		break;
    662       1.3   hpeyerl 
    663       1.3   hpeyerl #ifdef INET
    664       1.3   hpeyerl 	case AF_INET:
    665       1.3   hpeyerl 		sin = (struct sockaddr_in *)&(ifr->ifr_addr);
    666       1.3   hpeyerl 		if (sin->sin_addr.s_addr == INADDR_ANY) {
    667       1.3   hpeyerl 			/*
    668       1.3   hpeyerl 			 * An IP address of INADDR_ANY means stop listening
    669       1.3   hpeyerl 			 * to the range of Ethernet multicast addresses used
    670       1.3   hpeyerl 			 * for IP.
    671       1.3   hpeyerl 			 */
    672       1.3   hpeyerl 			bcopy(ether_ipmulticast_min, addrlo, 6);
    673       1.3   hpeyerl 			bcopy(ether_ipmulticast_max, addrhi, 6);
    674       1.3   hpeyerl 		}
    675       1.3   hpeyerl 		else {
    676       1.3   hpeyerl 			ETHER_MAP_IP_MULTICAST(&sin->sin_addr, addrlo);
    677       1.3   hpeyerl 			bcopy(addrlo, addrhi, 6);
    678       1.3   hpeyerl 		}
    679       1.3   hpeyerl 		break;
    680       1.3   hpeyerl #endif
    681       1.3   hpeyerl 
    682       1.3   hpeyerl 	default:
    683       1.3   hpeyerl 		splx(s);
    684       1.3   hpeyerl 		return (EAFNOSUPPORT);
    685       1.3   hpeyerl 	}
    686       1.3   hpeyerl 
    687       1.3   hpeyerl 	/*
    688       1.3   hpeyerl 	 * Look up the address in our list.
    689       1.3   hpeyerl 	 */
    690  1.21.4.1        is 	ETHER_LOOKUP_MULTI(addrlo, addrhi, ec, enm);
    691       1.3   hpeyerl 	if (enm == NULL) {
    692       1.3   hpeyerl 		splx(s);
    693       1.3   hpeyerl 		return (ENXIO);
    694       1.3   hpeyerl 	}
    695       1.3   hpeyerl 	if (--enm->enm_refcount != 0) {
    696       1.3   hpeyerl 		/*
    697       1.3   hpeyerl 		 * Still some claims to this record.
    698       1.3   hpeyerl 		 */
    699       1.3   hpeyerl 		splx(s);
    700       1.3   hpeyerl 		return (0);
    701       1.3   hpeyerl 	}
    702       1.3   hpeyerl 	/*
    703       1.3   hpeyerl 	 * No remaining claims to this record; unlink and free it.
    704       1.3   hpeyerl 	 */
    705      1.13   mycroft 	LIST_REMOVE(enm, enm_list);
    706       1.3   hpeyerl 	free(enm, M_IFMADDR);
    707  1.21.4.1        is 	ec->ec_multicnt--;
    708       1.3   hpeyerl 	splx(s);
    709       1.3   hpeyerl 	/*
    710       1.3   hpeyerl 	 * Return ENETRESET to inform the driver that the list has changed
    711       1.3   hpeyerl 	 * and its reception filter should be adjusted accordingly.
    712       1.3   hpeyerl 	 */
    713       1.3   hpeyerl 	return (ENETRESET);
    714       1.3   hpeyerl }
    715