The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/net/if.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 79491e5c779a1e6ca2f038d6e96e689e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.