xref: /freebsd/sys/net/if_ethersubr.c (revision c4f6a2a9e1b1879b618c436ab4f56ff75c73a0f5)
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_mac.h"
43 #include "opt_netgraph.h"
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/mac.h>
49 #include <sys/malloc.h>
50 #include <sys/mbuf.h>
51 #include <sys/random.h>
52 #include <sys/socket.h>
53 #include <sys/sockio.h>
54 #include <sys/sysctl.h>
55 
56 #include <net/if.h>
57 #include <net/netisr.h>
58 #include <net/route.h>
59 #include <net/if_llc.h>
60 #include <net/if_dl.h>
61 #include <net/if_types.h>
62 #include <net/bpf.h>
63 #include <net/ethernet.h>
64 #include <net/bridge.h>
65 
66 #if defined(INET) || defined(INET6)
67 #include <netinet/in.h>
68 #include <netinet/in_var.h>
69 #include <netinet/if_ether.h>
70 #include <netinet/ip_fw.h>
71 #include <netinet/ip_dummynet.h>
72 #endif
73 #ifdef INET6
74 #include <netinet6/nd6.h>
75 #endif
76 
77 #ifdef IPX
78 #include <netipx/ipx.h>
79 #include <netipx/ipx_if.h>
80 int (*ef_inputp)(struct ifnet*, struct ether_header *eh, struct mbuf *m);
81 int (*ef_outputp)(struct ifnet *ifp, struct mbuf **mp,
82 		struct sockaddr *dst, short *tp, int *hlen);
83 #endif
84 
85 #ifdef NS
86 #include <netns/ns.h>
87 #include <netns/ns_if.h>
88 ushort ns_nettype;
89 int ether_outputdebug = 0;
90 int ether_inputdebug = 0;
91 #endif
92 
93 #ifdef NETATALK
94 #include <netatalk/at.h>
95 #include <netatalk/at_var.h>
96 #include <netatalk/at_extern.h>
97 
98 #define llc_snap_org_code llc_un.type_snap.org_code
99 #define llc_snap_ether_type llc_un.type_snap.ether_type
100 
101 extern u_char	at_org_code[3];
102 extern u_char	aarp_org_code[3];
103 #endif /* NETATALK */
104 
105 /* netgraph node hooks for ng_ether(4) */
106 void	(*ng_ether_input_p)(struct ifnet *ifp,
107 		struct mbuf **mp, struct ether_header *eh);
108 void	(*ng_ether_input_orphan_p)(struct ifnet *ifp,
109 		struct mbuf *m, struct ether_header *eh);
110 int	(*ng_ether_output_p)(struct ifnet *ifp, struct mbuf **mp);
111 void	(*ng_ether_attach_p)(struct ifnet *ifp);
112 void	(*ng_ether_detach_p)(struct ifnet *ifp);
113 
114 int	(*vlan_input_p)(struct ether_header *eh, struct mbuf *m);
115 int	(*vlan_input_tag_p)(struct ether_header *eh, struct mbuf *m,
116 		u_int16_t t);
117 
118 /* bridge support */
119 int do_bridge;
120 bridge_in_t *bridge_in_ptr;
121 bdg_forward_t *bdg_forward_ptr;
122 bdgtakeifaces_t *bdgtakeifaces_ptr;
123 struct bdg_softc *ifp2sc;
124 
125 static	int ether_resolvemulti(struct ifnet *, struct sockaddr **,
126 		struct sockaddr *);
127 u_char	etherbroadcastaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
128 #define senderr(e) do { error = (e); goto bad;} while (0)
129 #define IFP2AC(IFP) ((struct arpcom *)IFP)
130 
131 int
132 ether_ipfw_chk(struct mbuf **m0, struct ifnet *dst,
133 	struct ip_fw **rule, struct ether_header *eh, int shared);
134 static int ether_ipfw;
135 
136 /*
137  * Ethernet output routine.
138  * Encapsulate a packet of type family for the local net.
139  * Use trailer local net encapsulation if enough data in first
140  * packet leaves a multiple of 512 bytes of data in remainder.
141  * Assumes that ifp is actually pointer to arpcom structure.
142  */
143 int
144 ether_output(ifp, m, dst, rt0)
145 	register struct ifnet *ifp;
146 	struct mbuf *m;
147 	struct sockaddr *dst;
148 	struct rtentry *rt0;
149 {
150 	short type;
151 	int error = 0, hdrcmplt = 0;
152  	u_char esrc[6], edst[6];
153 	register struct rtentry *rt;
154 	register struct ether_header *eh;
155 	int loop_copy = 0;
156 	int hlen;	/* link layer header lenght */
157 	struct arpcom *ac = IFP2AC(ifp);
158 
159 #ifdef MAC
160 	error = mac_check_ifnet_transmit(ifp, m);
161 	if (error)
162 		senderr(error);
163 #endif
164 
165 	if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
166 		senderr(ENETDOWN);
167 	rt = rt0;
168 	if (rt) {
169 		if ((rt->rt_flags & RTF_UP) == 0) {
170 			rt0 = rt = rtalloc1(dst, 1, 0UL);
171 			if (rt0)
172 				rt->rt_refcnt--;
173 			else
174 				senderr(EHOSTUNREACH);
175 		}
176 		if (rt->rt_flags & RTF_GATEWAY) {
177 			if (rt->rt_gwroute == 0)
178 				goto lookup;
179 			if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {
180 				rtfree(rt); rt = rt0;
181 			lookup: rt->rt_gwroute = rtalloc1(rt->rt_gateway, 1,
182 							  0UL);
183 				if ((rt = rt->rt_gwroute) == 0)
184 					senderr(EHOSTUNREACH);
185 			}
186 		}
187 		if (rt->rt_flags & RTF_REJECT)
188 			if (rt->rt_rmx.rmx_expire == 0 ||
189 			    time_second < rt->rt_rmx.rmx_expire)
190 				senderr(rt == rt0 ? EHOSTDOWN : EHOSTUNREACH);
191 	}
192 	hlen = ETHER_HDR_LEN;
193 	switch (dst->sa_family) {
194 #ifdef INET
195 	case AF_INET:
196 		if (!arpresolve(ifp, rt, m, dst, edst, rt0))
197 			return (0);	/* if not yet resolved */
198 		type = htons(ETHERTYPE_IP);
199 		break;
200 #endif
201 #ifdef INET6
202 	case AF_INET6:
203 		if (!nd6_storelladdr(&ac->ac_if, rt, m, dst, (u_char *)edst)) {
204 			/* Something bad happened */
205 			return(0);
206 		}
207 		type = htons(ETHERTYPE_IPV6);
208 		break;
209 #endif
210 #ifdef IPX
211 	case AF_IPX:
212 		if (ef_outputp) {
213 		    error = ef_outputp(ifp, &m, dst, &type, &hlen);
214 		    if (error)
215 			goto bad;
216 		} else
217 		    type = htons(ETHERTYPE_IPX);
218  		bcopy((caddr_t)&(((struct sockaddr_ipx *)dst)->sipx_addr.x_host),
219 		    (caddr_t)edst, sizeof (edst));
220 		break;
221 #endif
222 #ifdef NETATALK
223 	case AF_APPLETALK:
224 	  {
225 	    struct at_ifaddr *aa;
226 
227 	    if ((aa = at_ifawithnet((struct sockaddr_at *)dst)) == NULL) {
228 		    goto bad;
229 	    }
230 	    if (!aarpresolve(ac, m, (struct sockaddr_at *)dst, edst))
231 		    return (0);
232 	    /*
233 	     * In the phase 2 case, need to prepend an mbuf for the llc header.
234 	     * Since we must preserve the value of m, which is passed to us by
235 	     * value, we m_copy() the first mbuf, and use it for our llc header.
236 	     */
237 	    if ( aa->aa_flags & AFA_PHASE2 ) {
238 		struct llc llc;
239 
240 		M_PREPEND(m, sizeof(struct llc), M_TRYWAIT);
241 		llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
242 		llc.llc_control = LLC_UI;
243 		bcopy(at_org_code, llc.llc_snap_org_code, sizeof(at_org_code));
244 		llc.llc_snap_ether_type = htons( ETHERTYPE_AT );
245 		bcopy(&llc, mtod(m, caddr_t), sizeof(struct llc));
246 		type = htons(m->m_pkthdr.len);
247 		hlen = sizeof(struct llc) + ETHER_HDR_LEN;
248 	    } else {
249 		type = htons(ETHERTYPE_AT);
250 	    }
251 	    break;
252 	  }
253 #endif /* NETATALK */
254 #ifdef NS
255 	case AF_NS:
256 		switch(ns_nettype){
257 		default:
258 		case 0x8137: /* Novell Ethernet_II Ethernet TYPE II */
259 			type = 0x8137;
260 			break;
261 		case 0x0: /* Novell 802.3 */
262 			type = htons( m->m_pkthdr.len);
263 			break;
264 		case 0xe0e0: /* Novell 802.2 and Token-Ring */
265 			M_PREPEND(m, 3, M_TRYWAIT);
266 			type = htons( m->m_pkthdr.len);
267 			cp = mtod(m, u_char *);
268 			*cp++ = 0xE0;
269 			*cp++ = 0xE0;
270 			*cp++ = 0x03;
271 			break;
272 		}
273  		bcopy((caddr_t)&(((struct sockaddr_ns *)dst)->sns_addr.x_host),
274 		    (caddr_t)edst, sizeof (edst));
275 		/*
276 		 * XXX if ns_thishost is the same as the node's ethernet
277 		 * address then just the default code will catch this anyhow.
278 		 * So I'm not sure if this next clause should be here at all?
279 		 * [JRE]
280 		 */
281 		if (!bcmp((caddr_t)edst, (caddr_t)&ns_thishost, sizeof(edst))){
282 			m->m_pkthdr.rcvif = ifp;
283 			inq = &nsintrq;
284 			if (IF_HANDOFF(inq, m, NULL))
285 				schednetisr(NETISR_NS);
286 			return (error);
287 		}
288 		if (!bcmp((caddr_t)edst, (caddr_t)&ns_broadhost, sizeof(edst))){
289 			m->m_flags |= M_BCAST;
290 		}
291 		break;
292 #endif /* NS */
293 
294 	case pseudo_AF_HDRCMPLT:
295 		hdrcmplt = 1;
296 		eh = (struct ether_header *)dst->sa_data;
297 		(void)memcpy(esrc, eh->ether_shost, sizeof (esrc));
298 		/* FALLTHROUGH */
299 
300 	case AF_UNSPEC:
301 		loop_copy = -1; /* if this is for us, don't do it */
302 		eh = (struct ether_header *)dst->sa_data;
303  		(void)memcpy(edst, eh->ether_dhost, sizeof (edst));
304 		type = eh->ether_type;
305 		break;
306 
307 	default:
308 		printf("%s%d: can't handle af%d\n", ifp->if_name, ifp->if_unit,
309 			dst->sa_family);
310 		senderr(EAFNOSUPPORT);
311 	}
312 
313 	/*
314 	 * Add local net header.  If no space in first mbuf,
315 	 * allocate another.
316 	 */
317 	M_PREPEND(m, sizeof (struct ether_header), M_DONTWAIT);
318 	if (m == 0)
319 		senderr(ENOBUFS);
320 	eh = mtod(m, struct ether_header *);
321 	(void)memcpy(&eh->ether_type, &type,
322 		sizeof(eh->ether_type));
323  	(void)memcpy(eh->ether_dhost, edst, sizeof (edst));
324 	if (hdrcmplt)
325 		(void)memcpy(eh->ether_shost, esrc,
326 			sizeof(eh->ether_shost));
327 	else
328 		(void)memcpy(eh->ether_shost, ac->ac_enaddr,
329 			sizeof(eh->ether_shost));
330 
331 	/*
332 	 * If a simplex interface, and the packet is being sent to our
333 	 * Ethernet address or a broadcast address, loopback a copy.
334 	 * XXX To make a simplex device behave exactly like a duplex
335 	 * device, we should copy in the case of sending to our own
336 	 * ethernet address (thus letting the original actually appear
337 	 * on the wire). However, we don't do that here for security
338 	 * reasons and compatibility with the original behavior.
339 	 */
340 	if ((ifp->if_flags & IFF_SIMPLEX) && (loop_copy != -1)) {
341 		int csum_flags = 0;
342 
343 		if (m->m_pkthdr.csum_flags & CSUM_IP)
344 			csum_flags |= (CSUM_IP_CHECKED|CSUM_IP_VALID);
345 		if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA)
346 			csum_flags |= (CSUM_DATA_VALID|CSUM_PSEUDO_HDR);
347 		if ((m->m_flags & M_BCAST) || (loop_copy > 0)) {
348 			struct mbuf *n = m_copy(m, 0, (int)M_COPYALL);
349 
350 			n->m_pkthdr.csum_flags |= csum_flags;
351 			if (csum_flags & CSUM_DATA_VALID)
352 				n->m_pkthdr.csum_data = 0xffff;
353 
354 			(void) if_simloop(ifp, n, dst->sa_family, hlen);
355 		} else if (bcmp(eh->ether_dhost,
356 		    eh->ether_shost, ETHER_ADDR_LEN) == 0) {
357 			m->m_pkthdr.csum_flags |= csum_flags;
358 			if (csum_flags & CSUM_DATA_VALID)
359 				m->m_pkthdr.csum_data = 0xffff;
360 			(void) if_simloop(ifp, m, dst->sa_family, hlen);
361 			return (0);	/* XXX */
362 		}
363 	}
364 
365 	/* Handle ng_ether(4) processing, if any */
366 	if (ng_ether_output_p != NULL) {
367 		if ((error = (*ng_ether_output_p)(ifp, &m)) != 0) {
368 bad:			if (m != NULL)
369 				m_freem(m);
370 			return (error);
371 		}
372 		if (m == NULL)
373 			return (0);
374 	}
375 
376 	/* Continue with link-layer output */
377 	return ether_output_frame(ifp, m);
378 }
379 
380 /*
381  * Ethernet link layer output routine to send a raw frame to the device.
382  *
383  * This assumes that the 14 byte Ethernet header is present and contiguous
384  * in the first mbuf (if BRIDGE'ing).
385  */
386 int
387 ether_output_frame(ifp, m)
388 	struct ifnet *ifp;
389 	struct mbuf *m;
390 {
391 	int error = 0;
392 	struct ip_fw *rule = NULL;
393 
394 	/* Extract info from dummynet tag, ignore others */
395 	for (; m->m_type == MT_TAG; m = m->m_next)
396 		if (m->m_flags == PACKET_TAG_DUMMYNET)
397 			rule = ((struct dn_pkt *)m)->rule;
398 
399 	if (rule)	/* packet was already bridged */
400 		goto no_bridge;
401 
402 	if (BDG_ACTIVE(ifp) ) {
403 		struct ether_header *eh; /* a ptr suffices */
404 
405 		m->m_pkthdr.rcvif = NULL;
406 		eh = mtod(m, struct ether_header *);
407 		m_adj(m, ETHER_HDR_LEN);
408 		m = bdg_forward_ptr(m, eh, ifp);
409 		if (m != NULL)
410 			m_freem(m);
411 		return (0);
412 	}
413 
414 no_bridge:
415 	if (IPFW_LOADED && ether_ipfw != 0) {
416 		struct ether_header save_eh, *eh;
417 
418 		eh = mtod(m, struct ether_header *);
419 		save_eh = *eh;
420 		m_adj(m, ETHER_HDR_LEN);
421 		if (ether_ipfw_chk(&m, ifp, &rule, eh, 0) == 0) {
422 			if (m) {
423 				m_freem(m);
424 				return ENOBUFS;	/* pkt dropped */
425 			} else
426 				return 0;	/* consumed e.g. in a pipe */
427 		}
428 		/* packet was ok, restore the ethernet header */
429 		if ( (void *)(eh + 1) == (void *)m->m_data) {
430 			m->m_data -= ETHER_HDR_LEN ;
431 			m->m_len += ETHER_HDR_LEN ;
432 			m->m_pkthdr.len += ETHER_HDR_LEN ;
433 		} else {
434 			M_PREPEND(m, ETHER_HDR_LEN, M_DONTWAIT);
435 			if (m == NULL) /* nope... */
436 				return ENOBUFS;
437 			bcopy(&save_eh, mtod(m, struct ether_header *),
438 			    ETHER_HDR_LEN);
439 		}
440 	}
441 
442 	/*
443 	 * Queue message on interface, update output statistics if
444 	 * successful, and start output if interface not yet active.
445 	 */
446 	if (! IF_HANDOFF(&ifp->if_snd, m, ifp))
447 		return (ENOBUFS);
448 	return (error);
449 }
450 
451 /*
452  * ipfw processing for ethernet packets (in and out).
453  * The second parameter is NULL from ether_demux, and ifp from
454  * ether_output_frame. This section of code could be used from
455  * bridge.c as well as long as we use some extra info
456  * to distinguish that case from ether_output_frame();
457  */
458 int
459 ether_ipfw_chk(struct mbuf **m0, struct ifnet *dst,
460 	struct ip_fw **rule, struct ether_header *eh, int shared)
461 {
462 	struct ether_header save_eh = *eh;	/* might be a ptr in m */
463 	int i;
464 	struct ip_fw_args args;
465 
466 	if (*rule != NULL) /* dummynet packet, already partially processed */
467 		return 1; /* HACK! I should obey the fw_one_pass */
468 
469 	/*
470 	 * I need some amt of data to be contiguous, and in case others need
471 	 * the packet (shared==1) also better be in the first mbuf.
472 	 */
473 	i = min( (*m0)->m_pkthdr.len, max_protohdr);
474 	if ( shared || (*m0)->m_len < i) {
475 		*m0 = m_pullup(*m0, i);
476 		if (*m0 == NULL)
477 			return 0;
478 	}
479 
480 	args.m = *m0;		/* the packet we are looking at		*/
481 	args.oif = dst;		/* destination, if any			*/
482 	args.divert_rule = 0;	/* we do not support divert yet		*/
483 	args.rule = *rule;	/* matching rule to restart		*/
484 	args.next_hop = NULL;	/* we do not support forward yet	*/
485 	args.eh = &save_eh;	/* MAC header for bridged/MAC packets	*/
486 	i = ip_fw_chk_ptr(&args);
487 	*m0 = args.m;
488 	*rule = args.rule;
489 
490 	if ( (i & IP_FW_PORT_DENY_FLAG) || *m0 == NULL) /* drop */
491 		return 0;
492 
493 	if (i == 0) /* a PASS rule.  */
494 		return 1;
495 
496 	if (DUMMYNET_LOADED && (i & IP_FW_PORT_DYNT_FLAG)) {
497 		/*
498 		 * Pass the pkt to dummynet, which consumes it.
499 		 * If shared, make a copy and keep the original.
500 		 */
501 		struct mbuf *m ;
502 
503 		if (shared) {
504 			m = m_copypacket(*m0, M_DONTWAIT);
505 			if (m == NULL)
506 				return 0;
507 		} else {
508 			m = *m0 ; /* pass the original to dummynet */
509 			*m0 = NULL ; /* and nothing back to the caller */
510 		}
511 		/*
512 		 * Prepend the header, optimize for the common case of
513 		 * eh pointing into the mbuf.
514 		 */
515 		if ( (void *)(eh + 1) == (void *)m->m_data) {
516 			m->m_data -= ETHER_HDR_LEN ;
517 			m->m_len += ETHER_HDR_LEN ;
518 			m->m_pkthdr.len += ETHER_HDR_LEN ;
519 		} else {
520 			M_PREPEND(m, ETHER_HDR_LEN, M_DONTWAIT);
521 			if (m == NULL) /* nope... */
522 				return 0;
523 			bcopy(&save_eh, mtod(m, struct ether_header *),
524 			    ETHER_HDR_LEN);
525 		}
526 		ip_dn_io_ptr(m, (i & 0xffff),
527 			dst ? DN_TO_ETH_OUT: DN_TO_ETH_DEMUX, &args);
528 		return 0;
529 	}
530 	/*
531 	 * XXX at some point add support for divert/forward actions.
532 	 * If none of the above matches, we have to drop the pkt.
533 	 */
534 	return 0;
535 }
536 
537 /*
538  * Process a received Ethernet packet. We have two different interfaces:
539  * one (conventional) assumes the packet in the mbuf, with the ethernet
540  * header provided separately in *eh. The second one (new) has everything
541  * in the mbuf, and we can tell it because eh == NULL.
542  * The caller MUST MAKE SURE that there are at least
543  * sizeof(struct ether_header) bytes in the first mbuf.
544  *
545  * This allows us to concentrate in one place a bunch of code which
546  * is replicated in all device drivers. Also, many functions called
547  * from ether_input() try to put the eh back into the mbuf, so we
548  * can later propagate the 'contiguous packet' interface to them,
549  * and handle the old interface just here.
550  *
551  * NOTA BENE: for many drivers "eh" is a pointer into the first mbuf or
552  * cluster, right before m_data. So be very careful when working on m,
553  * as you could destroy *eh !!
554  *
555  * First we perform any link layer operations, then continue
556  * to the upper layers with ether_demux().
557  */
558 void
559 ether_input(struct ifnet *ifp, struct ether_header *eh, struct mbuf *m)
560 {
561 	struct ether_header save_eh;
562 
563 	if (eh == NULL) {
564 		if (m->m_len < sizeof(struct ether_header)) {
565 			/* XXX error in the caller. */
566 			m_freem(m);
567 			return;
568 		}
569 		m->m_pkthdr.rcvif = ifp;
570 		eh = mtod(m, struct ether_header *);
571 		m->m_data += sizeof(struct ether_header);
572 		m->m_len -= sizeof(struct ether_header);
573 		m->m_pkthdr.len = m->m_len;
574 	}
575 
576 #ifdef MAC
577 	mac_create_mbuf_from_ifnet(ifp, m);
578 #endif
579 
580 	/* Check for a BPF tap */
581 	if (ifp->if_bpf != NULL) {
582 		struct m_hdr mh;
583 
584 		/* This kludge is OK; BPF treats the "mbuf" as read-only */
585 		mh.mh_next = m;
586 		mh.mh_data = (char *)eh;
587 		mh.mh_len = ETHER_HDR_LEN;
588 		bpf_mtap(ifp, (struct mbuf *)&mh);
589 	}
590 
591 	ifp->if_ibytes += m->m_pkthdr.len + sizeof (*eh);
592 
593 	/* Handle ng_ether(4) processing, if any */
594 	if (ng_ether_input_p != NULL) {
595 		(*ng_ether_input_p)(ifp, &m, eh);
596 		if (m == NULL)
597 			return;
598 	}
599 
600 	/* Check for bridging mode */
601 	if (BDG_ACTIVE(ifp) ) {
602 		struct ifnet *bif;
603 
604 		/* Check with bridging code */
605 		if ((bif = bridge_in_ptr(ifp, eh)) == BDG_DROP) {
606 			m_freem(m);
607 			return;
608 		}
609 		if (bif != BDG_LOCAL) {
610 			struct mbuf *oldm = m ;
611 
612 			save_eh = *eh ; /* because it might change */
613 			m = bdg_forward_ptr(m, eh, bif); /* needs forwarding */
614 			/*
615 			 * Do not continue if bdg_forward_ptr() processed our
616 			 * packet (and cleared the mbuf pointer m) or if
617 			 * it dropped (m_free'd) the packet itself.
618 			 */
619 			if (m == NULL) {
620 			    if (bif == BDG_BCAST || bif == BDG_MCAST)
621 				printf("bdg_forward drop MULTICAST PKT\n");
622 			    return;
623 			}
624 			if (m != oldm) /* m changed! */
625 			    eh = &save_eh ;
626 		}
627 		if (bif == BDG_LOCAL
628 		    || bif == BDG_BCAST
629 		    || bif == BDG_MCAST)
630 			goto recvLocal;			/* receive locally */
631 
632 		/* If not local and not multicast, just drop it */
633 		if (m != NULL)
634 			m_freem(m);
635 		return;
636        }
637 
638 recvLocal:
639 	/* Continue with upper layer processing */
640 	ether_demux(ifp, eh, m);
641 	/* First chunk of an mbuf contains good junk */
642 	if (harvest.ethernet)
643 		random_harvest(m, 16, 3, 0, RANDOM_NET);
644 }
645 
646 /*
647  * Upper layer processing for a received Ethernet packet.
648  */
649 void
650 ether_demux(ifp, eh, m)
651 	struct ifnet *ifp;
652 	struct ether_header *eh;
653 	struct mbuf *m;
654 {
655 	struct ifqueue *inq;
656 	u_short ether_type;
657 #if defined(NETATALK)
658 	register struct llc *l;
659 #endif
660 	struct ip_fw *rule = NULL;
661 
662 	/* Extract info from dummynet tag, ignore others */
663 	for (;m->m_type == MT_TAG; m = m->m_next)
664 		if (m->m_flags == PACKET_TAG_DUMMYNET) {
665 			rule = ((struct dn_pkt *)m)->rule;
666 			ifp = m->m_next->m_pkthdr.rcvif;
667 		}
668 
669 	if (rule)	/* packet was already bridged */
670 		goto post_stats;
671 
672     if (! (BDG_ACTIVE(ifp) ) )
673 	/* Discard packet if upper layers shouldn't see it because it was
674 	   unicast to a different Ethernet address. If the driver is working
675 	   properly, then this situation can only happen when the interface
676 	   is in promiscuous mode. */
677 	if ((ifp->if_flags & IFF_PROMISC) != 0
678 	    && (eh->ether_dhost[0] & 1) == 0
679 	    && bcmp(eh->ether_dhost,
680 	      IFP2AC(ifp)->ac_enaddr, ETHER_ADDR_LEN) != 0
681 	    && (ifp->if_flags && IFF_PPROMISC) == 0) {
682 		m_freem(m);
683 		return;
684 	}
685 
686 	/* Discard packet if interface is not up */
687 	if ((ifp->if_flags & IFF_UP) == 0) {
688 		m_freem(m);
689 		return;
690 	}
691 	if (eh->ether_dhost[0] & 1) {
692 		if (bcmp((caddr_t)etherbroadcastaddr, (caddr_t)eh->ether_dhost,
693 			 sizeof(etherbroadcastaddr)) == 0)
694 			m->m_flags |= M_BCAST;
695 		else
696 			m->m_flags |= M_MCAST;
697 	}
698 	if (m->m_flags & (M_BCAST|M_MCAST))
699 		ifp->if_imcasts++;
700 
701 post_stats:
702 	if (IPFW_LOADED && ether_ipfw != 0) {
703 		if (ether_ipfw_chk(&m, NULL, &rule, eh, 0 ) == 0) {
704 			if (m)
705 				m_freem(m);
706 			return;
707 		}
708 	}
709 
710 	ether_type = ntohs(eh->ether_type);
711 
712 	switch (ether_type) {
713 #ifdef INET
714 	case ETHERTYPE_IP:
715 		if (ipflow_fastforward(m))
716 			return;
717 		schednetisr(NETISR_IP);
718 		inq = &ipintrq;
719 		break;
720 
721 	case ETHERTYPE_ARP:
722 		if (ifp->if_flags & IFF_NOARP) {
723 			/* Discard packet if ARP is disabled on interface */
724 			m_freem(m);
725 			return;
726 		}
727 		schednetisr(NETISR_ARP);
728 		inq = &arpintrq;
729 		break;
730 #endif
731 #ifdef IPX
732 	case ETHERTYPE_IPX:
733 		if (ef_inputp && ef_inputp(ifp, eh, m) == 0)
734 			return;
735 		schednetisr(NETISR_IPX);
736 		inq = &ipxintrq;
737 		break;
738 #endif
739 #ifdef INET6
740 	case ETHERTYPE_IPV6:
741 		schednetisr(NETISR_IPV6);
742 		inq = &ip6intrq;
743 		break;
744 #endif
745 #ifdef NS
746 	case 0x8137: /* Novell Ethernet_II Ethernet TYPE II */
747 		schednetisr(NETISR_NS);
748 		inq = &nsintrq;
749 		break;
750 
751 #endif /* NS */
752 #ifdef NETATALK
753         case ETHERTYPE_AT:
754                 schednetisr(NETISR_ATALK);
755                 inq = &atintrq1;
756                 break;
757         case ETHERTYPE_AARP:
758 		/* probably this should be done with a NETISR as well */
759                 aarpinput(IFP2AC(ifp), m); /* XXX */
760                 return;
761 #endif /* NETATALK */
762 	case ETHERTYPE_VLAN:
763 		/* XXX lock ? */
764 		if (vlan_input_p != NULL)
765 			(*vlan_input_p)(eh, m);
766 		else {
767 			m->m_pkthdr.rcvif->if_noproto++;
768 			m_freem(m);
769 		}
770 		/* XXX unlock ? */
771 		return;
772 	default:
773 #ifdef IPX
774 		if (ef_inputp && ef_inputp(ifp, eh, m) == 0)
775 			return;
776 #endif /* IPX */
777 #ifdef NS
778 		checksum = mtod(m, ushort *);
779 		/* Novell 802.3 */
780 		if ((ether_type <= ETHERMTU) &&
781 			((*checksum == 0xffff) || (*checksum == 0xE0E0))){
782 			if(*checksum == 0xE0E0) {
783 				m->m_pkthdr.len -= 3;
784 				m->m_len -= 3;
785 				m->m_data += 3;
786 			}
787 				schednetisr(NETISR_NS);
788 				inq = &nsintrq;
789 				break;
790 		}
791 #endif /* NS */
792 #if defined(NETATALK)
793 		if (ether_type > ETHERMTU)
794 			goto dropanyway;
795 		l = mtod(m, struct llc *);
796 		switch (l->llc_dsap) {
797 		case LLC_SNAP_LSAP:
798 		    switch (l->llc_control) {
799 		    case LLC_UI:
800 			if (l->llc_ssap != LLC_SNAP_LSAP)
801 			    goto dropanyway;
802 
803 			if (Bcmp(&(l->llc_snap_org_code)[0], at_org_code,
804 				   sizeof(at_org_code)) == 0 &&
805 			     ntohs(l->llc_snap_ether_type) == ETHERTYPE_AT) {
806 			    inq = &atintrq2;
807 			    m_adj( m, sizeof( struct llc ));
808 			    schednetisr(NETISR_ATALK);
809 			    break;
810 			}
811 
812 			if (Bcmp(&(l->llc_snap_org_code)[0], aarp_org_code,
813 				   sizeof(aarp_org_code)) == 0 &&
814 			     ntohs(l->llc_snap_ether_type) == ETHERTYPE_AARP) {
815 			    m_adj( m, sizeof( struct llc ));
816 			    aarpinput(IFP2AC(ifp), m); /* XXX */
817 			    return;
818 			}
819 
820 		    default:
821 			goto dropanyway;
822 		    }
823 		    break;
824 		dropanyway:
825 		default:
826 			if (ng_ether_input_orphan_p != NULL)
827 				(*ng_ether_input_orphan_p)(ifp, m, eh);
828 			else
829 				m_freem(m);
830 			return;
831 		}
832 #else /* NETATALK */
833 		if (ng_ether_input_orphan_p != NULL)
834 			(*ng_ether_input_orphan_p)(ifp, m, eh);
835 		else
836 			m_freem(m);
837 		return;
838 #endif /* NETATALK */
839 	}
840 
841 	(void) IF_HANDOFF(inq, m, NULL);
842 }
843 
844 /*
845  * Perform common duties while attaching to interface list
846  */
847 void
848 ether_ifattach(ifp, bpf)
849 	register struct ifnet *ifp;
850 	int bpf;
851 {
852 	register struct ifaddr *ifa;
853 	register struct sockaddr_dl *sdl;
854 
855 	ifp->if_type = IFT_ETHER;
856 	ifp->if_addrlen = 6;
857 	ifp->if_hdrlen = 14;
858 	if_attach(ifp);
859 	ifp->if_mtu = ETHERMTU;
860 	ifp->if_resolvemulti = ether_resolvemulti;
861 	if (ifp->if_baudrate == 0)
862 	    ifp->if_baudrate = 10000000;
863 	ifp->if_broadcastaddr = etherbroadcastaddr;
864 	ifa = ifaddr_byindex(ifp->if_index);
865 	KASSERT(ifa != NULL, ("%s: no lladdr!\n", __func__));
866 	sdl = (struct sockaddr_dl *)ifa->ifa_addr;
867 	sdl->sdl_type = IFT_ETHER;
868 	sdl->sdl_alen = ifp->if_addrlen;
869 	bcopy((IFP2AC(ifp))->ac_enaddr, LLADDR(sdl), ifp->if_addrlen);
870 	if (bpf)
871 		bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
872 	if (ng_ether_attach_p != NULL)
873 		(*ng_ether_attach_p)(ifp);
874 	if (BDG_LOADED)
875 		bdgtakeifaces_ptr();
876 }
877 
878 /*
879  * Perform common duties while detaching an Ethernet interface
880  */
881 void
882 ether_ifdetach(ifp, bpf)
883 	struct ifnet *ifp;
884 	int bpf;
885 {
886 	if (ng_ether_detach_p != NULL)
887 		(*ng_ether_detach_p)(ifp);
888 	if (bpf)
889 		bpfdetach(ifp);
890 	if_detach(ifp);
891 	if (BDG_LOADED)
892 		bdgtakeifaces_ptr();
893 }
894 
895 SYSCTL_DECL(_net_link);
896 SYSCTL_NODE(_net_link, IFT_ETHER, ether, CTLFLAG_RW, 0, "Ethernet");
897 SYSCTL_INT(_net_link_ether, OID_AUTO, ipfw, CTLFLAG_RW,
898 	    &ether_ipfw,0,"Pass ether pkts through firewall");
899 
900 int
901 ether_ioctl(ifp, command, data)
902 	struct ifnet *ifp;
903 	int command;
904 	caddr_t data;
905 {
906 	struct ifaddr *ifa = (struct ifaddr *) data;
907 	struct ifreq *ifr = (struct ifreq *) data;
908 	int error = 0;
909 
910 	switch (command) {
911 	case SIOCSIFADDR:
912 		ifp->if_flags |= IFF_UP;
913 
914 		switch (ifa->ifa_addr->sa_family) {
915 #ifdef INET
916 		case AF_INET:
917 			ifp->if_init(ifp->if_softc);	/* before arpwhohas */
918 			arp_ifinit(ifp, ifa);
919 			break;
920 #endif
921 #ifdef IPX
922 		/*
923 		 * XXX - This code is probably wrong
924 		 */
925 		case AF_IPX:
926 			{
927 			register struct ipx_addr *ina = &(IA_SIPX(ifa)->sipx_addr);
928 			struct arpcom *ac = IFP2AC(ifp);
929 
930 			if (ipx_nullhost(*ina))
931 				ina->x_host =
932 				    *(union ipx_host *)
933 			            ac->ac_enaddr;
934 			else {
935 				bcopy((caddr_t) ina->x_host.c_host,
936 				      (caddr_t) ac->ac_enaddr,
937 				      sizeof(ac->ac_enaddr));
938 			}
939 
940 			/*
941 			 * Set new address
942 			 */
943 			ifp->if_init(ifp->if_softc);
944 			break;
945 			}
946 #endif
947 #ifdef NS
948 		/*
949 		 * XXX - This code is probably wrong
950 		 */
951 		case AF_NS:
952 		{
953 			register struct ns_addr *ina = &(IA_SNS(ifa)->sns_addr);
954 			struct arpcom *ac = IFP2AC(ifp);
955 
956 			if (ns_nullhost(*ina))
957 				ina->x_host =
958 				    *(union ns_host *) (ac->ac_enaddr);
959 			else {
960 				bcopy((caddr_t) ina->x_host.c_host,
961 				      (caddr_t) ac->ac_enaddr,
962 				      sizeof(ac->ac_enaddr));
963 			}
964 
965 			/*
966 			 * Set new address
967 			 */
968 			ifp->if_init(ifp->if_softc);
969 			break;
970 		}
971 #endif
972 		default:
973 			ifp->if_init(ifp->if_softc);
974 			break;
975 		}
976 		break;
977 
978 	case SIOCGIFADDR:
979 		{
980 			struct sockaddr *sa;
981 
982 			sa = (struct sockaddr *) & ifr->ifr_data;
983 			bcopy(IFP2AC(ifp)->ac_enaddr,
984 			      (caddr_t) sa->sa_data, ETHER_ADDR_LEN);
985 		}
986 		break;
987 
988 	case SIOCSIFMTU:
989 		/*
990 		 * Set the interface MTU.
991 		 */
992 		if (ifr->ifr_mtu > ETHERMTU) {
993 			error = EINVAL;
994 		} else {
995 			ifp->if_mtu = ifr->ifr_mtu;
996 		}
997 		break;
998 	}
999 	return (error);
1000 }
1001 
1002 int
1003 ether_resolvemulti(ifp, llsa, sa)
1004 	struct ifnet *ifp;
1005 	struct sockaddr **llsa;
1006 	struct sockaddr *sa;
1007 {
1008 	struct sockaddr_dl *sdl;
1009 	struct sockaddr_in *sin;
1010 #ifdef INET6
1011 	struct sockaddr_in6 *sin6;
1012 #endif
1013 	u_char *e_addr;
1014 
1015 	switch(sa->sa_family) {
1016 	case AF_LINK:
1017 		/*
1018 		 * No mapping needed. Just check that it's a valid MC address.
1019 		 */
1020 		sdl = (struct sockaddr_dl *)sa;
1021 		e_addr = LLADDR(sdl);
1022 		if ((e_addr[0] & 1) != 1)
1023 			return EADDRNOTAVAIL;
1024 		*llsa = 0;
1025 		return 0;
1026 
1027 #ifdef INET
1028 	case AF_INET:
1029 		sin = (struct sockaddr_in *)sa;
1030 		if (!IN_MULTICAST(ntohl(sin->sin_addr.s_addr)))
1031 			return EADDRNOTAVAIL;
1032 		MALLOC(sdl, struct sockaddr_dl *, sizeof *sdl, M_IFMADDR,
1033 		       M_WAITOK|M_ZERO);
1034 		sdl->sdl_len = sizeof *sdl;
1035 		sdl->sdl_family = AF_LINK;
1036 		sdl->sdl_index = ifp->if_index;
1037 		sdl->sdl_type = IFT_ETHER;
1038 		sdl->sdl_alen = ETHER_ADDR_LEN;
1039 		e_addr = LLADDR(sdl);
1040 		ETHER_MAP_IP_MULTICAST(&sin->sin_addr, e_addr);
1041 		*llsa = (struct sockaddr *)sdl;
1042 		return 0;
1043 #endif
1044 #ifdef INET6
1045 	case AF_INET6:
1046 		sin6 = (struct sockaddr_in6 *)sa;
1047 		if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
1048 			/*
1049 			 * An IP6 address of 0 means listen to all
1050 			 * of the Ethernet multicast address used for IP6.
1051 			 * (This is used for multicast routers.)
1052 			 */
1053 			ifp->if_flags |= IFF_ALLMULTI;
1054 			*llsa = 0;
1055 			return 0;
1056 		}
1057 		if (!IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr))
1058 			return EADDRNOTAVAIL;
1059 		MALLOC(sdl, struct sockaddr_dl *, sizeof *sdl, M_IFMADDR,
1060 		       M_WAITOK|M_ZERO);
1061 		sdl->sdl_len = sizeof *sdl;
1062 		sdl->sdl_family = AF_LINK;
1063 		sdl->sdl_index = ifp->if_index;
1064 		sdl->sdl_type = IFT_ETHER;
1065 		sdl->sdl_alen = ETHER_ADDR_LEN;
1066 		e_addr = LLADDR(sdl);
1067 		ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, e_addr);
1068 		*llsa = (struct sockaddr *)sdl;
1069 		return 0;
1070 #endif
1071 
1072 	default:
1073 		/*
1074 		 * Well, the text isn't quite right, but it's the name
1075 		 * that counts...
1076 		 */
1077 		return EAFNOSUPPORT;
1078 	}
1079 }
1080