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