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