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_atalk.h" 34 #include "opt_inet.h" 35 #include "opt_inet6.h" 36 #include "opt_ipx.h" 37 #include "opt_mac.h" 38 #include "opt_netgraph.h" 39 #include "opt_carp.h" 40 #include "opt_mbuf_profiling.h" 41 42 #include <sys/param.h> 43 #include <sys/systm.h> 44 #include <sys/kernel.h> 45 #include <sys/lock.h> 46 #include <sys/malloc.h> 47 #include <sys/module.h> 48 #include <sys/mbuf.h> 49 #include <sys/random.h> 50 #include <sys/rwlock.h> 51 #include <sys/socket.h> 52 #include <sys/sockio.h> 53 #include <sys/sysctl.h> 54 #include <sys/vimage.h> 55 56 #include <net/if.h> 57 #include <net/if_arp.h> 58 #include <net/netisr.h> 59 #include <net/route.h> 60 #include <net/if_llc.h> 61 #include <net/if_dl.h> 62 #include <net/if_types.h> 63 #include <net/bpf.h> 64 #include <net/ethernet.h> 65 #include <net/if_bridgevar.h> 66 #include <net/if_vlan_var.h> 67 #include <net/if_llatbl.h> 68 #include <net/pf_mtag.h> 69 #include <net/vnet.h> 70 71 #if defined(INET) || defined(INET6) 72 #include <netinet/in.h> 73 #include <netinet/in_var.h> 74 #include <netinet/if_ether.h> 75 #include <netinet/ip_fw.h> 76 #include <netinet/ip_dummynet.h> 77 #include <netinet/vinet.h> 78 #endif 79 #ifdef INET6 80 #include <netinet6/nd6.h> 81 #endif 82 83 #ifdef DEV_CARP 84 #include <netinet/ip_carp.h> 85 #endif 86 87 #ifdef IPX 88 #include <netipx/ipx.h> 89 #include <netipx/ipx_if.h> 90 #endif 91 92 int (*ef_inputp)(struct ifnet*, struct ether_header *eh, struct mbuf *m); 93 int (*ef_outputp)(struct ifnet *ifp, struct mbuf **mp, 94 struct sockaddr *dst, short *tp, int *hlen); 95 96 #ifdef NETATALK 97 #include <netatalk/at.h> 98 #include <netatalk/at_var.h> 99 #include <netatalk/at_extern.h> 100 101 #define llc_snap_org_code llc_un.type_snap.org_code 102 #define llc_snap_ether_type llc_un.type_snap.ether_type 103 104 extern u_char at_org_code[3]; 105 extern u_char aarp_org_code[3]; 106 #endif /* NETATALK */ 107 108 #include <security/mac/mac_framework.h> 109 110 #ifdef CTASSERT 111 CTASSERT(sizeof (struct ether_header) == ETHER_ADDR_LEN * 2 + 2); 112 CTASSERT(sizeof (struct ether_addr) == ETHER_ADDR_LEN); 113 #endif 114 115 /* netgraph node hooks for ng_ether(4) */ 116 void (*ng_ether_input_p)(struct ifnet *ifp, struct mbuf **mp); 117 void (*ng_ether_input_orphan_p)(struct ifnet *ifp, struct mbuf *m); 118 int (*ng_ether_output_p)(struct ifnet *ifp, struct mbuf **mp); 119 void (*ng_ether_attach_p)(struct ifnet *ifp); 120 void (*ng_ether_detach_p)(struct ifnet *ifp); 121 122 void (*vlan_input_p)(struct ifnet *, struct mbuf *); 123 124 /* if_bridge(4) support */ 125 struct mbuf *(*bridge_input_p)(struct ifnet *, struct mbuf *); 126 int (*bridge_output_p)(struct ifnet *, struct mbuf *, 127 struct sockaddr *, struct rtentry *); 128 void (*bridge_dn_p)(struct mbuf *, struct ifnet *); 129 130 /* if_lagg(4) support */ 131 struct mbuf *(*lagg_input_p)(struct ifnet *, struct mbuf *); 132 133 static const u_char etherbroadcastaddr[ETHER_ADDR_LEN] = 134 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; 135 136 static int ether_resolvemulti(struct ifnet *, struct sockaddr **, 137 struct sockaddr *); 138 139 /* XXX: should be in an arp support file, not here */ 140 MALLOC_DEFINE(M_ARPCOM, "arpcom", "802.* interface internals"); 141 142 #define ETHER_IS_BROADCAST(addr) \ 143 (bcmp(etherbroadcastaddr, (addr), ETHER_ADDR_LEN) == 0) 144 145 #define senderr(e) do { error = (e); goto bad;} while (0) 146 147 #if defined(INET) || defined(INET6) 148 int 149 ether_ipfw_chk(struct mbuf **m0, struct ifnet *dst, 150 struct ip_fw **rule, int shared); 151 #ifdef VIMAGE_GLOBALS 152 static int ether_ipfw; 153 #endif 154 #endif 155 156 157 /* 158 * Ethernet output routine. 159 * Encapsulate a packet of type family for the local net. 160 * Use trailer local net encapsulation if enough data in first 161 * packet leaves a multiple of 512 bytes of data in remainder. 162 */ 163 int 164 ether_output(struct ifnet *ifp, struct mbuf *m, 165 struct sockaddr *dst, struct rtentry *rt0) 166 { 167 short type; 168 int error, hdrcmplt = 0; 169 u_char esrc[ETHER_ADDR_LEN], edst[ETHER_ADDR_LEN]; 170 struct llentry *lle = NULL; 171 struct ether_header *eh; 172 struct pf_mtag *t; 173 int loop_copy = 1; 174 int hlen; /* link layer header length */ 175 176 #ifdef MAC 177 error = mac_ifnet_check_transmit(ifp, m); 178 if (error) 179 senderr(error); 180 #endif 181 182 M_PROFILE(m); 183 if (ifp->if_flags & IFF_MONITOR) 184 senderr(ENETDOWN); 185 if (!((ifp->if_flags & IFF_UP) && 186 (ifp->if_drv_flags & IFF_DRV_RUNNING))) 187 senderr(ENETDOWN); 188 189 hlen = ETHER_HDR_LEN; 190 switch (dst->sa_family) { 191 #ifdef INET 192 case AF_INET: 193 error = arpresolve(ifp, rt0, m, dst, edst, &lle); 194 if (error) 195 return (error == EWOULDBLOCK ? 0 : error); 196 type = htons(ETHERTYPE_IP); 197 break; 198 case AF_ARP: 199 { 200 struct arphdr *ah; 201 ah = mtod(m, struct arphdr *); 202 ah->ar_hrd = htons(ARPHRD_ETHER); 203 204 loop_copy = 0; /* if this is for us, don't do it */ 205 206 switch(ntohs(ah->ar_op)) { 207 case ARPOP_REVREQUEST: 208 case ARPOP_REVREPLY: 209 type = htons(ETHERTYPE_REVARP); 210 break; 211 case ARPOP_REQUEST: 212 case ARPOP_REPLY: 213 default: 214 type = htons(ETHERTYPE_ARP); 215 break; 216 } 217 218 if (m->m_flags & M_BCAST) 219 bcopy(ifp->if_broadcastaddr, edst, ETHER_ADDR_LEN); 220 else 221 bcopy(ar_tha(ah), edst, ETHER_ADDR_LEN); 222 223 } 224 break; 225 #endif 226 #ifdef INET6 227 case AF_INET6: 228 error = nd6_storelladdr(ifp, m, dst, (u_char *)edst, &lle); 229 if (error) 230 return error; 231 type = htons(ETHERTYPE_IPV6); 232 break; 233 #endif 234 #ifdef IPX 235 case AF_IPX: 236 if (ef_outputp) { 237 error = ef_outputp(ifp, &m, dst, &type, &hlen); 238 if (error) 239 goto bad; 240 } else 241 type = htons(ETHERTYPE_IPX); 242 bcopy((caddr_t)&(((struct sockaddr_ipx *)dst)->sipx_addr.x_host), 243 (caddr_t)edst, sizeof (edst)); 244 break; 245 #endif 246 #ifdef NETATALK 247 case AF_APPLETALK: 248 { 249 struct at_ifaddr *aa; 250 251 if ((aa = at_ifawithnet((struct sockaddr_at *)dst)) == NULL) 252 senderr(EHOSTUNREACH); /* XXX */ 253 if (!aarpresolve(ifp, m, (struct sockaddr_at *)dst, edst)) 254 return (0); 255 /* 256 * In the phase 2 case, need to prepend an mbuf for the llc header. 257 */ 258 if ( aa->aa_flags & AFA_PHASE2 ) { 259 struct llc llc; 260 261 M_PREPEND(m, LLC_SNAPFRAMELEN, M_DONTWAIT); 262 if (m == NULL) 263 senderr(ENOBUFS); 264 llc.llc_dsap = llc.llc_ssap = LLC_SNAP_LSAP; 265 llc.llc_control = LLC_UI; 266 bcopy(at_org_code, llc.llc_snap_org_code, sizeof(at_org_code)); 267 llc.llc_snap_ether_type = htons( ETHERTYPE_AT ); 268 bcopy(&llc, mtod(m, caddr_t), LLC_SNAPFRAMELEN); 269 type = htons(m->m_pkthdr.len); 270 hlen = LLC_SNAPFRAMELEN + ETHER_HDR_LEN; 271 } else { 272 type = htons(ETHERTYPE_AT); 273 } 274 break; 275 } 276 #endif /* NETATALK */ 277 278 case pseudo_AF_HDRCMPLT: 279 hdrcmplt = 1; 280 eh = (struct ether_header *)dst->sa_data; 281 (void)memcpy(esrc, eh->ether_shost, sizeof (esrc)); 282 /* FALLTHROUGH */ 283 284 case AF_UNSPEC: 285 loop_copy = 0; /* if this is for us, don't do it */ 286 eh = (struct ether_header *)dst->sa_data; 287 (void)memcpy(edst, eh->ether_dhost, sizeof (edst)); 288 type = eh->ether_type; 289 break; 290 291 default: 292 if_printf(ifp, "can't handle af%d\n", dst->sa_family); 293 senderr(EAFNOSUPPORT); 294 } 295 296 if (lle != NULL && (lle->la_flags & LLE_IFADDR)) { 297 int csum_flags = 0; 298 if (m->m_pkthdr.csum_flags & CSUM_IP) 299 csum_flags |= (CSUM_IP_CHECKED|CSUM_IP_VALID); 300 if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) 301 csum_flags |= (CSUM_DATA_VALID|CSUM_PSEUDO_HDR); 302 if (m->m_pkthdr.csum_flags & CSUM_SCTP) 303 csum_flags |= CSUM_SCTP_VALID; 304 m->m_pkthdr.csum_flags |= csum_flags; 305 m->m_pkthdr.csum_data = 0xffff; 306 return (if_simloop(ifp, m, dst->sa_family, 0)); 307 } 308 309 /* 310 * Add local net header. If no space in first mbuf, 311 * allocate another. 312 */ 313 M_PREPEND(m, ETHER_HDR_LEN, M_DONTWAIT); 314 if (m == NULL) 315 senderr(ENOBUFS); 316 eh = mtod(m, struct ether_header *); 317 (void)memcpy(&eh->ether_type, &type, 318 sizeof(eh->ether_type)); 319 (void)memcpy(eh->ether_dhost, edst, sizeof (edst)); 320 if (hdrcmplt) 321 (void)memcpy(eh->ether_shost, esrc, 322 sizeof(eh->ether_shost)); 323 else 324 (void)memcpy(eh->ether_shost, IF_LLADDR(ifp), 325 sizeof(eh->ether_shost)); 326 327 /* 328 * If a simplex interface, and the packet is being sent to our 329 * Ethernet address or a broadcast address, loopback a copy. 330 * XXX To make a simplex device behave exactly like a duplex 331 * device, we should copy in the case of sending to our own 332 * ethernet address (thus letting the original actually appear 333 * on the wire). However, we don't do that here for security 334 * reasons and compatibility with the original behavior. 335 */ 336 if ((ifp->if_flags & IFF_SIMPLEX) && loop_copy && 337 ((t = pf_find_mtag(m)) == NULL || !t->routed)) { 338 int csum_flags = 0; 339 340 if (m->m_pkthdr.csum_flags & CSUM_IP) 341 csum_flags |= (CSUM_IP_CHECKED|CSUM_IP_VALID); 342 if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) 343 csum_flags |= (CSUM_DATA_VALID|CSUM_PSEUDO_HDR); 344 if (m->m_pkthdr.csum_flags & CSUM_SCTP) 345 csum_flags |= CSUM_SCTP_VALID; 346 347 if (m->m_flags & M_BCAST) { 348 struct mbuf *n; 349 350 /* 351 * Because if_simloop() modifies the packet, we need a 352 * writable copy through m_dup() instead of a readonly 353 * one as m_copy[m] would give us. The alternative would 354 * be to modify if_simloop() to handle the readonly mbuf, 355 * but performancewise it is mostly equivalent (trading 356 * extra data copying vs. extra locking). 357 * 358 * XXX This is a local workaround. A number of less 359 * often used kernel parts suffer from the same bug. 360 * See PR kern/105943 for a proposed general solution. 361 */ 362 if ((n = m_dup(m, M_DONTWAIT)) != NULL) { 363 n->m_pkthdr.csum_flags |= csum_flags; 364 if (csum_flags & CSUM_DATA_VALID) 365 n->m_pkthdr.csum_data = 0xffff; 366 (void)if_simloop(ifp, n, dst->sa_family, hlen); 367 } else 368 ifp->if_iqdrops++; 369 } else if (bcmp(eh->ether_dhost, eh->ether_shost, 370 ETHER_ADDR_LEN) == 0) { 371 m->m_pkthdr.csum_flags |= csum_flags; 372 if (csum_flags & CSUM_DATA_VALID) 373 m->m_pkthdr.csum_data = 0xffff; 374 (void) if_simloop(ifp, m, dst->sa_family, hlen); 375 return (0); /* XXX */ 376 } 377 } 378 379 /* 380 * Bridges require special output handling. 381 */ 382 if (ifp->if_bridge) { 383 BRIDGE_OUTPUT(ifp, m, error); 384 return (error); 385 } 386 387 #ifdef DEV_CARP 388 if (ifp->if_carp && 389 (error = carp_output(ifp, m, dst, NULL))) 390 goto bad; 391 #endif 392 393 /* Handle ng_ether(4) processing, if any */ 394 if (IFP2AC(ifp)->ac_netgraph != NULL) { 395 KASSERT(ng_ether_output_p != NULL, 396 ("ng_ether_output_p is NULL")); 397 if ((error = (*ng_ether_output_p)(ifp, &m)) != 0) { 398 bad: if (m != NULL) 399 m_freem(m); 400 return (error); 401 } 402 if (m == NULL) 403 return (0); 404 } 405 406 /* Continue with link-layer output */ 407 return ether_output_frame(ifp, m); 408 } 409 410 /* 411 * Ethernet link layer output routine to send a raw frame to the device. 412 * 413 * This assumes that the 14 byte Ethernet header is present and contiguous 414 * in the first mbuf (if BRIDGE'ing). 415 */ 416 int 417 ether_output_frame(struct ifnet *ifp, struct mbuf *m) 418 { 419 #if defined(INET) || defined(INET6) 420 INIT_VNET_NET(ifp->if_vnet); 421 struct ip_fw *rule = ip_dn_claim_rule(m); 422 423 if (IPFW_LOADED && V_ether_ipfw != 0) { 424 if (ether_ipfw_chk(&m, ifp, &rule, 0) == 0) { 425 if (m) { 426 m_freem(m); 427 return EACCES; /* pkt dropped */ 428 } else 429 return 0; /* consumed e.g. in a pipe */ 430 } 431 } 432 #endif 433 434 /* 435 * Queue message on interface, update output statistics if 436 * successful, and start output if interface not yet active. 437 */ 438 return ((ifp->if_transmit)(ifp, m)); 439 } 440 441 #if defined(INET) || defined(INET6) 442 /* 443 * ipfw processing for ethernet packets (in and out). 444 * The second parameter is NULL from ether_demux, and ifp from 445 * ether_output_frame. 446 */ 447 int 448 ether_ipfw_chk(struct mbuf **m0, struct ifnet *dst, 449 struct ip_fw **rule, int shared) 450 { 451 INIT_VNET_INET(dst->if_vnet); 452 struct ether_header *eh; 453 struct ether_header save_eh; 454 struct mbuf *m; 455 int i; 456 struct ip_fw_args args; 457 458 if (*rule != NULL && V_fw_one_pass) 459 return 1; /* dummynet packet, already partially processed */ 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 m = *m0; 466 i = min( m->m_pkthdr.len, max_protohdr); 467 if ( shared || m->m_len < i) { 468 m = m_pullup(m, i); 469 if (m == NULL) { 470 *m0 = m; 471 return 0; 472 } 473 } 474 eh = mtod(m, struct ether_header *); 475 save_eh = *eh; /* save copy for restore below */ 476 m_adj(m, ETHER_HDR_LEN); /* strip ethernet header */ 477 478 args.m = m; /* the packet we are looking at */ 479 args.oif = dst; /* destination, if any */ 480 args.rule = *rule; /* matching rule to restart */ 481 args.next_hop = NULL; /* we do not support forward yet */ 482 args.eh = &save_eh; /* MAC header for bridged/MAC packets */ 483 args.inp = NULL; /* used by ipfw uid/gid/jail rules */ 484 i = ip_fw_chk_ptr(&args); 485 m = args.m; 486 if (m != NULL) { 487 /* 488 * Restore Ethernet header, as needed, in case the 489 * mbuf chain was replaced by ipfw. 490 */ 491 M_PREPEND(m, ETHER_HDR_LEN, M_DONTWAIT); 492 if (m == NULL) { 493 *m0 = m; 494 return 0; 495 } 496 if (eh != mtod(m, struct ether_header *)) 497 bcopy(&save_eh, mtod(m, struct ether_header *), 498 ETHER_HDR_LEN); 499 } 500 *m0 = m; 501 *rule = args.rule; 502 503 if (i == IP_FW_DENY) /* drop */ 504 return 0; 505 506 KASSERT(m != NULL, ("ether_ipfw_chk: m is NULL")); 507 508 if (i == IP_FW_PASS) /* a PASS rule. */ 509 return 1; 510 511 if (DUMMYNET_LOADED && (i == IP_FW_DUMMYNET)) { 512 /* 513 * Pass the pkt to dummynet, which consumes it. 514 * If shared, make a copy and keep the original. 515 */ 516 if (shared) { 517 m = m_copypacket(m, M_DONTWAIT); 518 if (m == NULL) 519 return 0; 520 } else { 521 /* 522 * Pass the original to dummynet and 523 * nothing back to the caller 524 */ 525 *m0 = NULL ; 526 } 527 ip_dn_io_ptr(&m, dst ? DN_TO_ETH_OUT: DN_TO_ETH_DEMUX, &args); 528 return 0; 529 } 530 /* 531 * XXX at some point add support for divert/forward actions. 532 * If none of the above matches, we have to drop the pkt. 533 */ 534 return 0; 535 } 536 #endif 537 538 /* 539 * Process a received Ethernet packet; the packet is in the 540 * mbuf chain m with the ethernet header at the front. 541 */ 542 static void 543 ether_input(struct ifnet *ifp, struct mbuf *m) 544 { 545 struct ether_header *eh; 546 u_short etype; 547 548 if ((ifp->if_flags & IFF_UP) == 0) { 549 m_freem(m); 550 return; 551 } 552 #ifdef DIAGNOSTIC 553 if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) { 554 if_printf(ifp, "discard frame at !IFF_DRV_RUNNING\n"); 555 m_freem(m); 556 return; 557 } 558 #endif 559 /* 560 * Do consistency checks to verify assumptions 561 * made by code past this point. 562 */ 563 if ((m->m_flags & M_PKTHDR) == 0) { 564 if_printf(ifp, "discard frame w/o packet header\n"); 565 ifp->if_ierrors++; 566 m_freem(m); 567 return; 568 } 569 if (m->m_len < ETHER_HDR_LEN) { 570 /* XXX maybe should pullup? */ 571 if_printf(ifp, "discard frame w/o leading ethernet " 572 "header (len %u pkt len %u)\n", 573 m->m_len, m->m_pkthdr.len); 574 ifp->if_ierrors++; 575 m_freem(m); 576 return; 577 } 578 eh = mtod(m, struct ether_header *); 579 etype = ntohs(eh->ether_type); 580 if (m->m_pkthdr.rcvif == NULL) { 581 if_printf(ifp, "discard frame w/o interface pointer\n"); 582 ifp->if_ierrors++; 583 m_freem(m); 584 return; 585 } 586 #ifdef DIAGNOSTIC 587 if (m->m_pkthdr.rcvif != ifp) { 588 if_printf(ifp, "Warning, frame marked as received on %s\n", 589 m->m_pkthdr.rcvif->if_xname); 590 } 591 #endif 592 593 if (ETHER_IS_MULTICAST(eh->ether_dhost)) { 594 if (ETHER_IS_BROADCAST(eh->ether_dhost)) 595 m->m_flags |= M_BCAST; 596 else 597 m->m_flags |= M_MCAST; 598 ifp->if_imcasts++; 599 } 600 601 #ifdef MAC 602 /* 603 * Tag the mbuf with an appropriate MAC label before any other 604 * consumers can get to it. 605 */ 606 mac_ifnet_create_mbuf(ifp, m); 607 #endif 608 609 /* 610 * Give bpf a chance at the packet. 611 */ 612 ETHER_BPF_MTAP(ifp, m); 613 614 /* 615 * If the CRC is still on the packet, trim it off. We do this once 616 * and once only in case we are re-entered. Nothing else on the 617 * Ethernet receive path expects to see the FCS. 618 */ 619 if (m->m_flags & M_HASFCS) { 620 m_adj(m, -ETHER_CRC_LEN); 621 m->m_flags &= ~M_HASFCS; 622 } 623 624 ifp->if_ibytes += m->m_pkthdr.len; 625 626 /* Allow monitor mode to claim this frame, after stats are updated. */ 627 if (ifp->if_flags & IFF_MONITOR) { 628 m_freem(m); 629 return; 630 } 631 632 /* Handle input from a lagg(4) port */ 633 if (ifp->if_type == IFT_IEEE8023ADLAG) { 634 KASSERT(lagg_input_p != NULL, 635 ("%s: if_lagg not loaded!", __func__)); 636 m = (*lagg_input_p)(ifp, m); 637 if (m != NULL) 638 ifp = m->m_pkthdr.rcvif; 639 else 640 return; 641 } 642 643 /* 644 * If the hardware did not process an 802.1Q tag, do this now, 645 * to allow 802.1P priority frames to be passed to the main input 646 * path correctly. 647 * TODO: Deal with Q-in-Q frames, but not arbitrary nesting levels. 648 */ 649 if ((m->m_flags & M_VLANTAG) == 0 && etype == ETHERTYPE_VLAN) { 650 struct ether_vlan_header *evl; 651 652 if (m->m_len < sizeof(*evl) && 653 (m = m_pullup(m, sizeof(*evl))) == NULL) { 654 #ifdef DIAGNOSTIC 655 if_printf(ifp, "cannot pullup VLAN header\n"); 656 #endif 657 ifp->if_ierrors++; 658 m_freem(m); 659 return; 660 } 661 662 evl = mtod(m, struct ether_vlan_header *); 663 m->m_pkthdr.ether_vtag = ntohs(evl->evl_tag); 664 m->m_flags |= M_VLANTAG; 665 666 bcopy((char *)evl, (char *)evl + ETHER_VLAN_ENCAP_LEN, 667 ETHER_HDR_LEN - ETHER_TYPE_LEN); 668 m_adj(m, ETHER_VLAN_ENCAP_LEN); 669 } 670 671 /* Allow ng_ether(4) to claim this frame. */ 672 if (IFP2AC(ifp)->ac_netgraph != NULL) { 673 KASSERT(ng_ether_input_p != NULL, 674 ("%s: ng_ether_input_p is NULL", __func__)); 675 m->m_flags &= ~M_PROMISC; 676 (*ng_ether_input_p)(ifp, &m); 677 if (m == NULL) 678 return; 679 } 680 681 /* 682 * Allow if_bridge(4) to claim this frame. 683 * The BRIDGE_INPUT() macro will update ifp if the bridge changed it 684 * and the frame should be delivered locally. 685 */ 686 if (ifp->if_bridge != NULL) { 687 m->m_flags &= ~M_PROMISC; 688 BRIDGE_INPUT(ifp, m); 689 if (m == NULL) 690 return; 691 } 692 693 #ifdef DEV_CARP 694 /* 695 * Clear M_PROMISC on frame so that carp(4) will see it when the 696 * mbuf flows up to Layer 3. 697 * FreeBSD's implementation of carp(4) uses the inprotosw 698 * to dispatch IPPROTO_CARP. carp(4) also allocates its own 699 * Ethernet addresses of the form 00:00:5e:00:01:xx, which 700 * is outside the scope of the M_PROMISC test below. 701 * TODO: Maintain a hash table of ethernet addresses other than 702 * ether_dhost which may be active on this ifp. 703 */ 704 if (ifp->if_carp && carp_forus(ifp->if_carp, eh->ether_dhost)) { 705 m->m_flags &= ~M_PROMISC; 706 } else 707 #endif 708 { 709 /* 710 * If the frame received was not for our MAC address, set the 711 * M_PROMISC flag on the mbuf chain. The frame may need to 712 * be seen by the rest of the Ethernet input path in case of 713 * re-entry (e.g. bridge, vlan, netgraph) but should not be 714 * seen by upper protocol layers. 715 */ 716 if (!ETHER_IS_MULTICAST(eh->ether_dhost) && 717 bcmp(IF_LLADDR(ifp), eh->ether_dhost, ETHER_ADDR_LEN) != 0) 718 m->m_flags |= M_PROMISC; 719 } 720 721 /* First chunk of an mbuf contains good entropy */ 722 if (harvest.ethernet) 723 random_harvest(m, 16, 3, 0, RANDOM_NET); 724 725 ether_demux(ifp, m); 726 } 727 728 /* 729 * Upper layer processing for a received Ethernet packet. 730 */ 731 void 732 ether_demux(struct ifnet *ifp, struct mbuf *m) 733 { 734 struct ether_header *eh; 735 int isr; 736 u_short ether_type; 737 #if defined(NETATALK) 738 struct llc *l; 739 #endif 740 741 KASSERT(ifp != NULL, ("%s: NULL interface pointer", __func__)); 742 743 #if defined(INET) || defined(INET6) 744 INIT_VNET_NET(ifp->if_vnet); 745 /* 746 * Allow dummynet and/or ipfw to claim the frame. 747 * Do not do this for PROMISC frames in case we are re-entered. 748 */ 749 if (IPFW_LOADED && V_ether_ipfw != 0 && !(m->m_flags & M_PROMISC)) { 750 struct ip_fw *rule = ip_dn_claim_rule(m); 751 752 if (ether_ipfw_chk(&m, NULL, &rule, 0) == 0) { 753 if (m) 754 m_freem(m); /* dropped; free mbuf chain */ 755 return; /* consumed */ 756 } 757 } 758 #endif 759 eh = mtod(m, struct ether_header *); 760 ether_type = ntohs(eh->ether_type); 761 762 /* 763 * If this frame has a VLAN tag other than 0, call vlan_input() 764 * if its module is loaded. Otherwise, drop. 765 */ 766 if ((m->m_flags & M_VLANTAG) && 767 EVL_VLANOFTAG(m->m_pkthdr.ether_vtag) != 0) { 768 if (ifp->if_vlantrunk == NULL) { 769 ifp->if_noproto++; 770 m_freem(m); 771 return; 772 } 773 KASSERT(vlan_input_p != NULL,("%s: VLAN not loaded!", 774 __func__)); 775 /* Clear before possibly re-entering ether_input(). */ 776 m->m_flags &= ~M_PROMISC; 777 (*vlan_input_p)(ifp, m); 778 return; 779 } 780 781 /* 782 * Pass promiscuously received frames to the upper layer if the user 783 * requested this by setting IFF_PPROMISC. Otherwise, drop them. 784 */ 785 if ((ifp->if_flags & IFF_PPROMISC) == 0 && (m->m_flags & M_PROMISC)) { 786 m_freem(m); 787 return; 788 } 789 790 /* 791 * Reset layer specific mbuf flags to avoid confusing upper layers. 792 * Strip off Ethernet header. 793 */ 794 m->m_flags &= ~M_VLANTAG; 795 m->m_flags &= ~(M_PROTOFLAGS); 796 m_adj(m, ETHER_HDR_LEN); 797 798 /* 799 * Dispatch frame to upper layer. 800 */ 801 switch (ether_type) { 802 #ifdef INET 803 case ETHERTYPE_IP: 804 if ((m = ip_fastforward(m)) == NULL) 805 return; 806 isr = NETISR_IP; 807 break; 808 809 case ETHERTYPE_ARP: 810 if (ifp->if_flags & IFF_NOARP) { 811 /* Discard packet if ARP is disabled on interface */ 812 m_freem(m); 813 return; 814 } 815 isr = NETISR_ARP; 816 break; 817 #endif 818 #ifdef IPX 819 case ETHERTYPE_IPX: 820 if (ef_inputp && ef_inputp(ifp, eh, m) == 0) 821 return; 822 isr = NETISR_IPX; 823 break; 824 #endif 825 #ifdef INET6 826 case ETHERTYPE_IPV6: 827 isr = NETISR_IPV6; 828 break; 829 #endif 830 #ifdef NETATALK 831 case ETHERTYPE_AT: 832 isr = NETISR_ATALK1; 833 break; 834 case ETHERTYPE_AARP: 835 isr = NETISR_AARP; 836 break; 837 #endif /* NETATALK */ 838 default: 839 #ifdef IPX 840 if (ef_inputp && ef_inputp(ifp, eh, m) == 0) 841 return; 842 #endif /* IPX */ 843 #if defined(NETATALK) 844 if (ether_type > ETHERMTU) 845 goto discard; 846 l = mtod(m, struct llc *); 847 if (l->llc_dsap == LLC_SNAP_LSAP && 848 l->llc_ssap == LLC_SNAP_LSAP && 849 l->llc_control == LLC_UI) { 850 if (bcmp(&(l->llc_snap_org_code)[0], at_org_code, 851 sizeof(at_org_code)) == 0 && 852 ntohs(l->llc_snap_ether_type) == ETHERTYPE_AT) { 853 m_adj(m, LLC_SNAPFRAMELEN); 854 isr = NETISR_ATALK2; 855 break; 856 } 857 if (bcmp(&(l->llc_snap_org_code)[0], aarp_org_code, 858 sizeof(aarp_org_code)) == 0 && 859 ntohs(l->llc_snap_ether_type) == ETHERTYPE_AARP) { 860 m_adj(m, LLC_SNAPFRAMELEN); 861 isr = NETISR_AARP; 862 break; 863 } 864 } 865 #endif /* NETATALK */ 866 goto discard; 867 } 868 netisr_dispatch(isr, m); 869 return; 870 871 discard: 872 /* 873 * Packet is to be discarded. If netgraph is present, 874 * hand the packet to it for last chance processing; 875 * otherwise dispose of it. 876 */ 877 if (IFP2AC(ifp)->ac_netgraph != NULL) { 878 KASSERT(ng_ether_input_orphan_p != NULL, 879 ("ng_ether_input_orphan_p is NULL")); 880 /* 881 * Put back the ethernet header so netgraph has a 882 * consistent view of inbound packets. 883 */ 884 M_PREPEND(m, ETHER_HDR_LEN, M_DONTWAIT); 885 (*ng_ether_input_orphan_p)(ifp, m); 886 return; 887 } 888 m_freem(m); 889 } 890 891 /* 892 * Convert Ethernet address to printable (loggable) representation. 893 * This routine is for compatibility; it's better to just use 894 * 895 * printf("%6D", <pointer to address>, ":"); 896 * 897 * since there's no static buffer involved. 898 */ 899 char * 900 ether_sprintf(const u_char *ap) 901 { 902 static char etherbuf[18]; 903 snprintf(etherbuf, sizeof (etherbuf), "%6D", ap, ":"); 904 return (etherbuf); 905 } 906 907 /* 908 * Perform common duties while attaching to interface list 909 */ 910 void 911 ether_ifattach(struct ifnet *ifp, const u_int8_t *lla) 912 { 913 int i; 914 struct ifaddr *ifa; 915 struct sockaddr_dl *sdl; 916 917 ifp->if_addrlen = ETHER_ADDR_LEN; 918 ifp->if_hdrlen = ETHER_HDR_LEN; 919 if_attach(ifp); 920 ifp->if_mtu = ETHERMTU; 921 ifp->if_output = ether_output; 922 ifp->if_input = ether_input; 923 ifp->if_resolvemulti = ether_resolvemulti; 924 if (ifp->if_baudrate == 0) 925 ifp->if_baudrate = IF_Mbps(10); /* just a default */ 926 ifp->if_broadcastaddr = etherbroadcastaddr; 927 928 ifa = ifp->if_addr; 929 KASSERT(ifa != NULL, ("%s: no lladdr!\n", __func__)); 930 sdl = (struct sockaddr_dl *)ifa->ifa_addr; 931 sdl->sdl_type = IFT_ETHER; 932 sdl->sdl_alen = ifp->if_addrlen; 933 bcopy(lla, LLADDR(sdl), ifp->if_addrlen); 934 935 bpfattach(ifp, DLT_EN10MB, ETHER_HDR_LEN); 936 if (ng_ether_attach_p != NULL) 937 (*ng_ether_attach_p)(ifp); 938 939 /* Announce Ethernet MAC address if non-zero. */ 940 for (i = 0; i < ifp->if_addrlen; i++) 941 if (lla[i] != 0) 942 break; 943 if (i != ifp->if_addrlen) 944 if_printf(ifp, "Ethernet address: %6D\n", lla, ":"); 945 } 946 947 /* 948 * Perform common duties while detaching an Ethernet interface 949 */ 950 void 951 ether_ifdetach(struct ifnet *ifp) 952 { 953 if (IFP2AC(ifp)->ac_netgraph != NULL) { 954 KASSERT(ng_ether_detach_p != NULL, 955 ("ng_ether_detach_p is NULL")); 956 (*ng_ether_detach_p)(ifp); 957 } 958 959 bpfdetach(ifp); 960 if_detach(ifp); 961 } 962 963 SYSCTL_DECL(_net_link); 964 SYSCTL_NODE(_net_link, IFT_ETHER, ether, CTLFLAG_RW, 0, "Ethernet"); 965 #if defined(INET) || defined(INET6) 966 SYSCTL_V_INT(V_NET, vnet_net, _net_link_ether, OID_AUTO, ipfw, CTLFLAG_RW, 967 ether_ipfw, 0, "Pass ether pkts through firewall"); 968 #endif 969 970 #if 0 971 /* 972 * This is for reference. We have a table-driven version 973 * of the little-endian crc32 generator, which is faster 974 * than the double-loop. 975 */ 976 uint32_t 977 ether_crc32_le(const uint8_t *buf, size_t len) 978 { 979 size_t i; 980 uint32_t crc; 981 int bit; 982 uint8_t data; 983 984 crc = 0xffffffff; /* initial value */ 985 986 for (i = 0; i < len; i++) { 987 for (data = *buf++, bit = 0; bit < 8; bit++, data >>= 1) { 988 carry = (crc ^ data) & 1; 989 crc >>= 1; 990 if (carry) 991 crc = (crc ^ ETHER_CRC_POLY_LE); 992 } 993 } 994 995 return (crc); 996 } 997 #else 998 uint32_t 999 ether_crc32_le(const uint8_t *buf, size_t len) 1000 { 1001 static const uint32_t crctab[] = { 1002 0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac, 1003 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c, 1004 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c, 1005 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c 1006 }; 1007 size_t i; 1008 uint32_t crc; 1009 1010 crc = 0xffffffff; /* initial value */ 1011 1012 for (i = 0; i < len; i++) { 1013 crc ^= buf[i]; 1014 crc = (crc >> 4) ^ crctab[crc & 0xf]; 1015 crc = (crc >> 4) ^ crctab[crc & 0xf]; 1016 } 1017 1018 return (crc); 1019 } 1020 #endif 1021 1022 uint32_t 1023 ether_crc32_be(const uint8_t *buf, size_t len) 1024 { 1025 size_t i; 1026 uint32_t crc, carry; 1027 int bit; 1028 uint8_t data; 1029 1030 crc = 0xffffffff; /* initial value */ 1031 1032 for (i = 0; i < len; i++) { 1033 for (data = *buf++, bit = 0; bit < 8; bit++, data >>= 1) { 1034 carry = ((crc & 0x80000000) ? 1 : 0) ^ (data & 0x01); 1035 crc <<= 1; 1036 if (carry) 1037 crc = (crc ^ ETHER_CRC_POLY_BE) | carry; 1038 } 1039 } 1040 1041 return (crc); 1042 } 1043 1044 int 1045 ether_ioctl(struct ifnet *ifp, u_long command, caddr_t data) 1046 { 1047 struct ifaddr *ifa = (struct ifaddr *) data; 1048 struct ifreq *ifr = (struct ifreq *) data; 1049 int error = 0; 1050 1051 switch (command) { 1052 case SIOCSIFADDR: 1053 ifp->if_flags |= IFF_UP; 1054 1055 switch (ifa->ifa_addr->sa_family) { 1056 #ifdef INET 1057 case AF_INET: 1058 ifp->if_init(ifp->if_softc); /* before arpwhohas */ 1059 arp_ifinit(ifp, ifa); 1060 break; 1061 #endif 1062 #ifdef IPX 1063 /* 1064 * XXX - This code is probably wrong 1065 */ 1066 case AF_IPX: 1067 { 1068 struct ipx_addr *ina = &(IA_SIPX(ifa)->sipx_addr); 1069 1070 if (ipx_nullhost(*ina)) 1071 ina->x_host = 1072 *(union ipx_host *) 1073 IF_LLADDR(ifp); 1074 else { 1075 bcopy((caddr_t) ina->x_host.c_host, 1076 (caddr_t) IF_LLADDR(ifp), 1077 ETHER_ADDR_LEN); 1078 } 1079 1080 /* 1081 * Set new address 1082 */ 1083 ifp->if_init(ifp->if_softc); 1084 break; 1085 } 1086 #endif 1087 default: 1088 ifp->if_init(ifp->if_softc); 1089 break; 1090 } 1091 break; 1092 1093 case SIOCGIFADDR: 1094 { 1095 struct sockaddr *sa; 1096 1097 sa = (struct sockaddr *) & ifr->ifr_data; 1098 bcopy(IF_LLADDR(ifp), 1099 (caddr_t) sa->sa_data, ETHER_ADDR_LEN); 1100 } 1101 break; 1102 1103 case SIOCSIFMTU: 1104 /* 1105 * Set the interface MTU. 1106 */ 1107 if (ifr->ifr_mtu > ETHERMTU) { 1108 error = EINVAL; 1109 } else { 1110 ifp->if_mtu = ifr->ifr_mtu; 1111 } 1112 break; 1113 default: 1114 error = EINVAL; /* XXX netbsd has ENOTTY??? */ 1115 break; 1116 } 1117 return (error); 1118 } 1119 1120 static int 1121 ether_resolvemulti(struct ifnet *ifp, struct sockaddr **llsa, 1122 struct sockaddr *sa) 1123 { 1124 struct sockaddr_dl *sdl; 1125 #ifdef INET 1126 struct sockaddr_in *sin; 1127 #endif 1128 #ifdef INET6 1129 struct sockaddr_in6 *sin6; 1130 #endif 1131 u_char *e_addr; 1132 1133 switch(sa->sa_family) { 1134 case AF_LINK: 1135 /* 1136 * No mapping needed. Just check that it's a valid MC address. 1137 */ 1138 sdl = (struct sockaddr_dl *)sa; 1139 e_addr = LLADDR(sdl); 1140 if (!ETHER_IS_MULTICAST(e_addr)) 1141 return EADDRNOTAVAIL; 1142 *llsa = 0; 1143 return 0; 1144 1145 #ifdef INET 1146 case AF_INET: 1147 sin = (struct sockaddr_in *)sa; 1148 if (!IN_MULTICAST(ntohl(sin->sin_addr.s_addr))) 1149 return EADDRNOTAVAIL; 1150 sdl = malloc(sizeof *sdl, M_IFMADDR, 1151 M_NOWAIT|M_ZERO); 1152 if (sdl == NULL) 1153 return ENOMEM; 1154 sdl->sdl_len = sizeof *sdl; 1155 sdl->sdl_family = AF_LINK; 1156 sdl->sdl_index = ifp->if_index; 1157 sdl->sdl_type = IFT_ETHER; 1158 sdl->sdl_alen = ETHER_ADDR_LEN; 1159 e_addr = LLADDR(sdl); 1160 ETHER_MAP_IP_MULTICAST(&sin->sin_addr, e_addr); 1161 *llsa = (struct sockaddr *)sdl; 1162 return 0; 1163 #endif 1164 #ifdef INET6 1165 case AF_INET6: 1166 sin6 = (struct sockaddr_in6 *)sa; 1167 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1168 /* 1169 * An IP6 address of 0 means listen to all 1170 * of the Ethernet multicast address used for IP6. 1171 * (This is used for multicast routers.) 1172 */ 1173 ifp->if_flags |= IFF_ALLMULTI; 1174 *llsa = 0; 1175 return 0; 1176 } 1177 if (!IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr)) 1178 return EADDRNOTAVAIL; 1179 sdl = malloc(sizeof *sdl, M_IFMADDR, 1180 M_NOWAIT|M_ZERO); 1181 if (sdl == NULL) 1182 return (ENOMEM); 1183 sdl->sdl_len = sizeof *sdl; 1184 sdl->sdl_family = AF_LINK; 1185 sdl->sdl_index = ifp->if_index; 1186 sdl->sdl_type = IFT_ETHER; 1187 sdl->sdl_alen = ETHER_ADDR_LEN; 1188 e_addr = LLADDR(sdl); 1189 ETHER_MAP_IPV6_MULTICAST(&sin6->sin6_addr, e_addr); 1190 *llsa = (struct sockaddr *)sdl; 1191 return 0; 1192 #endif 1193 1194 default: 1195 /* 1196 * Well, the text isn't quite right, but it's the name 1197 * that counts... 1198 */ 1199 return EAFNOSUPPORT; 1200 } 1201 } 1202 1203 static void* 1204 ether_alloc(u_char type, struct ifnet *ifp) 1205 { 1206 struct arpcom *ac; 1207 1208 ac = malloc(sizeof(struct arpcom), M_ARPCOM, M_WAITOK | M_ZERO); 1209 ac->ac_ifp = ifp; 1210 1211 return (ac); 1212 } 1213 1214 static void 1215 ether_free(void *com, u_char type) 1216 { 1217 1218 free(com, M_ARPCOM); 1219 } 1220 1221 static int 1222 ether_modevent(module_t mod, int type, void *data) 1223 { 1224 1225 switch (type) { 1226 case MOD_LOAD: 1227 if_register_com_alloc(IFT_ETHER, ether_alloc, ether_free); 1228 break; 1229 case MOD_UNLOAD: 1230 if_deregister_com_alloc(IFT_ETHER); 1231 break; 1232 default: 1233 return EOPNOTSUPP; 1234 } 1235 1236 return (0); 1237 } 1238 1239 static moduledata_t ether_mod = { 1240 "ether", 1241 ether_modevent, 1242 0 1243 }; 1244 1245 void 1246 ether_vlan_mtap(struct bpf_if *bp, struct mbuf *m, void *data, u_int dlen) 1247 { 1248 struct ether_vlan_header vlan; 1249 struct mbuf mv, mb; 1250 1251 KASSERT((m->m_flags & M_VLANTAG) != 0, 1252 ("%s: vlan information not present", __func__)); 1253 KASSERT(m->m_len >= sizeof(struct ether_header), 1254 ("%s: mbuf not large enough for header", __func__)); 1255 bcopy(mtod(m, char *), &vlan, sizeof(struct ether_header)); 1256 vlan.evl_proto = vlan.evl_encap_proto; 1257 vlan.evl_encap_proto = htons(ETHERTYPE_VLAN); 1258 vlan.evl_tag = htons(m->m_pkthdr.ether_vtag); 1259 m->m_len -= sizeof(struct ether_header); 1260 m->m_data += sizeof(struct ether_header); 1261 /* 1262 * If a data link has been supplied by the caller, then we will need to 1263 * re-create a stack allocated mbuf chain with the following structure: 1264 * 1265 * (1) mbuf #1 will contain the supplied data link 1266 * (2) mbuf #2 will contain the vlan header 1267 * (3) mbuf #3 will contain the original mbuf's packet data 1268 * 1269 * Otherwise, submit the packet and vlan header via bpf_mtap2(). 1270 */ 1271 if (data != NULL) { 1272 mv.m_next = m; 1273 mv.m_data = (caddr_t)&vlan; 1274 mv.m_len = sizeof(vlan); 1275 mb.m_next = &mv; 1276 mb.m_data = data; 1277 mb.m_len = dlen; 1278 bpf_mtap(bp, &mb); 1279 } else 1280 bpf_mtap2(bp, &vlan, sizeof(vlan), m); 1281 m->m_len += sizeof(struct ether_header); 1282 m->m_data -= sizeof(struct ether_header); 1283 } 1284 1285 struct mbuf * 1286 ether_vlanencap(struct mbuf *m, uint16_t tag) 1287 { 1288 struct ether_vlan_header *evl; 1289 1290 M_PREPEND(m, ETHER_VLAN_ENCAP_LEN, M_DONTWAIT); 1291 if (m == NULL) 1292 return (NULL); 1293 /* M_PREPEND takes care of m_len, m_pkthdr.len for us */ 1294 1295 if (m->m_len < sizeof(*evl)) { 1296 m = m_pullup(m, sizeof(*evl)); 1297 if (m == NULL) 1298 return (NULL); 1299 } 1300 1301 /* 1302 * Transform the Ethernet header into an Ethernet header 1303 * with 802.1Q encapsulation. 1304 */ 1305 evl = mtod(m, struct ether_vlan_header *); 1306 bcopy((char *)evl + ETHER_VLAN_ENCAP_LEN, 1307 (char *)evl, ETHER_HDR_LEN - ETHER_TYPE_LEN); 1308 evl->evl_encap_proto = htons(ETHERTYPE_VLAN); 1309 evl->evl_tag = htons(tag); 1310 return (m); 1311 } 1312 1313 DECLARE_MODULE(ether, ether_mod, SI_SUB_INIT_IF, SI_ORDER_ANY); 1314 MODULE_VERSION(ether, 1); 1315