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