1 /*- 2 * Copyright (c) 1980, 1986, 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.c 8.5 (Berkeley) 1/9/95 30 * $FreeBSD$ 31 */ 32 33 #include "opt_compat.h" 34 #include "opt_inet6.h" 35 #include "opt_inet.h" 36 37 #include <sys/param.h> 38 #include <sys/types.h> 39 #include <sys/conf.h> 40 #include <sys/malloc.h> 41 #include <sys/sbuf.h> 42 #include <sys/bus.h> 43 #include <sys/mbuf.h> 44 #include <sys/systm.h> 45 #include <sys/priv.h> 46 #include <sys/proc.h> 47 #include <sys/socket.h> 48 #include <sys/socketvar.h> 49 #include <sys/protosw.h> 50 #include <sys/kernel.h> 51 #include <sys/lock.h> 52 #include <sys/refcount.h> 53 #include <sys/module.h> 54 #include <sys/rwlock.h> 55 #include <sys/sockio.h> 56 #include <sys/syslog.h> 57 #include <sys/sysctl.h> 58 #include <sys/taskqueue.h> 59 #include <sys/domain.h> 60 #include <sys/jail.h> 61 #include <sys/priv.h> 62 63 #include <machine/stdarg.h> 64 #include <vm/uma.h> 65 66 #include <net/bpf.h> 67 #include <net/ethernet.h> 68 #include <net/if.h> 69 #include <net/if_arp.h> 70 #include <net/if_clone.h> 71 #include <net/if_dl.h> 72 #include <net/if_types.h> 73 #include <net/if_var.h> 74 #include <net/if_media.h> 75 #include <net/if_vlan_var.h> 76 #include <net/radix.h> 77 #include <net/route.h> 78 #include <net/vnet.h> 79 80 #if defined(INET) || defined(INET6) 81 #include <net/ethernet.h> 82 #include <netinet/in.h> 83 #include <netinet/in_var.h> 84 #include <netinet/ip.h> 85 #include <netinet/ip_carp.h> 86 #ifdef INET 87 #include <netinet/if_ether.h> 88 #endif /* INET */ 89 #ifdef INET6 90 #include <netinet6/in6_var.h> 91 #include <netinet6/in6_ifattach.h> 92 #endif /* INET6 */ 93 #endif /* INET || INET6 */ 94 95 #include <security/mac/mac_framework.h> 96 97 #ifdef COMPAT_FREEBSD32 98 #include <sys/mount.h> 99 #include <compat/freebsd32/freebsd32.h> 100 #endif 101 102 SYSCTL_NODE(_net, PF_LINK, link, CTLFLAG_RW, 0, "Link layers"); 103 SYSCTL_NODE(_net_link, 0, generic, CTLFLAG_RW, 0, "Generic link-management"); 104 105 SYSCTL_INT(_net_link, OID_AUTO, ifqmaxlen, CTLFLAG_RDTUN, 106 &ifqmaxlen, 0, "max send queue size"); 107 108 /* Log link state change events */ 109 static int log_link_state_change = 1; 110 111 SYSCTL_INT(_net_link, OID_AUTO, log_link_state_change, CTLFLAG_RW, 112 &log_link_state_change, 0, 113 "log interface link state change events"); 114 115 /* Log promiscuous mode change events */ 116 static int log_promisc_mode_change = 1; 117 118 SYSCTL_INT(_net_link, OID_AUTO, log_promisc_mode_change, CTLFLAG_RDTUN, 119 &log_promisc_mode_change, 1, 120 "log promiscuous mode change events"); 121 122 /* Interface description */ 123 static unsigned int ifdescr_maxlen = 1024; 124 SYSCTL_UINT(_net, OID_AUTO, ifdescr_maxlen, CTLFLAG_RW, 125 &ifdescr_maxlen, 0, 126 "administrative maximum length for interface description"); 127 128 static MALLOC_DEFINE(M_IFDESCR, "ifdescr", "ifnet descriptions"); 129 130 /* global sx for non-critical path ifdescr */ 131 static struct sx ifdescr_sx; 132 SX_SYSINIT(ifdescr_sx, &ifdescr_sx, "ifnet descr"); 133 134 void (*bridge_linkstate_p)(struct ifnet *ifp); 135 void (*ng_ether_link_state_p)(struct ifnet *ifp, int state); 136 void (*lagg_linkstate_p)(struct ifnet *ifp, int state); 137 /* These are external hooks for CARP. */ 138 void (*carp_linkstate_p)(struct ifnet *ifp); 139 void (*carp_demote_adj_p)(int, char *); 140 int (*carp_master_p)(struct ifaddr *); 141 #if defined(INET) || defined(INET6) 142 int (*carp_forus_p)(struct ifnet *ifp, u_char *dhost); 143 int (*carp_output_p)(struct ifnet *ifp, struct mbuf *m, 144 const struct sockaddr *sa); 145 int (*carp_ioctl_p)(struct ifreq *, u_long, struct thread *); 146 int (*carp_attach_p)(struct ifaddr *, int); 147 void (*carp_detach_p)(struct ifaddr *); 148 #endif 149 #ifdef INET 150 int (*carp_iamatch_p)(struct ifaddr *, uint8_t **); 151 #endif 152 #ifdef INET6 153 struct ifaddr *(*carp_iamatch6_p)(struct ifnet *ifp, struct in6_addr *taddr6); 154 caddr_t (*carp_macmatch6_p)(struct ifnet *ifp, struct mbuf *m, 155 const struct in6_addr *taddr); 156 #endif 157 158 struct mbuf *(*tbr_dequeue_ptr)(struct ifaltq *, int) = NULL; 159 160 /* 161 * XXX: Style; these should be sorted alphabetically, and unprototyped 162 * static functions should be prototyped. Currently they are sorted by 163 * declaration order. 164 */ 165 static void if_attachdomain(void *); 166 static void if_attachdomain1(struct ifnet *); 167 static int ifconf(u_long, caddr_t); 168 static void if_freemulti(struct ifmultiaddr *); 169 static void if_grow(void); 170 static void if_input_default(struct ifnet *, struct mbuf *); 171 static int if_requestencap_default(struct ifnet *, struct if_encap_req *); 172 static void if_route(struct ifnet *, int flag, int fam); 173 static int if_setflag(struct ifnet *, int, int, int *, int); 174 static int if_transmit(struct ifnet *ifp, struct mbuf *m); 175 static void if_unroute(struct ifnet *, int flag, int fam); 176 static void link_rtrequest(int, struct rtentry *, struct rt_addrinfo *); 177 static int ifhwioctl(u_long, struct ifnet *, caddr_t, struct thread *); 178 static int if_delmulti_locked(struct ifnet *, struct ifmultiaddr *, int); 179 static void do_link_state_change(void *, int); 180 static int if_getgroup(struct ifgroupreq *, struct ifnet *); 181 static int if_getgroupmembers(struct ifgroupreq *); 182 static void if_delgroups(struct ifnet *); 183 static void if_attach_internal(struct ifnet *, int, struct if_clone *); 184 static int if_detach_internal(struct ifnet *, int, struct if_clone **); 185 #ifdef VIMAGE 186 static void if_vmove(struct ifnet *, struct vnet *); 187 #endif 188 189 #ifdef INET6 190 /* 191 * XXX: declare here to avoid to include many inet6 related files.. 192 * should be more generalized? 193 */ 194 extern void nd6_setmtu(struct ifnet *); 195 #endif 196 197 /* ipsec helper hooks */ 198 VNET_DEFINE(struct hhook_head *, ipsec_hhh_in[HHOOK_IPSEC_COUNT]); 199 VNET_DEFINE(struct hhook_head *, ipsec_hhh_out[HHOOK_IPSEC_COUNT]); 200 201 VNET_DEFINE(int, if_index); 202 int ifqmaxlen = IFQ_MAXLEN; 203 VNET_DEFINE(struct ifnethead, ifnet); /* depend on static init XXX */ 204 VNET_DEFINE(struct ifgrouphead, ifg_head); 205 206 static VNET_DEFINE(int, if_indexlim) = 8; 207 208 /* Table of ifnet by index. */ 209 VNET_DEFINE(struct ifnet **, ifindex_table); 210 211 #define V_if_indexlim VNET(if_indexlim) 212 #define V_ifindex_table VNET(ifindex_table) 213 214 /* 215 * The global network interface list (V_ifnet) and related state (such as 216 * if_index, if_indexlim, and ifindex_table) are protected by an sxlock and 217 * an rwlock. Either may be acquired shared to stablize the list, but both 218 * must be acquired writable to modify the list. This model allows us to 219 * both stablize the interface list during interrupt thread processing, but 220 * also to stablize it over long-running ioctls, without introducing priority 221 * inversions and deadlocks. 222 */ 223 struct rwlock ifnet_rwlock; 224 RW_SYSINIT_FLAGS(ifnet_rw, &ifnet_rwlock, "ifnet_rw", RW_RECURSE); 225 struct sx ifnet_sxlock; 226 SX_SYSINIT_FLAGS(ifnet_sx, &ifnet_sxlock, "ifnet_sx", SX_RECURSE); 227 228 /* 229 * The allocation of network interfaces is a rather non-atomic affair; we 230 * need to select an index before we are ready to expose the interface for 231 * use, so will use this pointer value to indicate reservation. 232 */ 233 #define IFNET_HOLD (void *)(uintptr_t)(-1) 234 235 static if_com_alloc_t *if_com_alloc[256]; 236 static if_com_free_t *if_com_free[256]; 237 238 static MALLOC_DEFINE(M_IFNET, "ifnet", "interface internals"); 239 MALLOC_DEFINE(M_IFADDR, "ifaddr", "interface address"); 240 MALLOC_DEFINE(M_IFMADDR, "ether_multi", "link-level multicast address"); 241 242 struct ifnet * 243 ifnet_byindex_locked(u_short idx) 244 { 245 246 if (idx > V_if_index) 247 return (NULL); 248 if (V_ifindex_table[idx] == IFNET_HOLD) 249 return (NULL); 250 return (V_ifindex_table[idx]); 251 } 252 253 struct ifnet * 254 ifnet_byindex(u_short idx) 255 { 256 struct ifnet *ifp; 257 258 IFNET_RLOCK_NOSLEEP(); 259 ifp = ifnet_byindex_locked(idx); 260 IFNET_RUNLOCK_NOSLEEP(); 261 return (ifp); 262 } 263 264 struct ifnet * 265 ifnet_byindex_ref(u_short idx) 266 { 267 struct ifnet *ifp; 268 269 IFNET_RLOCK_NOSLEEP(); 270 ifp = ifnet_byindex_locked(idx); 271 if (ifp == NULL || (ifp->if_flags & IFF_DYING)) { 272 IFNET_RUNLOCK_NOSLEEP(); 273 return (NULL); 274 } 275 if_ref(ifp); 276 IFNET_RUNLOCK_NOSLEEP(); 277 return (ifp); 278 } 279 280 /* 281 * Allocate an ifindex array entry; return 0 on success or an error on 282 * failure. 283 */ 284 static u_short 285 ifindex_alloc(void) 286 { 287 u_short idx; 288 289 IFNET_WLOCK_ASSERT(); 290 retry: 291 /* 292 * Try to find an empty slot below V_if_index. If we fail, take the 293 * next slot. 294 */ 295 for (idx = 1; idx <= V_if_index; idx++) { 296 if (V_ifindex_table[idx] == NULL) 297 break; 298 } 299 300 /* Catch if_index overflow. */ 301 if (idx >= V_if_indexlim) { 302 if_grow(); 303 goto retry; 304 } 305 if (idx > V_if_index) 306 V_if_index = idx; 307 return (idx); 308 } 309 310 static void 311 ifindex_free_locked(u_short idx) 312 { 313 314 IFNET_WLOCK_ASSERT(); 315 316 V_ifindex_table[idx] = NULL; 317 while (V_if_index > 0 && 318 V_ifindex_table[V_if_index] == NULL) 319 V_if_index--; 320 } 321 322 static void 323 ifindex_free(u_short idx) 324 { 325 326 IFNET_WLOCK(); 327 ifindex_free_locked(idx); 328 IFNET_WUNLOCK(); 329 } 330 331 static void 332 ifnet_setbyindex_locked(u_short idx, struct ifnet *ifp) 333 { 334 335 IFNET_WLOCK_ASSERT(); 336 337 V_ifindex_table[idx] = ifp; 338 } 339 340 static void 341 ifnet_setbyindex(u_short idx, struct ifnet *ifp) 342 { 343 344 IFNET_WLOCK(); 345 ifnet_setbyindex_locked(idx, ifp); 346 IFNET_WUNLOCK(); 347 } 348 349 struct ifaddr * 350 ifaddr_byindex(u_short idx) 351 { 352 struct ifnet *ifp; 353 struct ifaddr *ifa = NULL; 354 355 IFNET_RLOCK_NOSLEEP(); 356 ifp = ifnet_byindex_locked(idx); 357 if (ifp != NULL && (ifa = ifp->if_addr) != NULL) 358 ifa_ref(ifa); 359 IFNET_RUNLOCK_NOSLEEP(); 360 return (ifa); 361 } 362 363 /* 364 * Network interface utility routines. 365 * 366 * Routines with ifa_ifwith* names take sockaddr *'s as 367 * parameters. 368 */ 369 370 static void 371 vnet_if_init(const void *unused __unused) 372 { 373 374 TAILQ_INIT(&V_ifnet); 375 TAILQ_INIT(&V_ifg_head); 376 IFNET_WLOCK(); 377 if_grow(); /* create initial table */ 378 IFNET_WUNLOCK(); 379 vnet_if_clone_init(); 380 } 381 VNET_SYSINIT(vnet_if_init, SI_SUB_INIT_IF, SI_ORDER_SECOND, vnet_if_init, 382 NULL); 383 384 #ifdef VIMAGE 385 static void 386 vnet_if_uninit(const void *unused __unused) 387 { 388 389 VNET_ASSERT(TAILQ_EMPTY(&V_ifnet), ("%s:%d tailq &V_ifnet=%p " 390 "not empty", __func__, __LINE__, &V_ifnet)); 391 VNET_ASSERT(TAILQ_EMPTY(&V_ifg_head), ("%s:%d tailq &V_ifg_head=%p " 392 "not empty", __func__, __LINE__, &V_ifg_head)); 393 394 free((caddr_t)V_ifindex_table, M_IFNET); 395 } 396 VNET_SYSUNINIT(vnet_if_uninit, SI_SUB_INIT_IF, SI_ORDER_FIRST, 397 vnet_if_uninit, NULL); 398 399 static void 400 vnet_if_return(const void *unused __unused) 401 { 402 struct ifnet *ifp, *nifp; 403 404 /* Return all inherited interfaces to their parent vnets. */ 405 TAILQ_FOREACH_SAFE(ifp, &V_ifnet, if_link, nifp) { 406 if (ifp->if_home_vnet != ifp->if_vnet) 407 if_vmove(ifp, ifp->if_home_vnet); 408 } 409 } 410 VNET_SYSUNINIT(vnet_if_return, SI_SUB_VNET_DONE, SI_ORDER_ANY, 411 vnet_if_return, NULL); 412 #endif 413 414 static void 415 if_grow(void) 416 { 417 int oldlim; 418 u_int n; 419 struct ifnet **e; 420 421 IFNET_WLOCK_ASSERT(); 422 oldlim = V_if_indexlim; 423 IFNET_WUNLOCK(); 424 n = (oldlim << 1) * sizeof(*e); 425 e = malloc(n, M_IFNET, M_WAITOK | M_ZERO); 426 IFNET_WLOCK(); 427 if (V_if_indexlim != oldlim) { 428 free(e, M_IFNET); 429 return; 430 } 431 if (V_ifindex_table != NULL) { 432 memcpy((caddr_t)e, (caddr_t)V_ifindex_table, n/2); 433 free((caddr_t)V_ifindex_table, M_IFNET); 434 } 435 V_if_indexlim <<= 1; 436 V_ifindex_table = e; 437 } 438 439 /* 440 * Allocate a struct ifnet and an index for an interface. A layer 2 441 * common structure will also be allocated if an allocation routine is 442 * registered for the passed type. 443 */ 444 struct ifnet * 445 if_alloc(u_char type) 446 { 447 struct ifnet *ifp; 448 u_short idx; 449 450 ifp = malloc(sizeof(struct ifnet), M_IFNET, M_WAITOK|M_ZERO); 451 IFNET_WLOCK(); 452 idx = ifindex_alloc(); 453 ifnet_setbyindex_locked(idx, IFNET_HOLD); 454 IFNET_WUNLOCK(); 455 ifp->if_index = idx; 456 ifp->if_type = type; 457 ifp->if_alloctype = type; 458 if (if_com_alloc[type] != NULL) { 459 ifp->if_l2com = if_com_alloc[type](type, ifp); 460 if (ifp->if_l2com == NULL) { 461 free(ifp, M_IFNET); 462 ifindex_free(idx); 463 return (NULL); 464 } 465 } 466 467 IF_ADDR_LOCK_INIT(ifp); 468 TASK_INIT(&ifp->if_linktask, 0, do_link_state_change, ifp); 469 ifp->if_afdata_initialized = 0; 470 IF_AFDATA_LOCK_INIT(ifp); 471 TAILQ_INIT(&ifp->if_addrhead); 472 TAILQ_INIT(&ifp->if_multiaddrs); 473 TAILQ_INIT(&ifp->if_groups); 474 #ifdef MAC 475 mac_ifnet_init(ifp); 476 #endif 477 ifq_init(&ifp->if_snd, ifp); 478 479 refcount_init(&ifp->if_refcount, 1); /* Index reference. */ 480 for (int i = 0; i < IFCOUNTERS; i++) 481 ifp->if_counters[i] = counter_u64_alloc(M_WAITOK); 482 ifp->if_get_counter = if_get_counter_default; 483 ifnet_setbyindex(ifp->if_index, ifp); 484 return (ifp); 485 } 486 487 /* 488 * Do the actual work of freeing a struct ifnet, and layer 2 common 489 * structure. This call is made when the last reference to an 490 * interface is released. 491 */ 492 static void 493 if_free_internal(struct ifnet *ifp) 494 { 495 496 KASSERT((ifp->if_flags & IFF_DYING), 497 ("if_free_internal: interface not dying")); 498 499 if (if_com_free[ifp->if_alloctype] != NULL) 500 if_com_free[ifp->if_alloctype](ifp->if_l2com, 501 ifp->if_alloctype); 502 503 #ifdef MAC 504 mac_ifnet_destroy(ifp); 505 #endif /* MAC */ 506 if (ifp->if_description != NULL) 507 free(ifp->if_description, M_IFDESCR); 508 IF_AFDATA_DESTROY(ifp); 509 IF_ADDR_LOCK_DESTROY(ifp); 510 ifq_delete(&ifp->if_snd); 511 512 for (int i = 0; i < IFCOUNTERS; i++) 513 counter_u64_free(ifp->if_counters[i]); 514 515 free(ifp, M_IFNET); 516 } 517 518 /* 519 * Deregister an interface and free the associated storage. 520 */ 521 void 522 if_free(struct ifnet *ifp) 523 { 524 525 ifp->if_flags |= IFF_DYING; /* XXX: Locking */ 526 527 CURVNET_SET_QUIET(ifp->if_vnet); 528 IFNET_WLOCK(); 529 KASSERT(ifp == ifnet_byindex_locked(ifp->if_index), 530 ("%s: freeing unallocated ifnet", ifp->if_xname)); 531 532 ifindex_free_locked(ifp->if_index); 533 IFNET_WUNLOCK(); 534 535 if (refcount_release(&ifp->if_refcount)) 536 if_free_internal(ifp); 537 CURVNET_RESTORE(); 538 } 539 540 /* 541 * Interfaces to keep an ifnet type-stable despite the possibility of the 542 * driver calling if_free(). If there are additional references, we defer 543 * freeing the underlying data structure. 544 */ 545 void 546 if_ref(struct ifnet *ifp) 547 { 548 549 /* We don't assert the ifnet list lock here, but arguably should. */ 550 refcount_acquire(&ifp->if_refcount); 551 } 552 553 void 554 if_rele(struct ifnet *ifp) 555 { 556 557 if (!refcount_release(&ifp->if_refcount)) 558 return; 559 if_free_internal(ifp); 560 } 561 562 void 563 ifq_init(struct ifaltq *ifq, struct ifnet *ifp) 564 { 565 566 mtx_init(&ifq->ifq_mtx, ifp->if_xname, "if send queue", MTX_DEF); 567 568 if (ifq->ifq_maxlen == 0) 569 ifq->ifq_maxlen = ifqmaxlen; 570 571 ifq->altq_type = 0; 572 ifq->altq_disc = NULL; 573 ifq->altq_flags &= ALTQF_CANTCHANGE; 574 ifq->altq_tbr = NULL; 575 ifq->altq_ifp = ifp; 576 } 577 578 void 579 ifq_delete(struct ifaltq *ifq) 580 { 581 mtx_destroy(&ifq->ifq_mtx); 582 } 583 584 /* 585 * Perform generic interface initialization tasks and attach the interface 586 * to the list of "active" interfaces. If vmove flag is set on entry 587 * to if_attach_internal(), perform only a limited subset of initialization 588 * tasks, given that we are moving from one vnet to another an ifnet which 589 * has already been fully initialized. 590 * 591 * Note that if_detach_internal() removes group membership unconditionally 592 * even when vmove flag is set, and if_attach_internal() adds only IFG_ALL. 593 * Thus, when if_vmove() is applied to a cloned interface, group membership 594 * is lost while a cloned one always joins a group whose name is 595 * ifc->ifc_name. To recover this after if_detach_internal() and 596 * if_attach_internal(), the cloner should be specified to 597 * if_attach_internal() via ifc. If it is non-NULL, if_attach_internal() 598 * attempts to join a group whose name is ifc->ifc_name. 599 * 600 * XXX: 601 * - The decision to return void and thus require this function to 602 * succeed is questionable. 603 * - We should probably do more sanity checking. For instance we don't 604 * do anything to insure if_xname is unique or non-empty. 605 */ 606 void 607 if_attach(struct ifnet *ifp) 608 { 609 610 if_attach_internal(ifp, 0, NULL); 611 } 612 613 /* 614 * Compute the least common TSO limit. 615 */ 616 void 617 if_hw_tsomax_common(if_t ifp, struct ifnet_hw_tsomax *pmax) 618 { 619 /* 620 * 1) If there is no limit currently, take the limit from 621 * the network adapter. 622 * 623 * 2) If the network adapter has a limit below the current 624 * limit, apply it. 625 */ 626 if (pmax->tsomaxbytes == 0 || (ifp->if_hw_tsomax != 0 && 627 ifp->if_hw_tsomax < pmax->tsomaxbytes)) { 628 pmax->tsomaxbytes = ifp->if_hw_tsomax; 629 } 630 if (pmax->tsomaxsegcount == 0 || (ifp->if_hw_tsomaxsegcount != 0 && 631 ifp->if_hw_tsomaxsegcount < pmax->tsomaxsegcount)) { 632 pmax->tsomaxsegcount = ifp->if_hw_tsomaxsegcount; 633 } 634 if (pmax->tsomaxsegsize == 0 || (ifp->if_hw_tsomaxsegsize != 0 && 635 ifp->if_hw_tsomaxsegsize < pmax->tsomaxsegsize)) { 636 pmax->tsomaxsegsize = ifp->if_hw_tsomaxsegsize; 637 } 638 } 639 640 /* 641 * Update TSO limit of a network adapter. 642 * 643 * Returns zero if no change. Else non-zero. 644 */ 645 int 646 if_hw_tsomax_update(if_t ifp, struct ifnet_hw_tsomax *pmax) 647 { 648 int retval = 0; 649 if (ifp->if_hw_tsomax != pmax->tsomaxbytes) { 650 ifp->if_hw_tsomax = pmax->tsomaxbytes; 651 retval++; 652 } 653 if (ifp->if_hw_tsomaxsegsize != pmax->tsomaxsegsize) { 654 ifp->if_hw_tsomaxsegsize = pmax->tsomaxsegsize; 655 retval++; 656 } 657 if (ifp->if_hw_tsomaxsegcount != pmax->tsomaxsegcount) { 658 ifp->if_hw_tsomaxsegcount = pmax->tsomaxsegcount; 659 retval++; 660 } 661 return (retval); 662 } 663 664 static void 665 if_attach_internal(struct ifnet *ifp, int vmove, struct if_clone *ifc) 666 { 667 unsigned socksize, ifasize; 668 int namelen, masklen; 669 struct sockaddr_dl *sdl; 670 struct ifaddr *ifa; 671 672 if (ifp->if_index == 0 || ifp != ifnet_byindex(ifp->if_index)) 673 panic ("%s: BUG: if_attach called without if_alloc'd input()\n", 674 ifp->if_xname); 675 676 #ifdef VIMAGE 677 ifp->if_vnet = curvnet; 678 if (ifp->if_home_vnet == NULL) 679 ifp->if_home_vnet = curvnet; 680 #endif 681 682 if_addgroup(ifp, IFG_ALL); 683 684 /* Restore group membership for cloned interfaces. */ 685 if (vmove && ifc != NULL) 686 if_clone_addgroup(ifp, ifc); 687 688 getmicrotime(&ifp->if_lastchange); 689 ifp->if_epoch = time_uptime; 690 691 KASSERT((ifp->if_transmit == NULL && ifp->if_qflush == NULL) || 692 (ifp->if_transmit != NULL && ifp->if_qflush != NULL), 693 ("transmit and qflush must both either be set or both be NULL")); 694 if (ifp->if_transmit == NULL) { 695 ifp->if_transmit = if_transmit; 696 ifp->if_qflush = if_qflush; 697 } 698 if (ifp->if_input == NULL) 699 ifp->if_input = if_input_default; 700 701 if (ifp->if_requestencap == NULL) 702 ifp->if_requestencap = if_requestencap_default; 703 704 if (!vmove) { 705 #ifdef MAC 706 mac_ifnet_create(ifp); 707 #endif 708 709 /* 710 * Create a Link Level name for this device. 711 */ 712 namelen = strlen(ifp->if_xname); 713 /* 714 * Always save enough space for any possiable name so we 715 * can do a rename in place later. 716 */ 717 masklen = offsetof(struct sockaddr_dl, sdl_data[0]) + IFNAMSIZ; 718 socksize = masklen + ifp->if_addrlen; 719 if (socksize < sizeof(*sdl)) 720 socksize = sizeof(*sdl); 721 socksize = roundup2(socksize, sizeof(long)); 722 ifasize = sizeof(*ifa) + 2 * socksize; 723 ifa = ifa_alloc(ifasize, M_WAITOK); 724 sdl = (struct sockaddr_dl *)(ifa + 1); 725 sdl->sdl_len = socksize; 726 sdl->sdl_family = AF_LINK; 727 bcopy(ifp->if_xname, sdl->sdl_data, namelen); 728 sdl->sdl_nlen = namelen; 729 sdl->sdl_index = ifp->if_index; 730 sdl->sdl_type = ifp->if_type; 731 ifp->if_addr = ifa; 732 ifa->ifa_ifp = ifp; 733 ifa->ifa_rtrequest = link_rtrequest; 734 ifa->ifa_addr = (struct sockaddr *)sdl; 735 sdl = (struct sockaddr_dl *)(socksize + (caddr_t)sdl); 736 ifa->ifa_netmask = (struct sockaddr *)sdl; 737 sdl->sdl_len = masklen; 738 while (namelen != 0) 739 sdl->sdl_data[--namelen] = 0xff; 740 TAILQ_INSERT_HEAD(&ifp->if_addrhead, ifa, ifa_link); 741 /* Reliably crash if used uninitialized. */ 742 ifp->if_broadcastaddr = NULL; 743 744 #if defined(INET) || defined(INET6) 745 /* Use defaults for TSO, if nothing is set */ 746 if (ifp->if_hw_tsomax == 0 && 747 ifp->if_hw_tsomaxsegcount == 0 && 748 ifp->if_hw_tsomaxsegsize == 0) { 749 /* 750 * The TSO defaults needs to be such that an 751 * NFS mbuf list of 35 mbufs totalling just 752 * below 64K works and that a chain of mbufs 753 * can be defragged into at most 32 segments: 754 */ 755 ifp->if_hw_tsomax = min(IP_MAXPACKET, (32 * MCLBYTES) - 756 (ETHER_HDR_LEN + ETHER_VLAN_ENCAP_LEN)); 757 ifp->if_hw_tsomaxsegcount = 35; 758 ifp->if_hw_tsomaxsegsize = 2048; /* 2K */ 759 760 /* XXX some drivers set IFCAP_TSO after ethernet attach */ 761 if (ifp->if_capabilities & IFCAP_TSO) { 762 if_printf(ifp, "Using defaults for TSO: %u/%u/%u\n", 763 ifp->if_hw_tsomax, 764 ifp->if_hw_tsomaxsegcount, 765 ifp->if_hw_tsomaxsegsize); 766 } 767 } 768 #endif 769 } 770 #ifdef VIMAGE 771 else { 772 /* 773 * Update the interface index in the link layer address 774 * of the interface. 775 */ 776 for (ifa = ifp->if_addr; ifa != NULL; 777 ifa = TAILQ_NEXT(ifa, ifa_link)) { 778 if (ifa->ifa_addr->sa_family == AF_LINK) { 779 sdl = (struct sockaddr_dl *)ifa->ifa_addr; 780 sdl->sdl_index = ifp->if_index; 781 } 782 } 783 } 784 #endif 785 786 IFNET_WLOCK(); 787 TAILQ_INSERT_TAIL(&V_ifnet, ifp, if_link); 788 #ifdef VIMAGE 789 curvnet->vnet_ifcnt++; 790 #endif 791 IFNET_WUNLOCK(); 792 793 if (domain_init_status >= 2) 794 if_attachdomain1(ifp); 795 796 EVENTHANDLER_INVOKE(ifnet_arrival_event, ifp); 797 if (IS_DEFAULT_VNET(curvnet)) 798 devctl_notify("IFNET", ifp->if_xname, "ATTACH", NULL); 799 800 /* Announce the interface. */ 801 rt_ifannouncemsg(ifp, IFAN_ARRIVAL); 802 } 803 804 static void 805 if_attachdomain(void *dummy) 806 { 807 struct ifnet *ifp; 808 809 TAILQ_FOREACH(ifp, &V_ifnet, if_link) 810 if_attachdomain1(ifp); 811 } 812 SYSINIT(domainifattach, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_SECOND, 813 if_attachdomain, NULL); 814 815 static void 816 if_attachdomain1(struct ifnet *ifp) 817 { 818 struct domain *dp; 819 820 /* 821 * Since dp->dom_ifattach calls malloc() with M_WAITOK, we 822 * cannot lock ifp->if_afdata initialization, entirely. 823 */ 824 IF_AFDATA_LOCK(ifp); 825 if (ifp->if_afdata_initialized >= domain_init_status) { 826 IF_AFDATA_UNLOCK(ifp); 827 log(LOG_WARNING, "%s called more than once on %s\n", 828 __func__, ifp->if_xname); 829 return; 830 } 831 ifp->if_afdata_initialized = domain_init_status; 832 IF_AFDATA_UNLOCK(ifp); 833 834 /* address family dependent data region */ 835 bzero(ifp->if_afdata, sizeof(ifp->if_afdata)); 836 for (dp = domains; dp; dp = dp->dom_next) { 837 if (dp->dom_ifattach) 838 ifp->if_afdata[dp->dom_family] = 839 (*dp->dom_ifattach)(ifp); 840 } 841 } 842 843 /* 844 * Remove any unicast or broadcast network addresses from an interface. 845 */ 846 void 847 if_purgeaddrs(struct ifnet *ifp) 848 { 849 struct ifaddr *ifa, *next; 850 851 /* XXX cannot hold IF_ADDR_WLOCK over called functions. */ 852 TAILQ_FOREACH_SAFE(ifa, &ifp->if_addrhead, ifa_link, next) { 853 if (ifa->ifa_addr->sa_family == AF_LINK) 854 continue; 855 #ifdef INET 856 /* XXX: Ugly!! ad hoc just for INET */ 857 if (ifa->ifa_addr->sa_family == AF_INET) { 858 struct ifaliasreq ifr; 859 860 bzero(&ifr, sizeof(ifr)); 861 ifr.ifra_addr = *ifa->ifa_addr; 862 if (ifa->ifa_dstaddr) 863 ifr.ifra_broadaddr = *ifa->ifa_dstaddr; 864 if (in_control(NULL, SIOCDIFADDR, (caddr_t)&ifr, ifp, 865 NULL) == 0) 866 continue; 867 } 868 #endif /* INET */ 869 #ifdef INET6 870 if (ifa->ifa_addr->sa_family == AF_INET6) { 871 in6_purgeaddr(ifa); 872 /* ifp_addrhead is already updated */ 873 continue; 874 } 875 #endif /* INET6 */ 876 IF_ADDR_WLOCK(ifp); 877 TAILQ_REMOVE(&ifp->if_addrhead, ifa, ifa_link); 878 IF_ADDR_WUNLOCK(ifp); 879 ifa_free(ifa); 880 } 881 } 882 883 /* 884 * Remove any multicast network addresses from an interface when an ifnet 885 * is going away. 886 */ 887 static void 888 if_purgemaddrs(struct ifnet *ifp) 889 { 890 struct ifmultiaddr *ifma; 891 struct ifmultiaddr *next; 892 893 IF_ADDR_WLOCK(ifp); 894 TAILQ_FOREACH_SAFE(ifma, &ifp->if_multiaddrs, ifma_link, next) 895 if_delmulti_locked(ifp, ifma, 1); 896 IF_ADDR_WUNLOCK(ifp); 897 } 898 899 /* 900 * Detach an interface, removing it from the list of "active" interfaces. 901 * If vmove flag is set on entry to if_detach_internal(), perform only a 902 * limited subset of cleanup tasks, given that we are moving an ifnet from 903 * one vnet to another, where it must be fully operational. 904 * 905 * XXXRW: There are some significant questions about event ordering, and 906 * how to prevent things from starting to use the interface during detach. 907 */ 908 void 909 if_detach(struct ifnet *ifp) 910 { 911 912 CURVNET_SET_QUIET(ifp->if_vnet); 913 if_detach_internal(ifp, 0, NULL); 914 CURVNET_RESTORE(); 915 } 916 917 static int 918 if_detach_internal(struct ifnet *ifp, int vmove, struct if_clone **ifcp) 919 { 920 struct ifaddr *ifa; 921 int i; 922 struct domain *dp; 923 struct ifnet *iter; 924 int found = 0; 925 926 IFNET_WLOCK(); 927 TAILQ_FOREACH(iter, &V_ifnet, if_link) 928 if (iter == ifp) { 929 TAILQ_REMOVE(&V_ifnet, ifp, if_link); 930 found = 1; 931 break; 932 } 933 #ifdef VIMAGE 934 if (found) 935 curvnet->vnet_ifcnt--; 936 #endif 937 IFNET_WUNLOCK(); 938 if (!found) { 939 /* 940 * While we would want to panic here, we cannot 941 * guarantee that the interface is indeed still on 942 * the list given we don't hold locks all the way. 943 */ 944 return (ENOENT); 945 #if 0 946 if (vmove) 947 panic("%s: ifp=%p not on the ifnet tailq %p", 948 __func__, ifp, &V_ifnet); 949 else 950 return; /* XXX this should panic as well? */ 951 #endif 952 } 953 954 /* Check if this is a cloned interface or not. */ 955 if (vmove && ifcp != NULL) 956 *ifcp = if_clone_findifc(ifp); 957 958 /* 959 * Remove/wait for pending events. 960 */ 961 taskqueue_drain(taskqueue_swi, &ifp->if_linktask); 962 963 /* 964 * Remove routes and flush queues. 965 */ 966 if_down(ifp); 967 #ifdef ALTQ 968 if (ALTQ_IS_ENABLED(&ifp->if_snd)) 969 altq_disable(&ifp->if_snd); 970 if (ALTQ_IS_ATTACHED(&ifp->if_snd)) 971 altq_detach(&ifp->if_snd); 972 #endif 973 974 if_purgeaddrs(ifp); 975 976 #ifdef INET 977 in_ifdetach(ifp); 978 #endif 979 980 #ifdef INET6 981 /* 982 * Remove all IPv6 kernel structs related to ifp. This should be done 983 * before removing routing entries below, since IPv6 interface direct 984 * routes are expected to be removed by the IPv6-specific kernel API. 985 * Otherwise, the kernel will detect some inconsistency and bark it. 986 */ 987 in6_ifdetach(ifp); 988 #endif 989 if_purgemaddrs(ifp); 990 991 /* Announce that the interface is gone. */ 992 rt_ifannouncemsg(ifp, IFAN_DEPARTURE); 993 EVENTHANDLER_INVOKE(ifnet_departure_event, ifp); 994 if (IS_DEFAULT_VNET(curvnet)) 995 devctl_notify("IFNET", ifp->if_xname, "DETACH", NULL); 996 997 if (!vmove) { 998 /* 999 * Prevent further calls into the device driver via ifnet. 1000 */ 1001 if_dead(ifp); 1002 1003 /* 1004 * Remove link ifaddr pointer and maybe decrement if_index. 1005 * Clean up all addresses. 1006 */ 1007 ifp->if_addr = NULL; 1008 1009 /* We can now free link ifaddr. */ 1010 IF_ADDR_WLOCK(ifp); 1011 if (!TAILQ_EMPTY(&ifp->if_addrhead)) { 1012 ifa = TAILQ_FIRST(&ifp->if_addrhead); 1013 TAILQ_REMOVE(&ifp->if_addrhead, ifa, ifa_link); 1014 IF_ADDR_WUNLOCK(ifp); 1015 ifa_free(ifa); 1016 } else 1017 IF_ADDR_WUNLOCK(ifp); 1018 } 1019 1020 rt_flushifroutes(ifp); 1021 if_delgroups(ifp); 1022 1023 /* 1024 * We cannot hold the lock over dom_ifdetach calls as they might 1025 * sleep, for example trying to drain a callout, thus open up the 1026 * theoretical race with re-attaching. 1027 */ 1028 IF_AFDATA_LOCK(ifp); 1029 i = ifp->if_afdata_initialized; 1030 ifp->if_afdata_initialized = 0; 1031 IF_AFDATA_UNLOCK(ifp); 1032 for (dp = domains; i > 0 && dp; dp = dp->dom_next) { 1033 if (dp->dom_ifdetach && ifp->if_afdata[dp->dom_family]) { 1034 (*dp->dom_ifdetach)(ifp, 1035 ifp->if_afdata[dp->dom_family]); 1036 ifp->if_afdata[dp->dom_family] = NULL; 1037 } 1038 } 1039 1040 return (0); 1041 } 1042 1043 #ifdef VIMAGE 1044 /* 1045 * if_vmove() performs a limited version of if_detach() in current 1046 * vnet and if_attach()es the ifnet to the vnet specified as 2nd arg. 1047 * An attempt is made to shrink if_index in current vnet, find an 1048 * unused if_index in target vnet and calls if_grow() if necessary, 1049 * and finally find an unused if_xname for the target vnet. 1050 */ 1051 void 1052 if_vmove(struct ifnet *ifp, struct vnet *new_vnet) 1053 { 1054 struct if_clone *ifc; 1055 u_int bif_dlt, bif_hdrlen; 1056 int rc; 1057 1058 /* 1059 * if_detach_internal() will call the eventhandler to notify 1060 * interface departure. That will detach if_bpf. We need to 1061 * safe the dlt and hdrlen so we can re-attach it later. 1062 */ 1063 bpf_get_bp_params(ifp->if_bpf, &bif_dlt, &bif_hdrlen); 1064 1065 /* 1066 * Detach from current vnet, but preserve LLADDR info, do not 1067 * mark as dead etc. so that the ifnet can be reattached later. 1068 * If we cannot find it, we lost the race to someone else. 1069 */ 1070 rc = if_detach_internal(ifp, 1, &ifc); 1071 if (rc != 0) 1072 return; 1073 1074 /* 1075 * Unlink the ifnet from ifindex_table[] in current vnet, and shrink 1076 * the if_index for that vnet if possible. 1077 * 1078 * NOTE: IFNET_WLOCK/IFNET_WUNLOCK() are assumed to be unvirtualized, 1079 * or we'd lock on one vnet and unlock on another. 1080 */ 1081 IFNET_WLOCK(); 1082 ifindex_free_locked(ifp->if_index); 1083 IFNET_WUNLOCK(); 1084 1085 /* 1086 * Perform interface-specific reassignment tasks, if provided by 1087 * the driver. 1088 */ 1089 if (ifp->if_reassign != NULL) 1090 ifp->if_reassign(ifp, new_vnet, NULL); 1091 1092 /* 1093 * Switch to the context of the target vnet. 1094 */ 1095 CURVNET_SET_QUIET(new_vnet); 1096 1097 IFNET_WLOCK(); 1098 ifp->if_index = ifindex_alloc(); 1099 ifnet_setbyindex_locked(ifp->if_index, ifp); 1100 IFNET_WUNLOCK(); 1101 1102 if_attach_internal(ifp, 1, ifc); 1103 1104 if (ifp->if_bpf == NULL) 1105 bpfattach(ifp, bif_dlt, bif_hdrlen); 1106 1107 CURVNET_RESTORE(); 1108 } 1109 1110 /* 1111 * Move an ifnet to or from another child prison/vnet, specified by the jail id. 1112 */ 1113 static int 1114 if_vmove_loan(struct thread *td, struct ifnet *ifp, char *ifname, int jid) 1115 { 1116 struct prison *pr; 1117 struct ifnet *difp; 1118 1119 /* Try to find the prison within our visibility. */ 1120 sx_slock(&allprison_lock); 1121 pr = prison_find_child(td->td_ucred->cr_prison, jid); 1122 sx_sunlock(&allprison_lock); 1123 if (pr == NULL) 1124 return (ENXIO); 1125 prison_hold_locked(pr); 1126 mtx_unlock(&pr->pr_mtx); 1127 1128 /* Do not try to move the iface from and to the same prison. */ 1129 if (pr->pr_vnet == ifp->if_vnet) { 1130 prison_free(pr); 1131 return (EEXIST); 1132 } 1133 1134 /* Make sure the named iface does not exists in the dst. prison/vnet. */ 1135 /* XXX Lock interfaces to avoid races. */ 1136 CURVNET_SET_QUIET(pr->pr_vnet); 1137 difp = ifunit(ifname); 1138 CURVNET_RESTORE(); 1139 if (difp != NULL) { 1140 prison_free(pr); 1141 return (EEXIST); 1142 } 1143 1144 /* Move the interface into the child jail/vnet. */ 1145 if_vmove(ifp, pr->pr_vnet); 1146 1147 /* Report the new if_xname back to the userland. */ 1148 sprintf(ifname, "%s", ifp->if_xname); 1149 1150 prison_free(pr); 1151 return (0); 1152 } 1153 1154 static int 1155 if_vmove_reclaim(struct thread *td, char *ifname, int jid) 1156 { 1157 struct prison *pr; 1158 struct vnet *vnet_dst; 1159 struct ifnet *ifp; 1160 1161 /* Try to find the prison within our visibility. */ 1162 sx_slock(&allprison_lock); 1163 pr = prison_find_child(td->td_ucred->cr_prison, jid); 1164 sx_sunlock(&allprison_lock); 1165 if (pr == NULL) 1166 return (ENXIO); 1167 prison_hold_locked(pr); 1168 mtx_unlock(&pr->pr_mtx); 1169 1170 /* Make sure the named iface exists in the source prison/vnet. */ 1171 CURVNET_SET(pr->pr_vnet); 1172 ifp = ifunit(ifname); /* XXX Lock to avoid races. */ 1173 if (ifp == NULL) { 1174 CURVNET_RESTORE(); 1175 prison_free(pr); 1176 return (ENXIO); 1177 } 1178 1179 /* Do not try to move the iface from and to the same prison. */ 1180 vnet_dst = TD_TO_VNET(td); 1181 if (vnet_dst == ifp->if_vnet) { 1182 CURVNET_RESTORE(); 1183 prison_free(pr); 1184 return (EEXIST); 1185 } 1186 1187 /* Get interface back from child jail/vnet. */ 1188 if_vmove(ifp, vnet_dst); 1189 CURVNET_RESTORE(); 1190 1191 /* Report the new if_xname back to the userland. */ 1192 sprintf(ifname, "%s", ifp->if_xname); 1193 1194 prison_free(pr); 1195 return (0); 1196 } 1197 #endif /* VIMAGE */ 1198 1199 /* 1200 * Add a group to an interface 1201 */ 1202 int 1203 if_addgroup(struct ifnet *ifp, const char *groupname) 1204 { 1205 struct ifg_list *ifgl; 1206 struct ifg_group *ifg = NULL; 1207 struct ifg_member *ifgm; 1208 int new = 0; 1209 1210 if (groupname[0] && groupname[strlen(groupname) - 1] >= '0' && 1211 groupname[strlen(groupname) - 1] <= '9') 1212 return (EINVAL); 1213 1214 IFNET_WLOCK(); 1215 TAILQ_FOREACH(ifgl, &ifp->if_groups, ifgl_next) 1216 if (!strcmp(ifgl->ifgl_group->ifg_group, groupname)) { 1217 IFNET_WUNLOCK(); 1218 return (EEXIST); 1219 } 1220 1221 if ((ifgl = (struct ifg_list *)malloc(sizeof(struct ifg_list), M_TEMP, 1222 M_NOWAIT)) == NULL) { 1223 IFNET_WUNLOCK(); 1224 return (ENOMEM); 1225 } 1226 1227 if ((ifgm = (struct ifg_member *)malloc(sizeof(struct ifg_member), 1228 M_TEMP, M_NOWAIT)) == NULL) { 1229 free(ifgl, M_TEMP); 1230 IFNET_WUNLOCK(); 1231 return (ENOMEM); 1232 } 1233 1234 TAILQ_FOREACH(ifg, &V_ifg_head, ifg_next) 1235 if (!strcmp(ifg->ifg_group, groupname)) 1236 break; 1237 1238 if (ifg == NULL) { 1239 if ((ifg = (struct ifg_group *)malloc(sizeof(struct ifg_group), 1240 M_TEMP, M_NOWAIT)) == NULL) { 1241 free(ifgl, M_TEMP); 1242 free(ifgm, M_TEMP); 1243 IFNET_WUNLOCK(); 1244 return (ENOMEM); 1245 } 1246 strlcpy(ifg->ifg_group, groupname, sizeof(ifg->ifg_group)); 1247 ifg->ifg_refcnt = 0; 1248 TAILQ_INIT(&ifg->ifg_members); 1249 TAILQ_INSERT_TAIL(&V_ifg_head, ifg, ifg_next); 1250 new = 1; 1251 } 1252 1253 ifg->ifg_refcnt++; 1254 ifgl->ifgl_group = ifg; 1255 ifgm->ifgm_ifp = ifp; 1256 1257 IF_ADDR_WLOCK(ifp); 1258 TAILQ_INSERT_TAIL(&ifg->ifg_members, ifgm, ifgm_next); 1259 TAILQ_INSERT_TAIL(&ifp->if_groups, ifgl, ifgl_next); 1260 IF_ADDR_WUNLOCK(ifp); 1261 1262 IFNET_WUNLOCK(); 1263 1264 if (new) 1265 EVENTHANDLER_INVOKE(group_attach_event, ifg); 1266 EVENTHANDLER_INVOKE(group_change_event, groupname); 1267 1268 return (0); 1269 } 1270 1271 /* 1272 * Remove a group from an interface 1273 */ 1274 int 1275 if_delgroup(struct ifnet *ifp, const char *groupname) 1276 { 1277 struct ifg_list *ifgl; 1278 struct ifg_member *ifgm; 1279 1280 IFNET_WLOCK(); 1281 TAILQ_FOREACH(ifgl, &ifp->if_groups, ifgl_next) 1282 if (!strcmp(ifgl->ifgl_group->ifg_group, groupname)) 1283 break; 1284 if (ifgl == NULL) { 1285 IFNET_WUNLOCK(); 1286 return (ENOENT); 1287 } 1288 1289 IF_ADDR_WLOCK(ifp); 1290 TAILQ_REMOVE(&ifp->if_groups, ifgl, ifgl_next); 1291 IF_ADDR_WUNLOCK(ifp); 1292 1293 TAILQ_FOREACH(ifgm, &ifgl->ifgl_group->ifg_members, ifgm_next) 1294 if (ifgm->ifgm_ifp == ifp) 1295 break; 1296 1297 if (ifgm != NULL) { 1298 TAILQ_REMOVE(&ifgl->ifgl_group->ifg_members, ifgm, ifgm_next); 1299 free(ifgm, M_TEMP); 1300 } 1301 1302 if (--ifgl->ifgl_group->ifg_refcnt == 0) { 1303 TAILQ_REMOVE(&V_ifg_head, ifgl->ifgl_group, ifg_next); 1304 IFNET_WUNLOCK(); 1305 EVENTHANDLER_INVOKE(group_detach_event, ifgl->ifgl_group); 1306 free(ifgl->ifgl_group, M_TEMP); 1307 } else 1308 IFNET_WUNLOCK(); 1309 1310 free(ifgl, M_TEMP); 1311 1312 EVENTHANDLER_INVOKE(group_change_event, groupname); 1313 1314 return (0); 1315 } 1316 1317 /* 1318 * Remove an interface from all groups 1319 */ 1320 static void 1321 if_delgroups(struct ifnet *ifp) 1322 { 1323 struct ifg_list *ifgl; 1324 struct ifg_member *ifgm; 1325 char groupname[IFNAMSIZ]; 1326 1327 IFNET_WLOCK(); 1328 while (!TAILQ_EMPTY(&ifp->if_groups)) { 1329 ifgl = TAILQ_FIRST(&ifp->if_groups); 1330 1331 strlcpy(groupname, ifgl->ifgl_group->ifg_group, IFNAMSIZ); 1332 1333 IF_ADDR_WLOCK(ifp); 1334 TAILQ_REMOVE(&ifp->if_groups, ifgl, ifgl_next); 1335 IF_ADDR_WUNLOCK(ifp); 1336 1337 TAILQ_FOREACH(ifgm, &ifgl->ifgl_group->ifg_members, ifgm_next) 1338 if (ifgm->ifgm_ifp == ifp) 1339 break; 1340 1341 if (ifgm != NULL) { 1342 TAILQ_REMOVE(&ifgl->ifgl_group->ifg_members, ifgm, 1343 ifgm_next); 1344 free(ifgm, M_TEMP); 1345 } 1346 1347 if (--ifgl->ifgl_group->ifg_refcnt == 0) { 1348 TAILQ_REMOVE(&V_ifg_head, ifgl->ifgl_group, ifg_next); 1349 IFNET_WUNLOCK(); 1350 EVENTHANDLER_INVOKE(group_detach_event, 1351 ifgl->ifgl_group); 1352 free(ifgl->ifgl_group, M_TEMP); 1353 } else 1354 IFNET_WUNLOCK(); 1355 1356 free(ifgl, M_TEMP); 1357 1358 EVENTHANDLER_INVOKE(group_change_event, groupname); 1359 1360 IFNET_WLOCK(); 1361 } 1362 IFNET_WUNLOCK(); 1363 } 1364 1365 /* 1366 * Stores all groups from an interface in memory pointed 1367 * to by data 1368 */ 1369 static int 1370 if_getgroup(struct ifgroupreq *data, struct ifnet *ifp) 1371 { 1372 int len, error; 1373 struct ifg_list *ifgl; 1374 struct ifg_req ifgrq, *ifgp; 1375 struct ifgroupreq *ifgr = data; 1376 1377 if (ifgr->ifgr_len == 0) { 1378 IF_ADDR_RLOCK(ifp); 1379 TAILQ_FOREACH(ifgl, &ifp->if_groups, ifgl_next) 1380 ifgr->ifgr_len += sizeof(struct ifg_req); 1381 IF_ADDR_RUNLOCK(ifp); 1382 return (0); 1383 } 1384 1385 len = ifgr->ifgr_len; 1386 ifgp = ifgr->ifgr_groups; 1387 /* XXX: wire */ 1388 IF_ADDR_RLOCK(ifp); 1389 TAILQ_FOREACH(ifgl, &ifp->if_groups, ifgl_next) { 1390 if (len < sizeof(ifgrq)) { 1391 IF_ADDR_RUNLOCK(ifp); 1392 return (EINVAL); 1393 } 1394 bzero(&ifgrq, sizeof ifgrq); 1395 strlcpy(ifgrq.ifgrq_group, ifgl->ifgl_group->ifg_group, 1396 sizeof(ifgrq.ifgrq_group)); 1397 if ((error = copyout(&ifgrq, ifgp, sizeof(struct ifg_req)))) { 1398 IF_ADDR_RUNLOCK(ifp); 1399 return (error); 1400 } 1401 len -= sizeof(ifgrq); 1402 ifgp++; 1403 } 1404 IF_ADDR_RUNLOCK(ifp); 1405 1406 return (0); 1407 } 1408 1409 /* 1410 * Stores all members of a group in memory pointed to by data 1411 */ 1412 static int 1413 if_getgroupmembers(struct ifgroupreq *data) 1414 { 1415 struct ifgroupreq *ifgr = data; 1416 struct ifg_group *ifg; 1417 struct ifg_member *ifgm; 1418 struct ifg_req ifgrq, *ifgp; 1419 int len, error; 1420 1421 IFNET_RLOCK(); 1422 TAILQ_FOREACH(ifg, &V_ifg_head, ifg_next) 1423 if (!strcmp(ifg->ifg_group, ifgr->ifgr_name)) 1424 break; 1425 if (ifg == NULL) { 1426 IFNET_RUNLOCK(); 1427 return (ENOENT); 1428 } 1429 1430 if (ifgr->ifgr_len == 0) { 1431 TAILQ_FOREACH(ifgm, &ifg->ifg_members, ifgm_next) 1432 ifgr->ifgr_len += sizeof(ifgrq); 1433 IFNET_RUNLOCK(); 1434 return (0); 1435 } 1436 1437 len = ifgr->ifgr_len; 1438 ifgp = ifgr->ifgr_groups; 1439 TAILQ_FOREACH(ifgm, &ifg->ifg_members, ifgm_next) { 1440 if (len < sizeof(ifgrq)) { 1441 IFNET_RUNLOCK(); 1442 return (EINVAL); 1443 } 1444 bzero(&ifgrq, sizeof ifgrq); 1445 strlcpy(ifgrq.ifgrq_member, ifgm->ifgm_ifp->if_xname, 1446 sizeof(ifgrq.ifgrq_member)); 1447 if ((error = copyout(&ifgrq, ifgp, sizeof(struct ifg_req)))) { 1448 IFNET_RUNLOCK(); 1449 return (error); 1450 } 1451 len -= sizeof(ifgrq); 1452 ifgp++; 1453 } 1454 IFNET_RUNLOCK(); 1455 1456 return (0); 1457 } 1458 1459 /* 1460 * Return counter values from counter(9)s stored in ifnet. 1461 */ 1462 uint64_t 1463 if_get_counter_default(struct ifnet *ifp, ift_counter cnt) 1464 { 1465 1466 KASSERT(cnt < IFCOUNTERS, ("%s: invalid cnt %d", __func__, cnt)); 1467 1468 return (counter_u64_fetch(ifp->if_counters[cnt])); 1469 } 1470 1471 /* 1472 * Increase an ifnet counter. Usually used for counters shared 1473 * between the stack and a driver, but function supports them all. 1474 */ 1475 void 1476 if_inc_counter(struct ifnet *ifp, ift_counter cnt, int64_t inc) 1477 { 1478 1479 KASSERT(cnt < IFCOUNTERS, ("%s: invalid cnt %d", __func__, cnt)); 1480 1481 counter_u64_add(ifp->if_counters[cnt], inc); 1482 } 1483 1484 /* 1485 * Copy data from ifnet to userland API structure if_data. 1486 */ 1487 void 1488 if_data_copy(struct ifnet *ifp, struct if_data *ifd) 1489 { 1490 1491 ifd->ifi_type = ifp->if_type; 1492 ifd->ifi_physical = 0; 1493 ifd->ifi_addrlen = ifp->if_addrlen; 1494 ifd->ifi_hdrlen = ifp->if_hdrlen; 1495 ifd->ifi_link_state = ifp->if_link_state; 1496 ifd->ifi_vhid = 0; 1497 ifd->ifi_datalen = sizeof(struct if_data); 1498 ifd->ifi_mtu = ifp->if_mtu; 1499 ifd->ifi_metric = ifp->if_metric; 1500 ifd->ifi_baudrate = ifp->if_baudrate; 1501 ifd->ifi_hwassist = ifp->if_hwassist; 1502 ifd->ifi_epoch = ifp->if_epoch; 1503 ifd->ifi_lastchange = ifp->if_lastchange; 1504 1505 ifd->ifi_ipackets = ifp->if_get_counter(ifp, IFCOUNTER_IPACKETS); 1506 ifd->ifi_ierrors = ifp->if_get_counter(ifp, IFCOUNTER_IERRORS); 1507 ifd->ifi_opackets = ifp->if_get_counter(ifp, IFCOUNTER_OPACKETS); 1508 ifd->ifi_oerrors = ifp->if_get_counter(ifp, IFCOUNTER_OERRORS); 1509 ifd->ifi_collisions = ifp->if_get_counter(ifp, IFCOUNTER_COLLISIONS); 1510 ifd->ifi_ibytes = ifp->if_get_counter(ifp, IFCOUNTER_IBYTES); 1511 ifd->ifi_obytes = ifp->if_get_counter(ifp, IFCOUNTER_OBYTES); 1512 ifd->ifi_imcasts = ifp->if_get_counter(ifp, IFCOUNTER_IMCASTS); 1513 ifd->ifi_omcasts = ifp->if_get_counter(ifp, IFCOUNTER_OMCASTS); 1514 ifd->ifi_iqdrops = ifp->if_get_counter(ifp, IFCOUNTER_IQDROPS); 1515 ifd->ifi_oqdrops = ifp->if_get_counter(ifp, IFCOUNTER_OQDROPS); 1516 ifd->ifi_noproto = ifp->if_get_counter(ifp, IFCOUNTER_NOPROTO); 1517 } 1518 1519 /* 1520 * Wrapper functions for struct ifnet address list locking macros. These are 1521 * used by kernel modules to avoid encoding programming interface or binary 1522 * interface assumptions that may be violated when kernel-internal locking 1523 * approaches change. 1524 */ 1525 void 1526 if_addr_rlock(struct ifnet *ifp) 1527 { 1528 1529 IF_ADDR_RLOCK(ifp); 1530 } 1531 1532 void 1533 if_addr_runlock(struct ifnet *ifp) 1534 { 1535 1536 IF_ADDR_RUNLOCK(ifp); 1537 } 1538 1539 void 1540 if_maddr_rlock(if_t ifp) 1541 { 1542 1543 IF_ADDR_RLOCK((struct ifnet *)ifp); 1544 } 1545 1546 void 1547 if_maddr_runlock(if_t ifp) 1548 { 1549 1550 IF_ADDR_RUNLOCK((struct ifnet *)ifp); 1551 } 1552 1553 /* 1554 * Initialization, destruction and refcounting functions for ifaddrs. 1555 */ 1556 struct ifaddr * 1557 ifa_alloc(size_t size, int flags) 1558 { 1559 struct ifaddr *ifa; 1560 1561 KASSERT(size >= sizeof(struct ifaddr), 1562 ("%s: invalid size %zu", __func__, size)); 1563 1564 ifa = malloc(size, M_IFADDR, M_ZERO | flags); 1565 if (ifa == NULL) 1566 return (NULL); 1567 1568 if ((ifa->ifa_opackets = counter_u64_alloc(flags)) == NULL) 1569 goto fail; 1570 if ((ifa->ifa_ipackets = counter_u64_alloc(flags)) == NULL) 1571 goto fail; 1572 if ((ifa->ifa_obytes = counter_u64_alloc(flags)) == NULL) 1573 goto fail; 1574 if ((ifa->ifa_ibytes = counter_u64_alloc(flags)) == NULL) 1575 goto fail; 1576 1577 refcount_init(&ifa->ifa_refcnt, 1); 1578 1579 return (ifa); 1580 1581 fail: 1582 /* free(NULL) is okay */ 1583 counter_u64_free(ifa->ifa_opackets); 1584 counter_u64_free(ifa->ifa_ipackets); 1585 counter_u64_free(ifa->ifa_obytes); 1586 counter_u64_free(ifa->ifa_ibytes); 1587 free(ifa, M_IFADDR); 1588 1589 return (NULL); 1590 } 1591 1592 void 1593 ifa_ref(struct ifaddr *ifa) 1594 { 1595 1596 refcount_acquire(&ifa->ifa_refcnt); 1597 } 1598 1599 void 1600 ifa_free(struct ifaddr *ifa) 1601 { 1602 1603 if (refcount_release(&ifa->ifa_refcnt)) { 1604 counter_u64_free(ifa->ifa_opackets); 1605 counter_u64_free(ifa->ifa_ipackets); 1606 counter_u64_free(ifa->ifa_obytes); 1607 counter_u64_free(ifa->ifa_ibytes); 1608 free(ifa, M_IFADDR); 1609 } 1610 } 1611 1612 static int 1613 ifa_maintain_loopback_route(int cmd, const char *otype, struct ifaddr *ifa, 1614 struct sockaddr *ia) 1615 { 1616 int error; 1617 struct rt_addrinfo info; 1618 struct sockaddr_dl null_sdl; 1619 struct ifnet *ifp; 1620 1621 ifp = ifa->ifa_ifp; 1622 1623 bzero(&info, sizeof(info)); 1624 if (cmd != RTM_DELETE) 1625 info.rti_ifp = V_loif; 1626 info.rti_flags = ifa->ifa_flags | RTF_HOST | RTF_STATIC; 1627 info.rti_info[RTAX_DST] = ia; 1628 info.rti_info[RTAX_GATEWAY] = (struct sockaddr *)&null_sdl; 1629 link_init_sdl(ifp, (struct sockaddr *)&null_sdl, ifp->if_type); 1630 1631 error = rtrequest1_fib(cmd, &info, NULL, ifp->if_fib); 1632 1633 if (error != 0) 1634 log(LOG_DEBUG, "%s: %s failed for interface %s: %u\n", 1635 __func__, otype, if_name(ifp), error); 1636 1637 return (error); 1638 } 1639 1640 int 1641 ifa_add_loopback_route(struct ifaddr *ifa, struct sockaddr *ia) 1642 { 1643 1644 return (ifa_maintain_loopback_route(RTM_ADD, "insertion", ifa, ia)); 1645 } 1646 1647 int 1648 ifa_del_loopback_route(struct ifaddr *ifa, struct sockaddr *ia) 1649 { 1650 1651 return (ifa_maintain_loopback_route(RTM_DELETE, "deletion", ifa, ia)); 1652 } 1653 1654 int 1655 ifa_switch_loopback_route(struct ifaddr *ifa, struct sockaddr *ia) 1656 { 1657 1658 return (ifa_maintain_loopback_route(RTM_CHANGE, "switch", ifa, ia)); 1659 } 1660 1661 /* 1662 * XXX: Because sockaddr_dl has deeper structure than the sockaddr 1663 * structs used to represent other address families, it is necessary 1664 * to perform a different comparison. 1665 */ 1666 1667 #define sa_dl_equal(a1, a2) \ 1668 ((((const struct sockaddr_dl *)(a1))->sdl_len == \ 1669 ((const struct sockaddr_dl *)(a2))->sdl_len) && \ 1670 (bcmp(CLLADDR((const struct sockaddr_dl *)(a1)), \ 1671 CLLADDR((const struct sockaddr_dl *)(a2)), \ 1672 ((const struct sockaddr_dl *)(a1))->sdl_alen) == 0)) 1673 1674 /* 1675 * Locate an interface based on a complete address. 1676 */ 1677 /*ARGSUSED*/ 1678 static struct ifaddr * 1679 ifa_ifwithaddr_internal(const struct sockaddr *addr, int getref) 1680 { 1681 struct ifnet *ifp; 1682 struct ifaddr *ifa; 1683 1684 IFNET_RLOCK_NOSLEEP(); 1685 TAILQ_FOREACH(ifp, &V_ifnet, if_link) { 1686 IF_ADDR_RLOCK(ifp); 1687 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 1688 if (ifa->ifa_addr->sa_family != addr->sa_family) 1689 continue; 1690 if (sa_equal(addr, ifa->ifa_addr)) { 1691 if (getref) 1692 ifa_ref(ifa); 1693 IF_ADDR_RUNLOCK(ifp); 1694 goto done; 1695 } 1696 /* IP6 doesn't have broadcast */ 1697 if ((ifp->if_flags & IFF_BROADCAST) && 1698 ifa->ifa_broadaddr && 1699 ifa->ifa_broadaddr->sa_len != 0 && 1700 sa_equal(ifa->ifa_broadaddr, addr)) { 1701 if (getref) 1702 ifa_ref(ifa); 1703 IF_ADDR_RUNLOCK(ifp); 1704 goto done; 1705 } 1706 } 1707 IF_ADDR_RUNLOCK(ifp); 1708 } 1709 ifa = NULL; 1710 done: 1711 IFNET_RUNLOCK_NOSLEEP(); 1712 return (ifa); 1713 } 1714 1715 struct ifaddr * 1716 ifa_ifwithaddr(const struct sockaddr *addr) 1717 { 1718 1719 return (ifa_ifwithaddr_internal(addr, 1)); 1720 } 1721 1722 int 1723 ifa_ifwithaddr_check(const struct sockaddr *addr) 1724 { 1725 1726 return (ifa_ifwithaddr_internal(addr, 0) != NULL); 1727 } 1728 1729 /* 1730 * Locate an interface based on the broadcast address. 1731 */ 1732 /* ARGSUSED */ 1733 struct ifaddr * 1734 ifa_ifwithbroadaddr(const struct sockaddr *addr, int fibnum) 1735 { 1736 struct ifnet *ifp; 1737 struct ifaddr *ifa; 1738 1739 IFNET_RLOCK_NOSLEEP(); 1740 TAILQ_FOREACH(ifp, &V_ifnet, if_link) { 1741 if ((fibnum != RT_ALL_FIBS) && (ifp->if_fib != fibnum)) 1742 continue; 1743 IF_ADDR_RLOCK(ifp); 1744 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 1745 if (ifa->ifa_addr->sa_family != addr->sa_family) 1746 continue; 1747 if ((ifp->if_flags & IFF_BROADCAST) && 1748 ifa->ifa_broadaddr && 1749 ifa->ifa_broadaddr->sa_len != 0 && 1750 sa_equal(ifa->ifa_broadaddr, addr)) { 1751 ifa_ref(ifa); 1752 IF_ADDR_RUNLOCK(ifp); 1753 goto done; 1754 } 1755 } 1756 IF_ADDR_RUNLOCK(ifp); 1757 } 1758 ifa = NULL; 1759 done: 1760 IFNET_RUNLOCK_NOSLEEP(); 1761 return (ifa); 1762 } 1763 1764 /* 1765 * Locate the point to point interface with a given destination address. 1766 */ 1767 /*ARGSUSED*/ 1768 struct ifaddr * 1769 ifa_ifwithdstaddr(const struct sockaddr *addr, int fibnum) 1770 { 1771 struct ifnet *ifp; 1772 struct ifaddr *ifa; 1773 1774 IFNET_RLOCK_NOSLEEP(); 1775 TAILQ_FOREACH(ifp, &V_ifnet, if_link) { 1776 if ((ifp->if_flags & IFF_POINTOPOINT) == 0) 1777 continue; 1778 if ((fibnum != RT_ALL_FIBS) && (ifp->if_fib != fibnum)) 1779 continue; 1780 IF_ADDR_RLOCK(ifp); 1781 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 1782 if (ifa->ifa_addr->sa_family != addr->sa_family) 1783 continue; 1784 if (ifa->ifa_dstaddr != NULL && 1785 sa_equal(addr, ifa->ifa_dstaddr)) { 1786 ifa_ref(ifa); 1787 IF_ADDR_RUNLOCK(ifp); 1788 goto done; 1789 } 1790 } 1791 IF_ADDR_RUNLOCK(ifp); 1792 } 1793 ifa = NULL; 1794 done: 1795 IFNET_RUNLOCK_NOSLEEP(); 1796 return (ifa); 1797 } 1798 1799 /* 1800 * Find an interface on a specific network. If many, choice 1801 * is most specific found. 1802 */ 1803 struct ifaddr * 1804 ifa_ifwithnet(const struct sockaddr *addr, int ignore_ptp, int fibnum) 1805 { 1806 struct ifnet *ifp; 1807 struct ifaddr *ifa; 1808 struct ifaddr *ifa_maybe = NULL; 1809 u_int af = addr->sa_family; 1810 const char *addr_data = addr->sa_data, *cplim; 1811 1812 /* 1813 * AF_LINK addresses can be looked up directly by their index number, 1814 * so do that if we can. 1815 */ 1816 if (af == AF_LINK) { 1817 const struct sockaddr_dl *sdl = (const struct sockaddr_dl *)addr; 1818 if (sdl->sdl_index && sdl->sdl_index <= V_if_index) 1819 return (ifaddr_byindex(sdl->sdl_index)); 1820 } 1821 1822 /* 1823 * Scan though each interface, looking for ones that have addresses 1824 * in this address family and the requested fib. Maintain a reference 1825 * on ifa_maybe once we find one, as we release the IF_ADDR_RLOCK() that 1826 * kept it stable when we move onto the next interface. 1827 */ 1828 IFNET_RLOCK_NOSLEEP(); 1829 TAILQ_FOREACH(ifp, &V_ifnet, if_link) { 1830 if ((fibnum != RT_ALL_FIBS) && (ifp->if_fib != fibnum)) 1831 continue; 1832 IF_ADDR_RLOCK(ifp); 1833 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 1834 const char *cp, *cp2, *cp3; 1835 1836 if (ifa->ifa_addr->sa_family != af) 1837 next: continue; 1838 if (af == AF_INET && 1839 ifp->if_flags & IFF_POINTOPOINT && !ignore_ptp) { 1840 /* 1841 * This is a bit broken as it doesn't 1842 * take into account that the remote end may 1843 * be a single node in the network we are 1844 * looking for. 1845 * The trouble is that we don't know the 1846 * netmask for the remote end. 1847 */ 1848 if (ifa->ifa_dstaddr != NULL && 1849 sa_equal(addr, ifa->ifa_dstaddr)) { 1850 ifa_ref(ifa); 1851 IF_ADDR_RUNLOCK(ifp); 1852 goto done; 1853 } 1854 } else { 1855 /* 1856 * Scan all the bits in the ifa's address. 1857 * If a bit dissagrees with what we are 1858 * looking for, mask it with the netmask 1859 * to see if it really matters. 1860 * (A byte at a time) 1861 */ 1862 if (ifa->ifa_netmask == 0) 1863 continue; 1864 cp = addr_data; 1865 cp2 = ifa->ifa_addr->sa_data; 1866 cp3 = ifa->ifa_netmask->sa_data; 1867 cplim = ifa->ifa_netmask->sa_len 1868 + (char *)ifa->ifa_netmask; 1869 while (cp3 < cplim) 1870 if ((*cp++ ^ *cp2++) & *cp3++) 1871 goto next; /* next address! */ 1872 /* 1873 * If the netmask of what we just found 1874 * is more specific than what we had before 1875 * (if we had one), or if the virtual status 1876 * of new prefix is better than of the old one, 1877 * then remember the new one before continuing 1878 * to search for an even better one. 1879 */ 1880 if (ifa_maybe == NULL || 1881 ifa_preferred(ifa_maybe, ifa) || 1882 rn_refines((caddr_t)ifa->ifa_netmask, 1883 (caddr_t)ifa_maybe->ifa_netmask)) { 1884 if (ifa_maybe != NULL) 1885 ifa_free(ifa_maybe); 1886 ifa_maybe = ifa; 1887 ifa_ref(ifa_maybe); 1888 } 1889 } 1890 } 1891 IF_ADDR_RUNLOCK(ifp); 1892 } 1893 ifa = ifa_maybe; 1894 ifa_maybe = NULL; 1895 done: 1896 IFNET_RUNLOCK_NOSLEEP(); 1897 if (ifa_maybe != NULL) 1898 ifa_free(ifa_maybe); 1899 return (ifa); 1900 } 1901 1902 /* 1903 * Find an interface address specific to an interface best matching 1904 * a given address. 1905 */ 1906 struct ifaddr * 1907 ifaof_ifpforaddr(const struct sockaddr *addr, struct ifnet *ifp) 1908 { 1909 struct ifaddr *ifa; 1910 const char *cp, *cp2, *cp3; 1911 char *cplim; 1912 struct ifaddr *ifa_maybe = NULL; 1913 u_int af = addr->sa_family; 1914 1915 if (af >= AF_MAX) 1916 return (NULL); 1917 IF_ADDR_RLOCK(ifp); 1918 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 1919 if (ifa->ifa_addr->sa_family != af) 1920 continue; 1921 if (ifa_maybe == NULL) 1922 ifa_maybe = ifa; 1923 if (ifa->ifa_netmask == 0) { 1924 if (sa_equal(addr, ifa->ifa_addr) || 1925 (ifa->ifa_dstaddr && 1926 sa_equal(addr, ifa->ifa_dstaddr))) 1927 goto done; 1928 continue; 1929 } 1930 if (ifp->if_flags & IFF_POINTOPOINT) { 1931 if (sa_equal(addr, ifa->ifa_dstaddr)) 1932 goto done; 1933 } else { 1934 cp = addr->sa_data; 1935 cp2 = ifa->ifa_addr->sa_data; 1936 cp3 = ifa->ifa_netmask->sa_data; 1937 cplim = ifa->ifa_netmask->sa_len + (char *)ifa->ifa_netmask; 1938 for (; cp3 < cplim; cp3++) 1939 if ((*cp++ ^ *cp2++) & *cp3) 1940 break; 1941 if (cp3 == cplim) 1942 goto done; 1943 } 1944 } 1945 ifa = ifa_maybe; 1946 done: 1947 if (ifa != NULL) 1948 ifa_ref(ifa); 1949 IF_ADDR_RUNLOCK(ifp); 1950 return (ifa); 1951 } 1952 1953 /* 1954 * See whether new ifa is better than current one: 1955 * 1) A non-virtual one is preferred over virtual. 1956 * 2) A virtual in master state preferred over any other state. 1957 * 1958 * Used in several address selecting functions. 1959 */ 1960 int 1961 ifa_preferred(struct ifaddr *cur, struct ifaddr *next) 1962 { 1963 1964 return (cur->ifa_carp && (!next->ifa_carp || 1965 ((*carp_master_p)(next) && !(*carp_master_p)(cur)))); 1966 } 1967 1968 #include <net/if_llatbl.h> 1969 1970 /* 1971 * Default action when installing a route with a Link Level gateway. 1972 * Lookup an appropriate real ifa to point to. 1973 * This should be moved to /sys/net/link.c eventually. 1974 */ 1975 static void 1976 link_rtrequest(int cmd, struct rtentry *rt, struct rt_addrinfo *info) 1977 { 1978 struct ifaddr *ifa, *oifa; 1979 struct sockaddr *dst; 1980 struct ifnet *ifp; 1981 1982 if (cmd != RTM_ADD || ((ifa = rt->rt_ifa) == NULL) || 1983 ((ifp = ifa->ifa_ifp) == NULL) || ((dst = rt_key(rt)) == NULL)) 1984 return; 1985 ifa = ifaof_ifpforaddr(dst, ifp); 1986 if (ifa) { 1987 oifa = rt->rt_ifa; 1988 rt->rt_ifa = ifa; 1989 ifa_free(oifa); 1990 if (ifa->ifa_rtrequest && ifa->ifa_rtrequest != link_rtrequest) 1991 ifa->ifa_rtrequest(cmd, rt, info); 1992 } 1993 } 1994 1995 struct sockaddr_dl * 1996 link_alloc_sdl(size_t size, int flags) 1997 { 1998 1999 return (malloc(size, M_TEMP, flags)); 2000 } 2001 2002 void 2003 link_free_sdl(struct sockaddr *sa) 2004 { 2005 free(sa, M_TEMP); 2006 } 2007 2008 /* 2009 * Fills in given sdl with interface basic info. 2010 * Returns pointer to filled sdl. 2011 */ 2012 struct sockaddr_dl * 2013 link_init_sdl(struct ifnet *ifp, struct sockaddr *paddr, u_char iftype) 2014 { 2015 struct sockaddr_dl *sdl; 2016 2017 sdl = (struct sockaddr_dl *)paddr; 2018 memset(sdl, 0, sizeof(struct sockaddr_dl)); 2019 sdl->sdl_len = sizeof(struct sockaddr_dl); 2020 sdl->sdl_family = AF_LINK; 2021 sdl->sdl_index = ifp->if_index; 2022 sdl->sdl_type = iftype; 2023 2024 return (sdl); 2025 } 2026 2027 /* 2028 * Mark an interface down and notify protocols of 2029 * the transition. 2030 */ 2031 static void 2032 if_unroute(struct ifnet *ifp, int flag, int fam) 2033 { 2034 struct ifaddr *ifa; 2035 2036 KASSERT(flag == IFF_UP, ("if_unroute: flag != IFF_UP")); 2037 2038 ifp->if_flags &= ~flag; 2039 getmicrotime(&ifp->if_lastchange); 2040 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) 2041 if (fam == PF_UNSPEC || (fam == ifa->ifa_addr->sa_family)) 2042 pfctlinput(PRC_IFDOWN, ifa->ifa_addr); 2043 ifp->if_qflush(ifp); 2044 2045 if (ifp->if_carp) 2046 (*carp_linkstate_p)(ifp); 2047 rt_ifmsg(ifp); 2048 } 2049 2050 /* 2051 * Mark an interface up and notify protocols of 2052 * the transition. 2053 */ 2054 static void 2055 if_route(struct ifnet *ifp, int flag, int fam) 2056 { 2057 struct ifaddr *ifa; 2058 2059 KASSERT(flag == IFF_UP, ("if_route: flag != IFF_UP")); 2060 2061 ifp->if_flags |= flag; 2062 getmicrotime(&ifp->if_lastchange); 2063 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) 2064 if (fam == PF_UNSPEC || (fam == ifa->ifa_addr->sa_family)) 2065 pfctlinput(PRC_IFUP, ifa->ifa_addr); 2066 if (ifp->if_carp) 2067 (*carp_linkstate_p)(ifp); 2068 rt_ifmsg(ifp); 2069 #ifdef INET6 2070 in6_if_up(ifp); 2071 #endif 2072 } 2073 2074 void (*vlan_link_state_p)(struct ifnet *); /* XXX: private from if_vlan */ 2075 void (*vlan_trunk_cap_p)(struct ifnet *); /* XXX: private from if_vlan */ 2076 struct ifnet *(*vlan_trunkdev_p)(struct ifnet *); 2077 struct ifnet *(*vlan_devat_p)(struct ifnet *, uint16_t); 2078 int (*vlan_tag_p)(struct ifnet *, uint16_t *); 2079 int (*vlan_setcookie_p)(struct ifnet *, void *); 2080 void *(*vlan_cookie_p)(struct ifnet *); 2081 2082 /* 2083 * Handle a change in the interface link state. To avoid LORs 2084 * between driver lock and upper layer locks, as well as possible 2085 * recursions, we post event to taskqueue, and all job 2086 * is done in static do_link_state_change(). 2087 */ 2088 void 2089 if_link_state_change(struct ifnet *ifp, int link_state) 2090 { 2091 /* Return if state hasn't changed. */ 2092 if (ifp->if_link_state == link_state) 2093 return; 2094 2095 ifp->if_link_state = link_state; 2096 2097 taskqueue_enqueue(taskqueue_swi, &ifp->if_linktask); 2098 } 2099 2100 static void 2101 do_link_state_change(void *arg, int pending) 2102 { 2103 struct ifnet *ifp = (struct ifnet *)arg; 2104 int link_state = ifp->if_link_state; 2105 CURVNET_SET(ifp->if_vnet); 2106 2107 /* Notify that the link state has changed. */ 2108 rt_ifmsg(ifp); 2109 if (ifp->if_vlantrunk != NULL) 2110 (*vlan_link_state_p)(ifp); 2111 2112 if ((ifp->if_type == IFT_ETHER || ifp->if_type == IFT_L2VLAN) && 2113 ifp->if_l2com != NULL) 2114 (*ng_ether_link_state_p)(ifp, link_state); 2115 if (ifp->if_carp) 2116 (*carp_linkstate_p)(ifp); 2117 if (ifp->if_bridge) 2118 (*bridge_linkstate_p)(ifp); 2119 if (ifp->if_lagg) 2120 (*lagg_linkstate_p)(ifp, link_state); 2121 2122 if (IS_DEFAULT_VNET(curvnet)) 2123 devctl_notify("IFNET", ifp->if_xname, 2124 (link_state == LINK_STATE_UP) ? "LINK_UP" : "LINK_DOWN", 2125 NULL); 2126 if (pending > 1) 2127 if_printf(ifp, "%d link states coalesced\n", pending); 2128 if (log_link_state_change) 2129 log(LOG_NOTICE, "%s: link state changed to %s\n", ifp->if_xname, 2130 (link_state == LINK_STATE_UP) ? "UP" : "DOWN" ); 2131 EVENTHANDLER_INVOKE(ifnet_link_event, ifp, ifp->if_link_state); 2132 CURVNET_RESTORE(); 2133 } 2134 2135 /* 2136 * Mark an interface down and notify protocols of 2137 * the transition. 2138 */ 2139 void 2140 if_down(struct ifnet *ifp) 2141 { 2142 2143 if_unroute(ifp, IFF_UP, AF_UNSPEC); 2144 } 2145 2146 /* 2147 * Mark an interface up and notify protocols of 2148 * the transition. 2149 */ 2150 void 2151 if_up(struct ifnet *ifp) 2152 { 2153 2154 if_route(ifp, IFF_UP, AF_UNSPEC); 2155 } 2156 2157 /* 2158 * Flush an interface queue. 2159 */ 2160 void 2161 if_qflush(struct ifnet *ifp) 2162 { 2163 struct mbuf *m, *n; 2164 struct ifaltq *ifq; 2165 2166 ifq = &ifp->if_snd; 2167 IFQ_LOCK(ifq); 2168 #ifdef ALTQ 2169 if (ALTQ_IS_ENABLED(ifq)) 2170 ALTQ_PURGE(ifq); 2171 #endif 2172 n = ifq->ifq_head; 2173 while ((m = n) != NULL) { 2174 n = m->m_nextpkt; 2175 m_freem(m); 2176 } 2177 ifq->ifq_head = 0; 2178 ifq->ifq_tail = 0; 2179 ifq->ifq_len = 0; 2180 IFQ_UNLOCK(ifq); 2181 } 2182 2183 /* 2184 * Map interface name to interface structure pointer, with or without 2185 * returning a reference. 2186 */ 2187 struct ifnet * 2188 ifunit_ref(const char *name) 2189 { 2190 struct ifnet *ifp; 2191 2192 IFNET_RLOCK_NOSLEEP(); 2193 TAILQ_FOREACH(ifp, &V_ifnet, if_link) { 2194 if (strncmp(name, ifp->if_xname, IFNAMSIZ) == 0 && 2195 !(ifp->if_flags & IFF_DYING)) 2196 break; 2197 } 2198 if (ifp != NULL) 2199 if_ref(ifp); 2200 IFNET_RUNLOCK_NOSLEEP(); 2201 return (ifp); 2202 } 2203 2204 struct ifnet * 2205 ifunit(const char *name) 2206 { 2207 struct ifnet *ifp; 2208 2209 IFNET_RLOCK_NOSLEEP(); 2210 TAILQ_FOREACH(ifp, &V_ifnet, if_link) { 2211 if (strncmp(name, ifp->if_xname, IFNAMSIZ) == 0) 2212 break; 2213 } 2214 IFNET_RUNLOCK_NOSLEEP(); 2215 return (ifp); 2216 } 2217 2218 /* 2219 * Hardware specific interface ioctls. 2220 */ 2221 static int 2222 ifhwioctl(u_long cmd, struct ifnet *ifp, caddr_t data, struct thread *td) 2223 { 2224 struct ifreq *ifr; 2225 int error = 0; 2226 int new_flags, temp_flags; 2227 size_t namelen, onamelen; 2228 size_t descrlen; 2229 char *descrbuf, *odescrbuf; 2230 char new_name[IFNAMSIZ]; 2231 struct ifaddr *ifa; 2232 struct sockaddr_dl *sdl; 2233 2234 ifr = (struct ifreq *)data; 2235 switch (cmd) { 2236 case SIOCGIFINDEX: 2237 ifr->ifr_index = ifp->if_index; 2238 break; 2239 2240 case SIOCGIFFLAGS: 2241 temp_flags = ifp->if_flags | ifp->if_drv_flags; 2242 ifr->ifr_flags = temp_flags & 0xffff; 2243 ifr->ifr_flagshigh = temp_flags >> 16; 2244 break; 2245 2246 case SIOCGIFCAP: 2247 ifr->ifr_reqcap = ifp->if_capabilities; 2248 ifr->ifr_curcap = ifp->if_capenable; 2249 break; 2250 2251 #ifdef MAC 2252 case SIOCGIFMAC: 2253 error = mac_ifnet_ioctl_get(td->td_ucred, ifr, ifp); 2254 break; 2255 #endif 2256 2257 case SIOCGIFMETRIC: 2258 ifr->ifr_metric = ifp->if_metric; 2259 break; 2260 2261 case SIOCGIFMTU: 2262 ifr->ifr_mtu = ifp->if_mtu; 2263 break; 2264 2265 case SIOCGIFPHYS: 2266 /* XXXGL: did this ever worked? */ 2267 ifr->ifr_phys = 0; 2268 break; 2269 2270 case SIOCGIFDESCR: 2271 error = 0; 2272 sx_slock(&ifdescr_sx); 2273 if (ifp->if_description == NULL) 2274 error = ENOMSG; 2275 else { 2276 /* space for terminating nul */ 2277 descrlen = strlen(ifp->if_description) + 1; 2278 if (ifr->ifr_buffer.length < descrlen) 2279 ifr->ifr_buffer.buffer = NULL; 2280 else 2281 error = copyout(ifp->if_description, 2282 ifr->ifr_buffer.buffer, descrlen); 2283 ifr->ifr_buffer.length = descrlen; 2284 } 2285 sx_sunlock(&ifdescr_sx); 2286 break; 2287 2288 case SIOCSIFDESCR: 2289 error = priv_check(td, PRIV_NET_SETIFDESCR); 2290 if (error) 2291 return (error); 2292 2293 /* 2294 * Copy only (length-1) bytes to make sure that 2295 * if_description is always nul terminated. The 2296 * length parameter is supposed to count the 2297 * terminating nul in. 2298 */ 2299 if (ifr->ifr_buffer.length > ifdescr_maxlen) 2300 return (ENAMETOOLONG); 2301 else if (ifr->ifr_buffer.length == 0) 2302 descrbuf = NULL; 2303 else { 2304 descrbuf = malloc(ifr->ifr_buffer.length, M_IFDESCR, 2305 M_WAITOK | M_ZERO); 2306 error = copyin(ifr->ifr_buffer.buffer, descrbuf, 2307 ifr->ifr_buffer.length - 1); 2308 if (error) { 2309 free(descrbuf, M_IFDESCR); 2310 break; 2311 } 2312 } 2313 2314 sx_xlock(&ifdescr_sx); 2315 odescrbuf = ifp->if_description; 2316 ifp->if_description = descrbuf; 2317 sx_xunlock(&ifdescr_sx); 2318 2319 getmicrotime(&ifp->if_lastchange); 2320 free(odescrbuf, M_IFDESCR); 2321 break; 2322 2323 case SIOCGIFFIB: 2324 ifr->ifr_fib = ifp->if_fib; 2325 break; 2326 2327 case SIOCSIFFIB: 2328 error = priv_check(td, PRIV_NET_SETIFFIB); 2329 if (error) 2330 return (error); 2331 if (ifr->ifr_fib >= rt_numfibs) 2332 return (EINVAL); 2333 2334 ifp->if_fib = ifr->ifr_fib; 2335 break; 2336 2337 case SIOCSIFFLAGS: 2338 error = priv_check(td, PRIV_NET_SETIFFLAGS); 2339 if (error) 2340 return (error); 2341 /* 2342 * Currently, no driver owned flags pass the IFF_CANTCHANGE 2343 * check, so we don't need special handling here yet. 2344 */ 2345 new_flags = (ifr->ifr_flags & 0xffff) | 2346 (ifr->ifr_flagshigh << 16); 2347 if (ifp->if_flags & IFF_UP && 2348 (new_flags & IFF_UP) == 0) { 2349 if_down(ifp); 2350 } else if (new_flags & IFF_UP && 2351 (ifp->if_flags & IFF_UP) == 0) { 2352 if_up(ifp); 2353 } 2354 /* See if permanently promiscuous mode bit is about to flip */ 2355 if ((ifp->if_flags ^ new_flags) & IFF_PPROMISC) { 2356 if (new_flags & IFF_PPROMISC) 2357 ifp->if_flags |= IFF_PROMISC; 2358 else if (ifp->if_pcount == 0) 2359 ifp->if_flags &= ~IFF_PROMISC; 2360 if (log_promisc_mode_change) 2361 log(LOG_INFO, "%s: permanently promiscuous mode %s\n", 2362 ifp->if_xname, 2363 ((new_flags & IFF_PPROMISC) ? 2364 "enabled" : "disabled")); 2365 } 2366 ifp->if_flags = (ifp->if_flags & IFF_CANTCHANGE) | 2367 (new_flags &~ IFF_CANTCHANGE); 2368 if (ifp->if_ioctl) { 2369 (void) (*ifp->if_ioctl)(ifp, cmd, data); 2370 } 2371 getmicrotime(&ifp->if_lastchange); 2372 break; 2373 2374 case SIOCSIFCAP: 2375 error = priv_check(td, PRIV_NET_SETIFCAP); 2376 if (error) 2377 return (error); 2378 if (ifp->if_ioctl == NULL) 2379 return (EOPNOTSUPP); 2380 if (ifr->ifr_reqcap & ~ifp->if_capabilities) 2381 return (EINVAL); 2382 error = (*ifp->if_ioctl)(ifp, cmd, data); 2383 if (error == 0) 2384 getmicrotime(&ifp->if_lastchange); 2385 break; 2386 2387 #ifdef MAC 2388 case SIOCSIFMAC: 2389 error = mac_ifnet_ioctl_set(td->td_ucred, ifr, ifp); 2390 break; 2391 #endif 2392 2393 case SIOCSIFNAME: 2394 error = priv_check(td, PRIV_NET_SETIFNAME); 2395 if (error) 2396 return (error); 2397 error = copyinstr(ifr->ifr_data, new_name, IFNAMSIZ, NULL); 2398 if (error != 0) 2399 return (error); 2400 if (new_name[0] == '\0') 2401 return (EINVAL); 2402 if (new_name[IFNAMSIZ-1] != '\0') { 2403 new_name[IFNAMSIZ-1] = '\0'; 2404 if (strlen(new_name) == IFNAMSIZ-1) 2405 return (EINVAL); 2406 } 2407 if (ifunit(new_name) != NULL) 2408 return (EEXIST); 2409 2410 /* 2411 * XXX: Locking. Nothing else seems to lock if_flags, 2412 * and there are numerous other races with the 2413 * ifunit() checks not being atomic with namespace 2414 * changes (renames, vmoves, if_attach, etc). 2415 */ 2416 ifp->if_flags |= IFF_RENAMING; 2417 2418 /* Announce the departure of the interface. */ 2419 rt_ifannouncemsg(ifp, IFAN_DEPARTURE); 2420 EVENTHANDLER_INVOKE(ifnet_departure_event, ifp); 2421 2422 log(LOG_INFO, "%s: changing name to '%s'\n", 2423 ifp->if_xname, new_name); 2424 2425 IF_ADDR_WLOCK(ifp); 2426 strlcpy(ifp->if_xname, new_name, sizeof(ifp->if_xname)); 2427 ifa = ifp->if_addr; 2428 sdl = (struct sockaddr_dl *)ifa->ifa_addr; 2429 namelen = strlen(new_name); 2430 onamelen = sdl->sdl_nlen; 2431 /* 2432 * Move the address if needed. This is safe because we 2433 * allocate space for a name of length IFNAMSIZ when we 2434 * create this in if_attach(). 2435 */ 2436 if (namelen != onamelen) { 2437 bcopy(sdl->sdl_data + onamelen, 2438 sdl->sdl_data + namelen, sdl->sdl_alen); 2439 } 2440 bcopy(new_name, sdl->sdl_data, namelen); 2441 sdl->sdl_nlen = namelen; 2442 sdl = (struct sockaddr_dl *)ifa->ifa_netmask; 2443 bzero(sdl->sdl_data, onamelen); 2444 while (namelen != 0) 2445 sdl->sdl_data[--namelen] = 0xff; 2446 IF_ADDR_WUNLOCK(ifp); 2447 2448 EVENTHANDLER_INVOKE(ifnet_arrival_event, ifp); 2449 /* Announce the return of the interface. */ 2450 rt_ifannouncemsg(ifp, IFAN_ARRIVAL); 2451 2452 ifp->if_flags &= ~IFF_RENAMING; 2453 break; 2454 2455 #ifdef VIMAGE 2456 case SIOCSIFVNET: 2457 error = priv_check(td, PRIV_NET_SETIFVNET); 2458 if (error) 2459 return (error); 2460 error = if_vmove_loan(td, ifp, ifr->ifr_name, ifr->ifr_jid); 2461 break; 2462 #endif 2463 2464 case SIOCSIFMETRIC: 2465 error = priv_check(td, PRIV_NET_SETIFMETRIC); 2466 if (error) 2467 return (error); 2468 ifp->if_metric = ifr->ifr_metric; 2469 getmicrotime(&ifp->if_lastchange); 2470 break; 2471 2472 case SIOCSIFPHYS: 2473 error = priv_check(td, PRIV_NET_SETIFPHYS); 2474 if (error) 2475 return (error); 2476 if (ifp->if_ioctl == NULL) 2477 return (EOPNOTSUPP); 2478 error = (*ifp->if_ioctl)(ifp, cmd, data); 2479 if (error == 0) 2480 getmicrotime(&ifp->if_lastchange); 2481 break; 2482 2483 case SIOCSIFMTU: 2484 { 2485 u_long oldmtu = ifp->if_mtu; 2486 2487 error = priv_check(td, PRIV_NET_SETIFMTU); 2488 if (error) 2489 return (error); 2490 if (ifr->ifr_mtu < IF_MINMTU || ifr->ifr_mtu > IF_MAXMTU) 2491 return (EINVAL); 2492 if (ifp->if_ioctl == NULL) 2493 return (EOPNOTSUPP); 2494 error = (*ifp->if_ioctl)(ifp, cmd, data); 2495 if (error == 0) { 2496 getmicrotime(&ifp->if_lastchange); 2497 rt_ifmsg(ifp); 2498 } 2499 /* 2500 * If the link MTU changed, do network layer specific procedure. 2501 */ 2502 if (ifp->if_mtu != oldmtu) { 2503 #ifdef INET6 2504 nd6_setmtu(ifp); 2505 #endif 2506 rt_updatemtu(ifp); 2507 } 2508 break; 2509 } 2510 2511 case SIOCADDMULTI: 2512 case SIOCDELMULTI: 2513 if (cmd == SIOCADDMULTI) 2514 error = priv_check(td, PRIV_NET_ADDMULTI); 2515 else 2516 error = priv_check(td, PRIV_NET_DELMULTI); 2517 if (error) 2518 return (error); 2519 2520 /* Don't allow group membership on non-multicast interfaces. */ 2521 if ((ifp->if_flags & IFF_MULTICAST) == 0) 2522 return (EOPNOTSUPP); 2523 2524 /* Don't let users screw up protocols' entries. */ 2525 if (ifr->ifr_addr.sa_family != AF_LINK) 2526 return (EINVAL); 2527 2528 if (cmd == SIOCADDMULTI) { 2529 struct ifmultiaddr *ifma; 2530 2531 /* 2532 * Userland is only permitted to join groups once 2533 * via the if_addmulti() KPI, because it cannot hold 2534 * struct ifmultiaddr * between calls. It may also 2535 * lose a race while we check if the membership 2536 * already exists. 2537 */ 2538 IF_ADDR_RLOCK(ifp); 2539 ifma = if_findmulti(ifp, &ifr->ifr_addr); 2540 IF_ADDR_RUNLOCK(ifp); 2541 if (ifma != NULL) 2542 error = EADDRINUSE; 2543 else 2544 error = if_addmulti(ifp, &ifr->ifr_addr, &ifma); 2545 } else { 2546 error = if_delmulti(ifp, &ifr->ifr_addr); 2547 } 2548 if (error == 0) 2549 getmicrotime(&ifp->if_lastchange); 2550 break; 2551 2552 case SIOCSIFPHYADDR: 2553 case SIOCDIFPHYADDR: 2554 #ifdef INET6 2555 case SIOCSIFPHYADDR_IN6: 2556 #endif 2557 case SIOCSIFMEDIA: 2558 case SIOCSIFGENERIC: 2559 error = priv_check(td, PRIV_NET_HWIOCTL); 2560 if (error) 2561 return (error); 2562 if (ifp->if_ioctl == NULL) 2563 return (EOPNOTSUPP); 2564 error = (*ifp->if_ioctl)(ifp, cmd, data); 2565 if (error == 0) 2566 getmicrotime(&ifp->if_lastchange); 2567 break; 2568 2569 case SIOCGIFSTATUS: 2570 case SIOCGIFPSRCADDR: 2571 case SIOCGIFPDSTADDR: 2572 case SIOCGIFMEDIA: 2573 case SIOCGIFXMEDIA: 2574 case SIOCGIFGENERIC: 2575 if (ifp->if_ioctl == NULL) 2576 return (EOPNOTSUPP); 2577 error = (*ifp->if_ioctl)(ifp, cmd, data); 2578 break; 2579 2580 case SIOCSIFLLADDR: 2581 error = priv_check(td, PRIV_NET_SETLLADDR); 2582 if (error) 2583 return (error); 2584 error = if_setlladdr(ifp, 2585 ifr->ifr_addr.sa_data, ifr->ifr_addr.sa_len); 2586 break; 2587 2588 case SIOCAIFGROUP: 2589 { 2590 struct ifgroupreq *ifgr = (struct ifgroupreq *)ifr; 2591 2592 error = priv_check(td, PRIV_NET_ADDIFGROUP); 2593 if (error) 2594 return (error); 2595 if ((error = if_addgroup(ifp, ifgr->ifgr_group))) 2596 return (error); 2597 break; 2598 } 2599 2600 case SIOCGIFGROUP: 2601 if ((error = if_getgroup((struct ifgroupreq *)ifr, ifp))) 2602 return (error); 2603 break; 2604 2605 case SIOCDIFGROUP: 2606 { 2607 struct ifgroupreq *ifgr = (struct ifgroupreq *)ifr; 2608 2609 error = priv_check(td, PRIV_NET_DELIFGROUP); 2610 if (error) 2611 return (error); 2612 if ((error = if_delgroup(ifp, ifgr->ifgr_group))) 2613 return (error); 2614 break; 2615 } 2616 2617 default: 2618 error = ENOIOCTL; 2619 break; 2620 } 2621 return (error); 2622 } 2623 2624 #ifdef COMPAT_FREEBSD32 2625 struct ifconf32 { 2626 int32_t ifc_len; 2627 union { 2628 uint32_t ifcu_buf; 2629 uint32_t ifcu_req; 2630 } ifc_ifcu; 2631 }; 2632 #define SIOCGIFCONF32 _IOWR('i', 36, struct ifconf32) 2633 #endif 2634 2635 /* 2636 * Interface ioctls. 2637 */ 2638 int 2639 ifioctl(struct socket *so, u_long cmd, caddr_t data, struct thread *td) 2640 { 2641 struct ifnet *ifp; 2642 struct ifreq *ifr; 2643 int error; 2644 int oif_flags; 2645 2646 CURVNET_SET(so->so_vnet); 2647 switch (cmd) { 2648 case SIOCGIFCONF: 2649 error = ifconf(cmd, data); 2650 CURVNET_RESTORE(); 2651 return (error); 2652 2653 #ifdef COMPAT_FREEBSD32 2654 case SIOCGIFCONF32: 2655 { 2656 struct ifconf32 *ifc32; 2657 struct ifconf ifc; 2658 2659 ifc32 = (struct ifconf32 *)data; 2660 ifc.ifc_len = ifc32->ifc_len; 2661 ifc.ifc_buf = PTRIN(ifc32->ifc_buf); 2662 2663 error = ifconf(SIOCGIFCONF, (void *)&ifc); 2664 CURVNET_RESTORE(); 2665 if (error == 0) 2666 ifc32->ifc_len = ifc.ifc_len; 2667 return (error); 2668 } 2669 #endif 2670 } 2671 ifr = (struct ifreq *)data; 2672 2673 switch (cmd) { 2674 #ifdef VIMAGE 2675 case SIOCSIFRVNET: 2676 error = priv_check(td, PRIV_NET_SETIFVNET); 2677 if (error == 0) 2678 error = if_vmove_reclaim(td, ifr->ifr_name, 2679 ifr->ifr_jid); 2680 CURVNET_RESTORE(); 2681 return (error); 2682 #endif 2683 case SIOCIFCREATE: 2684 case SIOCIFCREATE2: 2685 error = priv_check(td, PRIV_NET_IFCREATE); 2686 if (error == 0) 2687 error = if_clone_create(ifr->ifr_name, 2688 sizeof(ifr->ifr_name), 2689 cmd == SIOCIFCREATE2 ? ifr->ifr_data : NULL); 2690 CURVNET_RESTORE(); 2691 return (error); 2692 case SIOCIFDESTROY: 2693 error = priv_check(td, PRIV_NET_IFDESTROY); 2694 if (error == 0) 2695 error = if_clone_destroy(ifr->ifr_name); 2696 CURVNET_RESTORE(); 2697 return (error); 2698 2699 case SIOCIFGCLONERS: 2700 error = if_clone_list((struct if_clonereq *)data); 2701 CURVNET_RESTORE(); 2702 return (error); 2703 case SIOCGIFGMEMB: 2704 error = if_getgroupmembers((struct ifgroupreq *)data); 2705 CURVNET_RESTORE(); 2706 return (error); 2707 #if defined(INET) || defined(INET6) 2708 case SIOCSVH: 2709 case SIOCGVH: 2710 if (carp_ioctl_p == NULL) 2711 error = EPROTONOSUPPORT; 2712 else 2713 error = (*carp_ioctl_p)(ifr, cmd, td); 2714 CURVNET_RESTORE(); 2715 return (error); 2716 #endif 2717 } 2718 2719 ifp = ifunit_ref(ifr->ifr_name); 2720 if (ifp == NULL) { 2721 CURVNET_RESTORE(); 2722 return (ENXIO); 2723 } 2724 2725 error = ifhwioctl(cmd, ifp, data, td); 2726 if (error != ENOIOCTL) { 2727 if_rele(ifp); 2728 CURVNET_RESTORE(); 2729 return (error); 2730 } 2731 2732 oif_flags = ifp->if_flags; 2733 if (so->so_proto == NULL) { 2734 if_rele(ifp); 2735 CURVNET_RESTORE(); 2736 return (EOPNOTSUPP); 2737 } 2738 2739 /* 2740 * Pass the request on to the socket control method, and if the 2741 * latter returns EOPNOTSUPP, directly to the interface. 2742 * 2743 * Make an exception for the legacy SIOCSIF* requests. Drivers 2744 * trust SIOCSIFADDR et al to come from an already privileged 2745 * layer, and do not perform any credentials checks or input 2746 * validation. 2747 */ 2748 error = ((*so->so_proto->pr_usrreqs->pru_control)(so, cmd, data, 2749 ifp, td)); 2750 if (error == EOPNOTSUPP && ifp != NULL && ifp->if_ioctl != NULL && 2751 cmd != SIOCSIFADDR && cmd != SIOCSIFBRDADDR && 2752 cmd != SIOCSIFDSTADDR && cmd != SIOCSIFNETMASK) 2753 error = (*ifp->if_ioctl)(ifp, cmd, data); 2754 2755 if ((oif_flags ^ ifp->if_flags) & IFF_UP) { 2756 #ifdef INET6 2757 if (ifp->if_flags & IFF_UP) 2758 in6_if_up(ifp); 2759 #endif 2760 } 2761 if_rele(ifp); 2762 CURVNET_RESTORE(); 2763 return (error); 2764 } 2765 2766 /* 2767 * The code common to handling reference counted flags, 2768 * e.g., in ifpromisc() and if_allmulti(). 2769 * The "pflag" argument can specify a permanent mode flag to check, 2770 * such as IFF_PPROMISC for promiscuous mode; should be 0 if none. 2771 * 2772 * Only to be used on stack-owned flags, not driver-owned flags. 2773 */ 2774 static int 2775 if_setflag(struct ifnet *ifp, int flag, int pflag, int *refcount, int onswitch) 2776 { 2777 struct ifreq ifr; 2778 int error; 2779 int oldflags, oldcount; 2780 2781 /* Sanity checks to catch programming errors */ 2782 KASSERT((flag & (IFF_DRV_OACTIVE|IFF_DRV_RUNNING)) == 0, 2783 ("%s: setting driver-owned flag %d", __func__, flag)); 2784 2785 if (onswitch) 2786 KASSERT(*refcount >= 0, 2787 ("%s: increment negative refcount %d for flag %d", 2788 __func__, *refcount, flag)); 2789 else 2790 KASSERT(*refcount > 0, 2791 ("%s: decrement non-positive refcount %d for flag %d", 2792 __func__, *refcount, flag)); 2793 2794 /* In case this mode is permanent, just touch refcount */ 2795 if (ifp->if_flags & pflag) { 2796 *refcount += onswitch ? 1 : -1; 2797 return (0); 2798 } 2799 2800 /* Save ifnet parameters for if_ioctl() may fail */ 2801 oldcount = *refcount; 2802 oldflags = ifp->if_flags; 2803 2804 /* 2805 * See if we aren't the only and touching refcount is enough. 2806 * Actually toggle interface flag if we are the first or last. 2807 */ 2808 if (onswitch) { 2809 if ((*refcount)++) 2810 return (0); 2811 ifp->if_flags |= flag; 2812 } else { 2813 if (--(*refcount)) 2814 return (0); 2815 ifp->if_flags &= ~flag; 2816 } 2817 2818 /* Call down the driver since we've changed interface flags */ 2819 if (ifp->if_ioctl == NULL) { 2820 error = EOPNOTSUPP; 2821 goto recover; 2822 } 2823 ifr.ifr_flags = ifp->if_flags & 0xffff; 2824 ifr.ifr_flagshigh = ifp->if_flags >> 16; 2825 error = (*ifp->if_ioctl)(ifp, SIOCSIFFLAGS, (caddr_t)&ifr); 2826 if (error) 2827 goto recover; 2828 /* Notify userland that interface flags have changed */ 2829 rt_ifmsg(ifp); 2830 return (0); 2831 2832 recover: 2833 /* Recover after driver error */ 2834 *refcount = oldcount; 2835 ifp->if_flags = oldflags; 2836 return (error); 2837 } 2838 2839 /* 2840 * Set/clear promiscuous mode on interface ifp based on the truth value 2841 * of pswitch. The calls are reference counted so that only the first 2842 * "on" request actually has an effect, as does the final "off" request. 2843 * Results are undefined if the "off" and "on" requests are not matched. 2844 */ 2845 int 2846 ifpromisc(struct ifnet *ifp, int pswitch) 2847 { 2848 int error; 2849 int oldflags = ifp->if_flags; 2850 2851 error = if_setflag(ifp, IFF_PROMISC, IFF_PPROMISC, 2852 &ifp->if_pcount, pswitch); 2853 /* If promiscuous mode status has changed, log a message */ 2854 if (error == 0 && ((ifp->if_flags ^ oldflags) & IFF_PROMISC) && 2855 log_promisc_mode_change) 2856 log(LOG_INFO, "%s: promiscuous mode %s\n", 2857 ifp->if_xname, 2858 (ifp->if_flags & IFF_PROMISC) ? "enabled" : "disabled"); 2859 return (error); 2860 } 2861 2862 /* 2863 * Return interface configuration 2864 * of system. List may be used 2865 * in later ioctl's (above) to get 2866 * other information. 2867 */ 2868 /*ARGSUSED*/ 2869 static int 2870 ifconf(u_long cmd, caddr_t data) 2871 { 2872 struct ifconf *ifc = (struct ifconf *)data; 2873 struct ifnet *ifp; 2874 struct ifaddr *ifa; 2875 struct ifreq ifr; 2876 struct sbuf *sb; 2877 int error, full = 0, valid_len, max_len; 2878 2879 /* Limit initial buffer size to MAXPHYS to avoid DoS from userspace. */ 2880 max_len = MAXPHYS - 1; 2881 2882 /* Prevent hostile input from being able to crash the system */ 2883 if (ifc->ifc_len <= 0) 2884 return (EINVAL); 2885 2886 again: 2887 if (ifc->ifc_len <= max_len) { 2888 max_len = ifc->ifc_len; 2889 full = 1; 2890 } 2891 sb = sbuf_new(NULL, NULL, max_len + 1, SBUF_FIXEDLEN); 2892 max_len = 0; 2893 valid_len = 0; 2894 2895 IFNET_RLOCK(); 2896 TAILQ_FOREACH(ifp, &V_ifnet, if_link) { 2897 int addrs; 2898 2899 /* 2900 * Zero the ifr_name buffer to make sure we don't 2901 * disclose the contents of the stack. 2902 */ 2903 memset(ifr.ifr_name, 0, sizeof(ifr.ifr_name)); 2904 2905 if (strlcpy(ifr.ifr_name, ifp->if_xname, sizeof(ifr.ifr_name)) 2906 >= sizeof(ifr.ifr_name)) { 2907 sbuf_delete(sb); 2908 IFNET_RUNLOCK(); 2909 return (ENAMETOOLONG); 2910 } 2911 2912 addrs = 0; 2913 IF_ADDR_RLOCK(ifp); 2914 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { 2915 struct sockaddr *sa = ifa->ifa_addr; 2916 2917 if (prison_if(curthread->td_ucred, sa) != 0) 2918 continue; 2919 addrs++; 2920 if (sa->sa_len <= sizeof(*sa)) { 2921 ifr.ifr_addr = *sa; 2922 sbuf_bcat(sb, &ifr, sizeof(ifr)); 2923 max_len += sizeof(ifr); 2924 } else { 2925 sbuf_bcat(sb, &ifr, 2926 offsetof(struct ifreq, ifr_addr)); 2927 max_len += offsetof(struct ifreq, ifr_addr); 2928 sbuf_bcat(sb, sa, sa->sa_len); 2929 max_len += sa->sa_len; 2930 } 2931 2932 if (sbuf_error(sb) == 0) 2933 valid_len = sbuf_len(sb); 2934 } 2935 IF_ADDR_RUNLOCK(ifp); 2936 if (addrs == 0) { 2937 bzero((caddr_t)&ifr.ifr_addr, sizeof(ifr.ifr_addr)); 2938 sbuf_bcat(sb, &ifr, sizeof(ifr)); 2939 max_len += sizeof(ifr); 2940 2941 if (sbuf_error(sb) == 0) 2942 valid_len = sbuf_len(sb); 2943 } 2944 } 2945 IFNET_RUNLOCK(); 2946 2947 /* 2948 * If we didn't allocate enough space (uncommon), try again. If 2949 * we have already allocated as much space as we are allowed, 2950 * return what we've got. 2951 */ 2952 if (valid_len != max_len && !full) { 2953 sbuf_delete(sb); 2954 goto again; 2955 } 2956 2957 ifc->ifc_len = valid_len; 2958 sbuf_finish(sb); 2959 error = copyout(sbuf_data(sb), ifc->ifc_req, ifc->ifc_len); 2960 sbuf_delete(sb); 2961 return (error); 2962 } 2963 2964 /* 2965 * Just like ifpromisc(), but for all-multicast-reception mode. 2966 */ 2967 int 2968 if_allmulti(struct ifnet *ifp, int onswitch) 2969 { 2970 2971 return (if_setflag(ifp, IFF_ALLMULTI, 0, &ifp->if_amcount, onswitch)); 2972 } 2973 2974 struct ifmultiaddr * 2975 if_findmulti(struct ifnet *ifp, const struct sockaddr *sa) 2976 { 2977 struct ifmultiaddr *ifma; 2978 2979 IF_ADDR_LOCK_ASSERT(ifp); 2980 2981 TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { 2982 if (sa->sa_family == AF_LINK) { 2983 if (sa_dl_equal(ifma->ifma_addr, sa)) 2984 break; 2985 } else { 2986 if (sa_equal(ifma->ifma_addr, sa)) 2987 break; 2988 } 2989 } 2990 2991 return ifma; 2992 } 2993 2994 /* 2995 * Allocate a new ifmultiaddr and initialize based on passed arguments. We 2996 * make copies of passed sockaddrs. The ifmultiaddr will not be added to 2997 * the ifnet multicast address list here, so the caller must do that and 2998 * other setup work (such as notifying the device driver). The reference 2999 * count is initialized to 1. 3000 */ 3001 static struct ifmultiaddr * 3002 if_allocmulti(struct ifnet *ifp, struct sockaddr *sa, struct sockaddr *llsa, 3003 int mflags) 3004 { 3005 struct ifmultiaddr *ifma; 3006 struct sockaddr *dupsa; 3007 3008 ifma = malloc(sizeof *ifma, M_IFMADDR, mflags | 3009 M_ZERO); 3010 if (ifma == NULL) 3011 return (NULL); 3012 3013 dupsa = malloc(sa->sa_len, M_IFMADDR, mflags); 3014 if (dupsa == NULL) { 3015 free(ifma, M_IFMADDR); 3016 return (NULL); 3017 } 3018 bcopy(sa, dupsa, sa->sa_len); 3019 ifma->ifma_addr = dupsa; 3020 3021 ifma->ifma_ifp = ifp; 3022 ifma->ifma_refcount = 1; 3023 ifma->ifma_protospec = NULL; 3024 3025 if (llsa == NULL) { 3026 ifma->ifma_lladdr = NULL; 3027 return (ifma); 3028 } 3029 3030 dupsa = malloc(llsa->sa_len, M_IFMADDR, mflags); 3031 if (dupsa == NULL) { 3032 free(ifma->ifma_addr, M_IFMADDR); 3033 free(ifma, M_IFMADDR); 3034 return (NULL); 3035 } 3036 bcopy(llsa, dupsa, llsa->sa_len); 3037 ifma->ifma_lladdr = dupsa; 3038 3039 return (ifma); 3040 } 3041 3042 /* 3043 * if_freemulti: free ifmultiaddr structure and possibly attached related 3044 * addresses. The caller is responsible for implementing reference 3045 * counting, notifying the driver, handling routing messages, and releasing 3046 * any dependent link layer state. 3047 */ 3048 static void 3049 if_freemulti(struct ifmultiaddr *ifma) 3050 { 3051 3052 KASSERT(ifma->ifma_refcount == 0, ("if_freemulti: refcount %d", 3053 ifma->ifma_refcount)); 3054 3055 if (ifma->ifma_lladdr != NULL) 3056 free(ifma->ifma_lladdr, M_IFMADDR); 3057 free(ifma->ifma_addr, M_IFMADDR); 3058 free(ifma, M_IFMADDR); 3059 } 3060 3061 /* 3062 * Register an additional multicast address with a network interface. 3063 * 3064 * - If the address is already present, bump the reference count on the 3065 * address and return. 3066 * - If the address is not link-layer, look up a link layer address. 3067 * - Allocate address structures for one or both addresses, and attach to the 3068 * multicast address list on the interface. If automatically adding a link 3069 * layer address, the protocol address will own a reference to the link 3070 * layer address, to be freed when it is freed. 3071 * - Notify the network device driver of an addition to the multicast address 3072 * list. 3073 * 3074 * 'sa' points to caller-owned memory with the desired multicast address. 3075 * 3076 * 'retifma' will be used to return a pointer to the resulting multicast 3077 * address reference, if desired. 3078 */ 3079 int 3080 if_addmulti(struct ifnet *ifp, struct sockaddr *sa, 3081 struct ifmultiaddr **retifma) 3082 { 3083 struct ifmultiaddr *ifma, *ll_ifma; 3084 struct sockaddr *llsa; 3085 struct sockaddr_dl sdl; 3086 int error; 3087 3088 /* 3089 * If the address is already present, return a new reference to it; 3090 * otherwise, allocate storage and set up a new address. 3091 */ 3092 IF_ADDR_WLOCK(ifp); 3093 ifma = if_findmulti(ifp, sa); 3094 if (ifma != NULL) { 3095 ifma->ifma_refcount++; 3096 if (retifma != NULL) 3097 *retifma = ifma; 3098 IF_ADDR_WUNLOCK(ifp); 3099 return (0); 3100 } 3101 3102 /* 3103 * The address isn't already present; resolve the protocol address 3104 * into a link layer address, and then look that up, bump its 3105 * refcount or allocate an ifma for that also. 3106 * Most link layer resolving functions returns address data which 3107 * fits inside default sockaddr_dl structure. However callback 3108 * can allocate another sockaddr structure, in that case we need to 3109 * free it later. 3110 */ 3111 llsa = NULL; 3112 ll_ifma = NULL; 3113 if (ifp->if_resolvemulti != NULL) { 3114 /* Provide called function with buffer size information */ 3115 sdl.sdl_len = sizeof(sdl); 3116 llsa = (struct sockaddr *)&sdl; 3117 error = ifp->if_resolvemulti(ifp, &llsa, sa); 3118 if (error) 3119 goto unlock_out; 3120 } 3121 3122 /* 3123 * Allocate the new address. Don't hook it up yet, as we may also 3124 * need to allocate a link layer multicast address. 3125 */ 3126 ifma = if_allocmulti(ifp, sa, llsa, M_NOWAIT); 3127 if (ifma == NULL) { 3128 error = ENOMEM; 3129 goto free_llsa_out; 3130 } 3131 3132 /* 3133 * If a link layer address is found, we'll need to see if it's 3134 * already present in the address list, or allocate is as well. 3135 * When this block finishes, the link layer address will be on the 3136 * list. 3137 */ 3138 if (llsa != NULL) { 3139 ll_ifma = if_findmulti(ifp, llsa); 3140 if (ll_ifma == NULL) { 3141 ll_ifma = if_allocmulti(ifp, llsa, NULL, M_NOWAIT); 3142 if (ll_ifma == NULL) { 3143 --ifma->ifma_refcount; 3144 if_freemulti(ifma); 3145 error = ENOMEM; 3146 goto free_llsa_out; 3147 } 3148 TAILQ_INSERT_HEAD(&ifp->if_multiaddrs, ll_ifma, 3149 ifma_link); 3150 } else 3151 ll_ifma->ifma_refcount++; 3152 ifma->ifma_llifma = ll_ifma; 3153 } 3154 3155 /* 3156 * We now have a new multicast address, ifma, and possibly a new or 3157 * referenced link layer address. Add the primary address to the 3158 * ifnet address list. 3159 */ 3160 TAILQ_INSERT_HEAD(&ifp->if_multiaddrs, ifma, ifma_link); 3161 3162 if (retifma != NULL) 3163 *retifma = ifma; 3164 3165 /* 3166 * Must generate the message while holding the lock so that 'ifma' 3167 * pointer is still valid. 3168 */ 3169 rt_newmaddrmsg(RTM_NEWMADDR, ifma); 3170 IF_ADDR_WUNLOCK(ifp); 3171 3172 /* 3173 * We are certain we have added something, so call down to the 3174 * interface to let them know about it. 3175 */ 3176 if (ifp->if_ioctl != NULL) { 3177 (void) (*ifp->if_ioctl)(ifp, SIOCADDMULTI, 0); 3178 } 3179 3180 if ((llsa != NULL) && (llsa != (struct sockaddr *)&sdl)) 3181 link_free_sdl(llsa); 3182 3183 return (0); 3184 3185 free_llsa_out: 3186 if ((llsa != NULL) && (llsa != (struct sockaddr *)&sdl)) 3187 link_free_sdl(llsa); 3188 3189 unlock_out: 3190 IF_ADDR_WUNLOCK(ifp); 3191 return (error); 3192 } 3193 3194 /* 3195 * Delete a multicast group membership by network-layer group address. 3196 * 3197 * Returns ENOENT if the entry could not be found. If ifp no longer 3198 * exists, results are undefined. This entry point should only be used 3199 * from subsystems which do appropriate locking to hold ifp for the 3200 * duration of the call. 3201 * Network-layer protocol domains must use if_delmulti_ifma(). 3202 */ 3203 int 3204 if_delmulti(struct ifnet *ifp, struct sockaddr *sa) 3205 { 3206 struct ifmultiaddr *ifma; 3207 int lastref; 3208 #ifdef INVARIANTS 3209 struct ifnet *oifp; 3210 3211 IFNET_RLOCK_NOSLEEP(); 3212 TAILQ_FOREACH(oifp, &V_ifnet, if_link) 3213 if (ifp == oifp) 3214 break; 3215 if (ifp != oifp) 3216 ifp = NULL; 3217 IFNET_RUNLOCK_NOSLEEP(); 3218 3219 KASSERT(ifp != NULL, ("%s: ifnet went away", __func__)); 3220 #endif 3221 if (ifp == NULL) 3222 return (ENOENT); 3223 3224 IF_ADDR_WLOCK(ifp); 3225 lastref = 0; 3226 ifma = if_findmulti(ifp, sa); 3227 if (ifma != NULL) 3228 lastref = if_delmulti_locked(ifp, ifma, 0); 3229 IF_ADDR_WUNLOCK(ifp); 3230 3231 if (ifma == NULL) 3232 return (ENOENT); 3233 3234 if (lastref && ifp->if_ioctl != NULL) { 3235 (void)(*ifp->if_ioctl)(ifp, SIOCDELMULTI, 0); 3236 } 3237 3238 return (0); 3239 } 3240 3241 /* 3242 * Delete all multicast group membership for an interface. 3243 * Should be used to quickly flush all multicast filters. 3244 */ 3245 void 3246 if_delallmulti(struct ifnet *ifp) 3247 { 3248 struct ifmultiaddr *ifma; 3249 struct ifmultiaddr *next; 3250 3251 IF_ADDR_WLOCK(ifp); 3252 TAILQ_FOREACH_SAFE(ifma, &ifp->if_multiaddrs, ifma_link, next) 3253 if_delmulti_locked(ifp, ifma, 0); 3254 IF_ADDR_WUNLOCK(ifp); 3255 } 3256 3257 /* 3258 * Delete a multicast group membership by group membership pointer. 3259 * Network-layer protocol domains must use this routine. 3260 * 3261 * It is safe to call this routine if the ifp disappeared. 3262 */ 3263 void 3264 if_delmulti_ifma(struct ifmultiaddr *ifma) 3265 { 3266 struct ifnet *ifp; 3267 int lastref; 3268 3269 ifp = ifma->ifma_ifp; 3270 #ifdef DIAGNOSTIC 3271 if (ifp == NULL) { 3272 printf("%s: ifma_ifp seems to be detached\n", __func__); 3273 } else { 3274 struct ifnet *oifp; 3275 3276 IFNET_RLOCK_NOSLEEP(); 3277 TAILQ_FOREACH(oifp, &V_ifnet, if_link) 3278 if (ifp == oifp) 3279 break; 3280 if (ifp != oifp) { 3281 printf("%s: ifnet %p disappeared\n", __func__, ifp); 3282 ifp = NULL; 3283 } 3284 IFNET_RUNLOCK_NOSLEEP(); 3285 } 3286 #endif 3287 /* 3288 * If and only if the ifnet instance exists: Acquire the address lock. 3289 */ 3290 if (ifp != NULL) 3291 IF_ADDR_WLOCK(ifp); 3292 3293 lastref = if_delmulti_locked(ifp, ifma, 0); 3294 3295 if (ifp != NULL) { 3296 /* 3297 * If and only if the ifnet instance exists: 3298 * Release the address lock. 3299 * If the group was left: update the hardware hash filter. 3300 */ 3301 IF_ADDR_WUNLOCK(ifp); 3302 if (lastref && ifp->if_ioctl != NULL) { 3303 (void)(*ifp->if_ioctl)(ifp, SIOCDELMULTI, 0); 3304 } 3305 } 3306 } 3307 3308 /* 3309 * Perform deletion of network-layer and/or link-layer multicast address. 3310 * 3311 * Return 0 if the reference count was decremented. 3312 * Return 1 if the final reference was released, indicating that the 3313 * hardware hash filter should be reprogrammed. 3314 */ 3315 static int 3316 if_delmulti_locked(struct ifnet *ifp, struct ifmultiaddr *ifma, int detaching) 3317 { 3318 struct ifmultiaddr *ll_ifma; 3319 3320 if (ifp != NULL && ifma->ifma_ifp != NULL) { 3321 KASSERT(ifma->ifma_ifp == ifp, 3322 ("%s: inconsistent ifp %p", __func__, ifp)); 3323 IF_ADDR_WLOCK_ASSERT(ifp); 3324 } 3325 3326 ifp = ifma->ifma_ifp; 3327 3328 /* 3329 * If the ifnet is detaching, null out references to ifnet, 3330 * so that upper protocol layers will notice, and not attempt 3331 * to obtain locks for an ifnet which no longer exists. The 3332 * routing socket announcement must happen before the ifnet 3333 * instance is detached from the system. 3334 */ 3335 if (detaching) { 3336 #ifdef DIAGNOSTIC 3337 printf("%s: detaching ifnet instance %p\n", __func__, ifp); 3338 #endif 3339 /* 3340 * ifp may already be nulled out if we are being reentered 3341 * to delete the ll_ifma. 3342 */ 3343 if (ifp != NULL) { 3344 rt_newmaddrmsg(RTM_DELMADDR, ifma); 3345 ifma->ifma_ifp = NULL; 3346 } 3347 } 3348 3349 if (--ifma->ifma_refcount > 0) 3350 return 0; 3351 3352 /* 3353 * If this ifma is a network-layer ifma, a link-layer ifma may 3354 * have been associated with it. Release it first if so. 3355 */ 3356 ll_ifma = ifma->ifma_llifma; 3357 if (ll_ifma != NULL) { 3358 KASSERT(ifma->ifma_lladdr != NULL, 3359 ("%s: llifma w/o lladdr", __func__)); 3360 if (detaching) 3361 ll_ifma->ifma_ifp = NULL; /* XXX */ 3362 if (--ll_ifma->ifma_refcount == 0) { 3363 if (ifp != NULL) { 3364 TAILQ_REMOVE(&ifp->if_multiaddrs, ll_ifma, 3365 ifma_link); 3366 } 3367 if_freemulti(ll_ifma); 3368 } 3369 } 3370 3371 if (ifp != NULL) 3372 TAILQ_REMOVE(&ifp->if_multiaddrs, ifma, ifma_link); 3373 3374 if_freemulti(ifma); 3375 3376 /* 3377 * The last reference to this instance of struct ifmultiaddr 3378 * was released; the hardware should be notified of this change. 3379 */ 3380 return 1; 3381 } 3382 3383 /* 3384 * Set the link layer address on an interface. 3385 * 3386 * At this time we only support certain types of interfaces, 3387 * and we don't allow the length of the address to change. 3388 * 3389 * Set noinline to be dtrace-friendly 3390 */ 3391 __noinline int 3392 if_setlladdr(struct ifnet *ifp, const u_char *lladdr, int len) 3393 { 3394 struct sockaddr_dl *sdl; 3395 struct ifaddr *ifa; 3396 struct ifreq ifr; 3397 3398 IF_ADDR_RLOCK(ifp); 3399 ifa = ifp->if_addr; 3400 if (ifa == NULL) { 3401 IF_ADDR_RUNLOCK(ifp); 3402 return (EINVAL); 3403 } 3404 ifa_ref(ifa); 3405 IF_ADDR_RUNLOCK(ifp); 3406 sdl = (struct sockaddr_dl *)ifa->ifa_addr; 3407 if (sdl == NULL) { 3408 ifa_free(ifa); 3409 return (EINVAL); 3410 } 3411 if (len != sdl->sdl_alen) { /* don't allow length to change */ 3412 ifa_free(ifa); 3413 return (EINVAL); 3414 } 3415 switch (ifp->if_type) { 3416 case IFT_ETHER: 3417 case IFT_FDDI: 3418 case IFT_XETHER: 3419 case IFT_ISO88025: 3420 case IFT_L2VLAN: 3421 case IFT_BRIDGE: 3422 case IFT_ARCNET: 3423 case IFT_IEEE8023ADLAG: 3424 case IFT_IEEE80211: 3425 bcopy(lladdr, LLADDR(sdl), len); 3426 ifa_free(ifa); 3427 break; 3428 default: 3429 ifa_free(ifa); 3430 return (ENODEV); 3431 } 3432 3433 /* 3434 * If the interface is already up, we need 3435 * to re-init it in order to reprogram its 3436 * address filter. 3437 */ 3438 if ((ifp->if_flags & IFF_UP) != 0) { 3439 if (ifp->if_ioctl) { 3440 ifp->if_flags &= ~IFF_UP; 3441 ifr.ifr_flags = ifp->if_flags & 0xffff; 3442 ifr.ifr_flagshigh = ifp->if_flags >> 16; 3443 (*ifp->if_ioctl)(ifp, SIOCSIFFLAGS, (caddr_t)&ifr); 3444 ifp->if_flags |= IFF_UP; 3445 ifr.ifr_flags = ifp->if_flags & 0xffff; 3446 ifr.ifr_flagshigh = ifp->if_flags >> 16; 3447 (*ifp->if_ioctl)(ifp, SIOCSIFFLAGS, (caddr_t)&ifr); 3448 } 3449 } 3450 EVENTHANDLER_INVOKE(iflladdr_event, ifp); 3451 return (0); 3452 } 3453 3454 /* 3455 * Compat function for handling basic encapsulation requests. 3456 * Not converted stacks (FDDI, IB, ..) supports traditional 3457 * output model: ARP (and other similar L2 protocols) are handled 3458 * inside output routine, arpresolve/nd6_resolve() returns MAC 3459 * address instead of full prepend. 3460 * 3461 * This function creates calculated header==MAC for IPv4/IPv6 and 3462 * returns EAFNOSUPPORT (which is then handled in ARP code) for other 3463 * address families. 3464 */ 3465 static int 3466 if_requestencap_default(struct ifnet *ifp, struct if_encap_req *req) 3467 { 3468 3469 if (req->rtype != IFENCAP_LL) 3470 return (EOPNOTSUPP); 3471 3472 if (req->bufsize < req->lladdr_len) 3473 return (ENOMEM); 3474 3475 switch (req->family) { 3476 case AF_INET: 3477 case AF_INET6: 3478 break; 3479 default: 3480 return (EAFNOSUPPORT); 3481 } 3482 3483 /* Copy lladdr to storage as is */ 3484 memmove(req->buf, req->lladdr, req->lladdr_len); 3485 req->bufsize = req->lladdr_len; 3486 req->lladdr_off = 0; 3487 3488 return (0); 3489 } 3490 3491 /* 3492 * The name argument must be a pointer to storage which will last as 3493 * long as the interface does. For physical devices, the result of 3494 * device_get_name(dev) is a good choice and for pseudo-devices a 3495 * static string works well. 3496 */ 3497 void 3498 if_initname(struct ifnet *ifp, const char *name, int unit) 3499 { 3500 ifp->if_dname = name; 3501 ifp->if_dunit = unit; 3502 if (unit != IF_DUNIT_NONE) 3503 snprintf(ifp->if_xname, IFNAMSIZ, "%s%d", name, unit); 3504 else 3505 strlcpy(ifp->if_xname, name, IFNAMSIZ); 3506 } 3507 3508 int 3509 if_printf(struct ifnet *ifp, const char * fmt, ...) 3510 { 3511 va_list ap; 3512 int retval; 3513 3514 retval = printf("%s: ", ifp->if_xname); 3515 va_start(ap, fmt); 3516 retval += vprintf(fmt, ap); 3517 va_end(ap); 3518 return (retval); 3519 } 3520 3521 void 3522 if_start(struct ifnet *ifp) 3523 { 3524 3525 (*(ifp)->if_start)(ifp); 3526 } 3527 3528 /* 3529 * Backwards compatibility interface for drivers 3530 * that have not implemented it 3531 */ 3532 static int 3533 if_transmit(struct ifnet *ifp, struct mbuf *m) 3534 { 3535 int error; 3536 3537 IFQ_HANDOFF(ifp, m, error); 3538 return (error); 3539 } 3540 3541 static void 3542 if_input_default(struct ifnet *ifp __unused, struct mbuf *m) 3543 { 3544 3545 m_freem(m); 3546 } 3547 3548 int 3549 if_handoff(struct ifqueue *ifq, struct mbuf *m, struct ifnet *ifp, int adjust) 3550 { 3551 int active = 0; 3552 3553 IF_LOCK(ifq); 3554 if (_IF_QFULL(ifq)) { 3555 IF_UNLOCK(ifq); 3556 if_inc_counter(ifp, IFCOUNTER_OQDROPS, 1); 3557 m_freem(m); 3558 return (0); 3559 } 3560 if (ifp != NULL) { 3561 if_inc_counter(ifp, IFCOUNTER_OBYTES, m->m_pkthdr.len + adjust); 3562 if (m->m_flags & (M_BCAST|M_MCAST)) 3563 if_inc_counter(ifp, IFCOUNTER_OMCASTS, 1); 3564 active = ifp->if_drv_flags & IFF_DRV_OACTIVE; 3565 } 3566 _IF_ENQUEUE(ifq, m); 3567 IF_UNLOCK(ifq); 3568 if (ifp != NULL && !active) 3569 (*(ifp)->if_start)(ifp); 3570 return (1); 3571 } 3572 3573 void 3574 if_register_com_alloc(u_char type, 3575 if_com_alloc_t *a, if_com_free_t *f) 3576 { 3577 3578 KASSERT(if_com_alloc[type] == NULL, 3579 ("if_register_com_alloc: %d already registered", type)); 3580 KASSERT(if_com_free[type] == NULL, 3581 ("if_register_com_alloc: %d free already registered", type)); 3582 3583 if_com_alloc[type] = a; 3584 if_com_free[type] = f; 3585 } 3586 3587 void 3588 if_deregister_com_alloc(u_char type) 3589 { 3590 3591 KASSERT(if_com_alloc[type] != NULL, 3592 ("if_deregister_com_alloc: %d not registered", type)); 3593 KASSERT(if_com_free[type] != NULL, 3594 ("if_deregister_com_alloc: %d free not registered", type)); 3595 if_com_alloc[type] = NULL; 3596 if_com_free[type] = NULL; 3597 } 3598 3599 /* API for driver access to network stack owned ifnet.*/ 3600 uint64_t 3601 if_setbaudrate(struct ifnet *ifp, uint64_t baudrate) 3602 { 3603 uint64_t oldbrate; 3604 3605 oldbrate = ifp->if_baudrate; 3606 ifp->if_baudrate = baudrate; 3607 return (oldbrate); 3608 } 3609 3610 uint64_t 3611 if_getbaudrate(if_t ifp) 3612 { 3613 3614 return (((struct ifnet *)ifp)->if_baudrate); 3615 } 3616 3617 int 3618 if_setcapabilities(if_t ifp, int capabilities) 3619 { 3620 ((struct ifnet *)ifp)->if_capabilities = capabilities; 3621 return (0); 3622 } 3623 3624 int 3625 if_setcapabilitiesbit(if_t ifp, int setbit, int clearbit) 3626 { 3627 ((struct ifnet *)ifp)->if_capabilities |= setbit; 3628 ((struct ifnet *)ifp)->if_capabilities &= ~clearbit; 3629 3630 return (0); 3631 } 3632 3633 int 3634 if_getcapabilities(if_t ifp) 3635 { 3636 return ((struct ifnet *)ifp)->if_capabilities; 3637 } 3638 3639 int 3640 if_setcapenable(if_t ifp, int capabilities) 3641 { 3642 ((struct ifnet *)ifp)->if_capenable = capabilities; 3643 return (0); 3644 } 3645 3646 int 3647 if_setcapenablebit(if_t ifp, int setcap, int clearcap) 3648 { 3649 if(setcap) 3650 ((struct ifnet *)ifp)->if_capenable |= setcap; 3651 if(clearcap) 3652 ((struct ifnet *)ifp)->if_capenable &= ~clearcap; 3653 3654 return (0); 3655 } 3656 3657 const char * 3658 if_getdname(if_t ifp) 3659 { 3660 return ((struct ifnet *)ifp)->if_dname; 3661 } 3662 3663 int 3664 if_togglecapenable(if_t ifp, int togglecap) 3665 { 3666 ((struct ifnet *)ifp)->if_capenable ^= togglecap; 3667 return (0); 3668 } 3669 3670 int 3671 if_getcapenable(if_t ifp) 3672 { 3673 return ((struct ifnet *)ifp)->if_capenable; 3674 } 3675 3676 /* 3677 * This is largely undesirable because it ties ifnet to a device, but does 3678 * provide flexiblity for an embedded product vendor. Should be used with 3679 * the understanding that it violates the interface boundaries, and should be 3680 * a last resort only. 3681 */ 3682 int 3683 if_setdev(if_t ifp, void *dev) 3684 { 3685 return (0); 3686 } 3687 3688 int 3689 if_setdrvflagbits(if_t ifp, int set_flags, int clear_flags) 3690 { 3691 ((struct ifnet *)ifp)->if_drv_flags |= set_flags; 3692 ((struct ifnet *)ifp)->if_drv_flags &= ~clear_flags; 3693 3694 return (0); 3695 } 3696 3697 int 3698 if_getdrvflags(if_t ifp) 3699 { 3700 return ((struct ifnet *)ifp)->if_drv_flags; 3701 } 3702 3703 int 3704 if_setdrvflags(if_t ifp, int flags) 3705 { 3706 ((struct ifnet *)ifp)->if_drv_flags = flags; 3707 return (0); 3708 } 3709 3710 3711 int 3712 if_setflags(if_t ifp, int flags) 3713 { 3714 ((struct ifnet *)ifp)->if_flags = flags; 3715 return (0); 3716 } 3717 3718 int 3719 if_setflagbits(if_t ifp, int set, int clear) 3720 { 3721 ((struct ifnet *)ifp)->if_flags |= set; 3722 ((struct ifnet *)ifp)->if_flags &= ~clear; 3723 3724 return (0); 3725 } 3726 3727 int 3728 if_getflags(if_t ifp) 3729 { 3730 return ((struct ifnet *)ifp)->if_flags; 3731 } 3732 3733 int 3734 if_clearhwassist(if_t ifp) 3735 { 3736 ((struct ifnet *)ifp)->if_hwassist = 0; 3737 return (0); 3738 } 3739 3740 int 3741 if_sethwassistbits(if_t ifp, int toset, int toclear) 3742 { 3743 ((struct ifnet *)ifp)->if_hwassist |= toset; 3744 ((struct ifnet *)ifp)->if_hwassist &= ~toclear; 3745 3746 return (0); 3747 } 3748 3749 int 3750 if_sethwassist(if_t ifp, int hwassist_bit) 3751 { 3752 ((struct ifnet *)ifp)->if_hwassist = hwassist_bit; 3753 return (0); 3754 } 3755 3756 int 3757 if_gethwassist(if_t ifp) 3758 { 3759 return ((struct ifnet *)ifp)->if_hwassist; 3760 } 3761 3762 int 3763 if_setmtu(if_t ifp, int mtu) 3764 { 3765 ((struct ifnet *)ifp)->if_mtu = mtu; 3766 return (0); 3767 } 3768 3769 int 3770 if_getmtu(if_t ifp) 3771 { 3772 return ((struct ifnet *)ifp)->if_mtu; 3773 } 3774 3775 int 3776 if_getmtu_family(if_t ifp, int family) 3777 { 3778 struct domain *dp; 3779 3780 for (dp = domains; dp; dp = dp->dom_next) { 3781 if (dp->dom_family == family && dp->dom_ifmtu != NULL) 3782 return (dp->dom_ifmtu((struct ifnet *)ifp)); 3783 } 3784 3785 return (((struct ifnet *)ifp)->if_mtu); 3786 } 3787 3788 int 3789 if_setsoftc(if_t ifp, void *softc) 3790 { 3791 ((struct ifnet *)ifp)->if_softc = softc; 3792 return (0); 3793 } 3794 3795 void * 3796 if_getsoftc(if_t ifp) 3797 { 3798 return ((struct ifnet *)ifp)->if_softc; 3799 } 3800 3801 void 3802 if_setrcvif(struct mbuf *m, if_t ifp) 3803 { 3804 m->m_pkthdr.rcvif = (struct ifnet *)ifp; 3805 } 3806 3807 void 3808 if_setvtag(struct mbuf *m, uint16_t tag) 3809 { 3810 m->m_pkthdr.ether_vtag = tag; 3811 } 3812 3813 uint16_t 3814 if_getvtag(struct mbuf *m) 3815 { 3816 3817 return (m->m_pkthdr.ether_vtag); 3818 } 3819 3820 int 3821 if_sendq_empty(if_t ifp) 3822 { 3823 return IFQ_DRV_IS_EMPTY(&((struct ifnet *)ifp)->if_snd); 3824 } 3825 3826 struct ifaddr * 3827 if_getifaddr(if_t ifp) 3828 { 3829 return ((struct ifnet *)ifp)->if_addr; 3830 } 3831 3832 int 3833 if_getamcount(if_t ifp) 3834 { 3835 return ((struct ifnet *)ifp)->if_amcount; 3836 } 3837 3838 3839 int 3840 if_setsendqready(if_t ifp) 3841 { 3842 IFQ_SET_READY(&((struct ifnet *)ifp)->if_snd); 3843 return (0); 3844 } 3845 3846 int 3847 if_setsendqlen(if_t ifp, int tx_desc_count) 3848 { 3849 IFQ_SET_MAXLEN(&((struct ifnet *)ifp)->if_snd, tx_desc_count); 3850 ((struct ifnet *)ifp)->if_snd.ifq_drv_maxlen = tx_desc_count; 3851 3852 return (0); 3853 } 3854 3855 int 3856 if_vlantrunkinuse(if_t ifp) 3857 { 3858 return ((struct ifnet *)ifp)->if_vlantrunk != NULL?1:0; 3859 } 3860 3861 int 3862 if_input(if_t ifp, struct mbuf* sendmp) 3863 { 3864 (*((struct ifnet *)ifp)->if_input)((struct ifnet *)ifp, sendmp); 3865 return (0); 3866 3867 } 3868 3869 /* XXX */ 3870 #ifndef ETH_ADDR_LEN 3871 #define ETH_ADDR_LEN 6 3872 #endif 3873 3874 int 3875 if_setupmultiaddr(if_t ifp, void *mta, int *cnt, int max) 3876 { 3877 struct ifmultiaddr *ifma; 3878 uint8_t *lmta = (uint8_t *)mta; 3879 int mcnt = 0; 3880 3881 TAILQ_FOREACH(ifma, &((struct ifnet *)ifp)->if_multiaddrs, ifma_link) { 3882 if (ifma->ifma_addr->sa_family != AF_LINK) 3883 continue; 3884 3885 if (mcnt == max) 3886 break; 3887 3888 bcopy(LLADDR((struct sockaddr_dl *)ifma->ifma_addr), 3889 &lmta[mcnt * ETH_ADDR_LEN], ETH_ADDR_LEN); 3890 mcnt++; 3891 } 3892 *cnt = mcnt; 3893 3894 return (0); 3895 } 3896 3897 int 3898 if_multiaddr_array(if_t ifp, void *mta, int *cnt, int max) 3899 { 3900 int error; 3901 3902 if_maddr_rlock(ifp); 3903 error = if_setupmultiaddr(ifp, mta, cnt, max); 3904 if_maddr_runlock(ifp); 3905 return (error); 3906 } 3907 3908 int 3909 if_multiaddr_count(if_t ifp, int max) 3910 { 3911 struct ifmultiaddr *ifma; 3912 int count; 3913 3914 count = 0; 3915 if_maddr_rlock(ifp); 3916 TAILQ_FOREACH(ifma, &((struct ifnet *)ifp)->if_multiaddrs, ifma_link) { 3917 if (ifma->ifma_addr->sa_family != AF_LINK) 3918 continue; 3919 count++; 3920 if (count == max) 3921 break; 3922 } 3923 if_maddr_runlock(ifp); 3924 return (count); 3925 } 3926 3927 int 3928 if_multi_apply(struct ifnet *ifp, int (*filter)(void *, struct ifmultiaddr *, int), void *arg) 3929 { 3930 struct ifmultiaddr *ifma; 3931 int cnt = 0; 3932 3933 if_maddr_rlock(ifp); 3934 TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) 3935 cnt += filter(arg, ifma, cnt); 3936 if_maddr_runlock(ifp); 3937 return (cnt); 3938 } 3939 3940 struct mbuf * 3941 if_dequeue(if_t ifp) 3942 { 3943 struct mbuf *m; 3944 IFQ_DRV_DEQUEUE(&((struct ifnet *)ifp)->if_snd, m); 3945 3946 return (m); 3947 } 3948 3949 int 3950 if_sendq_prepend(if_t ifp, struct mbuf *m) 3951 { 3952 IFQ_DRV_PREPEND(&((struct ifnet *)ifp)->if_snd, m); 3953 return (0); 3954 } 3955 3956 int 3957 if_setifheaderlen(if_t ifp, int len) 3958 { 3959 ((struct ifnet *)ifp)->if_hdrlen = len; 3960 return (0); 3961 } 3962 3963 caddr_t 3964 if_getlladdr(if_t ifp) 3965 { 3966 return (IF_LLADDR((struct ifnet *)ifp)); 3967 } 3968 3969 void * 3970 if_gethandle(u_char type) 3971 { 3972 return (if_alloc(type)); 3973 } 3974 3975 void 3976 if_bpfmtap(if_t ifh, struct mbuf *m) 3977 { 3978 struct ifnet *ifp = (struct ifnet *)ifh; 3979 3980 BPF_MTAP(ifp, m); 3981 } 3982 3983 void 3984 if_etherbpfmtap(if_t ifh, struct mbuf *m) 3985 { 3986 struct ifnet *ifp = (struct ifnet *)ifh; 3987 3988 ETHER_BPF_MTAP(ifp, m); 3989 } 3990 3991 void 3992 if_vlancap(if_t ifh) 3993 { 3994 struct ifnet *ifp = (struct ifnet *)ifh; 3995 VLAN_CAPABILITIES(ifp); 3996 } 3997 3998 void 3999 if_setinitfn(if_t ifp, void (*init_fn)(void *)) 4000 { 4001 ((struct ifnet *)ifp)->if_init = init_fn; 4002 } 4003 4004 void 4005 if_setioctlfn(if_t ifp, int (*ioctl_fn)(if_t, u_long, caddr_t)) 4006 { 4007 ((struct ifnet *)ifp)->if_ioctl = (void *)ioctl_fn; 4008 } 4009 4010 void 4011 if_setstartfn(if_t ifp, void (*start_fn)(if_t)) 4012 { 4013 ((struct ifnet *)ifp)->if_start = (void *)start_fn; 4014 } 4015 4016 void 4017 if_settransmitfn(if_t ifp, if_transmit_fn_t start_fn) 4018 { 4019 ((struct ifnet *)ifp)->if_transmit = start_fn; 4020 } 4021 4022 void if_setqflushfn(if_t ifp, if_qflush_fn_t flush_fn) 4023 { 4024 ((struct ifnet *)ifp)->if_qflush = flush_fn; 4025 4026 } 4027 4028 void 4029 if_setgetcounterfn(if_t ifp, if_get_counter_t fn) 4030 { 4031 4032 ifp->if_get_counter = fn; 4033 } 4034 4035 /* Revisit these - These are inline functions originally. */ 4036 int 4037 drbr_inuse_drv(if_t ifh, struct buf_ring *br) 4038 { 4039 return drbr_inuse(ifh, br); 4040 } 4041 4042 struct mbuf* 4043 drbr_dequeue_drv(if_t ifh, struct buf_ring *br) 4044 { 4045 return drbr_dequeue(ifh, br); 4046 } 4047 4048 int 4049 drbr_needs_enqueue_drv(if_t ifh, struct buf_ring *br) 4050 { 4051 return drbr_needs_enqueue(ifh, br); 4052 } 4053 4054 int 4055 drbr_enqueue_drv(if_t ifh, struct buf_ring *br, struct mbuf *m) 4056 { 4057 return drbr_enqueue(ifh, br, m); 4058 4059 } 4060