xref: /freebsd/sys/net/if_ethersubr.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * Copyright (c) 1982, 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	@(#)if_ethersubr.c	8.1 (Berkeley) 6/10/93
34  * $FreeBSD$
35  */
36 
37 #include "opt_atalk.h"
38 #include "opt_inet.h"
39 #include "opt_inet6.h"
40 #include "opt_ipx.h"
41 #include "opt_bdg.h"
42 #include "opt_netgraph.h"
43 
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/kernel.h>
47 #include <sys/malloc.h>
48 #include <sys/mbuf.h>
49 #include <sys/random.h>
50 #include <sys/socket.h>
51 #include <sys/sockio.h>
52 #include <sys/sysctl.h>
53 
54 #include <net/if.h>
55 #include <net/netisr.h>
56 #include <net/route.h>
57 #include <net/if_llc.h>
58 #include <net/if_dl.h>
59 #include <net/if_types.h>
60 #include <net/bpf.h>
61 #include <net/ethernet.h>
62 
63 #if defined(INET) || defined(INET6)
64 #include <netinet/in.h>
65 #include <netinet/in_var.h>
66 #include <netinet/if_ether.h>
67 #endif
68 #ifdef INET6
69 #include <netinet6/nd6.h>
70 #endif
71 
72 #ifdef IPX
73 #include <netipx/ipx.h>
74 #include <netipx/ipx_if.h>
75 int (*ef_inputp)(struct ifnet*, struct ether_header *eh, struct mbuf *m);
76 int (*ef_outputp)(struct ifnet *ifp, struct mbuf **mp,
77 		struct sockaddr *dst, short *tp, int *hlen);
78 #endif
79 
80 #ifdef NS
81 #include <netns/ns.h>
82 #include <netns/ns_if.h>
83 ushort ns_nettype;
84 int ether_outputdebug = 0;
85 int ether_inputdebug = 0;
86 #endif
87 
88 #ifdef NETATALK
89 #include <netatalk/at.h>
90 #include <netatalk/at_var.h>
91 #include <netatalk/at_extern.h>
92 
93 #define llc_snap_org_code llc_un.type_snap.org_code
94 #define llc_snap_ether_type llc_un.type_snap.ether_type
95 
96 extern u_char	at_org_code[3];
97 extern u_char	aarp_org_code[3];
98 #endif /* NETATALK */
99 
100 #ifdef BRIDGE
101 #include <net/bridge.h>
102 #endif
103 
104 #include "vlan.h"
105 #if NVLAN > 0
106 #include <net/if_vlan_var.h>
107 #endif /* NVLAN > 0 */
108 
109 /* netgraph node hooks for ng_ether(4) */
110 void	(*ng_ether_input_p)(struct ifnet *ifp,
111 		struct mbuf **mp, struct ether_header *eh);
112 void	(*ng_ether_input_orphan_p)(struct ifnet *ifp,
113 		struct mbuf *m, struct ether_header *eh);
114 int	(*ng_ether_output_p)(struct ifnet *ifp, struct mbuf **mp);
115 void	(*ng_ether_attach_p)(struct ifnet *ifp);
116 void	(*ng_ether_detach_p)(struct ifnet *ifp);
117 
118 static	int ether_resolvemulti __P((struct ifnet *, struct sockaddr **,
119 				    struct sockaddr *));
120 u_char	etherbroadcastaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
121 #define senderr(e) do { error = (e); goto bad;} while (0)
122 #define IFP2AC(IFP) ((struct arpcom *)IFP)
123 
124 /*
125  * Ethernet output routine.
126  * Encapsulate a packet of type family for the local net.
127  * Use trailer local net encapsulation if enough data in first
128  * packet leaves a multiple of 512 bytes of data in remainder.
129  * Assumes that ifp is actually pointer to arpcom structure.
130  */
131 int
132 ether_output(ifp, m, dst, rt0)
133 	register struct ifnet *ifp;
134 	struct mbuf *m;
135 	struct sockaddr *dst;
136 	struct rtentry *rt0;
137 {
138 	short type;
139 	int error = 0, hdrcmplt = 0;
140  	u_char esrc[6], edst[6];
141 	register struct rtentry *rt;
142 	register struct ether_header *eh;
143 	int off, loop_copy = 0;
144 	int hlen;	/* link layer header lenght */
145 	struct arpcom *ac = IFP2AC(ifp);
146 
147 	if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
148 		senderr(ENETDOWN);
149 	rt = rt0;
150 	if (rt) {
151 		if ((rt->rt_flags & RTF_UP) == 0) {
152 			rt0 = rt = rtalloc1(dst, 1, 0UL);
153 			if (rt0)
154 				rt->rt_refcnt--;
155 			else
156 				senderr(EHOSTUNREACH);
157 		}
158 		if (rt->rt_flags & RTF_GATEWAY) {
159 			if (rt->rt_gwroute == 0)
160 				goto lookup;
161 			if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {
162 				rtfree(rt); rt = rt0;
163 			lookup: rt->rt_gwroute = rtalloc1(rt->rt_gateway, 1,
164 							  0UL);
165 				if ((rt = rt->rt_gwroute) == 0)
166 					senderr(EHOSTUNREACH);
167 			}
168 		}
169 		if (rt->rt_flags & RTF_REJECT)
170 			if (rt->rt_rmx.rmx_expire == 0 ||
171 			    time_second < rt->rt_rmx.rmx_expire)
172 				senderr(rt == rt0 ? EHOSTDOWN : EHOSTUNREACH);
173 	}
174 	hlen = ETHER_HDR_LEN;
175 	switch (dst->sa_family) {
176 #ifdef INET
177 	case AF_INET:
178 		if (!arpresolve(ac, rt, m, dst, edst, rt0))
179 			return (0);	/* if not yet resolved */
180 		off = m->m_pkthdr.len - m->m_len;
181 		type = htons(ETHERTYPE_IP);
182 		break;
183 #endif
184 #ifdef INET6
185 	case AF_INET6:
186 		if (!nd6_storelladdr(&ac->ac_if, rt, m, dst, (u_char *)edst)) {
187 			/* Something bad happened */
188 			return(0);
189 		}
190 		off = m->m_pkthdr.len - m->m_len;
191 		type = htons(ETHERTYPE_IPV6);
192 		break;
193 #endif
194 #ifdef IPX
195 	case AF_IPX:
196 		if (ef_outputp) {
197 		    error = ef_outputp(ifp, &m, dst, &type, &hlen);
198 		    if (error)
199 			goto bad;
200 		} else
201 		    type = htons(ETHERTYPE_IPX);
202  		bcopy((caddr_t)&(((struct sockaddr_ipx *)dst)->sipx_addr.x_host),
203 		    (caddr_t)edst, sizeof (edst));
204 		break;
205 #endif
206 #ifdef NETATALK
207 	case AF_APPLETALK:
208 	  {
209 	    struct at_ifaddr *aa;
210 
211 	    if ((aa = at_ifawithnet((struct sockaddr_at *)dst)) == NULL) {
212 		    goto bad;
213 	    }
214 	    if (!aarpresolve(ac, m, (struct sockaddr_at *)dst, edst))
215 		    return (0);
216 	    /*
217 	     * In the phase 2 case, need to prepend an mbuf for the llc header.
218 	     * Since we must preserve the value of m, which is passed to us by
219 	     * value, we m_copy() the first mbuf, and use it for our llc header.
220 	     */
221 	    if ( aa->aa_flags & AFA_PHASE2 ) {
222 		struct llc llc;
223 
224 		M_PREPEND(m, sizeof(struct llc), M_TRYWAIT);
225 		llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
226 		llc.llc_control = LLC_UI;
227 		bcopy(at_org_code, llc.llc_snap_org_code, sizeof(at_org_code));
228 		llc.llc_snap_ether_type = htons( ETHERTYPE_AT );
229 		bcopy(&llc, mtod(m, caddr_t), sizeof(struct llc));
230 		type = htons(m->m_pkthdr.len);
231 		hlen = sizeof(struct llc) + ETHER_HDR_LEN;
232 	    } else {
233 		type = htons(ETHERTYPE_AT);
234 	    }
235 	    break;
236 	  }
237 #endif NETATALK
238 #ifdef NS
239 	case AF_NS:
240 		switch(ns_nettype){
241 		default:
242 		case 0x8137: /* Novell Ethernet_II Ethernet TYPE II */
243 			type = 0x8137;
244 			break;
245 		case 0x0: /* Novell 802.3 */
246 			type = htons( m->m_pkthdr.len);
247 			break;
248 		case 0xe0e0: /* Novell 802.2 and Token-Ring */
249 			M_PREPEND(m, 3, M_TRYWAIT);
250 			type = htons( m->m_pkthdr.len);
251 			cp = mtod(m, u_char *);
252 			*cp++ = 0xE0;
253 			*cp++ = 0xE0;
254 			*cp++ = 0x03;
255 			break;
256 		}
257  		bcopy((caddr_t)&(((struct sockaddr_ns *)dst)->sns_addr.x_host),
258 		    (caddr_t)edst, sizeof (edst));
259 		/*
260 		 * XXX if ns_thishost is the same as the node's ethernet
261 		 * address then just the default code will catch this anyhow.
262 		 * So I'm not sure if this next clause should be here at all?
263 		 * [JRE]
264 		 */
265 		if (!bcmp((caddr_t)edst, (caddr_t)&ns_thishost, sizeof(edst))){
266 			m->m_pkthdr.rcvif = ifp;
267 			inq = &nsintrq;
268 			if (IF_HANDOFF(inq, m, NULL))
269 				schednetisr(NETISR_NS);
270 			return (error);
271 		}
272 		if (!bcmp((caddr_t)edst, (caddr_t)&ns_broadhost, sizeof(edst))){
273 			m->m_flags |= M_BCAST;
274 		}
275 		break;
276 #endif /* NS */
277 
278 	case pseudo_AF_HDRCMPLT:
279 		hdrcmplt = 1;
280 		eh = (struct ether_header *)dst->sa_data;
281 		(void)memcpy(esrc, eh->ether_shost, sizeof (esrc));
282 		/* FALLTHROUGH */
283 
284 	case AF_UNSPEC:
285 		loop_copy = -1; /* if this is for us, don't do it */
286 		eh = (struct ether_header *)dst->sa_data;
287  		(void)memcpy(edst, eh->ether_dhost, sizeof (edst));
288 		type = eh->ether_type;
289 		break;
290 
291 	default:
292 		printf("%s%d: can't handle af%d\n", ifp->if_name, ifp->if_unit,
293 			dst->sa_family);
294 		senderr(EAFNOSUPPORT);
295 	}
296 
297 	/*
298 	 * Add local net header.  If no space in first mbuf,
299 	 * allocate another.
300 	 */
301 	M_PREPEND(m, sizeof (struct ether_header), M_DONTWAIT);
302 	if (m == 0)
303 		senderr(ENOBUFS);
304 	eh = mtod(m, struct ether_header *);
305 	(void)memcpy(&eh->ether_type, &type,
306 		sizeof(eh->ether_type));
307  	(void)memcpy(eh->ether_dhost, edst, sizeof (edst));
308 	if (hdrcmplt)
309 		(void)memcpy(eh->ether_shost, esrc,
310 			sizeof(eh->ether_shost));
311 	else
312 		(void)memcpy(eh->ether_shost, ac->ac_enaddr,
313 			sizeof(eh->ether_shost));
314 
315 	/*
316 	 * If a simplex interface, and the packet is being sent to our
317 	 * Ethernet address or a broadcast address, loopback a copy.
318 	 * XXX To make a simplex device behave exactly like a duplex
319 	 * device, we should copy in the case of sending to our own
320 	 * ethernet address (thus letting the original actually appear
321 	 * on the wire). However, we don't do that here for security
322 	 * reasons and compatibility with the original behavior.
323 	 */
324 	if ((ifp->if_flags & IFF_SIMPLEX) && (loop_copy != -1)) {
325 		if ((m->m_flags & M_BCAST) || (loop_copy > 0)) {
326 			struct mbuf *n = m_copy(m, 0, (int)M_COPYALL);
327 
328 			(void) if_simloop(ifp, n, dst->sa_family, hlen);
329 		} else if (bcmp(eh->ether_dhost,
330 		    eh->ether_shost, ETHER_ADDR_LEN) == 0) {
331 			(void) if_simloop(ifp, m, dst->sa_family, hlen);
332 			return (0);	/* XXX */
333 		}
334 	}
335 
336 	/* Handle ng_ether(4) processing, if any */
337 	if (ng_ether_output_p != NULL) {
338 		if ((error = (*ng_ether_output_p)(ifp, &m)) != 0) {
339 bad:			if (m != NULL)
340 				m_freem(m);
341 			return (error);
342 		}
343 		if (m == NULL)
344 			return (0);
345 	}
346 
347 	/* Continue with link-layer output */
348 	return ether_output_frame(ifp, m);
349 }
350 
351 /*
352  * Ethernet link layer output routine to send a raw frame to the device.
353  *
354  * This assumes that the 14 byte Ethernet header is present and contiguous
355  * in the first mbuf (if BRIDGE'ing).
356  */
357 int
358 ether_output_frame(ifp, m)
359 	struct ifnet *ifp;
360 	struct mbuf *m;
361 {
362 	int error = 0;
363 
364 #ifdef BRIDGE
365 	if (do_bridge && BDG_USED(ifp) ) {
366 		struct ether_header *eh; /* a ptr suffices */
367 
368 		m->m_pkthdr.rcvif = NULL;
369 		eh = mtod(m, struct ether_header *);
370 		m_adj(m, ETHER_HDR_LEN);
371 		m = bdg_forward(m, eh, ifp);
372 		if (m != NULL)
373 			m_freem(m);
374 		return (0);
375 	}
376 #endif
377 
378 	/*
379 	 * Queue message on interface, update output statistics if
380 	 * successful, and start output if interface not yet active.
381 	 */
382 	if (! IF_HANDOFF(&ifp->if_snd, m, ifp))
383 		return (ENOBUFS);
384 	return (error);
385 }
386 
387 /*
388  * Process a received Ethernet packet;
389  * the packet is in the mbuf chain m without
390  * the ether header, which is provided separately.
391  *
392  * NOTA BENE: for many drivers "eh" is a pointer into the first mbuf or
393  * cluster, right before m_data. So be very careful when working on m,
394  * as you could destroy *eh !!
395  * A (probably) more convenient and efficient interface to ether_input
396  * is to have the whole packet (with the ethernet header) into the mbuf:
397  * modules which do not need the ethernet header can easily drop it, while
398  * others (most noticeably bridge and ng_ether) do not need to do additional
399  * work to put the ethernet header back into the mbuf.
400  *
401  * First we perform any link layer operations, then continue
402  * to the upper layers with ether_demux().
403  */
404 void
405 ether_input(ifp, eh, m)
406 	struct ifnet *ifp;
407 	struct ether_header *eh;
408 	struct mbuf *m;
409 {
410 #ifdef BRIDGE
411 	struct ether_header save_eh;
412 #endif
413 
414 	/* Check for a BPF tap */
415 	if (ifp->if_bpf != NULL) {
416 		struct m_hdr mh;
417 
418 		/* This kludge is OK; BPF treats the "mbuf" as read-only */
419 		mh.mh_next = m;
420 		mh.mh_data = (char *)eh;
421 		mh.mh_len = ETHER_HDR_LEN;
422 		bpf_mtap(ifp, (struct mbuf *)&mh);
423 	}
424 
425 	/* Handle ng_ether(4) processing, if any */
426 	if (ng_ether_input_p != NULL) {
427 		(*ng_ether_input_p)(ifp, &m, eh);
428 		if (m == NULL)
429 			return;
430 	}
431 
432 #ifdef BRIDGE
433 	/* Check for bridging mode */
434 	if (do_bridge && BDG_USED(ifp) ) {
435 		struct ifnet *bif;
436 
437 		/* Check with bridging code */
438 		if ((bif = bridge_in(ifp, eh)) == BDG_DROP) {
439 			m_freem(m);
440 			return;
441 		}
442 		if (bif != BDG_LOCAL) {
443 			struct mbuf *oldm = m ;
444 
445 			save_eh = *eh ; /* because it might change */
446 			m = bdg_forward(m, eh, bif);	/* needs forwarding */
447 			/*
448 			 * Do not continue if bdg_forward() processed our
449 			 * packet (and cleared the mbuf pointer m) or if
450 			 * it dropped (m_free'd) the packet itself.
451 			 */
452 			if (m == NULL) {
453 			    if (bif == BDG_BCAST || bif == BDG_MCAST)
454 				printf("bdg_forward drop MULTICAST PKT\n");
455 			    return;
456 			}
457 			if (m != oldm) /* m changed! */
458 			    eh = &save_eh ;
459 		}
460 		if (bif == BDG_LOCAL
461 		    || bif == BDG_BCAST
462 		    || bif == BDG_MCAST)
463 			goto recvLocal;			/* receive locally */
464 
465 		/* If not local and not multicast, just drop it */
466 		if (m != NULL)
467 		    m_freem(m);
468 		return;
469        }
470 #endif
471 
472 #ifdef BRIDGE
473 recvLocal:
474 #endif
475 	/* Continue with upper layer processing */
476 	ether_demux(ifp, eh, m);
477 	/* First chunk of an mbuf contains good junk */
478 	if (harvest.ethernet)
479 		random_harvest(m, 16, 3, 0, RANDOM_NET);
480 }
481 
482 /*
483  * Upper layer processing for a received Ethernet packet.
484  */
485 void
486 ether_demux(ifp, eh, m)
487 	struct ifnet *ifp;
488 	struct ether_header *eh;
489 	struct mbuf *m;
490 {
491 	struct ifqueue *inq;
492 	u_short ether_type;
493 #if defined(NETATALK)
494 	register struct llc *l;
495 #endif
496 
497 	/* Discard packet if upper layers shouldn't see it because it was
498 	   unicast to a different Ethernet address. If the driver is working
499 	   properly, then this situation can only happen when the interface
500 	   is in promiscuous mode. */
501 	if ((ifp->if_flags & IFF_PROMISC) != 0
502 	    && (eh->ether_dhost[0] & 1) == 0
503 	    && bcmp(eh->ether_dhost,
504 	      IFP2AC(ifp)->ac_enaddr, ETHER_ADDR_LEN) != 0) {
505 		m_freem(m);
506 		return;
507 	}
508 
509 	/* Discard packet if interface is not up */
510 	if ((ifp->if_flags & IFF_UP) == 0) {
511 		m_freem(m);
512 		return;
513 	}
514 	ifp->if_ibytes += m->m_pkthdr.len + sizeof (*eh);
515 	if (eh->ether_dhost[0] & 1) {
516 		if (bcmp((caddr_t)etherbroadcastaddr, (caddr_t)eh->ether_dhost,
517 			 sizeof(etherbroadcastaddr)) == 0)
518 			m->m_flags |= M_BCAST;
519 		else
520 			m->m_flags |= M_MCAST;
521 	}
522 	if (m->m_flags & (M_BCAST|M_MCAST))
523 		ifp->if_imcasts++;
524 
525 	ether_type = ntohs(eh->ether_type);
526 
527 #if NVLAN > 0
528 	if (ether_type == vlan_proto) {
529 		if (vlan_input(eh, m) < 0)
530 			ifp->if_data.ifi_noproto++;
531 		return;
532 	}
533 #endif /* NVLAN > 0 */
534 
535 	switch (ether_type) {
536 #ifdef INET
537 	case ETHERTYPE_IP:
538 		if (ipflow_fastforward(m))
539 			return;
540 		schednetisr(NETISR_IP);
541 		inq = &ipintrq;
542 		break;
543 
544 	case ETHERTYPE_ARP:
545 		if (ifp->if_flags & IFF_NOARP) {
546 			/* Discard packet if ARP is disabled on interface */
547 			m_freem(m);
548 			return;
549 		}
550 		schednetisr(NETISR_ARP);
551 		inq = &arpintrq;
552 		break;
553 #endif
554 #ifdef IPX
555 	case ETHERTYPE_IPX:
556 		if (ef_inputp && ef_inputp(ifp, eh, m) == 0)
557 			return;
558 		schednetisr(NETISR_IPX);
559 		inq = &ipxintrq;
560 		break;
561 #endif
562 #ifdef INET6
563 	case ETHERTYPE_IPV6:
564 		schednetisr(NETISR_IPV6);
565 		inq = &ip6intrq;
566 		break;
567 #endif
568 #ifdef NS
569 	case 0x8137: /* Novell Ethernet_II Ethernet TYPE II */
570 		schednetisr(NETISR_NS);
571 		inq = &nsintrq;
572 		break;
573 
574 #endif /* NS */
575 #ifdef NETATALK
576         case ETHERTYPE_AT:
577                 schednetisr(NETISR_ATALK);
578                 inq = &atintrq1;
579                 break;
580         case ETHERTYPE_AARP:
581 		/* probably this should be done with a NETISR as well */
582                 aarpinput(IFP2AC(ifp), m); /* XXX */
583                 return;
584 #endif NETATALK
585 	default:
586 #ifdef IPX
587 		if (ef_inputp && ef_inputp(ifp, eh, m) == 0)
588 			return;
589 #endif /* IPX */
590 #ifdef NS
591 		checksum = mtod(m, ushort *);
592 		/* Novell 802.3 */
593 		if ((ether_type <= ETHERMTU) &&
594 			((*checksum == 0xffff) || (*checksum == 0xE0E0))){
595 			if(*checksum == 0xE0E0) {
596 				m->m_pkthdr.len -= 3;
597 				m->m_len -= 3;
598 				m->m_data += 3;
599 			}
600 				schednetisr(NETISR_NS);
601 				inq = &nsintrq;
602 				break;
603 		}
604 #endif /* NS */
605 #if defined(NETATALK)
606 		if (ether_type > ETHERMTU)
607 			goto dropanyway;
608 		l = mtod(m, struct llc *);
609 		switch (l->llc_dsap) {
610 		case LLC_SNAP_LSAP:
611 		    switch (l->llc_control) {
612 		    case LLC_UI:
613 			if (l->llc_ssap != LLC_SNAP_LSAP)
614 			    goto dropanyway;
615 
616 			if (Bcmp(&(l->llc_snap_org_code)[0], at_org_code,
617 				   sizeof(at_org_code)) == 0 &&
618 			     ntohs(l->llc_snap_ether_type) == ETHERTYPE_AT) {
619 			    inq = &atintrq2;
620 			    m_adj( m, sizeof( struct llc ));
621 			    schednetisr(NETISR_ATALK);
622 			    break;
623 			}
624 
625 			if (Bcmp(&(l->llc_snap_org_code)[0], aarp_org_code,
626 				   sizeof(aarp_org_code)) == 0 &&
627 			     ntohs(l->llc_snap_ether_type) == ETHERTYPE_AARP) {
628 			    m_adj( m, sizeof( struct llc ));
629 			    aarpinput(IFP2AC(ifp), m); /* XXX */
630 			    return;
631 			}
632 
633 		    default:
634 			goto dropanyway;
635 		    }
636 		    break;
637 		dropanyway:
638 		default:
639 			if (ng_ether_input_orphan_p != NULL)
640 				(*ng_ether_input_orphan_p)(ifp, m, eh);
641 			else
642 				m_freem(m);
643 			return;
644 		}
645 #else /* NETATALK */
646 		if (ng_ether_input_orphan_p != NULL)
647 			(*ng_ether_input_orphan_p)(ifp, m, eh);
648 		else
649 			m_freem(m);
650 		return;
651 #endif /* NETATALK */
652 	}
653 
654 	(void) IF_HANDOFF(inq, m, NULL);
655 }
656 
657 /*
658  * Perform common duties while attaching to interface list
659  */
660 void
661 ether_ifattach(ifp, bpf)
662 	register struct ifnet *ifp;
663 	int bpf;
664 {
665 	register struct ifaddr *ifa;
666 	register struct sockaddr_dl *sdl;
667 
668 	if_attach(ifp);
669 	ifp->if_type = IFT_ETHER;
670 	ifp->if_addrlen = 6;
671 	ifp->if_hdrlen = 14;
672 	ifp->if_mtu = ETHERMTU;
673 	ifp->if_resolvemulti = ether_resolvemulti;
674 	if (ifp->if_baudrate == 0)
675 	    ifp->if_baudrate = 10000000;
676 	ifa = ifnet_addrs[ifp->if_index - 1];
677 	KASSERT(ifa != NULL, ("%s: no lladdr!\n", __FUNCTION__));
678 	sdl = (struct sockaddr_dl *)ifa->ifa_addr;
679 	sdl->sdl_type = IFT_ETHER;
680 	sdl->sdl_alen = ifp->if_addrlen;
681 	bcopy((IFP2AC(ifp))->ac_enaddr, LLADDR(sdl), ifp->if_addrlen);
682 	if (bpf)
683 		bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
684 	if (ng_ether_attach_p != NULL)
685 		(*ng_ether_attach_p)(ifp);
686 #ifdef BRIDGE
687 	bdgtakeifaces();
688 #endif
689 }
690 
691 /*
692  * Perform common duties while detaching an Ethernet interface
693  */
694 void
695 ether_ifdetach(ifp, bpf)
696 	struct ifnet *ifp;
697 	int bpf;
698 {
699 	if (ng_ether_detach_p != NULL)
700 		(*ng_ether_detach_p)(ifp);
701 	if (bpf)
702 		bpfdetach(ifp);
703 	if_detach(ifp);
704 #ifdef BRIDGE
705 	bdgtakeifaces();
706 #endif
707 }
708 
709 SYSCTL_DECL(_net_link);
710 SYSCTL_NODE(_net_link, IFT_ETHER, ether, CTLFLAG_RW, 0, "Ethernet");
711 
712 int
713 ether_ioctl(ifp, command, data)
714 	struct ifnet *ifp;
715 	int command;
716 	caddr_t data;
717 {
718 	struct ifaddr *ifa = (struct ifaddr *) data;
719 	struct ifreq *ifr = (struct ifreq *) data;
720 	int error = 0;
721 
722 	switch (command) {
723 	case SIOCSIFADDR:
724 		ifp->if_flags |= IFF_UP;
725 
726 		switch (ifa->ifa_addr->sa_family) {
727 #ifdef INET
728 		case AF_INET:
729 			ifp->if_init(ifp->if_softc);	/* before arpwhohas */
730 			arp_ifinit(IFP2AC(ifp), ifa);
731 			break;
732 #endif
733 #ifdef IPX
734 		/*
735 		 * XXX - This code is probably wrong
736 		 */
737 		case AF_IPX:
738 			{
739 			register struct ipx_addr *ina = &(IA_SIPX(ifa)->sipx_addr);
740 			struct arpcom *ac = IFP2AC(ifp);
741 
742 			if (ipx_nullhost(*ina))
743 				ina->x_host =
744 				    *(union ipx_host *)
745 			            ac->ac_enaddr;
746 			else {
747 				bcopy((caddr_t) ina->x_host.c_host,
748 				      (caddr_t) ac->ac_enaddr,
749 				      sizeof(ac->ac_enaddr));
750 			}
751 
752 			/*
753 			 * Set new address
754 			 */
755 			ifp->if_init(ifp->if_softc);
756 			break;
757 			}
758 #endif
759 #ifdef NS
760 		/*
761 		 * XXX - This code is probably wrong
762 		 */
763 		case AF_NS:
764 		{
765 			register struct ns_addr *ina = &(IA_SNS(ifa)->sns_addr);
766 			struct arpcom *ac = IFP2AC(ifp);
767 
768 			if (ns_nullhost(*ina))
769 				ina->x_host =
770 				    *(union ns_host *) (ac->ac_enaddr);
771 			else {
772 				bcopy((caddr_t) ina->x_host.c_host,
773 				      (caddr_t) ac->ac_enaddr,
774 				      sizeof(ac->ac_enaddr));
775 			}
776 
777 			/*
778 			 * Set new address
779 			 */
780 			ifp->if_init(ifp->if_softc);
781 			break;
782 		}
783 #endif
784 		default:
785 			ifp->if_init(ifp->if_softc);
786 			break;
787 		}
788 		break;
789 
790 	case SIOCGIFADDR:
791 		{
792 			struct sockaddr *sa;
793 
794 			sa = (struct sockaddr *) & ifr->ifr_data;
795 			bcopy(IFP2AC(ifp)->ac_enaddr,
796 			      (caddr_t) sa->sa_data, ETHER_ADDR_LEN);
797 		}
798 		break;
799 
800 	case SIOCSIFMTU:
801 		/*
802 		 * Set the interface MTU.
803 		 */
804 		if (ifr->ifr_mtu > ETHERMTU) {
805 			error = EINVAL;
806 		} else {
807 			ifp->if_mtu = ifr->ifr_mtu;
808 		}
809 		break;
810 	}
811 	return (error);
812 }
813 
814 int
815 ether_resolvemulti(ifp, llsa, sa)
816 	struct ifnet *ifp;
817 	struct sockaddr **llsa;
818 	struct sockaddr *sa;
819 {
820 	struct sockaddr_dl *sdl;
821 	struct sockaddr_in *sin;
822 #ifdef INET6
823 	struct sockaddr_in6 *sin6;
824 #endif
825 	u_char *e_addr;
826 
827 	switch(sa->sa_family) {
828 	case AF_LINK:
829 		/*
830 		 * No mapping needed. Just check that it's a valid MC address.
831 		 */
832 		sdl = (struct sockaddr_dl *)sa;
833 		e_addr = LLADDR(sdl);
834 		if ((e_addr[0] & 1) != 1)
835 			return EADDRNOTAVAIL;
836 		*llsa = 0;
837 		return 0;
838 
839 #ifdef INET
840 	case AF_INET:
841 		sin = (struct sockaddr_in *)sa;
842 		if (!IN_MULTICAST(ntohl(sin->sin_addr.s_addr)))
843 			return EADDRNOTAVAIL;
844 		MALLOC(sdl, struct sockaddr_dl *, sizeof *sdl, M_IFMADDR,
845 		       M_WAITOK|M_ZERO);
846 		sdl->sdl_len = sizeof *sdl;
847 		sdl->sdl_family = AF_LINK;
848 		sdl->sdl_index = ifp->if_index;
849 		sdl->sdl_type = IFT_ETHER;
850 		sdl->sdl_alen = ETHER_ADDR_LEN;
851 		e_addr = LLADDR(sdl);
852 		ETHER_MAP_IP_MULTICAST(&sin->sin_addr, e_addr);
853 		*llsa = (struct sockaddr *)sdl;
854 		return 0;
855 #endif
856 #ifdef INET6
857 	case AF_INET6:
858 		sin6 = (struct sockaddr_in6 *)sa;
859 		if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
860 			/*
861 			 * An IP6 address of 0 means listen to all
862 			 * of the Ethernet multicast address used for IP6.
863 			 * (This is used for multicast routers.)
864 			 */
865 			ifp->if_flags |= IFF_ALLMULTI;
866 			*llsa = 0;
867 			return 0;
868 		}
869 		if (!IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr))
870 			return EADDRNOTAVAIL;
871 		MALLOC(sdl, struct sockaddr_dl *, sizeof *sdl, M_IFMADDR,
872 		       M_WAITOK|M_ZERO);
873 		sdl->sdl_len = sizeof *sdl;
874 		sdl->sdl_family = AF_LINK;
875 		sdl->sdl_index = ifp->if_index;
876 		sdl->sdl_type = IFT_ETHER;
877 		sdl->sdl_alen = ETHER_ADDR_LEN;
878 		e_addr = LLADDR(sdl);
879 		ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, e_addr);
880 		*llsa = (struct sockaddr *)sdl;
881 		return 0;
882 #endif
883 
884 	default:
885 		/*
886 		 * Well, the text isn't quite right, but it's the name
887 		 * that counts...
888 		 */
889 		return EAFNOSUPPORT;
890 	}
891 }
892 
893