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