Merge branch 'master' into net80211-update
[dragonfly.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  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)if.c        8.3 (Berkeley) 1/4/94
34  * $FreeBSD: src/sys/net/if.c,v 1.185 2004/03/13 02:35:03 brooks Exp $
35  * $DragonFly: src/sys/net/if.c,v 1.84 2008/11/15 11:58:16 sephe Exp $
36  */
37
38 #include "opt_compat.h"
39 #include "opt_inet6.h"
40 #include "opt_inet.h"
41 #include "opt_polling.h"
42 #include "opt_ifpoll.h"
43
44 #include <sys/param.h>
45 #include <sys/malloc.h>
46 #include <sys/mbuf.h>
47 #include <sys/systm.h>
48 #include <sys/proc.h>
49 #include <sys/priv.h>
50 #include <sys/protosw.h>
51 #include <sys/socket.h>
52 #include <sys/socketvar.h>
53 #include <sys/socketops.h>
54 #include <sys/protosw.h>
55 #include <sys/kernel.h>
56 #include <sys/ktr.h>
57 #include <sys/sockio.h>
58 #include <sys/syslog.h>
59 #include <sys/sysctl.h>
60 #include <sys/domain.h>
61 #include <sys/thread.h>
62 #include <sys/thread2.h>
63 #include <sys/serialize.h>
64 #include <sys/msgport2.h>
65 #include <sys/bus.h>
66
67 #include <net/if.h>
68 #include <net/if_arp.h>
69 #include <net/if_dl.h>
70 #include <net/if_types.h>
71 #include <net/if_var.h>
72 #include <net/ifq_var.h>
73 #include <net/radix.h>
74 #include <net/route.h>
75 #include <net/if_clone.h>
76 #include <net/netisr.h>
77 #include <net/netmsg2.h>
78
79 #include <machine/atomic.h>
80 #include <machine/stdarg.h>
81 #include <machine/smp.h>
82
83 #if defined(INET) || defined(INET6)
84 /*XXX*/
85 #include <netinet/in.h>
86 #include <netinet/in_var.h>
87 #include <netinet/if_ether.h>
88 #ifdef INET6
89 #include <netinet6/in6_var.h>
90 #include <netinet6/in6_ifattach.h>
91 #endif
92 #endif
93
94 #if defined(COMPAT_43)
95 #include <emulation/43bsd/43bsd_socket.h>
96 #endif /* COMPAT_43 */
97
98 struct netmsg_ifaddr {
99         struct netmsg   netmsg;
100         struct ifaddr   *ifa;
101         struct ifnet    *ifp;
102         int             tail;
103 };
104
105 /*
106  * System initialization
107  */
108 static void     if_attachdomain(void *);
109 static void     if_attachdomain1(struct ifnet *);
110 static int      ifconf(u_long, caddr_t, struct ucred *);
111 static void     ifinit(void *);
112 static void     ifnetinit(void *);
113 static void     if_slowtimo(void *);
114 static void     link_rtrequest(int, struct rtentry *, struct rt_addrinfo *);
115 static int      if_rtdel(struct radix_node *, void *);
116
117 #ifdef INET6
118 /*
119  * XXX: declare here to avoid to include many inet6 related files..
120  * should be more generalized?
121  */
122 extern void     nd6_setmtu(struct ifnet *);
123 #endif
124
125 SYSCTL_NODE(_net, PF_LINK, link, CTLFLAG_RW, 0, "Link layers");
126 SYSCTL_NODE(_net_link, 0, generic, CTLFLAG_RW, 0, "Generic link-management");
127
128 SYSINIT(interfaces, SI_SUB_PROTO_IF, SI_ORDER_FIRST, ifinit, NULL)
129 /* Must be after netisr_init */
130 SYSINIT(ifnet, SI_SUB_PRE_DRIVERS, SI_ORDER_SECOND, ifnetinit, NULL)
131
132 static  if_com_alloc_t *if_com_alloc[256];
133 static  if_com_free_t *if_com_free[256];
134
135 MALLOC_DEFINE(M_IFADDR, "ifaddr", "interface address");
136 MALLOC_DEFINE(M_IFMADDR, "ether_multi", "link-level multicast address");
137 MALLOC_DEFINE(M_IFNET, "ifnet", "interface structure");
138
139 int                     ifqmaxlen = IFQ_MAXLEN;
140 struct ifnethead        ifnet = TAILQ_HEAD_INITIALIZER(ifnet);
141
142 /* In ifq_dispatch(), try to do direct ifnet.if_start first */
143 static int              ifq_dispatch_schedonly = 0;
144 SYSCTL_INT(_net_link_generic, OID_AUTO, ifq_dispatch_schedonly, CTLFLAG_RW,
145            &ifq_dispatch_schedonly, 0, "");
146
147 /* In ifq_dispatch(), schedule ifnet.if_start without checking ifnet.if_snd */
148 static int              ifq_dispatch_schednochk = 0;
149 SYSCTL_INT(_net_link_generic, OID_AUTO, ifq_dispatch_schednochk, CTLFLAG_RW,
150            &ifq_dispatch_schednochk, 0, "");
151
152 /* In if_devstart(), try to do direct ifnet.if_start first */
153 static int              if_devstart_schedonly = 0;
154 SYSCTL_INT(_net_link_generic, OID_AUTO, if_devstart_schedonly, CTLFLAG_RW,
155            &if_devstart_schedonly, 0, "");
156
157 /* In if_devstart(), schedule ifnet.if_start without checking ifnet.if_snd */
158 static int              if_devstart_schednochk = 0;
159 SYSCTL_INT(_net_link_generic, OID_AUTO, if_devstart_schednochk, CTLFLAG_RW,
160            &if_devstart_schednochk, 0, "");
161
162 #ifdef SMP
163 /* Schedule ifnet.if_start on the current CPU */
164 static int              if_start_oncpu_sched = 0;
165 SYSCTL_INT(_net_link_generic, OID_AUTO, if_start_oncpu_sched, CTLFLAG_RW,
166            &if_start_oncpu_sched, 0, "");
167 #endif
168
169 struct callout          if_slowtimo_timer;
170
171 int                     if_index = 0;
172 struct ifnet            **ifindex2ifnet = NULL;
173 static struct thread    ifnet_threads[MAXCPU];
174 static int              ifnet_mpsafe_thread = NETMSG_SERVICE_MPSAFE;
175
176 #define IFQ_KTR_STRING          "ifq=%p"
177 #define IFQ_KTR_ARG_SIZE        (sizeof(void *))
178 #ifndef KTR_IFQ
179 #define KTR_IFQ                 KTR_ALL
180 #endif
181 KTR_INFO_MASTER(ifq);
182 KTR_INFO(KTR_IFQ, ifq, enqueue, 0, IFQ_KTR_STRING, IFQ_KTR_ARG_SIZE);
183 KTR_INFO(KTR_IFQ, ifq, dequeue, 1, IFQ_KTR_STRING, IFQ_KTR_ARG_SIZE);
184 #define logifq(name, arg)       KTR_LOG(ifq_ ## name, arg)
185
186 #define IF_START_KTR_STRING     "ifp=%p"
187 #define IF_START_KTR_ARG_SIZE   (sizeof(void *))
188 #ifndef KTR_IF_START
189 #define KTR_IF_START            KTR_ALL
190 #endif
191 KTR_INFO_MASTER(if_start);
192 KTR_INFO(KTR_IF_START, if_start, run, 0,
193          IF_START_KTR_STRING, IF_START_KTR_ARG_SIZE);
194 KTR_INFO(KTR_IF_START, if_start, sched, 1,
195          IF_START_KTR_STRING, IF_START_KTR_ARG_SIZE);
196 KTR_INFO(KTR_IF_START, if_start, avoid, 2,
197          IF_START_KTR_STRING, IF_START_KTR_ARG_SIZE);
198 KTR_INFO(KTR_IF_START, if_start, contend_sched, 3,
199          IF_START_KTR_STRING, IF_START_KTR_ARG_SIZE);
200 #ifdef SMP
201 KTR_INFO(KTR_IF_START, if_start, chase_sched, 4,
202          IF_START_KTR_STRING, IF_START_KTR_ARG_SIZE);
203 #endif
204 #define logifstart(name, arg)   KTR_LOG(if_start_ ## name, arg)
205
206 /*
207  * Network interface utility routines.
208  *
209  * Routines with ifa_ifwith* names take sockaddr *'s as
210  * parameters.
211  */
212 /* ARGSUSED*/
213 void
214 ifinit(void *dummy)
215 {
216         struct ifnet *ifp;
217
218         callout_init(&if_slowtimo_timer);
219
220         crit_enter();
221         TAILQ_FOREACH(ifp, &ifnet, if_link) {
222                 if (ifp->if_snd.ifq_maxlen == 0) {
223                         if_printf(ifp, "XXX: driver didn't set ifq_maxlen\n");
224                         ifp->if_snd.ifq_maxlen = ifqmaxlen;
225                 }
226         }
227         crit_exit();
228
229         if_slowtimo(0);
230 }
231
232 static int
233 if_start_cpuid(struct ifnet *ifp)
234 {
235         return ifp->if_cpuid;
236 }
237
238 #ifdef DEVICE_POLLING
239 static int
240 if_start_cpuid_poll(struct ifnet *ifp)
241 {
242         int poll_cpuid = ifp->if_poll_cpuid;
243
244         if (poll_cpuid >= 0)
245                 return poll_cpuid;
246         else
247                 return ifp->if_cpuid;
248 }
249 #endif
250
251 static void
252 if_start_ipifunc(void *arg)
253 {
254         struct ifnet *ifp = arg;
255         struct lwkt_msg *lmsg = &ifp->if_start_nmsg[mycpuid].nm_lmsg;
256
257         crit_enter();
258         if (lmsg->ms_flags & MSGF_DONE)
259                 lwkt_sendmsg(ifnet_portfn(mycpuid), lmsg);
260         crit_exit();
261 }
262
263 /*
264  * Schedule ifnet.if_start on ifnet's CPU
265  */
266 static void
267 if_start_schedule(struct ifnet *ifp)
268 {
269 #ifdef SMP
270         int cpu;
271
272         if (if_start_oncpu_sched)
273                 cpu = mycpuid;
274         else
275                 cpu = ifp->if_start_cpuid(ifp);
276
277         if (cpu != mycpuid)
278                 lwkt_send_ipiq(globaldata_find(cpu), if_start_ipifunc, ifp);
279         else
280 #endif
281         if_start_ipifunc(ifp);
282 }
283
284 /*
285  * NOTE:
286  * This function will release ifnet.if_start interlock,
287  * if ifnet.if_start does not need to be scheduled
288  */
289 static __inline int
290 if_start_need_schedule(struct ifaltq *ifq, int running)
291 {
292         if (!running || ifq_is_empty(ifq)
293 #ifdef ALTQ
294             || ifq->altq_tbr != NULL
295 #endif
296         ) {
297                 ALTQ_LOCK(ifq);
298                 /*
299                  * ifnet.if_start interlock is released, if:
300                  * 1) Hardware can not take any packets, due to
301                  *    o  interface is marked down
302                  *    o  hardware queue is full (IFF_OACTIVE)
303                  *    Under the second situation, hardware interrupt
304                  *    or polling(4) will call/schedule ifnet.if_start
305                  *    when hardware queue is ready
306                  * 2) There is not packet in the ifnet.if_snd.
307                  *    Further ifq_dispatch or ifq_handoff will call/
308                  *    schedule ifnet.if_start
309                  * 3) TBR is used and it does not allow further
310                  *    dequeueing.
311                  *    TBR callout will call ifnet.if_start
312                  */
313                 if (!running || !ifq_data_ready(ifq)) {
314                         ifq->altq_started = 0;
315                         ALTQ_UNLOCK(ifq);
316                         return 0;
317                 }
318                 ALTQ_UNLOCK(ifq);
319         }
320         return 1;
321 }
322
323 static void
324 if_start_dispatch(struct netmsg *nmsg)
325 {
326         struct lwkt_msg *lmsg = &nmsg->nm_lmsg;
327         struct ifnet *ifp = lmsg->u.ms_resultp;
328         struct ifaltq *ifq = &ifp->if_snd;
329         int running = 0;
330
331         crit_enter();
332         lwkt_replymsg(lmsg, 0); /* reply ASAP */
333         crit_exit();
334
335 #ifdef SMP
336         if (!if_start_oncpu_sched && mycpuid != ifp->if_start_cpuid(ifp)) {
337                 /*
338                  * If the ifnet is still up, we need to
339                  * chase its CPU change.
340                  */
341                 if (ifp->if_flags & IFF_UP) {
342                         logifstart(chase_sched, ifp);
343                         if_start_schedule(ifp);
344                         return;
345                 } else {
346                         goto check;
347                 }
348         }
349 #endif
350
351         if (ifp->if_flags & IFF_UP) {
352                 ifnet_serialize_tx(ifp); /* XXX try? */
353                 if ((ifp->if_flags & IFF_OACTIVE) == 0) {
354                         logifstart(run, ifp);
355                         ifp->if_start(ifp);
356                         if ((ifp->if_flags &
357                         (IFF_OACTIVE | IFF_RUNNING)) == IFF_RUNNING)
358                                 running = 1;
359                 }
360                 ifnet_deserialize_tx(ifp);
361         }
362 #ifdef SMP
363 check:
364 #endif
365         if (if_start_need_schedule(ifq, running)) {
366                 crit_enter();
367                 if (lmsg->ms_flags & MSGF_DONE) { /* XXX necessary? */
368                         logifstart(sched, ifp);
369                         lwkt_sendmsg(ifnet_portfn(mycpuid), lmsg);
370                 }
371                 crit_exit();
372         }
373 }
374
375 /* Device driver ifnet.if_start helper function */
376 void
377 if_devstart(struct ifnet *ifp)
378 {
379         struct ifaltq *ifq = &ifp->if_snd;
380         int running = 0;
381
382         ASSERT_IFNET_SERIALIZED_TX(ifp);
383
384         ALTQ_LOCK(ifq);
385         if (ifq->altq_started || !ifq_data_ready(ifq)) {
386                 logifstart(avoid, ifp);
387                 ALTQ_UNLOCK(ifq);
388                 return;
389         }
390         ifq->altq_started = 1;
391         ALTQ_UNLOCK(ifq);
392
393         if (if_devstart_schedonly) {
394                 /*
395                  * Always schedule ifnet.if_start on ifnet's CPU,
396                  * short circuit the rest of this function.
397                  */
398                 logifstart(sched, ifp);
399                 if_start_schedule(ifp);
400                 return;
401         }
402
403         logifstart(run, ifp);
404         ifp->if_start(ifp);
405
406         if ((ifp->if_flags & (IFF_OACTIVE | IFF_RUNNING)) == IFF_RUNNING)
407                 running = 1;
408
409         if (if_devstart_schednochk || if_start_need_schedule(ifq, running)) {
410                 /*
411                  * More data need to be transmitted, ifnet.if_start is
412                  * scheduled on ifnet's CPU, and we keep going.
413                  * NOTE: ifnet.if_start interlock is not released.
414                  */
415                 logifstart(sched, ifp);
416                 if_start_schedule(ifp);
417         }
418 }
419
420 static void
421 if_default_serialize(struct ifnet *ifp, enum ifnet_serialize slz __unused)
422 {
423         lwkt_serialize_enter(ifp->if_serializer);
424 }
425
426 static void
427 if_default_deserialize(struct ifnet *ifp, enum ifnet_serialize slz __unused)
428 {
429         lwkt_serialize_exit(ifp->if_serializer);
430 }
431
432 static int
433 if_default_tryserialize(struct ifnet *ifp, enum ifnet_serialize slz __unused)
434 {
435         return lwkt_serialize_try(ifp->if_serializer);
436 }
437
438 #ifdef INVARIANTS
439 static void
440 if_default_serialize_assert(struct ifnet *ifp,
441                             enum ifnet_serialize slz __unused,
442                             boolean_t serialized)
443 {
444         if (serialized)
445                 ASSERT_SERIALIZED(ifp->if_serializer);
446         else
447                 ASSERT_NOT_SERIALIZED(ifp->if_serializer);
448 }
449 #endif
450
451 /*
452  * Attach an interface to the list of "active" interfaces.
453  *
454  * The serializer is optional.  If non-NULL access to the interface
455  * may be MPSAFE.
456  */
457 void
458 if_attach(struct ifnet *ifp, lwkt_serialize_t serializer)
459 {
460         unsigned socksize, ifasize;
461         int namelen, masklen;
462         struct sockaddr_dl *sdl;
463         struct ifaddr *ifa;
464         struct ifaltq *ifq;
465         int i;
466
467         static int if_indexlim = 8;
468
469         if (ifp->if_serialize != NULL) {
470                 KASSERT(ifp->if_deserialize != NULL &&
471                         ifp->if_tryserialize != NULL &&
472                         ifp->if_serialize_assert != NULL,
473                         ("serialize functions are partially setup\n"));
474
475                 /*
476                  * If the device supplies serialize functions,
477                  * then clear if_serializer to catch any invalid
478                  * usage of this field.
479                  */
480                 KASSERT(serializer == NULL,
481                         ("both serialize functions and default serializer "
482                          "are supplied\n"));
483                 ifp->if_serializer = NULL;
484         } else {
485                 KASSERT(ifp->if_deserialize == NULL &&
486                         ifp->if_tryserialize == NULL &&
487                         ifp->if_serialize_assert == NULL,
488                         ("serialize functions are partially setup\n"));
489                 ifp->if_serialize = if_default_serialize;
490                 ifp->if_deserialize = if_default_deserialize;
491                 ifp->if_tryserialize = if_default_tryserialize;
492 #ifdef INVARIANTS
493                 ifp->if_serialize_assert = if_default_serialize_assert;
494 #endif
495
496                 /*
497                  * The serializer can be passed in from the device,
498                  * allowing the same serializer to be used for both
499                  * the interrupt interlock and the device queue.
500                  * If not specified, the netif structure will use an
501                  * embedded serializer.
502                  */
503                 if (serializer == NULL) {
504                         serializer = &ifp->if_default_serializer;
505                         lwkt_serialize_init(serializer);
506                 }
507                 ifp->if_serializer = serializer;
508         }
509
510         ifp->if_start_cpuid = if_start_cpuid;
511         ifp->if_cpuid = 0;
512
513 #ifdef DEVICE_POLLING
514         /* Device is not in polling mode by default */
515         ifp->if_poll_cpuid = -1;
516         if (ifp->if_poll != NULL)
517                 ifp->if_start_cpuid = if_start_cpuid_poll;
518 #endif
519
520         ifp->if_start_nmsg = kmalloc(ncpus * sizeof(struct netmsg),
521                                      M_LWKTMSG, M_WAITOK);
522         for (i = 0; i < ncpus; ++i) {
523                 netmsg_init(&ifp->if_start_nmsg[i], NULL, &netisr_adone_rport,
524                             0, if_start_dispatch);
525                 ifp->if_start_nmsg[i].nm_lmsg.u.ms_resultp = ifp;
526         }
527
528         TAILQ_INSERT_TAIL(&ifnet, ifp, if_link);
529         ifp->if_index = ++if_index;
530
531         /*
532          * XXX -
533          * The old code would work if the interface passed a pre-existing
534          * chain of ifaddrs to this code.  We don't trust our callers to
535          * properly initialize the tailq, however, so we no longer allow
536          * this unlikely case.
537          */
538         ifp->if_addrheads = kmalloc(ncpus * sizeof(struct ifaddrhead),
539                                     M_IFADDR, M_WAITOK | M_ZERO);
540         for (i = 0; i < ncpus; ++i)
541                 TAILQ_INIT(&ifp->if_addrheads[i]);
542
543         TAILQ_INIT(&ifp->if_prefixhead);
544         LIST_INIT(&ifp->if_multiaddrs);
545         getmicrotime(&ifp->if_lastchange);
546         if (ifindex2ifnet == NULL || if_index >= if_indexlim) {
547                 unsigned int n;
548                 struct ifnet **q;
549
550                 if_indexlim <<= 1;
551
552                 /* grow ifindex2ifnet */
553                 n = if_indexlim * sizeof(*q);
554                 q = kmalloc(n, M_IFADDR, M_WAITOK | M_ZERO);
555                 if (ifindex2ifnet) {
556                         bcopy(ifindex2ifnet, q, n/2);
557                         kfree(ifindex2ifnet, M_IFADDR);
558                 }
559                 ifindex2ifnet = q;
560         }
561
562         ifindex2ifnet[if_index] = ifp;
563
564         /*
565          * create a Link Level name for this device
566          */
567         namelen = strlen(ifp->if_xname);
568 #define _offsetof(t, m) ((int)((caddr_t)&((t *)0)->m))
569         masklen = _offsetof(struct sockaddr_dl, sdl_data[0]) + namelen;
570         socksize = masklen + ifp->if_addrlen;
571 #define ROUNDUP(a) (1 + (((a) - 1) | (sizeof(long) - 1)))
572         if (socksize < sizeof(*sdl))
573                 socksize = sizeof(*sdl);
574         socksize = ROUNDUP(socksize);
575         ifasize = sizeof(struct ifaddr) + 2 * socksize;
576         ifa = ifa_create(ifasize, M_WAITOK);
577         sdl = (struct sockaddr_dl *)(ifa + 1);
578         sdl->sdl_len = socksize;
579         sdl->sdl_family = AF_LINK;
580         bcopy(ifp->if_xname, sdl->sdl_data, namelen);
581         sdl->sdl_nlen = namelen;
582         sdl->sdl_index = ifp->if_index;
583         sdl->sdl_type = ifp->if_type;
584         ifp->if_lladdr = ifa;
585         ifa->ifa_ifp = ifp;
586         ifa->ifa_rtrequest = link_rtrequest;
587         ifa->ifa_addr = (struct sockaddr *)sdl;
588         sdl = (struct sockaddr_dl *)(socksize + (caddr_t)sdl);
589         ifa->ifa_netmask = (struct sockaddr *)sdl;
590         sdl->sdl_len = masklen;
591         while (namelen != 0)
592                 sdl->sdl_data[--namelen] = 0xff;
593         ifa_iflink(ifa, ifp, 0 /* Insert head */);
594
595         EVENTHANDLER_INVOKE(ifnet_attach_event, ifp);
596         devctl_notify("IFNET", ifp->if_xname, "ATTACH", NULL);
597
598         ifq = &ifp->if_snd;
599         ifq->altq_type = 0;
600         ifq->altq_disc = NULL;
601         ifq->altq_flags &= ALTQF_CANTCHANGE;
602         ifq->altq_tbr = NULL;
603         ifq->altq_ifp = ifp;
604         ifq->altq_started = 0;
605         ifq->altq_prepended = NULL;
606         ALTQ_LOCK_INIT(ifq);
607         ifq_set_classic(ifq);
608
609         if (!SLIST_EMPTY(&domains))
610                 if_attachdomain1(ifp);
611
612         /* Announce the interface. */
613         rt_ifannouncemsg(ifp, IFAN_ARRIVAL);
614 }
615
616 static void
617 if_attachdomain(void *dummy)
618 {
619         struct ifnet *ifp;
620
621         crit_enter();
622         TAILQ_FOREACH(ifp, &ifnet, if_list)
623                 if_attachdomain1(ifp);
624         crit_exit();
625 }
626 SYSINIT(domainifattach, SI_SUB_PROTO_IFATTACHDOMAIN, SI_ORDER_FIRST,
627         if_attachdomain, NULL);
628
629 static void
630 if_attachdomain1(struct ifnet *ifp)
631 {
632         struct domain *dp;
633
634         crit_enter();
635
636         /* address family dependent data region */
637         bzero(ifp->if_afdata, sizeof(ifp->if_afdata));
638         SLIST_FOREACH(dp, &domains, dom_next)
639                 if (dp->dom_ifattach)
640                         ifp->if_afdata[dp->dom_family] =
641                                 (*dp->dom_ifattach)(ifp);
642         crit_exit();
643 }
644
645 /*
646  * Purge all addresses whose type is _not_ AF_LINK
647  */
648 void
649 if_purgeaddrs_nolink(struct ifnet *ifp)
650 {
651         struct ifaddr_container *ifac, *next;
652
653         TAILQ_FOREACH_MUTABLE(ifac, &ifp->if_addrheads[mycpuid],
654                               ifa_link, next) {
655                 struct ifaddr *ifa = ifac->ifa;
656
657                 /* Leave link ifaddr as it is */
658                 if (ifa->ifa_addr->sa_family == AF_LINK)
659                         continue;
660 #ifdef INET
661                 /* XXX: Ugly!! ad hoc just for INET */
662                 if (ifa->ifa_addr && ifa->ifa_addr->sa_family == AF_INET) {
663                         struct ifaliasreq ifr;
664 #ifdef IFADDR_DEBUG_VERBOSE
665                         int i;
666
667                         kprintf("purge in4 addr %p: ", ifa);
668                         for (i = 0; i < ncpus; ++i)
669                                 kprintf("%d ", ifa->ifa_containers[i].ifa_refcnt);
670                         kprintf("\n");
671 #endif
672
673                         bzero(&ifr, sizeof ifr);
674                         ifr.ifra_addr = *ifa->ifa_addr;
675                         if (ifa->ifa_dstaddr)
676                                 ifr.ifra_broadaddr = *ifa->ifa_dstaddr;
677                         if (in_control(NULL, SIOCDIFADDR, (caddr_t)&ifr, ifp,
678                                        NULL) == 0)
679                                 continue;
680                 }
681 #endif /* INET */
682 #ifdef INET6
683                 if (ifa->ifa_addr && ifa->ifa_addr->sa_family == AF_INET6) {
684 #ifdef IFADDR_DEBUG_VERBOSE
685                         int i;
686
687                         kprintf("purge in6 addr %p: ", ifa);
688                         for (i = 0; i < ncpus; ++i)
689                                 kprintf("%d ", ifa->ifa_containers[i].ifa_refcnt);
690                         kprintf("\n");
691 #endif
692
693                         in6_purgeaddr(ifa);
694                         /* ifp_addrhead is already updated */
695                         continue;
696                 }
697 #endif /* INET6 */
698                 ifa_ifunlink(ifa, ifp);
699                 ifa_destroy(ifa);
700         }
701 }
702
703 /*
704  * Detach an interface, removing it from the
705  * list of "active" interfaces.
706  */
707 void
708 if_detach(struct ifnet *ifp)
709 {
710         struct radix_node_head  *rnh;
711         int i;
712         int cpu, origcpu;
713         struct domain *dp;
714
715         EVENTHANDLER_INVOKE(ifnet_detach_event, ifp);
716
717         /*
718          * Remove routes and flush queues.
719          */
720         crit_enter();
721 #ifdef DEVICE_POLLING
722         if (ifp->if_flags & IFF_POLLING)
723                 ether_poll_deregister(ifp);
724 #endif
725 #ifdef IFPOLL_ENABLE
726         if (ifp->if_flags & IFF_NPOLLING)
727                 ifpoll_deregister(ifp);
728 #endif
729         if_down(ifp);
730
731         if (ifq_is_enabled(&ifp->if_snd))
732                 altq_disable(&ifp->if_snd);
733         if (ifq_is_attached(&ifp->if_snd))
734                 altq_detach(&ifp->if_snd);
735
736         /*
737          * Clean up all addresses.
738          */
739         ifp->if_lladdr = NULL;
740
741         if_purgeaddrs_nolink(ifp);
742         if (!TAILQ_EMPTY(&ifp->if_addrheads[mycpuid])) {
743                 struct ifaddr *ifa;
744
745                 ifa = TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa;
746                 KASSERT(ifa->ifa_addr->sa_family == AF_LINK,
747                         ("non-link ifaddr is left on if_addrheads"));
748
749                 ifa_ifunlink(ifa, ifp);
750                 ifa_destroy(ifa);
751                 KASSERT(TAILQ_EMPTY(&ifp->if_addrheads[mycpuid]),
752                         ("there are still ifaddrs left on if_addrheads"));
753         }
754
755 #ifdef INET
756         /*
757          * Remove all IPv4 kernel structures related to ifp.
758          */
759         in_ifdetach(ifp);
760 #endif
761
762 #ifdef INET6
763         /*
764          * Remove all IPv6 kernel structs related to ifp.  This should be done
765          * before removing routing entries below, since IPv6 interface direct
766          * routes are expected to be removed by the IPv6-specific kernel API.
767          * Otherwise, the kernel will detect some inconsistency and bark it.
768          */
769         in6_ifdetach(ifp);
770 #endif
771
772         /*
773          * Delete all remaining routes using this interface
774          * Unfortuneatly the only way to do this is to slog through
775          * the entire routing table looking for routes which point
776          * to this interface...oh well...
777          */
778         origcpu = mycpuid;
779         for (cpu = 0; cpu < ncpus2; cpu++) {
780                 lwkt_migratecpu(cpu);
781                 for (i = 1; i <= AF_MAX; i++) {
782                         if ((rnh = rt_tables[cpu][i]) == NULL)
783                                 continue;
784                         rnh->rnh_walktree(rnh, if_rtdel, ifp);
785                 }
786         }
787         lwkt_migratecpu(origcpu);
788
789         /* Announce that the interface is gone. */
790         rt_ifannouncemsg(ifp, IFAN_DEPARTURE);
791         devctl_notify("IFNET", ifp->if_xname, "DETACH", NULL);
792
793         SLIST_FOREACH(dp, &domains, dom_next)
794                 if (dp->dom_ifdetach && ifp->if_afdata[dp->dom_family])
795                         (*dp->dom_ifdetach)(ifp,
796                                 ifp->if_afdata[dp->dom_family]);
797
798         /*
799          * Remove interface from ifindex2ifp[] and maybe decrement if_index.
800          */
801         ifindex2ifnet[ifp->if_index] = NULL;
802         while (if_index > 0 && ifindex2ifnet[if_index] == NULL)
803                 if_index--;
804
805         TAILQ_REMOVE(&ifnet, ifp, if_link);
806         kfree(ifp->if_addrheads, M_IFADDR);
807         kfree(ifp->if_start_nmsg, M_LWKTMSG);
808         crit_exit();
809 }
810
811 /*
812  * Delete Routes for a Network Interface
813  *
814  * Called for each routing entry via the rnh->rnh_walktree() call above
815  * to delete all route entries referencing a detaching network interface.
816  *
817  * Arguments:
818  *      rn      pointer to node in the routing table
819  *      arg     argument passed to rnh->rnh_walktree() - detaching interface
820  *
821  * Returns:
822  *      0       successful
823  *      errno   failed - reason indicated
824  *
825  */
826 static int
827 if_rtdel(struct radix_node *rn, void *arg)
828 {
829         struct rtentry  *rt = (struct rtentry *)rn;
830         struct ifnet    *ifp = arg;
831         int             err;
832
833         if (rt->rt_ifp == ifp) {
834
835                 /*
836                  * Protect (sorta) against walktree recursion problems
837                  * with cloned routes
838                  */
839                 if (!(rt->rt_flags & RTF_UP))
840                         return (0);
841
842                 err = rtrequest(RTM_DELETE, rt_key(rt), rt->rt_gateway,
843                                 rt_mask(rt), rt->rt_flags,
844                                 NULL);
845                 if (err) {
846                         log(LOG_WARNING, "if_rtdel: error %d\n", err);
847                 }
848         }
849
850         return (0);
851 }
852
853 /*
854  * Locate an interface based on a complete address.
855  */
856 struct ifaddr *
857 ifa_ifwithaddr(struct sockaddr *addr)
858 {
859         struct ifnet *ifp;
860
861         TAILQ_FOREACH(ifp, &ifnet, if_link) {
862                 struct ifaddr_container *ifac;
863
864                 TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
865                         struct ifaddr *ifa = ifac->ifa;
866
867                         if (ifa->ifa_addr->sa_family != addr->sa_family)
868                                 continue;
869                         if (sa_equal(addr, ifa->ifa_addr))
870                                 return (ifa);
871                         if ((ifp->if_flags & IFF_BROADCAST) &&
872                             ifa->ifa_broadaddr &&
873                             /* IPv6 doesn't have broadcast */
874                             ifa->ifa_broadaddr->sa_len != 0 &&
875                             sa_equal(ifa->ifa_broadaddr, addr))
876                                 return (ifa);
877                 }
878         }
879         return (NULL);
880 }
881 /*
882  * Locate the point to point interface with a given destination address.
883  */
884 struct ifaddr *
885 ifa_ifwithdstaddr(struct sockaddr *addr)
886 {
887         struct ifnet *ifp;
888
889         TAILQ_FOREACH(ifp, &ifnet, if_link) {
890                 struct ifaddr_container *ifac;
891
892                 if (!(ifp->if_flags & IFF_POINTOPOINT))
893                         continue;
894
895                 TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
896                         struct ifaddr *ifa = ifac->ifa;
897
898                         if (ifa->ifa_addr->sa_family != addr->sa_family)
899                                 continue;
900                         if (ifa->ifa_dstaddr &&
901                             sa_equal(addr, ifa->ifa_dstaddr))
902                                 return (ifa);
903                 }
904         }
905         return (NULL);
906 }
907
908 /*
909  * Find an interface on a specific network.  If many, choice
910  * is most specific found.
911  */
912 struct ifaddr *
913 ifa_ifwithnet(struct sockaddr *addr)
914 {
915         struct ifnet *ifp;
916         struct ifaddr *ifa_maybe = NULL;
917         u_int af = addr->sa_family;
918         char *addr_data = addr->sa_data, *cplim;
919
920         /*
921          * AF_LINK addresses can be looked up directly by their index number,
922          * so do that if we can.
923          */
924         if (af == AF_LINK) {
925                 struct sockaddr_dl *sdl = (struct sockaddr_dl *)addr;
926
927                 if (sdl->sdl_index && sdl->sdl_index <= if_index)
928                         return (ifindex2ifnet[sdl->sdl_index]->if_lladdr);
929         }
930
931         /*
932          * Scan though each interface, looking for ones that have
933          * addresses in this address family.
934          */
935         TAILQ_FOREACH(ifp, &ifnet, if_link) {
936                 struct ifaddr_container *ifac;
937
938                 TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
939                         struct ifaddr *ifa = ifac->ifa;
940                         char *cp, *cp2, *cp3;
941
942                         if (ifa->ifa_addr->sa_family != af)
943 next:                           continue;
944                         if (af == AF_INET && ifp->if_flags & IFF_POINTOPOINT) {
945                                 /*
946                                  * This is a bit broken as it doesn't
947                                  * take into account that the remote end may
948                                  * be a single node in the network we are
949                                  * looking for.
950                                  * The trouble is that we don't know the
951                                  * netmask for the remote end.
952                                  */
953                                 if (ifa->ifa_dstaddr != NULL &&
954                                     sa_equal(addr, ifa->ifa_dstaddr))
955                                         return (ifa);
956                         } else {
957                                 /*
958                                  * if we have a special address handler,
959                                  * then use it instead of the generic one.
960                                  */
961                                 if (ifa->ifa_claim_addr) {
962                                         if ((*ifa->ifa_claim_addr)(ifa, addr)) {
963                                                 return (ifa);
964                                         } else {
965                                                 continue;
966                                         }
967                                 }
968
969                                 /*
970                                  * Scan all the bits in the ifa's address.
971                                  * If a bit dissagrees with what we are
972                                  * looking for, mask it with the netmask
973                                  * to see if it really matters.
974                                  * (A byte at a time)
975                                  */
976                                 if (ifa->ifa_netmask == 0)
977                                         continue;
978                                 cp = addr_data;
979                                 cp2 = ifa->ifa_addr->sa_data;
980                                 cp3 = ifa->ifa_netmask->sa_data;
981                                 cplim = ifa->ifa_netmask->sa_len +
982                                         (char *)ifa->ifa_netmask;
983                                 while (cp3 < cplim)
984                                         if ((*cp++ ^ *cp2++) & *cp3++)
985                                                 goto next; /* next address! */
986                                 /*
987                                  * If the netmask of what we just found
988                                  * is more specific than what we had before
989                                  * (if we had one) then remember the new one
990                                  * before continuing to search
991                                  * for an even better one.
992                                  */
993                                 if (ifa_maybe == 0 ||
994                                     rn_refines((char *)ifa->ifa_netmask,
995                                                (char *)ifa_maybe->ifa_netmask))
996                                         ifa_maybe = ifa;
997                         }
998                 }
999         }
1000         return (ifa_maybe);
1001 }
1002
1003 /*
1004  * Find an interface address specific to an interface best matching
1005  * a given address.
1006  */
1007 struct ifaddr *
1008 ifaof_ifpforaddr(struct sockaddr *addr, struct ifnet *ifp)
1009 {
1010         struct ifaddr_container *ifac;
1011         char *cp, *cp2, *cp3;
1012         char *cplim;
1013         struct ifaddr *ifa_maybe = 0;
1014         u_int af = addr->sa_family;
1015
1016         if (af >= AF_MAX)
1017                 return (0);
1018         TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
1019                 struct ifaddr *ifa = ifac->ifa;
1020
1021                 if (ifa->ifa_addr->sa_family != af)
1022                         continue;
1023                 if (ifa_maybe == 0)
1024                         ifa_maybe = ifa;
1025                 if (ifa->ifa_netmask == NULL) {
1026                         if (sa_equal(addr, ifa->ifa_addr) ||
1027                             (ifa->ifa_dstaddr != NULL &&
1028                              sa_equal(addr, ifa->ifa_dstaddr)))
1029                                 return (ifa);
1030                         continue;
1031                 }
1032                 if (ifp->if_flags & IFF_POINTOPOINT) {
1033                         if (sa_equal(addr, ifa->ifa_dstaddr))
1034                                 return (ifa);
1035                 } else {
1036                         cp = addr->sa_data;
1037                         cp2 = ifa->ifa_addr->sa_data;
1038                         cp3 = ifa->ifa_netmask->sa_data;
1039                         cplim = ifa->ifa_netmask->sa_len + (char *)ifa->ifa_netmask;
1040                         for (; cp3 < cplim; cp3++)
1041                                 if ((*cp++ ^ *cp2++) & *cp3)
1042                                         break;
1043                         if (cp3 == cplim)
1044                                 return (ifa);
1045                 }
1046         }
1047         return (ifa_maybe);
1048 }
1049
1050 /*
1051  * Default action when installing a route with a Link Level gateway.
1052  * Lookup an appropriate real ifa to point to.
1053  * This should be moved to /sys/net/link.c eventually.
1054  */
1055 static void
1056 link_rtrequest(int cmd, struct rtentry *rt, struct rt_addrinfo *info)
1057 {
1058         struct ifaddr *ifa;
1059         struct sockaddr *dst;
1060         struct ifnet *ifp;
1061
1062         if (cmd != RTM_ADD || (ifa = rt->rt_ifa) == NULL ||
1063             (ifp = ifa->ifa_ifp) == NULL || (dst = rt_key(rt)) == NULL)
1064                 return;
1065         ifa = ifaof_ifpforaddr(dst, ifp);
1066         if (ifa != NULL) {
1067                 IFAFREE(rt->rt_ifa);
1068                 IFAREF(ifa);
1069                 rt->rt_ifa = ifa;
1070                 if (ifa->ifa_rtrequest && ifa->ifa_rtrequest != link_rtrequest)
1071                         ifa->ifa_rtrequest(cmd, rt, info);
1072         }
1073 }
1074
1075 /*
1076  * Mark an interface down and notify protocols of
1077  * the transition.
1078  * NOTE: must be called at splnet or eqivalent.
1079  */
1080 void
1081 if_unroute(struct ifnet *ifp, int flag, int fam)
1082 {
1083         struct ifaddr_container *ifac;
1084
1085         ifp->if_flags &= ~flag;
1086         getmicrotime(&ifp->if_lastchange);
1087         TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
1088                 struct ifaddr *ifa = ifac->ifa;
1089
1090                 if (fam == PF_UNSPEC || (fam == ifa->ifa_addr->sa_family))
1091                         kpfctlinput(PRC_IFDOWN, ifa->ifa_addr);
1092         }
1093         ifq_purge(&ifp->if_snd);
1094         rt_ifmsg(ifp);
1095 }
1096
1097 /*
1098  * Mark an interface up and notify protocols of
1099  * the transition.
1100  * NOTE: must be called at splnet or eqivalent.
1101  */
1102 void
1103 if_route(struct ifnet *ifp, int flag, int fam)
1104 {
1105         struct ifaddr_container *ifac;
1106
1107         ifq_purge(&ifp->if_snd);
1108         ifp->if_flags |= flag;
1109         getmicrotime(&ifp->if_lastchange);
1110         TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
1111                 struct ifaddr *ifa = ifac->ifa;
1112
1113                 if (fam == PF_UNSPEC || (fam == ifa->ifa_addr->sa_family))
1114                         kpfctlinput(PRC_IFUP, ifa->ifa_addr);
1115         }
1116         rt_ifmsg(ifp);
1117 #ifdef INET6
1118         in6_if_up(ifp);
1119 #endif
1120 }
1121
1122 /*
1123  * Mark an interface down and notify protocols of the transition.  An
1124  * interface going down is also considered to be a synchronizing event.
1125  * We must ensure that all packet processing related to the interface
1126  * has completed before we return so e.g. the caller can free the ifnet
1127  * structure that the mbufs may be referencing.
1128  *
1129  * NOTE: must be called at splnet or eqivalent.
1130  */
1131 void
1132 if_down(struct ifnet *ifp)
1133 {
1134         if_unroute(ifp, IFF_UP, AF_UNSPEC);
1135         netmsg_service_sync();
1136 }
1137
1138 /*
1139  * Mark an interface up and notify protocols of
1140  * the transition.
1141  * NOTE: must be called at splnet or eqivalent.
1142  */
1143 void
1144 if_up(struct ifnet *ifp)
1145 {
1146         if_route(ifp, IFF_UP, AF_UNSPEC);
1147 }
1148
1149 /*
1150  * Process a link state change.
1151  * NOTE: must be called at splsoftnet or equivalent.
1152  */
1153 void
1154 if_link_state_change(struct ifnet *ifp)
1155 {
1156         int link_state = ifp->if_link_state;
1157
1158         rt_ifmsg(ifp);
1159         devctl_notify("IFNET", ifp->if_xname,
1160             (link_state == LINK_STATE_UP) ? "LINK_UP" : "LINK_DOWN", NULL);
1161 }
1162
1163 /*
1164  * Handle interface watchdog timer routines.  Called
1165  * from softclock, we decrement timers (if set) and
1166  * call the appropriate interface routine on expiration.
1167  */
1168 static void
1169 if_slowtimo(void *arg)
1170 {
1171         struct ifnet *ifp;
1172
1173         crit_enter();
1174
1175         TAILQ_FOREACH(ifp, &ifnet, if_link) {
1176                 if (ifp->if_timer == 0 || --ifp->if_timer)
1177                         continue;
1178                 if (ifp->if_watchdog) {
1179                         if (ifnet_tryserialize_all(ifp)) {
1180                                 (*ifp->if_watchdog)(ifp);
1181                                 ifnet_deserialize_all(ifp);
1182                         } else {
1183                                 /* try again next timeout */
1184                                 ++ifp->if_timer;
1185                         }
1186                 }
1187         }
1188
1189         crit_exit();
1190
1191         callout_reset(&if_slowtimo_timer, hz / IFNET_SLOWHZ, if_slowtimo, NULL);
1192 }
1193
1194 /*
1195  * Map interface name to
1196  * interface structure pointer.
1197  */
1198 struct ifnet *
1199 ifunit(const char *name)
1200 {
1201         struct ifnet *ifp;
1202
1203         /*
1204          * Search all the interfaces for this name/number
1205          */
1206
1207         TAILQ_FOREACH(ifp, &ifnet, if_link) {
1208                 if (strncmp(ifp->if_xname, name, IFNAMSIZ) == 0)
1209                         break;
1210         }
1211         return (ifp);
1212 }
1213
1214
1215 /*
1216  * Map interface name in a sockaddr_dl to
1217  * interface structure pointer.
1218  */
1219 struct ifnet *
1220 if_withname(struct sockaddr *sa)
1221 {
1222         char ifname[IFNAMSIZ+1];
1223         struct sockaddr_dl *sdl = (struct sockaddr_dl *)sa;
1224
1225         if ( (sa->sa_family != AF_LINK) || (sdl->sdl_nlen == 0) ||
1226              (sdl->sdl_nlen > IFNAMSIZ) )
1227                 return NULL;
1228
1229         /*
1230          * ifunit wants a null-terminated name.  It may not be null-terminated
1231          * in the sockaddr.  We don't want to change the caller's sockaddr,
1232          * and there might not be room to put the trailing null anyway, so we
1233          * make a local copy that we know we can null terminate safely.
1234          */
1235
1236         bcopy(sdl->sdl_data, ifname, sdl->sdl_nlen);
1237         ifname[sdl->sdl_nlen] = '\0';
1238         return ifunit(ifname);
1239 }
1240
1241
1242 /*
1243  * Interface ioctls.
1244  */
1245 int
1246 ifioctl(struct socket *so, u_long cmd, caddr_t data, struct ucred *cred)
1247 {
1248         struct ifnet *ifp;
1249         struct ifreq *ifr;
1250         struct ifstat *ifs;
1251         int error;
1252         short oif_flags;
1253         int new_flags;
1254         size_t namelen, onamelen;
1255         char new_name[IFNAMSIZ];
1256         struct ifaddr *ifa;
1257         struct sockaddr_dl *sdl;
1258
1259         switch (cmd) {
1260
1261         case SIOCGIFCONF:
1262         case OSIOCGIFCONF:
1263                 return (ifconf(cmd, data, cred));
1264         }
1265         ifr = (struct ifreq *)data;
1266
1267         switch (cmd) {
1268         case SIOCIFCREATE:
1269         case SIOCIFDESTROY:
1270                 if ((error = priv_check_cred(cred, PRIV_ROOT, 0)) != 0)
1271                         return (error);
1272                 return ((cmd == SIOCIFCREATE) ?
1273                         if_clone_create(ifr->ifr_name, sizeof(ifr->ifr_name)) :
1274                         if_clone_destroy(ifr->ifr_name));
1275
1276         case SIOCIFGCLONERS:
1277                 return (if_clone_list((struct if_clonereq *)data));
1278         }
1279
1280         ifp = ifunit(ifr->ifr_name);
1281         if (ifp == 0)
1282                 return (ENXIO);
1283         switch (cmd) {
1284
1285         case SIOCGIFINDEX:
1286                 ifr->ifr_index = ifp->if_index;
1287                 break;
1288
1289         case SIOCGIFFLAGS:
1290                 ifr->ifr_flags = ifp->if_flags;
1291                 ifr->ifr_flagshigh = ifp->if_flags >> 16;
1292                 break;
1293
1294         case SIOCGIFCAP:
1295                 ifr->ifr_reqcap = ifp->if_capabilities;
1296                 ifr->ifr_curcap = ifp->if_capenable;
1297                 break;
1298
1299         case SIOCGIFMETRIC:
1300                 ifr->ifr_metric = ifp->if_metric;
1301                 break;
1302
1303         case SIOCGIFMTU:
1304                 ifr->ifr_mtu = ifp->if_mtu;
1305                 break;
1306
1307         case SIOCGIFPHYS:
1308                 ifr->ifr_phys = ifp->if_physical;
1309                 break;
1310
1311         case SIOCGIFPOLLCPU:
1312 #ifdef DEVICE_POLLING
1313                 ifr->ifr_pollcpu = ifp->if_poll_cpuid;
1314 #else
1315                 ifr->ifr_pollcpu = -1;
1316 #endif
1317                 break;
1318
1319         case SIOCSIFPOLLCPU:
1320 #ifdef DEVICE_POLLING
1321                 if ((ifp->if_flags & IFF_POLLING) == 0)
1322                         ether_pollcpu_register(ifp, ifr->ifr_pollcpu);
1323 #endif
1324                 break;
1325
1326         case SIOCSIFFLAGS:
1327                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1328                 if (error)
1329                         return (error);
1330                 new_flags = (ifr->ifr_flags & 0xffff) |
1331                     (ifr->ifr_flagshigh << 16);
1332                 if (ifp->if_flags & IFF_SMART) {
1333                         /* Smart drivers twiddle their own routes */
1334                 } else if (ifp->if_flags & IFF_UP &&
1335                     (new_flags & IFF_UP) == 0) {
1336                         crit_enter();
1337                         if_down(ifp);
1338                         crit_exit();
1339                 } else if (new_flags & IFF_UP &&
1340                     (ifp->if_flags & IFF_UP) == 0) {
1341                         crit_enter();
1342                         if_up(ifp);
1343                         crit_exit();
1344                 }
1345
1346 #ifdef DEVICE_POLLING
1347                 if ((new_flags ^ ifp->if_flags) & IFF_POLLING) {
1348                         if (new_flags & IFF_POLLING) {
1349                                 ether_poll_register(ifp);
1350                         } else {
1351                                 ether_poll_deregister(ifp);
1352                         }
1353                 }
1354 #endif
1355 #ifdef IFPOLL_ENABLE
1356                 if ((new_flags ^ ifp->if_flags) & IFF_NPOLLING) {
1357                         if (new_flags & IFF_NPOLLING)
1358                                 ifpoll_register(ifp);
1359                         else
1360                                 ifpoll_deregister(ifp);
1361                 }
1362 #endif
1363
1364                 ifp->if_flags = (ifp->if_flags & IFF_CANTCHANGE) |
1365                         (new_flags &~ IFF_CANTCHANGE);
1366                 if (new_flags & IFF_PPROMISC) {
1367                         /* Permanently promiscuous mode requested */
1368                         ifp->if_flags |= IFF_PROMISC;
1369                 } else if (ifp->if_pcount == 0) {
1370                         ifp->if_flags &= ~IFF_PROMISC;
1371                 }
1372                 if (ifp->if_ioctl) {
1373                         ifnet_serialize_all(ifp);
1374                         ifp->if_ioctl(ifp, cmd, data, cred);
1375                         ifnet_deserialize_all(ifp);
1376                 }
1377                 getmicrotime(&ifp->if_lastchange);
1378                 break;
1379
1380         case SIOCSIFCAP:
1381                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1382                 if (error)
1383                         return (error);
1384                 if (ifr->ifr_reqcap & ~ifp->if_capabilities)
1385                         return (EINVAL);
1386                 ifnet_serialize_all(ifp);
1387                 ifp->if_ioctl(ifp, cmd, data, cred);
1388                 ifnet_deserialize_all(ifp);
1389                 break;
1390
1391         case SIOCSIFNAME:
1392                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1393                 if (error != 0)
1394                         return (error);
1395                 error = copyinstr(ifr->ifr_data, new_name, IFNAMSIZ, NULL);
1396                 if (error != 0)
1397                         return (error);
1398                 if (new_name[0] == '\0')
1399                         return (EINVAL);
1400                 if (ifunit(new_name) != NULL)
1401                         return (EEXIST);
1402
1403                 EVENTHANDLER_INVOKE(ifnet_detach_event, ifp);
1404
1405                 /* Announce the departure of the interface. */
1406                 rt_ifannouncemsg(ifp, IFAN_DEPARTURE);
1407
1408                 strlcpy(ifp->if_xname, new_name, sizeof(ifp->if_xname));
1409                 ifa = TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa;
1410                 /* XXX IFA_LOCK(ifa); */
1411                 sdl = (struct sockaddr_dl *)ifa->ifa_addr;
1412                 namelen = strlen(new_name);
1413                 onamelen = sdl->sdl_nlen;
1414                 /*
1415                  * Move the address if needed.  This is safe because we
1416                  * allocate space for a name of length IFNAMSIZ when we
1417                  * create this in if_attach().
1418                  */
1419                 if (namelen != onamelen) {
1420                         bcopy(sdl->sdl_data + onamelen,
1421                             sdl->sdl_data + namelen, sdl->sdl_alen);
1422                 }
1423                 bcopy(new_name, sdl->sdl_data, namelen);
1424                 sdl->sdl_nlen = namelen;
1425                 sdl = (struct sockaddr_dl *)ifa->ifa_netmask;
1426                 bzero(sdl->sdl_data, onamelen);
1427                 while (namelen != 0)
1428                         sdl->sdl_data[--namelen] = 0xff;
1429                 /* XXX IFA_UNLOCK(ifa) */
1430
1431                 EVENTHANDLER_INVOKE(ifnet_attach_event, ifp);
1432
1433                 /* Announce the return of the interface. */
1434                 rt_ifannouncemsg(ifp, IFAN_ARRIVAL);
1435                 break;
1436
1437         case SIOCSIFMETRIC:
1438                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1439                 if (error)
1440                         return (error);
1441                 ifp->if_metric = ifr->ifr_metric;
1442                 getmicrotime(&ifp->if_lastchange);
1443                 break;
1444
1445         case SIOCSIFPHYS:
1446                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1447                 if (error)
1448                         return error;
1449                 if (!ifp->if_ioctl)
1450                         return EOPNOTSUPP;
1451                 ifnet_serialize_all(ifp);
1452                 error = ifp->if_ioctl(ifp, cmd, data, cred);
1453                 ifnet_deserialize_all(ifp);
1454                 if (error == 0)
1455                         getmicrotime(&ifp->if_lastchange);
1456                 return (error);
1457
1458         case SIOCSIFMTU:
1459         {
1460                 u_long oldmtu = ifp->if_mtu;
1461
1462                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1463                 if (error)
1464                         return (error);
1465                 if (ifp->if_ioctl == NULL)
1466                         return (EOPNOTSUPP);
1467                 if (ifr->ifr_mtu < IF_MINMTU || ifr->ifr_mtu > IF_MAXMTU)
1468                         return (EINVAL);
1469                 ifnet_serialize_all(ifp);
1470                 error = ifp->if_ioctl(ifp, cmd, data, cred);
1471                 ifnet_deserialize_all(ifp);
1472                 if (error == 0) {
1473                         getmicrotime(&ifp->if_lastchange);
1474                         rt_ifmsg(ifp);
1475                 }
1476                 /*
1477                  * If the link MTU changed, do network layer specific procedure.
1478                  */
1479                 if (ifp->if_mtu != oldmtu) {
1480 #ifdef INET6
1481                         nd6_setmtu(ifp);
1482 #endif
1483                 }
1484                 return (error);
1485         }
1486
1487         case SIOCADDMULTI:
1488         case SIOCDELMULTI:
1489                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1490                 if (error)
1491                         return (error);
1492
1493                 /* Don't allow group membership on non-multicast interfaces. */
1494                 if ((ifp->if_flags & IFF_MULTICAST) == 0)
1495                         return EOPNOTSUPP;
1496
1497                 /* Don't let users screw up protocols' entries. */
1498                 if (ifr->ifr_addr.sa_family != AF_LINK)
1499                         return EINVAL;
1500
1501                 if (cmd == SIOCADDMULTI) {
1502                         struct ifmultiaddr *ifma;
1503                         error = if_addmulti(ifp, &ifr->ifr_addr, &ifma);
1504                 } else {
1505                         error = if_delmulti(ifp, &ifr->ifr_addr);
1506                 }
1507                 if (error == 0)
1508                         getmicrotime(&ifp->if_lastchange);
1509                 return error;
1510
1511         case SIOCSIFPHYADDR:
1512         case SIOCDIFPHYADDR:
1513 #ifdef INET6
1514         case SIOCSIFPHYADDR_IN6:
1515 #endif
1516         case SIOCSLIFPHYADDR:
1517         case SIOCSIFMEDIA:
1518         case SIOCSIFGENERIC:
1519                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1520                 if (error)
1521                         return (error);
1522                 if (ifp->if_ioctl == 0)
1523                         return (EOPNOTSUPP);
1524                 ifnet_serialize_all(ifp);
1525                 error = ifp->if_ioctl(ifp, cmd, data, cred);
1526                 ifnet_deserialize_all(ifp);
1527                 if (error == 0)
1528                         getmicrotime(&ifp->if_lastchange);
1529                 return error;
1530
1531         case SIOCGIFSTATUS:
1532                 ifs = (struct ifstat *)data;
1533                 ifs->ascii[0] = '\0';
1534
1535         case SIOCGIFPSRCADDR:
1536         case SIOCGIFPDSTADDR:
1537         case SIOCGLIFPHYADDR:
1538         case SIOCGIFMEDIA:
1539         case SIOCGIFGENERIC:
1540                 if (ifp->if_ioctl == NULL)
1541                         return (EOPNOTSUPP);
1542                 ifnet_serialize_all(ifp);
1543                 error = ifp->if_ioctl(ifp, cmd, data, cred);
1544                 ifnet_deserialize_all(ifp);
1545                 return (error);
1546
1547         case SIOCSIFLLADDR:
1548                 error = priv_check_cred(cred, PRIV_ROOT, 0);
1549                 if (error)
1550                         return (error);
1551                 return if_setlladdr(ifp,
1552                     ifr->ifr_addr.sa_data, ifr->ifr_addr.sa_len);
1553
1554         default:
1555                 oif_flags = ifp->if_flags;
1556                 if (so->so_proto == 0)
1557                         return (EOPNOTSUPP);
1558 #ifndef COMPAT_43
1559                 error = so_pru_control(so, cmd, data, ifp);
1560 #else
1561             {
1562                 int ocmd = cmd;
1563
1564                 switch (cmd) {
1565
1566                 case SIOCSIFDSTADDR:
1567                 case SIOCSIFADDR:
1568                 case SIOCSIFBRDADDR:
1569                 case SIOCSIFNETMASK:
1570 #if BYTE_ORDER != BIG_ENDIAN
1571                         if (ifr->ifr_addr.sa_family == 0 &&
1572                             ifr->ifr_addr.sa_len < 16) {
1573                                 ifr->ifr_addr.sa_family = ifr->ifr_addr.sa_len;
1574                                 ifr->ifr_addr.sa_len = 16;
1575                         }
1576 #else
1577                         if (ifr->ifr_addr.sa_len == 0)
1578                                 ifr->ifr_addr.sa_len = 16;
1579 #endif
1580                         break;
1581
1582                 case OSIOCGIFADDR:
1583                         cmd = SIOCGIFADDR;
1584                         break;
1585
1586                 case OSIOCGIFDSTADDR:
1587                         cmd = SIOCGIFDSTADDR;
1588                         break;
1589
1590                 case OSIOCGIFBRDADDR:
1591                         cmd = SIOCGIFBRDADDR;
1592                         break;
1593
1594                 case OSIOCGIFNETMASK:
1595                         cmd = SIOCGIFNETMASK;
1596                 }
1597                 error =  so_pru_control(so, cmd, data, ifp);
1598                 switch (ocmd) {
1599
1600                 case OSIOCGIFADDR:
1601                 case OSIOCGIFDSTADDR:
1602                 case OSIOCGIFBRDADDR:
1603                 case OSIOCGIFNETMASK:
1604                         *(u_short *)&ifr->ifr_addr = ifr->ifr_addr.sa_family;
1605
1606                 }
1607             }
1608 #endif /* COMPAT_43 */
1609
1610                 if ((oif_flags ^ ifp->if_flags) & IFF_UP) {
1611 #ifdef INET6
1612                         DELAY(100);/* XXX: temporary workaround for fxp issue*/
1613                         if (ifp->if_flags & IFF_UP) {
1614                                 crit_enter();
1615                                 in6_if_up(ifp);
1616                                 crit_exit();
1617                         }
1618 #endif
1619                 }
1620                 return (error);
1621
1622         }
1623         return (0);
1624 }
1625
1626 /*
1627  * Set/clear promiscuous mode on interface ifp based on the truth value
1628  * of pswitch.  The calls are reference counted so that only the first
1629  * "on" request actually has an effect, as does the final "off" request.
1630  * Results are undefined if the "off" and "on" requests are not matched.
1631  */
1632 int
1633 ifpromisc(struct ifnet *ifp, int pswitch)
1634 {
1635         struct ifreq ifr;
1636         int error;
1637         int oldflags;
1638
1639         oldflags = ifp->if_flags;
1640         if (ifp->if_flags & IFF_PPROMISC) {
1641                 /* Do nothing if device is in permanently promiscuous mode */
1642                 ifp->if_pcount += pswitch ? 1 : -1;
1643                 return (0);
1644         }
1645         if (pswitch) {
1646                 /*
1647                  * If the device is not configured up, we cannot put it in
1648                  * promiscuous mode.
1649                  */
1650                 if ((ifp->if_flags & IFF_UP) == 0)
1651                         return (ENETDOWN);
1652                 if (ifp->if_pcount++ != 0)
1653                         return (0);
1654                 ifp->if_flags |= IFF_PROMISC;
1655                 log(LOG_INFO, "%s: promiscuous mode enabled\n",
1656                     ifp->if_xname);
1657         } else {
1658                 if (--ifp->if_pcount > 0)
1659                         return (0);
1660                 ifp->if_flags &= ~IFF_PROMISC;
1661                 log(LOG_INFO, "%s: promiscuous mode disabled\n",
1662                     ifp->if_xname);
1663         }
1664         ifr.ifr_flags = ifp->if_flags;
1665         ifr.ifr_flagshigh = ifp->if_flags >> 16;
1666         ifnet_serialize_all(ifp);
1667         error = ifp->if_ioctl(ifp, SIOCSIFFLAGS, (caddr_t)&ifr, NULL);
1668         ifnet_deserialize_all(ifp);
1669         if (error == 0)
1670                 rt_ifmsg(ifp);
1671         else
1672                 ifp->if_flags = oldflags;
1673         return error;
1674 }
1675
1676 /*
1677  * Return interface configuration
1678  * of system.  List may be used
1679  * in later ioctl's (above) to get
1680  * other information.
1681  */
1682 static int
1683 ifconf(u_long cmd, caddr_t data, struct ucred *cred)
1684 {
1685         struct ifconf *ifc = (struct ifconf *)data;
1686         struct ifnet *ifp;
1687         struct sockaddr *sa;
1688         struct ifreq ifr, *ifrp;
1689         int space = ifc->ifc_len, error = 0;
1690
1691         ifrp = ifc->ifc_req;
1692         TAILQ_FOREACH(ifp, &ifnet, if_link) {
1693                 struct ifaddr_container *ifac;
1694                 int addrs;
1695
1696                 if (space <= sizeof ifr)
1697                         break;
1698
1699                 /*
1700                  * Zero the stack declared structure first to prevent
1701                  * memory disclosure.
1702                  */
1703                 bzero(&ifr, sizeof(ifr));
1704                 if (strlcpy(ifr.ifr_name, ifp->if_xname, sizeof(ifr.ifr_name))
1705                     >= sizeof(ifr.ifr_name)) {
1706                         error = ENAMETOOLONG;
1707                         break;
1708                 }
1709
1710                 addrs = 0;
1711                 TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
1712                         struct ifaddr *ifa = ifac->ifa;
1713
1714                         if (space <= sizeof ifr)
1715                                 break;
1716                         sa = ifa->ifa_addr;
1717                         if (cred->cr_prison &&
1718                             prison_if(cred, sa))
1719                                 continue;
1720                         addrs++;
1721 #ifdef COMPAT_43
1722                         if (cmd == OSIOCGIFCONF) {
1723                                 struct osockaddr *osa =
1724                                          (struct osockaddr *)&ifr.ifr_addr;
1725                                 ifr.ifr_addr = *sa;
1726                                 osa->sa_family = sa->sa_family;
1727                                 error = copyout(&ifr, ifrp, sizeof ifr);
1728                                 ifrp++;
1729                         } else
1730 #endif
1731                         if (sa->sa_len <= sizeof(*sa)) {
1732                                 ifr.ifr_addr = *sa;
1733                                 error = copyout(&ifr, ifrp, sizeof ifr);
1734                                 ifrp++;
1735                         } else {
1736                                 if (space < (sizeof ifr) + sa->sa_len -
1737                                             sizeof(*sa))
1738                                         break;
1739                                 space -= sa->sa_len - sizeof(*sa);
1740                                 error = copyout(&ifr, ifrp,
1741                                                 sizeof ifr.ifr_name);
1742                                 if (error == 0)
1743                                         error = copyout(sa, &ifrp->ifr_addr,
1744                                                         sa->sa_len);
1745                                 ifrp = (struct ifreq *)
1746                                         (sa->sa_len + (caddr_t)&ifrp->ifr_addr);
1747                         }
1748                         if (error)
1749                                 break;
1750                         space -= sizeof ifr;
1751                 }
1752                 if (error)
1753                         break;
1754                 if (!addrs) {
1755                         bzero(&ifr.ifr_addr, sizeof ifr.ifr_addr);
1756                         error = copyout(&ifr, ifrp, sizeof ifr);
1757                         if (error)
1758                                 break;
1759                         space -= sizeof ifr;
1760                         ifrp++;
1761                 }
1762         }
1763         ifc->ifc_len -= space;
1764         return (error);
1765 }
1766
1767 /*
1768  * Just like if_promisc(), but for all-multicast-reception mode.
1769  */
1770 int
1771 if_allmulti(struct ifnet *ifp, int onswitch)
1772 {
1773         int error = 0;
1774         struct ifreq ifr;
1775
1776         crit_enter();
1777
1778         if (onswitch) {
1779                 if (ifp->if_amcount++ == 0) {
1780                         ifp->if_flags |= IFF_ALLMULTI;
1781                         ifr.ifr_flags = ifp->if_flags;
1782                         ifr.ifr_flagshigh = ifp->if_flags >> 16;
1783                         ifnet_serialize_all(ifp);
1784                         error = ifp->if_ioctl(ifp, SIOCSIFFLAGS, (caddr_t)&ifr,
1785                                               NULL);
1786                         ifnet_deserialize_all(ifp);
1787                 }
1788         } else {
1789                 if (ifp->if_amcount > 1) {
1790                         ifp->if_amcount--;
1791                 } else {
1792                         ifp->if_amcount = 0;
1793                         ifp->if_flags &= ~IFF_ALLMULTI;
1794                         ifr.ifr_flags = ifp->if_flags;
1795                         ifr.ifr_flagshigh = ifp->if_flags >> 16;
1796                         ifnet_serialize_all(ifp);
1797                         error = ifp->if_ioctl(ifp, SIOCSIFFLAGS, (caddr_t)&ifr,
1798                                               NULL);
1799                         ifnet_deserialize_all(ifp);
1800                 }
1801         }
1802
1803         crit_exit();
1804
1805         if (error == 0)
1806                 rt_ifmsg(ifp);
1807         return error;
1808 }
1809
1810 /*
1811  * Add a multicast listenership to the interface in question.
1812  * The link layer provides a routine which converts
1813  */
1814 int
1815 if_addmulti(
1816         struct ifnet *ifp,      /* interface to manipulate */
1817         struct sockaddr *sa,    /* address to add */
1818         struct ifmultiaddr **retifma)
1819 {
1820         struct sockaddr *llsa, *dupsa;
1821         int error;
1822         struct ifmultiaddr *ifma;
1823
1824         /*
1825          * If the matching multicast address already exists
1826          * then don't add a new one, just add a reference
1827          */
1828         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
1829                 if (sa_equal(sa, ifma->ifma_addr)) {
1830                         ifma->ifma_refcount++;
1831                         if (retifma)
1832                                 *retifma = ifma;
1833                         return 0;
1834                 }
1835         }
1836
1837         /*
1838          * Give the link layer a chance to accept/reject it, and also
1839          * find out which AF_LINK address this maps to, if it isn't one
1840          * already.
1841          */
1842         if (ifp->if_resolvemulti) {
1843                 ifnet_serialize_all(ifp);
1844                 error = ifp->if_resolvemulti(ifp, &llsa, sa);
1845                 ifnet_deserialize_all(ifp);
1846                 if (error) 
1847                         return error;
1848         } else {
1849                 llsa = 0;
1850         }
1851
1852         MALLOC(ifma, struct ifmultiaddr *, sizeof *ifma, M_IFMADDR, M_WAITOK);
1853         MALLOC(dupsa, struct sockaddr *, sa->sa_len, M_IFMADDR, M_WAITOK);
1854         bcopy(sa, dupsa, sa->sa_len);
1855
1856         ifma->ifma_addr = dupsa;
1857         ifma->ifma_lladdr = llsa;
1858         ifma->ifma_ifp = ifp;
1859         ifma->ifma_refcount = 1;
1860         ifma->ifma_protospec = 0;
1861         rt_newmaddrmsg(RTM_NEWMADDR, ifma);
1862
1863         /*
1864          * Some network interfaces can scan the address list at
1865          * interrupt time; lock them out.
1866          */
1867         crit_enter();
1868         LIST_INSERT_HEAD(&ifp->if_multiaddrs, ifma, ifma_link);
1869         crit_exit();
1870         *retifma = ifma;
1871
1872         if (llsa != 0) {
1873                 LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
1874                         if (sa_equal(ifma->ifma_addr, llsa))
1875                                 break;
1876                 }
1877                 if (ifma) {
1878                         ifma->ifma_refcount++;
1879                 } else {
1880                         MALLOC(ifma, struct ifmultiaddr *, sizeof *ifma,
1881                                M_IFMADDR, M_WAITOK);
1882                         MALLOC(dupsa, struct sockaddr *, llsa->sa_len,
1883                                M_IFMADDR, M_WAITOK);
1884                         bcopy(llsa, dupsa, llsa->sa_len);
1885                         ifma->ifma_addr = dupsa;
1886                         ifma->ifma_ifp = ifp;
1887                         ifma->ifma_refcount = 1;
1888                         crit_enter();
1889                         LIST_INSERT_HEAD(&ifp->if_multiaddrs, ifma, ifma_link);
1890                         crit_exit();
1891                 }
1892         }
1893         /*
1894          * We are certain we have added something, so call down to the
1895          * interface to let them know about it.
1896          */
1897         crit_enter();
1898         ifnet_serialize_all(ifp);
1899         ifp->if_ioctl(ifp, SIOCADDMULTI, 0, NULL);
1900         ifnet_deserialize_all(ifp);
1901         crit_exit();
1902
1903         return 0;
1904 }
1905
1906 /*
1907  * Remove a reference to a multicast address on this interface.  Yell
1908  * if the request does not match an existing membership.
1909  */
1910 int
1911 if_delmulti(struct ifnet *ifp, struct sockaddr *sa)
1912 {
1913         struct ifmultiaddr *ifma;
1914
1915         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
1916                 if (sa_equal(sa, ifma->ifma_addr))
1917                         break;
1918         if (ifma == 0)
1919                 return ENOENT;
1920
1921         if (ifma->ifma_refcount > 1) {
1922                 ifma->ifma_refcount--;
1923                 return 0;
1924         }
1925
1926         rt_newmaddrmsg(RTM_DELMADDR, ifma);
1927         sa = ifma->ifma_lladdr;
1928         crit_enter();
1929         LIST_REMOVE(ifma, ifma_link);
1930         /*
1931          * Make sure the interface driver is notified
1932          * in the case of a link layer mcast group being left.
1933          */
1934         if (ifma->ifma_addr->sa_family == AF_LINK && sa == 0) {
1935                 ifnet_serialize_all(ifp);
1936                 ifp->if_ioctl(ifp, SIOCDELMULTI, 0, NULL);
1937                 ifnet_deserialize_all(ifp);
1938         }
1939         crit_exit();
1940         kfree(ifma->ifma_addr, M_IFMADDR);
1941         kfree(ifma, M_IFMADDR);
1942         if (sa == 0)
1943                 return 0;
1944
1945         /*
1946          * Now look for the link-layer address which corresponds to
1947          * this network address.  It had been squirreled away in
1948          * ifma->ifma_lladdr for this purpose (so we don't have
1949          * to call ifp->if_resolvemulti() again), and we saved that
1950          * value in sa above.  If some nasty deleted the
1951          * link-layer address out from underneath us, we can deal because
1952          * the address we stored was is not the same as the one which was
1953          * in the record for the link-layer address.  (So we don't complain
1954          * in that case.)
1955          */
1956         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
1957                 if (sa_equal(sa, ifma->ifma_addr))
1958                         break;
1959         if (ifma == 0)
1960                 return 0;
1961
1962         if (ifma->ifma_refcount > 1) {
1963                 ifma->ifma_refcount--;
1964                 return 0;
1965         }
1966
1967         crit_enter();
1968         ifnet_serialize_all(ifp);
1969         LIST_REMOVE(ifma, ifma_link);
1970         ifp->if_ioctl(ifp, SIOCDELMULTI, 0, NULL);
1971         ifnet_deserialize_all(ifp);
1972         crit_exit();
1973         kfree(ifma->ifma_addr, M_IFMADDR);
1974         kfree(sa, M_IFMADDR);
1975         kfree(ifma, M_IFMADDR);
1976
1977         return 0;
1978 }
1979
1980 /*
1981  * Delete all multicast group membership for an interface.
1982  * Should be used to quickly flush all multicast filters.
1983  */
1984 void
1985 if_delallmulti(struct ifnet *ifp)
1986 {
1987         struct ifmultiaddr *ifma;
1988         struct ifmultiaddr *next;
1989
1990         LIST_FOREACH_MUTABLE(ifma, &ifp->if_multiaddrs, ifma_link, next)
1991                 if_delmulti(ifp, ifma->ifma_addr);
1992 }
1993
1994
1995 /*
1996  * Set the link layer address on an interface.
1997  *
1998  * At this time we only support certain types of interfaces,
1999  * and we don't allow the length of the address to change.
2000  */
2001 int
2002 if_setlladdr(struct ifnet *ifp, const u_char *lladdr, int len)
2003 {
2004         struct sockaddr_dl *sdl;
2005         struct ifreq ifr;
2006
2007         sdl = IF_LLSOCKADDR(ifp);
2008         if (sdl == NULL)
2009                 return (EINVAL);
2010         if (len != sdl->sdl_alen)       /* don't allow length to change */
2011                 return (EINVAL);
2012         switch (ifp->if_type) {
2013         case IFT_ETHER:                 /* these types use struct arpcom */
2014         case IFT_XETHER:
2015         case IFT_L2VLAN:
2016                 bcopy(lladdr, ((struct arpcom *)ifp->if_softc)->ac_enaddr, len);
2017                 bcopy(lladdr, LLADDR(sdl), len);
2018                 break;
2019         default:
2020                 return (ENODEV);
2021         }
2022         /*
2023          * If the interface is already up, we need
2024          * to re-init it in order to reprogram its
2025          * address filter.
2026          */
2027         ifnet_serialize_all(ifp);
2028         if ((ifp->if_flags & IFF_UP) != 0) {
2029                 struct ifaddr_container *ifac;
2030
2031                 ifp->if_flags &= ~IFF_UP;
2032                 ifr.ifr_flags = ifp->if_flags;
2033                 ifr.ifr_flagshigh = ifp->if_flags >> 16;
2034                 ifp->if_ioctl(ifp, SIOCSIFFLAGS, (caddr_t)&ifr,
2035                               NULL);
2036                 ifp->if_flags |= IFF_UP;
2037                 ifr.ifr_flags = ifp->if_flags;
2038                 ifr.ifr_flagshigh = ifp->if_flags >> 16;
2039                 ifp->if_ioctl(ifp, SIOCSIFFLAGS, (caddr_t)&ifr,
2040                                  NULL);
2041 #ifdef INET
2042                 /*
2043                  * Also send gratuitous ARPs to notify other nodes about
2044                  * the address change.
2045                  */
2046                 TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
2047                         struct ifaddr *ifa = ifac->ifa;
2048
2049                         if (ifa->ifa_addr != NULL &&
2050                             ifa->ifa_addr->sa_family == AF_INET)
2051                                 arp_ifinit(ifp, ifa);
2052                 }
2053 #endif
2054         }
2055         ifnet_deserialize_all(ifp);
2056         return (0);
2057 }
2058
2059 struct ifmultiaddr *
2060 ifmaof_ifpforaddr(struct sockaddr *sa, struct ifnet *ifp)
2061 {
2062         struct ifmultiaddr *ifma;
2063
2064         LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
2065                 if (sa_equal(ifma->ifma_addr, sa))
2066                         break;
2067
2068         return ifma;
2069 }
2070
2071 /*
2072  * This function locates the first real ethernet MAC from a network
2073  * card and loads it into node, returning 0 on success or ENOENT if
2074  * no suitable interfaces were found.  It is used by the uuid code to
2075  * generate a unique 6-byte number.
2076  */
2077 int
2078 if_getanyethermac(uint16_t *node, int minlen)
2079 {
2080         struct ifnet *ifp;
2081         struct sockaddr_dl *sdl;
2082
2083         TAILQ_FOREACH(ifp, &ifnet, if_link) {
2084                 if (ifp->if_type != IFT_ETHER)
2085                         continue;
2086                 sdl = IF_LLSOCKADDR(ifp);
2087                 if (sdl->sdl_alen < minlen)
2088                         continue;
2089                 bcopy(((struct arpcom *)ifp->if_softc)->ac_enaddr, node,
2090                       minlen);
2091                 return(0);
2092         }
2093         return (ENOENT);
2094 }
2095
2096 /*
2097  * The name argument must be a pointer to storage which will last as
2098  * long as the interface does.  For physical devices, the result of
2099  * device_get_name(dev) is a good choice and for pseudo-devices a
2100  * static string works well.
2101  */
2102 void
2103 if_initname(struct ifnet *ifp, const char *name, int unit)
2104 {
2105         ifp->if_dname = name;
2106         ifp->if_dunit = unit;
2107         if (unit != IF_DUNIT_NONE)
2108                 ksnprintf(ifp->if_xname, IFNAMSIZ, "%s%d", name, unit);
2109         else
2110                 strlcpy(ifp->if_xname, name, IFNAMSIZ);
2111 }
2112
2113 int
2114 if_printf(struct ifnet *ifp, const char *fmt, ...)
2115 {
2116         __va_list ap;
2117         int retval;
2118
2119         retval = kprintf("%s: ", ifp->if_xname);
2120         __va_start(ap, fmt);
2121         retval += kvprintf(fmt, ap);
2122         __va_end(ap);
2123         return (retval);
2124 }
2125
2126 struct ifnet *
2127 if_alloc(uint8_t type)
2128 {
2129         struct ifnet *ifp;
2130
2131         ifp = kmalloc(sizeof(struct ifnet), M_IFNET, M_WAITOK|M_ZERO);
2132
2133         ifp->if_type = type;
2134
2135         if (if_com_alloc[type] != NULL) {
2136                 ifp->if_l2com = if_com_alloc[type](type, ifp);
2137                 if (ifp->if_l2com == NULL) {
2138                         kfree(ifp, M_IFNET);
2139                         return (NULL);
2140                 }
2141         }
2142         return (ifp);
2143 }
2144
2145 void
2146 if_free(struct ifnet *ifp)
2147 {
2148         kfree(ifp, M_IFNET);
2149 }
2150
2151 void
2152 ifq_set_classic(struct ifaltq *ifq)
2153 {
2154         ifq->altq_enqueue = ifq_classic_enqueue;
2155         ifq->altq_dequeue = ifq_classic_dequeue;
2156         ifq->altq_request = ifq_classic_request;
2157 }
2158
2159 int
2160 ifq_classic_enqueue(struct ifaltq *ifq, struct mbuf *m,
2161                     struct altq_pktattr *pa __unused)
2162 {
2163         logifq(enqueue, ifq);
2164         if (IF_QFULL(ifq)) {
2165                 m_freem(m);
2166                 return(ENOBUFS);
2167         } else {
2168                 IF_ENQUEUE(ifq, m);
2169                 return(0);
2170         }       
2171 }
2172
2173 struct mbuf *
2174 ifq_classic_dequeue(struct ifaltq *ifq, struct mbuf *mpolled, int op)
2175 {
2176         struct mbuf *m;
2177
2178         switch (op) {
2179         case ALTDQ_POLL:
2180                 IF_POLL(ifq, m);
2181                 break;
2182         case ALTDQ_REMOVE:
2183                 logifq(dequeue, ifq);
2184                 IF_DEQUEUE(ifq, m);
2185                 break;
2186         default:
2187                 panic("unsupported ALTQ dequeue op: %d", op);
2188         }
2189         KKASSERT(mpolled == NULL || mpolled == m);
2190         return(m);
2191 }
2192
2193 int
2194 ifq_classic_request(struct ifaltq *ifq, int req, void *arg)
2195 {
2196         switch (req) {
2197         case ALTRQ_PURGE:
2198                 IF_DRAIN(ifq);
2199                 break;
2200         default:
2201                 panic("unsupported ALTQ request: %d", req);
2202         }
2203         return(0);
2204 }
2205
2206 int
2207 ifq_dispatch(struct ifnet *ifp, struct mbuf *m, struct altq_pktattr *pa)
2208 {
2209         struct ifaltq *ifq = &ifp->if_snd;
2210         int running = 0, error, start = 0;
2211
2212         ASSERT_IFNET_NOT_SERIALIZED_TX(ifp);
2213
2214         ALTQ_LOCK(ifq);
2215         error = ifq_enqueue_locked(ifq, m, pa);
2216         if (error) {
2217                 ALTQ_UNLOCK(ifq);
2218                 return error;
2219         }
2220         if (!ifq->altq_started) {
2221                 /*
2222                  * Hold the interlock of ifnet.if_start
2223                  */
2224                 ifq->altq_started = 1;
2225                 start = 1;
2226         }
2227         ALTQ_UNLOCK(ifq);
2228
2229         ifp->if_obytes += m->m_pkthdr.len;
2230         if (m->m_flags & M_MCAST)
2231                 ifp->if_omcasts++;
2232
2233         if (!start) {
2234                 logifstart(avoid, ifp);
2235                 return 0;
2236         }
2237
2238         if (ifq_dispatch_schedonly) {
2239                 /*
2240                  * Always schedule ifnet.if_start on ifnet's CPU,
2241                  * short circuit the rest of this function.
2242                  */
2243                 logifstart(sched, ifp);
2244                 if_start_schedule(ifp);
2245                 return 0;
2246         }
2247
2248         /*
2249          * Try to do direct ifnet.if_start first, if there is
2250          * contention on ifnet's serializer, ifnet.if_start will
2251          * be scheduled on ifnet's CPU.
2252          */
2253         if (!ifnet_tryserialize_tx(ifp)) {
2254                 /*
2255                  * ifnet serializer contention happened,
2256                  * ifnet.if_start is scheduled on ifnet's
2257                  * CPU, and we keep going.
2258                  */
2259                 logifstart(contend_sched, ifp);
2260                 if_start_schedule(ifp);
2261                 return 0;
2262         }
2263
2264         if ((ifp->if_flags & IFF_OACTIVE) == 0) {
2265                 logifstart(run, ifp);
2266                 ifp->if_start(ifp);
2267                 if ((ifp->if_flags &
2268                      (IFF_OACTIVE | IFF_RUNNING)) == IFF_RUNNING)
2269                         running = 1;
2270         }
2271
2272         ifnet_deserialize_tx(ifp);
2273
2274         if (ifq_dispatch_schednochk || if_start_need_schedule(ifq, running)) {
2275                 /*
2276                  * More data need to be transmitted, ifnet.if_start is
2277                  * scheduled on ifnet's CPU, and we keep going.
2278                  * NOTE: ifnet.if_start interlock is not released.
2279                  */
2280                 logifstart(sched, ifp);
2281                 if_start_schedule(ifp);
2282         }
2283         return 0;
2284 }
2285
2286 void *
2287 ifa_create(int size, int flags)
2288 {
2289         struct ifaddr *ifa;
2290         int i;
2291
2292         KASSERT(size >= sizeof(*ifa), ("ifaddr size too small\n"));
2293
2294         ifa = kmalloc(size, M_IFADDR, flags | M_ZERO);
2295         if (ifa == NULL)
2296                 return NULL;
2297
2298         ifa->ifa_containers = kmalloc(ncpus * sizeof(struct ifaddr_container),
2299                                       M_IFADDR, M_WAITOK | M_ZERO);
2300         ifa->ifa_ncnt = ncpus;
2301         for (i = 0; i < ncpus; ++i) {
2302                 struct ifaddr_container *ifac = &ifa->ifa_containers[i];
2303
2304                 ifac->ifa_magic = IFA_CONTAINER_MAGIC;
2305                 ifac->ifa = ifa;
2306                 ifac->ifa_refcnt = 1;
2307         }
2308 #ifdef IFADDR_DEBUG
2309         kprintf("alloc ifa %p %d\n", ifa, size);
2310 #endif
2311         return ifa;
2312 }
2313
2314 void
2315 ifac_free(struct ifaddr_container *ifac, int cpu_id)
2316 {
2317         struct ifaddr *ifa = ifac->ifa;
2318
2319         KKASSERT(ifac->ifa_magic == IFA_CONTAINER_MAGIC);
2320         KKASSERT(ifac->ifa_refcnt == 0);
2321         KASSERT(ifac->ifa_listmask == 0,
2322                 ("ifa is still on %#x lists\n", ifac->ifa_listmask));
2323
2324         ifac->ifa_magic = IFA_CONTAINER_DEAD;
2325
2326 #ifdef IFADDR_DEBUG_VERBOSE
2327         kprintf("try free ifa %p cpu_id %d\n", ifac->ifa, cpu_id);
2328 #endif
2329
2330         KASSERT(ifa->ifa_ncnt > 0 && ifa->ifa_ncnt <= ncpus,
2331                 ("invalid # of ifac, %d\n", ifa->ifa_ncnt));
2332         if (atomic_fetchadd_int(&ifa->ifa_ncnt, -1) == 1) {
2333 #ifdef IFADDR_DEBUG
2334                 kprintf("free ifa %p\n", ifa);
2335 #endif
2336                 kfree(ifa->ifa_containers, M_IFADDR);
2337                 kfree(ifa, M_IFADDR);
2338         }
2339 }
2340
2341 static void
2342 ifa_iflink_dispatch(struct netmsg *nmsg)
2343 {
2344         struct netmsg_ifaddr *msg = (struct netmsg_ifaddr *)nmsg;
2345         struct ifaddr *ifa = msg->ifa;
2346         struct ifnet *ifp = msg->ifp;
2347         int cpu = mycpuid;
2348         struct ifaddr_container *ifac;
2349
2350         crit_enter();
2351
2352         ifac = &ifa->ifa_containers[cpu];
2353         ASSERT_IFAC_VALID(ifac);
2354         KASSERT((ifac->ifa_listmask & IFA_LIST_IFADDRHEAD) == 0,
2355                 ("ifaddr is on if_addrheads\n"));
2356
2357         ifac->ifa_listmask |= IFA_LIST_IFADDRHEAD;
2358         if (msg->tail)
2359                 TAILQ_INSERT_TAIL(&ifp->if_addrheads[cpu], ifac, ifa_link);
2360         else
2361                 TAILQ_INSERT_HEAD(&ifp->if_addrheads[cpu], ifac, ifa_link);
2362
2363         crit_exit();
2364
2365         ifa_forwardmsg(&nmsg->nm_lmsg, cpu + 1);
2366 }
2367
2368 void
2369 ifa_iflink(struct ifaddr *ifa, struct ifnet *ifp, int tail)
2370 {
2371         struct netmsg_ifaddr msg;
2372
2373         netmsg_init(&msg.netmsg, NULL, &curthread->td_msgport,
2374                     0, ifa_iflink_dispatch);
2375         msg.ifa = ifa;
2376         msg.ifp = ifp;
2377         msg.tail = tail;
2378
2379         ifa_domsg(&msg.netmsg.nm_lmsg, 0);
2380 }
2381
2382 static void
2383 ifa_ifunlink_dispatch(struct netmsg *nmsg)
2384 {
2385         struct netmsg_ifaddr *msg = (struct netmsg_ifaddr *)nmsg;
2386         struct ifaddr *ifa = msg->ifa;
2387         struct ifnet *ifp = msg->ifp;
2388         int cpu = mycpuid;
2389         struct ifaddr_container *ifac;
2390
2391         crit_enter();
2392
2393         ifac = &ifa->ifa_containers[cpu];
2394         ASSERT_IFAC_VALID(ifac);
2395         KASSERT(ifac->ifa_listmask & IFA_LIST_IFADDRHEAD,
2396                 ("ifaddr is not on if_addrhead\n"));
2397
2398         TAILQ_REMOVE(&ifp->if_addrheads[cpu], ifac, ifa_link);
2399         ifac->ifa_listmask &= ~IFA_LIST_IFADDRHEAD;
2400
2401         crit_exit();
2402
2403         ifa_forwardmsg(&nmsg->nm_lmsg, cpu + 1);
2404 }
2405
2406 void
2407 ifa_ifunlink(struct ifaddr *ifa, struct ifnet *ifp)
2408 {
2409         struct netmsg_ifaddr msg;
2410
2411         netmsg_init(&msg.netmsg, NULL, &curthread->td_msgport,
2412                     0, ifa_ifunlink_dispatch);
2413         msg.ifa = ifa;
2414         msg.ifp = ifp;
2415
2416         ifa_domsg(&msg.netmsg.nm_lmsg, 0);
2417 }
2418
2419 static void
2420 ifa_destroy_dispatch(struct netmsg *nmsg)
2421 {
2422         struct netmsg_ifaddr *msg = (struct netmsg_ifaddr *)nmsg;
2423
2424         IFAFREE(msg->ifa);
2425         ifa_forwardmsg(&nmsg->nm_lmsg, mycpuid + 1);
2426 }
2427
2428 void
2429 ifa_destroy(struct ifaddr *ifa)
2430 {
2431         struct netmsg_ifaddr msg;
2432
2433         netmsg_init(&msg.netmsg, NULL, &curthread->td_msgport,
2434                     0, ifa_destroy_dispatch);
2435         msg.ifa = ifa;
2436
2437         ifa_domsg(&msg.netmsg.nm_lmsg, 0);
2438 }
2439
2440 struct lwkt_port *
2441 ifnet_portfn(int cpu)
2442 {
2443         return &ifnet_threads[cpu].td_msgport;
2444 }
2445
2446 void
2447 ifnet_forwardmsg(struct lwkt_msg *lmsg, int next_cpu)
2448 {
2449         KKASSERT(next_cpu > mycpuid && next_cpu <= ncpus);
2450
2451         if (next_cpu < ncpus)
2452                 lwkt_forwardmsg(ifnet_portfn(next_cpu), lmsg);
2453         else
2454                 lwkt_replymsg(lmsg, 0);
2455 }
2456
2457 int
2458 ifnet_domsg(struct lwkt_msg *lmsg, int cpu)
2459 {
2460         KKASSERT(cpu < ncpus);
2461         return lwkt_domsg(ifnet_portfn(cpu), lmsg, 0);
2462 }
2463
2464 void
2465 ifnet_sendmsg(struct lwkt_msg *lmsg, int cpu)
2466 {
2467         KKASSERT(cpu < ncpus);
2468         lwkt_sendmsg(ifnet_portfn(cpu), lmsg);
2469 }
2470
2471 static void
2472 ifnetinit(void *dummy __unused)
2473 {
2474         int i;
2475
2476         for (i = 0; i < ncpus; ++i) {
2477                 struct thread *thr = &ifnet_threads[i];
2478
2479                 lwkt_create(netmsg_service_loop, &ifnet_mpsafe_thread, NULL,
2480                             thr, TDF_NETWORK | TDF_MPSAFE, i, "ifnet %d", i);
2481                 netmsg_service_port_init(&thr->td_msgport);
2482         }
2483 }
2484
2485 struct ifnet *
2486 ifnet_byindex(unsigned short idx)
2487 {
2488         if (idx > if_index)
2489                 return NULL;
2490         return ifindex2ifnet[idx];
2491 }
2492
2493 struct ifaddr *
2494 ifaddr_byindex(unsigned short idx)
2495 {
2496         struct ifnet *ifp;
2497
2498         ifp = ifnet_byindex(idx);
2499         if (!ifp)
2500                 return NULL;
2501         return TAILQ_FIRST(&ifp->if_addrheads[mycpuid])->ifa;
2502 }
2503
2504 void
2505 if_register_com_alloc(u_char type,
2506     if_com_alloc_t *a, if_com_free_t *f)
2507 {
2508
2509         KASSERT(if_com_alloc[type] == NULL,
2510             ("if_register_com_alloc: %d already registered", type));
2511         KASSERT(if_com_free[type] == NULL,
2512             ("if_register_com_alloc: %d free already registered", type));
2513
2514         if_com_alloc[type] = a;
2515         if_com_free[type] = f;
2516 }
2517
2518 void
2519 if_deregister_com_alloc(u_char type)
2520 {
2521
2522         KASSERT(if_com_alloc[type] != NULL,
2523             ("if_deregister_com_alloc: %d not registered", type));
2524         KASSERT(if_com_free[type] != NULL,
2525             ("if_deregister_com_alloc: %d free not registered", type));
2526         if_com_alloc[type] = NULL;
2527         if_com_free[type] = NULL;
2528 }