1 1.535 ozaki /* $NetBSD: if.c,v 1.535 2025/06/12 10:23:43 ozaki-r Exp $ */ 2 1.53 thorpej 3 1.53 thorpej /*- 4 1.219 ad * Copyright (c) 1999, 2000, 2001, 2008 The NetBSD Foundation, Inc. 5 1.53 thorpej * All rights reserved. 6 1.53 thorpej * 7 1.53 thorpej * This code is derived from software contributed to The NetBSD Foundation 8 1.150 peter * by William Studenmund and Jason R. Thorpe. 9 1.53 thorpej * 10 1.53 thorpej * Redistribution and use in source and binary forms, with or without 11 1.53 thorpej * modification, are permitted provided that the following conditions 12 1.53 thorpej * are met: 13 1.53 thorpej * 1. Redistributions of source code must retain the above copyright 14 1.53 thorpej * notice, this list of conditions and the following disclaimer. 15 1.53 thorpej * 2. Redistributions in binary form must reproduce the above copyright 16 1.53 thorpej * notice, this list of conditions and the following disclaimer in the 17 1.53 thorpej * documentation and/or other materials provided with the distribution. 18 1.53 thorpej * 19 1.53 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.53 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.53 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.53 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.53 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.53 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.53 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.53 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.53 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.53 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.53 thorpej * POSSIBILITY OF SUCH DAMAGE. 30 1.53 thorpej */ 31 1.49 itojun 32 1.49 itojun /* 33 1.49 itojun * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. 34 1.49 itojun * All rights reserved. 35 1.154 perry * 36 1.49 itojun * Redistribution and use in source and binary forms, with or without 37 1.49 itojun * modification, are permitted provided that the following conditions 38 1.49 itojun * are met: 39 1.49 itojun * 1. Redistributions of source code must retain the above copyright 40 1.49 itojun * notice, this list of conditions and the following disclaimer. 41 1.49 itojun * 2. Redistributions in binary form must reproduce the above copyright 42 1.49 itojun * notice, this list of conditions and the following disclaimer in the 43 1.49 itojun * documentation and/or other materials provided with the distribution. 44 1.49 itojun * 3. Neither the name of the project nor the names of its contributors 45 1.49 itojun * may be used to endorse or promote products derived from this software 46 1.49 itojun * without specific prior written permission. 47 1.154 perry * 48 1.49 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND 49 1.49 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 50 1.49 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 51 1.49 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 52 1.49 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 53 1.49 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 54 1.49 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 55 1.49 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 56 1.49 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 57 1.49 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 58 1.49 itojun * SUCH DAMAGE. 59 1.49 itojun */ 60 1.16 cgd 61 1.1 cgd /* 62 1.15 mycroft * Copyright (c) 1980, 1986, 1993 63 1.15 mycroft * The Regents of the University of California. All rights reserved. 64 1.1 cgd * 65 1.1 cgd * Redistribution and use in source and binary forms, with or without 66 1.1 cgd * modification, are permitted provided that the following conditions 67 1.1 cgd * are met: 68 1.1 cgd * 1. Redistributions of source code must retain the above copyright 69 1.1 cgd * notice, this list of conditions and the following disclaimer. 70 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright 71 1.1 cgd * notice, this list of conditions and the following disclaimer in the 72 1.1 cgd * documentation and/or other materials provided with the distribution. 73 1.126 agc * 3. Neither the name of the University nor the names of its contributors 74 1.1 cgd * may be used to endorse or promote products derived from this software 75 1.1 cgd * without specific prior written permission. 76 1.1 cgd * 77 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 78 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 79 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 80 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 81 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 82 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 83 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 84 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 85 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 86 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 87 1.1 cgd * SUCH DAMAGE. 88 1.1 cgd * 89 1.44 fvdl * @(#)if.c 8.5 (Berkeley) 1/9/95 90 1.1 cgd */ 91 1.99 lukem 92 1.99 lukem #include <sys/cdefs.h> 93 1.535 ozaki __KERNEL_RCSID(0, "$NetBSD: if.c,v 1.535 2025/06/12 10:23:43 ozaki-r Exp $"); 94 1.50 thorpej 95 1.308 ozaki #if defined(_KERNEL_OPT) 96 1.50 thorpej #include "opt_inet.h" 97 1.352 knakahar #include "opt_ipsec.h" 98 1.51 bouyer #include "opt_atalk.h" 99 1.288 ozaki #include "opt_wlan.h" 100 1.308 ozaki #include "opt_net_mpsafe.h" 101 1.417 ozaki #include "opt_mrouting.h" 102 1.308 ozaki #endif 103 1.1 cgd 104 1.8 mycroft #include <sys/param.h> 105 1.8 mycroft #include <sys/mbuf.h> 106 1.8 mycroft #include <sys/systm.h> 107 1.59 thorpej #include <sys/callout.h> 108 1.15 mycroft #include <sys/proc.h> 109 1.8 mycroft #include <sys/socket.h> 110 1.8 mycroft #include <sys/socketvar.h> 111 1.56 thorpej #include <sys/domain.h> 112 1.8 mycroft #include <sys/protosw.h> 113 1.8 mycroft #include <sys/kernel.h> 114 1.8 mycroft #include <sys/ioctl.h> 115 1.133 jonathan #include <sys/sysctl.h> 116 1.159 dyoung #include <sys/syslog.h> 117 1.165 elad #include <sys/kauth.h> 118 1.254 dyoung #include <sys/kmem.h> 119 1.276 rmind #include <sys/xcall.h> 120 1.323 ozaki #include <sys/cpu.h> 121 1.323 ozaki #include <sys/intr.h> 122 1.447 pgoyette #include <sys/module_hook.h> 123 1.444 pgoyette #include <sys/compat_stub.h> 124 1.465 maxv #include <sys/msan.h> 125 1.492 yamaguch #include <sys/hook.h> 126 1.1 cgd 127 1.8 mycroft #include <net/if.h> 128 1.8 mycroft #include <net/if_dl.h> 129 1.66 onoe #include <net/if_ether.h> 130 1.124 dyoung #include <net/if_media.h> 131 1.132 dyoung #include <net80211/ieee80211.h> 132 1.132 dyoung #include <net80211/ieee80211_ioctl.h> 133 1.8 mycroft #include <net/if_types.h> 134 1.53 thorpej #include <net/route.h> 135 1.262 christos #include <sys/module.h> 136 1.51 bouyer #ifdef NETATALK 137 1.51 bouyer #include <netatalk/at_extern.h> 138 1.51 bouyer #include <netatalk/at.h> 139 1.51 bouyer #endif 140 1.143 itojun #include <net/pfil.h> 141 1.278 he #include <netinet/in.h> 142 1.276 rmind #include <netinet/in_var.h> 143 1.352 knakahar #include <netinet/ip_encap.h> 144 1.368 ozaki #include <net/bpf.h> 145 1.1 cgd 146 1.49 itojun #ifdef INET6 147 1.72 thorpej #include <netinet6/in6_var.h> 148 1.108 itojun #include <netinet6/nd6.h> 149 1.49 itojun #endif 150 1.117 thorpej 151 1.288 ozaki #include "ether.h" 152 1.288 ozaki 153 1.442 rin #include "bridge.h" 154 1.442 rin #if NBRIDGE > 0 155 1.442 rin #include <net/if_bridgevar.h> 156 1.442 rin #endif 157 1.442 rin 158 1.166 liamjfoy #include "carp.h" 159 1.166 liamjfoy #if NCARP > 0 160 1.166 liamjfoy #include <netinet/ip_carp.h> 161 1.166 liamjfoy #endif 162 1.166 liamjfoy 163 1.186 christos #include <compat/sys/sockio.h> 164 1.161 christos 165 1.117 thorpej MALLOC_DEFINE(M_IFADDR, "ifaddr", "interface address"); 166 1.117 thorpej MALLOC_DEFINE(M_IFMADDR, "ether_multi", "link-level multicast address"); 167 1.49 itojun 168 1.274 rmind /* 169 1.480 roy * XXX reusing (ifp)->if_snd->ifq_lock rather than having another spin mutex 170 1.480 roy * for each ifnet. It doesn't matter because: 171 1.480 roy * - if IFEF_MPSAFE is enabled, if_snd isn't used and lock contentions on 172 1.480 roy * ifq_lock don't happen 173 1.480 roy * - if IFEF_MPSAFE is disabled, there is no lock contention on ifq_lock 174 1.480 roy * because if_snd, if_link_state_change and if_link_state_change_process 175 1.480 roy * are all called with KERNEL_LOCK 176 1.480 roy */ 177 1.480 roy #define IF_LINK_STATE_CHANGE_LOCK(ifp) \ 178 1.480 roy mutex_enter((ifp)->if_snd.ifq_lock) 179 1.480 roy #define IF_LINK_STATE_CHANGE_UNLOCK(ifp) \ 180 1.480 roy mutex_exit((ifp)->if_snd.ifq_lock) 181 1.480 roy 182 1.480 roy /* 183 1.274 rmind * Global list of interfaces. 184 1.274 rmind */ 185 1.334 ozaki /* DEPRECATED. Remove it once kvm(3) users disappeared */ 186 1.274 rmind struct ifnet_head ifnet_list; 187 1.334 ozaki 188 1.334 ozaki struct pslist_head ifnet_pslist; 189 1.274 rmind static ifnet_t ** ifindex2ifnet = NULL; 190 1.274 rmind static u_int if_index = 1; 191 1.274 rmind static size_t if_indexlim = 0; 192 1.274 rmind static uint64_t index_gen; 193 1.334 ozaki /* Mutex to protect the above objects. */ 194 1.334 ozaki kmutex_t ifnet_mtx __cacheline_aligned; 195 1.385 ozaki static struct psref_class *ifnet_psref_class __read_mostly; 196 1.334 ozaki static pserialize_t ifnet_psz; 197 1.471 thorpej static struct workqueue *ifnet_link_state_wq __read_mostly; 198 1.334 ozaki 199 1.513 riastrad static struct workqueue *if_slowtimo_wq __read_mostly; 200 1.513 riastrad 201 1.292 christos static kmutex_t if_clone_mtx; 202 1.274 rmind 203 1.274 rmind struct ifnet *lo0ifp; 204 1.1 cgd int ifqmaxlen = IFQ_MAXLEN; 205 1.104 matt 206 1.357 ozaki struct psref_class *ifa_psref_class __read_mostly; 207 1.357 ozaki 208 1.362 ozaki static int if_delroute_matcher(struct rtentry *, void *); 209 1.53 thorpej 210 1.379 knakahar static bool if_is_unit(const char *); 211 1.163 thorpej static struct if_clone *if_clone_lookup(const char *, int *); 212 1.63 thorpej 213 1.163 thorpej static LIST_HEAD(, if_clone) if_cloners = LIST_HEAD_INITIALIZER(if_cloners); 214 1.163 thorpej static int if_cloners_count; 215 1.63 thorpej 216 1.265 rmind /* Packet filtering hook for interfaces. */ 217 1.369 christos pfil_head_t * if_pfil __read_mostly; 218 1.143 itojun 219 1.239 elad static kauth_listener_t if_listener; 220 1.239 elad 221 1.273 pooka static int doifioctl(struct socket *, u_long, void *, struct lwp *); 222 1.234 dyoung static void sysctl_sndq_setup(struct sysctllog **, const char *, 223 1.234 dyoung struct ifaltq *); 224 1.513 riastrad static void if_slowtimo_intr(void *); 225 1.513 riastrad static void if_slowtimo_work(struct work *, void *); 226 1.514 riastrad static int sysctl_if_watchdog(SYSCTLFN_PROTO); 227 1.514 riastrad static void sysctl_watchdog_setup(struct ifnet *); 228 1.302 ozaki static void if_attachdomain1(struct ifnet *); 229 1.302 ozaki static int ifconf(u_long, void *); 230 1.345 knakahar static int if_transmit(struct ifnet *, struct mbuf *); 231 1.302 ozaki static int if_clone_create(const char *); 232 1.302 ozaki static int if_clone_destroy(const char *); 233 1.471 thorpej static void if_link_state_change_work(struct work *, void *); 234 1.403 ozaki static void if_up_locked(struct ifnet *); 235 1.403 ozaki static void _if_down(struct ifnet *); 236 1.403 ozaki static void if_down_deactivated(struct ifnet *); 237 1.95 itojun 238 1.323 ozaki struct if_percpuq { 239 1.323 ozaki struct ifnet *ipq_ifp; 240 1.323 ozaki void *ipq_si; 241 1.323 ozaki struct percpu *ipq_ifqs; /* struct ifqueue */ 242 1.323 ozaki }; 243 1.323 ozaki 244 1.323 ozaki static struct mbuf *if_percpuq_dequeue(struct if_percpuq *); 245 1.323 ozaki 246 1.327 knakahar static void if_percpuq_drops(void *, void *, struct cpu_info *); 247 1.327 knakahar static int sysctl_percpuq_drops_handler(SYSCTLFN_PROTO); 248 1.327 knakahar static void sysctl_percpuq_setup(struct sysctllog **, const char *, 249 1.327 knakahar struct if_percpuq *); 250 1.327 knakahar 251 1.364 ozaki struct if_deferred_start { 252 1.364 ozaki struct ifnet *ids_ifp; 253 1.364 ozaki void (*ids_if_start)(struct ifnet *); 254 1.364 ozaki void *ids_si; 255 1.364 ozaki }; 256 1.364 ozaki 257 1.364 ozaki static void if_deferred_start_softint(void *); 258 1.364 ozaki static void if_deferred_start_common(struct ifnet *); 259 1.364 ozaki static void if_deferred_start_destroy(struct ifnet *); 260 1.364 ozaki 261 1.513 riastrad struct if_slowtimo_data { 262 1.513 riastrad kmutex_t isd_lock; 263 1.513 riastrad struct callout isd_ch; 264 1.513 riastrad struct work isd_work; 265 1.513 riastrad struct ifnet *isd_ifp; 266 1.513 riastrad bool isd_queued; 267 1.513 riastrad bool isd_dying; 268 1.514 riastrad bool isd_trigger; 269 1.513 riastrad }; 270 1.513 riastrad 271 1.447 pgoyette /* 272 1.447 pgoyette * Hook for if_vlan - needed by if_agr 273 1.447 pgoyette */ 274 1.447 pgoyette struct if_vlan_vlan_input_hook_t if_vlan_vlan_input_hook; 275 1.447 pgoyette 276 1.370 ozaki static void if_sysctl_setup(struct sysctllog **); 277 1.370 ozaki 278 1.239 elad static int 279 1.239 elad if_listener_cb(kauth_cred_t cred, kauth_action_t action, void *cookie, 280 1.239 elad void *arg0, void *arg1, void *arg2, void *arg3) 281 1.239 elad { 282 1.239 elad int result; 283 1.239 elad enum kauth_network_req req; 284 1.239 elad 285 1.239 elad result = KAUTH_RESULT_DEFER; 286 1.473 joerg req = (enum kauth_network_req)(uintptr_t)arg1; 287 1.239 elad 288 1.239 elad if (action != KAUTH_NETWORK_INTERFACE) 289 1.239 elad return result; 290 1.239 elad 291 1.239 elad if ((req == KAUTH_REQ_NETWORK_INTERFACE_GET) || 292 1.239 elad (req == KAUTH_REQ_NETWORK_INTERFACE_SET)) 293 1.239 elad result = KAUTH_RESULT_ALLOW; 294 1.239 elad 295 1.239 elad return result; 296 1.239 elad } 297 1.239 elad 298 1.1 cgd /* 299 1.1 cgd * Network interface utility routines. 300 1.1 cgd * 301 1.1 cgd * Routines with ifa_ifwith* names take sockaddr *'s as 302 1.1 cgd * parameters. 303 1.1 cgd */ 304 1.4 andrew void 305 1.163 thorpej ifinit(void) 306 1.1 cgd { 307 1.370 ozaki 308 1.392 ozaki #if (defined(INET) || defined(INET6)) 309 1.352 knakahar encapinit(); 310 1.352 knakahar #endif 311 1.352 knakahar 312 1.239 elad if_listener = kauth_listen_scope(KAUTH_SCOPE_NETWORK, 313 1.239 elad if_listener_cb, NULL); 314 1.273 pooka 315 1.273 pooka /* interfaces are available, inform socket code */ 316 1.273 pooka ifioctl = doifioctl; 317 1.227 yamt } 318 1.227 yamt 319 1.227 yamt /* 320 1.227 yamt * XXX Initialization before configure(). 321 1.227 yamt * XXX hack to get pfil_add_hook working in autoconf. 322 1.227 yamt */ 323 1.227 yamt void 324 1.227 yamt ifinit1(void) 325 1.227 yamt { 326 1.471 thorpej int error __diagused; 327 1.424 msaitoh 328 1.424 msaitoh #ifdef NET_MPSAFE 329 1.424 msaitoh printf("NET_MPSAFE enabled\n"); 330 1.424 msaitoh #endif 331 1.424 msaitoh 332 1.292 christos mutex_init(&if_clone_mtx, MUTEX_DEFAULT, IPL_NONE); 333 1.357 ozaki 334 1.274 rmind TAILQ_INIT(&ifnet_list); 335 1.334 ozaki mutex_init(&ifnet_mtx, MUTEX_DEFAULT, IPL_NONE); 336 1.334 ozaki ifnet_psz = pserialize_create(); 337 1.334 ozaki ifnet_psref_class = psref_class_create("ifnet", IPL_SOFTNET); 338 1.357 ozaki ifa_psref_class = psref_class_create("ifa", IPL_SOFTNET); 339 1.471 thorpej error = workqueue_create(&ifnet_link_state_wq, "iflnkst", 340 1.472 thorpej if_link_state_change_work, NULL, PRI_SOFTNET, IPL_NET, 341 1.471 thorpej WQ_MPSAFE); 342 1.471 thorpej KASSERT(error == 0); 343 1.334 ozaki PSLIST_INIT(&ifnet_pslist); 344 1.357 ozaki 345 1.513 riastrad error = workqueue_create(&if_slowtimo_wq, "ifwdog", 346 1.513 riastrad if_slowtimo_work, NULL, PRI_SOFTNET, IPL_SOFTCLOCK, WQ_MPSAFE); 347 1.513 riastrad KASSERTMSG(error == 0, "error=%d", error); 348 1.513 riastrad 349 1.274 rmind if_indexlim = 8; 350 1.274 rmind 351 1.265 rmind if_pfil = pfil_head_create(PFIL_TYPE_IFNET, NULL); 352 1.265 rmind KASSERT(if_pfil != NULL); 353 1.286 ozaki 354 1.468 thorpej #if NETHER > 0 || defined(NETATALK) || defined(WLAN) 355 1.286 ozaki etherinit(); 356 1.288 ozaki #endif 357 1.1 cgd } 358 1.1 cgd 359 1.429 ozaki /* XXX must be after domaininit() */ 360 1.429 ozaki void 361 1.429 ozaki ifinit_post(void) 362 1.429 ozaki { 363 1.429 ozaki 364 1.429 ozaki if_sysctl_setup(NULL); 365 1.429 ozaki } 366 1.429 ozaki 367 1.274 rmind ifnet_t * 368 1.226 christos if_alloc(u_char type) 369 1.226 christos { 370 1.528 msaitoh 371 1.274 rmind return kmem_zalloc(sizeof(ifnet_t), KM_SLEEP); 372 1.226 christos } 373 1.226 christos 374 1.226 christos void 375 1.274 rmind if_free(ifnet_t *ifp) 376 1.251 dyoung { 377 1.528 msaitoh 378 1.274 rmind kmem_free(ifp, sizeof(ifnet_t)); 379 1.251 dyoung } 380 1.251 dyoung 381 1.251 dyoung void 382 1.226 christos if_initname(struct ifnet *ifp, const char *name, int unit) 383 1.226 christos { 384 1.528 msaitoh 385 1.226 christos (void)snprintf(ifp->if_xname, sizeof(ifp->if_xname), 386 1.226 christos "%s%d", name, unit); 387 1.226 christos } 388 1.226 christos 389 1.53 thorpej /* 390 1.53 thorpej * Null routines used while an interface is going away. These routines 391 1.53 thorpej * just return an error. 392 1.53 thorpej */ 393 1.53 thorpej 394 1.53 thorpej int 395 1.177 christos if_nulloutput(struct ifnet *ifp, struct mbuf *m, 396 1.331 ozaki const struct sockaddr *so, const struct rtentry *rt) 397 1.53 thorpej { 398 1.53 thorpej 399 1.185 dyoung return ENXIO; 400 1.53 thorpej } 401 1.53 thorpej 402 1.53 thorpej void 403 1.177 christos if_nullinput(struct ifnet *ifp, struct mbuf *m) 404 1.53 thorpej { 405 1.53 thorpej 406 1.53 thorpej /* Nothing. */ 407 1.53 thorpej } 408 1.53 thorpej 409 1.53 thorpej void 410 1.177 christos if_nullstart(struct ifnet *ifp) 411 1.53 thorpej { 412 1.53 thorpej 413 1.53 thorpej /* Nothing. */ 414 1.53 thorpej } 415 1.53 thorpej 416 1.53 thorpej int 417 1.332 knakahar if_nulltransmit(struct ifnet *ifp, struct mbuf *m) 418 1.332 knakahar { 419 1.332 knakahar 420 1.383 knakahar m_freem(m); 421 1.332 knakahar return ENXIO; 422 1.332 knakahar } 423 1.332 knakahar 424 1.332 knakahar int 425 1.183 christos if_nullioctl(struct ifnet *ifp, u_long cmd, void *data) 426 1.53 thorpej { 427 1.53 thorpej 428 1.185 dyoung return ENXIO; 429 1.53 thorpej } 430 1.53 thorpej 431 1.53 thorpej int 432 1.177 christos if_nullinit(struct ifnet *ifp) 433 1.53 thorpej { 434 1.53 thorpej 435 1.185 dyoung return ENXIO; 436 1.53 thorpej } 437 1.53 thorpej 438 1.53 thorpej void 439 1.177 christos if_nullstop(struct ifnet *ifp, int disable) 440 1.75 thorpej { 441 1.75 thorpej 442 1.75 thorpej /* Nothing. */ 443 1.75 thorpej } 444 1.75 thorpej 445 1.75 thorpej void 446 1.295 ozaki if_nullslowtimo(struct ifnet *ifp) 447 1.53 thorpej { 448 1.53 thorpej 449 1.53 thorpej /* Nothing. */ 450 1.53 thorpej } 451 1.53 thorpej 452 1.53 thorpej void 453 1.177 christos if_nulldrain(struct ifnet *ifp) 454 1.53 thorpej { 455 1.53 thorpej 456 1.53 thorpej /* Nothing. */ 457 1.53 thorpej } 458 1.53 thorpej 459 1.210 dyoung void 460 1.231 dyoung if_set_sadl(struct ifnet *ifp, const void *lla, u_char addrlen, bool factory) 461 1.210 dyoung { 462 1.210 dyoung struct ifaddr *ifa; 463 1.210 dyoung struct sockaddr_dl *sdl; 464 1.210 dyoung 465 1.210 dyoung ifp->if_addrlen = addrlen; 466 1.210 dyoung if_alloc_sadl(ifp); 467 1.210 dyoung ifa = ifp->if_dl; 468 1.210 dyoung sdl = satosdl(ifa->ifa_addr); 469 1.210 dyoung 470 1.210 dyoung (void)sockaddr_dl_setaddr(sdl, sdl->sdl_len, lla, ifp->if_addrlen); 471 1.231 dyoung if (factory) { 472 1.426 ozaki KASSERT(ifp->if_hwdl == NULL); 473 1.231 dyoung ifp->if_hwdl = ifp->if_dl; 474 1.291 rmind ifaref(ifp->if_hwdl); 475 1.231 dyoung } 476 1.223 dyoung /* TBD routing socket */ 477 1.210 dyoung } 478 1.210 dyoung 479 1.211 dyoung struct ifaddr * 480 1.211 dyoung if_dl_create(const struct ifnet *ifp, const struct sockaddr_dl **sdlp) 481 1.211 dyoung { 482 1.211 dyoung unsigned socksize, ifasize; 483 1.211 dyoung int addrlen, namelen; 484 1.211 dyoung struct sockaddr_dl *mask, *sdl; 485 1.211 dyoung struct ifaddr *ifa; 486 1.211 dyoung 487 1.211 dyoung namelen = strlen(ifp->if_xname); 488 1.211 dyoung addrlen = ifp->if_addrlen; 489 1.528 msaitoh socksize = roundup(sockaddr_dl_measure(namelen, addrlen), 490 1.528 msaitoh sizeof(long)); 491 1.211 dyoung ifasize = sizeof(*ifa) + 2 * socksize; 492 1.455 msaitoh ifa = malloc(ifasize, M_IFADDR, M_WAITOK | M_ZERO); 493 1.211 dyoung 494 1.211 dyoung sdl = (struct sockaddr_dl *)(ifa + 1); 495 1.211 dyoung mask = (struct sockaddr_dl *)(socksize + (char *)sdl); 496 1.211 dyoung 497 1.211 dyoung sockaddr_dl_init(sdl, socksize, ifp->if_index, ifp->if_type, 498 1.211 dyoung ifp->if_xname, namelen, NULL, addrlen); 499 1.398 christos mask->sdl_family = AF_LINK; 500 1.211 dyoung mask->sdl_len = sockaddr_dl_measure(namelen, 0); 501 1.211 dyoung memset(&mask->sdl_data[0], 0xff, namelen); 502 1.211 dyoung ifa->ifa_rtrequest = link_rtrequest; 503 1.211 dyoung ifa->ifa_addr = (struct sockaddr *)sdl; 504 1.211 dyoung ifa->ifa_netmask = (struct sockaddr *)mask; 505 1.357 ozaki ifa_psref_init(ifa); 506 1.211 dyoung 507 1.211 dyoung *sdlp = sdl; 508 1.211 dyoung 509 1.211 dyoung return ifa; 510 1.211 dyoung } 511 1.211 dyoung 512 1.223 dyoung static void 513 1.223 dyoung if_sadl_setrefs(struct ifnet *ifp, struct ifaddr *ifa) 514 1.223 dyoung { 515 1.223 dyoung const struct sockaddr_dl *sdl; 516 1.316 ozaki 517 1.223 dyoung ifp->if_dl = ifa; 518 1.291 rmind ifaref(ifa); 519 1.223 dyoung sdl = satosdl(ifa->ifa_addr); 520 1.223 dyoung ifp->if_sadl = sdl; 521 1.223 dyoung } 522 1.223 dyoung 523 1.1 cgd /* 524 1.81 thorpej * Allocate the link level name for the specified interface. This 525 1.81 thorpej * is an attachment helper. It must be called after ifp->if_addrlen 526 1.81 thorpej * is initialized, which may not be the case when if_attach() is 527 1.81 thorpej * called. 528 1.81 thorpej */ 529 1.81 thorpej void 530 1.81 thorpej if_alloc_sadl(struct ifnet *ifp) 531 1.81 thorpej { 532 1.81 thorpej struct ifaddr *ifa; 533 1.211 dyoung const struct sockaddr_dl *sdl; 534 1.84 thorpej 535 1.84 thorpej /* 536 1.84 thorpej * If the interface already has a link name, release it 537 1.84 thorpej * now. This is useful for interfaces that can change 538 1.84 thorpej * link types, and thus switch link names often. 539 1.84 thorpej */ 540 1.84 thorpej if (ifp->if_sadl != NULL) 541 1.426 ozaki if_free_sadl(ifp, 0); 542 1.81 thorpej 543 1.211 dyoung ifa = if_dl_create(ifp, &sdl); 544 1.195 dyoung 545 1.207 dyoung ifa_insert(ifp, ifa); 546 1.223 dyoung if_sadl_setrefs(ifp, ifa); 547 1.223 dyoung } 548 1.223 dyoung 549 1.223 dyoung static void 550 1.223 dyoung if_deactivate_sadl(struct ifnet *ifp) 551 1.223 dyoung { 552 1.223 dyoung struct ifaddr *ifa; 553 1.223 dyoung 554 1.223 dyoung KASSERT(ifp->if_dl != NULL); 555 1.223 dyoung 556 1.223 dyoung ifa = ifp->if_dl; 557 1.223 dyoung 558 1.223 dyoung ifp->if_sadl = NULL; 559 1.223 dyoung 560 1.223 dyoung ifp->if_dl = NULL; 561 1.291 rmind ifafree(ifa); 562 1.223 dyoung } 563 1.223 dyoung 564 1.378 ozaki static void 565 1.378 ozaki if_replace_sadl(struct ifnet *ifp, struct ifaddr *ifa) 566 1.378 ozaki { 567 1.378 ozaki struct ifaddr *old; 568 1.378 ozaki 569 1.378 ozaki KASSERT(ifp->if_dl != NULL); 570 1.378 ozaki 571 1.378 ozaki old = ifp->if_dl; 572 1.378 ozaki 573 1.378 ozaki ifaref(ifa); 574 1.378 ozaki /* XXX Update if_dl and if_sadl atomically */ 575 1.378 ozaki ifp->if_dl = ifa; 576 1.378 ozaki ifp->if_sadl = satosdl(ifa->ifa_addr); 577 1.378 ozaki 578 1.378 ozaki ifafree(old); 579 1.378 ozaki } 580 1.378 ozaki 581 1.224 dyoung void 582 1.357 ozaki if_activate_sadl(struct ifnet *ifp, struct ifaddr *ifa0, 583 1.223 dyoung const struct sockaddr_dl *sdl) 584 1.223 dyoung { 585 1.357 ozaki struct ifaddr *ifa; 586 1.519 skrll const int bound = curlwp_bind(); 587 1.223 dyoung 588 1.378 ozaki KASSERT(ifa_held(ifa0)); 589 1.378 ozaki 590 1.519 skrll const int s = splsoftnet(); 591 1.223 dyoung 592 1.378 ozaki if_replace_sadl(ifp, ifa0); 593 1.357 ozaki 594 1.519 skrll int ss = pserialize_read_enter(); 595 1.357 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 596 1.357 ozaki struct psref psref; 597 1.357 ozaki ifa_acquire(ifa, &psref); 598 1.357 ozaki pserialize_read_exit(ss); 599 1.357 ozaki 600 1.231 dyoung rtinit(ifa, RTM_LLINFO_UPD, 0); 601 1.354 ozaki 602 1.357 ozaki ss = pserialize_read_enter(); 603 1.357 ozaki ifa_release(ifa, &psref); 604 1.357 ozaki } 605 1.357 ozaki pserialize_read_exit(ss); 606 1.357 ozaki 607 1.223 dyoung splx(s); 608 1.357 ozaki curlwp_bindx(bound); 609 1.81 thorpej } 610 1.81 thorpej 611 1.81 thorpej /* 612 1.81 thorpej * Free the link level name for the specified interface. This is 613 1.300 ozaki * a detach helper. This is called from if_detach(). 614 1.81 thorpej */ 615 1.437 knakahar void 616 1.426 ozaki if_free_sadl(struct ifnet *ifp, int factory) 617 1.81 thorpej { 618 1.81 thorpej struct ifaddr *ifa; 619 1.81 thorpej 620 1.426 ozaki if (factory && ifp->if_hwdl != NULL) { 621 1.426 ozaki ifa = ifp->if_hwdl; 622 1.426 ozaki ifp->if_hwdl = NULL; 623 1.426 ozaki ifafree(ifa); 624 1.426 ozaki } 625 1.426 ozaki 626 1.316 ozaki ifa = ifp->if_dl; 627 1.81 thorpej if (ifa == NULL) { 628 1.81 thorpej KASSERT(ifp->if_sadl == NULL); 629 1.81 thorpej return; 630 1.81 thorpej } 631 1.81 thorpej 632 1.81 thorpej KASSERT(ifp->if_sadl != NULL); 633 1.81 thorpej 634 1.520 skrll const int s = splsoftnet(); 635 1.430 christos KASSERT(ifa->ifa_addr->sa_family == AF_LINK); 636 1.207 dyoung ifa_remove(ifp, ifa); 637 1.223 dyoung if_deactivate_sadl(ifp); 638 1.81 thorpej splx(s); 639 1.81 thorpej } 640 1.81 thorpej 641 1.274 rmind static void 642 1.274 rmind if_getindex(ifnet_t *ifp) 643 1.1 cgd { 644 1.274 rmind bool hitlimit = false; 645 1.492 yamaguch char xnamebuf[HOOKNAMSIZ]; 646 1.231 dyoung 647 1.234 dyoung ifp->if_index_gen = index_gen++; 648 1.528 msaitoh snprintf(xnamebuf, sizeof(xnamebuf), "%s-lshk", ifp->if_xname); 649 1.492 yamaguch ifp->if_linkstate_hooks = simplehook_create(IPL_NET, 650 1.492 yamaguch xnamebuf); 651 1.234 dyoung 652 1.102 atatat ifp->if_index = if_index; 653 1.274 rmind if (ifindex2ifnet == NULL) { 654 1.102 atatat if_index++; 655 1.274 rmind goto skip; 656 1.274 rmind } 657 1.274 rmind while (if_byindex(ifp->if_index)) { 658 1.274 rmind /* 659 1.274 rmind * If we hit USHRT_MAX, we skip back to 0 since 660 1.274 rmind * there are a number of places where the value 661 1.274 rmind * of if_index or if_index itself is compared 662 1.274 rmind * to or stored in an unsigned short. By 663 1.274 rmind * jumping back, we won't botch those assignments 664 1.274 rmind * or comparisons. 665 1.274 rmind */ 666 1.274 rmind if (++if_index == 0) { 667 1.274 rmind if_index = 1; 668 1.274 rmind } else if (if_index == USHRT_MAX) { 669 1.102 atatat /* 670 1.274 rmind * However, if we have to jump back to 671 1.274 rmind * zero *twice* without finding an empty 672 1.274 rmind * slot in ifindex2ifnet[], then there 673 1.274 rmind * there are too many (>65535) interfaces. 674 1.102 atatat */ 675 1.528 msaitoh if (hitlimit) 676 1.274 rmind panic("too many interfaces"); 677 1.274 rmind hitlimit = true; 678 1.274 rmind if_index = 1; 679 1.102 atatat } 680 1.274 rmind ifp->if_index = if_index; 681 1.274 rmind } 682 1.274 rmind skip: 683 1.49 itojun /* 684 1.316 ozaki * ifindex2ifnet is indexed by if_index. Since if_index will 685 1.316 ozaki * grow dynamically, it should grow too. 686 1.49 itojun */ 687 1.316 ozaki if (ifindex2ifnet == NULL || ifp->if_index >= if_indexlim) { 688 1.131 itojun size_t m, n, oldlim; 689 1.183 christos void *q; 690 1.154 perry 691 1.131 itojun oldlim = if_indexlim; 692 1.53 thorpej while (ifp->if_index >= if_indexlim) 693 1.49 itojun if_indexlim <<= 1; 694 1.49 itojun 695 1.49 itojun /* grow ifindex2ifnet */ 696 1.131 itojun m = oldlim * sizeof(struct ifnet *); 697 1.49 itojun n = if_indexlim * sizeof(struct ifnet *); 698 1.455 msaitoh q = malloc(n, M_IFADDR, M_WAITOK | M_ZERO); 699 1.185 dyoung if (ifindex2ifnet != NULL) { 700 1.230 dyoung memcpy(q, ifindex2ifnet, m); 701 1.230 dyoung free(ifindex2ifnet, M_IFADDR); 702 1.49 itojun } 703 1.49 itojun ifindex2ifnet = (struct ifnet **)q; 704 1.1 cgd } 705 1.274 rmind ifindex2ifnet[ifp->if_index] = ifp; 706 1.274 rmind } 707 1.274 rmind 708 1.274 rmind /* 709 1.307 ozaki * Initialize an interface and assign an index for it. 710 1.307 ozaki * 711 1.307 ozaki * It must be called prior to a device specific attach routine 712 1.307 ozaki * (e.g., ether_ifattach and ieee80211_ifattach) or if_alloc_sadl, 713 1.307 ozaki * and be followed by if_register: 714 1.307 ozaki * 715 1.307 ozaki * if_initialize(ifp); 716 1.307 ozaki * ether_ifattach(ifp, enaddr); 717 1.307 ozaki * if_register(ifp); 718 1.274 rmind */ 719 1.486 riastrad void 720 1.307 ozaki if_initialize(ifnet_t *ifp) 721 1.274 rmind { 722 1.396 msaitoh 723 1.274 rmind KASSERT(if_indexlim > 0); 724 1.274 rmind TAILQ_INIT(&ifp->if_addrlist); 725 1.49 itojun 726 1.1 cgd /* 727 1.81 thorpej * Link level name is allocated later by a separate call to 728 1.81 thorpej * if_alloc_sadl(). 729 1.1 cgd */ 730 1.81 thorpej 731 1.40 thorpej if (ifp->if_snd.ifq_maxlen == 0) 732 1.94 itojun ifp->if_snd.ifq_maxlen = ifqmaxlen; 733 1.234 dyoung 734 1.42 is ifp->if_broadcastaddr = 0; /* reliably crash if used uninitialized */ 735 1.57 thorpej 736 1.57 thorpej ifp->if_link_state = LINK_STATE_UNKNOWN; 737 1.325 roy ifp->if_link_queue = -1; /* all bits set, see link_state_change() */ 738 1.480 roy ifp->if_link_scheduled = false; 739 1.57 thorpej 740 1.89 thorpej ifp->if_capenable = 0; 741 1.97 thorpej ifp->if_csum_flags_tx = 0; 742 1.97 thorpej ifp->if_csum_flags_rx = 0; 743 1.89 thorpej 744 1.86 thorpej #ifdef ALTQ 745 1.86 thorpej ifp->if_snd.altq_type = 0; 746 1.86 thorpej ifp->if_snd.altq_disc = NULL; 747 1.86 thorpej ifp->if_snd.altq_flags &= ALTQF_CANTCHANGE; 748 1.86 thorpej ifp->if_snd.altq_tbr = NULL; 749 1.86 thorpej ifp->if_snd.altq_ifp = ifp; 750 1.86 thorpej #endif 751 1.86 thorpej 752 1.358 ozaki IFQ_LOCK_INIT(&ifp->if_snd); 753 1.285 ozaki 754 1.265 rmind ifp->if_pfil = pfil_head_create(PFIL_TYPE_IFNET, ifp); 755 1.369 christos pfil_run_ifhooks(if_pfil, PFIL_IFNET_ATTACH, ifp); 756 1.87 thorpej 757 1.318 ozaki IF_AFDATA_LOCK_INIT(ifp); 758 1.318 ozaki 759 1.334 ozaki PSLIST_ENTRY_INIT(ifp, if_pslist_entry); 760 1.354 ozaki PSLIST_INIT(&ifp->if_addr_pslist); 761 1.334 ozaki psref_target_init(&ifp->if_psref, ifnet_psref_class); 762 1.336 ozaki ifp->if_ioctl_lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE); 763 1.381 ozaki LIST_INIT(&ifp->if_multiaddrs); 764 1.486 riastrad if_stats_init(ifp); 765 1.334 ozaki 766 1.412 ozaki IFNET_GLOBAL_LOCK(); 767 1.307 ozaki if_getindex(ifp); 768 1.412 ozaki IFNET_GLOBAL_UNLOCK(); 769 1.307 ozaki } 770 1.307 ozaki 771 1.307 ozaki /* 772 1.307 ozaki * Register an interface to the list of "active" interfaces. 773 1.307 ozaki */ 774 1.307 ozaki void 775 1.307 ozaki if_register(ifnet_t *ifp) 776 1.307 ozaki { 777 1.336 ozaki /* 778 1.487 blymn * If the driver has not supplied its own if_ioctl or if_stop, 779 1.487 blymn * then supply the default. 780 1.336 ozaki */ 781 1.336 ozaki if (ifp->if_ioctl == NULL) 782 1.336 ozaki ifp->if_ioctl = ifioctl_common; 783 1.487 blymn if (ifp->if_stop == NULL) 784 1.487 blymn ifp->if_stop = if_nullstop; 785 1.307 ozaki 786 1.307 ozaki sysctl_sndq_setup(&ifp->if_sysctl_log, ifp->if_xname, &ifp->if_snd); 787 1.307 ozaki 788 1.152 matt if (!STAILQ_EMPTY(&domains)) 789 1.147 tron if_attachdomain1(ifp); 790 1.147 tron 791 1.107 itojun /* Announce the interface. */ 792 1.107 itojun rt_ifannouncemsg(ifp, IFAN_ARRIVAL); 793 1.296 ozaki 794 1.296 ozaki if (ifp->if_slowtimo != NULL) { 795 1.513 riastrad struct if_slowtimo_data *isd; 796 1.513 riastrad 797 1.513 riastrad isd = kmem_zalloc(sizeof(*isd), KM_SLEEP); 798 1.513 riastrad mutex_init(&isd->isd_lock, MUTEX_DEFAULT, IPL_SOFTCLOCK); 799 1.513 riastrad callout_init(&isd->isd_ch, CALLOUT_MPSAFE); 800 1.513 riastrad callout_setfunc(&isd->isd_ch, if_slowtimo_intr, ifp); 801 1.513 riastrad isd->isd_ifp = ifp; 802 1.513 riastrad 803 1.513 riastrad ifp->if_slowtimo_data = isd; 804 1.513 riastrad 805 1.513 riastrad if_slowtimo_intr(ifp); 806 1.514 riastrad 807 1.514 riastrad sysctl_watchdog_setup(ifp); 808 1.296 ozaki } 809 1.307 ozaki 810 1.332 knakahar if (ifp->if_transmit == NULL || ifp->if_transmit == if_nulltransmit) 811 1.332 knakahar ifp->if_transmit = if_transmit; 812 1.332 knakahar 813 1.412 ozaki IFNET_GLOBAL_LOCK(); 814 1.307 ozaki TAILQ_INSERT_TAIL(&ifnet_list, ifp, if_list); 815 1.334 ozaki IFNET_WRITER_INSERT_TAIL(ifp); 816 1.412 ozaki IFNET_GLOBAL_UNLOCK(); 817 1.307 ozaki } 818 1.307 ozaki 819 1.307 ozaki /* 820 1.323 ozaki * The if_percpuq framework 821 1.323 ozaki * 822 1.323 ozaki * It allows network device drivers to execute the network stack 823 1.323 ozaki * in softint (so called softint-based if_input). It utilizes 824 1.323 ozaki * softint and percpu ifqueue. It doesn't distribute any packets 825 1.323 ozaki * between CPUs, unlike pktqueue(9). 826 1.323 ozaki * 827 1.323 ozaki * Currently we support two options for device drivers to apply the framework: 828 1.323 ozaki * - Use it implicitly with less changes 829 1.323 ozaki * - If you use if_attach in driver's _attach function and if_input in 830 1.323 ozaki * driver's Rx interrupt handler, a packet is queued and a softint handles 831 1.323 ozaki * the packet implicitly 832 1.323 ozaki * - Use it explicitly in each driver (recommended) 833 1.323 ozaki * - You can use if_percpuq_* directly in your driver 834 1.323 ozaki * - In this case, you need to allocate struct if_percpuq in driver's softc 835 1.323 ozaki * - See wm(4) as a reference implementation 836 1.323 ozaki */ 837 1.323 ozaki 838 1.323 ozaki static void 839 1.323 ozaki if_percpuq_softint(void *arg) 840 1.323 ozaki { 841 1.323 ozaki struct if_percpuq *ipq = arg; 842 1.323 ozaki struct ifnet *ifp = ipq->ipq_ifp; 843 1.323 ozaki struct mbuf *m; 844 1.323 ozaki 845 1.368 ozaki while ((m = if_percpuq_dequeue(ipq)) != NULL) { 846 1.469 thorpej if_statinc(ifp, if_ipackets); 847 1.428 msaitoh bpf_mtap(ifp, m, BPF_D_IN); 848 1.368 ozaki 849 1.323 ozaki ifp->_if_input(ifp, m); 850 1.368 ozaki } 851 1.323 ozaki } 852 1.323 ozaki 853 1.323 ozaki static void 854 1.323 ozaki if_percpuq_init_ifq(void *p, void *arg __unused, struct cpu_info *ci __unused) 855 1.323 ozaki { 856 1.323 ozaki struct ifqueue *const ifq = p; 857 1.323 ozaki 858 1.323 ozaki memset(ifq, 0, sizeof(*ifq)); 859 1.323 ozaki ifq->ifq_maxlen = IFQ_MAXLEN; 860 1.323 ozaki } 861 1.323 ozaki 862 1.323 ozaki struct if_percpuq * 863 1.323 ozaki if_percpuq_create(struct ifnet *ifp) 864 1.323 ozaki { 865 1.323 ozaki struct if_percpuq *ipq; 866 1.422 ozaki u_int flags = SOFTINT_NET; 867 1.422 ozaki 868 1.422 ozaki flags |= if_is_mpsafe(ifp) ? SOFTINT_MPSAFE : 0; 869 1.323 ozaki 870 1.323 ozaki ipq = kmem_zalloc(sizeof(*ipq), KM_SLEEP); 871 1.323 ozaki ipq->ipq_ifp = ifp; 872 1.422 ozaki ipq->ipq_si = softint_establish(flags, if_percpuq_softint, ipq); 873 1.323 ozaki ipq->ipq_ifqs = percpu_alloc(sizeof(struct ifqueue)); 874 1.323 ozaki percpu_foreach(ipq->ipq_ifqs, &if_percpuq_init_ifq, NULL); 875 1.323 ozaki 876 1.327 knakahar sysctl_percpuq_setup(&ifp->if_sysctl_log, ifp->if_xname, ipq); 877 1.327 knakahar 878 1.323 ozaki return ipq; 879 1.323 ozaki } 880 1.323 ozaki 881 1.323 ozaki static struct mbuf * 882 1.323 ozaki if_percpuq_dequeue(struct if_percpuq *ipq) 883 1.323 ozaki { 884 1.323 ozaki struct mbuf *m; 885 1.323 ozaki struct ifqueue *ifq; 886 1.323 ozaki 887 1.519 skrll const int s = splnet(); 888 1.323 ozaki ifq = percpu_getref(ipq->ipq_ifqs); 889 1.323 ozaki IF_DEQUEUE(ifq, m); 890 1.323 ozaki percpu_putref(ipq->ipq_ifqs); 891 1.323 ozaki splx(s); 892 1.323 ozaki 893 1.323 ozaki return m; 894 1.323 ozaki } 895 1.323 ozaki 896 1.323 ozaki static void 897 1.323 ozaki if_percpuq_purge_ifq(void *p, void *arg __unused, struct cpu_info *ci __unused) 898 1.323 ozaki { 899 1.323 ozaki struct ifqueue *const ifq = p; 900 1.323 ozaki 901 1.323 ozaki IF_PURGE(ifq); 902 1.323 ozaki } 903 1.323 ozaki 904 1.323 ozaki void 905 1.323 ozaki if_percpuq_destroy(struct if_percpuq *ipq) 906 1.323 ozaki { 907 1.323 ozaki 908 1.323 ozaki /* if_detach may already destroy it */ 909 1.323 ozaki if (ipq == NULL) 910 1.323 ozaki return; 911 1.323 ozaki 912 1.323 ozaki softint_disestablish(ipq->ipq_si); 913 1.323 ozaki percpu_foreach(ipq->ipq_ifqs, &if_percpuq_purge_ifq, NULL); 914 1.323 ozaki percpu_free(ipq->ipq_ifqs, sizeof(struct ifqueue)); 915 1.363 ozaki kmem_free(ipq, sizeof(*ipq)); 916 1.323 ozaki } 917 1.323 ozaki 918 1.323 ozaki void 919 1.323 ozaki if_percpuq_enqueue(struct if_percpuq *ipq, struct mbuf *m) 920 1.323 ozaki { 921 1.323 ozaki struct ifqueue *ifq; 922 1.323 ozaki 923 1.323 ozaki KASSERT(ipq != NULL); 924 1.323 ozaki 925 1.519 skrll const int s = splnet(); 926 1.323 ozaki ifq = percpu_getref(ipq->ipq_ifqs); 927 1.323 ozaki if (IF_QFULL(ifq)) { 928 1.323 ozaki IF_DROP(ifq); 929 1.326 ozaki percpu_putref(ipq->ipq_ifqs); 930 1.531 ozaki if_statinc(ipq->ipq_ifp, if_iqdrops); 931 1.323 ozaki m_freem(m); 932 1.323 ozaki goto out; 933 1.323 ozaki } 934 1.323 ozaki IF_ENQUEUE(ifq, m); 935 1.323 ozaki percpu_putref(ipq->ipq_ifqs); 936 1.323 ozaki 937 1.323 ozaki softint_schedule(ipq->ipq_si); 938 1.323 ozaki out: 939 1.323 ozaki splx(s); 940 1.323 ozaki } 941 1.323 ozaki 942 1.327 knakahar static void 943 1.327 knakahar if_percpuq_drops(void *p, void *arg, struct cpu_info *ci __unused) 944 1.327 knakahar { 945 1.327 knakahar struct ifqueue *const ifq = p; 946 1.527 msaitoh uint64_t *sum = arg; 947 1.327 knakahar 948 1.327 knakahar *sum += ifq->ifq_drops; 949 1.327 knakahar } 950 1.327 knakahar 951 1.327 knakahar static int 952 1.327 knakahar sysctl_percpuq_drops_handler(SYSCTLFN_ARGS) 953 1.327 knakahar { 954 1.327 knakahar struct sysctlnode node; 955 1.327 knakahar struct if_percpuq *ipq; 956 1.527 msaitoh uint64_t sum = 0; 957 1.327 knakahar int error; 958 1.327 knakahar 959 1.327 knakahar node = *rnode; 960 1.327 knakahar ipq = node.sysctl_data; 961 1.327 knakahar 962 1.327 knakahar percpu_foreach(ipq->ipq_ifqs, if_percpuq_drops, &sum); 963 1.327 knakahar 964 1.327 knakahar node.sysctl_data = ∑ 965 1.327 knakahar error = sysctl_lookup(SYSCTLFN_CALL(&node)); 966 1.327 knakahar if (error != 0 || newp == NULL) 967 1.327 knakahar return error; 968 1.327 knakahar 969 1.327 knakahar return 0; 970 1.327 knakahar } 971 1.327 knakahar 972 1.327 knakahar static void 973 1.327 knakahar sysctl_percpuq_setup(struct sysctllog **clog, const char* ifname, 974 1.327 knakahar struct if_percpuq *ipq) 975 1.327 knakahar { 976 1.327 knakahar const struct sysctlnode *cnode, *rnode; 977 1.327 knakahar 978 1.327 knakahar if (sysctl_createv(clog, 0, NULL, &rnode, 979 1.327 knakahar CTLFLAG_PERMANENT, 980 1.327 knakahar CTLTYPE_NODE, "interfaces", 981 1.327 knakahar SYSCTL_DESCR("Per-interface controls"), 982 1.327 knakahar NULL, 0, NULL, 0, 983 1.327 knakahar CTL_NET, CTL_CREATE, CTL_EOL) != 0) 984 1.327 knakahar goto bad; 985 1.327 knakahar 986 1.327 knakahar if (sysctl_createv(clog, 0, &rnode, &rnode, 987 1.327 knakahar CTLFLAG_PERMANENT, 988 1.327 knakahar CTLTYPE_NODE, ifname, 989 1.327 knakahar SYSCTL_DESCR("Interface controls"), 990 1.327 knakahar NULL, 0, NULL, 0, 991 1.327 knakahar CTL_CREATE, CTL_EOL) != 0) 992 1.327 knakahar goto bad; 993 1.327 knakahar 994 1.327 knakahar if (sysctl_createv(clog, 0, &rnode, &rnode, 995 1.327 knakahar CTLFLAG_PERMANENT, 996 1.327 knakahar CTLTYPE_NODE, "rcvq", 997 1.327 knakahar SYSCTL_DESCR("Interface input queue controls"), 998 1.327 knakahar NULL, 0, NULL, 0, 999 1.327 knakahar CTL_CREATE, CTL_EOL) != 0) 1000 1.327 knakahar goto bad; 1001 1.327 knakahar 1002 1.327 knakahar #ifdef NOTYET 1003 1.327 knakahar /* XXX Should show each per-CPU queue length? */ 1004 1.327 knakahar if (sysctl_createv(clog, 0, &rnode, &rnode, 1005 1.327 knakahar CTLFLAG_PERMANENT, 1006 1.327 knakahar CTLTYPE_INT, "len", 1007 1.327 knakahar SYSCTL_DESCR("Current input queue length"), 1008 1.327 knakahar sysctl_percpuq_len, 0, NULL, 0, 1009 1.327 knakahar CTL_CREATE, CTL_EOL) != 0) 1010 1.327 knakahar goto bad; 1011 1.327 knakahar 1012 1.327 knakahar if (sysctl_createv(clog, 0, &rnode, &cnode, 1013 1.455 msaitoh CTLFLAG_PERMANENT | CTLFLAG_READWRITE, 1014 1.327 knakahar CTLTYPE_INT, "maxlen", 1015 1.327 knakahar SYSCTL_DESCR("Maximum allowed input queue length"), 1016 1.327 knakahar sysctl_percpuq_maxlen_handler, 0, (void *)ipq, 0, 1017 1.327 knakahar CTL_CREATE, CTL_EOL) != 0) 1018 1.327 knakahar goto bad; 1019 1.327 knakahar #endif 1020 1.327 knakahar 1021 1.327 knakahar if (sysctl_createv(clog, 0, &rnode, &cnode, 1022 1.327 knakahar CTLFLAG_PERMANENT, 1023 1.527 msaitoh CTLTYPE_QUAD, "drops", 1024 1.327 knakahar SYSCTL_DESCR("Total packets dropped due to full input queue"), 1025 1.327 knakahar sysctl_percpuq_drops_handler, 0, (void *)ipq, 0, 1026 1.327 knakahar CTL_CREATE, CTL_EOL) != 0) 1027 1.327 knakahar goto bad; 1028 1.327 knakahar 1029 1.327 knakahar return; 1030 1.327 knakahar bad: 1031 1.327 knakahar printf("%s: could not attach sysctl nodes\n", ifname); 1032 1.327 knakahar return; 1033 1.327 knakahar } 1034 1.327 knakahar 1035 1.364 ozaki /* 1036 1.364 ozaki * The deferred if_start framework 1037 1.364 ozaki * 1038 1.364 ozaki * The common APIs to defer if_start to softint when if_start is requested 1039 1.364 ozaki * from a device driver running in hardware interrupt context. 1040 1.364 ozaki */ 1041 1.364 ozaki /* 1042 1.364 ozaki * Call ifp->if_start (or equivalent) in a dedicated softint for 1043 1.364 ozaki * deferred if_start. 1044 1.364 ozaki */ 1045 1.364 ozaki static void 1046 1.364 ozaki if_deferred_start_softint(void *arg) 1047 1.364 ozaki { 1048 1.364 ozaki struct if_deferred_start *ids = arg; 1049 1.364 ozaki struct ifnet *ifp = ids->ids_ifp; 1050 1.364 ozaki 1051 1.364 ozaki ids->ids_if_start(ifp); 1052 1.364 ozaki } 1053 1.364 ozaki 1054 1.364 ozaki /* 1055 1.364 ozaki * The default callback function for deferred if_start. 1056 1.364 ozaki */ 1057 1.364 ozaki static void 1058 1.364 ozaki if_deferred_start_common(struct ifnet *ifp) 1059 1.364 ozaki { 1060 1.519 skrll const int s = splnet(); 1061 1.364 ozaki if_start_lock(ifp); 1062 1.382 ozaki splx(s); 1063 1.364 ozaki } 1064 1.364 ozaki 1065 1.364 ozaki static inline bool 1066 1.364 ozaki if_snd_is_used(struct ifnet *ifp) 1067 1.364 ozaki { 1068 1.364 ozaki 1069 1.457 knakahar return ALTQ_IS_ENABLED(&ifp->if_snd) || 1070 1.528 msaitoh ifp->if_transmit == if_transmit || 1071 1.528 msaitoh ifp->if_transmit == NULL || 1072 1.528 msaitoh ifp->if_transmit == if_nulltransmit; 1073 1.364 ozaki } 1074 1.364 ozaki 1075 1.364 ozaki /* 1076 1.364 ozaki * Schedule deferred if_start. 1077 1.364 ozaki */ 1078 1.364 ozaki void 1079 1.364 ozaki if_schedule_deferred_start(struct ifnet *ifp) 1080 1.364 ozaki { 1081 1.364 ozaki 1082 1.364 ozaki KASSERT(ifp->if_deferred_start != NULL); 1083 1.364 ozaki 1084 1.364 ozaki if (if_snd_is_used(ifp) && IFQ_IS_EMPTY(&ifp->if_snd)) 1085 1.364 ozaki return; 1086 1.364 ozaki 1087 1.364 ozaki softint_schedule(ifp->if_deferred_start->ids_si); 1088 1.364 ozaki } 1089 1.364 ozaki 1090 1.364 ozaki /* 1091 1.364 ozaki * Create an instance of deferred if_start. A driver should call the function 1092 1.364 ozaki * only if the driver needs deferred if_start. Drivers can setup their own 1093 1.364 ozaki * deferred if_start function via 2nd argument. 1094 1.364 ozaki */ 1095 1.364 ozaki void 1096 1.364 ozaki if_deferred_start_init(struct ifnet *ifp, void (*func)(struct ifnet *)) 1097 1.364 ozaki { 1098 1.364 ozaki struct if_deferred_start *ids; 1099 1.423 ozaki u_int flags = SOFTINT_NET; 1100 1.423 ozaki 1101 1.423 ozaki flags |= if_is_mpsafe(ifp) ? SOFTINT_MPSAFE : 0; 1102 1.364 ozaki 1103 1.364 ozaki ids = kmem_zalloc(sizeof(*ids), KM_SLEEP); 1104 1.364 ozaki ids->ids_ifp = ifp; 1105 1.423 ozaki ids->ids_si = softint_establish(flags, if_deferred_start_softint, ids); 1106 1.364 ozaki if (func != NULL) 1107 1.364 ozaki ids->ids_if_start = func; 1108 1.364 ozaki else 1109 1.364 ozaki ids->ids_if_start = if_deferred_start_common; 1110 1.364 ozaki 1111 1.364 ozaki ifp->if_deferred_start = ids; 1112 1.364 ozaki } 1113 1.364 ozaki 1114 1.364 ozaki static void 1115 1.364 ozaki if_deferred_start_destroy(struct ifnet *ifp) 1116 1.364 ozaki { 1117 1.364 ozaki 1118 1.364 ozaki if (ifp->if_deferred_start == NULL) 1119 1.364 ozaki return; 1120 1.364 ozaki 1121 1.364 ozaki softint_disestablish(ifp->if_deferred_start->ids_si); 1122 1.364 ozaki kmem_free(ifp->if_deferred_start, sizeof(*ifp->if_deferred_start)); 1123 1.364 ozaki ifp->if_deferred_start = NULL; 1124 1.364 ozaki } 1125 1.327 knakahar 1126 1.323 ozaki /* 1127 1.323 ozaki * The common interface input routine that is called by device drivers, 1128 1.323 ozaki * which should be used only when the driver's rx handler already runs 1129 1.323 ozaki * in softint. 1130 1.323 ozaki */ 1131 1.323 ozaki void 1132 1.323 ozaki if_input(struct ifnet *ifp, struct mbuf *m) 1133 1.323 ozaki { 1134 1.323 ozaki 1135 1.323 ozaki KASSERT(ifp->if_percpuq == NULL); 1136 1.323 ozaki KASSERT(!cpu_intr_p()); 1137 1.323 ozaki 1138 1.469 thorpej if_statinc(ifp, if_ipackets); 1139 1.428 msaitoh bpf_mtap(ifp, m, BPF_D_IN); 1140 1.368 ozaki 1141 1.323 ozaki ifp->_if_input(ifp, m); 1142 1.323 ozaki } 1143 1.323 ozaki 1144 1.323 ozaki /* 1145 1.323 ozaki * DEPRECATED. Use if_initialize and if_register instead. 1146 1.307 ozaki * See the above comment of if_initialize. 1147 1.323 ozaki * 1148 1.323 ozaki * Note that it implicitly enables if_percpuq to make drivers easy to 1149 1.333 skrll * migrate softint-based if_input without much changes. If you don't 1150 1.323 ozaki * want to enable it, use if_initialize instead. 1151 1.307 ozaki */ 1152 1.486 riastrad void 1153 1.307 ozaki if_attach(ifnet_t *ifp) 1154 1.307 ozaki { 1155 1.323 ozaki 1156 1.486 riastrad if_initialize(ifp); 1157 1.323 ozaki ifp->if_percpuq = if_percpuq_create(ifp); 1158 1.307 ozaki if_register(ifp); 1159 1.107 itojun } 1160 1.107 itojun 1161 1.107 itojun void 1162 1.163 thorpej if_attachdomain(void) 1163 1.107 itojun { 1164 1.107 itojun struct ifnet *ifp; 1165 1.519 skrll const int bound = curlwp_bind(); 1166 1.107 itojun 1167 1.519 skrll int s = pserialize_read_enter(); 1168 1.334 ozaki IFNET_READER_FOREACH(ifp) { 1169 1.334 ozaki struct psref psref; 1170 1.334 ozaki psref_acquire(&psref, &ifp->if_psref, ifnet_psref_class); 1171 1.334 ozaki pserialize_read_exit(s); 1172 1.107 itojun if_attachdomain1(ifp); 1173 1.334 ozaki s = pserialize_read_enter(); 1174 1.334 ozaki psref_release(&psref, &ifp->if_psref, ifnet_psref_class); 1175 1.334 ozaki } 1176 1.334 ozaki pserialize_read_exit(s); 1177 1.339 ozaki curlwp_bindx(bound); 1178 1.107 itojun } 1179 1.107 itojun 1180 1.302 ozaki static void 1181 1.163 thorpej if_attachdomain1(struct ifnet *ifp) 1182 1.107 itojun { 1183 1.107 itojun struct domain *dp; 1184 1.520 skrll const int s = splsoftnet(); 1185 1.107 itojun 1186 1.106 itojun /* address family dependent data region */ 1187 1.106 itojun memset(ifp->if_afdata, 0, sizeof(ifp->if_afdata)); 1188 1.152 matt DOMAIN_FOREACH(dp) { 1189 1.185 dyoung if (dp->dom_ifattach != NULL) 1190 1.106 itojun ifp->if_afdata[dp->dom_family] = 1191 1.106 itojun (*dp->dom_ifattach)(ifp); 1192 1.106 itojun } 1193 1.109 itojun 1194 1.109 itojun splx(s); 1195 1.1 cgd } 1196 1.53 thorpej 1197 1.53 thorpej /* 1198 1.53 thorpej * Deactivate an interface. This points all of the procedure 1199 1.53 thorpej * handles at error stubs. May be called from interrupt context. 1200 1.53 thorpej */ 1201 1.53 thorpej void 1202 1.163 thorpej if_deactivate(struct ifnet *ifp) 1203 1.53 thorpej { 1204 1.520 skrll const int s = splsoftnet(); 1205 1.53 thorpej 1206 1.53 thorpej ifp->if_output = if_nulloutput; 1207 1.323 ozaki ifp->_if_input = if_nullinput; 1208 1.53 thorpej ifp->if_start = if_nullstart; 1209 1.332 knakahar ifp->if_transmit = if_nulltransmit; 1210 1.53 thorpej ifp->if_ioctl = if_nullioctl; 1211 1.75 thorpej ifp->if_init = if_nullinit; 1212 1.75 thorpej ifp->if_stop = if_nullstop; 1213 1.516 riastrad if (ifp->if_slowtimo) 1214 1.516 riastrad ifp->if_slowtimo = if_nullslowtimo; 1215 1.53 thorpej ifp->if_drain = if_nulldrain; 1216 1.53 thorpej 1217 1.53 thorpej /* No more packets may be enqueued. */ 1218 1.53 thorpej ifp->if_snd.ifq_maxlen = 0; 1219 1.53 thorpej 1220 1.53 thorpej splx(s); 1221 1.53 thorpej } 1222 1.53 thorpej 1223 1.348 ozaki bool 1224 1.367 ozaki if_is_deactivated(const struct ifnet *ifp) 1225 1.348 ozaki { 1226 1.348 ozaki 1227 1.348 ozaki return ifp->if_output == if_nulloutput; 1228 1.348 ozaki } 1229 1.348 ozaki 1230 1.206 dyoung void 1231 1.528 msaitoh if_purgeaddrs(struct ifnet *ifp, int family, 1232 1.528 msaitoh void (*purgeaddr)(struct ifaddr *)) 1233 1.206 dyoung { 1234 1.289 ozaki struct ifaddr *ifa, *nifa; 1235 1.357 ozaki int s; 1236 1.206 dyoung 1237 1.357 ozaki s = pserialize_read_enter(); 1238 1.354 ozaki for (ifa = IFADDR_READER_FIRST(ifp); ifa; ifa = nifa) { 1239 1.354 ozaki nifa = IFADDR_READER_NEXT(ifa); 1240 1.206 dyoung if (ifa->ifa_addr->sa_family != family) 1241 1.206 dyoung continue; 1242 1.357 ozaki pserialize_read_exit(s); 1243 1.357 ozaki 1244 1.206 dyoung (*purgeaddr)(ifa); 1245 1.357 ozaki 1246 1.357 ozaki s = pserialize_read_enter(); 1247 1.206 dyoung } 1248 1.357 ozaki pserialize_read_exit(s); 1249 1.206 dyoung } 1250 1.206 dyoung 1251 1.349 ozaki #ifdef IFAREF_DEBUG 1252 1.349 ozaki static struct ifaddr **ifa_list; 1253 1.349 ozaki static int ifa_list_size; 1254 1.349 ozaki 1255 1.349 ozaki /* Depends on only one if_attach runs at once */ 1256 1.349 ozaki static void 1257 1.349 ozaki if_build_ifa_list(struct ifnet *ifp) 1258 1.349 ozaki { 1259 1.349 ozaki struct ifaddr *ifa; 1260 1.349 ozaki int i; 1261 1.349 ozaki 1262 1.349 ozaki KASSERT(ifa_list == NULL); 1263 1.349 ozaki KASSERT(ifa_list_size == 0); 1264 1.349 ozaki 1265 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) 1266 1.349 ozaki ifa_list_size++; 1267 1.349 ozaki 1268 1.349 ozaki ifa_list = kmem_alloc(sizeof(*ifa) * ifa_list_size, KM_SLEEP); 1269 1.349 ozaki i = 0; 1270 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 1271 1.349 ozaki ifa_list[i++] = ifa; 1272 1.349 ozaki ifaref(ifa); 1273 1.349 ozaki } 1274 1.349 ozaki } 1275 1.349 ozaki 1276 1.349 ozaki static void 1277 1.349 ozaki if_check_and_free_ifa_list(struct ifnet *ifp) 1278 1.349 ozaki { 1279 1.349 ozaki int i; 1280 1.349 ozaki struct ifaddr *ifa; 1281 1.349 ozaki 1282 1.349 ozaki if (ifa_list == NULL) 1283 1.349 ozaki return; 1284 1.349 ozaki 1285 1.349 ozaki for (i = 0; i < ifa_list_size; i++) { 1286 1.349 ozaki char buf[64]; 1287 1.349 ozaki 1288 1.349 ozaki ifa = ifa_list[i]; 1289 1.349 ozaki sockaddr_format(ifa->ifa_addr, buf, sizeof(buf)); 1290 1.349 ozaki if (ifa->ifa_refcnt > 1) { 1291 1.349 ozaki log(LOG_WARNING, 1292 1.349 ozaki "ifa(%s) still referenced (refcnt=%d)\n", 1293 1.349 ozaki buf, ifa->ifa_refcnt - 1); 1294 1.349 ozaki } else 1295 1.349 ozaki log(LOG_DEBUG, 1296 1.349 ozaki "ifa(%s) not referenced (refcnt=%d)\n", 1297 1.349 ozaki buf, ifa->ifa_refcnt - 1); 1298 1.349 ozaki ifafree(ifa); 1299 1.349 ozaki } 1300 1.349 ozaki 1301 1.349 ozaki kmem_free(ifa_list, sizeof(*ifa) * ifa_list_size); 1302 1.349 ozaki ifa_list = NULL; 1303 1.349 ozaki ifa_list_size = 0; 1304 1.349 ozaki } 1305 1.349 ozaki #endif 1306 1.349 ozaki 1307 1.53 thorpej /* 1308 1.53 thorpej * Detach an interface from the list of "active" interfaces, 1309 1.53 thorpej * freeing any resources as we go along. 1310 1.53 thorpej * 1311 1.53 thorpej * NOTE: This routine must be called with a valid thread context, 1312 1.53 thorpej * as it may block. 1313 1.53 thorpej */ 1314 1.53 thorpej void 1315 1.163 thorpej if_detach(struct ifnet *ifp) 1316 1.53 thorpej { 1317 1.56 thorpej struct socket so; 1318 1.178 dyoung struct ifaddr *ifa; 1319 1.53 thorpej #ifdef IFAREF_DEBUG 1320 1.53 thorpej struct ifaddr *last_ifa = NULL; 1321 1.53 thorpej #endif 1322 1.56 thorpej struct domain *dp; 1323 1.141 matt const struct protosw *pr; 1324 1.519 skrll int i, family, purged; 1325 1.53 thorpej 1326 1.349 ozaki #ifdef IFAREF_DEBUG 1327 1.349 ozaki if_build_ifa_list(ifp); 1328 1.349 ozaki #endif 1329 1.56 thorpej /* 1330 1.56 thorpej * XXX It's kind of lame that we have to have the 1331 1.56 thorpej * XXX socket structure... 1332 1.56 thorpej */ 1333 1.56 thorpej memset(&so, 0, sizeof(so)); 1334 1.53 thorpej 1335 1.519 skrll const int s = splnet(); 1336 1.53 thorpej 1337 1.334 ozaki sysctl_teardown(&ifp->if_sysctl_log); 1338 1.480 roy 1339 1.413 ozaki IFNET_LOCK(ifp); 1340 1.480 roy 1341 1.480 roy /* 1342 1.480 roy * Unset all queued link states and pretend a 1343 1.480 roy * link state change is scheduled. 1344 1.488 andvar * This stops any more link state changes occurring for this 1345 1.480 roy * interface while it's being detached so it's safe 1346 1.480 roy * to drain the workqueue. 1347 1.480 roy */ 1348 1.480 roy IF_LINK_STATE_CHANGE_LOCK(ifp); 1349 1.480 roy ifp->if_link_queue = -1; /* all bits set, see link_state_change() */ 1350 1.480 roy ifp->if_link_scheduled = true; 1351 1.480 roy IF_LINK_STATE_CHANGE_UNLOCK(ifp); 1352 1.480 roy workqueue_wait(ifnet_link_state_wq, &ifp->if_link_work); 1353 1.480 roy 1354 1.350 ozaki if_deactivate(ifp); 1355 1.413 ozaki IFNET_UNLOCK(ifp); 1356 1.334 ozaki 1357 1.436 christos /* 1358 1.436 christos * Unlink from the list and wait for all readers to leave 1359 1.436 christos * from pserialize read sections. Note that we can't do 1360 1.436 christos * psref_target_destroy here. See below. 1361 1.436 christos */ 1362 1.436 christos IFNET_GLOBAL_LOCK(); 1363 1.436 christos ifindex2ifnet[ifp->if_index] = NULL; 1364 1.436 christos TAILQ_REMOVE(&ifnet_list, ifp, if_list); 1365 1.436 christos IFNET_WRITER_REMOVE(ifp); 1366 1.436 christos pserialize_perform(ifnet_psz); 1367 1.436 christos IFNET_GLOBAL_UNLOCK(); 1368 1.436 christos 1369 1.513 riastrad if (ifp->if_slowtimo != NULL) { 1370 1.513 riastrad struct if_slowtimo_data *isd = ifp->if_slowtimo_data; 1371 1.513 riastrad 1372 1.513 riastrad mutex_enter(&isd->isd_lock); 1373 1.513 riastrad isd->isd_dying = true; 1374 1.513 riastrad mutex_exit(&isd->isd_lock); 1375 1.513 riastrad callout_halt(&isd->isd_ch, NULL); 1376 1.513 riastrad workqueue_wait(if_slowtimo_wq, &isd->isd_work); 1377 1.513 riastrad callout_destroy(&isd->isd_ch); 1378 1.513 riastrad mutex_destroy(&isd->isd_lock); 1379 1.513 riastrad kmem_free(isd, sizeof(*isd)); 1380 1.513 riastrad 1381 1.513 riastrad ifp->if_slowtimo_data = NULL; /* paraonia */ 1382 1.513 riastrad ifp->if_slowtimo = NULL; /* paranoia */ 1383 1.296 ozaki } 1384 1.364 ozaki if_deferred_start_destroy(ifp); 1385 1.296 ozaki 1386 1.53 thorpej /* 1387 1.53 thorpej * Do an if_down() to give protocols a chance to do something. 1388 1.53 thorpej */ 1389 1.403 ozaki if_down_deactivated(ifp); 1390 1.86 thorpej 1391 1.86 thorpej #ifdef ALTQ 1392 1.86 thorpej if (ALTQ_IS_ENABLED(&ifp->if_snd)) 1393 1.86 thorpej altq_disable(&ifp->if_snd); 1394 1.86 thorpej if (ALTQ_IS_ATTACHED(&ifp->if_snd)) 1395 1.86 thorpej altq_detach(&ifp->if_snd); 1396 1.87 thorpej #endif 1397 1.87 thorpej 1398 1.166 liamjfoy #if NCARP > 0 1399 1.166 liamjfoy /* Remove the interface from any carp group it is a part of. */ 1400 1.185 dyoung if (ifp->if_carp != NULL && ifp->if_type != IFT_CARP) 1401 1.166 liamjfoy carp_ifdetach(ifp); 1402 1.166 liamjfoy #endif 1403 1.166 liamjfoy 1404 1.53 thorpej /* 1405 1.523 thorpej * Ensure that all packets on protocol input pktqueues have been 1406 1.523 thorpej * processed, or, at least, removed from the queues. 1407 1.523 thorpej * 1408 1.523 thorpej * A cross-call will ensure that the interrupts have completed. 1409 1.523 thorpej * FIXME: not quite.. 1410 1.522 thorpej */ 1411 1.523 thorpej pktq_ifdetach(); 1412 1.522 thorpej xc_barrier(0); 1413 1.522 thorpej 1414 1.522 thorpej /* 1415 1.53 thorpej * Rip all the addresses off the interface. This should make 1416 1.53 thorpej * all of the routes go away. 1417 1.178 dyoung * 1418 1.178 dyoung * pr_usrreq calls can remove an arbitrary number of ifaddrs 1419 1.178 dyoung * from the list, including our "cursor", ifa. For safety, 1420 1.178 dyoung * and to honor the TAILQ abstraction, I just restart the 1421 1.178 dyoung * loop after each removal. Note that the loop will exit 1422 1.178 dyoung * when all of the remaining ifaddrs belong to the AF_LINK 1423 1.178 dyoung * family. I am counting on the historical fact that at 1424 1.178 dyoung * least one pr_usrreq in each address domain removes at 1425 1.178 dyoung * least one ifaddr. 1426 1.53 thorpej */ 1427 1.178 dyoung again: 1428 1.357 ozaki /* 1429 1.357 ozaki * At this point, no other one tries to remove ifa in the list, 1430 1.407 ozaki * so we don't need to take a lock or psref. Avoid using 1431 1.407 ozaki * IFADDR_READER_FOREACH to pass over an inspection of contract 1432 1.407 ozaki * violations of pserialize. 1433 1.357 ozaki */ 1434 1.407 ozaki IFADDR_WRITER_FOREACH(ifa, ifp) { 1435 1.56 thorpej family = ifa->ifa_addr->sa_family; 1436 1.53 thorpej #ifdef IFAREF_DEBUG 1437 1.53 thorpej printf("if_detach: ifaddr %p, family %d, refcnt %d\n", 1438 1.56 thorpej ifa, family, ifa->ifa_refcnt); 1439 1.53 thorpej if (last_ifa != NULL && ifa == last_ifa) 1440 1.56 thorpej panic("if_detach: loop detected"); 1441 1.53 thorpej last_ifa = ifa; 1442 1.53 thorpej #endif 1443 1.178 dyoung if (family == AF_LINK) 1444 1.118 itojun continue; 1445 1.118 itojun dp = pffinddomain(family); 1446 1.384 ozaki KASSERTMSG(dp != NULL, "no domain for AF %d", family); 1447 1.160 gdt /* 1448 1.160 gdt * XXX These PURGEIF calls are redundant with the 1449 1.160 gdt * purge-all-families calls below, but are left in for 1450 1.160 gdt * now both to make a smaller change, and to avoid 1451 1.160 gdt * unplanned interactions with clearing of 1452 1.160 gdt * ifp->if_addrlist. 1453 1.160 gdt */ 1454 1.118 itojun purged = 0; 1455 1.322 riastrad for (pr = dp->dom_protosw; 1456 1.322 riastrad pr < dp->dom_protoswNPROTOSW; pr++) { 1457 1.118 itojun so.so_proto = pr; 1458 1.275 rmind if (pr->pr_usrreqs) { 1459 1.290 rtr (void) (*pr->pr_usrreqs->pr_purgeif)(&so, ifp); 1460 1.118 itojun purged = 1; 1461 1.53 thorpej } 1462 1.118 itojun } 1463 1.118 itojun if (purged == 0) { 1464 1.118 itojun /* 1465 1.118 itojun * XXX What's really the best thing to do 1466 1.135 keihan * XXX here? --thorpej (at) NetBSD.org 1467 1.118 itojun */ 1468 1.118 itojun printf("if_detach: WARNING: AF %d not purged\n", 1469 1.118 itojun family); 1470 1.207 dyoung ifa_remove(ifp, ifa); 1471 1.53 thorpej } 1472 1.178 dyoung goto again; 1473 1.53 thorpej } 1474 1.118 itojun 1475 1.426 ozaki if_free_sadl(ifp, 1); 1476 1.53 thorpej 1477 1.427 ozaki restart: 1478 1.427 ozaki IFADDR_WRITER_FOREACH(ifa, ifp) { 1479 1.427 ozaki family = ifa->ifa_addr->sa_family; 1480 1.427 ozaki KASSERT(family == AF_LINK); 1481 1.427 ozaki ifa_remove(ifp, ifa); 1482 1.427 ozaki goto restart; 1483 1.427 ozaki } 1484 1.427 ozaki 1485 1.362 ozaki /* Delete stray routes from the routing table. */ 1486 1.362 ozaki for (i = 0; i <= AF_MAX; i++) 1487 1.526 knakahar rt_delete_matched_entries(i, if_delroute_matcher, ifp, false); 1488 1.106 itojun 1489 1.152 matt DOMAIN_FOREACH(dp) { 1490 1.185 dyoung if (dp->dom_ifdetach != NULL && ifp->if_afdata[dp->dom_family]) 1491 1.260 christos { 1492 1.260 christos void *p = ifp->if_afdata[dp->dom_family]; 1493 1.260 christos if (p) { 1494 1.260 christos ifp->if_afdata[dp->dom_family] = NULL; 1495 1.260 christos (*dp->dom_ifdetach)(ifp, p); 1496 1.260 christos } 1497 1.260 christos } 1498 1.160 gdt 1499 1.160 gdt /* 1500 1.160 gdt * One would expect multicast memberships (INET and 1501 1.160 gdt * INET6) on UDP sockets to be purged by the PURGEIF 1502 1.160 gdt * calls above, but if all addresses were removed from 1503 1.160 gdt * the interface prior to destruction, the calls will 1504 1.160 gdt * not be made (e.g. ppp, for which pppd(8) generally 1505 1.160 gdt * removes addresses before destroying the interface). 1506 1.160 gdt * Because there is no invariant that multicast 1507 1.160 gdt * memberships only exist for interfaces with IPv4 1508 1.160 gdt * addresses, we must call PURGEIF regardless of 1509 1.160 gdt * addresses. (Protocols which might store ifnet 1510 1.160 gdt * pointers are marked with PR_PURGEIF.) 1511 1.160 gdt */ 1512 1.528 msaitoh for (pr = dp->dom_protosw; pr < dp->dom_protoswNPROTOSW; pr++) 1513 1.528 msaitoh { 1514 1.160 gdt so.so_proto = pr; 1515 1.275 rmind if (pr->pr_usrreqs && pr->pr_flags & PR_PURGEIF) 1516 1.290 rtr (void)(*pr->pr_usrreqs->pr_purgeif)(&so, ifp); 1517 1.160 gdt } 1518 1.53 thorpej } 1519 1.57 thorpej 1520 1.436 christos /* 1521 1.436 christos * Must be done after the above pr_purgeif because if_psref may be 1522 1.436 christos * still used in pr_purgeif. 1523 1.436 christos */ 1524 1.414 ozaki psref_target_destroy(&ifp->if_psref, ifnet_psref_class); 1525 1.414 ozaki PSLIST_ENTRY_DESTROY(ifp, if_pslist_entry); 1526 1.414 ozaki 1527 1.369 christos pfil_run_ifhooks(if_pfil, PFIL_IFNET_DETACH, ifp); 1528 1.265 rmind (void)pfil_head_destroy(ifp->if_pfil); 1529 1.184 dyoung 1530 1.57 thorpej /* Announce that the interface is gone. */ 1531 1.57 thorpej rt_ifannouncemsg(ifp, IFAN_DEPARTURE); 1532 1.93 itojun 1533 1.320 ozaki IF_AFDATA_LOCK_DESTROY(ifp); 1534 1.320 ozaki 1535 1.323 ozaki if (ifp->if_percpuq != NULL) { 1536 1.323 ozaki if_percpuq_destroy(ifp->if_percpuq); 1537 1.323 ozaki ifp->if_percpuq = NULL; 1538 1.323 ozaki } 1539 1.323 ozaki 1540 1.414 ozaki mutex_obj_free(ifp->if_ioctl_lock); 1541 1.414 ozaki ifp->if_ioctl_lock = NULL; 1542 1.419 ozaki mutex_obj_free(ifp->if_snd.ifq_lock); 1543 1.469 thorpej if_stats_fini(ifp); 1544 1.492 yamaguch KASSERT(!simplehook_has_hooks(ifp->if_linkstate_hooks)); 1545 1.492 yamaguch simplehook_destroy(ifp->if_linkstate_hooks); 1546 1.414 ozaki 1547 1.53 thorpej splx(s); 1548 1.349 ozaki 1549 1.349 ozaki #ifdef IFAREF_DEBUG 1550 1.349 ozaki if_check_and_free_ifa_list(ifp); 1551 1.349 ozaki #endif 1552 1.95 itojun } 1553 1.95 itojun 1554 1.53 thorpej /* 1555 1.53 thorpej * Callback for a radix tree walk to delete all references to an 1556 1.53 thorpej * ifnet. 1557 1.53 thorpej */ 1558 1.163 thorpej static int 1559 1.362 ozaki if_delroute_matcher(struct rtentry *rt, void *v) 1560 1.53 thorpej { 1561 1.55 itojun struct ifnet *ifp = (struct ifnet *)v; 1562 1.53 thorpej 1563 1.362 ozaki if (rt->rt_ifp == ifp) 1564 1.362 ozaki return 1; 1565 1.362 ozaki else 1566 1.185 dyoung return 0; 1567 1.53 thorpej } 1568 1.53 thorpej 1569 1.1 cgd /* 1570 1.63 thorpej * Create a clone network interface. 1571 1.63 thorpej */ 1572 1.302 ozaki static int 1573 1.163 thorpej if_clone_create(const char *name) 1574 1.63 thorpej { 1575 1.63 thorpej struct if_clone *ifc; 1576 1.336 ozaki struct ifnet *ifp; 1577 1.336 ozaki struct psref psref; 1578 1.528 msaitoh int unit; 1579 1.63 thorpej 1580 1.372 ozaki KASSERT(mutex_owned(&if_clone_mtx)); 1581 1.372 ozaki 1582 1.63 thorpej ifc = if_clone_lookup(name, &unit); 1583 1.63 thorpej if (ifc == NULL) 1584 1.185 dyoung return EINVAL; 1585 1.63 thorpej 1586 1.336 ozaki ifp = if_get(name, &psref); 1587 1.336 ozaki if (ifp != NULL) { 1588 1.336 ozaki if_put(ifp, &psref); 1589 1.185 dyoung return EEXIST; 1590 1.336 ozaki } 1591 1.63 thorpej 1592 1.185 dyoung return (*ifc->ifc_create)(ifc, unit); 1593 1.63 thorpej } 1594 1.63 thorpej 1595 1.63 thorpej /* 1596 1.63 thorpej * Destroy a clone network interface. 1597 1.63 thorpej */ 1598 1.302 ozaki static int 1599 1.163 thorpej if_clone_destroy(const char *name) 1600 1.63 thorpej { 1601 1.63 thorpej struct if_clone *ifc; 1602 1.63 thorpej struct ifnet *ifp; 1603 1.336 ozaki struct psref psref; 1604 1.458 ozaki int error; 1605 1.497 riastrad int (*if_ioctlfn)(struct ifnet *, u_long, void *); 1606 1.63 thorpej 1607 1.372 ozaki KASSERT(mutex_owned(&if_clone_mtx)); 1608 1.372 ozaki 1609 1.63 thorpej ifc = if_clone_lookup(name, NULL); 1610 1.63 thorpej if (ifc == NULL) 1611 1.185 dyoung return EINVAL; 1612 1.63 thorpej 1613 1.336 ozaki if (ifc->ifc_destroy == NULL) 1614 1.336 ozaki return EOPNOTSUPP; 1615 1.336 ozaki 1616 1.336 ozaki ifp = if_get(name, &psref); 1617 1.63 thorpej if (ifp == NULL) 1618 1.185 dyoung return ENXIO; 1619 1.63 thorpej 1620 1.336 ozaki /* We have to disable ioctls here */ 1621 1.413 ozaki IFNET_LOCK(ifp); 1622 1.497 riastrad if_ioctlfn = ifp->if_ioctl; 1623 1.336 ozaki ifp->if_ioctl = if_nullioctl; 1624 1.413 ozaki IFNET_UNLOCK(ifp); 1625 1.336 ozaki 1626 1.336 ozaki /* 1627 1.336 ozaki * We cannot call ifc_destroy with holding ifp. 1628 1.336 ozaki * Releasing ifp here is safe thanks to if_clone_mtx. 1629 1.336 ozaki */ 1630 1.336 ozaki if_put(ifp, &psref); 1631 1.63 thorpej 1632 1.458 ozaki error = (*ifc->ifc_destroy)(ifp); 1633 1.458 ozaki 1634 1.458 ozaki if (error != 0) { 1635 1.458 ozaki /* We have to restore if_ioctl on error */ 1636 1.458 ozaki IFNET_LOCK(ifp); 1637 1.497 riastrad ifp->if_ioctl = if_ioctlfn; 1638 1.458 ozaki IFNET_UNLOCK(ifp); 1639 1.458 ozaki } 1640 1.458 ozaki 1641 1.458 ozaki return error; 1642 1.63 thorpej } 1643 1.63 thorpej 1644 1.379 knakahar static bool 1645 1.379 knakahar if_is_unit(const char *name) 1646 1.379 knakahar { 1647 1.379 knakahar 1648 1.455 msaitoh while (*name != '\0') { 1649 1.379 knakahar if (*name < '0' || *name > '9') 1650 1.379 knakahar return false; 1651 1.379 knakahar name++; 1652 1.379 knakahar } 1653 1.379 knakahar 1654 1.379 knakahar return true; 1655 1.379 knakahar } 1656 1.379 knakahar 1657 1.63 thorpej /* 1658 1.63 thorpej * Look up a network interface cloner. 1659 1.63 thorpej */ 1660 1.163 thorpej static struct if_clone * 1661 1.163 thorpej if_clone_lookup(const char *name, int *unitp) 1662 1.63 thorpej { 1663 1.63 thorpej struct if_clone *ifc; 1664 1.63 thorpej const char *cp; 1665 1.262 christos char *dp, ifname[IFNAMSIZ + 3]; 1666 1.128 itojun int unit; 1667 1.63 thorpej 1668 1.372 ozaki KASSERT(mutex_owned(&if_clone_mtx)); 1669 1.372 ozaki 1670 1.262 christos strcpy(ifname, "if_"); 1671 1.128 itojun /* separate interface name from unit */ 1672 1.379 knakahar /* TODO: search unit number from backward */ 1673 1.262 christos for (dp = ifname + 3, cp = name; cp - name < IFNAMSIZ && 1674 1.379 knakahar *cp && !if_is_unit(cp);) 1675 1.262 christos *dp++ = *cp++; 1676 1.128 itojun 1677 1.128 itojun if (cp == name || cp - name == IFNAMSIZ || !*cp) 1678 1.185 dyoung return NULL; /* No name or unit number */ 1679 1.262 christos *dp++ = '\0'; 1680 1.128 itojun 1681 1.262 christos again: 1682 1.128 itojun LIST_FOREACH(ifc, &if_cloners, ifc_list) { 1683 1.262 christos if (strcmp(ifname + 3, ifc->ifc_name) == 0) 1684 1.128 itojun break; 1685 1.63 thorpej } 1686 1.63 thorpej 1687 1.262 christos if (ifc == NULL) { 1688 1.375 christos int error; 1689 1.375 christos if (*ifname == '\0') 1690 1.375 christos return NULL; 1691 1.375 christos mutex_exit(&if_clone_mtx); 1692 1.375 christos error = module_autoload(ifname, MODULE_CLASS_DRIVER); 1693 1.375 christos mutex_enter(&if_clone_mtx); 1694 1.375 christos if (error) 1695 1.262 christos return NULL; 1696 1.262 christos *ifname = '\0'; 1697 1.262 christos goto again; 1698 1.262 christos } 1699 1.63 thorpej 1700 1.128 itojun unit = 0; 1701 1.129 itojun while (cp - name < IFNAMSIZ && *cp) { 1702 1.245 christos if (*cp < '0' || *cp > '9' || unit >= INT_MAX / 10) { 1703 1.63 thorpej /* Bogus unit number. */ 1704 1.185 dyoung return NULL; 1705 1.63 thorpej } 1706 1.128 itojun unit = (unit * 10) + (*cp++ - '0'); 1707 1.63 thorpej } 1708 1.63 thorpej 1709 1.63 thorpej if (unitp != NULL) 1710 1.128 itojun *unitp = unit; 1711 1.185 dyoung return ifc; 1712 1.63 thorpej } 1713 1.63 thorpej 1714 1.63 thorpej /* 1715 1.63 thorpej * Register a network interface cloner. 1716 1.63 thorpej */ 1717 1.63 thorpej void 1718 1.163 thorpej if_clone_attach(struct if_clone *ifc) 1719 1.63 thorpej { 1720 1.63 thorpej 1721 1.372 ozaki mutex_enter(&if_clone_mtx); 1722 1.63 thorpej LIST_INSERT_HEAD(&if_cloners, ifc, ifc_list); 1723 1.67 thorpej if_cloners_count++; 1724 1.372 ozaki mutex_exit(&if_clone_mtx); 1725 1.63 thorpej } 1726 1.63 thorpej 1727 1.63 thorpej /* 1728 1.63 thorpej * Unregister a network interface cloner. 1729 1.63 thorpej */ 1730 1.63 thorpej void 1731 1.163 thorpej if_clone_detach(struct if_clone *ifc) 1732 1.63 thorpej { 1733 1.63 thorpej 1734 1.377 christos mutex_enter(&if_clone_mtx); 1735 1.63 thorpej LIST_REMOVE(ifc, ifc_list); 1736 1.67 thorpej if_cloners_count--; 1737 1.377 christos mutex_exit(&if_clone_mtx); 1738 1.67 thorpej } 1739 1.67 thorpej 1740 1.67 thorpej /* 1741 1.67 thorpej * Provide list of interface cloners to userspace. 1742 1.67 thorpej */ 1743 1.315 martin int 1744 1.315 martin if_clone_list(int buf_count, char *buffer, int *total) 1745 1.67 thorpej { 1746 1.67 thorpej char outbuf[IFNAMSIZ], *dst; 1747 1.67 thorpej struct if_clone *ifc; 1748 1.67 thorpej int count, error = 0; 1749 1.67 thorpej 1750 1.372 ozaki mutex_enter(&if_clone_mtx); 1751 1.315 martin *total = if_cloners_count; 1752 1.315 martin if ((dst = buffer) == NULL) { 1753 1.67 thorpej /* Just asking how many there are. */ 1754 1.372 ozaki goto out; 1755 1.67 thorpej } 1756 1.67 thorpej 1757 1.372 ozaki if (buf_count < 0) { 1758 1.372 ozaki error = EINVAL; 1759 1.372 ozaki goto out; 1760 1.372 ozaki } 1761 1.67 thorpej 1762 1.528 msaitoh count = (if_cloners_count < buf_count) ? if_cloners_count : buf_count; 1763 1.67 thorpej 1764 1.67 thorpej for (ifc = LIST_FIRST(&if_cloners); ifc != NULL && count != 0; 1765 1.67 thorpej ifc = LIST_NEXT(ifc, ifc_list), count--, dst += IFNAMSIZ) { 1766 1.175 christos (void)strncpy(outbuf, ifc->ifc_name, sizeof(outbuf)); 1767 1.372 ozaki if (outbuf[sizeof(outbuf) - 1] != '\0') { 1768 1.372 ozaki error = ENAMETOOLONG; 1769 1.372 ozaki goto out; 1770 1.372 ozaki } 1771 1.172 christos error = copyout(outbuf, dst, sizeof(outbuf)); 1772 1.185 dyoung if (error != 0) 1773 1.67 thorpej break; 1774 1.67 thorpej } 1775 1.67 thorpej 1776 1.372 ozaki out: 1777 1.372 ozaki mutex_exit(&if_clone_mtx); 1778 1.185 dyoung return error; 1779 1.63 thorpej } 1780 1.63 thorpej 1781 1.207 dyoung void 1782 1.357 ozaki ifa_psref_init(struct ifaddr *ifa) 1783 1.357 ozaki { 1784 1.357 ozaki 1785 1.357 ozaki psref_target_init(&ifa->ifa_psref, ifa_psref_class); 1786 1.357 ozaki } 1787 1.357 ozaki 1788 1.357 ozaki void 1789 1.291 rmind ifaref(struct ifaddr *ifa) 1790 1.291 rmind { 1791 1.438 ozaki 1792 1.439 ozaki atomic_inc_uint(&ifa->ifa_refcnt); 1793 1.291 rmind } 1794 1.291 rmind 1795 1.291 rmind void 1796 1.291 rmind ifafree(struct ifaddr *ifa) 1797 1.291 rmind { 1798 1.291 rmind KASSERT(ifa != NULL); 1799 1.462 ozaki KASSERTMSG(ifa->ifa_refcnt > 0, "ifa_refcnt=%d", ifa->ifa_refcnt); 1800 1.291 rmind 1801 1.503 riastrad membar_release(); 1802 1.502 riastrad if (atomic_dec_uint_nv(&ifa->ifa_refcnt) != 0) 1803 1.502 riastrad return; 1804 1.503 riastrad membar_acquire(); 1805 1.502 riastrad free(ifa, M_IFADDR); 1806 1.291 rmind } 1807 1.291 rmind 1808 1.366 ozaki bool 1809 1.366 ozaki ifa_is_destroying(struct ifaddr *ifa) 1810 1.366 ozaki { 1811 1.366 ozaki 1812 1.366 ozaki return ISSET(ifa->ifa_flags, IFA_DESTROYING); 1813 1.366 ozaki } 1814 1.366 ozaki 1815 1.291 rmind void 1816 1.207 dyoung ifa_insert(struct ifnet *ifp, struct ifaddr *ifa) 1817 1.207 dyoung { 1818 1.357 ozaki 1819 1.207 dyoung ifa->ifa_ifp = ifp; 1820 1.357 ozaki 1821 1.416 ozaki /* 1822 1.418 ozaki * Check MP-safety for IFEF_MPSAFE drivers. 1823 1.416 ozaki * Check !IFF_RUNNING for initialization routines that normally don't 1824 1.416 ozaki * take IFNET_LOCK but it's safe because there is no competitor. 1825 1.416 ozaki * XXX there are false positive cases because IFF_RUNNING can be off on 1826 1.416 ozaki * if_stop. 1827 1.416 ozaki */ 1828 1.418 ozaki KASSERT(!if_is_mpsafe(ifp) || !ISSET(ifp->if_flags, IFF_RUNNING) || 1829 1.416 ozaki IFNET_LOCKED(ifp)); 1830 1.416 ozaki 1831 1.208 dyoung TAILQ_INSERT_TAIL(&ifp->if_addrlist, ifa, ifa_list); 1832 1.354 ozaki IFADDR_ENTRY_INIT(ifa); 1833 1.354 ozaki IFADDR_WRITER_INSERT_TAIL(ifp, ifa); 1834 1.357 ozaki 1835 1.291 rmind ifaref(ifa); 1836 1.207 dyoung } 1837 1.207 dyoung 1838 1.207 dyoung void 1839 1.207 dyoung ifa_remove(struct ifnet *ifp, struct ifaddr *ifa) 1840 1.207 dyoung { 1841 1.357 ozaki 1842 1.207 dyoung KASSERT(ifa->ifa_ifp == ifp); 1843 1.416 ozaki /* 1844 1.418 ozaki * Check MP-safety for IFEF_MPSAFE drivers. 1845 1.512 rillig * if_is_deactivated indicates ifa_remove is called from if_detach 1846 1.508 skrll * where it is safe even if IFNET_LOCK isn't held. 1847 1.416 ozaki */ 1848 1.528 msaitoh KASSERT(!if_is_mpsafe(ifp) || if_is_deactivated(ifp) || 1849 1.528 msaitoh IFNET_LOCKED(ifp)); 1850 1.357 ozaki 1851 1.207 dyoung TAILQ_REMOVE(&ifp->if_addrlist, ifa, ifa_list); 1852 1.354 ozaki IFADDR_WRITER_REMOVE(ifa); 1853 1.359 ozaki #ifdef NET_MPSAFE 1854 1.416 ozaki IFNET_GLOBAL_LOCK(); 1855 1.357 ozaki pserialize_perform(ifnet_psz); 1856 1.416 ozaki IFNET_GLOBAL_UNLOCK(); 1857 1.357 ozaki #endif 1858 1.357 ozaki 1859 1.359 ozaki #ifdef NET_MPSAFE 1860 1.357 ozaki psref_target_destroy(&ifa->ifa_psref, ifa_psref_class); 1861 1.357 ozaki #endif 1862 1.360 ozaki IFADDR_ENTRY_DESTROY(ifa); 1863 1.291 rmind ifafree(ifa); 1864 1.207 dyoung } 1865 1.207 dyoung 1866 1.357 ozaki void 1867 1.357 ozaki ifa_acquire(struct ifaddr *ifa, struct psref *psref) 1868 1.357 ozaki { 1869 1.357 ozaki 1870 1.453 ozaki PSREF_DEBUG_FILL_RETURN_ADDRESS(psref); 1871 1.357 ozaki psref_acquire(psref, &ifa->ifa_psref, ifa_psref_class); 1872 1.357 ozaki } 1873 1.357 ozaki 1874 1.357 ozaki void 1875 1.357 ozaki ifa_release(struct ifaddr *ifa, struct psref *psref) 1876 1.357 ozaki { 1877 1.357 ozaki 1878 1.357 ozaki if (ifa == NULL) 1879 1.357 ozaki return; 1880 1.357 ozaki 1881 1.357 ozaki psref_release(psref, &ifa->ifa_psref, ifa_psref_class); 1882 1.357 ozaki } 1883 1.357 ozaki 1884 1.357 ozaki bool 1885 1.357 ozaki ifa_held(struct ifaddr *ifa) 1886 1.357 ozaki { 1887 1.357 ozaki 1888 1.357 ozaki return psref_held(&ifa->ifa_psref, ifa_psref_class); 1889 1.357 ozaki } 1890 1.357 ozaki 1891 1.194 dyoung static inline int 1892 1.194 dyoung equal(const struct sockaddr *sa1, const struct sockaddr *sa2) 1893 1.194 dyoung { 1894 1.528 msaitoh 1895 1.194 dyoung return sockaddr_cmp(sa1, sa2) == 0; 1896 1.194 dyoung } 1897 1.194 dyoung 1898 1.63 thorpej /* 1899 1.1 cgd * Locate an interface based on a complete address. 1900 1.1 cgd */ 1901 1.1 cgd /*ARGSUSED*/ 1902 1.1 cgd struct ifaddr * 1903 1.163 thorpej ifa_ifwithaddr(const struct sockaddr *addr) 1904 1.1 cgd { 1905 1.61 augustss struct ifnet *ifp; 1906 1.61 augustss struct ifaddr *ifa; 1907 1.1 cgd 1908 1.334 ozaki IFNET_READER_FOREACH(ifp) { 1909 1.348 ozaki if (if_is_deactivated(ifp)) 1910 1.1 cgd continue; 1911 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 1912 1.53 thorpej if (ifa->ifa_addr->sa_family != addr->sa_family) 1913 1.53 thorpej continue; 1914 1.53 thorpej if (equal(addr, ifa->ifa_addr)) 1915 1.185 dyoung return ifa; 1916 1.53 thorpej if ((ifp->if_flags & IFF_BROADCAST) && 1917 1.53 thorpej ifa->ifa_broadaddr && 1918 1.53 thorpej /* IP6 doesn't have broadcast */ 1919 1.53 thorpej ifa->ifa_broadaddr->sa_len != 0 && 1920 1.53 thorpej equal(ifa->ifa_broadaddr, addr)) 1921 1.185 dyoung return ifa; 1922 1.53 thorpej } 1923 1.1 cgd } 1924 1.357 ozaki return NULL; 1925 1.357 ozaki } 1926 1.357 ozaki 1927 1.357 ozaki struct ifaddr * 1928 1.357 ozaki ifa_ifwithaddr_psref(const struct sockaddr *addr, struct psref *psref) 1929 1.357 ozaki { 1930 1.357 ozaki struct ifaddr *ifa; 1931 1.357 ozaki int s = pserialize_read_enter(); 1932 1.357 ozaki 1933 1.357 ozaki ifa = ifa_ifwithaddr(addr); 1934 1.357 ozaki if (ifa != NULL) 1935 1.357 ozaki ifa_acquire(ifa, psref); 1936 1.334 ozaki pserialize_read_exit(s); 1937 1.357 ozaki 1938 1.357 ozaki return ifa; 1939 1.1 cgd } 1940 1.49 itojun 1941 1.1 cgd /* 1942 1.1 cgd * Locate the point to point interface with a given destination address. 1943 1.1 cgd */ 1944 1.1 cgd /*ARGSUSED*/ 1945 1.1 cgd struct ifaddr * 1946 1.163 thorpej ifa_ifwithdstaddr(const struct sockaddr *addr) 1947 1.1 cgd { 1948 1.61 augustss struct ifnet *ifp; 1949 1.61 augustss struct ifaddr *ifa; 1950 1.1 cgd 1951 1.334 ozaki IFNET_READER_FOREACH(ifp) { 1952 1.348 ozaki if (if_is_deactivated(ifp)) 1953 1.53 thorpej continue; 1954 1.185 dyoung if ((ifp->if_flags & IFF_POINTOPOINT) == 0) 1955 1.185 dyoung continue; 1956 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 1957 1.185 dyoung if (ifa->ifa_addr->sa_family != addr->sa_family || 1958 1.185 dyoung ifa->ifa_dstaddr == NULL) 1959 1.185 dyoung continue; 1960 1.185 dyoung if (equal(addr, ifa->ifa_dstaddr)) 1961 1.185 dyoung return ifa; 1962 1.53 thorpej } 1963 1.1 cgd } 1964 1.357 ozaki 1965 1.357 ozaki return NULL; 1966 1.357 ozaki } 1967 1.357 ozaki 1968 1.357 ozaki struct ifaddr * 1969 1.357 ozaki ifa_ifwithdstaddr_psref(const struct sockaddr *addr, struct psref *psref) 1970 1.357 ozaki { 1971 1.357 ozaki struct ifaddr *ifa; 1972 1.357 ozaki int s; 1973 1.357 ozaki 1974 1.357 ozaki s = pserialize_read_enter(); 1975 1.357 ozaki ifa = ifa_ifwithdstaddr(addr); 1976 1.357 ozaki if (ifa != NULL) 1977 1.357 ozaki ifa_acquire(ifa, psref); 1978 1.334 ozaki pserialize_read_exit(s); 1979 1.357 ozaki 1980 1.357 ozaki return ifa; 1981 1.1 cgd } 1982 1.1 cgd 1983 1.1 cgd /* 1984 1.1 cgd * Find an interface on a specific network. If many, choice 1985 1.15 mycroft * is most specific found. 1986 1.1 cgd */ 1987 1.1 cgd struct ifaddr * 1988 1.163 thorpej ifa_ifwithnet(const struct sockaddr *addr) 1989 1.1 cgd { 1990 1.61 augustss struct ifnet *ifp; 1991 1.357 ozaki struct ifaddr *ifa, *ifa_maybe = NULL; 1992 1.140 matt const struct sockaddr_dl *sdl; 1993 1.1 cgd u_int af = addr->sa_family; 1994 1.171 pooka const char *addr_data = addr->sa_data, *cplim; 1995 1.1 cgd 1996 1.1 cgd if (af == AF_LINK) { 1997 1.195 dyoung sdl = satocsdl(addr); 1998 1.137 itojun if (sdl->sdl_index && sdl->sdl_index < if_indexlim && 1999 1.137 itojun ifindex2ifnet[sdl->sdl_index] && 2000 1.348 ozaki !if_is_deactivated(ifindex2ifnet[sdl->sdl_index])) { 2001 1.316 ozaki return ifindex2ifnet[sdl->sdl_index]->if_dl; 2002 1.316 ozaki } 2003 1.1 cgd } 2004 1.51 bouyer #ifdef NETATALK 2005 1.51 bouyer if (af == AF_APPLETALK) { 2006 1.140 matt const struct sockaddr_at *sat, *sat2; 2007 1.158 christos sat = (const struct sockaddr_at *)addr; 2008 1.334 ozaki IFNET_READER_FOREACH(ifp) { 2009 1.348 ozaki if (if_is_deactivated(ifp)) 2010 1.53 thorpej continue; 2011 1.528 msaitoh ifa = at_ifawithnet((const struct sockaddr_at *)addr, 2012 1.528 msaitoh ifp); 2013 1.62 bouyer if (ifa == NULL) 2014 1.62 bouyer continue; 2015 1.62 bouyer sat2 = (struct sockaddr_at *)ifa->ifa_addr; 2016 1.62 bouyer if (sat2->sat_addr.s_net == sat->sat_addr.s_net) 2017 1.185 dyoung return ifa; /* exact match */ 2018 1.62 bouyer if (ifa_maybe == NULL) { 2019 1.112 wiz /* else keep the if with the right range */ 2020 1.62 bouyer ifa_maybe = ifa; 2021 1.62 bouyer } 2022 1.51 bouyer } 2023 1.185 dyoung return ifa_maybe; 2024 1.51 bouyer } 2025 1.51 bouyer #endif 2026 1.334 ozaki IFNET_READER_FOREACH(ifp) { 2027 1.348 ozaki if (if_is_deactivated(ifp)) 2028 1.53 thorpej continue; 2029 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 2030 1.171 pooka const char *cp, *cp2, *cp3; 2031 1.15 mycroft 2032 1.15 mycroft if (ifa->ifa_addr->sa_family != af || 2033 1.185 dyoung ifa->ifa_netmask == NULL) 2034 1.53 thorpej next: continue; 2035 1.15 mycroft cp = addr_data; 2036 1.15 mycroft cp2 = ifa->ifa_addr->sa_data; 2037 1.15 mycroft cp3 = ifa->ifa_netmask->sa_data; 2038 1.171 pooka cplim = (const char *)ifa->ifa_netmask + 2039 1.53 thorpej ifa->ifa_netmask->sa_len; 2040 1.53 thorpej while (cp3 < cplim) { 2041 1.53 thorpej if ((*cp++ ^ *cp2++) & *cp3++) { 2042 1.53 thorpej /* want to continue for() loop */ 2043 1.32 mrg goto next; 2044 1.53 thorpej } 2045 1.53 thorpej } 2046 1.185 dyoung if (ifa_maybe == NULL || 2047 1.329 ozaki rt_refines(ifa->ifa_netmask, 2048 1.528 msaitoh ifa_maybe->ifa_netmask)) 2049 1.15 mycroft ifa_maybe = ifa; 2050 1.15 mycroft } 2051 1.53 thorpej } 2052 1.357 ozaki return ifa_maybe; 2053 1.357 ozaki } 2054 1.357 ozaki 2055 1.357 ozaki struct ifaddr * 2056 1.357 ozaki ifa_ifwithnet_psref(const struct sockaddr *addr, struct psref *psref) 2057 1.357 ozaki { 2058 1.357 ozaki struct ifaddr *ifa; 2059 1.357 ozaki int s; 2060 1.357 ozaki 2061 1.357 ozaki s = pserialize_read_enter(); 2062 1.357 ozaki ifa = ifa_ifwithnet(addr); 2063 1.357 ozaki if (ifa != NULL) 2064 1.357 ozaki ifa_acquire(ifa, psref); 2065 1.334 ozaki pserialize_read_exit(s); 2066 1.357 ozaki 2067 1.357 ozaki return ifa; 2068 1.26 mrg } 2069 1.53 thorpej 2070 1.26 mrg /* 2071 1.504 andvar * Find the interface of the address. 2072 1.26 mrg */ 2073 1.26 mrg struct ifaddr * 2074 1.163 thorpej ifa_ifwithladdr(const struct sockaddr *addr) 2075 1.26 mrg { 2076 1.26 mrg struct ifaddr *ia; 2077 1.26 mrg 2078 1.53 thorpej if ((ia = ifa_ifwithaddr(addr)) || (ia = ifa_ifwithdstaddr(addr)) || 2079 1.53 thorpej (ia = ifa_ifwithnet(addr))) 2080 1.185 dyoung return ia; 2081 1.185 dyoung return NULL; 2082 1.1 cgd } 2083 1.1 cgd 2084 1.357 ozaki struct ifaddr * 2085 1.357 ozaki ifa_ifwithladdr_psref(const struct sockaddr *addr, struct psref *psref) 2086 1.357 ozaki { 2087 1.357 ozaki struct ifaddr *ifa; 2088 1.357 ozaki int s; 2089 1.357 ozaki 2090 1.357 ozaki s = pserialize_read_enter(); 2091 1.357 ozaki ifa = ifa_ifwithladdr(addr); 2092 1.357 ozaki if (ifa != NULL) 2093 1.357 ozaki ifa_acquire(ifa, psref); 2094 1.357 ozaki pserialize_read_exit(s); 2095 1.357 ozaki 2096 1.357 ozaki return ifa; 2097 1.357 ozaki } 2098 1.357 ozaki 2099 1.532 ozaki struct ifaddr * 2100 1.532 ozaki if_first_addr(const struct ifnet *ifp, const int af) 2101 1.532 ozaki { 2102 1.532 ozaki struct ifaddr *ifa = NULL; 2103 1.532 ozaki 2104 1.532 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 2105 1.532 ozaki if (ifa->ifa_addr->sa_family == af) 2106 1.532 ozaki break; 2107 1.532 ozaki } 2108 1.532 ozaki return ifa; 2109 1.532 ozaki } 2110 1.532 ozaki 2111 1.532 ozaki struct ifaddr * 2112 1.532 ozaki if_first_addr_psref(const struct ifnet *ifp, const int af, struct psref *psref) 2113 1.532 ozaki { 2114 1.532 ozaki struct ifaddr *ifa; 2115 1.532 ozaki int s; 2116 1.532 ozaki 2117 1.532 ozaki s = pserialize_read_enter(); 2118 1.532 ozaki ifa = if_first_addr(ifp, af); 2119 1.532 ozaki if (ifa != NULL) 2120 1.532 ozaki ifa_acquire(ifa, psref); 2121 1.532 ozaki pserialize_read_exit(s); 2122 1.532 ozaki 2123 1.532 ozaki return ifa; 2124 1.532 ozaki } 2125 1.532 ozaki 2126 1.1 cgd /* 2127 1.1 cgd * Find an interface address specific to an interface best matching 2128 1.1 cgd * a given address. 2129 1.1 cgd */ 2130 1.1 cgd struct ifaddr * 2131 1.163 thorpej ifaof_ifpforaddr(const struct sockaddr *addr, struct ifnet *ifp) 2132 1.1 cgd { 2133 1.61 augustss struct ifaddr *ifa; 2134 1.140 matt const char *cp, *cp2, *cp3; 2135 1.140 matt const char *cplim; 2136 1.1 cgd struct ifaddr *ifa_maybe = 0; 2137 1.1 cgd u_int af = addr->sa_family; 2138 1.1 cgd 2139 1.348 ozaki if (if_is_deactivated(ifp)) 2140 1.185 dyoung return NULL; 2141 1.53 thorpej 2142 1.1 cgd if (af >= AF_MAX) 2143 1.185 dyoung return NULL; 2144 1.53 thorpej 2145 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 2146 1.1 cgd if (ifa->ifa_addr->sa_family != af) 2147 1.1 cgd continue; 2148 1.1 cgd ifa_maybe = ifa; 2149 1.185 dyoung if (ifa->ifa_netmask == NULL) { 2150 1.1 cgd if (equal(addr, ifa->ifa_addr) || 2151 1.53 thorpej (ifa->ifa_dstaddr && 2152 1.53 thorpej equal(addr, ifa->ifa_dstaddr))) 2153 1.185 dyoung return ifa; 2154 1.1 cgd continue; 2155 1.1 cgd } 2156 1.1 cgd cp = addr->sa_data; 2157 1.1 cgd cp2 = ifa->ifa_addr->sa_data; 2158 1.1 cgd cp3 = ifa->ifa_netmask->sa_data; 2159 1.1 cgd cplim = ifa->ifa_netmask->sa_len + (char *)ifa->ifa_netmask; 2160 1.53 thorpej for (; cp3 < cplim; cp3++) { 2161 1.1 cgd if ((*cp++ ^ *cp2++) & *cp3) 2162 1.1 cgd break; 2163 1.53 thorpej } 2164 1.1 cgd if (cp3 == cplim) 2165 1.185 dyoung return ifa; 2166 1.1 cgd } 2167 1.185 dyoung return ifa_maybe; 2168 1.1 cgd } 2169 1.9 mycroft 2170 1.357 ozaki struct ifaddr * 2171 1.357 ozaki ifaof_ifpforaddr_psref(const struct sockaddr *addr, struct ifnet *ifp, 2172 1.357 ozaki struct psref *psref) 2173 1.357 ozaki { 2174 1.357 ozaki struct ifaddr *ifa; 2175 1.357 ozaki int s; 2176 1.357 ozaki 2177 1.357 ozaki s = pserialize_read_enter(); 2178 1.357 ozaki ifa = ifaof_ifpforaddr(addr, ifp); 2179 1.357 ozaki if (ifa != NULL) 2180 1.357 ozaki ifa_acquire(ifa, psref); 2181 1.357 ozaki pserialize_read_exit(s); 2182 1.357 ozaki 2183 1.357 ozaki return ifa; 2184 1.357 ozaki } 2185 1.357 ozaki 2186 1.1 cgd /* 2187 1.1 cgd * Default action when installing a route with a Link Level gateway. 2188 1.1 cgd * Lookup an appropriate real ifa to point to. 2189 1.1 cgd * This should be moved to /sys/net/link.c eventually. 2190 1.1 cgd */ 2191 1.15 mycroft void 2192 1.228 dyoung link_rtrequest(int cmd, struct rtentry *rt, const struct rt_addrinfo *info) 2193 1.1 cgd { 2194 1.61 augustss struct ifaddr *ifa; 2195 1.194 dyoung const struct sockaddr *dst; 2196 1.15 mycroft struct ifnet *ifp; 2197 1.357 ozaki struct psref psref; 2198 1.1 cgd 2199 1.464 ozaki if (cmd != RTM_ADD || ISSET(info->rti_flags, RTF_DONTCHANGEIFA)) 2200 1.1 cgd return; 2201 1.464 ozaki ifp = rt->rt_ifa->ifa_ifp; 2202 1.464 ozaki dst = rt_getkey(rt); 2203 1.357 ozaki if ((ifa = ifaof_ifpforaddr_psref(dst, ifp, &psref)) != NULL) { 2204 1.176 dyoung rt_replace_ifa(rt, ifa); 2205 1.1 cgd if (ifa->ifa_rtrequest && ifa->ifa_rtrequest != link_rtrequest) 2206 1.82 itojun ifa->ifa_rtrequest(cmd, rt, info); 2207 1.357 ozaki ifa_release(ifa, &psref); 2208 1.1 cgd } 2209 1.1 cgd } 2210 1.1 cgd 2211 1.1 cgd /* 2212 1.325 roy * bitmask macros to manage a densely packed link_state change queue. 2213 1.325 roy * Because we need to store LINK_STATE_UNKNOWN(0), LINK_STATE_DOWN(1) and 2214 1.325 roy * LINK_STATE_UP(2) we need 2 bits for each state change. 2215 1.325 roy * As a state change to store is 0, treat all bits set as an unset item. 2216 1.325 roy */ 2217 1.325 roy #define LQ_ITEM_BITS 2 2218 1.325 roy #define LQ_ITEM_MASK ((1 << LQ_ITEM_BITS) - 1) 2219 1.325 roy #define LQ_MASK(i) (LQ_ITEM_MASK << (i) * LQ_ITEM_BITS) 2220 1.325 roy #define LINK_STATE_UNSET LQ_ITEM_MASK 2221 1.325 roy #define LQ_ITEM(q, i) (((q) & LQ_MASK((i))) >> (i) * LQ_ITEM_BITS) 2222 1.325 roy #define LQ_STORE(q, i, v) \ 2223 1.325 roy do { \ 2224 1.325 roy (q) &= ~LQ_MASK((i)); \ 2225 1.325 roy (q) |= (v) << (i) * LQ_ITEM_BITS; \ 2226 1.325 roy } while (0 /* CONSTCOND */) 2227 1.325 roy #define LQ_MAX(q) ((sizeof((q)) * NBBY) / LQ_ITEM_BITS) 2228 1.325 roy #define LQ_POP(q, v) \ 2229 1.325 roy do { \ 2230 1.325 roy (v) = LQ_ITEM((q), 0); \ 2231 1.325 roy (q) >>= LQ_ITEM_BITS; \ 2232 1.325 roy (q) |= LINK_STATE_UNSET << (LQ_MAX((q)) - 1) * LQ_ITEM_BITS; \ 2233 1.325 roy } while (0 /* CONSTCOND */) 2234 1.325 roy #define LQ_PUSH(q, v) \ 2235 1.325 roy do { \ 2236 1.325 roy (q) >>= LQ_ITEM_BITS; \ 2237 1.325 roy (q) |= (v) << (LQ_MAX((q)) - 1) * LQ_ITEM_BITS; \ 2238 1.325 roy } while (0 /* CONSTCOND */) 2239 1.325 roy #define LQ_FIND_UNSET(q, i) \ 2240 1.325 roy for ((i) = 0; i < LQ_MAX((q)); (i)++) { \ 2241 1.325 roy if (LQ_ITEM((q), (i)) == LINK_STATE_UNSET) \ 2242 1.325 roy break; \ 2243 1.325 roy } 2244 1.406 ozaki 2245 1.406 ozaki /* 2246 1.325 roy * Handle a change in the interface link state and 2247 1.325 roy * queue notifications. 2248 1.159 dyoung */ 2249 1.159 dyoung void 2250 1.159 dyoung if_link_state_change(struct ifnet *ifp, int link_state) 2251 1.159 dyoung { 2252 1.406 ozaki int idx; 2253 1.263 roy 2254 1.325 roy /* Ensure change is to a valid state */ 2255 1.325 roy switch (link_state) { 2256 1.325 roy case LINK_STATE_UNKNOWN: /* FALLTHROUGH */ 2257 1.325 roy case LINK_STATE_DOWN: /* FALLTHROUGH */ 2258 1.325 roy case LINK_STATE_UP: 2259 1.325 roy break; 2260 1.325 roy default: 2261 1.325 roy #ifdef DEBUG 2262 1.325 roy printf("%s: invalid link state %d\n", 2263 1.325 roy ifp->if_xname, link_state); 2264 1.325 roy #endif 2265 1.185 dyoung return; 2266 1.264 roy } 2267 1.263 roy 2268 1.406 ozaki IF_LINK_STATE_CHANGE_LOCK(ifp); 2269 1.325 roy 2270 1.325 roy /* Find the last unset event in the queue. */ 2271 1.325 roy LQ_FIND_UNSET(ifp->if_link_queue, idx); 2272 1.325 roy 2273 1.480 roy if (idx == 0) { 2274 1.480 roy /* 2275 1.480 roy * There is no queue of link state changes. 2276 1.480 roy * As we have the lock we can safely compare against the 2277 1.480 roy * current link state and return if the same. 2278 1.480 roy * Otherwise, if scheduled is true then the interface is being 2279 1.480 roy * detached and the queue is being drained so we need 2280 1.480 roy * to avoid queuing more work. 2281 1.480 roy */ 2282 1.528 msaitoh if (ifp->if_link_state == link_state || 2283 1.528 msaitoh ifp->if_link_scheduled) 2284 1.480 roy goto out; 2285 1.480 roy } else { 2286 1.480 roy /* Ensure link_state doesn't match the last queued state. */ 2287 1.528 msaitoh if (LQ_ITEM(ifp->if_link_queue, idx - 1) 2288 1.528 msaitoh == (uint8_t)link_state) 2289 1.480 roy goto out; 2290 1.480 roy } 2291 1.325 roy 2292 1.325 roy /* Handle queue overflow. */ 2293 1.325 roy if (idx == LQ_MAX(ifp->if_link_queue)) { 2294 1.325 roy uint8_t lost; 2295 1.325 roy 2296 1.325 roy /* 2297 1.325 roy * The DOWN state must be protected from being pushed off 2298 1.325 roy * the queue to ensure that userland will always be 2299 1.325 roy * in a sane state. 2300 1.325 roy * Because DOWN is protected, there is no need to protect 2301 1.325 roy * UNKNOWN. 2302 1.325 roy * It should be invalid to change from any other state to 2303 1.325 roy * UNKNOWN anyway ... 2304 1.325 roy */ 2305 1.325 roy lost = LQ_ITEM(ifp->if_link_queue, 0); 2306 1.325 roy LQ_PUSH(ifp->if_link_queue, (uint8_t)link_state); 2307 1.325 roy if (lost == LINK_STATE_DOWN) { 2308 1.325 roy lost = LQ_ITEM(ifp->if_link_queue, 0); 2309 1.325 roy LQ_STORE(ifp->if_link_queue, 0, LINK_STATE_DOWN); 2310 1.325 roy } 2311 1.325 roy printf("%s: lost link state change %s\n", 2312 1.325 roy ifp->if_xname, 2313 1.325 roy lost == LINK_STATE_UP ? "UP" : 2314 1.325 roy lost == LINK_STATE_DOWN ? "DOWN" : 2315 1.325 roy "UNKNOWN"); 2316 1.325 roy } else 2317 1.325 roy LQ_STORE(ifp->if_link_queue, idx, (uint8_t)link_state); 2318 1.325 roy 2319 1.480 roy if (ifp->if_link_scheduled) 2320 1.480 roy goto out; 2321 1.480 roy 2322 1.480 roy ifp->if_link_scheduled = true; 2323 1.480 roy workqueue_enqueue(ifnet_link_state_wq, &ifp->if_link_work, NULL); 2324 1.324 ozaki 2325 1.325 roy out: 2326 1.406 ozaki IF_LINK_STATE_CHANGE_UNLOCK(ifp); 2327 1.324 ozaki } 2328 1.324 ozaki 2329 1.325 roy /* 2330 1.325 roy * Handle interface link state change notifications. 2331 1.325 roy */ 2332 1.471 thorpej static void 2333 1.471 thorpej if_link_state_change_process(struct ifnet *ifp, int link_state) 2334 1.324 ozaki { 2335 1.324 ozaki struct domain *dp; 2336 1.519 skrll const int s = splnet(); 2337 1.406 ozaki bool notify; 2338 1.393 ozaki 2339 1.393 ozaki KASSERT(!cpu_intr_p()); 2340 1.324 ozaki 2341 1.406 ozaki IF_LINK_STATE_CHANGE_LOCK(ifp); 2342 1.406 ozaki 2343 1.325 roy /* Ensure the change is still valid. */ 2344 1.393 ozaki if (ifp->if_link_state == link_state) { 2345 1.406 ozaki IF_LINK_STATE_CHANGE_UNLOCK(ifp); 2346 1.434 ozaki splx(s); 2347 1.325 roy return; 2348 1.393 ozaki } 2349 1.324 ozaki 2350 1.263 roy #ifdef DEBUG 2351 1.263 roy log(LOG_DEBUG, "%s: link state %s (was %s)\n", ifp->if_xname, 2352 1.263 roy link_state == LINK_STATE_UP ? "UP" : 2353 1.263 roy link_state == LINK_STATE_DOWN ? "DOWN" : 2354 1.263 roy "UNKNOWN", 2355 1.325 roy ifp->if_link_state == LINK_STATE_UP ? "UP" : 2356 1.325 roy ifp->if_link_state == LINK_STATE_DOWN ? "DOWN" : 2357 1.263 roy "UNKNOWN"); 2358 1.263 roy #endif 2359 1.263 roy 2360 1.263 roy /* 2361 1.263 roy * When going from UNKNOWN to UP, we need to mark existing 2362 1.314 roy * addresses as tentative and restart DAD as we may have 2363 1.263 roy * erroneously not found a duplicate. 2364 1.263 roy * 2365 1.263 roy * This needs to happen before rt_ifmsg to avoid a race where 2366 1.263 roy * listeners would have an address and expect it to work right 2367 1.263 roy * away. 2368 1.263 roy */ 2369 1.406 ozaki notify = (link_state == LINK_STATE_UP && 2370 1.406 ozaki ifp->if_link_state == LINK_STATE_UNKNOWN); 2371 1.406 ozaki ifp->if_link_state = link_state; 2372 1.406 ozaki /* The following routines may sleep so release the spin mutex */ 2373 1.406 ozaki IF_LINK_STATE_CHANGE_UNLOCK(ifp); 2374 1.406 ozaki 2375 1.406 ozaki KERNEL_LOCK_UNLESS_NET_MPSAFE(); 2376 1.406 ozaki if (notify) { 2377 1.312 roy DOMAIN_FOREACH(dp) { 2378 1.312 roy if (dp->dom_if_link_state_change != NULL) 2379 1.312 roy dp->dom_if_link_state_change(ifp, 2380 1.312 roy LINK_STATE_DOWN); 2381 1.312 roy } 2382 1.312 roy } 2383 1.263 roy 2384 1.159 dyoung /* Notify that the link state has changed. */ 2385 1.185 dyoung rt_ifmsg(ifp); 2386 1.263 roy 2387 1.492 yamaguch simplehook_dohooks(ifp->if_linkstate_hooks); 2388 1.492 yamaguch 2389 1.312 roy DOMAIN_FOREACH(dp) { 2390 1.312 roy if (dp->dom_if_link_state_change != NULL) 2391 1.312 roy dp->dom_if_link_state_change(ifp, link_state); 2392 1.270 pooka } 2393 1.406 ozaki KERNEL_UNLOCK_UNLESS_NET_MPSAFE(); 2394 1.393 ozaki splx(s); 2395 1.325 roy } 2396 1.325 roy 2397 1.325 roy /* 2398 1.325 roy * Process the interface link state change queue. 2399 1.325 roy */ 2400 1.325 roy static void 2401 1.471 thorpej if_link_state_change_work(struct work *work, void *arg) 2402 1.325 roy { 2403 1.471 thorpej struct ifnet *ifp = container_of(work, struct ifnet, if_link_work); 2404 1.325 roy uint8_t state; 2405 1.325 roy 2406 1.471 thorpej KERNEL_LOCK_UNLESS_NET_MPSAFE(); 2407 1.519 skrll const int s = splnet(); 2408 1.325 roy 2409 1.509 skrll /* 2410 1.509 skrll * Pop a link state change from the queue and process it. 2411 1.480 roy * If there is nothing to process then if_detach() has been called. 2412 1.480 roy * We keep if_link_scheduled = true so the queue can safely drain 2413 1.510 skrll * without more work being queued. 2414 1.510 skrll */ 2415 1.406 ozaki IF_LINK_STATE_CHANGE_LOCK(ifp); 2416 1.325 roy LQ_POP(ifp->if_link_queue, state); 2417 1.406 ozaki IF_LINK_STATE_CHANGE_UNLOCK(ifp); 2418 1.480 roy if (state == LINK_STATE_UNSET) 2419 1.480 roy goto out; 2420 1.406 ozaki 2421 1.535 ozaki IFNET_LOCK(ifp); 2422 1.471 thorpej if_link_state_change_process(ifp, state); 2423 1.535 ozaki IFNET_UNLOCK(ifp); 2424 1.325 roy 2425 1.325 roy /* If there is a link state change to come, schedule it. */ 2426 1.406 ozaki IF_LINK_STATE_CHANGE_LOCK(ifp); 2427 1.480 roy if (LQ_ITEM(ifp->if_link_queue, 0) != LINK_STATE_UNSET) { 2428 1.480 roy ifp->if_link_scheduled = true; 2429 1.528 msaitoh workqueue_enqueue(ifnet_link_state_wq, &ifp->if_link_work, 2430 1.528 msaitoh NULL); 2431 1.480 roy } else 2432 1.480 roy ifp->if_link_scheduled = false; 2433 1.406 ozaki IF_LINK_STATE_CHANGE_UNLOCK(ifp); 2434 1.471 thorpej 2435 1.480 roy out: 2436 1.264 roy splx(s); 2437 1.471 thorpej KERNEL_UNLOCK_UNLESS_NET_MPSAFE(); 2438 1.159 dyoung } 2439 1.159 dyoung 2440 1.492 yamaguch void * 2441 1.492 yamaguch if_linkstate_change_establish(struct ifnet *ifp, void (*fn)(void *), void *arg) 2442 1.492 yamaguch { 2443 1.492 yamaguch khook_t *hk; 2444 1.492 yamaguch 2445 1.492 yamaguch hk = simplehook_establish(ifp->if_linkstate_hooks, fn, arg); 2446 1.492 yamaguch 2447 1.492 yamaguch return (void *)hk; 2448 1.492 yamaguch } 2449 1.492 yamaguch 2450 1.492 yamaguch void 2451 1.528 msaitoh if_linkstate_change_disestablish(struct ifnet *ifp, void *vhook, 2452 1.528 msaitoh kmutex_t *lock) 2453 1.492 yamaguch { 2454 1.492 yamaguch 2455 1.492 yamaguch simplehook_disestablish(ifp->if_linkstate_hooks, vhook, lock); 2456 1.492 yamaguch } 2457 1.492 yamaguch 2458 1.159 dyoung /* 2459 1.483 roy * Used to mark addresses on an interface as DETATCHED or TENTATIVE 2460 1.483 roy * and thus start Duplicate Address Detection without changing the 2461 1.483 roy * real link state. 2462 1.483 roy */ 2463 1.483 roy void 2464 1.483 roy if_domain_link_state_change(struct ifnet *ifp, int link_state) 2465 1.483 roy { 2466 1.483 roy struct domain *dp; 2467 1.483 roy 2468 1.519 skrll const int s = splnet(); 2469 1.483 roy KERNEL_LOCK_UNLESS_NET_MPSAFE(); 2470 1.483 roy 2471 1.483 roy DOMAIN_FOREACH(dp) { 2472 1.483 roy if (dp->dom_if_link_state_change != NULL) 2473 1.483 roy dp->dom_if_link_state_change(ifp, link_state); 2474 1.483 roy } 2475 1.483 roy 2476 1.483 roy splx(s); 2477 1.483 roy KERNEL_UNLOCK_UNLESS_NET_MPSAFE(); 2478 1.483 roy } 2479 1.483 roy 2480 1.483 roy /* 2481 1.310 roy * Default action when installing a local route on a point-to-point 2482 1.310 roy * interface. 2483 1.310 roy */ 2484 1.310 roy void 2485 1.310 roy p2p_rtrequest(int req, struct rtentry *rt, 2486 1.310 roy __unused const struct rt_addrinfo *info) 2487 1.310 roy { 2488 1.310 roy struct ifnet *ifp = rt->rt_ifp; 2489 1.310 roy struct ifaddr *ifa, *lo0ifa; 2490 1.357 ozaki int s = pserialize_read_enter(); 2491 1.310 roy 2492 1.310 roy switch (req) { 2493 1.310 roy case RTM_ADD: 2494 1.310 roy if ((rt->rt_flags & RTF_LOCAL) == 0) 2495 1.310 roy break; 2496 1.310 roy 2497 1.351 ozaki rt->rt_ifp = lo0ifp; 2498 1.351 ozaki 2499 1.440 ozaki if (ISSET(info->rti_flags, RTF_DONTCHANGEIFA)) 2500 1.440 ozaki break; 2501 1.440 ozaki 2502 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 2503 1.310 roy if (equal(rt_getkey(rt), ifa->ifa_addr)) 2504 1.310 roy break; 2505 1.310 roy } 2506 1.310 roy if (ifa == NULL) 2507 1.310 roy break; 2508 1.310 roy 2509 1.310 roy /* 2510 1.310 roy * Ensure lo0 has an address of the same family. 2511 1.310 roy */ 2512 1.354 ozaki IFADDR_READER_FOREACH(lo0ifa, lo0ifp) { 2513 1.310 roy if (lo0ifa->ifa_addr->sa_family == 2514 1.310 roy ifa->ifa_addr->sa_family) 2515 1.310 roy break; 2516 1.310 roy } 2517 1.310 roy if (lo0ifa == NULL) 2518 1.310 roy break; 2519 1.310 roy 2520 1.310 roy /* 2521 1.310 roy * Make sure to set rt->rt_ifa to the interface 2522 1.310 roy * address we are using, otherwise we will have trouble 2523 1.310 roy * with source address selection. 2524 1.310 roy */ 2525 1.310 roy if (ifa != rt->rt_ifa) 2526 1.310 roy rt_replace_ifa(rt, ifa); 2527 1.310 roy break; 2528 1.310 roy case RTM_DELETE: 2529 1.310 roy default: 2530 1.310 roy break; 2531 1.310 roy } 2532 1.357 ozaki pserialize_read_exit(s); 2533 1.310 roy } 2534 1.310 roy 2535 1.403 ozaki static void 2536 1.403 ozaki _if_down(struct ifnet *ifp) 2537 1.1 cgd { 2538 1.61 augustss struct ifaddr *ifa; 2539 1.312 roy struct domain *dp; 2540 1.357 ozaki struct psref psref; 2541 1.1 cgd 2542 1.1 cgd ifp->if_flags &= ~IFF_UP; 2543 1.232 christos nanotime(&ifp->if_lastchange); 2544 1.357 ozaki 2545 1.519 skrll const int bound = curlwp_bind(); 2546 1.519 skrll int s = pserialize_read_enter(); 2547 1.357 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 2548 1.357 ozaki ifa_acquire(ifa, &psref); 2549 1.357 ozaki pserialize_read_exit(s); 2550 1.357 ozaki 2551 1.1 cgd pfctlinput(PRC_IFDOWN, ifa->ifa_addr); 2552 1.357 ozaki 2553 1.357 ozaki s = pserialize_read_enter(); 2554 1.357 ozaki ifa_release(ifa, &psref); 2555 1.357 ozaki } 2556 1.357 ozaki pserialize_read_exit(s); 2557 1.357 ozaki curlwp_bindx(bound); 2558 1.357 ozaki 2559 1.78 thorpej IFQ_PURGE(&ifp->if_snd); 2560 1.166 liamjfoy #if NCARP > 0 2561 1.166 liamjfoy if (ifp->if_carp) 2562 1.166 liamjfoy carp_carpdev_state(ifp); 2563 1.166 liamjfoy #endif 2564 1.15 mycroft rt_ifmsg(ifp); 2565 1.312 roy DOMAIN_FOREACH(dp) { 2566 1.312 roy if (dp->dom_if_down) 2567 1.312 roy dp->dom_if_down(ifp); 2568 1.312 roy } 2569 1.15 mycroft } 2570 1.15 mycroft 2571 1.403 ozaki static void 2572 1.403 ozaki if_down_deactivated(struct ifnet *ifp) 2573 1.403 ozaki { 2574 1.403 ozaki 2575 1.403 ozaki KASSERT(if_is_deactivated(ifp)); 2576 1.403 ozaki _if_down(ifp); 2577 1.403 ozaki } 2578 1.403 ozaki 2579 1.403 ozaki void 2580 1.403 ozaki if_down_locked(struct ifnet *ifp) 2581 1.403 ozaki { 2582 1.403 ozaki 2583 1.413 ozaki KASSERT(IFNET_LOCKED(ifp)); 2584 1.403 ozaki _if_down(ifp); 2585 1.403 ozaki } 2586 1.403 ozaki 2587 1.15 mycroft /* 2588 1.403 ozaki * Mark an interface down and notify protocols of 2589 1.15 mycroft * the transition. 2590 1.23 mycroft * NOTE: must be called at splsoftnet or equivalent. 2591 1.15 mycroft */ 2592 1.15 mycroft void 2593 1.403 ozaki if_down(struct ifnet *ifp) 2594 1.403 ozaki { 2595 1.403 ozaki 2596 1.413 ozaki IFNET_LOCK(ifp); 2597 1.403 ozaki if_down_locked(ifp); 2598 1.413 ozaki IFNET_UNLOCK(ifp); 2599 1.403 ozaki } 2600 1.403 ozaki 2601 1.403 ozaki /* 2602 1.403 ozaki * Must be called with holding if_ioctl_lock. 2603 1.403 ozaki */ 2604 1.403 ozaki static void 2605 1.403 ozaki if_up_locked(struct ifnet *ifp) 2606 1.15 mycroft { 2607 1.24 christos #ifdef notyet 2608 1.61 augustss struct ifaddr *ifa; 2609 1.24 christos #endif 2610 1.312 roy struct domain *dp; 2611 1.15 mycroft 2612 1.413 ozaki KASSERT(IFNET_LOCKED(ifp)); 2613 1.403 ozaki 2614 1.403 ozaki KASSERT(!if_is_deactivated(ifp)); 2615 1.15 mycroft ifp->if_flags |= IFF_UP; 2616 1.232 christos nanotime(&ifp->if_lastchange); 2617 1.15 mycroft #ifdef notyet 2618 1.15 mycroft /* this has no effect on IP, and will kill all ISO connections XXX */ 2619 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) 2620 1.15 mycroft pfctlinput(PRC_IFUP, ifa->ifa_addr); 2621 1.15 mycroft #endif 2622 1.166 liamjfoy #if NCARP > 0 2623 1.166 liamjfoy if (ifp->if_carp) 2624 1.166 liamjfoy carp_carpdev_state(ifp); 2625 1.166 liamjfoy #endif 2626 1.15 mycroft rt_ifmsg(ifp); 2627 1.312 roy DOMAIN_FOREACH(dp) { 2628 1.313 roy if (dp->dom_if_up) 2629 1.313 roy dp->dom_if_up(ifp); 2630 1.312 roy } 2631 1.1 cgd } 2632 1.1 cgd 2633 1.1 cgd /* 2634 1.296 ozaki * Handle interface slowtimo timer routine. Called 2635 1.296 ozaki * from softclock, we decrement timer (if set) and 2636 1.1 cgd * call the appropriate interface routine on expiration. 2637 1.1 cgd */ 2638 1.515 riastrad static bool 2639 1.515 riastrad if_slowtimo_countdown(struct ifnet *ifp) 2640 1.515 riastrad { 2641 1.515 riastrad bool fire = false; 2642 1.519 skrll const int s = splnet(); 2643 1.528 msaitoh 2644 1.517 riastrad KERNEL_LOCK(1, NULL); 2645 1.515 riastrad if (ifp->if_timer != 0 && --ifp->if_timer == 0) 2646 1.515 riastrad fire = true; 2647 1.515 riastrad KERNEL_UNLOCK_ONE(NULL); 2648 1.517 riastrad splx(s); 2649 1.515 riastrad 2650 1.515 riastrad return fire; 2651 1.515 riastrad } 2652 1.515 riastrad 2653 1.294 ozaki static void 2654 1.513 riastrad if_slowtimo_intr(void *arg) 2655 1.1 cgd { 2656 1.296 ozaki struct ifnet *ifp = arg; 2657 1.513 riastrad struct if_slowtimo_data *isd = ifp->if_slowtimo_data; 2658 1.1 cgd 2659 1.513 riastrad mutex_enter(&isd->isd_lock); 2660 1.513 riastrad if (!isd->isd_dying) { 2661 1.515 riastrad if (isd->isd_trigger || if_slowtimo_countdown(ifp)) { 2662 1.514 riastrad if (!isd->isd_queued) { 2663 1.514 riastrad isd->isd_queued = true; 2664 1.514 riastrad workqueue_enqueue(if_slowtimo_wq, 2665 1.514 riastrad &isd->isd_work, NULL); 2666 1.514 riastrad } 2667 1.528 msaitoh } else 2668 1.513 riastrad callout_schedule(&isd->isd_ch, hz / IFNET_SLOWHZ); 2669 1.513 riastrad } 2670 1.513 riastrad mutex_exit(&isd->isd_lock); 2671 1.513 riastrad } 2672 1.296 ozaki 2673 1.513 riastrad static void 2674 1.513 riastrad if_slowtimo_work(struct work *work, void *arg) 2675 1.513 riastrad { 2676 1.513 riastrad struct if_slowtimo_data *isd = 2677 1.513 riastrad container_of(work, struct if_slowtimo_data, isd_work); 2678 1.513 riastrad struct ifnet *ifp = isd->isd_ifp; 2679 1.519 skrll const int s = splnet(); 2680 1.528 msaitoh 2681 1.513 riastrad KERNEL_LOCK(1, NULL); 2682 1.513 riastrad (*ifp->if_slowtimo)(ifp); 2683 1.513 riastrad KERNEL_UNLOCK_ONE(NULL); 2684 1.517 riastrad splx(s); 2685 1.305 martin 2686 1.513 riastrad mutex_enter(&isd->isd_lock); 2687 1.514 riastrad if (isd->isd_trigger) { 2688 1.514 riastrad isd->isd_trigger = false; 2689 1.514 riastrad printf("%s: watchdog triggered\n", ifp->if_xname); 2690 1.514 riastrad } 2691 1.513 riastrad isd->isd_queued = false; 2692 1.513 riastrad if (!isd->isd_dying) 2693 1.513 riastrad callout_schedule(&isd->isd_ch, hz / IFNET_SLOWHZ); 2694 1.513 riastrad mutex_exit(&isd->isd_lock); 2695 1.65 thorpej } 2696 1.65 thorpej 2697 1.514 riastrad static int 2698 1.514 riastrad sysctl_if_watchdog(SYSCTLFN_ARGS) 2699 1.514 riastrad { 2700 1.514 riastrad struct sysctlnode node = *rnode; 2701 1.514 riastrad struct ifnet *ifp = node.sysctl_data; 2702 1.514 riastrad struct if_slowtimo_data *isd = ifp->if_slowtimo_data; 2703 1.514 riastrad int arg = 0; 2704 1.514 riastrad int error; 2705 1.514 riastrad 2706 1.514 riastrad node.sysctl_data = &arg; 2707 1.514 riastrad error = sysctl_lookup(SYSCTLFN_CALL(&node)); 2708 1.514 riastrad if (error || newp == NULL) 2709 1.514 riastrad return error; 2710 1.514 riastrad if (arg) { 2711 1.514 riastrad mutex_enter(&isd->isd_lock); 2712 1.514 riastrad KASSERT(!isd->isd_dying); 2713 1.514 riastrad isd->isd_trigger = true; 2714 1.514 riastrad callout_schedule(&isd->isd_ch, 0); 2715 1.514 riastrad mutex_exit(&isd->isd_lock); 2716 1.514 riastrad } 2717 1.514 riastrad 2718 1.514 riastrad return 0; 2719 1.514 riastrad } 2720 1.514 riastrad 2721 1.514 riastrad static void 2722 1.514 riastrad sysctl_watchdog_setup(struct ifnet *ifp) 2723 1.514 riastrad { 2724 1.514 riastrad struct sysctllog **clog = &ifp->if_sysctl_log; 2725 1.514 riastrad const struct sysctlnode *rnode; 2726 1.514 riastrad 2727 1.514 riastrad if (sysctl_createv(clog, 0, NULL, &rnode, 2728 1.514 riastrad CTLFLAG_PERMANENT, CTLTYPE_NODE, "interfaces", 2729 1.514 riastrad SYSCTL_DESCR("Per-interface controls"), 2730 1.514 riastrad NULL, 0, NULL, 0, 2731 1.514 riastrad CTL_NET, CTL_CREATE, CTL_EOL) != 0) 2732 1.514 riastrad goto bad; 2733 1.514 riastrad if (sysctl_createv(clog, 0, &rnode, &rnode, 2734 1.514 riastrad CTLFLAG_PERMANENT, CTLTYPE_NODE, ifp->if_xname, 2735 1.514 riastrad SYSCTL_DESCR("Interface controls"), 2736 1.514 riastrad NULL, 0, NULL, 0, 2737 1.514 riastrad CTL_CREATE, CTL_EOL) != 0) 2738 1.514 riastrad goto bad; 2739 1.514 riastrad if (sysctl_createv(clog, 0, &rnode, &rnode, 2740 1.514 riastrad CTLFLAG_PERMANENT, CTLTYPE_NODE, "watchdog", 2741 1.514 riastrad SYSCTL_DESCR("Interface watchdog controls"), 2742 1.514 riastrad NULL, 0, NULL, 0, 2743 1.514 riastrad CTL_CREATE, CTL_EOL) != 0) 2744 1.514 riastrad goto bad; 2745 1.514 riastrad if (sysctl_createv(clog, 0, &rnode, NULL, 2746 1.514 riastrad CTLFLAG_PERMANENT|CTLFLAG_READWRITE, CTLTYPE_INT, "trigger", 2747 1.514 riastrad SYSCTL_DESCR("Trigger watchdog timeout"), 2748 1.514 riastrad sysctl_if_watchdog, 0, (int *)ifp, 0, 2749 1.514 riastrad CTL_CREATE, CTL_EOL) != 0) 2750 1.514 riastrad goto bad; 2751 1.514 riastrad 2752 1.514 riastrad return; 2753 1.514 riastrad 2754 1.514 riastrad bad: 2755 1.514 riastrad printf("%s: could not attach sysctl watchdog nodes\n", ifp->if_xname); 2756 1.514 riastrad } 2757 1.514 riastrad 2758 1.65 thorpej /* 2759 1.403 ozaki * Mark an interface up and notify protocols of 2760 1.403 ozaki * the transition. 2761 1.403 ozaki * NOTE: must be called at splsoftnet or equivalent. 2762 1.403 ozaki */ 2763 1.403 ozaki void 2764 1.403 ozaki if_up(struct ifnet *ifp) 2765 1.403 ozaki { 2766 1.403 ozaki 2767 1.413 ozaki IFNET_LOCK(ifp); 2768 1.403 ozaki if_up_locked(ifp); 2769 1.413 ozaki IFNET_UNLOCK(ifp); 2770 1.403 ozaki } 2771 1.403 ozaki 2772 1.403 ozaki /* 2773 1.65 thorpej * Set/clear promiscuous mode on interface ifp based on the truth value 2774 1.65 thorpej * of pswitch. The calls are reference counted so that only the first 2775 1.65 thorpej * "on" request actually has an effect, as does the final "off" request. 2776 1.65 thorpej * Results are undefined if the "off" and "on" requests are not matched. 2777 1.65 thorpej */ 2778 1.65 thorpej int 2779 1.402 ozaki ifpromisc_locked(struct ifnet *ifp, int pswitch) 2780 1.65 thorpej { 2781 1.401 ozaki int pcount, ret = 0; 2782 1.460 msaitoh u_short nflags; 2783 1.65 thorpej 2784 1.413 ozaki KASSERT(IFNET_LOCKED(ifp)); 2785 1.401 ozaki 2786 1.65 thorpej pcount = ifp->if_pcount; 2787 1.65 thorpej if (pswitch) { 2788 1.65 thorpej /* 2789 1.71 thorpej * Allow the device to be "placed" into promiscuous 2790 1.71 thorpej * mode even if it is not configured up. It will 2791 1.242 mbalmer * consult IFF_PROMISC when it is brought up. 2792 1.65 thorpej */ 2793 1.68 pk if (ifp->if_pcount++ != 0) 2794 1.401 ozaki goto out; 2795 1.252 dyoung nflags = ifp->if_flags | IFF_PROMISC; 2796 1.65 thorpej } else { 2797 1.65 thorpej if (--ifp->if_pcount > 0) 2798 1.401 ozaki goto out; 2799 1.252 dyoung nflags = ifp->if_flags & ~IFF_PROMISC; 2800 1.65 thorpej } 2801 1.252 dyoung ret = if_flags_set(ifp, nflags); 2802 1.65 thorpej /* Restore interface state if not successful. */ 2803 1.528 msaitoh if (ret != 0) 2804 1.65 thorpej ifp->if_pcount = pcount; 2805 1.528 msaitoh 2806 1.401 ozaki out: 2807 1.402 ozaki return ret; 2808 1.402 ozaki } 2809 1.402 ozaki 2810 1.402 ozaki int 2811 1.402 ozaki ifpromisc(struct ifnet *ifp, int pswitch) 2812 1.402 ozaki { 2813 1.402 ozaki int e; 2814 1.402 ozaki 2815 1.413 ozaki IFNET_LOCK(ifp); 2816 1.402 ozaki e = ifpromisc_locked(ifp, pswitch); 2817 1.413 ozaki IFNET_UNLOCK(ifp); 2818 1.402 ozaki 2819 1.402 ozaki return e; 2820 1.1 cgd } 2821 1.1 cgd 2822 1.1 cgd /* 2823 1.497 riastrad * if_ioctl(ifp, cmd, data) 2824 1.497 riastrad * 2825 1.497 riastrad * Apply an ioctl command to the interface. Returns 0 on success, 2826 1.497 riastrad * nonzero errno(3) number on failure. 2827 1.497 riastrad * 2828 1.499 riastrad * For SIOCADDMULTI/SIOCDELMULTI, caller need not hold locks -- it 2829 1.499 riastrad * is the driver's responsibility to take any internal locks. 2830 1.499 riastrad * (Kernel logic should generally invoke these only through 2831 1.499 riastrad * if_mcast_op.) 2832 1.499 riastrad * 2833 1.499 riastrad * For all other ioctls, caller must hold ifp->if_ioctl_lock, 2834 1.499 riastrad * a.k.a. IFNET_LOCK. May sleep. 2835 1.497 riastrad */ 2836 1.497 riastrad int 2837 1.497 riastrad if_ioctl(struct ifnet *ifp, u_long cmd, void *data) 2838 1.497 riastrad { 2839 1.497 riastrad 2840 1.499 riastrad switch (cmd) { 2841 1.499 riastrad case SIOCADDMULTI: 2842 1.499 riastrad case SIOCDELMULTI: 2843 1.499 riastrad break; 2844 1.499 riastrad default: 2845 1.499 riastrad KASSERTMSG(IFNET_LOCKED(ifp), "%s", ifp->if_xname); 2846 1.499 riastrad } 2847 1.497 riastrad 2848 1.497 riastrad return (*ifp->if_ioctl)(ifp, cmd, data); 2849 1.497 riastrad } 2850 1.497 riastrad 2851 1.497 riastrad /* 2852 1.497 riastrad * if_init(ifp) 2853 1.497 riastrad * 2854 1.497 riastrad * Prepare the hardware underlying ifp to process packets 2855 1.497 riastrad * according to its current configuration. Returns 0 on success, 2856 1.497 riastrad * nonzero errno(3) number on failure. 2857 1.497 riastrad * 2858 1.497 riastrad * May sleep. Caller must hold ifp->if_ioctl_lock, a.k.a 2859 1.497 riastrad * IFNET_LOCK. 2860 1.497 riastrad */ 2861 1.497 riastrad int 2862 1.497 riastrad if_init(struct ifnet *ifp) 2863 1.497 riastrad { 2864 1.497 riastrad 2865 1.499 riastrad KASSERTMSG(IFNET_LOCKED(ifp), "%s", ifp->if_xname); 2866 1.497 riastrad 2867 1.497 riastrad return (*ifp->if_init)(ifp); 2868 1.497 riastrad } 2869 1.497 riastrad 2870 1.497 riastrad /* 2871 1.497 riastrad * if_stop(ifp, disable) 2872 1.497 riastrad * 2873 1.497 riastrad * Stop the hardware underlying ifp from processing packets. 2874 1.497 riastrad * 2875 1.497 riastrad * If disable is true, ... XXX(?) 2876 1.497 riastrad * 2877 1.497 riastrad * May sleep. Caller must hold ifp->if_ioctl_lock, a.k.a 2878 1.497 riastrad * IFNET_LOCK. 2879 1.497 riastrad */ 2880 1.497 riastrad void 2881 1.497 riastrad if_stop(struct ifnet *ifp, int disable) 2882 1.497 riastrad { 2883 1.497 riastrad 2884 1.499 riastrad KASSERTMSG(IFNET_LOCKED(ifp), "%s", ifp->if_xname); 2885 1.497 riastrad 2886 1.497 riastrad (*ifp->if_stop)(ifp, disable); 2887 1.497 riastrad } 2888 1.497 riastrad 2889 1.497 riastrad /* 2890 1.1 cgd * Map interface name to 2891 1.1 cgd * interface structure pointer. 2892 1.1 cgd */ 2893 1.1 cgd struct ifnet * 2894 1.163 thorpej ifunit(const char *name) 2895 1.1 cgd { 2896 1.61 augustss struct ifnet *ifp; 2897 1.105 matt const char *cp = name; 2898 1.105 matt u_int unit = 0; 2899 1.105 matt u_int i; 2900 1.105 matt 2901 1.105 matt /* 2902 1.105 matt * If the entire name is a number, treat it as an ifindex. 2903 1.105 matt */ 2904 1.528 msaitoh for (i = 0; i < IFNAMSIZ && *cp >= '0' && *cp <= '9'; i++, cp++) 2905 1.105 matt unit = unit * 10 + (*cp - '0'); 2906 1.105 matt 2907 1.105 matt /* 2908 1.105 matt * If the number took all of the name, then it's a valid ifindex. 2909 1.105 matt */ 2910 1.387 ozaki if (i == IFNAMSIZ || (cp != name && *cp == '\0')) 2911 1.387 ozaki return if_byindex(unit); 2912 1.34 thorpej 2913 1.334 ozaki ifp = NULL; 2914 1.520 skrll const int s = pserialize_read_enter(); 2915 1.334 ozaki IFNET_READER_FOREACH(ifp) { 2916 1.348 ozaki if (if_is_deactivated(ifp)) 2917 1.53 thorpej continue; 2918 1.528 msaitoh if (strcmp(ifp->if_xname, name) == 0) 2919 1.334 ozaki goto out; 2920 1.53 thorpej } 2921 1.334 ozaki out: 2922 1.334 ozaki pserialize_read_exit(s); 2923 1.334 ozaki return ifp; 2924 1.1 cgd } 2925 1.49 itojun 2926 1.335 ozaki /* 2927 1.335 ozaki * Get a reference of an ifnet object by an interface name. 2928 1.335 ozaki * The returned reference is protected by psref(9). The caller 2929 1.335 ozaki * must release a returned reference by if_put after use. 2930 1.335 ozaki */ 2931 1.335 ozaki struct ifnet * 2932 1.335 ozaki if_get(const char *name, struct psref *psref) 2933 1.335 ozaki { 2934 1.335 ozaki struct ifnet *ifp; 2935 1.335 ozaki const char *cp = name; 2936 1.335 ozaki u_int unit = 0; 2937 1.335 ozaki u_int i; 2938 1.335 ozaki 2939 1.335 ozaki /* 2940 1.335 ozaki * If the entire name is a number, treat it as an ifindex. 2941 1.335 ozaki */ 2942 1.528 msaitoh for (i = 0; i < IFNAMSIZ && *cp >= '0' && *cp <= '9'; i++, cp++) 2943 1.335 ozaki unit = unit * 10 + (*cp - '0'); 2944 1.335 ozaki 2945 1.335 ozaki /* 2946 1.335 ozaki * If the number took all of the name, then it's a valid ifindex. 2947 1.335 ozaki */ 2948 1.387 ozaki if (i == IFNAMSIZ || (cp != name && *cp == '\0')) 2949 1.387 ozaki return if_get_byindex(unit, psref); 2950 1.335 ozaki 2951 1.335 ozaki ifp = NULL; 2952 1.520 skrll const int s = pserialize_read_enter(); 2953 1.335 ozaki IFNET_READER_FOREACH(ifp) { 2954 1.348 ozaki if (if_is_deactivated(ifp)) 2955 1.335 ozaki continue; 2956 1.335 ozaki if (strcmp(ifp->if_xname, name) == 0) { 2957 1.453 ozaki PSREF_DEBUG_FILL_RETURN_ADDRESS(psref); 2958 1.335 ozaki psref_acquire(psref, &ifp->if_psref, 2959 1.335 ozaki ifnet_psref_class); 2960 1.335 ozaki goto out; 2961 1.335 ozaki } 2962 1.335 ozaki } 2963 1.335 ozaki out: 2964 1.335 ozaki pserialize_read_exit(s); 2965 1.335 ozaki return ifp; 2966 1.335 ozaki } 2967 1.335 ozaki 2968 1.335 ozaki /* 2969 1.395 roy * Release a reference of an ifnet object given by if_get, if_get_byindex 2970 1.395 roy * or if_get_bylla. 2971 1.335 ozaki */ 2972 1.335 ozaki void 2973 1.335 ozaki if_put(const struct ifnet *ifp, struct psref *psref) 2974 1.335 ozaki { 2975 1.335 ozaki 2976 1.344 ozaki if (ifp == NULL) 2977 1.344 ozaki return; 2978 1.344 ozaki 2979 1.335 ozaki psref_release(psref, &ifp->if_psref, ifnet_psref_class); 2980 1.335 ozaki } 2981 1.335 ozaki 2982 1.415 ozaki /* 2983 1.415 ozaki * Return ifp having idx. Return NULL if not found. Normally if_byindex 2984 1.415 ozaki * should be used. 2985 1.415 ozaki */ 2986 1.415 ozaki ifnet_t * 2987 1.415 ozaki _if_byindex(u_int idx) 2988 1.415 ozaki { 2989 1.415 ozaki 2990 1.415 ozaki return (__predict_true(idx < if_indexlim)) ? ifindex2ifnet[idx] : NULL; 2991 1.415 ozaki } 2992 1.415 ozaki 2993 1.415 ozaki /* 2994 1.415 ozaki * Return ifp having idx. Return NULL if not found or the found ifp is 2995 1.415 ozaki * already deactivated. 2996 1.415 ozaki */ 2997 1.250 rmind ifnet_t * 2998 1.250 rmind if_byindex(u_int idx) 2999 1.250 rmind { 3000 1.357 ozaki ifnet_t *ifp; 3001 1.357 ozaki 3002 1.415 ozaki ifp = _if_byindex(idx); 3003 1.357 ozaki if (ifp != NULL && if_is_deactivated(ifp)) 3004 1.357 ozaki ifp = NULL; 3005 1.357 ozaki return ifp; 3006 1.250 rmind } 3007 1.250 rmind 3008 1.335 ozaki /* 3009 1.335 ozaki * Get a reference of an ifnet object by an interface index. 3010 1.335 ozaki * The returned reference is protected by psref(9). The caller 3011 1.335 ozaki * must release a returned reference by if_put after use. 3012 1.335 ozaki */ 3013 1.335 ozaki ifnet_t * 3014 1.335 ozaki if_get_byindex(u_int idx, struct psref *psref) 3015 1.335 ozaki { 3016 1.335 ozaki ifnet_t *ifp; 3017 1.335 ozaki 3018 1.520 skrll const int s = pserialize_read_enter(); 3019 1.387 ozaki ifp = if_byindex(idx); 3020 1.453 ozaki if (__predict_true(ifp != NULL)) { 3021 1.453 ozaki PSREF_DEBUG_FILL_RETURN_ADDRESS(psref); 3022 1.335 ozaki psref_acquire(psref, &ifp->if_psref, ifnet_psref_class); 3023 1.453 ozaki } 3024 1.335 ozaki pserialize_read_exit(s); 3025 1.335 ozaki 3026 1.335 ozaki return ifp; 3027 1.335 ozaki } 3028 1.335 ozaki 3029 1.395 roy ifnet_t * 3030 1.395 roy if_get_bylla(const void *lla, unsigned char lla_len, struct psref *psref) 3031 1.395 roy { 3032 1.395 roy ifnet_t *ifp; 3033 1.395 roy 3034 1.520 skrll const int s = pserialize_read_enter(); 3035 1.395 roy IFNET_READER_FOREACH(ifp) { 3036 1.395 roy if (if_is_deactivated(ifp)) 3037 1.395 roy continue; 3038 1.395 roy if (ifp->if_addrlen != lla_len) 3039 1.395 roy continue; 3040 1.395 roy if (memcmp(lla, CLLADDR(ifp->if_sadl), lla_len) == 0) { 3041 1.395 roy psref_acquire(psref, &ifp->if_psref, 3042 1.395 roy ifnet_psref_class); 3043 1.395 roy break; 3044 1.395 roy } 3045 1.395 roy } 3046 1.395 roy pserialize_read_exit(s); 3047 1.395 roy 3048 1.395 roy return ifp; 3049 1.395 roy } 3050 1.395 roy 3051 1.338 ozaki /* 3052 1.380 ozaki * Note that it's safe only if the passed ifp is guaranteed to not be freed, 3053 1.380 ozaki * for example using pserialize or the ifp is already held or some other 3054 1.380 ozaki * object is held which guarantes the ifp to not be freed indirectly. 3055 1.338 ozaki */ 3056 1.338 ozaki void 3057 1.380 ozaki if_acquire(struct ifnet *ifp, struct psref *psref) 3058 1.338 ozaki { 3059 1.338 ozaki 3060 1.338 ozaki KASSERT(ifp->if_index != 0); 3061 1.338 ozaki psref_acquire(psref, &ifp->if_psref, ifnet_psref_class); 3062 1.338 ozaki } 3063 1.338 ozaki 3064 1.338 ozaki bool 3065 1.338 ozaki if_held(struct ifnet *ifp) 3066 1.338 ozaki { 3067 1.338 ozaki 3068 1.338 ozaki return psref_held(&ifp->if_psref, ifnet_psref_class); 3069 1.338 ozaki } 3070 1.338 ozaki 3071 1.404 knakahar /* 3072 1.528 msaitoh * Some tunnel interfaces can nest, e.g. IPv4 over IPv4 gif(4) tunnel over 3073 1.528 msaitoh * IPv4. Check the tunnel nesting count. 3074 1.404 knakahar * Return > 0, if tunnel nesting count is more than limit. 3075 1.404 knakahar * Return 0, if tunnel nesting count is equal or less than limit. 3076 1.404 knakahar */ 3077 1.404 knakahar int 3078 1.404 knakahar if_tunnel_check_nesting(struct ifnet *ifp, struct mbuf *m, int limit) 3079 1.404 knakahar { 3080 1.404 knakahar struct m_tag *mtag; 3081 1.404 knakahar int *count; 3082 1.404 knakahar 3083 1.441 maxv mtag = m_tag_find(m, PACKET_TAG_TUNNEL_INFO); 3084 1.404 knakahar if (mtag != NULL) { 3085 1.404 knakahar count = (int *)(mtag + 1); 3086 1.404 knakahar if (++(*count) > limit) { 3087 1.404 knakahar log(LOG_NOTICE, 3088 1.404 knakahar "%s: recursively called too many times(%d)\n", 3089 1.404 knakahar ifp->if_xname, *count); 3090 1.404 knakahar return EIO; 3091 1.404 knakahar } 3092 1.404 knakahar } else { 3093 1.404 knakahar mtag = m_tag_get(PACKET_TAG_TUNNEL_INFO, sizeof(*count), 3094 1.404 knakahar M_NOWAIT); 3095 1.404 knakahar if (mtag != NULL) { 3096 1.404 knakahar m_tag_prepend(m, mtag); 3097 1.404 knakahar count = (int *)(mtag + 1); 3098 1.404 knakahar *count = 0; 3099 1.404 knakahar } else { 3100 1.528 msaitoh log(LOG_DEBUG, "%s: m_tag_get() failed, " 3101 1.528 msaitoh "recursion calls are not prevented.\n", 3102 1.404 knakahar ifp->if_xname); 3103 1.404 knakahar } 3104 1.404 knakahar } 3105 1.404 knakahar 3106 1.404 knakahar return 0; 3107 1.404 knakahar } 3108 1.338 ozaki 3109 1.461 knakahar static void 3110 1.461 knakahar if_tunnel_ro_init_pc(void *p, void *arg __unused, struct cpu_info *ci __unused) 3111 1.461 knakahar { 3112 1.461 knakahar struct tunnel_ro *tro = p; 3113 1.461 knakahar 3114 1.461 knakahar tro->tr_ro = kmem_zalloc(sizeof(*tro->tr_ro), KM_SLEEP); 3115 1.461 knakahar tro->tr_lock = mutex_obj_alloc(MUTEX_DEFAULT, IPL_NONE); 3116 1.461 knakahar } 3117 1.461 knakahar 3118 1.461 knakahar static void 3119 1.461 knakahar if_tunnel_ro_fini_pc(void *p, void *arg __unused, struct cpu_info *ci __unused) 3120 1.461 knakahar { 3121 1.461 knakahar struct tunnel_ro *tro = p; 3122 1.461 knakahar 3123 1.461 knakahar rtcache_free(tro->tr_ro); 3124 1.461 knakahar kmem_free(tro->tr_ro, sizeof(*tro->tr_ro)); 3125 1.461 knakahar 3126 1.461 knakahar mutex_obj_free(tro->tr_lock); 3127 1.461 knakahar } 3128 1.461 knakahar 3129 1.470 riastrad percpu_t * 3130 1.470 riastrad if_tunnel_alloc_ro_percpu(void) 3131 1.470 riastrad { 3132 1.470 riastrad 3133 1.470 riastrad return percpu_create(sizeof(struct tunnel_ro), 3134 1.470 riastrad if_tunnel_ro_init_pc, if_tunnel_ro_fini_pc, NULL); 3135 1.470 riastrad } 3136 1.470 riastrad 3137 1.461 knakahar void 3138 1.461 knakahar if_tunnel_free_ro_percpu(percpu_t *ro_percpu) 3139 1.461 knakahar { 3140 1.461 knakahar 3141 1.461 knakahar percpu_free(ro_percpu, sizeof(struct tunnel_ro)); 3142 1.461 knakahar } 3143 1.461 knakahar 3144 1.461 knakahar 3145 1.461 knakahar static void 3146 1.528 msaitoh if_tunnel_rtcache_free_pc(void *p, void *arg __unused, 3147 1.528 msaitoh struct cpu_info *ci __unused) 3148 1.461 knakahar { 3149 1.461 knakahar struct tunnel_ro *tro = p; 3150 1.461 knakahar 3151 1.461 knakahar mutex_enter(tro->tr_lock); 3152 1.461 knakahar rtcache_free(tro->tr_ro); 3153 1.461 knakahar mutex_exit(tro->tr_lock); 3154 1.461 knakahar } 3155 1.461 knakahar 3156 1.461 knakahar void if_tunnel_ro_percpu_rtcache_free(percpu_t *ro_percpu) 3157 1.461 knakahar { 3158 1.461 knakahar 3159 1.461 knakahar percpu_foreach(ro_percpu, if_tunnel_rtcache_free_pc, NULL); 3160 1.461 knakahar } 3161 1.461 knakahar 3162 1.469 thorpej void 3163 1.469 thorpej if_export_if_data(ifnet_t * const ifp, struct if_data *ifi, bool zero_stats) 3164 1.469 thorpej { 3165 1.469 thorpej 3166 1.511 skrll /* Collect the volatile stats first; this zeros *ifi. */ 3167 1.469 thorpej if_stats_to_if_data(ifp, ifi, zero_stats); 3168 1.469 thorpej 3169 1.469 thorpej ifi->ifi_type = ifp->if_type; 3170 1.469 thorpej ifi->ifi_addrlen = ifp->if_addrlen; 3171 1.469 thorpej ifi->ifi_hdrlen = ifp->if_hdrlen; 3172 1.469 thorpej ifi->ifi_link_state = ifp->if_link_state; 3173 1.469 thorpej ifi->ifi_mtu = ifp->if_mtu; 3174 1.469 thorpej ifi->ifi_metric = ifp->if_metric; 3175 1.469 thorpej ifi->ifi_baudrate = ifp->if_baudrate; 3176 1.469 thorpej ifi->ifi_lastchange = ifp->if_lastchange; 3177 1.469 thorpej } 3178 1.461 knakahar 3179 1.211 dyoung /* common */ 3180 1.215 dyoung int 3181 1.215 dyoung ifioctl_common(struct ifnet *ifp, u_long cmd, void *data) 3182 1.211 dyoung { 3183 1.215 dyoung struct ifreq *ifr; 3184 1.215 dyoung struct ifcapreq *ifcr; 3185 1.215 dyoung struct ifdatareq *ifdr; 3186 1.459 roy unsigned short flags; 3187 1.466 christos char *descr; 3188 1.466 christos int error; 3189 1.211 dyoung 3190 1.211 dyoung switch (cmd) { 3191 1.211 dyoung case SIOCSIFCAP: 3192 1.215 dyoung ifcr = data; 3193 1.211 dyoung if ((ifcr->ifcr_capenable & ~ifp->if_capabilities) != 0) 3194 1.211 dyoung return EINVAL; 3195 1.211 dyoung 3196 1.213 dyoung if (ifcr->ifcr_capenable == ifp->if_capenable) 3197 1.213 dyoung return 0; 3198 1.211 dyoung 3199 1.213 dyoung ifp->if_capenable = ifcr->ifcr_capenable; 3200 1.211 dyoung 3201 1.213 dyoung /* Pre-compute the checksum flags mask. */ 3202 1.213 dyoung ifp->if_csum_flags_tx = 0; 3203 1.213 dyoung ifp->if_csum_flags_rx = 0; 3204 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_IPv4_Tx) 3205 1.213 dyoung ifp->if_csum_flags_tx |= M_CSUM_IPv4; 3206 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_IPv4_Rx) 3207 1.213 dyoung ifp->if_csum_flags_rx |= M_CSUM_IPv4; 3208 1.211 dyoung 3209 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_TCPv4_Tx) 3210 1.213 dyoung ifp->if_csum_flags_tx |= M_CSUM_TCPv4; 3211 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_TCPv4_Rx) 3212 1.213 dyoung ifp->if_csum_flags_rx |= M_CSUM_TCPv4; 3213 1.211 dyoung 3214 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_UDPv4_Tx) 3215 1.213 dyoung ifp->if_csum_flags_tx |= M_CSUM_UDPv4; 3216 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_UDPv4_Rx) 3217 1.213 dyoung ifp->if_csum_flags_rx |= M_CSUM_UDPv4; 3218 1.211 dyoung 3219 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_TCPv6_Tx) 3220 1.213 dyoung ifp->if_csum_flags_tx |= M_CSUM_TCPv6; 3221 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_TCPv6_Rx) 3222 1.213 dyoung ifp->if_csum_flags_rx |= M_CSUM_TCPv6; 3223 1.211 dyoung 3224 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_UDPv6_Tx) 3225 1.213 dyoung ifp->if_csum_flags_tx |= M_CSUM_UDPv6; 3226 1.442 rin if (ifp->if_capenable & IFCAP_CSUM_UDPv6_Rx) 3227 1.213 dyoung ifp->if_csum_flags_rx |= M_CSUM_UDPv6; 3228 1.442 rin 3229 1.442 rin if (ifp->if_capenable & IFCAP_TSOv4) 3230 1.442 rin ifp->if_csum_flags_tx |= M_CSUM_TSOv4; 3231 1.442 rin if (ifp->if_capenable & IFCAP_TSOv6) 3232 1.442 rin ifp->if_csum_flags_tx |= M_CSUM_TSOv6; 3233 1.442 rin 3234 1.442 rin #if NBRIDGE > 0 3235 1.442 rin if (ifp->if_bridge != NULL) 3236 1.442 rin bridge_calc_csum_flags(ifp->if_bridge); 3237 1.442 rin #endif 3238 1.442 rin 3239 1.215 dyoung if (ifp->if_flags & IFF_UP) 3240 1.215 dyoung return ENETRESET; 3241 1.215 dyoung return 0; 3242 1.211 dyoung case SIOCSIFFLAGS: 3243 1.215 dyoung ifr = data; 3244 1.399 ozaki /* 3245 1.399 ozaki * If if_is_mpsafe(ifp), KERNEL_LOCK isn't held here, but if_up 3246 1.399 ozaki * and if_down aren't MP-safe yet, so we must hold the lock. 3247 1.399 ozaki */ 3248 1.399 ozaki KERNEL_LOCK_IF_IFP_MPSAFE(ifp); 3249 1.211 dyoung if (ifp->if_flags & IFF_UP && (ifr->ifr_flags & IFF_UP) == 0) { 3250 1.520 skrll const int s = splsoftnet(); 3251 1.403 ozaki if_down_locked(ifp); 3252 1.211 dyoung splx(s); 3253 1.211 dyoung } 3254 1.211 dyoung if (ifr->ifr_flags & IFF_UP && (ifp->if_flags & IFF_UP) == 0) { 3255 1.520 skrll const int s = splsoftnet(); 3256 1.403 ozaki if_up_locked(ifp); 3257 1.211 dyoung splx(s); 3258 1.211 dyoung } 3259 1.399 ozaki KERNEL_UNLOCK_IF_IFP_MPSAFE(ifp); 3260 1.459 roy flags = (ifp->if_flags & IFF_CANTCHANGE) | 3261 1.459 roy (ifr->ifr_flags &~ IFF_CANTCHANGE); 3262 1.459 roy if (ifp->if_flags != flags) { 3263 1.459 roy ifp->if_flags = flags; 3264 1.459 roy /* Notify that the flags have changed. */ 3265 1.459 roy rt_ifmsg(ifp); 3266 1.459 roy } 3267 1.211 dyoung break; 3268 1.211 dyoung case SIOCGIFFLAGS: 3269 1.215 dyoung ifr = data; 3270 1.211 dyoung ifr->ifr_flags = ifp->if_flags; 3271 1.211 dyoung break; 3272 1.211 dyoung 3273 1.211 dyoung case SIOCGIFMETRIC: 3274 1.215 dyoung ifr = data; 3275 1.211 dyoung ifr->ifr_metric = ifp->if_metric; 3276 1.211 dyoung break; 3277 1.211 dyoung 3278 1.211 dyoung case SIOCGIFMTU: 3279 1.215 dyoung ifr = data; 3280 1.211 dyoung ifr->ifr_mtu = ifp->if_mtu; 3281 1.211 dyoung break; 3282 1.211 dyoung 3283 1.211 dyoung case SIOCGIFDLT: 3284 1.215 dyoung ifr = data; 3285 1.211 dyoung ifr->ifr_dlt = ifp->if_dlt; 3286 1.211 dyoung break; 3287 1.211 dyoung 3288 1.211 dyoung case SIOCGIFCAP: 3289 1.215 dyoung ifcr = data; 3290 1.211 dyoung ifcr->ifcr_capabilities = ifp->if_capabilities; 3291 1.211 dyoung ifcr->ifcr_capenable = ifp->if_capenable; 3292 1.211 dyoung break; 3293 1.211 dyoung 3294 1.211 dyoung case SIOCSIFMETRIC: 3295 1.215 dyoung ifr = data; 3296 1.211 dyoung ifp->if_metric = ifr->ifr_metric; 3297 1.211 dyoung break; 3298 1.211 dyoung 3299 1.211 dyoung case SIOCGIFDATA: 3300 1.215 dyoung ifdr = data; 3301 1.469 thorpej if_export_if_data(ifp, &ifdr->ifdr_data, false); 3302 1.211 dyoung break; 3303 1.211 dyoung 3304 1.266 christos case SIOCGIFINDEX: 3305 1.266 christos ifr = data; 3306 1.266 christos ifr->ifr_index = ifp->if_index; 3307 1.266 christos break; 3308 1.266 christos 3309 1.211 dyoung case SIOCZIFDATA: 3310 1.215 dyoung ifdr = data; 3311 1.469 thorpej if_export_if_data(ifp, &ifdr->ifdr_data, true); 3312 1.261 msaitoh getnanotime(&ifp->if_lastchange); 3313 1.211 dyoung break; 3314 1.215 dyoung case SIOCSIFMTU: 3315 1.215 dyoung ifr = data; 3316 1.215 dyoung if (ifp->if_mtu == ifr->ifr_mtu) 3317 1.215 dyoung break; 3318 1.215 dyoung ifp->if_mtu = ifr->ifr_mtu; 3319 1.215 dyoung return ENETRESET; 3320 1.456 ozaki case SIOCSIFDESCR: 3321 1.489 christos error = kauth_authorize_network(kauth_cred_get(), 3322 1.466 christos KAUTH_NETWORK_INTERFACE, 3323 1.466 christos KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, KAUTH_ARG(cmd), 3324 1.466 christos NULL); 3325 1.466 christos if (error) 3326 1.466 christos return error; 3327 1.456 ozaki 3328 1.466 christos ifr = data; 3329 1.456 ozaki 3330 1.466 christos if (ifr->ifr_buflen > IFDESCRSIZE) 3331 1.466 christos return ENAMETOOLONG; 3332 1.456 ozaki 3333 1.466 christos if (ifr->ifr_buf == NULL || ifr->ifr_buflen == 0) { 3334 1.466 christos /* unset description */ 3335 1.466 christos descr = NULL; 3336 1.466 christos } else { 3337 1.466 christos descr = kmem_zalloc(IFDESCRSIZE, KM_SLEEP); 3338 1.466 christos /* 3339 1.466 christos * copy (IFDESCRSIZE - 1) bytes to ensure 3340 1.466 christos * terminating nul 3341 1.466 christos */ 3342 1.466 christos error = copyin(ifr->ifr_buf, descr, IFDESCRSIZE - 1); 3343 1.466 christos if (error) { 3344 1.466 christos kmem_free(descr, IFDESCRSIZE); 3345 1.466 christos return error; 3346 1.456 ozaki } 3347 1.466 christos } 3348 1.456 ozaki 3349 1.466 christos if (ifp->if_description != NULL) 3350 1.466 christos kmem_free(ifp->if_description, IFDESCRSIZE); 3351 1.456 ozaki 3352 1.466 christos ifp->if_description = descr; 3353 1.456 ozaki break; 3354 1.456 ozaki 3355 1.528 msaitoh case SIOCGIFDESCR: 3356 1.466 christos ifr = data; 3357 1.466 christos descr = ifp->if_description; 3358 1.456 ozaki 3359 1.466 christos if (descr == NULL) 3360 1.466 christos return ENOMSG; 3361 1.456 ozaki 3362 1.466 christos if (ifr->ifr_buflen < IFDESCRSIZE) 3363 1.466 christos return EINVAL; 3364 1.456 ozaki 3365 1.466 christos error = copyout(descr, ifr->ifr_buf, IFDESCRSIZE); 3366 1.466 christos if (error) 3367 1.466 christos return error; 3368 1.528 msaitoh break; 3369 1.456 ozaki 3370 1.211 dyoung default: 3371 1.223 dyoung return ENOTTY; 3372 1.211 dyoung } 3373 1.211 dyoung return 0; 3374 1.211 dyoung } 3375 1.211 dyoung 3376 1.235 dyoung int 3377 1.284 rtr ifaddrpref_ioctl(struct socket *so, u_long cmd, void *data, struct ifnet *ifp) 3378 1.235 dyoung { 3379 1.235 dyoung struct if_addrprefreq *ifap = (struct if_addrprefreq *)data; 3380 1.235 dyoung struct ifaddr *ifa; 3381 1.235 dyoung const struct sockaddr *any, *sa; 3382 1.235 dyoung union { 3383 1.235 dyoung struct sockaddr sa; 3384 1.235 dyoung struct sockaddr_storage ss; 3385 1.236 jakllsch } u, v; 3386 1.357 ozaki int s, error = 0; 3387 1.235 dyoung 3388 1.235 dyoung switch (cmd) { 3389 1.235 dyoung case SIOCSIFADDRPREF: 3390 1.489 christos error = kauth_authorize_network(kauth_cred_get(), 3391 1.466 christos KAUTH_NETWORK_INTERFACE, 3392 1.466 christos KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, KAUTH_ARG(cmd), 3393 1.466 christos NULL); 3394 1.466 christos if (error) 3395 1.466 christos return error; 3396 1.466 christos break; 3397 1.235 dyoung case SIOCGIFADDRPREF: 3398 1.235 dyoung break; 3399 1.235 dyoung default: 3400 1.235 dyoung return EOPNOTSUPP; 3401 1.235 dyoung } 3402 1.235 dyoung 3403 1.235 dyoung /* sanity checks */ 3404 1.235 dyoung if (data == NULL || ifp == NULL) { 3405 1.235 dyoung panic("invalid argument to %s", __func__); 3406 1.235 dyoung /*NOTREACHED*/ 3407 1.235 dyoung } 3408 1.235 dyoung 3409 1.235 dyoung /* address must be specified on ADD and DELETE */ 3410 1.235 dyoung sa = sstocsa(&ifap->ifap_addr); 3411 1.235 dyoung if (sa->sa_family != sofamily(so)) 3412 1.235 dyoung return EINVAL; 3413 1.235 dyoung if ((any = sockaddr_any(sa)) == NULL || sa->sa_len != any->sa_len) 3414 1.235 dyoung return EINVAL; 3415 1.235 dyoung 3416 1.236 jakllsch sockaddr_externalize(&v.sa, sizeof(v.ss), sa); 3417 1.236 jakllsch 3418 1.357 ozaki s = pserialize_read_enter(); 3419 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 3420 1.235 dyoung if (ifa->ifa_addr->sa_family != sa->sa_family) 3421 1.235 dyoung continue; 3422 1.235 dyoung sockaddr_externalize(&u.sa, sizeof(u.ss), ifa->ifa_addr); 3423 1.236 jakllsch if (sockaddr_cmp(&u.sa, &v.sa) == 0) 3424 1.235 dyoung break; 3425 1.235 dyoung } 3426 1.357 ozaki if (ifa == NULL) { 3427 1.357 ozaki error = EADDRNOTAVAIL; 3428 1.357 ozaki goto out; 3429 1.357 ozaki } 3430 1.235 dyoung 3431 1.235 dyoung switch (cmd) { 3432 1.235 dyoung case SIOCSIFADDRPREF: 3433 1.235 dyoung ifa->ifa_preference = ifap->ifap_preference; 3434 1.357 ozaki goto out; 3435 1.235 dyoung case SIOCGIFADDRPREF: 3436 1.235 dyoung /* fill in the if_laddrreq structure */ 3437 1.235 dyoung (void)sockaddr_copy(sstosa(&ifap->ifap_addr), 3438 1.235 dyoung sizeof(ifap->ifap_addr), ifa->ifa_addr); 3439 1.235 dyoung ifap->ifap_preference = ifa->ifa_preference; 3440 1.357 ozaki goto out; 3441 1.235 dyoung default: 3442 1.357 ozaki error = EOPNOTSUPP; 3443 1.235 dyoung } 3444 1.357 ozaki out: 3445 1.357 ozaki pserialize_read_exit(s); 3446 1.357 ozaki return error; 3447 1.235 dyoung } 3448 1.235 dyoung 3449 1.1 cgd /* 3450 1.1 cgd * Interface ioctls. 3451 1.1 cgd */ 3452 1.273 pooka static int 3453 1.273 pooka doifioctl(struct socket *so, u_long cmd, void *data, struct lwp *l) 3454 1.1 cgd { 3455 1.61 augustss struct ifnet *ifp; 3456 1.61 augustss struct ifreq *ifr; 3457 1.454 msaitoh int error = 0; 3458 1.191 christos u_long ocmd = cmd; 3459 1.460 msaitoh u_short oif_flags; 3460 1.186 christos struct ifreq ifrb; 3461 1.187 xtraeme struct oifreq *oifr = NULL; 3462 1.292 christos int r; 3463 1.336 ozaki struct psref psref; 3464 1.454 msaitoh bool do_if43_post = false; 3465 1.454 msaitoh bool do_ifm80_post = false; 3466 1.1 cgd 3467 1.1 cgd switch (cmd) { 3468 1.1 cgd case SIOCGIFCONF: 3469 1.185 dyoung return ifconf(cmd, data); 3470 1.231 dyoung case SIOCINITIFADDR: 3471 1.231 dyoung return EPERM; 3472 1.420 christos default: 3473 1.446 pgoyette MODULE_HOOK_CALL(uipc_syscalls_40_hook, (cmd, data), enosys(), 3474 1.444 pgoyette error); 3475 1.420 christos if (error != ENOSYS) 3476 1.420 christos return error; 3477 1.446 pgoyette MODULE_HOOK_CALL(uipc_syscalls_50_hook, (l, cmd, data), 3478 1.444 pgoyette enosys(), error); 3479 1.420 christos if (error != ENOSYS) 3480 1.420 christos return error; 3481 1.444 pgoyette error = 0; 3482 1.420 christos break; 3483 1.1 cgd } 3484 1.191 christos 3485 1.420 christos ifr = data; 3486 1.451 pgoyette /* Pre-conversion */ 3487 1.454 msaitoh MODULE_HOOK_CALL(if_cvtcmd_43_hook, (&cmd, ocmd), enosys(), error); 3488 1.454 msaitoh if (cmd != ocmd) { 3489 1.454 msaitoh oifr = data; 3490 1.454 msaitoh data = ifr = &ifrb; 3491 1.454 msaitoh IFREQO2N_43(oifr, ifr); 3492 1.454 msaitoh do_if43_post = true; 3493 1.420 christos } 3494 1.454 msaitoh MODULE_HOOK_CALL(ifmedia_80_pre_hook, (ifr, &cmd, &do_ifm80_post), 3495 1.454 msaitoh enosys(), error); 3496 1.63 thorpej 3497 1.63 thorpej switch (cmd) { 3498 1.63 thorpej case SIOCIFCREATE: 3499 1.519 skrll case SIOCIFDESTROY: { 3500 1.519 skrll const int bound = curlwp_bind(); 3501 1.185 dyoung if (l != NULL) { 3502 1.336 ozaki ifp = if_get(ifr->ifr_name, &psref); 3503 1.490 christos error = kauth_authorize_network(l->l_cred, 3504 1.174 elad KAUTH_NETWORK_INTERFACE, 3505 1.174 elad KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, 3506 1.466 christos KAUTH_ARG(cmd), NULL); 3507 1.336 ozaki if (ifp != NULL) 3508 1.336 ozaki if_put(ifp, &psref); 3509 1.336 ozaki if (error != 0) { 3510 1.339 ozaki curlwp_bindx(bound); 3511 1.151 yamt return error; 3512 1.336 ozaki } 3513 1.151 yamt } 3514 1.399 ozaki KERNEL_LOCK_UNLESS_NET_MPSAFE(); 3515 1.292 christos mutex_enter(&if_clone_mtx); 3516 1.292 christos r = (cmd == SIOCIFCREATE) ? 3517 1.64 thorpej if_clone_create(ifr->ifr_name) : 3518 1.185 dyoung if_clone_destroy(ifr->ifr_name); 3519 1.292 christos mutex_exit(&if_clone_mtx); 3520 1.399 ozaki KERNEL_UNLOCK_UNLESS_NET_MPSAFE(); 3521 1.339 ozaki curlwp_bindx(bound); 3522 1.292 christos return r; 3523 1.519 skrll } 3524 1.518 skrll case SIOCIFGCLONERS: { 3525 1.518 skrll struct if_clonereq *req = (struct if_clonereq *)data; 3526 1.518 skrll return if_clone_list(req->ifcr_count, req->ifcr_buffer, 3527 1.518 skrll &req->ifcr_total); 3528 1.518 skrll } 3529 1.63 thorpej } 3530 1.63 thorpej 3531 1.506 riastrad if ((cmd & IOC_IN) == 0 || IOCPARM_LEN(cmd) < sizeof(ifr->ifr_name)) 3532 1.506 riastrad return EINVAL; 3533 1.506 riastrad 3534 1.519 skrll const int bound = curlwp_bind(); 3535 1.336 ozaki ifp = if_get(ifr->ifr_name, &psref); 3536 1.336 ozaki if (ifp == NULL) { 3537 1.339 ozaki curlwp_bindx(bound); 3538 1.185 dyoung return ENXIO; 3539 1.336 ozaki } 3540 1.151 yamt 3541 1.151 yamt switch (cmd) { 3542 1.233 christos case SIOCALIFADDR: 3543 1.233 christos case SIOCDLIFADDR: 3544 1.233 christos case SIOCSIFADDRPREF: 3545 1.151 yamt case SIOCSIFFLAGS: 3546 1.151 yamt case SIOCSIFCAP: 3547 1.151 yamt case SIOCSIFMETRIC: 3548 1.151 yamt case SIOCZIFDATA: 3549 1.151 yamt case SIOCSIFMTU: 3550 1.151 yamt case SIOCSIFPHYADDR: 3551 1.151 yamt case SIOCDIFPHYADDR: 3552 1.151 yamt #ifdef INET6 3553 1.151 yamt case SIOCSIFPHYADDR_IN6: 3554 1.151 yamt #endif 3555 1.151 yamt case SIOCSLIFPHYADDR: 3556 1.151 yamt case SIOCADDMULTI: 3557 1.151 yamt case SIOCDELMULTI: 3558 1.443 msaitoh case SIOCSETHERCAP: 3559 1.151 yamt case SIOCSIFMEDIA: 3560 1.154 perry case SIOCSDRVSPEC: 3561 1.196 skd case SIOCG80211: 3562 1.196 skd case SIOCS80211: 3563 1.151 yamt case SIOCS80211NWID: 3564 1.151 yamt case SIOCS80211NWKEY: 3565 1.151 yamt case SIOCS80211POWER: 3566 1.151 yamt case SIOCS80211BSSID: 3567 1.151 yamt case SIOCS80211CHANNEL: 3568 1.249 pooka case SIOCSLINKSTR: 3569 1.185 dyoung if (l != NULL) { 3570 1.490 christos error = kauth_authorize_network(l->l_cred, 3571 1.174 elad KAUTH_NETWORK_INTERFACE, 3572 1.174 elad KAUTH_REQ_NETWORK_INTERFACE_SETPRIV, ifp, 3573 1.466 christos KAUTH_ARG(cmd), NULL); 3574 1.185 dyoung if (error != 0) 3575 1.336 ozaki goto out; 3576 1.151 yamt } 3577 1.151 yamt } 3578 1.151 yamt 3579 1.49 itojun oif_flags = ifp->if_flags; 3580 1.1 cgd 3581 1.399 ozaki KERNEL_LOCK_UNLESS_IFP_MPSAFE(ifp); 3582 1.413 ozaki IFNET_LOCK(ifp); 3583 1.336 ozaki 3584 1.498 riastrad error = if_ioctl(ifp, cmd, data); 3585 1.231 dyoung if (error != ENOTTY) 3586 1.231 dyoung ; 3587 1.231 dyoung else if (so->so_proto == NULL) 3588 1.252 dyoung error = EOPNOTSUPP; 3589 1.231 dyoung else { 3590 1.399 ozaki KERNEL_LOCK_IF_IFP_MPSAFE(ifp); 3591 1.446 pgoyette MODULE_HOOK_CALL(if_ifioctl_43_hook, 3592 1.444 pgoyette (so, ocmd, cmd, data, l), enosys(), error); 3593 1.444 pgoyette if (error == ENOSYS) 3594 1.361 pgoyette error = (*so->so_proto->pr_usrreqs->pr_ioctl)(so, 3595 1.361 pgoyette cmd, data, ifp); 3596 1.399 ozaki KERNEL_UNLOCK_IF_IFP_MPSAFE(ifp); 3597 1.49 itojun } 3598 1.1 cgd 3599 1.49 itojun if (((oif_flags ^ ifp->if_flags) & IFF_UP) != 0) { 3600 1.312 roy if ((ifp->if_flags & IFF_UP) != 0) { 3601 1.520 skrll const int s = splsoftnet(); 3602 1.403 ozaki if_up_locked(ifp); 3603 1.49 itojun splx(s); 3604 1.49 itojun } 3605 1.1 cgd } 3606 1.450 msaitoh 3607 1.451 pgoyette /* Post-conversion */ 3608 1.454 msaitoh if (do_ifm80_post && (error == 0)) 3609 1.454 msaitoh MODULE_HOOK_CALL(ifmedia_80_post_hook, (ifr, cmd), 3610 1.454 msaitoh enosys(), error); 3611 1.454 msaitoh if (do_if43_post) 3612 1.450 msaitoh IFREQN2O_43(oifr, ifr); 3613 1.49 itojun 3614 1.413 ozaki IFNET_UNLOCK(ifp); 3615 1.399 ozaki KERNEL_UNLOCK_UNLESS_IFP_MPSAFE(ifp); 3616 1.336 ozaki out: 3617 1.336 ozaki if_put(ifp, &psref); 3618 1.339 ozaki curlwp_bindx(bound); 3619 1.185 dyoung return error; 3620 1.1 cgd } 3621 1.1 cgd 3622 1.1 cgd /* 3623 1.1 cgd * Return interface configuration 3624 1.1 cgd * of system. List may be used 3625 1.1 cgd * in later ioctl's (above) to get 3626 1.1 cgd * other information. 3627 1.200 gdt * 3628 1.200 gdt * Each record is a struct ifreq. Before the addition of 3629 1.200 gdt * sockaddr_storage, the API rule was that sockaddr flavors that did 3630 1.200 gdt * not fit would extend beyond the struct ifreq, with the next struct 3631 1.200 gdt * ifreq starting sa_len beyond the struct sockaddr. Because the 3632 1.200 gdt * union in struct ifreq includes struct sockaddr_storage, every kind 3633 1.200 gdt * of sockaddr must fit. Thus, there are no longer any overlength 3634 1.200 gdt * records. 3635 1.200 gdt * 3636 1.200 gdt * Records are added to the user buffer if they fit, and ifc_len is 3637 1.200 gdt * adjusted to the length that was written. Thus, the user is only 3638 1.200 gdt * assured of getting the complete list if ifc_len on return is at 3639 1.200 gdt * least sizeof(struct ifreq) less than it was on entry. 3640 1.200 gdt * 3641 1.200 gdt * If the user buffer pointer is NULL, this routine copies no data and 3642 1.200 gdt * returns the amount of space that would be needed. 3643 1.200 gdt * 3644 1.200 gdt * Invariants: 3645 1.200 gdt * ifrp points to the next part of the user's buffer to be used. If 3646 1.200 gdt * ifrp != NULL, space holds the number of bytes remaining that we may 3647 1.200 gdt * write at ifrp. Otherwise, space holds the number of bytes that 3648 1.200 gdt * would have been written had there been adequate space. 3649 1.1 cgd */ 3650 1.1 cgd /*ARGSUSED*/ 3651 1.302 ozaki static int 3652 1.183 christos ifconf(u_long cmd, void *data) 3653 1.1 cgd { 3654 1.61 augustss struct ifconf *ifc = (struct ifconf *)data; 3655 1.61 augustss struct ifnet *ifp; 3656 1.61 augustss struct ifaddr *ifa; 3657 1.304 ozaki struct ifreq ifr, *ifrp = NULL; 3658 1.304 ozaki int space = 0, error = 0; 3659 1.200 gdt const int sz = (int)sizeof(struct ifreq); 3660 1.304 ozaki const bool docopy = ifc->ifc_req != NULL; 3661 1.334 ozaki struct psref psref; 3662 1.1 cgd 3663 1.304 ozaki if (docopy) { 3664 1.479 msaitoh if (ifc->ifc_len < 0) 3665 1.479 msaitoh return EINVAL; 3666 1.479 msaitoh 3667 1.190 enami space = ifc->ifc_len; 3668 1.304 ozaki ifrp = ifc->ifc_req; 3669 1.304 ozaki } 3670 1.479 msaitoh memset(&ifr, 0, sizeof(ifr)); 3671 1.304 ozaki 3672 1.519 skrll const int bound = curlwp_bind(); 3673 1.520 skrll int s = pserialize_read_enter(); 3674 1.334 ozaki IFNET_READER_FOREACH(ifp) { 3675 1.334 ozaki psref_acquire(&psref, &ifp->if_psref, ifnet_psref_class); 3676 1.334 ozaki pserialize_read_exit(s); 3677 1.334 ozaki 3678 1.175 christos (void)strncpy(ifr.ifr_name, ifp->if_xname, 3679 1.173 christos sizeof(ifr.ifr_name)); 3680 1.334 ozaki if (ifr.ifr_name[sizeof(ifr.ifr_name) - 1] != '\0') { 3681 1.334 ozaki error = ENAMETOOLONG; 3682 1.334 ozaki goto release_exit; 3683 1.334 ozaki } 3684 1.354 ozaki if (IFADDR_READER_EMPTY(ifp)) { 3685 1.200 gdt /* Interface with no addresses - send zero sockaddr. */ 3686 1.127 christos memset(&ifr.ifr_addr, 0, sizeof(ifr.ifr_addr)); 3687 1.304 ozaki if (!docopy) { 3688 1.218 dyoung space += sz; 3689 1.400 ozaki goto next; 3690 1.218 dyoung } 3691 1.218 dyoung if (space >= sz) { 3692 1.218 dyoung error = copyout(&ifr, ifrp, sz); 3693 1.218 dyoung if (error != 0) 3694 1.334 ozaki goto release_exit; 3695 1.218 dyoung ifrp++; 3696 1.218 dyoung space -= sz; 3697 1.70 mellon } 3698 1.127 christos } 3699 1.127 christos 3700 1.400 ozaki s = pserialize_read_enter(); 3701 1.354 ozaki IFADDR_READER_FOREACH(ifa, ifp) { 3702 1.61 augustss struct sockaddr *sa = ifa->ifa_addr; 3703 1.200 gdt /* all sockaddrs must fit in sockaddr_storage */ 3704 1.200 gdt KASSERT(sa->sa_len <= sizeof(ifr.ifr_ifru)); 3705 1.200 gdt 3706 1.304 ozaki if (!docopy) { 3707 1.218 dyoung space += sz; 3708 1.218 dyoung continue; 3709 1.218 dyoung } 3710 1.218 dyoung memcpy(&ifr.ifr_space, sa, sa->sa_len); 3711 1.400 ozaki pserialize_read_exit(s); 3712 1.400 ozaki 3713 1.218 dyoung if (space >= sz) { 3714 1.218 dyoung error = copyout(&ifr, ifrp, sz); 3715 1.218 dyoung if (error != 0) 3716 1.334 ozaki goto release_exit; 3717 1.218 dyoung ifrp++; space -= sz; 3718 1.1 cgd } 3719 1.400 ozaki s = pserialize_read_enter(); 3720 1.1 cgd } 3721 1.400 ozaki pserialize_read_exit(s); 3722 1.334 ozaki 3723 1.528 msaitoh next: 3724 1.334 ozaki s = pserialize_read_enter(); 3725 1.334 ozaki psref_release(&psref, &ifp->if_psref, ifnet_psref_class); 3726 1.1 cgd } 3727 1.334 ozaki pserialize_read_exit(s); 3728 1.339 ozaki curlwp_bindx(bound); 3729 1.334 ozaki 3730 1.304 ozaki if (docopy) { 3731 1.200 gdt KASSERT(0 <= space && space <= ifc->ifc_len); 3732 1.127 christos ifc->ifc_len -= space; 3733 1.218 dyoung } else { 3734 1.200 gdt KASSERT(space >= 0); 3735 1.200 gdt ifc->ifc_len = space; 3736 1.200 gdt } 3737 1.528 msaitoh return 0; 3738 1.334 ozaki 3739 1.334 ozaki release_exit: 3740 1.334 ozaki psref_release(&psref, &ifp->if_psref, ifnet_psref_class); 3741 1.339 ozaki curlwp_bindx(bound); 3742 1.334 ozaki return error; 3743 1.1 cgd } 3744 1.133 jonathan 3745 1.198 dyoung int 3746 1.247 christos ifreq_setaddr(u_long cmd, struct ifreq *ifr, const struct sockaddr *sa) 3747 1.198 dyoung { 3748 1.420 christos uint8_t len = sizeof(ifr->ifr_ifru.ifru_space); 3749 1.247 christos struct ifreq ifrb; 3750 1.247 christos struct oifreq *oifr = NULL; 3751 1.247 christos u_long ocmd = cmd; 3752 1.444 pgoyette int hook; 3753 1.420 christos 3754 1.446 pgoyette MODULE_HOOK_CALL(if_cvtcmd_43_hook, (&cmd, ocmd), enosys(), hook); 3755 1.444 pgoyette if (hook != ENOSYS) { 3756 1.444 pgoyette if (cmd != ocmd) { 3757 1.444 pgoyette oifr = (struct oifreq *)(void *)ifr; 3758 1.444 pgoyette ifr = &ifrb; 3759 1.450 msaitoh IFREQO2N_43(oifr, ifr); 3760 1.444 pgoyette len = sizeof(oifr->ifr_addr); 3761 1.444 pgoyette } 3762 1.420 christos } 3763 1.444 pgoyette 3764 1.198 dyoung if (len < sa->sa_len) 3765 1.198 dyoung return EFBIG; 3766 1.247 christos 3767 1.241 joerg memset(&ifr->ifr_addr, 0, len); 3768 1.202 dyoung sockaddr_copy(&ifr->ifr_addr, len, sa); 3769 1.247 christos 3770 1.247 christos if (cmd != ocmd) 3771 1.450 msaitoh IFREQN2O_43(oifr, ifr); 3772 1.198 dyoung return 0; 3773 1.198 dyoung } 3774 1.198 dyoung 3775 1.155 christos /* 3776 1.332 knakahar * wrapper function for the drivers which doesn't have if_transmit(). 3777 1.155 christos */ 3778 1.345 knakahar static int 3779 1.332 knakahar if_transmit(struct ifnet *ifp, struct mbuf *m) 3780 1.155 christos { 3781 1.519 skrll int error; 3782 1.389 ozaki size_t pktlen = m->m_pkthdr.len; 3783 1.389 ozaki bool mcast = (m->m_flags & M_MCAST) != 0; 3784 1.332 knakahar 3785 1.519 skrll const int s = splnet(); 3786 1.155 christos 3787 1.330 knakahar IFQ_ENQUEUE(&ifp->if_snd, m, error); 3788 1.332 knakahar if (error != 0) { 3789 1.332 knakahar /* mbuf is already freed */ 3790 1.185 dyoung goto out; 3791 1.332 knakahar } 3792 1.332 knakahar 3793 1.469 thorpej net_stat_ref_t nsr = IF_STAT_GETREF(ifp); 3794 1.530 riastrad if_statadd_ref(ifp, nsr, if_obytes, pktlen); 3795 1.389 ozaki if (mcast) 3796 1.530 riastrad if_statinc_ref(ifp, nsr, if_omcasts); 3797 1.469 thorpej IF_STAT_PUTREF(ifp); 3798 1.332 knakahar 3799 1.155 christos if ((ifp->if_flags & IFF_OACTIVE) == 0) 3800 1.343 knakahar if_start_lock(ifp); 3801 1.185 dyoung out: 3802 1.155 christos splx(s); 3803 1.332 knakahar 3804 1.155 christos return error; 3805 1.155 christos } 3806 1.155 christos 3807 1.345 knakahar int 3808 1.345 knakahar if_transmit_lock(struct ifnet *ifp, struct mbuf *m) 3809 1.345 knakahar { 3810 1.345 knakahar int error; 3811 1.345 knakahar 3812 1.465 maxv kmsan_check_mbuf(m); 3813 1.465 maxv 3814 1.345 knakahar #ifdef ALTQ 3815 1.345 knakahar KERNEL_LOCK(1, NULL); 3816 1.345 knakahar if (ALTQ_IS_ENABLED(&ifp->if_snd)) { 3817 1.345 knakahar error = if_transmit(ifp, m); 3818 1.345 knakahar KERNEL_UNLOCK_ONE(NULL); 3819 1.345 knakahar } else { 3820 1.345 knakahar KERNEL_UNLOCK_ONE(NULL); 3821 1.345 knakahar error = (*ifp->if_transmit)(ifp, m); 3822 1.507 skrll /* mbuf is already freed */ 3823 1.345 knakahar } 3824 1.345 knakahar #else /* !ALTQ */ 3825 1.345 knakahar error = (*ifp->if_transmit)(ifp, m); 3826 1.507 skrll /* mbuf is already freed */ 3827 1.345 knakahar #endif /* !ALTQ */ 3828 1.345 knakahar 3829 1.345 knakahar return error; 3830 1.345 knakahar } 3831 1.345 knakahar 3832 1.155 christos /* 3833 1.332 knakahar * Queue message on interface, and start output if interface 3834 1.332 knakahar * not yet active. 3835 1.332 knakahar */ 3836 1.332 knakahar int 3837 1.332 knakahar ifq_enqueue(struct ifnet *ifp, struct mbuf *m) 3838 1.332 knakahar { 3839 1.332 knakahar 3840 1.345 knakahar return if_transmit_lock(ifp, m); 3841 1.332 knakahar } 3842 1.332 knakahar 3843 1.332 knakahar /* 3844 1.155 christos * Queue message on interface, possibly using a second fast queue 3845 1.155 christos */ 3846 1.155 christos int 3847 1.330 knakahar ifq_enqueue2(struct ifnet *ifp, struct ifqueue *ifq, struct mbuf *m) 3848 1.155 christos { 3849 1.155 christos int error = 0; 3850 1.155 christos 3851 1.155 christos if (ifq != NULL 3852 1.155 christos #ifdef ALTQ 3853 1.155 christos && ALTQ_IS_ENABLED(&ifp->if_snd) == 0 3854 1.155 christos #endif 3855 1.155 christos ) { 3856 1.155 christos if (IF_QFULL(ifq)) { 3857 1.155 christos IF_DROP(&ifp->if_snd); 3858 1.155 christos m_freem(m); 3859 1.155 christos if (error == 0) 3860 1.155 christos error = ENOBUFS; 3861 1.185 dyoung } else 3862 1.155 christos IF_ENQUEUE(ifq, m); 3863 1.155 christos } else 3864 1.330 knakahar IFQ_ENQUEUE(&ifp->if_snd, m, error); 3865 1.155 christos if (error != 0) { 3866 1.469 thorpej if_statinc(ifp, if_oerrors); 3867 1.155 christos return error; 3868 1.155 christos } 3869 1.155 christos return 0; 3870 1.155 christos } 3871 1.155 christos 3872 1.252 dyoung int 3873 1.252 dyoung if_addr_init(ifnet_t *ifp, struct ifaddr *ifa, const bool src) 3874 1.252 dyoung { 3875 1.252 dyoung int rc; 3876 1.252 dyoung 3877 1.413 ozaki KASSERT(IFNET_LOCKED(ifp)); 3878 1.252 dyoung if (ifp->if_initaddr != NULL) 3879 1.252 dyoung rc = (*ifp->if_initaddr)(ifp, ifa, src); 3880 1.528 msaitoh else if (src || (rc = if_ioctl(ifp, SIOCSIFDSTADDR, ifa)) == ENOTTY) 3881 1.498 riastrad rc = if_ioctl(ifp, SIOCINITIFADDR, ifa); 3882 1.252 dyoung 3883 1.252 dyoung return rc; 3884 1.252 dyoung } 3885 1.252 dyoung 3886 1.252 dyoung int 3887 1.309 roy if_do_dad(struct ifnet *ifp) 3888 1.309 roy { 3889 1.309 roy if ((ifp->if_flags & IFF_LOOPBACK) != 0) 3890 1.309 roy return 0; 3891 1.309 roy 3892 1.309 roy switch (ifp->if_type) { 3893 1.309 roy case IFT_FAITH: 3894 1.309 roy /* 3895 1.309 roy * These interfaces do not have the IFF_LOOPBACK flag, 3896 1.309 roy * but loop packets back. We do not have to do DAD on such 3897 1.309 roy * interfaces. We should even omit it, because loop-backed 3898 1.309 roy * responses would confuse the DAD procedure. 3899 1.309 roy */ 3900 1.309 roy return 0; 3901 1.309 roy default: 3902 1.309 roy /* 3903 1.309 roy * Our DAD routine requires the interface up and running. 3904 1.309 roy * However, some interfaces can be up before the RUNNING 3905 1.505 andvar * status. Additionally, users may try to assign addresses 3906 1.309 roy * before the interface becomes up (or running). 3907 1.309 roy * We simply skip DAD in such a case as a work around. 3908 1.309 roy * XXX: we should rather mark "tentative" on such addresses, 3909 1.309 roy * and do DAD after the interface becomes ready. 3910 1.309 roy */ 3911 1.455 msaitoh if ((ifp->if_flags & (IFF_UP | IFF_RUNNING)) != 3912 1.455 msaitoh (IFF_UP | IFF_RUNNING)) 3913 1.309 roy return 0; 3914 1.309 roy 3915 1.309 roy return 1; 3916 1.309 roy } 3917 1.309 roy } 3918 1.309 roy 3919 1.500 riastrad /* 3920 1.500 riastrad * if_flags_set(ifp, flags) 3921 1.500 riastrad * 3922 1.500 riastrad * Ask ifp to change ifp->if_flags to flags, as if with the 3923 1.500 riastrad * SIOCSIFFLAGS ioctl command. 3924 1.500 riastrad * 3925 1.500 riastrad * May sleep. Caller must hold ifp->if_ioctl_lock, a.k.a 3926 1.500 riastrad * IFNET_LOCK. 3927 1.500 riastrad */ 3928 1.309 roy int 3929 1.460 msaitoh if_flags_set(ifnet_t *ifp, const u_short flags) 3930 1.252 dyoung { 3931 1.252 dyoung int rc; 3932 1.252 dyoung 3933 1.413 ozaki KASSERT(IFNET_LOCKED(ifp)); 3934 1.401 ozaki 3935 1.252 dyoung if (ifp->if_setflags != NULL) 3936 1.252 dyoung rc = (*ifp->if_setflags)(ifp, flags); 3937 1.252 dyoung else { 3938 1.460 msaitoh u_short cantflags, chgdflags; 3939 1.256 dyoung struct ifreq ifr; 3940 1.256 dyoung 3941 1.259 dyoung chgdflags = ifp->if_flags ^ flags; 3942 1.259 dyoung cantflags = chgdflags & IFF_CANTCHANGE; 3943 1.256 dyoung 3944 1.256 dyoung if (cantflags != 0) 3945 1.256 dyoung ifp->if_flags ^= cantflags; 3946 1.256 dyoung 3947 1.528 msaitoh /* 3948 1.509 skrll * Traditionally, we do not call if_ioctl after 3949 1.528 msaitoh * setting/clearing only IFF_PROMISC if the interface 3950 1.528 msaitoh * isn't IFF_UP. Uphold that tradition. 3951 1.259 dyoung */ 3952 1.391 ozaki if (chgdflags == IFF_PROMISC && (ifp->if_flags & IFF_UP) == 0) 3953 1.391 ozaki return 0; 3954 1.259 dyoung 3955 1.259 dyoung memset(&ifr, 0, sizeof(ifr)); 3956 1.259 dyoung 3957 1.256 dyoung ifr.ifr_flags = flags & ~IFF_CANTCHANGE; 3958 1.498 riastrad rc = if_ioctl(ifp, SIOCSIFFLAGS, &ifr); 3959 1.256 dyoung 3960 1.256 dyoung if (rc != 0 && cantflags != 0) 3961 1.256 dyoung ifp->if_flags ^= cantflags; 3962 1.252 dyoung } 3963 1.252 dyoung 3964 1.252 dyoung return rc; 3965 1.252 dyoung } 3966 1.252 dyoung 3967 1.501 riastrad /* 3968 1.501 riastrad * if_mcast_op(ifp, cmd, sa) 3969 1.501 riastrad * 3970 1.501 riastrad * Apply a multicast command, SIOCADDMULTI/SIOCDELMULTI, to the 3971 1.501 riastrad * interface. Returns 0 on success, nonzero errno(3) number on 3972 1.501 riastrad * failure. 3973 1.501 riastrad * 3974 1.501 riastrad * May sleep. 3975 1.501 riastrad * 3976 1.501 riastrad * Use this, not if_ioctl, for the multicast commands. 3977 1.501 riastrad */ 3978 1.252 dyoung int 3979 1.252 dyoung if_mcast_op(ifnet_t *ifp, const unsigned long cmd, const struct sockaddr *sa) 3980 1.252 dyoung { 3981 1.252 dyoung int rc; 3982 1.252 dyoung struct ifreq ifr; 3983 1.252 dyoung 3984 1.501 riastrad switch (cmd) { 3985 1.501 riastrad case SIOCADDMULTI: 3986 1.501 riastrad case SIOCDELMULTI: 3987 1.501 riastrad break; 3988 1.501 riastrad default: 3989 1.501 riastrad panic("invalid ifnet multicast command: 0x%lx", cmd); 3990 1.501 riastrad } 3991 1.501 riastrad 3992 1.475 jdolecek ifreq_setaddr(cmd, &ifr, sa); 3993 1.498 riastrad rc = if_ioctl(ifp, cmd, &ifr); 3994 1.252 dyoung 3995 1.252 dyoung return rc; 3996 1.252 dyoung } 3997 1.155 christos 3998 1.234 dyoung static void 3999 1.234 dyoung sysctl_sndq_setup(struct sysctllog **clog, const char *ifname, 4000 1.234 dyoung struct ifaltq *ifq) 4001 1.234 dyoung { 4002 1.234 dyoung const struct sysctlnode *cnode, *rnode; 4003 1.234 dyoung 4004 1.234 dyoung if (sysctl_createv(clog, 0, NULL, &rnode, 4005 1.234 dyoung CTLFLAG_PERMANENT, 4006 1.234 dyoung CTLTYPE_NODE, "interfaces", 4007 1.234 dyoung SYSCTL_DESCR("Per-interface controls"), 4008 1.234 dyoung NULL, 0, NULL, 0, 4009 1.272 pooka CTL_NET, CTL_CREATE, CTL_EOL) != 0) 4010 1.234 dyoung goto bad; 4011 1.234 dyoung 4012 1.234 dyoung if (sysctl_createv(clog, 0, &rnode, &rnode, 4013 1.234 dyoung CTLFLAG_PERMANENT, 4014 1.234 dyoung CTLTYPE_NODE, ifname, 4015 1.234 dyoung SYSCTL_DESCR("Interface controls"), 4016 1.234 dyoung NULL, 0, NULL, 0, 4017 1.234 dyoung CTL_CREATE, CTL_EOL) != 0) 4018 1.234 dyoung goto bad; 4019 1.234 dyoung 4020 1.234 dyoung if (sysctl_createv(clog, 0, &rnode, &rnode, 4021 1.234 dyoung CTLFLAG_PERMANENT, 4022 1.234 dyoung CTLTYPE_NODE, "sndq", 4023 1.234 dyoung SYSCTL_DESCR("Interface output queue controls"), 4024 1.234 dyoung NULL, 0, NULL, 0, 4025 1.234 dyoung CTL_CREATE, CTL_EOL) != 0) 4026 1.234 dyoung goto bad; 4027 1.234 dyoung 4028 1.234 dyoung if (sysctl_createv(clog, 0, &rnode, &cnode, 4029 1.234 dyoung CTLFLAG_PERMANENT, 4030 1.234 dyoung CTLTYPE_INT, "len", 4031 1.234 dyoung SYSCTL_DESCR("Current output queue length"), 4032 1.234 dyoung NULL, 0, &ifq->ifq_len, 0, 4033 1.234 dyoung CTL_CREATE, CTL_EOL) != 0) 4034 1.234 dyoung goto bad; 4035 1.234 dyoung 4036 1.234 dyoung if (sysctl_createv(clog, 0, &rnode, &cnode, 4037 1.455 msaitoh CTLFLAG_PERMANENT | CTLFLAG_READWRITE, 4038 1.234 dyoung CTLTYPE_INT, "maxlen", 4039 1.234 dyoung SYSCTL_DESCR("Maximum allowed output queue length"), 4040 1.234 dyoung NULL, 0, &ifq->ifq_maxlen, 0, 4041 1.234 dyoung CTL_CREATE, CTL_EOL) != 0) 4042 1.234 dyoung goto bad; 4043 1.234 dyoung 4044 1.234 dyoung if (sysctl_createv(clog, 0, &rnode, &cnode, 4045 1.234 dyoung CTLFLAG_PERMANENT, 4046 1.527 msaitoh CTLTYPE_QUAD, "drops", 4047 1.234 dyoung SYSCTL_DESCR("Packets dropped due to full output queue"), 4048 1.234 dyoung NULL, 0, &ifq->ifq_drops, 0, 4049 1.234 dyoung CTL_CREATE, CTL_EOL) != 0) 4050 1.234 dyoung goto bad; 4051 1.234 dyoung 4052 1.234 dyoung return; 4053 1.234 dyoung bad: 4054 1.234 dyoung printf("%s: could not attach sysctl nodes\n", ifname); 4055 1.234 dyoung return; 4056 1.234 dyoung } 4057 1.234 dyoung 4058 1.280 joerg static int 4059 1.280 joerg if_sdl_sysctl(SYSCTLFN_ARGS) 4060 1.280 joerg { 4061 1.280 joerg struct ifnet *ifp; 4062 1.280 joerg const struct sockaddr_dl *sdl; 4063 1.340 ozaki struct psref psref; 4064 1.340 ozaki int error = 0; 4065 1.280 joerg 4066 1.280 joerg if (namelen != 1) 4067 1.280 joerg return EINVAL; 4068 1.280 joerg 4069 1.519 skrll const int bound = curlwp_bind(); 4070 1.340 ozaki ifp = if_get_byindex(name[0], &psref); 4071 1.340 ozaki if (ifp == NULL) { 4072 1.340 ozaki error = ENODEV; 4073 1.341 riastrad goto out0; 4074 1.340 ozaki } 4075 1.280 joerg 4076 1.280 joerg sdl = ifp->if_sadl; 4077 1.280 joerg if (sdl == NULL) { 4078 1.280 joerg *oldlenp = 0; 4079 1.341 riastrad goto out1; 4080 1.280 joerg } 4081 1.280 joerg 4082 1.280 joerg if (oldp == NULL) { 4083 1.280 joerg *oldlenp = sdl->sdl_alen; 4084 1.341 riastrad goto out1; 4085 1.280 joerg } 4086 1.280 joerg 4087 1.280 joerg if (*oldlenp >= sdl->sdl_alen) 4088 1.280 joerg *oldlenp = sdl->sdl_alen; 4089 1.528 msaitoh error = sysctl_copyout(l, &sdl->sdl_data[sdl->sdl_nlen], 4090 1.528 msaitoh oldp, *oldlenp); 4091 1.341 riastrad out1: 4092 1.340 ozaki if_put(ifp, &psref); 4093 1.341 riastrad out0: 4094 1.340 ozaki curlwp_bindx(bound); 4095 1.340 ozaki return error; 4096 1.280 joerg } 4097 1.280 joerg 4098 1.370 ozaki static void 4099 1.370 ozaki if_sysctl_setup(struct sysctllog **clog) 4100 1.280 joerg { 4101 1.280 joerg const struct sysctlnode *rnode = NULL; 4102 1.280 joerg 4103 1.280 joerg sysctl_createv(clog, 0, NULL, &rnode, 4104 1.280 joerg CTLFLAG_PERMANENT, 4105 1.280 joerg CTLTYPE_NODE, "sdl", 4106 1.280 joerg SYSCTL_DESCR("Get active link-layer address"), 4107 1.280 joerg if_sdl_sysctl, 0, NULL, 0, 4108 1.280 joerg CTL_NET, CTL_CREATE, CTL_EOL); 4109 1.280 joerg } 4110