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 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * @(#)if_ethersubr.c 8.1 (Berkeley) 6/10/93 30 * $FreeBSD$ 31 */ 32 33 #include "opt_inet.h" 34 #include "opt_inet6.h" 35 #include "opt_netgraph.h" 36 #include "opt_mbuf_profiling.h" 37 #include "opt_rss.h" 38 39 #include <sys/param.h> 40 #include <sys/systm.h> 41 #include <sys/kernel.h> 42 #include <sys/lock.h> 43 #include <sys/malloc.h> 44 #include <sys/module.h> 45 #include <sys/mbuf.h> 46 #include <sys/random.h> 47 #include <sys/socket.h> 48 #include <sys/sockio.h> 49 #include <sys/sysctl.h> 50 #include <sys/uuid.h> 51 52 #include <net/if.h> 53 #include <net/if_var.h> 54 #include <net/if_arp.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/if_bridgevar.h> 63 #include <net/if_vlan_var.h> 64 #include <net/if_llatbl.h> 65 #include <net/pfil.h> 66 #include <net/vnet.h> 67 68 #include <netpfil/pf/pf_mtag.h> 69 70 #if defined(INET) || defined(INET6) 71 #include <netinet/in.h> 72 #include <netinet/in_var.h> 73 #include <netinet/if_ether.h> 74 #include <netinet/in_rss.h> 75 #include <netinet/ip_carp.h> 76 #include <netinet/ip_var.h> 77 #endif 78 #ifdef INET6 79 #include <netinet6/nd6.h> 80 #endif 81 #include <security/mac/mac_framework.h> 82 83 #ifdef CTASSERT 84 CTASSERT(sizeof (struct ether_header) == ETHER_ADDR_LEN * 2 + 2); 85 CTASSERT(sizeof (struct ether_addr) == ETHER_ADDR_LEN); 86 #endif 87 88 VNET_DEFINE(struct pfil_head, link_pfil_hook); /* Packet filter hooks */ 89 90 /* netgraph node hooks for ng_ether(4) */ 91 void (*ng_ether_input_p)(struct ifnet *ifp, struct mbuf **mp); 92 void (*ng_ether_input_orphan_p)(struct ifnet *ifp, struct mbuf *m); 93 int (*ng_ether_output_p)(struct ifnet *ifp, struct mbuf **mp); 94 void (*ng_ether_attach_p)(struct ifnet *ifp); 95 void (*ng_ether_detach_p)(struct ifnet *ifp); 96 97 void (*vlan_input_p)(struct ifnet *, struct mbuf *); 98 99 /* if_bridge(4) support */ 100 struct mbuf *(*bridge_input_p)(struct ifnet *, struct mbuf *); 101 int (*bridge_output_p)(struct ifnet *, struct mbuf *, 102 struct sockaddr *, struct rtentry *); 103 void (*bridge_dn_p)(struct mbuf *, struct ifnet *); 104 105 /* if_lagg(4) support */ 106 struct mbuf *(*lagg_input_p)(struct ifnet *, struct mbuf *); 107 108 static const u_char etherbroadcastaddr[ETHER_ADDR_LEN] = 109 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; 110 111 static int ether_resolvemulti(struct ifnet *, struct sockaddr **, 112 struct sockaddr *); 113 #ifdef VIMAGE 114 static void ether_reassign(struct ifnet *, struct vnet *, char *); 115 #endif 116 117 #define ETHER_IS_BROADCAST(addr) \ 118 (bcmp(etherbroadcastaddr, (addr), ETHER_ADDR_LEN) == 0) 119 120 #define senderr(e) do { error = (e); goto bad;} while (0) 121 122 static void 123 update_mbuf_csumflags(struct mbuf *src, struct mbuf *dst) 124 { 125 int csum_flags = 0; 126 127 if (src->m_pkthdr.csum_flags & CSUM_IP) 128 csum_flags |= (CSUM_IP_CHECKED|CSUM_IP_VALID); 129 if (src->m_pkthdr.csum_flags & CSUM_DELAY_DATA) 130 csum_flags |= (CSUM_DATA_VALID|CSUM_PSEUDO_HDR); 131 if (src->m_pkthdr.csum_flags & CSUM_SCTP) 132 csum_flags |= CSUM_SCTP_VALID; 133 dst->m_pkthdr.csum_flags |= csum_flags; 134 if (csum_flags & CSUM_DATA_VALID) 135 dst->m_pkthdr.csum_data = 0xffff; 136 } 137 138 /* 139 * Ethernet output routine. 140 * Encapsulate a packet of type family for the local net. 141 * Use trailer local net encapsulation if enough data in first 142 * packet leaves a multiple of 512 bytes of data in remainder. 143 */ 144 int 145 ether_output(struct ifnet *ifp, struct mbuf *m, 146 const struct sockaddr *dst, struct route *ro) 147 { 148 short type; 149 int error = 0, hdrcmplt = 0; 150 u_char esrc[ETHER_ADDR_LEN], edst[ETHER_ADDR_LEN]; 151 struct llentry *lle = NULL; 152 struct rtentry *rt0 = NULL; 153 struct ether_header *eh; 154 struct pf_mtag *t; 155 int loop_copy = 1; 156 int hlen; /* link layer header length */ 157 158 if (ro != NULL) { 159 if (!(m->m_flags & (M_BCAST | M_MCAST))) 160 lle = ro->ro_lle; 161 rt0 = ro->ro_rt; 162 } 163 #ifdef MAC 164 error = mac_ifnet_check_transmit(ifp, m); 165 if (error) 166 senderr(error); 167 #endif 168 169 M_PROFILE(m); 170 if (ifp->if_flags & IFF_MONITOR) 171 senderr(ENETDOWN); 172 if (!((ifp->if_flags & IFF_UP) && 173 (ifp->if_drv_flags & IFF_DRV_RUNNING))) 174 senderr(ENETDOWN); 175 176 hlen = ETHER_HDR_LEN; 177 switch (dst->sa_family) { 178 #ifdef INET 179 case AF_INET: 180 if (lle != NULL && (lle->la_flags & LLE_VALID)) 181 memcpy(edst, &lle->ll_addr.mac16, sizeof(edst)); 182 else 183 error = arpresolve(ifp, rt0, m, dst, edst, &lle); 184 if (error) 185 return (error == EWOULDBLOCK ? 0 : error); 186 type = htons(ETHERTYPE_IP); 187 break; 188 case AF_ARP: 189 { 190 struct arphdr *ah; 191 ah = mtod(m, struct arphdr *); 192 ah->ar_hrd = htons(ARPHRD_ETHER); 193 194 loop_copy = 0; /* if this is for us, don't do it */ 195 196 switch(ntohs(ah->ar_op)) { 197 case ARPOP_REVREQUEST: 198 case ARPOP_REVREPLY: 199 type = htons(ETHERTYPE_REVARP); 200 break; 201 case ARPOP_REQUEST: 202 case ARPOP_REPLY: 203 default: 204 type = htons(ETHERTYPE_ARP); 205 break; 206 } 207 208 if (m->m_flags & M_BCAST) 209 bcopy(ifp->if_broadcastaddr, edst, ETHER_ADDR_LEN); 210 else 211 bcopy(ar_tha(ah), edst, ETHER_ADDR_LEN); 212 213 } 214 break; 215 #endif 216 #ifdef INET6 217 case AF_INET6: 218 if (lle != NULL && (lle->la_flags & LLE_VALID)) 219 memcpy(edst, &lle->ll_addr.mac16, sizeof(edst)); 220 else 221 error = nd6_storelladdr(ifp, m, dst, (u_char *)edst, &lle); 222 if (error) 223 return error; 224 type = htons(ETHERTYPE_IPV6); 225 break; 226 #endif 227 case pseudo_AF_HDRCMPLT: 228 { 229 const struct ether_header *eh; 230 231 hdrcmplt = 1; 232 eh = (const struct ether_header *)dst->sa_data; 233 (void)memcpy(esrc, eh->ether_shost, sizeof (esrc)); 234 /* FALLTHROUGH */ 235 236 case AF_UNSPEC: 237 loop_copy = 0; /* if this is for us, don't do it */ 238 eh = (const struct ether_header *)dst->sa_data; 239 (void)memcpy(edst, eh->ether_dhost, sizeof (edst)); 240 type = eh->ether_type; 241 break; 242 } 243 default: 244 if_printf(ifp, "can't handle af%d\n", dst->sa_family); 245 senderr(EAFNOSUPPORT); 246 } 247 248 if (lle != NULL && (lle->la_flags & LLE_IFADDR)) { 249 update_mbuf_csumflags(m, m); 250 return (if_simloop(ifp, m, dst->sa_family, 0)); 251 } 252 253 /* 254 * Add local net header. If no space in first mbuf, 255 * allocate another. 256 */ 257 M_PREPEND(m, ETHER_HDR_LEN, M_NOWAIT); 258 if (m == NULL) 259 senderr(ENOBUFS); 260 eh = mtod(m, struct ether_header *); 261 (void)memcpy(&eh->ether_type, &type, 262 sizeof(eh->ether_type)); 263 (void)memcpy(eh->ether_dhost, edst, sizeof (edst)); 264 if (hdrcmplt) 265 (void)memcpy(eh->ether_shost, esrc, 266 sizeof(eh->ether_shost)); 267 else 268 (void)memcpy(eh->ether_shost, IF_LLADDR(ifp), 269 sizeof(eh->ether_shost)); 270 271 /* 272 * If a simplex interface, and the packet is being sent to our 273 * Ethernet address or a broadcast address, loopback a copy. 274 * XXX To make a simplex device behave exactly like a duplex 275 * device, we should copy in the case of sending to our own 276 * ethernet address (thus letting the original actually appear 277 * on the wire). However, we don't do that here for security 278 * reasons and compatibility with the original behavior. 279 */ 280 if ((ifp->if_flags & IFF_SIMPLEX) && loop_copy && 281 ((t = pf_find_mtag(m)) == NULL || !t->routed)) { 282 if (m->m_flags & M_BCAST) { 283 struct mbuf *n; 284 285 /* 286 * Because if_simloop() modifies the packet, we need a 287 * writable copy through m_dup() instead of a readonly 288 * one as m_copy[m] would give us. The alternative would 289 * be to modify if_simloop() to handle the readonly mbuf, 290 * but performancewise it is mostly equivalent (trading 291 * extra data copying vs. extra locking). 292 * 293 * XXX This is a local workaround. A number of less 294 * often used kernel parts suffer from the same bug. 295 * See PR kern/105943 for a proposed general solution. 296 */ 297 if ((n = m_dup(m, M_NOWAIT)) != NULL) { 298 update_mbuf_csumflags(m, n); 299 (void)if_simloop(ifp, n, dst->sa_family, hlen); 300 } else 301 if_inc_counter(ifp, IFCOUNTER_IQDROPS, 1); 302 } else if (bcmp(eh->ether_dhost, eh->ether_shost, 303 ETHER_ADDR_LEN) == 0) { 304 update_mbuf_csumflags(m, m); 305 (void) if_simloop(ifp, m, dst->sa_family, hlen); 306 return (0); /* XXX */ 307 } 308 } 309 310 /* 311 * Bridges require special output handling. 312 */ 313 if (ifp->if_bridge) { 314 BRIDGE_OUTPUT(ifp, m, error); 315 return (error); 316 } 317 318 #if defined(INET) || defined(INET6) 319 if (ifp->if_carp && 320 (error = (*carp_output_p)(ifp, m, dst))) 321 goto bad; 322 #endif 323 324 /* Handle ng_ether(4) processing, if any */ 325 if (ifp->if_l2com != NULL) { 326 KASSERT(ng_ether_output_p != NULL, 327 ("ng_ether_output_p is NULL")); 328 if ((error = (*ng_ether_output_p)(ifp, &m)) != 0) { 329 bad: if (m != NULL) 330 m_freem(m); 331 return (error); 332 } 333 if (m == NULL) 334 return (0); 335 } 336 337 /* Continue with link-layer output */ 338 return ether_output_frame(ifp, m); 339 } 340 341 /* 342 * Ethernet link layer output routine to send a raw frame to the device. 343 * 344 * This assumes that the 14 byte Ethernet header is present and contiguous 345 * in the first mbuf (if BRIDGE'ing). 346 */ 347 int 348 ether_output_frame(struct ifnet *ifp, struct mbuf *m) 349 { 350 int i; 351 352 if (PFIL_HOOKED(&V_link_pfil_hook)) { 353 i = pfil_run_hooks(&V_link_pfil_hook, &m, ifp, PFIL_OUT, NULL); 354 355 if (i != 0) 356 return (EACCES); 357 358 if (m == NULL) 359 return (0); 360 } 361 362 /* 363 * Queue message on interface, update output statistics if 364 * successful, and start output if interface not yet active. 365 */ 366 return ((ifp->if_transmit)(ifp, m)); 367 } 368 369 #if defined(INET) || defined(INET6) 370 #endif 371 372 /* 373 * Process a received Ethernet packet; the packet is in the 374 * mbuf chain m with the ethernet header at the front. 375 */ 376 static void 377 ether_input_internal(struct ifnet *ifp, struct mbuf *m) 378 { 379 struct ether_header *eh; 380 u_short etype; 381 382 if ((ifp->if_flags & IFF_UP) == 0) { 383 m_freem(m); 384 return; 385 } 386 #ifdef DIAGNOSTIC 387 if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) { 388 if_printf(ifp, "discard frame at !IFF_DRV_RUNNING\n"); 389 m_freem(m); 390 return; 391 } 392 #endif 393 /* 394 * Do consistency checks to verify assumptions 395 * made by code past this point. 396 */ 397 if ((m->m_flags & M_PKTHDR) == 0) { 398 if_printf(ifp, "discard frame w/o packet header\n"); 399 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1); 400 m_freem(m); 401 return; 402 } 403 if (m->m_len < ETHER_HDR_LEN) { 404 /* XXX maybe should pullup? */ 405 if_printf(ifp, "discard frame w/o leading ethernet " 406 "header (len %u pkt len %u)\n", 407 m->m_len, m->m_pkthdr.len); 408 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1); 409 m_freem(m); 410 return; 411 } 412 eh = mtod(m, struct ether_header *); 413 etype = ntohs(eh->ether_type); 414 if (m->m_pkthdr.rcvif == NULL) { 415 if_printf(ifp, "discard frame w/o interface pointer\n"); 416 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1); 417 m_freem(m); 418 return; 419 } 420 #ifdef DIAGNOSTIC 421 if (m->m_pkthdr.rcvif != ifp) { 422 if_printf(ifp, "Warning, frame marked as received on %s\n", 423 m->m_pkthdr.rcvif->if_xname); 424 } 425 #endif 426 427 CURVNET_SET_QUIET(ifp->if_vnet); 428 429 if (ETHER_IS_MULTICAST(eh->ether_dhost)) { 430 if (ETHER_IS_BROADCAST(eh->ether_dhost)) 431 m->m_flags |= M_BCAST; 432 else 433 m->m_flags |= M_MCAST; 434 if_inc_counter(ifp, IFCOUNTER_IMCASTS, 1); 435 } 436 437 #ifdef MAC 438 /* 439 * Tag the mbuf with an appropriate MAC label before any other 440 * consumers can get to it. 441 */ 442 mac_ifnet_create_mbuf(ifp, m); 443 #endif 444 445 /* 446 * Give bpf a chance at the packet. 447 */ 448 ETHER_BPF_MTAP(ifp, m); 449 450 /* 451 * If the CRC is still on the packet, trim it off. We do this once 452 * and once only in case we are re-entered. Nothing else on the 453 * Ethernet receive path expects to see the FCS. 454 */ 455 if (m->m_flags & M_HASFCS) { 456 m_adj(m, -ETHER_CRC_LEN); 457 m->m_flags &= ~M_HASFCS; 458 } 459 460 if (!(ifp->if_capenable & IFCAP_HWSTATS)) 461 if_inc_counter(ifp, IFCOUNTER_IBYTES, m->m_pkthdr.len); 462 463 /* Allow monitor mode to claim this frame, after stats are updated. */ 464 if (ifp->if_flags & IFF_MONITOR) { 465 m_freem(m); 466 CURVNET_RESTORE(); 467 return; 468 } 469 470 /* Handle input from a lagg(4) port */ 471 if (ifp->if_type == IFT_IEEE8023ADLAG) { 472 KASSERT(lagg_input_p != NULL, 473 ("%s: if_lagg not loaded!", __func__)); 474 m = (*lagg_input_p)(ifp, m); 475 if (m != NULL) 476 ifp = m->m_pkthdr.rcvif; 477 else { 478 CURVNET_RESTORE(); 479 return; 480 } 481 } 482 483 /* 484 * If the hardware did not process an 802.1Q tag, do this now, 485 * to allow 802.1P priority frames to be passed to the main input 486 * path correctly. 487 * TODO: Deal with Q-in-Q frames, but not arbitrary nesting levels. 488 */ 489 if ((m->m_flags & M_VLANTAG) == 0 && etype == ETHERTYPE_VLAN) { 490 struct ether_vlan_header *evl; 491 492 if (m->m_len < sizeof(*evl) && 493 (m = m_pullup(m, sizeof(*evl))) == NULL) { 494 #ifdef DIAGNOSTIC 495 if_printf(ifp, "cannot pullup VLAN header\n"); 496 #endif 497 if_inc_counter(ifp, IFCOUNTER_IERRORS, 1); 498 m_freem(m); 499 CURVNET_RESTORE(); 500 return; 501 } 502 503 evl = mtod(m, struct ether_vlan_header *); 504 m->m_pkthdr.ether_vtag = ntohs(evl->evl_tag); 505 m->m_flags |= M_VLANTAG; 506 507 bcopy((char *)evl, (char *)evl + ETHER_VLAN_ENCAP_LEN, 508 ETHER_HDR_LEN - ETHER_TYPE_LEN); 509 m_adj(m, ETHER_VLAN_ENCAP_LEN); 510 eh = mtod(m, struct ether_header *); 511 } 512 513 M_SETFIB(m, ifp->if_fib); 514 515 /* Allow ng_ether(4) to claim this frame. */ 516 if (ifp->if_l2com != NULL) { 517 KASSERT(ng_ether_input_p != NULL, 518 ("%s: ng_ether_input_p is NULL", __func__)); 519 m->m_flags &= ~M_PROMISC; 520 (*ng_ether_input_p)(ifp, &m); 521 if (m == NULL) { 522 CURVNET_RESTORE(); 523 return; 524 } 525 eh = mtod(m, struct ether_header *); 526 } 527 528 /* 529 * Allow if_bridge(4) to claim this frame. 530 * The BRIDGE_INPUT() macro will update ifp if the bridge changed it 531 * and the frame should be delivered locally. 532 */ 533 if (ifp->if_bridge != NULL) { 534 m->m_flags &= ~M_PROMISC; 535 BRIDGE_INPUT(ifp, m); 536 if (m == NULL) { 537 CURVNET_RESTORE(); 538 return; 539 } 540 eh = mtod(m, struct ether_header *); 541 } 542 543 #if defined(INET) || defined(INET6) 544 /* 545 * Clear M_PROMISC on frame so that carp(4) will see it when the 546 * mbuf flows up to Layer 3. 547 * FreeBSD's implementation of carp(4) uses the inprotosw 548 * to dispatch IPPROTO_CARP. carp(4) also allocates its own 549 * Ethernet addresses of the form 00:00:5e:00:01:xx, which 550 * is outside the scope of the M_PROMISC test below. 551 * TODO: Maintain a hash table of ethernet addresses other than 552 * ether_dhost which may be active on this ifp. 553 */ 554 if (ifp->if_carp && (*carp_forus_p)(ifp, eh->ether_dhost)) { 555 m->m_flags &= ~M_PROMISC; 556 } else 557 #endif 558 { 559 /* 560 * If the frame received was not for our MAC address, set the 561 * M_PROMISC flag on the mbuf chain. The frame may need to 562 * be seen by the rest of the Ethernet input path in case of 563 * re-entry (e.g. bridge, vlan, netgraph) but should not be 564 * seen by upper protocol layers. 565 */ 566 if (!ETHER_IS_MULTICAST(eh->ether_dhost) && 567 bcmp(IF_LLADDR(ifp), eh->ether_dhost, ETHER_ADDR_LEN) != 0) 568 m->m_flags |= M_PROMISC; 569 } 570 571 random_harvest(&(m->m_data), 12, 2, RANDOM_NET_ETHER); 572 573 ether_demux(ifp, m); 574 CURVNET_RESTORE(); 575 } 576 577 /* 578 * Ethernet input dispatch; by default, direct dispatch here regardless of 579 * global configuration. However, if RSS is enabled, hook up RSS affinity 580 * so that when deferred or hybrid dispatch is enabled, we can redistribute 581 * load based on RSS. 582 * 583 * XXXRW: Would be nice if the ifnet passed up a flag indicating whether or 584 * not it had already done work distribution via multi-queue. Then we could 585 * direct dispatch in the event load balancing was already complete and 586 * handle the case of interfaces with different capabilities better. 587 * 588 * XXXRW: Sort of want an M_DISTRIBUTED flag to avoid multiple distributions 589 * at multiple layers? 590 * 591 * XXXRW: For now, enable all this only if RSS is compiled in, although it 592 * works fine without RSS. Need to characterise the performance overhead 593 * of the detour through the netisr code in the event the result is always 594 * direct dispatch. 595 */ 596 static void 597 ether_nh_input(struct mbuf *m) 598 { 599 600 ether_input_internal(m->m_pkthdr.rcvif, m); 601 } 602 603 static struct netisr_handler ether_nh = { 604 .nh_name = "ether", 605 .nh_handler = ether_nh_input, 606 .nh_proto = NETISR_ETHER, 607 #ifdef RSS 608 .nh_policy = NETISR_POLICY_CPU, 609 .nh_dispatch = NETISR_DISPATCH_DIRECT, 610 .nh_m2cpuid = rss_m2cpuid, 611 #else 612 .nh_policy = NETISR_POLICY_SOURCE, 613 .nh_dispatch = NETISR_DISPATCH_DIRECT, 614 #endif 615 }; 616 617 static void 618 ether_init(__unused void *arg) 619 { 620 621 netisr_register(ðer_nh); 622 } 623 SYSINIT(ether, SI_SUB_INIT_IF, SI_ORDER_ANY, ether_init, NULL); 624 625 static void 626 vnet_ether_init(__unused void *arg) 627 { 628 int i; 629 630 /* Initialize packet filter hooks. */ 631 V_link_pfil_hook.ph_type = PFIL_TYPE_AF; 632 V_link_pfil_hook.ph_af = AF_LINK; 633 if ((i = pfil_head_register(&V_link_pfil_hook)) != 0) 634 printf("%s: WARNING: unable to register pfil link hook, " 635 "error %d\n", __func__, i); 636 } 637 VNET_SYSINIT(vnet_ether_init, SI_SUB_PROTO_IF, SI_ORDER_ANY, 638 vnet_ether_init, NULL); 639 640 static void 641 vnet_ether_destroy(__unused void *arg) 642 { 643 int i; 644 645 if ((i = pfil_head_unregister(&V_link_pfil_hook)) != 0) 646 printf("%s: WARNING: unable to unregister pfil link hook, " 647 "error %d\n", __func__, i); 648 } 649 VNET_SYSUNINIT(vnet_ether_uninit, SI_SUB_PROTO_IF, SI_ORDER_ANY, 650 vnet_ether_destroy, NULL); 651 652 653 654 static void 655 ether_input(struct ifnet *ifp, struct mbuf *m) 656 { 657 658 struct mbuf *mn; 659 660 /* 661 * The drivers are allowed to pass in a chain of packets linked with 662 * m_nextpkt. We split them up into separate packets here and pass 663 * them up. This allows the drivers to amortize the receive lock. 664 */ 665 while (m) { 666 mn = m->m_nextpkt; 667 m->m_nextpkt = NULL; 668 669 /* 670 * We will rely on rcvif being set properly in the deferred context, 671 * so assert it is correct here. 672 */ 673 KASSERT(m->m_pkthdr.rcvif == ifp, ("%s: ifnet mismatch", __func__)); 674 netisr_dispatch(NETISR_ETHER, m); 675 m = mn; 676 } 677 } 678 679 /* 680 * Upper layer processing for a received Ethernet packet. 681 */ 682 void 683 ether_demux(struct ifnet *ifp, struct mbuf *m) 684 { 685 struct ether_header *eh; 686 int i, isr; 687 u_short ether_type; 688 689 KASSERT(ifp != NULL, ("%s: NULL interface pointer", __func__)); 690 691 /* Do not grab PROMISC frames in case we are re-entered. */ 692 if (PFIL_HOOKED(&V_link_pfil_hook) && !(m->m_flags & M_PROMISC)) { 693 i = pfil_run_hooks(&V_link_pfil_hook, &m, ifp, PFIL_IN, NULL); 694 695 if (i != 0 || m == NULL) 696 return; 697 } 698 699 eh = mtod(m, struct ether_header *); 700 ether_type = ntohs(eh->ether_type); 701 702 /* 703 * If this frame has a VLAN tag other than 0, call vlan_input() 704 * if its module is loaded. Otherwise, drop. 705 */ 706 if ((m->m_flags & M_VLANTAG) && 707 EVL_VLANOFTAG(m->m_pkthdr.ether_vtag) != 0) { 708 if (ifp->if_vlantrunk == NULL) { 709 if_inc_counter(ifp, IFCOUNTER_NOPROTO, 1); 710 m_freem(m); 711 return; 712 } 713 KASSERT(vlan_input_p != NULL,("%s: VLAN not loaded!", 714 __func__)); 715 /* Clear before possibly re-entering ether_input(). */ 716 m->m_flags &= ~M_PROMISC; 717 (*vlan_input_p)(ifp, m); 718 return; 719 } 720 721 /* 722 * Pass promiscuously received frames to the upper layer if the user 723 * requested this by setting IFF_PPROMISC. Otherwise, drop them. 724 */ 725 if ((ifp->if_flags & IFF_PPROMISC) == 0 && (m->m_flags & M_PROMISC)) { 726 m_freem(m); 727 return; 728 } 729 730 /* 731 * Reset layer specific mbuf flags to avoid confusing upper layers. 732 * Strip off Ethernet header. 733 */ 734 m->m_flags &= ~M_VLANTAG; 735 m_clrprotoflags(m); 736 m_adj(m, ETHER_HDR_LEN); 737 738 /* 739 * Dispatch frame to upper layer. 740 */ 741 switch (ether_type) { 742 #ifdef INET 743 case ETHERTYPE_IP: 744 if ((m = ip_fastforward(m)) == NULL) 745 return; 746 isr = NETISR_IP; 747 break; 748 749 case ETHERTYPE_ARP: 750 if (ifp->if_flags & IFF_NOARP) { 751 /* Discard packet if ARP is disabled on interface */ 752 m_freem(m); 753 return; 754 } 755 isr = NETISR_ARP; 756 break; 757 #endif 758 #ifdef INET6 759 case ETHERTYPE_IPV6: 760 isr = NETISR_IPV6; 761 break; 762 #endif 763 default: 764 goto discard; 765 } 766 netisr_dispatch(isr, m); 767 return; 768 769 discard: 770 /* 771 * Packet is to be discarded. If netgraph is present, 772 * hand the packet to it for last chance processing; 773 * otherwise dispose of it. 774 */ 775 if (ifp->if_l2com != NULL) { 776 KASSERT(ng_ether_input_orphan_p != NULL, 777 ("ng_ether_input_orphan_p is NULL")); 778 /* 779 * Put back the ethernet header so netgraph has a 780 * consistent view of inbound packets. 781 */ 782 M_PREPEND(m, ETHER_HDR_LEN, M_NOWAIT); 783 (*ng_ether_input_orphan_p)(ifp, m); 784 return; 785 } 786 m_freem(m); 787 } 788 789 /* 790 * Convert Ethernet address to printable (loggable) representation. 791 * This routine is for compatibility; it's better to just use 792 * 793 * printf("%6D", <pointer to address>, ":"); 794 * 795 * since there's no static buffer involved. 796 */ 797 char * 798 ether_sprintf(const u_char *ap) 799 { 800 static char etherbuf[18]; 801 snprintf(etherbuf, sizeof (etherbuf), "%6D", ap, ":"); 802 return (etherbuf); 803 } 804 805 /* 806 * Perform common duties while attaching to interface list 807 */ 808 void 809 ether_ifattach(struct ifnet *ifp, const u_int8_t *lla) 810 { 811 int i; 812 struct ifaddr *ifa; 813 struct sockaddr_dl *sdl; 814 815 ifp->if_addrlen = ETHER_ADDR_LEN; 816 ifp->if_hdrlen = ETHER_HDR_LEN; 817 if_attach(ifp); 818 ifp->if_mtu = ETHERMTU; 819 ifp->if_output = ether_output; 820 ifp->if_input = ether_input; 821 ifp->if_resolvemulti = ether_resolvemulti; 822 #ifdef VIMAGE 823 ifp->if_reassign = ether_reassign; 824 #endif 825 if (ifp->if_baudrate == 0) 826 ifp->if_baudrate = IF_Mbps(10); /* just a default */ 827 ifp->if_broadcastaddr = etherbroadcastaddr; 828 829 ifa = ifp->if_addr; 830 KASSERT(ifa != NULL, ("%s: no lladdr!\n", __func__)); 831 sdl = (struct sockaddr_dl *)ifa->ifa_addr; 832 sdl->sdl_type = IFT_ETHER; 833 sdl->sdl_alen = ifp->if_addrlen; 834 bcopy(lla, LLADDR(sdl), ifp->if_addrlen); 835 836 bpfattach(ifp, DLT_EN10MB, ETHER_HDR_LEN); 837 if (ng_ether_attach_p != NULL) 838 (*ng_ether_attach_p)(ifp); 839 840 /* Announce Ethernet MAC address if non-zero. */ 841 for (i = 0; i < ifp->if_addrlen; i++) 842 if (lla[i] != 0) 843 break; 844 if (i != ifp->if_addrlen) 845 if_printf(ifp, "Ethernet address: %6D\n", lla, ":"); 846 847 uuid_ether_add(LLADDR(sdl)); 848 } 849 850 /* 851 * Perform common duties while detaching an Ethernet interface 852 */ 853 void 854 ether_ifdetach(struct ifnet *ifp) 855 { 856 struct sockaddr_dl *sdl; 857 858 sdl = (struct sockaddr_dl *)(ifp->if_addr->ifa_addr); 859 uuid_ether_del(LLADDR(sdl)); 860 861 if (ifp->if_l2com != NULL) { 862 KASSERT(ng_ether_detach_p != NULL, 863 ("ng_ether_detach_p is NULL")); 864 (*ng_ether_detach_p)(ifp); 865 } 866 867 bpfdetach(ifp); 868 if_detach(ifp); 869 } 870 871 #ifdef VIMAGE 872 void 873 ether_reassign(struct ifnet *ifp, struct vnet *new_vnet, char *unused __unused) 874 { 875 876 if (ifp->if_l2com != NULL) { 877 KASSERT(ng_ether_detach_p != NULL, 878 ("ng_ether_detach_p is NULL")); 879 (*ng_ether_detach_p)(ifp); 880 } 881 882 if (ng_ether_attach_p != NULL) { 883 CURVNET_SET_QUIET(new_vnet); 884 (*ng_ether_attach_p)(ifp); 885 CURVNET_RESTORE(); 886 } 887 } 888 #endif 889 890 SYSCTL_DECL(_net_link); 891 SYSCTL_NODE(_net_link, IFT_ETHER, ether, CTLFLAG_RW, 0, "Ethernet"); 892 893 #if 0 894 /* 895 * This is for reference. We have a table-driven version 896 * of the little-endian crc32 generator, which is faster 897 * than the double-loop. 898 */ 899 uint32_t 900 ether_crc32_le(const uint8_t *buf, size_t len) 901 { 902 size_t i; 903 uint32_t crc; 904 int bit; 905 uint8_t data; 906 907 crc = 0xffffffff; /* initial value */ 908 909 for (i = 0; i < len; i++) { 910 for (data = *buf++, bit = 0; bit < 8; bit++, data >>= 1) { 911 carry = (crc ^ data) & 1; 912 crc >>= 1; 913 if (carry) 914 crc = (crc ^ ETHER_CRC_POLY_LE); 915 } 916 } 917 918 return (crc); 919 } 920 #else 921 uint32_t 922 ether_crc32_le(const uint8_t *buf, size_t len) 923 { 924 static const uint32_t crctab[] = { 925 0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac, 926 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c, 927 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c, 928 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c 929 }; 930 size_t i; 931 uint32_t crc; 932 933 crc = 0xffffffff; /* initial value */ 934 935 for (i = 0; i < len; i++) { 936 crc ^= buf[i]; 937 crc = (crc >> 4) ^ crctab[crc & 0xf]; 938 crc = (crc >> 4) ^ crctab[crc & 0xf]; 939 } 940 941 return (crc); 942 } 943 #endif 944 945 uint32_t 946 ether_crc32_be(const uint8_t *buf, size_t len) 947 { 948 size_t i; 949 uint32_t crc, carry; 950 int bit; 951 uint8_t data; 952 953 crc = 0xffffffff; /* initial value */ 954 955 for (i = 0; i < len; i++) { 956 for (data = *buf++, bit = 0; bit < 8; bit++, data >>= 1) { 957 carry = ((crc & 0x80000000) ? 1 : 0) ^ (data & 0x01); 958 crc <<= 1; 959 if (carry) 960 crc = (crc ^ ETHER_CRC_POLY_BE) | carry; 961 } 962 } 963 964 return (crc); 965 } 966 967 int 968 ether_ioctl(struct ifnet *ifp, u_long command, caddr_t data) 969 { 970 struct ifaddr *ifa = (struct ifaddr *) data; 971 struct ifreq *ifr = (struct ifreq *) data; 972 int error = 0; 973 974 switch (command) { 975 case SIOCSIFADDR: 976 ifp->if_flags |= IFF_UP; 977 978 switch (ifa->ifa_addr->sa_family) { 979 #ifdef INET 980 case AF_INET: 981 ifp->if_init(ifp->if_softc); /* before arpwhohas */ 982 arp_ifinit(ifp, ifa); 983 break; 984 #endif 985 default: 986 ifp->if_init(ifp->if_softc); 987 break; 988 } 989 break; 990 991 case SIOCGIFADDR: 992 { 993 struct sockaddr *sa; 994 995 sa = (struct sockaddr *) & ifr->ifr_data; 996 bcopy(IF_LLADDR(ifp), 997 (caddr_t) sa->sa_data, ETHER_ADDR_LEN); 998 } 999 break; 1000 1001 case SIOCSIFMTU: 1002 /* 1003 * Set the interface MTU. 1004 */ 1005 if (ifr->ifr_mtu > ETHERMTU) { 1006 error = EINVAL; 1007 } else { 1008 ifp->if_mtu = ifr->ifr_mtu; 1009 } 1010 break; 1011 default: 1012 error = EINVAL; /* XXX netbsd has ENOTTY??? */ 1013 break; 1014 } 1015 return (error); 1016 } 1017 1018 static int 1019 ether_resolvemulti(struct ifnet *ifp, struct sockaddr **llsa, 1020 struct sockaddr *sa) 1021 { 1022 struct sockaddr_dl *sdl; 1023 #ifdef INET 1024 struct sockaddr_in *sin; 1025 #endif 1026 #ifdef INET6 1027 struct sockaddr_in6 *sin6; 1028 #endif 1029 u_char *e_addr; 1030 1031 switch(sa->sa_family) { 1032 case AF_LINK: 1033 /* 1034 * No mapping needed. Just check that it's a valid MC address. 1035 */ 1036 sdl = (struct sockaddr_dl *)sa; 1037 e_addr = LLADDR(sdl); 1038 if (!ETHER_IS_MULTICAST(e_addr)) 1039 return EADDRNOTAVAIL; 1040 *llsa = 0; 1041 return 0; 1042 1043 #ifdef INET 1044 case AF_INET: 1045 sin = (struct sockaddr_in *)sa; 1046 if (!IN_MULTICAST(ntohl(sin->sin_addr.s_addr))) 1047 return EADDRNOTAVAIL; 1048 sdl = link_init_sdl(ifp, *llsa, IFT_ETHER); 1049 sdl->sdl_alen = ETHER_ADDR_LEN; 1050 e_addr = LLADDR(sdl); 1051 ETHER_MAP_IP_MULTICAST(&sin->sin_addr, e_addr); 1052 *llsa = (struct sockaddr *)sdl; 1053 return 0; 1054 #endif 1055 #ifdef INET6 1056 case AF_INET6: 1057 sin6 = (struct sockaddr_in6 *)sa; 1058 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1059 /* 1060 * An IP6 address of 0 means listen to all 1061 * of the Ethernet multicast address used for IP6. 1062 * (This is used for multicast routers.) 1063 */ 1064 ifp->if_flags |= IFF_ALLMULTI; 1065 *llsa = 0; 1066 return 0; 1067 } 1068 if (!IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr)) 1069 return EADDRNOTAVAIL; 1070 sdl = link_init_sdl(ifp, *llsa, IFT_ETHER); 1071 sdl->sdl_alen = ETHER_ADDR_LEN; 1072 e_addr = LLADDR(sdl); 1073 ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, e_addr); 1074 *llsa = (struct sockaddr *)sdl; 1075 return 0; 1076 #endif 1077 1078 default: 1079 /* 1080 * Well, the text isn't quite right, but it's the name 1081 * that counts... 1082 */ 1083 return EAFNOSUPPORT; 1084 } 1085 } 1086 1087 static moduledata_t ether_mod = { 1088 .name = "ether", 1089 }; 1090 1091 void 1092 ether_vlan_mtap(struct bpf_if *bp, struct mbuf *m, void *data, u_int dlen) 1093 { 1094 struct ether_vlan_header vlan; 1095 struct mbuf mv, mb; 1096 1097 KASSERT((m->m_flags & M_VLANTAG) != 0, 1098 ("%s: vlan information not present", __func__)); 1099 KASSERT(m->m_len >= sizeof(struct ether_header), 1100 ("%s: mbuf not large enough for header", __func__)); 1101 bcopy(mtod(m, char *), &vlan, sizeof(struct ether_header)); 1102 vlan.evl_proto = vlan.evl_encap_proto; 1103 vlan.evl_encap_proto = htons(ETHERTYPE_VLAN); 1104 vlan.evl_tag = htons(m->m_pkthdr.ether_vtag); 1105 m->m_len -= sizeof(struct ether_header); 1106 m->m_data += sizeof(struct ether_header); 1107 /* 1108 * If a data link has been supplied by the caller, then we will need to 1109 * re-create a stack allocated mbuf chain with the following structure: 1110 * 1111 * (1) mbuf #1 will contain the supplied data link 1112 * (2) mbuf #2 will contain the vlan header 1113 * (3) mbuf #3 will contain the original mbuf's packet data 1114 * 1115 * Otherwise, submit the packet and vlan header via bpf_mtap2(). 1116 */ 1117 if (data != NULL) { 1118 mv.m_next = m; 1119 mv.m_data = (caddr_t)&vlan; 1120 mv.m_len = sizeof(vlan); 1121 mb.m_next = &mv; 1122 mb.m_data = data; 1123 mb.m_len = dlen; 1124 bpf_mtap(bp, &mb); 1125 } else 1126 bpf_mtap2(bp, &vlan, sizeof(vlan), m); 1127 m->m_len += sizeof(struct ether_header); 1128 m->m_data -= sizeof(struct ether_header); 1129 } 1130 1131 struct mbuf * 1132 ether_vlanencap(struct mbuf *m, uint16_t tag) 1133 { 1134 struct ether_vlan_header *evl; 1135 1136 M_PREPEND(m, ETHER_VLAN_ENCAP_LEN, M_NOWAIT); 1137 if (m == NULL) 1138 return (NULL); 1139 /* M_PREPEND takes care of m_len, m_pkthdr.len for us */ 1140 1141 if (m->m_len < sizeof(*evl)) { 1142 m = m_pullup(m, sizeof(*evl)); 1143 if (m == NULL) 1144 return (NULL); 1145 } 1146 1147 /* 1148 * Transform the Ethernet header into an Ethernet header 1149 * with 802.1Q encapsulation. 1150 */ 1151 evl = mtod(m, struct ether_vlan_header *); 1152 bcopy((char *)evl + ETHER_VLAN_ENCAP_LEN, 1153 (char *)evl, ETHER_HDR_LEN - ETHER_TYPE_LEN); 1154 evl->evl_encap_proto = htons(ETHERTYPE_VLAN); 1155 evl->evl_tag = htons(tag); 1156 return (m); 1157 } 1158 1159 DECLARE_MODULE(ether, ether_mod, SI_SUB_INIT_IF, SI_ORDER_ANY); 1160 MODULE_VERSION(ether, 1); 1161