if_ethersubr.c revision 1.49 1 /* $NetBSD: if_ethersubr.c,v 1.49 1999/09/21 22:18:51 matt Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 /*
33 * Copyright (c) 1982, 1989, 1993
34 * The Regents of the University of California. All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. All advertising materials mentioning features or use of this software
45 * must display the following acknowledgement:
46 * This product includes software developed by the University of
47 * California, Berkeley and its contributors.
48 * 4. Neither the name of the University nor the names of its contributors
49 * may be used to endorse or promote products derived from this software
50 * without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 * SUCH DAMAGE.
63 *
64 * @(#)if_ethersubr.c 8.2 (Berkeley) 4/4/96
65 */
66
67 #include "opt_inet.h"
68 #include "opt_atalk.h"
69 #include "opt_ccitt.h"
70 #include "opt_llc.h"
71 #include "opt_iso.h"
72 #include "opt_ns.h"
73 #include "opt_gateway.h"
74
75 #include <sys/param.h>
76 #include <sys/systm.h>
77 #include <sys/kernel.h>
78 #include <sys/malloc.h>
79 #include <sys/mbuf.h>
80 #include <sys/protosw.h>
81 #include <sys/socket.h>
82 #include <sys/ioctl.h>
83 #include <sys/errno.h>
84 #include <sys/syslog.h>
85
86 #include <machine/cpu.h>
87
88 #include <net/if.h>
89 #include <net/netisr.h>
90 #include <net/route.h>
91 #include <net/if_llc.h>
92 #include <net/if_dl.h>
93 #include <net/if_types.h>
94
95 #include <net/if_ether.h>
96
97 #include <netinet/in.h>
98 #ifdef INET
99 #include <netinet/in_var.h>
100 #endif
101 #include <netinet/if_inarp.h>
102
103 #ifdef INET6
104 #ifndef INET
105 #include <netinet/in.h>
106 #endif
107 #include <netinet6/in6_var.h>
108 #include <netinet6/nd6.h>
109 #include <netinet6/in6_ifattach.h>
110 #endif
111
112 #ifdef NS
113 #include <netns/ns.h>
114 #include <netns/ns_if.h>
115 #endif
116
117 #ifdef IPX
118 #include <netipx/ipx.h>
119 #include <netipx/ipx_if.h>
120 #endif
121
122 #ifdef ISO
123 #include <netiso/argo_debug.h>
124 #include <netiso/iso.h>
125 #include <netiso/iso_var.h>
126 #include <netiso/iso_snpac.h>
127 #endif
128
129 #ifdef LLC
130 #include <netccitt/dll.h>
131 #include <netccitt/llc_var.h>
132 #endif
133
134 #if defined(LLC) && defined(CCITT)
135 extern struct ifqueue pkintrq;
136 #endif
137
138 #ifdef NETATALK
139 #include <netatalk/at.h>
140 #include <netatalk/at_var.h>
141 #include <netatalk/at_extern.h>
142
143 #define llc_snap_org_code llc_un.type_snap.org_code
144 #define llc_snap_ether_type llc_un.type_snap.ether_type
145
146 extern u_char at_org_code[3];
147 extern u_char aarp_org_code[3];
148 #endif /* NETATALK */
149
150 u_char etherbroadcastaddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
151 #define senderr(e) { error = (e); goto bad;}
152
153 #define SIN(x) ((struct sockaddr_in *)x)
154
155 static int ether_output __P((struct ifnet *, struct mbuf *,
156 struct sockaddr *, struct rtentry *));
157 static void ether_input __P((struct ifnet *, struct mbuf *));
158
159 /*
160 * Ethernet output routine.
161 * Encapsulate a packet of type family for the local net.
162 * Assumes that ifp is actually pointer to ethercom structure.
163 */
164 static int
165 ether_output(ifp, m0, dst, rt0)
166 struct ifnet *ifp;
167 struct mbuf *m0;
168 struct sockaddr *dst;
169 struct rtentry *rt0;
170 {
171 u_int16_t etype = 0;
172 int s, error = 0, hdrcmplt = 0;
173 u_char esrc[6], edst[6];
174 struct mbuf *m = m0;
175 struct rtentry *rt;
176 struct mbuf *mcopy = (struct mbuf *)0;
177 struct ether_header *eh;
178 #ifdef INET
179 struct arphdr *ah;
180 #endif /* INET */
181 #ifdef NETATALK
182 struct at_ifaddr *aa;
183 #endif /* NETATALK */
184
185 if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
186 senderr(ENETDOWN);
187 ifp->if_lastchange = time;
188 if ((rt = rt0) != NULL) {
189 if ((rt->rt_flags & RTF_UP) == 0) {
190 if ((rt0 = rt = rtalloc1(dst, 1)) != NULL) {
191 rt->rt_refcnt--;
192 if (rt->rt_ifp != ifp)
193 return (*rt->rt_ifp->if_output)
194 (ifp, m0, dst, rt);
195 } else
196 senderr(EHOSTUNREACH);
197 }
198 if ((rt->rt_flags & RTF_GATEWAY) && dst->sa_family != AF_NS) {
199 if (rt->rt_gwroute == 0)
200 goto lookup;
201 if (((rt = rt->rt_gwroute)->rt_flags & RTF_UP) == 0) {
202 rtfree(rt); rt = rt0;
203 lookup: rt->rt_gwroute = rtalloc1(rt->rt_gateway, 1);
204 if ((rt = rt->rt_gwroute) == 0)
205 senderr(EHOSTUNREACH);
206 /* the "G" test below also prevents rt == rt0 */
207 if ((rt->rt_flags & RTF_GATEWAY) ||
208 (rt->rt_ifp != ifp)) {
209 rt->rt_refcnt--;
210 rt0->rt_gwroute = 0;
211 senderr(EHOSTUNREACH);
212 }
213 }
214 }
215 if (rt->rt_flags & RTF_REJECT)
216 if (rt->rt_rmx.rmx_expire == 0 ||
217 time.tv_sec < rt->rt_rmx.rmx_expire)
218 senderr(rt == rt0 ? EHOSTDOWN : EHOSTUNREACH);
219 }
220 switch (dst->sa_family) {
221
222 #ifdef INET
223 case AF_INET:
224 if (m->m_flags & M_BCAST)
225 bcopy((caddr_t)etherbroadcastaddr, (caddr_t)edst,
226 sizeof(edst));
227
228 else if (m->m_flags & M_MCAST) {
229 ETHER_MAP_IP_MULTICAST(&SIN(dst)->sin_addr,
230 (caddr_t)edst)
231
232 } else if (!arpresolve(ifp, rt, m, dst, edst))
233 return (0); /* if not yet resolved */
234 /* If broadcasting on a simplex interface, loopback a copy */
235 if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
236 mcopy = m_copy(m, 0, (int)M_COPYALL);
237 etype = htons(ETHERTYPE_IP);
238 break;
239
240 case AF_ARP:
241 ah = mtod(m, struct arphdr *);
242 if (m->m_flags & M_BCAST)
243 bcopy((caddr_t)etherbroadcastaddr, (caddr_t)edst,
244 sizeof(edst));
245 else
246 bcopy((caddr_t)ar_tha(ah),
247 (caddr_t)edst, sizeof(edst));
248
249 ah->ar_hrd = htons(ARPHRD_ETHER);
250
251 switch(ntohs(ah->ar_op)) {
252 case ARPOP_REVREQUEST:
253 case ARPOP_REVREPLY:
254 etype = htons(ETHERTYPE_REVARP);
255 break;
256
257 case ARPOP_REQUEST:
258 case ARPOP_REPLY:
259 default:
260 etype = htons(ETHERTYPE_ARP);
261 }
262
263 break;
264 #endif
265 #ifdef INET6
266 case AF_INET6:
267 #ifdef NEWIP6OUTPUT
268 if (!nd6_storelladdr(ifp, rt, m, dst, (u_char *)edst))
269 return(0); /* it must be impossible, but... */
270 #else
271 if (!nd6_resolve(ifp, rt, m, dst, (u_char *)edst))
272 return(0); /* if not yet resolves */
273 #endif /* NEWIP6OUTPUT */
274 etype = htons(ETHERTYPE_IPV6);
275 break;
276 #endif
277 #ifdef NETATALK
278 case AF_APPLETALK:
279 if (!aarpresolve(ifp, m, (struct sockaddr_at *)dst, edst)) {
280 #ifdef NETATALKDEBUG
281 printf("aarpresolv failed\n");
282 #endif /* NETATALKDEBUG */
283 return (0);
284 }
285 /*
286 * ifaddr is the first thing in at_ifaddr
287 */
288 aa = (struct at_ifaddr *) at_ifawithnet(
289 (struct sockaddr_at *)dst, ifp);
290 if (aa == NULL)
291 goto bad;
292
293 /*
294 * In the phase 2 case, we need to prepend an mbuf for the
295 * llc header. Since we must preserve the value of m,
296 * which is passed to us by value, we m_copy() the first
297 * mbuf, and use it for our llc header.
298 */
299 if (aa->aa_flags & AFA_PHASE2) {
300 struct llc llc;
301
302 M_PREPEND(m, sizeof(struct llc), M_DONTWAIT);
303 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP;
304 llc.llc_control = LLC_UI;
305 bcopy(at_org_code, llc.llc_snap_org_code,
306 sizeof(llc.llc_snap_org_code));
307 llc.llc_snap_ether_type = htons(ETHERTYPE_ATALK);
308 bcopy(&llc, mtod(m, caddr_t), sizeof(struct llc));
309 } else {
310 etype = htons(ETHERTYPE_ATALK);
311 }
312 break;
313 #endif /* NETATALK */
314 #ifdef NS
315 case AF_NS:
316 etype = htons(ETHERTYPE_NS);
317 bcopy((caddr_t)&(((struct sockaddr_ns *)dst)->sns_addr.x_host),
318 (caddr_t)edst, sizeof (edst));
319 if (!bcmp((caddr_t)edst, (caddr_t)&ns_thishost, sizeof(edst)))
320 return (looutput(ifp, m, dst, rt));
321 /* If broadcasting on a simplex interface, loopback a copy */
322 if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
323 mcopy = m_copy(m, 0, (int)M_COPYALL);
324 break;
325 #endif
326 #ifdef IPX
327 case AF_IPX:
328 etype = htons(ETHERTYPE_IPX);
329 bcopy((caddr_t)&(((struct sockaddr_ipx *)dst)->sipx_addr.x_host),
330 (caddr_t)edst, sizeof (edst));
331 /* If broadcasting on a simplex interface, loopback a copy */
332 if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
333 mcopy = m_copy(m, 0, (int)M_COPYALL);
334 break;
335 #endif
336 #ifdef ISO
337 case AF_ISO: {
338 int snpalen;
339 struct llc *l;
340 struct sockaddr_dl *sdl;
341
342 if (rt && (sdl = (struct sockaddr_dl *)rt->rt_gateway) &&
343 sdl->sdl_family == AF_LINK && sdl->sdl_alen > 0) {
344 bcopy(LLADDR(sdl), (caddr_t)edst, sizeof(edst));
345 } else {
346 error = iso_snparesolve(ifp, (struct sockaddr_iso *)dst,
347 (char *)edst, &snpalen);
348 if (error)
349 goto bad; /* Not Resolved */
350 }
351 /* If broadcasting on a simplex interface, loopback a copy */
352 if (*edst & 1)
353 m->m_flags |= (M_BCAST|M_MCAST);
354 if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX) &&
355 (mcopy = m_copy(m, 0, (int)M_COPYALL))) {
356 M_PREPEND(mcopy, sizeof (*eh), M_DONTWAIT);
357 if (mcopy) {
358 eh = mtod(mcopy, struct ether_header *);
359 bcopy((caddr_t)edst,
360 (caddr_t)eh->ether_dhost, sizeof (edst));
361 bcopy(LLADDR(ifp->if_sadl),
362 (caddr_t)eh->ether_shost, sizeof (edst));
363 }
364 }
365 M_PREPEND(m, 3, M_DONTWAIT);
366 if (m == NULL)
367 return (0);
368 l = mtod(m, struct llc *);
369 l->llc_dsap = l->llc_ssap = LLC_ISO_LSAP;
370 l->llc_control = LLC_UI;
371 #ifdef ARGO_DEBUG
372 if (argo_debug[D_ETHER]) {
373 int i;
374 printf("unoutput: sending pkt to: ");
375 for (i=0; i<6; i++)
376 printf("%x ", edst[i] & 0xff);
377 printf("\n");
378 }
379 #endif
380 } break;
381 #endif /* ISO */
382 #ifdef LLC
383 /* case AF_NSAP: */
384 case AF_CCITT: {
385 struct sockaddr_dl *sdl =
386 (struct sockaddr_dl *) rt -> rt_gateway;
387
388 if (sdl && sdl->sdl_family == AF_LINK
389 && sdl->sdl_alen > 0) {
390 bcopy(LLADDR(sdl), (char *)edst,
391 sizeof(edst));
392 } else goto bad; /* Not a link interface ? Funny ... */
393 if ((ifp->if_flags & IFF_SIMPLEX) && (*edst & 1) &&
394 (mcopy = m_copy(m, 0, (int)M_COPYALL))) {
395 M_PREPEND(mcopy, sizeof (*eh), M_DONTWAIT);
396 if (mcopy) {
397 eh = mtod(mcopy, struct ether_header *);
398 bcopy((caddr_t)edst,
399 (caddr_t)eh->ether_dhost, sizeof (edst));
400 bcopy(LLADDR(ifp->if_sadl),
401 (caddr_t)eh->ether_shost, sizeof (edst));
402 }
403 }
404 #ifdef LLC_DEBUG
405 {
406 int i;
407 struct llc *l = mtod(m, struct llc *);
408
409 printf("ether_output: sending LLC2 pkt to: ");
410 for (i=0; i<6; i++)
411 printf("%x ", edst[i] & 0xff);
412 printf(" len 0x%x dsap 0x%x ssap 0x%x control 0x%x\n",
413 m->m_pkthdr.len, l->llc_dsap & 0xff, l->llc_ssap &0xff,
414 l->llc_control & 0xff);
415
416 }
417 #endif /* LLC_DEBUG */
418 } break;
419 #endif /* LLC */
420
421 case pseudo_AF_HDRCMPLT:
422 hdrcmplt = 1;
423 eh = (struct ether_header *)dst->sa_data;
424 bcopy((caddr_t)eh->ether_shost, (caddr_t)esrc, sizeof (esrc));
425 /* FALLTHROUGH */
426
427 case AF_UNSPEC:
428 eh = (struct ether_header *)dst->sa_data;
429 bcopy((caddr_t)eh->ether_dhost, (caddr_t)edst, sizeof (edst));
430 /* AF_UNSPEC doesn't swap the byte order of the ether_type. */
431 etype = eh->ether_type;
432 break;
433
434 default:
435 printf("%s: can't handle af%d\n", ifp->if_xname,
436 dst->sa_family);
437 senderr(EAFNOSUPPORT);
438 }
439
440 if (mcopy)
441 (void) looutput(ifp, mcopy, dst, rt);
442
443 /*
444 * Add local net header. If no space in first mbuf,
445 * allocate another.
446 */
447 M_PREPEND(m, sizeof (struct ether_header), M_DONTWAIT);
448 if (m == 0)
449 senderr(ENOBUFS);
450 eh = mtod(m, struct ether_header *);
451 if (etype == 0)
452 etype = htons(m->m_pkthdr.len);
453 bcopy((caddr_t)&etype,(caddr_t)&eh->ether_type,
454 sizeof(eh->ether_type));
455 bcopy((caddr_t)edst, (caddr_t)eh->ether_dhost, sizeof (edst));
456 if (hdrcmplt)
457 bcopy((caddr_t)esrc, (caddr_t)eh->ether_shost,
458 sizeof(eh->ether_shost));
459 else
460 bcopy(LLADDR(ifp->if_sadl), (caddr_t)eh->ether_shost,
461 sizeof(eh->ether_shost));
462 s = splimp();
463 /*
464 * Queue message on interface, and start output if interface
465 * not yet active.
466 */
467 if (IF_QFULL(&ifp->if_snd)) {
468 IF_DROP(&ifp->if_snd);
469 splx(s);
470 senderr(ENOBUFS);
471 }
472 ifp->if_obytes += m->m_pkthdr.len;
473 IF_ENQUEUE(&ifp->if_snd, m);
474 if ((ifp->if_flags & IFF_OACTIVE) == 0)
475 (*ifp->if_start)(ifp);
476 splx(s);
477 if (m->m_flags & M_MCAST)
478 ifp->if_omcasts++;
479 return (error);
480
481 bad:
482 if (m)
483 m_freem(m);
484 return (error);
485 }
486
487 /*
488 * Process a received Ethernet packet;
489 * the packet is in the mbuf chain m with
490 * the ether header.
491 */
492 static void
493 ether_input(ifp, m)
494 struct ifnet *ifp;
495 struct mbuf *m;
496 {
497 struct ifqueue *inq;
498 u_int16_t etype;
499 int s;
500 struct ether_header *eh;
501 #if defined (ISO) || defined (LLC) || defined(NETATALK)
502 struct llc *l;
503 #endif
504
505 if ((ifp->if_flags & IFF_UP) == 0) {
506 m_freem(m);
507 return;
508 }
509
510 eh = mtod(m, struct ether_header *);
511
512 ifp->if_lastchange = time;
513 ifp->if_ibytes += m->m_pkthdr.len;
514 if (eh->ether_dhost[0] & 1) {
515 if (bcmp((caddr_t)etherbroadcastaddr, (caddr_t)eh->ether_dhost,
516 sizeof(etherbroadcastaddr)) == 0)
517 m->m_flags |= M_BCAST;
518 else
519 m->m_flags |= M_MCAST;
520 }
521 if (m->m_flags & (M_BCAST|M_MCAST))
522 ifp->if_imcasts++;
523
524 etype = ntohs(eh->ether_type);
525
526 /* Strip off the Ethernet header. */
527 m_adj(m, sizeof(struct ether_header));
528
529 /* If the CRC is still on the packet, trim it off. */
530 if (m->m_flags & M_HASFCS)
531 m_adj(m, -ETHER_CRC_LEN);
532
533 switch (etype) {
534 #ifdef INET
535 case ETHERTYPE_IP:
536 #ifdef GATEWAY
537 if (ipflow_fastforward(m))
538 return;
539 #endif
540 schednetisr(NETISR_IP);
541 inq = &ipintrq;
542 break;
543
544 case ETHERTYPE_ARP:
545 schednetisr(NETISR_ARP);
546 inq = &arpintrq;
547 break;
548
549 case ETHERTYPE_REVARP:
550 revarpinput(m); /* XXX queue? */
551 return;
552 #endif
553 #ifdef INET6
554 case ETHERTYPE_IPV6:
555 schednetisr(NETISR_IPV6);
556 inq = &ip6intrq;
557 break;
558 #endif
559 #ifdef NS
560 case ETHERTYPE_NS:
561 schednetisr(NETISR_NS);
562 inq = &nsintrq;
563 break;
564
565 #endif
566 #ifdef IPX
567 case ETHERTYPE_IPX:
568 schednetisr(NETISR_IPX);
569 inq = &ipxintrq;
570 break;
571 #endif
572 #ifdef NETATALK
573 case ETHERTYPE_ATALK:
574 schednetisr(NETISR_ATALK);
575 inq = &atintrq1;
576 break;
577 case ETHERTYPE_AARP:
578 /* probably this should be done with a NETISR as well */
579 aarpinput(ifp, m); /* XXX */
580 return;
581 #endif /* NETATALK */
582 default:
583 #if defined (ISO) || defined (LLC) || defined (NETATALK)
584 if (etype > ETHERMTU)
585 goto dropanyway;
586 l = mtod(m, struct llc *);
587 switch (l->llc_dsap) {
588 #ifdef NETATALK
589 case LLC_SNAP_LSAP:
590 switch (l->llc_control) {
591 case LLC_UI:
592 if (l->llc_ssap != LLC_SNAP_LSAP) {
593 goto dropanyway;
594 }
595
596 if (Bcmp(&(l->llc_snap_org_code)[0],
597 at_org_code, sizeof(at_org_code)) == 0 &&
598 ntohs(l->llc_snap_ether_type) ==
599 ETHERTYPE_ATALK) {
600 inq = &atintrq2;
601 m_adj(m, sizeof(struct llc));
602 schednetisr(NETISR_ATALK);
603 break;
604 }
605
606 if (Bcmp(&(l->llc_snap_org_code)[0],
607 aarp_org_code,
608 sizeof(aarp_org_code)) == 0 &&
609 ntohs(l->llc_snap_ether_type) ==
610 ETHERTYPE_AARP) {
611 m_adj( m, sizeof(struct llc));
612 aarpinput(ifp, m); /* XXX */
613 return;
614 }
615
616 default:
617 goto dropanyway;
618 }
619 break;
620 #endif /* NETATALK */
621 #ifdef ISO
622 case LLC_ISO_LSAP:
623 switch (l->llc_control) {
624 case LLC_UI:
625 /* LLC_UI_P forbidden in class 1 service */
626 if ((l->llc_dsap == LLC_ISO_LSAP) &&
627 (l->llc_ssap == LLC_ISO_LSAP)) {
628 /* LSAP for ISO */
629 if (m->m_pkthdr.len > etype)
630 m_adj(m, etype - m->m_pkthdr.len);
631 m->m_data += 3; /* XXX */
632 m->m_len -= 3; /* XXX */
633 m->m_pkthdr.len -= 3; /* XXX */
634 M_PREPEND(m, sizeof *eh, M_DONTWAIT);
635 if (m == 0)
636 return;
637 *mtod(m, struct ether_header *) = *eh;
638 #ifdef ARGO_DEBUG
639 if (argo_debug[D_ETHER])
640 printf("clnp packet");
641 #endif
642 schednetisr(NETISR_ISO);
643 inq = &clnlintrq;
644 break;
645 }
646 goto dropanyway;
647
648 case LLC_XID:
649 case LLC_XID_P:
650 if(m->m_len < 6)
651 goto dropanyway;
652 l->llc_window = 0;
653 l->llc_fid = 9;
654 l->llc_class = 1;
655 l->llc_dsap = l->llc_ssap = 0;
656 /* Fall through to */
657 case LLC_TEST:
658 case LLC_TEST_P:
659 {
660 struct sockaddr sa;
661 struct ether_header *eh2;
662 int i;
663 u_char c = l->llc_dsap;
664
665 l->llc_dsap = l->llc_ssap;
666 l->llc_ssap = c;
667 if (m->m_flags & (M_BCAST | M_MCAST))
668 bcopy(LLADDR(ifp->if_sadl),
669 (caddr_t)eh->ether_dhost, 6);
670 sa.sa_family = AF_UNSPEC;
671 sa.sa_len = sizeof(sa);
672 eh2 = (struct ether_header *)sa.sa_data;
673 for (i = 0; i < 6; i++) {
674 eh2->ether_shost[i] = c =
675 eh->ether_dhost[i];
676 eh2->ether_dhost[i] =
677 eh->ether_dhost[i] =
678 eh->ether_shost[i];
679 eh->ether_shost[i] = c;
680 }
681 ifp->if_output(ifp, m, &sa, NULL);
682 return;
683 }
684 default:
685 m_freem(m);
686 return;
687 }
688 break;
689 #endif /* ISO */
690 #ifdef LLC
691 case LLC_X25_LSAP:
692 {
693 if (m->m_pkthdr.len > etype)
694 m_adj(m, etype - m->m_pkthdr.len);
695 M_PREPEND(m, sizeof(struct sdl_hdr) , M_DONTWAIT);
696 if (m == 0)
697 return;
698 if ( !sdl_sethdrif(ifp, eh->ether_shost, LLC_X25_LSAP,
699 eh->ether_dhost, LLC_X25_LSAP, 6,
700 mtod(m, struct sdl_hdr *)))
701 panic("ETHER cons addr failure");
702 mtod(m, struct sdl_hdr *)->sdlhdr_len = etype;
703 #ifdef LLC_DEBUG
704 printf("llc packet\n");
705 #endif /* LLC_DEBUG */
706 schednetisr(NETISR_CCITT);
707 inq = &llcintrq;
708 break;
709 }
710 #endif /* LLC */
711 dropanyway:
712 default:
713 m_freem(m);
714 return;
715 }
716 #else /* ISO || LLC || NETATALK*/
717 m_freem(m);
718 return;
719 #endif /* ISO || LLC || NETATALK*/
720 }
721
722 s = splimp();
723 if (IF_QFULL(inq)) {
724 IF_DROP(inq);
725 m_freem(m);
726 } else
727 IF_ENQUEUE(inq, m);
728 splx(s);
729 }
730
731 /*
732 * Convert Ethernet address to printable (loggable) representation.
733 */
734 static char digits[] = "0123456789abcdef";
735 char *
736 ether_sprintf(ap)
737 const u_char *ap;
738 {
739 static char etherbuf[18];
740 char *cp = etherbuf;
741 int i;
742
743 for (i = 0; i < 6; i++) {
744 *cp++ = digits[*ap >> 4];
745 *cp++ = digits[*ap++ & 0xf];
746 *cp++ = ':';
747 }
748 *--cp = 0;
749 return (etherbuf);
750 }
751
752 /*
753 * Perform common duties while attaching to interface list
754 */
755 void
756 ether_ifattach(ifp, lla)
757 struct ifnet *ifp;
758 const u_int8_t *lla;
759 {
760 struct sockaddr_dl *sdl;
761
762 ifp->if_type = IFT_ETHER;
763 ifp->if_addrlen = 6;
764 ifp->if_hdrlen = 14;
765 ifp->if_mtu = ETHERMTU;
766 ifp->if_output = ether_output;
767 ifp->if_input = ether_input;
768 if ((sdl = ifp->if_sadl) &&
769 sdl->sdl_family == AF_LINK) {
770 sdl->sdl_type = IFT_ETHER;
771 sdl->sdl_alen = ifp->if_addrlen;
772 bcopy(lla, LLADDR(sdl), ifp->if_addrlen);
773 }
774 LIST_INIT(&((struct ethercom *)ifp)->ec_multiaddrs);
775 ifp->if_broadcastaddr = etherbroadcastaddr;
776 #ifdef INET6
777 in6_ifattach_getifid(ifp);
778 #endif
779 }
780
781 #ifdef INET
782 u_char ether_ipmulticast_min[6] = { 0x01, 0x00, 0x5e, 0x00, 0x00, 0x00 };
783 u_char ether_ipmulticast_max[6] = { 0x01, 0x00, 0x5e, 0x7f, 0xff, 0xff };
784 #endif
785 #ifdef INET6
786 u_char ether_ip6multicast_min[6] = { 0x33, 0x33, 0x00, 0x00, 0x00, 0x00 };
787 u_char ether_ip6multicast_max[6] = { 0x33, 0x33, 0xff, 0xff, 0xff, 0xff };
788 #endif
789 /*
790 * Add an Ethernet multicast address or range of addresses to the list for a
791 * given interface.
792 */
793 int
794 ether_addmulti(ifr, ec)
795 struct ifreq *ifr;
796 struct ethercom *ec;
797 {
798 struct ether_multi *enm;
799 #ifdef INET
800 struct sockaddr_in *sin;
801 #endif /* INET */
802 #ifdef INET6
803 struct sockaddr_in6 *sin6;
804 #endif /* INET6 */
805 u_char addrlo[6];
806 u_char addrhi[6];
807 int s = splimp();
808
809 switch (ifr->ifr_addr.sa_family) {
810
811 case AF_UNSPEC:
812 bcopy(ifr->ifr_addr.sa_data, addrlo, 6);
813 bcopy(addrlo, addrhi, 6);
814 break;
815
816 #ifdef INET
817 case AF_INET:
818 sin = (struct sockaddr_in *)&(ifr->ifr_addr);
819 if (sin->sin_addr.s_addr == INADDR_ANY) {
820 /*
821 * An IP address of INADDR_ANY means listen to all
822 * of the Ethernet multicast addresses used for IP.
823 * (This is for the sake of IP multicast routers.)
824 */
825 bcopy(ether_ipmulticast_min, addrlo, 6);
826 bcopy(ether_ipmulticast_max, addrhi, 6);
827 }
828 else {
829 ETHER_MAP_IP_MULTICAST(&sin->sin_addr, addrlo);
830 bcopy(addrlo, addrhi, 6);
831 }
832 break;
833 #endif
834 #ifdef INET6
835 case AF_INET6:
836 sin6 = (struct sockaddr_in6 *)
837 &(((struct in6_ifreq *)ifr)->ifr_addr);
838 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
839 /*
840 * An IP6 address of 0 means listen to all
841 * of the Ethernet multicast address used for IP6.
842 * (This is used for multicast routers.)
843 */
844 bcopy(ether_ip6multicast_min, addrlo, ETHER_ADDR_LEN);
845 bcopy(ether_ip6multicast_max, addrhi, ETHER_ADDR_LEN);
846 #if 0
847 set_allmulti = 1;
848 #endif
849 } else {
850 ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, addrlo);
851 bcopy(addrlo, addrhi, ETHER_ADDR_LEN);
852 }
853 break;
854 #endif
855
856 default:
857 splx(s);
858 return (EAFNOSUPPORT);
859 }
860
861 /*
862 * Verify that we have valid Ethernet multicast addresses.
863 */
864 if ((addrlo[0] & 0x01) != 1 || (addrhi[0] & 0x01) != 1) {
865 splx(s);
866 return (EINVAL);
867 }
868 /*
869 * See if the address range is already in the list.
870 */
871 ETHER_LOOKUP_MULTI(addrlo, addrhi, ec, enm);
872 if (enm != NULL) {
873 /*
874 * Found it; just increment the reference count.
875 */
876 ++enm->enm_refcount;
877 splx(s);
878 return (0);
879 }
880 /*
881 * New address or range; malloc a new multicast record
882 * and link it into the interface's multicast list.
883 */
884 enm = (struct ether_multi *)malloc(sizeof(*enm), M_IFMADDR, M_NOWAIT);
885 if (enm == NULL) {
886 splx(s);
887 return (ENOBUFS);
888 }
889 bcopy(addrlo, enm->enm_addrlo, 6);
890 bcopy(addrhi, enm->enm_addrhi, 6);
891 enm->enm_ec = ec;
892 enm->enm_refcount = 1;
893 LIST_INSERT_HEAD(&ec->ec_multiaddrs, enm, enm_list);
894 ec->ec_multicnt++;
895 splx(s);
896 /*
897 * Return ENETRESET to inform the driver that the list has changed
898 * and its reception filter should be adjusted accordingly.
899 */
900 return (ENETRESET);
901 }
902
903 /*
904 * Delete a multicast address record.
905 */
906 int
907 ether_delmulti(ifr, ec)
908 struct ifreq *ifr;
909 struct ethercom *ec;
910 {
911 struct ether_multi *enm;
912 #ifdef INET
913 struct sockaddr_in *sin;
914 #endif /* INET */
915 #ifdef INET6
916 struct sockaddr_in6 *sin6;
917 #endif /* INET6 */
918 u_char addrlo[6];
919 u_char addrhi[6];
920 int s = splimp();
921
922 switch (ifr->ifr_addr.sa_family) {
923
924 case AF_UNSPEC:
925 bcopy(ifr->ifr_addr.sa_data, addrlo, 6);
926 bcopy(addrlo, addrhi, 6);
927 break;
928
929 #ifdef INET
930 case AF_INET:
931 sin = (struct sockaddr_in *)&(ifr->ifr_addr);
932 if (sin->sin_addr.s_addr == INADDR_ANY) {
933 /*
934 * An IP address of INADDR_ANY means stop listening
935 * to the range of Ethernet multicast addresses used
936 * for IP.
937 */
938 bcopy(ether_ipmulticast_min, addrlo, 6);
939 bcopy(ether_ipmulticast_max, addrhi, 6);
940 }
941 else {
942 ETHER_MAP_IP_MULTICAST(&sin->sin_addr, addrlo);
943 bcopy(addrlo, addrhi, 6);
944 }
945 break;
946 #endif
947 #ifdef INET6
948 case AF_INET6:
949 sin6 = (struct sockaddr_in6 *)&(ifr->ifr_addr);
950 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
951 /*
952 * An IP6 address of all 0 means stop listening
953 * to the range of Ethernet multicast addresses used
954 * for IP6
955 */
956 bcopy(ether_ip6multicast_min, addrlo, ETHER_ADDR_LEN);
957 bcopy(ether_ip6multicast_max, addrhi, ETHER_ADDR_LEN);
958 } else {
959 ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, addrlo);
960 bcopy(addrlo, addrhi, ETHER_ADDR_LEN);
961 }
962 break;
963 #endif
964
965 default:
966 splx(s);
967 return (EAFNOSUPPORT);
968 }
969
970 /*
971 * Look up the address in our list.
972 */
973 ETHER_LOOKUP_MULTI(addrlo, addrhi, ec, enm);
974 if (enm == NULL) {
975 splx(s);
976 return (ENXIO);
977 }
978 if (--enm->enm_refcount != 0) {
979 /*
980 * Still some claims to this record.
981 */
982 splx(s);
983 return (0);
984 }
985 /*
986 * No remaining claims to this record; unlink and free it.
987 */
988 LIST_REMOVE(enm, enm_list);
989 free(enm, M_IFMADDR);
990 ec->ec_multicnt--;
991 splx(s);
992 /*
993 * Return ENETRESET to inform the driver that the list has changed
994 * and its reception filter should be adjusted accordingly.
995 */
996 return (ENETRESET);
997 }
998